Pārlūkot izejas kodu

Optmized rendering (merge all primitives in one object) and loading time.

yomboprime 6 gadi atpakaļ
vecāks
revīzija
9e66015fb6

+ 142 - 40
examples/js/loaders/LDrawLoader.js

@@ -213,10 +213,14 @@ THREE.LDrawLoader = ( function () {
 			this.parseColourMetaDirective( new LineParser( "Edge_Colour CODE 24 VALUE #A0A0A0 EDGE #333333" ) )
 		] );
 
-		// Temporary matrices
-		this.tempMatrix180 = new THREE.Matrix4().makeRotationX( Math.PI );
-		this.tempMatrix = new THREE.Matrix4();
+		// If this flag is set to true, each subobject will be a THREE.Object.
+		// If not (the default), only one object which contains all the merged primitives will be created.
+		this.separateObjects = false;
 
+		// Current merged object and primitives
+		this.currentGroupObject = null;
+		this.currentTriangles = null;
+		this.currentLineSegments = null;
 
 	}
 
@@ -246,7 +250,9 @@ THREE.LDrawLoader = ( function () {
 		load: function ( url, onLoad, onProgress, onError ) {
 
 			if ( ! this.fileMap ) {
+
 				this.fileMap = {};
+
 			}
 
 			var scope = this;
@@ -264,11 +270,15 @@ THREE.LDrawLoader = ( function () {
 				var parseScope = scope.newParseScopeLevel();
 				parseScope.url = url;
 
+				var parentParseScope = scope.getParentParseScope();
+
 				// Add to cache
-				var currentFileName = scope.getParentParseScope().currentFileName;
+				var currentFileName = parentParseScope.currentFileName;
 				if ( scope.subobjectCache[ currentFileName ] === undefined ) {
+
 					scope.subobjectCache[ currentFileName ] = text;
 
+
 				}
 
 				// Parse the object (returns a THREE.Group)
@@ -295,12 +305,7 @@ THREE.LDrawLoader = ( function () {
 
 						if ( subobjectGroup ) {
 
-							scope.removeScopeLevel();
-							if ( onProcessed ) {
-
-								onProcessed( objGroup );
-
-							}
+							finalizeObject();
 
 						}
 					}
@@ -309,7 +314,33 @@ THREE.LDrawLoader = ( function () {
 				else {
 
 					// No subobjects, finish object
+					finalizeObject();
+
+				}
+
+				return objGroup;
+
+				function finalizeObject() {
+
+					if ( ! scope.separateObjects && ! parentParseScope.isFromParse ) {
+
+						// We are finalizing the root object and merging primitives is activated, so create the entire Mesh and LineSegments objects now
+						if ( scope.currentLineSegments.length > 0 ) {
+
+							objGroup.add( createObject( scope.currentLineSegments, 2 ) );
+
+						}
+
+						if ( scope.currentTriangles.length > 0 ) {
+
+							objGroup.add( createObject( scope.currentTriangles, 3 ) );
+
+						}
+
+					}
+
 					scope.removeScopeLevel();
+
 					if ( onProcessed ) {
 
 						onProcessed( objGroup );
@@ -318,23 +349,33 @@ THREE.LDrawLoader = ( function () {
 
 				}
 
-				return objGroup;
-
 				function loadSubobject ( subobject, sync ) {
 
 					parseScope.mainColourCode = subobject.material.userData.code;
 					parseScope.mainEdgeColourCode = subobject.material.userData.edgeMaterial.userData.code;
 					parseScope.currentFileName = subobject.originalFileName;
 
+					if ( ! scope.separateObjects ) {
+
+						// Set current matrix
+						parseScope.currentMatrix.multiplyMatrices( parentParseScope.currentMatrix, subobject.matrix );
+
+					}
+
 					// If subobject was cached previously, use the cached one
 					var cached = scope.subobjectCache[ subobject.originalFileName ];
 					if ( cached ) {
+
 						var subobjectGroup = processObject( cached, sync ? undefined : onSubobjectLoaded );
 						if ( sync ) {
+
 							addSubobject( subobject, subobjectGroup );
 							return subobjectGroup;
+
 						}
+
 						return;
+
 					}
 
 					// Adjust file name to locate the subobject file path in standard locations (always under directory scope.path)
@@ -447,8 +488,7 @@ THREE.LDrawLoader = ( function () {
 					}
 					else {
 
-						scope.removeScopeLevel();
-						onProcessed( objGroup );
+						finalizeObject();
 
 					}
 
@@ -456,10 +496,14 @@ THREE.LDrawLoader = ( function () {
 
 				function addSubobject ( subobject, subobjectGroup ) {
 
-					subobjectGroup.name = subobject.fileName;
-					objGroup.add( subobjectGroup );
-					subobjectGroup.matrix.copy( subobject.matrix );
-					subobjectGroup.matrixAutoUpdate = false;
+					if ( scope.separateObjects ) {
+
+						subobjectGroup.name = subobject.fileName;
+						objGroup.add( subobjectGroup );
+						subobjectGroup.matrix.copy( subobject.matrix );
+						subobjectGroup.matrixAutoUpdate = false;
+
+					}
 
 					scope.fileMap[ subobject.originalFileName ] = subobject.url;
 
@@ -492,8 +536,12 @@ THREE.LDrawLoader = ( function () {
 
 			this.newParseScopeLevel( materials );
 
+			this.getCurrentParseScope().isFromParse = false;
+
 			this.materials = materials;
 
+			this.currentGroupObject = null;
+
 			return this;
 
 		},
@@ -525,6 +573,8 @@ THREE.LDrawLoader = ( function () {
 
 			var topParseScope = this.getCurrentParseScope();
 
+			var parentParseScope = this.getParentParseScope();
+
 			var newParseScope = {
 
 				lib: matLib,
@@ -539,7 +589,10 @@ THREE.LDrawLoader = ( function () {
 				currentFileName: null,
 				mainColourCode: topParseScope ? topParseScope.mainColourCode : '16',
 				mainEdgeColourCode: topParseScope ? topParseScope.mainEdgeColourCode : '24',
+				currentMatrix: new THREE.Matrix4(),
 
+				// If false, it is a root material scope previous to parse
+				isFromParse: true
 			};
 
 			this.parseScopesStack.push( newParseScope );
@@ -884,9 +937,33 @@ THREE.LDrawLoader = ( function () {
 
 			var url = parentParseScope.url;
 
+			var currentParseScope = this.getCurrentParseScope();
+
 			// Parse result variables
-			var triangles = [];
-			var lineSegments = [];
+			var triangles;
+			var lineSegments;
+
+			if ( this.separateObjects ) {
+
+				triangles = [];
+				lineSegments = [];
+
+			}
+			else {
+
+				if ( this.currentGroupObject === null ) {
+
+					this.currentGroupObject = new THREE.Group();
+					this.currentTriangles = [];
+					this.currentLineSegments = [];
+
+				}
+
+				triangles = this.currentTriangles;
+				lineSegments = this.currentLineSegments;
+
+			}
+
 			var subobjects = [];
 
 			var category = null;
@@ -937,6 +1014,20 @@ THREE.LDrawLoader = ( function () {
 
 			}
 
+			function parseVector ( lp ) {
+
+				var v = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
+
+				if ( ! scope.separateObjects ) {
+
+					v.applyMatrix4( parentParseScope.currentMatrix );
+
+				}
+
+				return v;
+
+			}
+
 			function findSubobject( fileName ) {
 
 				for ( var i = 0, n = subobjects.length; i < n; i ++ ) {
@@ -1085,8 +1176,7 @@ THREE.LDrawLoader = ( function () {
 						var m7 = parseFloat( lp.getToken() );
 						var m8 = parseFloat( lp.getToken() );
 
-						var matrix = new THREE.Matrix4();
-						matrix.set(
+						var matrix = new THREE.Matrix4().set(
 							m0, m1, m2, posX,
 							m3, m4, m5, posY,
 							m6, m7, m8, posZ,
@@ -1137,8 +1227,8 @@ THREE.LDrawLoader = ( function () {
 						lineSegments.push( {
 							material: material.userData.edgeMaterial,
 							colourCode: material.userData.code,
-							v0: new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) ),
-							v1: new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) )
+							v0: parseVector( lp ),
+							v1: parseVector( lp )
 						} );
 
 						break;
@@ -1151,9 +1241,9 @@ THREE.LDrawLoader = ( function () {
 						triangles.push( {
 							material: material,
 							colourCode: material.userData.code,
-							v0: new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) ),
-							v1: new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) ),
-							v2: new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) )
+							v0: parseVector( lp ),
+							v1: parseVector( lp ),
+							v2: parseVector( lp )
 						} );
 
 						break;
@@ -1163,10 +1253,10 @@ THREE.LDrawLoader = ( function () {
 
 						var material = parseColourCode( lp );
 
-						var v0 = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
-						var v1 = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
-						var v2 = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
-						var v3 = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
+						var v0 = parseVector( lp );
+						var v1 = parseVector( lp );
+						var v2 = parseVector( lp );
+						var v3 = parseVector( lp );
 
 						triangles.push( {
 							material: material,
@@ -1207,24 +1297,36 @@ THREE.LDrawLoader = ( function () {
 
 			//
 
-			var groupObject = new THREE.Group();
-			groupObject.userData.category = category;
-			groupObject.userData.keywords = keywords;
-			groupObject.userData.subobjects = subobjects;
+			var groupObject = null;
 
-			if ( lineSegments.length > 0 ) {
+			if ( this.separateObjects ) {
 
-				groupObject.add( createObject( lineSegments, 2 ) );
+				groupObject = new THREE.Group();
 
+				if ( lineSegments.length > 0 ) {
 
-			}
+					groupObject.add( createObject( lineSegments, 2 ) );
+
+
+				}
 
-			if ( triangles.length > 0 ) {
+				if ( triangles.length > 0 ) {
 
-				groupObject.add( createObject( triangles, 3 ) );
+					groupObject.add( createObject( triangles, 3 ) );
+
+				}
+
+			}
+			else {
+
+				groupObject = this.currentGroupObject;
 
 			}
 
+			groupObject.userData.category = category;
+			groupObject.userData.keywords = keywords;
+			groupObject.userData.subobjects = subobjects;
+
 			//console.timeEnd( 'LDrawLoader' );
 
 			return groupObject;

+ 32672 - 0
examples/models/ldraw/officialLibrary/models/10174-1-ImperialAT-ST-UCS.mpd_Packed.mpd

@@ -0,0 +1,32672 @@
+0 LDraw.org Configuration File
+0 Name: LDConfig.ldr
+0 Author: LDraw.org
+0 !LDRAW_ORG Configuration UPDATE 2017-12-15
+
+0 // LDraw Solid Colours
+0                              // LEGOID  26 - Black
+0 !COLOUR Black                                                 CODE   0   VALUE #05131D   EDGE #595959
+0                              // LEGOID  23 - Bright Blue
+0 !COLOUR Blue                                                  CODE   1   VALUE #0055BF   EDGE #333333
+0                              // LEGOID  28 - Dark Green
+0 !COLOUR Green                                                 CODE   2   VALUE #257A3E   EDGE #333333
+0                              // LEGOID 107 - Bright Bluish Green
+0 !COLOUR Dark_Turquoise                                        CODE   3   VALUE #00838F   EDGE #333333
+0                              // LEGOID  21 - Bright Red
+0 !COLOUR Red                                                   CODE   4   VALUE #C91A09   EDGE #333333
+0                              // LEGOID 221 - Bright Purple
+0 !COLOUR Dark_Pink                                             CODE   5   VALUE #C870A0   EDGE #333333
+0                              // LEGOID 217 - Brown
+0 !COLOUR Brown                                                 CODE   6   VALUE #583927   EDGE #1E1E1E
+0                              // LEGOID   2 - Grey
+0 !COLOUR Light_Grey                                            CODE   7   VALUE #9BA19D   EDGE #333333
+0                              // LEGOID  27 - Dark Grey
+0 !COLOUR Dark_Grey                                             CODE   8   VALUE #6D6E5C   EDGE #333333
+0                              // LEGOID  45 - Light Blue
+0 !COLOUR Light_Blue                                            CODE   9   VALUE #B4D2E3   EDGE #333333
+0                              // LEGOID  37 - Bright Green
+0 !COLOUR Bright_Green                                          CODE  10   VALUE #4B9F4A   EDGE #333333
+0                              // LEGOID 116 - Medium Bluish Green
+0 !COLOUR Light_Turquoise                                       CODE  11   VALUE #55A5AF   EDGE #333333
+0                              // LEGOID   4 - Brick Red
+0 !COLOUR Salmon                                                CODE  12   VALUE #F2705E   EDGE #333333
+0                              // LEGOID   9 - Light Reddish Violet
+0 !COLOUR Pink                                                  CODE  13   VALUE #FC97AC   EDGE #333333
+0                              // LEGOID  24 - Bright Yellow
+0 !COLOUR Yellow                                                CODE  14   VALUE #F2CD37   EDGE #333333
+0                              // LEGOID   1 - White
+0 !COLOUR White                                                 CODE  15   VALUE #FFFFFF   EDGE #333333
+0                              // LEGOID   6 - Light Green
+0 !COLOUR Light_Green                                           CODE  17   VALUE #C2DAB8   EDGE #333333
+0                              // LEGOID   3 - Light Yellow
+0 !COLOUR Light_Yellow                                          CODE  18   VALUE #FBE696   EDGE #333333
+0                              // LEGOID   5 - Brick Yellow
+0 !COLOUR Tan                                                   CODE  19   VALUE #E4CD9E   EDGE #333333
+0                              // LEGOID  39 - Light Bluish Violet
+0 !COLOUR Light_Violet                                          CODE  20   VALUE #C9CAE2   EDGE #333333
+0                              // LEGOID 104 - Bright Violet
+0 !COLOUR Purple                                                CODE  22   VALUE #81007B   EDGE #333333
+0                              // LEGOID 196 - Dark Royal Blue
+0 !COLOUR Dark_Blue_Violet                                      CODE  23   VALUE #2032B0   EDGE #1E1E1E
+0                              // LEGOID 106 - Bright Orange
+0 !COLOUR Orange                                                CODE  25   VALUE #FE8A18   EDGE #333333
+0                              // LEGOID 124 - Bright Reddish Violet
+0 !COLOUR Magenta                                               CODE  26   VALUE #923978   EDGE #333333
+0                              // LEGOID 119 - Bright Yellowish Green
+0 !COLOUR Lime                                                  CODE  27   VALUE #BBE90B   EDGE #333333
+0                              // LEGOID 138 - Sand Yellow
+0 !COLOUR Dark_Tan                                              CODE  28   VALUE #958A73   EDGE #333333
+0                              // LEGOID 222 - Light Purple
+0 !COLOUR Bright_Pink                                           CODE  29   VALUE #E4ADC8   EDGE #333333
+0                              // LEGOID 324 - Medium Lavender
+0 !COLOUR Medium_Lavender                                       CODE  30   VALUE #AC78BA   EDGE #333333
+0                              // LEGOID 325 - Lavender
+0 !COLOUR Lavender                                              CODE  31   VALUE #E1D5ED   EDGE #333333
+0                              // LEGOID  36 - Light Yellowish Orange
+0 !COLOUR Very_Light_Orange                                     CODE  68   VALUE #F3CF9B   EDGE #333333
+0                              // LEGOID 198 - Bright Reddish Lilac
+0 !COLOUR Bright_Reddish_Lilac                                  CODE  69   VALUE #CD6298   EDGE #333333
+0                              // LEGOID 192 - Reddish Brown
+0 !COLOUR Reddish_Brown                                         CODE  70   VALUE #582A12   EDGE #595959
+0                              // LEGOID 194 - Medium Stone Grey
+0 !COLOUR Light_Bluish_Grey                                     CODE  71   VALUE #A0A5A9   EDGE #333333
+0                              // LEGOID 199 - Dark Stone Grey
+0 !COLOUR Dark_Bluish_Grey                                      CODE  72   VALUE #6C6E68   EDGE #333333
+0                              // LEGOID 102 - Medium Blue
+0 !COLOUR Medium_Blue                                           CODE  73   VALUE #5C9DD1   EDGE #333333
+0                              // LEGOID  29 - Medium Green
+0 !COLOUR Medium_Green                                          CODE  74   VALUE #73DCA1   EDGE #333333
+0                              // LEGOID 223 - Light Pink
+0 !COLOUR Light_Pink                                            CODE  77   VALUE #FECCCF   EDGE #333333
+0                              // LEGOID 283 - Light Nougat
+0 !COLOUR Light_Flesh                                           CODE  78   VALUE #F6D7B3   EDGE #333333
+0                              // LEGOID  38 - Dark Orange
+0 !COLOUR Medium_Dark_Flesh                                     CODE  84   VALUE #CC702A   EDGE #333333
+0                              // LEGOID 268 - Medium Lilac
+0 !COLOUR Medium_Lilac                                          CODE  85   VALUE #3F3691   EDGE #1E1E1E
+0                              // LEGOID 312 - Medium Nougat
+0 !COLOUR Dark_Flesh                                            CODE  86   VALUE #7C503A   EDGE #333333
+0                              // LEGOID 195 - Medium Royal Blue
+0 !COLOUR Blue_Violet                                           CODE  89   VALUE #4C61DB   EDGE #333333
+0                              // LEGOID  18 - Nougat
+0 !COLOUR Flesh                                                 CODE  92   VALUE #D09168   EDGE #333333
+0                              // LEGOID 100 - Light Red
+0 !COLOUR Light_Salmon                                          CODE 100   VALUE #FEBABD   EDGE #333333
+0                              // LEGOID 110 - Bright Bluish Violet
+0 !COLOUR Violet                                                CODE 110   VALUE #4354A3   EDGE #333333
+0                              // LEGOID 112 - Medium Bluish Violet
+0 !COLOUR Medium_Violet                                         CODE 112   VALUE #6874CA   EDGE #333333
+0                              // LEGOID 115 - Medium Yellowish Green
+0 !COLOUR Medium_Lime                                           CODE 115   VALUE #C7D23C   EDGE #333333
+0                              // LEGOID 118 - Light Bluish Green
+0 !COLOUR Aqua                                                  CODE 118   VALUE #B3D7D1   EDGE #333333
+0                              // LEGOID 120 - Light Yellowish Green
+0 !COLOUR Light_Lime                                            CODE 120   VALUE #D9E4A7   EDGE #333333
+0                              // LEGOID 125 - Light Orange
+0 !COLOUR Light_Orange                                          CODE 125   VALUE #F9BA61   EDGE #333333
+0                              // LEGOID 208 - Light Stone Grey
+0 !COLOUR Very_Light_Bluish_Grey                                CODE 151   VALUE #E6E3E0   EDGE #333333
+0                              // LEGOID 191 - Flame Yellowish Orange
+0 !COLOUR Bright_Light_Orange                                   CODE 191   VALUE #F8BB3D   EDGE #333333
+0                              // LEGOID 212 - Light Royal Blue
+0 !COLOUR Bright_Light_Blue                                     CODE 212   VALUE #86C1E1   EDGE #333333
+0                              // LEGOID 216 - Rust
+0 !COLOUR Rust                                                  CODE 216   VALUE #B31004   EDGE #333333
+0                              // LEGOID 226 - Cool Yellow
+0 !COLOUR Bright_Light_Yellow                                   CODE 226   VALUE #FFF03A   EDGE #333333
+0                              // LEGOID 232 - Dove Blue
+0 !COLOUR Sky_Blue                                              CODE 232   VALUE #56BED6   EDGE #333333
+0                              // LEGOID 140 - Earth Blue
+0 !COLOUR Dark_Blue                                             CODE 272   VALUE #0D325B   EDGE #1E1E1E
+0                              // LEGOID 141 - Earth Green
+0 !COLOUR Dark_Green                                            CODE 288   VALUE #184632   EDGE #595959
+0                              // LEGOID 308 - Dark Brown
+0 !COLOUR Dark_Brown                                            CODE 308   VALUE #352100   EDGE #595959
+0                              // LEGOID  11 - Pastel Blue
+0 !COLOUR Maersk_Blue                                           CODE 313   VALUE #54A9C8   EDGE #333333
+0                              // LEGOID 154 - New Dark Red
+0 !COLOUR Dark_Red                                              CODE 320   VALUE #720E0F   EDGE #333333
+0                              // LEGOID 321 - Dark Azur
+0 !COLOUR Dark_Azure                                            CODE 321   VALUE #1498D7   EDGE #333333
+0                              // LEGOID 322 - Medium Azur
+0 !COLOUR Medium_Azure                                          CODE 322   VALUE #3EC2DD   EDGE #333333
+0                              // LEGOID 323 - Aqua
+0 !COLOUR Light_Aqua                                            CODE 323   VALUE #BDDCD8   EDGE #333333
+0                              // LEGOID 326 - Spring Yellowish Green
+0 !COLOUR Yellowish_Green                                       CODE 326   VALUE #DFEEA5   EDGE #333333
+0                              // LEGOID 330 - Olive Green
+0 !COLOUR Olive_Green                                           CODE 330   VALUE #9B9A5A   EDGE #333333
+0                              // LEGOID 153 - Sand Red
+0 !COLOUR Sand_Red                                              CODE 335   VALUE #D67572   EDGE #333333
+0                              // LEGOID  22 - Medium Reddish Violet
+0 !COLOUR Medium_Dark_Pink                                      CODE 351   VALUE #F785B1   EDGE #333333
+0                              // LEGOID  25 - Earth Orange
+0 !COLOUR Earth_Orange                                          CODE 366   VALUE #FA9C1C   EDGE #333333
+0                              // LEGOID 136 - Sand Violet
+0 !COLOUR Sand_Purple                                           CODE 373   VALUE #845E84   EDGE #333333
+0                              // LEGOID 151 - Sand Green
+0 !COLOUR Sand_Green                                            CODE 378   VALUE #A0BCAC   EDGE #333333
+0                              // LEGOID 135 - Sand Blue
+0 !COLOUR Sand_Blue                                             CODE 379   VALUE #597184   EDGE #333333
+0                              // LEGOID  12 - Light Orange Brown
+0 !COLOUR Fabuland_Brown                                        CODE 450   VALUE #B67B50   EDGE #333333
+0                              // LEGOID 105 - Bright Yellowish Orange
+0 !COLOUR Medium_Orange                                         CODE 462   VALUE #FFA70B   EDGE #333333
+0                              // LEGOID  38 - Dark Orange
+0 !COLOUR Dark_Orange                                           CODE 484   VALUE #A95500   EDGE #333333
+0                              // LEGOID 103 - Light Grey
+0 !COLOUR Very_Light_Grey                                       CODE 503   VALUE #E6E3DA   EDGE #333333
+0                              // LEGOID 218 - Reddish Lilac
+0 !COLOUR Reddish_Lilac                                         CODE 218   VALUE #8E5597   EDGE #333333
+0                              // LEGOID 295 - Flamingo Pink
+0 !COLOUR Flamingo_Pink                                         CODE 295   VALUE #FF94C2   EDGE #333333
+0                              // LEGOID 219 - Lilac
+0 !COLOUR Lilac                                                 CODE 219   VALUE #564E9D   EDGE #333333
+0                              // LEGOID 128 - Dark Nougat
+0 !COLOUR Dark_Nougat                                           CODE 128   VALUE #AD6140   EDGE #333333
+
+
+0 // LDraw Transparent Colours
+0                              // LEGOID  40 - Transparent
+0 !COLOUR Trans_Clear                                           CODE  47   VALUE #FCFCFC   EDGE #C3C3C3   ALPHA 128
+0                              // LEGOID 111 - Transparent Brown
+0 !COLOUR Trans_Black                                           CODE  40   VALUE #635F52   EDGE #171316   ALPHA 128
+0                              // LEGOID  41 - Transparent Red
+0 !COLOUR Trans_Red                                             CODE  36   VALUE #C91A09   EDGE #880000   ALPHA 128
+0                              // LEGOID  47 - Transparent Fluorescent Reddish Orange
+0 !COLOUR Trans_Neon_Orange                                     CODE  38   VALUE #FF800D   EDGE #BD2400   ALPHA 128
+0                              // LEGOID 182 - Trans Bright Orange
+0 !COLOUR Trans_Orange                                          CODE  57   VALUE #F08F1C   EDGE #A45C28   ALPHA 128
+0                              // LEGOID 157 - Transparent Fluorescent Yellow
+0 !COLOUR Trans_Neon_Yellow                                     CODE  54   VALUE #DAB000   EDGE #C3BA3F   ALPHA 128
+0                              // LEGOID  44 - Transparent Yellow
+0 !COLOUR Trans_Yellow                                          CODE  46   VALUE #F5CD2F   EDGE #8E7400   ALPHA 128
+0                              // LEGOID  49 - Transparent Fluorescent Green
+0 !COLOUR Trans_Neon_Green                                      CODE  42   VALUE #C0FF00   EDGE #84C300   ALPHA 128
+0                              // LEGOID 311 / 227 - Transparent Bright Green / Transparent Bright Yellowish Green 
+0 !COLOUR Trans_Bright_Green                                    CODE  35   VALUE #56E646   EDGE #9DA86B   ALPHA 128
+0                              // LEGOID  48 - Transparent Green
+0 !COLOUR Trans_Green                                           CODE  34   VALUE #237841   EDGE #1E6239   ALPHA 128
+0                              // LEGOID  43 - Transparent Blue
+0 !COLOUR Trans_Dark_Blue                                       CODE  33   VALUE #0020A0   EDGE #000064   ALPHA 128
+0                              // LEGOID 143 - Transparent Fluorescent Blue
+0 !COLOUR Trans_Medium_Blue                                     CODE  41   VALUE #559AB7   EDGE #196973   ALPHA 128
+0                              // LEGOID  42 - Transparent Light Blue
+0 !COLOUR Trans_Light_Blue                                      CODE  43   VALUE #AEE9EF   EDGE #72B3B0   ALPHA 128
+0                              // LEGOID 229 - Transparent Light Bluish Green
+0 !COLOUR Trans_Very_Light_Blue                                 CODE  39   VALUE #C1DFF0   EDGE #85A3B4   ALPHA 128
+0                              // LEGOID 236 - Transparent Bright Reddish Lilac
+0 !COLOUR Trans_Bright_Reddish_Lilac                            CODE  44   VALUE #96709F   EDGE #5A3463   ALPHA 128
+0                              // LEGOID 126 - Transparent Bright Bluish Violet
+0 !COLOUR Trans_Purple                                          CODE  52   VALUE #A5A5CB   EDGE #280025   ALPHA 128
+0                              // LEGOID 113 - Transparent Medium Reddish Violet
+0 !COLOUR Trans_Dark_Pink                                       CODE  37   VALUE #DF6695   EDGE #A32A59   ALPHA 128
+0                              // LEGOID 230 - Transparent Bright Pink
+0 !COLOUR Trans_Pink                                            CODE  45   VALUE #FC97AC   EDGE #A8718C   ALPHA 128
+0                              // LEGOID 285 - Transparent Light Green 
+0 !COLOUR Trans_Light_Green                                     CODE  285  VALUE #7DC291   EDGE #52805F   ALPHA 128
+0                              // LEGOID 234 - Transparent Fire Yellow
+0 !COLOUR Trans_Fire_Yellow                                     CODE  234  VALUE #FBE890   EDGE #BAAB6A   ALPHA 128
+0                              // LEGOID 293 - Transparent Light Royal Blue
+0 !COLOUR Trans_Light_Blue_Violet                               CODE  293  VALUE #6BABE4   EDGE #4D7BA3   ALPHA 128
+0                              // LEGOID 231 - Transparent Flame Yellowish Orange
+0 !COLOUR Trans_Bright_Light_Orange                             CODE  231  VALUE #FCB76D   EDGE #BD8951   ALPHA 128
+0                              // LEGOID 284 - Transparent Reddish Lilac
+0 !COLOUR Trans_Reddish_Lilac                                   CODE  284  VALUE #C281A5   EDGE #82566E   ALPHA 128
+
+
+0 // LDraw Chrome Colours
+0                              // LEGOID 299 - Warm Gold Drum Lacq
+0 !COLOUR Chrome_Gold                                           CODE 334   VALUE #BBA53D   EDGE #BBB23D                               CHROME
+0                              // LEGOID 298 - Cool Silver Drum Lacq
+0 !COLOUR Chrome_Silver                                         CODE 383   VALUE #E0E0E0   EDGE #A4A4A4                               CHROME
+0                              // LEGOID 187 - Metallic Earth Orange
+0 !COLOUR Chrome_Antique_Brass                                  CODE  60   VALUE #645A4C   EDGE #281E10                               CHROME
+0 !COLOUR Chrome_Black                                          CODE  64   VALUE #1B2A34   EDGE #595959                               CHROME
+0                              // LEGOID 185 - Metallic Bright Blue
+0 !COLOUR Chrome_Blue                                           CODE  61   VALUE #6C96BF   EDGE #202A68                               CHROME
+0                              // LEGOID 147 - Metallic Dark Green
+0 !COLOUR Chrome_Green                                          CODE  62   VALUE #3CB371   EDGE #007735                               CHROME
+0 !COLOUR Chrome_Pink                                           CODE  63   VALUE #AA4D8E   EDGE #6E1152                               CHROME
+
+
+0 // LDraw Pearl Colours
+0                              // LEGOID 183 - Metallic White
+0 !COLOUR Pearl_White                                           CODE 183   VALUE #F2F3F2   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 150 - Metallic Light Grey
+0 !COLOUR Pearl_Very_Light_Grey                                 CODE 150   VALUE #BBBDBC   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 179 / 296 / 131 / 315 - Silver Flip-flop / Cool Silver / Silver / Silver Metallic
+0 !COLOUR Pearl_Light_Grey                                      CODE 135   VALUE #9CA3A8   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 131 - Silver
+0 !COLOUR Flat_Silver                                           CODE 179   VALUE #898788   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 148 - Metallic Dark Grey
+0 !COLOUR Pearl_Dark_Grey                                       CODE 148   VALUE #575857   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 145 - Sand Blue Metallic
+0 !COLOUR Metal_Blue                                            CODE 137   VALUE #5677BA   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 127 - Gold
+0 !COLOUR Pearl_Light_Gold                                      CODE 142   VALUE #DCBE61   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 297 - Warm Gold
+0 !COLOUR Pearl_Gold                                            CODE 297   VALUE #CC9C2B   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 147 - Metallic Sand Yellow
+0 !COLOUR Flat_Dark_Gold                                        CODE 178   VALUE #B4883E   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 139 - Copper
+0 !COLOUR Copper                                                CODE 134   VALUE #964A27   EDGE #333333                               PEARLESCENT
+0                              // LEGOID 189 - Reddish Gold
+0 !COLOUR Reddish_Gold                                          CODE 189   VALUE #AC8247   EDGE #333333                               PEARLESCENT
+
+
+0 // LDraw Metallic Colours
+0                              // LEGOID 315 - Silver Metallic
+0 !COLOUR Metallic_Silver                                       CODE  80   VALUE #A5A9B4   EDGE #333333                               METAL
+0                              // LEGOID 200 - Lemon Metallic
+0 !COLOUR Metallic_Green                                        CODE  81   VALUE #899B5F   EDGE #333333                               METAL
+0                              // LEGOID 310 / 335  Metalized Gold / Gold Ink
+0 !COLOUR Metallic_Gold                                         CODE  82   VALUE #DBAC34   EDGE #333333                               METAL
+0                              // LEGOID 149 - Metallic Black
+0 !COLOUR Metallic_Black                                        CODE  83   VALUE #1A2831   EDGE #333333                               METAL
+0                              // LEGOID 309 / 336 - Metalized Silver / Silver Ink
+0 !COLOUR Metallic_Dark_Grey                                    CODE  87   VALUE #6D6E5C   EDGE #333333                               METAL
+0                              // LEGOID 300 / 334 - Copper Drum Lacq / Copper Ink
+0 !COLOUR Metallic_Copper                                       CODE 300   VALUE #C27F53   EDGE #333333                               METAL
+0                              // LEGOID 184 - Metallic Bright Red
+0 !COLOUR Metallic_Bright_Red                                   CODE 184   VALUE #D60026   EDGE #333333                               METAL
+0                              // LEGOID 186 - Metallic Dark Green
+0 !COLOUR Metallic_Dark_Green                                   CODE 186   VALUE #008E3C   EDGE #333333                               METAL
+
+
+0 // LDraw Milky Colours
+0                              // LEGOID  20 - Nature
+0 !COLOUR Milky_White                                           CODE  79   VALUE #FFFFFF   EDGE #C3C3C3   ALPHA 240
+0                              // LEGOID 294 - Phosphorescent Green
+0 !COLOUR Glow_In_Dark_Opaque                                   CODE  21   VALUE #E0FFB0   EDGE #A4C374   ALPHA 240   LUMINANCE 15
+0                              // LEGOID  50 - Phosphorescent White
+0 !COLOUR Glow_In_Dark_Trans                                    CODE 294   VALUE #BDC6AD   EDGE #818A71   ALPHA 240   LUMINANCE 15
+0                              // LEGOID 329 - White Glow
+0 !COLOUR Glow_In_Dark_White                                    CODE 329   VALUE #F5F3D7   EDGE #B5B49F   ALPHA 240   LUMINANCE 15
+
+
+0 // LDraw Glitter Colours
+0                              // LEGOID 114 - Tr. Medium Reddish-Violet w. Glitter 2%
+0 !COLOUR Glitter_Trans_Dark_Pink                               CODE 114   VALUE #DF6695   EDGE #9A2A66   ALPHA 128                   MATERIAL GLITTER VALUE #923978 FRACTION 0.17 VFRACTION 0.2 SIZE 1
+0                              // LEGOID 117 - Transparent Glitter
+0 !COLOUR Glitter_Trans_Clear                                   CODE 117   VALUE #FFFFFF   EDGE #C3C3C3   ALPHA 128                   MATERIAL GLITTER VALUE #FFFFFF FRACTION 0.08 VFRACTION 0.1 SIZE 1
+0                              // LEGOID 129 - Tr. Bright Bluish Violet w. Glitter 2%
+0 !COLOUR Glitter_Trans_Purple                                  CODE 129   VALUE #640061   EDGE #280025   ALPHA 128                   MATERIAL GLITTER VALUE #8C00FF FRACTION 0.3 VFRACTION 0.4 SIZE 1
+0                              // LEGOID 302  Tr. Light Blue with Glitter 2%
+0 !COLOUR Glitter_Trans_Light_Blue                              CODE 302   VALUE #AEE9EF   EDGE #72B3B0   ALPHA 128                   MATERIAL GLITTER VALUE #923978 FRACTION 0.17 VFRACTION 0.2 SIZE 1
+0                              // LEGOID 339  Tr Fluorescent Green with Glitter 2%
+0 !COLOUR Glitter_Trans_Neon_Green                              CODE 339   VALUE #C0FF00   EDGE #84C300   ALPHA 128                   MATERIAL GLITTER VALUE #923978 FRACTION 0.17 VFRACTION 0.2 SIZE 1 
+
+
+0 // LDraw Speckle Colours
+0 !COLOUR Speckle_Black_Silver                                  CODE 132   VALUE #000000   EDGE #898788                               MATERIAL SPECKLE VALUE #898788 FRACTION 0.4 MINSIZE 1 MAXSIZE 3
+0                              // LEGOID 132 - Black Glitter
+0 !COLOUR Speckle_Black_Gold                                    CODE 133   VALUE #000000   EDGE #DBAC34                               MATERIAL SPECKLE VALUE #DBAC34 FRACTION 0.4 MINSIZE 1 MAXSIZE 3
+0 !COLOUR Speckle_Black_Copper                                  CODE  75   VALUE #000000   EDGE #AB6038                               MATERIAL SPECKLE VALUE #AB6038 FRACTION 0.4 MINSIZE 1 MAXSIZE 3
+0 !COLOUR Speckle_Dark_Bluish_Grey_Silver                       CODE  76   VALUE #635F61   EDGE #898788                               MATERIAL SPECKLE VALUE #898788 FRACTION 0.4 MINSIZE 1 MAXSIZE 3
+
+
+0 // LDraw Rubber Colours
+0 !COLOUR Rubber_Yellow                                         CODE  65   VALUE #F5CD2F   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Trans_Yellow                                   CODE  66   VALUE #CAB000   EDGE #8E7400   ALPHA 128                   RUBBER
+0 !COLOUR Rubber_Trans_Clear                                    CODE  67   VALUE #FFFFFF   EDGE #C3C3C3   ALPHA 128                   RUBBER
+0 !COLOUR Rubber_Black                                          CODE 256   VALUE #212121   EDGE #595959                               RUBBER
+0 !COLOUR Rubber_Blue                                           CODE 273   VALUE #0033B2   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Red                                            CODE 324   VALUE #C40026   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Orange                                         CODE 350   VALUE #D06610   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Light_Grey                                     CODE 375   VALUE #C1C2C1   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Dark_Blue                                      CODE 406   VALUE #001D68   EDGE #595959                               RUBBER
+0 !COLOUR Rubber_Purple                                         CODE 449   VALUE #81007B   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Lime                                           CODE 490   VALUE #D7F000   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Light_Bluish_Grey                              CODE 496   VALUE #A3A2A4   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_Flat_Silver                                    CODE 504   VALUE #898788   EDGE #333333                               RUBBER
+0 !COLOUR Rubber_White                                          CODE 511   VALUE #FAFAFA   EDGE #333333                               RUBBER
+
+
+0 // LDraw Internal Common Material Colours
+0 !COLOUR Main_Colour                                           CODE  16   VALUE #FFFF80   EDGE #333333
+0 !COLOUR Edge_Colour                                           CODE  24   VALUE #7F7F7F   EDGE #333333
+0                              // LEGOID 109 - Black IR
+0 !COLOUR Trans_Black_IR_Lens                                   CODE  32   VALUE #000000   EDGE #333333   ALPHA 210
+0 !COLOUR Magnet                                                CODE 493   VALUE #656761   EDGE #595959                               METAL
+0 !COLOUR Electric_Contact_Alloy                                CODE 494   VALUE #D0D0D0   EDGE #333333                               METAL
+0 !COLOUR Electric_Contact_Copper                               CODE 495   VALUE #AE7A59   EDGE #333333                               METAL
+0
+
+0 main
+0 Name: 10174 - main.ldr
+0 Author: Roland Dahl [RolandD]
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+
+1 71 0 8 0 1 0 0 0 1 0 0 0 1 parts/3032.dat
+1 72 0 8 -70 1 0 0 0 1 0 0 0 1 parts/2419.dat
+0 STEP
+1 4 40 -16 -10 1 0 0 0 1 0 0 0 1 parts/3298.dat
+1 4 -20 -16 -10 1 0 0 0 1 0 0 0 1 parts/3298.dat
+1 19 10 -16 40 0 0 1 0 1 0 -1 0 0 parts/3701.dat
+1 72 10 0 -40 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+0 STEP
+1 71 20 8 80 1 0 0 0 1 0 0 0 1 parts/3032.dat
+1 71 -10 0 -70 -1 0 0 0 1 0 0 0 -1 parts/2420.dat
+1 71 30 0 -70 0 0 1 0 1 0 -1 0 0 parts/2420.dat
+0 STEP
+1 72 70 8 0 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 72 -50 8 80 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 71 50 8 130 1 0 0 0 1 0 0 0 1 parts/2420.dat
+1 71 -30 8 130 0 0 -1 0 1 0 1 0 0 parts/2420.dat
+0 STEP
+1 71 80 0 -20 1 0 0 0 1 0 0 0 1 parts/41770.dat
+1 71 -60 0 -20 1 0 0 0 1 0 0 0 1 parts/41769.dat
+1 72 80 0 40 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 72 -60 0 40 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 71 80 0 100 -1 0 0 0 1 0 0 0 -1 parts/41769.dat
+1 71 -60 0 100 -1 0 0 0 1 0 0 0 -1 parts/41770.dat
+0 STEP
+1 71 10 -118 224 1 0 0 0 0.6 -0.8 0 0.8 0.6 10174 - subModel-1.ldr
+0 STEP
+1 71 10 -6 40 1 0 0 0 1 0 0 0 1 parts/32073.dat
+0 STEP
+1 72 70 -24 40 1 0 0 0 1 0 0 0 1 parts/41748.dat
+1 72 -50 -24 40 1 0 0 0 1 0 0 0 1 parts/41747.dat
+1 72 80 -24 100 -1 0 0 0 1 0 0 0 -1 parts/43720.dat
+1 72 -60 -24 100 -1 0 0 0 1 0 0 0 -1 parts/43721.dat
+0 STEP
+1 71 10 -24 40 -1 0 0 0 1 0 0 0 -1 parts/3021.dat
+1 71 40 -24 90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 -20 -24 90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 72 50 -24 40 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 72 -30 -24 40 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 0 10 -24 10 0 0 1 0 1 0 -1 0 0 parts/6141.dat
+1 72 10 -24 -10 0 0 1 0 1 0 -1 0 0 parts/3062b.dat
+1 72 10 -24 -30 1 0 0 0 1 0 0 0 1 parts/4286.dat
+0 STEP
+1 71 10 -32 -20 0 0 1 0 1 0 -1 0 0 parts/44301.dat
+1 72 10 -32 40 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 71 30 -48 90 0 0 -1 0 1 0 1 0 0 parts/3675.dat
+1 71 -10 -48 90 -1 0 0 0 1 0 0 0 -1 parts/3675.dat
+0 STEP
+1 72 10 -56 60 1 0 0 0 1 0 0 0 1 parts/42022.dat
+1 72 -10 -48 70 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 72 30 -48 70 0 0 -1 0 1 0 1 0 0 parts/4286.dat
+1 71 30 -48 40 1 0 0 0 1 0 0 0 1 parts/41750.dat
+1 71 -10 -48 40 1 0 0 0 1 0 0 0 1 parts/41749.dat
+0 STEP
+1 72 30 -56 50 0 0 1 0 1 0 -1 0 0 parts/6190.dat
+1 72 -10 -56 50 0 0 1 0 1 0 -1 0 0 parts/6190.dat
+1 71 -10 -72 90 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 71 30 -72 90 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+0 STEP
+
+1 71 -10 -407.844 176.761 0 0 1 0.984 -0.176 0 0.176 0.984 0 10174 - subModel-9.ldr
+0 STEP
+1 72 -10 -584.645 37.22 1 0 0 0 0.941 0.34 0 -0.34 0.941 10174 - subModel-11.ldr
+0 STEP
+1 71 30 -407.844 176.761 1 0 0 0 -0.176 -0.984 0 0.984 -0.176 10174 - subModel-18.ldr
+0 STEP
+1 71 20.18 -431.654 196.888 0 0 1.018 0.994 -0.171 0 0.176 0.958 0.003 10174 - subModel-19.ldr
+0 STEP
+1 71 50 -527.684 165.481 1 0 0 0 0.984 -0.176 0 0.176 0.984 10174 - subModel-21.ldr
+0 STEP
+1 71 50 -309.444 194.361 0 0 -1 -0.984 -0.176 0 -0.176 0.984 0 10174 - subModel-22.ldr
+0 STEP
+1 72 60 -603.763 20.208 1 0 0 0 0.982 0.191 0 -0.191 0.982 10174 - subModel-24.ldr
+0 STEP
+1 71 88 -609.212 -60.23 0 -1 0 0.94 0 0.34 -0.34 0 0.94 parts/4032a.dat
+1 71 100 -609.212 -60.23 0 0 -1 0.942 -0.336 0 -0.336 -0.942 0 parts/3713.dat
+0 STEP
+1 72 200 -553.491 153.057 1 0 0 0 0.982 0.191 0 -0.191 0.982 10174 - subModel-25.ldr
+0 STEP
+1 72 400 8 0 1 0 0 0 1 0 0 0 1 10174 - subModel-31.ldr
+0 STEP
+1 72 200 -560.915 72.969 1 0 0 0 0.982 0.191 0 -0.191 0.982 10174 - subModel-41.ldr
+0 STEP
+1 71 10 -19.672 -99.934 0 0 1 0.391 0.921 0 -0.921 0.391 0 10174 - subModel-42.ldr
+1 71 390 -19.66 -99.96 0 0 1 0.391 0.921 0 -0.921 0.391 0 10174 - subModel-42.ldr
+0 STEP
+1 72 200 -717.634 21.886 0 0 -1.002 0.191 0.985 0 0.983 -0.192 0 10174 - subModel-44.ldr
+0 STEP
+1 1 200.04 -668.229 -138.563 1 0 0 0 0.956 -0.293 0 0.293 0.956 10174 - subModel-52.ldr
+0 STEP
+1 72 200.055 -979.951 -47.762 1 0 0 0 0.485 -0.874 0 0.874 0.485 10174 - subModel-56.ldr
+1 14 200.06 -807.188 -122.394 1 0 0 0 0.616 -0.788 0 0.788 0.616 parts/3020.dat
+0 STEP
+1 4 112.696 -758.32 -124.701 0.18 0.983 0.043 0.864 -0.139 -0.495 -0.478 0.128 -0.871 10174 - subModel-60.ldr
+0 STEP
+1 72 143.501 -862.375 47.347 0.028 0.185 -0.984 0.476 0.865 0.176 0.88 -0.474 -0.063 10174 - subModel-72.ldr
+1 14 132.129 -846.98 153.108 0.029 0.182 -0.985 0.48 0.863 0.174 0.878 -0.478 -0.062 10174 - subModel-73.ldr
+0 STEP
+1 72 287.304 -758.32 -124.701 0.18 -0.983 -0.043 -0.864 -0.139 -0.495 0.478 0.128 -0.871 10174 - subModel-66.ldr
+0 STEP
+1 72 256.32 -862.914 44.838 0.087 -0.183 0.981 -0.464 0.865 0.202 -0.883 -0.474 -0.011 10174 - subModel-72.ldr
+1 14 307.27 -840.04 150.473 0.029 -0.182 -0.985 0.488 0.864 -0.145 0.874 -0.477 0.114 10174 - subModel-73.ldr
+0 STEP
+1 72 141.968 -870.391 52.08 1 0.031 -0.001 -0.015 0.469 -0.883 -0.027 0.882 0.47 10174 - subModel-81.ldr
+0 STEP
+1 72 199.599 -860.273 217.21 0 0 -1.006 0.99 -0.194 0 -0.195 -0.988 0 10174 - subModel-74.ldr
+0 STEP
+1 72 199.458 -986.567 33.592 0 0 -1.004 0.193 0.989 0 0.984 -0.195 0 10174 - subModel-77.ldr
+0 STEP
+0 STEP
+1 71 -269.916 -98.368 -201.264 0.906 0 -0.423 0 1 0 0.423 0 0.906 10174 - subModel-82.ldr
+
+0 FILE 10174 - subModel-1.ldr
+0 subModel-1
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-1.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 -1 0 1 0 0 0 0 1 parts/41239.dat
+1 0 0 0 -120 1 0 0 0 1 0 0 0 1 parts/6558.dat
+1 0 0 0 -40 1 0 0 0 1 0 0 0 1 parts/6558.dat
+0 STEP
+1 72 -20 0 -20 0 -1 0 -1 0 0 0 0 -1 parts/32271.dat
+0 STEP
+1 71 0 0 120 1 0 0 0 -1 0 0 0 -1 10174 - subModel-2.ldr
+1 71 15 0 120 0 0 -1 1 0 0 0 -1 0 parts/32123a.dat
+1 72 20 0 -20 0 -1 0 -1 0 0 0 0 -1 parts/32271.dat
+0 STEP
+1 1 30 0 -100 1 0 0 0 0 1 0 -1 0 parts/4274.dat
+1 1 30 0 -60 1 0 0 0 0 1 0 -1 0 parts/4274.dat
+1 1 -30 0 -60 -1 0 0 0 0 -1 0 -1 0 parts/4274.dat
+1 1 -30 0 -100 -1 0 0 0 0 -1 0 -1 0 parts/4274.dat
+0 STEP
+1 72 -40 -54 -168 1 0 0 0 0.6 0.8 0 -0.8 0.6 10174 - subModel-3.ldr
+0 STEP
+1 72 40 -54 -168 1 0 0 0 0.6 0.8 0 -0.8 0.6 10174 - subModel-4.ldr
+0 STEP
+1 71 38 0 -70 0 -1 0 0 0 1 -1 0 0 parts/2431.dat
+1 71 -38 0 -70 0 1 0 0 0 1 1 0 0 parts/2431.dat
+0 STEP
+
+1 72 0 -45.269 -44.736 0 0 1 -0.994 0.111 0 -0.111 -0.994 0 10174 - subModel-5.ldr
+1 71 0 -32 -164 1 0 0 0 0.111 0.994 0 -0.994 0.111 parts/32073.dat
+
+
+0 FILE 10174 - subModel-2.ldr
+0 subModel-2
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-2.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 1 0 0 0 1 parts/32062.dat
+1 71 -15 0 0 0 0 1 0 1 0 -1 0 0 parts/32123a.dat
+
+
+0 FILE 10174 - subModel-3.ldr
+0 subModel-3
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-3.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3702.dat
+1 0 10 10 -60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+1 0 10 10 -20 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+1 0 10 10 40 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+1 0 10 10 60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+0 STEP
+1 19 20 0 -40 0 0 -1 0 1 0 1 0 0 parts/3701.dat
+1 72 0 -8 60 0 0 -1 0 1 0 1 0 0 parts/3023.dat
+
+
+0 FILE 10174 - subModel-4.ldr
+0 subModel-4
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-4.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3702.dat
+1 0 -10 10 60 1 0 0 0 0 -1 0 1 0 parts/2780.dat
+1 0 -10 10 40 1 0 0 0 0 -1 0 1 0 parts/2780.dat
+1 0 -10 10 -60 1 0 0 0 0 -1 0 1 0 parts/2780.dat
+1 0 -10 10 -20 1 0 0 0 0 -1 0 1 0 parts/2780.dat
+0 STEP
+1 19 -20 0 -40 0 0 1 0 1 0 -1 0 0 parts/3701.dat
+1 72 0 -8 60 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+
+
+0 FILE 10174 - subModel-5.ldr
+0 subModel-5
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-5.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 -1 0 0 0 0 1 0 1 0 parts/41239.dat
+1 1 0 40 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+1 1 0 0 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+1 1 0 -40 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+1 1 0 -20 -10 0 -1 0 0 0 1 -1 0 0 parts/4274.dat
+1 1 0 20 -10 0 -1 0 0 0 1 -1 0 0 parts/4274.dat
+1 1 0 60 -10 0 -1 0 0 0 1 -1 0 0 parts/4274.dat
+0 STEP
+1 72 -10 -20 18 -1 0 0 0 0 -1 0 -1 0 10174 - subModel-6.ldr
+
+0 STEP
+1 0 -10 40 -18 1 0 0 0 0 -1 0 1 0 10174 - subModel-7.ldr
+
+
+0 FILE 10174 - subModel-6.ldr
+0 subModel-6
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-6.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/43722.dat
+1 72 0 0 -60 1 0 0 0 1 0 0 0 1 parts/43723.dat
+0 STEP
+1 72 -10 -8 -30 0 0 1 0 1 0 -1 0 0 parts/2412b.dat
+1 72 -10 -8 -70 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 72 -10 -8 10 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+
+
+0 FILE 10174 - subModel-7.ldr
+0 subModel-7
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-7.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/43722.dat
+1 72 0 0 60 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+0 STEP
+1 72 10 -8 30 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+0 STEP
+1 72 10 -8 70 0 0 -1 0 1 0 1 0 0 parts/44728.dat
+1 72 10 -8 -10 0 0 -1 0 1 0 1 0 0 parts/44728.dat
+0 STEP
+1 71 32 12 70 0 -1 0 0 0 -1 1 0 0 parts/3068b.dat
+1 0 40 12 -10 0 -1 0 0 0 -1 1 0 0 10174 - subModel-8.ldr
+
+
+0 FILE 10174 - subModel-8.ldr
+0 subModel-8
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-8.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/4740.dat
+1 0 0 8 0 1 0 0 0 1 0 0 0 1 parts/6141.dat
+
+0 FILE 10174 - subModel-9.ldr
+0 subModel-9
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-9.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+1 71 200 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+0 STEP
+1 72 20 -24 0 0 0 1 0 1 0 -1 0 0 parts/42022.dat
+1 71 120 -8 0 1 0 0 0 1 0 0 0 1 parts/4162.dat
+1 71 250 -24 0 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 71 270 -24 0 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+0 STEP
+1 71 270 24 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 71 250 24 0 0 0 1 0 1 0 -1 0 0 parts/4287.dat
+1 71 140 24 0 1 0 0 0 1 0 0 0 1 parts/3666.dat
+1 71 -60 24 0 1 0 0 0 1 0 0 0 1 parts/6111.dat
+1 71 50 24 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+0 STEP
+1 1 260 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 180 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 80 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 20 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 0 -80 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -60 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -40 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 1 0 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+0 STEP
+1 71 130 10 -18 1 0 0 0 0 -1 0 1 0 parts/4162.dat
+1 71 10 20 -18 1 0 0 0 0 -1 0 1 0 parts/3020.dat
+1 72 260 10 -18 1 0 0 0 0 -1 0 1 0 parts/4740.dat
+1 71 0 0 -40 1 0 0 0 1 0 0 0 1 10174 - subModel-38.ldr
+0 STEP
+1 0 280 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 200 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 140 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 120 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 60 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 40 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+1 0 -20 10 20 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+0 STEP
+1 19 -40 0 20 -1 0 0 0 1 0 0 0 -1 parts/3701.dat
+1 72 20 10 20 0 0 1 -1 0 0 0 -1 0 parts/32271.dat
+0 STEP
+1 72 -110 48 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 72 -130 48 0 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+0 STEP
+1 1 -120 10 -46 0 0 1 1 0 0 0 1 0 10174 - subModel-10.ldr
+
+
+0 FILE 10174 - subModel-10.ldr
+0 subModel-10
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-10.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/44375a.dat
+1 71 0 8 0 1 0 0 0 1 0 0 0 1 parts/4032a.dat
+0 STEP
+1 1 0 16 0 0 1 0 -1 0 0 0 0 1 parts/3749.dat
+0 STEP
+1 1 0 -16 0 1 0 0 0 1 0 0 0 1 10174 - subModel-8.ldr
+
+
+0 FILE 10174 - subModel-11.ldr
+0 subModel-11
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-11.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3895.dat
+1 0 20 10 80 1 0 0 0 0.6 0.8 0 -0.8 0.6 parts/6558.dat
+0 STEP
+1 71 20 90 160 0 1 0 0.6 0 -0.8 -0.8 0 -0.6 parts/6629.dat
+0 STEP
+1 72 22 10 40 -1 0 0 0 1 0 0 0 -1 parts/6587.dat
+1 72 20 10 0 -1 0 0 0 1 0 0 0 -1 parts/6587.dat
+1 71 20 0 0 0 0 -1 0 1 0 1 0 0 parts/32064a.dat
+0 STEP
+1 71 50 6 -100 1 0 0 0 0 -1 0 1 0 10174 - subModel-12.ldr
+1 71 20 10 -100 0 0 -1 -1 0 0 0 1 0 parts/3713.dat
+0 STEP
+1 72 40 0 0 0 0 1 0 1 0 -1 0 0 parts/3895.dat
+0 STEP
+1 0 50 10 60 -1 0 0 0 0 1 0 1 0 parts/2780.dat
+1 0 50 10 100 -1 0 0 0 0 1 0 1 0 parts/2780.dat
+1 0 -10 10 100 -1 0 0 0 0 1 0 1 0 parts/2780.dat
+1 0 -10 10 60 -1 0 0 0 0 1 0 1 0 parts/2780.dat
+0 STEP
+1 72 10 -24 50 -1 0 0 0 1 0 0 0 -1 parts/30363.dat
+1 71 10 -24 0 1 0 0 0 1 0 0 0 1 parts/6215.dat
+1 72 0 -24 -30 1 0 0 0 1 0 0 0 1 parts/3062b.dat
+1 71 0 -24 -50 -1 0 0 0 1 0 0 0 -1 10174 - subModel-13.ldr
+1 71 0 -24 30 -1 0 0 0 1 0 0 0 -1 10174 - subModel-13.ldr
+0 STEP
+1 71 20 -8 -70 1 0 0 0 1 0 0 0 1 10174 - subModel-14.ldr
+1 72 0 -48 -40 -1 0 0 0 1 0 0 0 -1 parts/42022.dat
+1 72 20 -48 -40 -1 0 0 0 1 0 0 0 -1 parts/42022.dat
+0 STEP
+1 72 40 40 -20 0 0 -1 0 1 0 1 0 0 10174 - subModel-15.ldr
+1 71 -24 -14 -46 0 0 -1 1 0 0 0 -1 0 parts/4095.dat
+0 STEP
+1 71 -20 10 -100 0 1 0 -1 0 0 0 0 1 10174 - subModel-16.ldr
+1 71 -34 10 10 0 1 0 0 0 -1 -1 0 0 parts/30413.dat
+0 STEP
+1 72 40 28 -150 0 0 1 0 -1 0 1 0 0 10174 - subModel-17.ldr
+0 STEP
+1 71 10 -56 -60 0 0 -1 0 1 0 1 0 0 parts/3068b.dat
+
+
+0 FILE 10174 - subModel-12.ldr
+0 subModel-12
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-12.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 -4 1 0 0 0 1 0 0 0 1 parts/3707.dat
+1 71 -65 0 -4 0 0 1 0 1 0 -1 0 0 parts/32123a.dat
+
+
+0 FILE 10174 - subModel-13.ldr
+0 subModel-13
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-13.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 0 0 -1 0 1 0 1 0 0 parts/47905.dat
+1 71 18 10 0 0 -1 0 1 0 0 0 0 1 parts/2555.dat
+
+
+0 FILE 10174 - subModel-14.ldr
+0 subModel-14
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-14.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3623.dat
+1 72 0 -24 0 1 0 0 0 1 0 0 0 1 parts/3622.dat
+0 STEP
+1 72 -20 -40 0 1 0 0 0 1 0 0 0 1 parts/6005.dat
+1 72 20 -40 0 1 0 0 0 1 0 0 0 1 parts/6005.dat
+0 STEP
+1 71 0 -40 0 1 0 0 0 1 0 0 0 1 parts/3623.dat
+
+
+0 FILE 10174 - subModel-15.ldr
+0 subModel-15
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-15.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3023.dat
+0 STEP
+1 72 20 -8 0 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 71 -20 -8 0 -1 0 0 0 1 0 0 0 -1 parts/44301.dat
+0 STEP
+1 72 0 -16 0 -1 0 0 0 1 0 0 0 -1 parts/3710.dat
+
+
+0 FILE 10174 - subModel-16.ldr
+0 subModel-16
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-16.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 -24 0 1 0 0 0 1 0 0 0 1 parts/4740.dat
+1 71 0 -16 0 1 0 0 0 1 0 0 0 1 parts/30065.dat
+
+
+0 FILE 10174 - subModel-17.ldr
+0 subModel-17
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-17.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 18.434 14.822 0 0 0.934 0.358 0 0.358 -0.934 -1 0 0 parts/3710.dat
+1 72 10.965 11.955 0 0 0.934 -0.358 0 0.358 0.934 1 0 0 parts/44567.dat
+0 STEP
+1 72 30 -6 0 0 0 1 0 1 0 -1 0 0 parts/30553.dat
+0 STEP
+1 0 50 -6 0 -1 0 0 0 1 0 0 0 -1 parts/32062.dat
+1 72 3.497 9.088 0 0 0.934 0.358 0 0.358 -0.934 -1 0 0 parts/45677.dat
+0 STEP
+1 72 70 -6 0 0 0 -1 0 1 0 1 0 0 parts/30553.dat
+
+0 FILE 10174 - subModel-18.ldr
+0 subModel-18
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-18.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+1 71 0 0 -200 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+0 STEP
+1 71 0 -24 -270 1 0 0 0 1 0 0 0 1 parts/3040b.dat
+1 71 0 -24 -250 -1 0 0 0 1 0 0 0 -1 parts/4286.dat
+1 72 0 -24 -60 1 0 0 0 1 0 0 0 1 parts/42022.dat
+1 72 0 -24 -20 -1 0 0 0 1 0 0 0 -1 parts/42022.dat
+1 72 0 -8 -180 0 0 -1 0 1 0 1 0 0 parts/30244.dat
+0 STEP
+1 1 10 10 -260 1 0 0 0 1 0 0 0 1 parts/4274.dat
+1 0 10 10 80 1 0 0 0 1 0 0 0 1 parts/2780.dat
+1 0 10 10 60 1 0 0 0 1 0 0 0 1 parts/2780.dat
+1 0 10 10 40 1 0 0 0 1 0 0 0 1 parts/2780.dat
+1 71 0 24 -270 1 0 0 0 1 0 0 0 1 parts/3665.dat
+1 71 0 24 -250 -1 0 0 0 1 0 0 0 -1 parts/4287.dat
+1 72 18 10 -260 0 -1 0 -1 0 0 0 0 -1 parts/4740.dat
+
+
+0 FILE 10174 - subModel-19.ldr
+0 subModel-19
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-19.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/2445.dat
+1 72 -130 0 0 0 0 1 0 1 0 -1 0 0 parts/2540.dat
+0 STEP
+1 71 -120 -8 0 0 0 1 0 1 0 -1 0 0 parts/3068b.dat
+0 STEP
+1 72 -110 8 0 0 0 1 0 1 0 -1 0 0 parts/3660.dat
+1 72 -90 8 0 0 0 -1 0 1 0 1 0 0 parts/3660.dat
+0 STEP
+1 71 60 40 0 0 0 1 0 1 0 -1 0 0 10174 - subModel-20.ldr
+
+
+0 FILE 10174 - subModel-20.ldr
+0 subModel-20
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-20.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 -3.072 -5.025 1 0 0 0 0.97 0.242 0 -0.242 0.97 parts/2817.dat
+1 72 20 6.632 -7.444 0 1 0 -0.242 0 -0.97 -0.97 0 0.242 parts/3062b.dat
+1 72 -20 6.632 -7.444 0 -1 0 0.242 0 -0.97 0.97 0 0.242 parts/3062b.dat
+0 STEP
+1 72 10 -10.834 -3.089 0 0 -1 0.242 0.97 0 0.97 -0.242 0 parts/3023.dat
+1 71 -10 13.358 93.941 1 0 0 0 0.97 0.242 0 -0.242 0.97 parts/42445.dat
+0 STEP
+1 72 0 -21.015 -10.856 1 0 0 0 0.97 0.242 0 -0.242 0.97 parts/3023.dat
+1 0 0 -31.701 12.42 1 0 0 0 0.97 0.242 0 -0.242 0.97 parts/3937.dat
+1 71 0 -32 10 -1 0 0 0 1 0 0 0 -1 parts/6134.dat
+
+
+0 FILE 10174 - subModel-21.ldr
+0 subModel-21
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-21.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 0 1 0 0 0 1 1 0 0 parts/44224.dat
+1 71 0 0 0 0 -1 0 -0.866 0 -0.5 0.5 0 -0.866 parts/44225.dat
+
+
+0 FILE 10174 - subModel-22.ldr
+0 subModel-22
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-22.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3895.dat
+1 0 -80 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -60 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 20 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 100 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+0 STEP
+1 1 -100 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 40 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 60 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 1 80 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+0 STEP
+1 71 120 40 0 0 0 1 0 1 0 -1 0 0 10174 - subModel-23.ldr
+1 71 50 24 0 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+1 71 -40 24 0 1 0 0 0 1 0 0 0 1 parts/3666.dat
+0 STEP
+1 71 -20 -8 0 1 0 0 0 1 0 0 0 1 parts/4162.dat
+1 72 80 -24 0 0 0 -1 0 1 0 1 0 0 parts/42022.dat
+0 STEP
+1 71 -30 10 -18 1 0 0 0 0 -1 0 1 0 parts/4162.dat
+1 71 110 20 -18 1 0 0 0 0 -1 0 1 0 parts/3795.dat
+
+
+0 FILE 10174 - subModel-23.ldr
+0 subModel-23
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-23.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3666.dat
+1 71 0 -8 0 0 0 1 0 1 0 -1 0 0 parts/3666.dat
+1 71 0 -16 -30 0 0 1 0 1 0 -1 0 0 parts/3623.dat
+
+
+0 FILE 10174 - subModel-24.ldr
+0 subModel-24
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-24.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 -10 0 0 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+1 0 0 10 -60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+1 0 0 10 60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+0 STEP
+1 71 10 0 0 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+1 0 30 10 80 1 0 0 0 0 -1 0 1 0 parts/6558.dat
+1 0 30 10 40 1 0 0 0 0 -1 0 1 0 parts/6558.dat
+0 STEP
+1 19 30 0 60 0 0 -1 0 1 0 1 0 0 parts/3701.dat
+1 71 0 24 -80 0 0 -1 0 1 0 1 0 0 parts/4032a.dat
+0 STEP
+1 71 10 -8 80 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 72 0 -8 -80 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 72 10 -8 0 0 0 1 0 1 0 -1 0 0 parts/6636.dat
+1 72 -10 -8 -20 0 0 1 0 1 0 -1 0 0 parts/44567.dat
+1 0 -10 -8 -50 0 0 1 0 1 0 -1 0 0 parts/6141.dat
+1 0 -10 -8 10 0 0 1 0 1 0 -1 0 0 parts/6141.dat
+0 STEP
+1 0 0 -24 80 0 0 1 0 1 0 -1 0 0 10174 - subModel-8.ldr
+1 0 0 -24 -80 0 0 1 0 1 0 -1 0 0 10174 - subModel-8.ldr
+1 72 -10 -16 -20 0 0 1 0 1 0 -1 0 0 parts/2431.dat
+
+0 FILE 10174 - subModel-25.ldr
+0 subModel-25
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-25.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/3036.dat
+1 72 -40 -8 50 -1 0 0 0 1 0 0 0 -1 parts/30244.dat
+1 72 40 -8 50 -1 0 0 0 1 0 0 0 -1 parts/30244.dat
+1 72 -70 -24 50 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+1 72 70 -24 50 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+0 STEP
+1 72 0 -24 50 -1 0 0 0 1 0 0 0 -1 10174 - subModel-26.ldr
+1 72 -70 -24 30 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+1 72 -10 -24 30 0 0 1 0 1 0 -1 0 0 parts/3040b.dat
+1 72 10 -24 30 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+1 72 70 -24 30 0 0 1 0 1 0 -1 0 0 parts/3040b.dat
+0 STEP
+1 72 70 -48 50 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+1 72 -70 -48 50 0 0 1 0 1 0 -1 0 0 parts/3040b.dat
+1 72 -10 -48 30 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+1 72 70 -48 30 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+1 72 10 -48 30 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 72 -70 -48 30 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 71 0 -48 50 1 0 0 0 1 0 0 0 1 parts/3004.dat
+0 STEP
+1 71 -70 -48 0 0 0 1 0 1 0 -1 0 0 parts/4864b.dat
+1 71 70 -48 0 0 0 -1 0 1 0 1 0 0 parts/4864b.dat
+1 71 0 0 -120 -1 0 0 0 1 0 0 0 -1 parts/3036.dat
+0 STEP
+1 71 -90 -24 -80 1 0 0 0 1 0 0 0 1 10174 - subModel-27.ldr
+1 0 0 -8 -120 0 0 1 0 1 0 -1 0 0 parts/3709b.dat
+0 STEP
+1 19 70 -24 -100 0 0 -1 0 1 0 1 0 0 10174 - subModel-28.ldr
+1 71 0 -32 -90 1 0 0 0 1 0 0 0 1 parts/3004.dat
+1 71 0 -32 -150 1 0 0 0 1 0 0 0 1 parts/3004.dat
+1 72 0 -24 -170 1 0 0 0 1 0 0 0 1 parts/30414.dat
+0 STEP
+1 71 0 -48 -30 1 0 0 0 1 0 0 0 1 parts/3702.dat
+1 72 -70 -48 -80 0 0 1 0 1 0 -1 0 0 parts/3037.dat
+1 72 70 -48 -80 0 0 -1 0 1 0 1 0 0 parts/3037.dat
+1 72 0 -40 -150 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 72 0 -40 -90 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 72 40 -48 -170 1 0 0 0 1 0 0 0 1 parts/30414.dat
+1 72 -40 -48 -170 1 0 0 0 1 0 0 0 1 parts/30414.dat
+0 STEP
+1 71 70 -48 -140 0 0 1 0 1 0 -1 0 0 parts/3004.dat
+1 71 -70 -48 -140 0 0 1 0 1 0 -1 0 0 parts/3004.dat
+1 0 0 -48 -120 0 0 1 0 1 0 -1 0 0 parts/3709b.dat
+0 STEP
+1 71 0 -56 0 -1 0 0 0 1 0 0 0 -1 parts/3036.dat
+1 71 0 -14 -188 1 0 0 0 0 -1 0 1 0 parts/3794a.dat
+1 71 0 -38 -188 1 0 0 0 0 -1 0 1 0 parts/3794a.dat
+1 71 60 -38 -196 1 0 0 0 0 -1 0 1 0 parts/47457.dat
+1 71 -60 -38 -196 1 0 0 0 0 -1 0 1 0 parts/47457.dat
+0 STEP
+1 72 0 -64 10 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+1 72 0 -64 30 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+1 72 0 -64 -30 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+1 72 0 -64 -50 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+1 72 0 -56 -80 1 0 0 0 1 0 0 0 1 parts/3034.dat
+1 71 0 -56 -120 1 0 0 0 1 0 0 0 1 parts/3738.dat
+1 72 0 -56 -160 1 0 0 0 1 0 0 0 1 parts/3034.dat
+0 STEP
+1 0 70 -80 -150 1 0 0 0 1 0 0 0 1 parts/4070.dat
+1 0 50 -80 -170 1 0 0 0 1 0 0 0 1 parts/4070.dat
+1 0 -50 -80 -170 1 0 0 0 1 0 0 0 1 parts/4070.dat
+1 0 -70 -80 -150 1 0 0 0 1 0 0 0 1 parts/4070.dat
+1 71 70 -80 -70 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 70 -80 -50 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 70 -80 -30 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 70 -80 -10 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 70 -80 10 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 -70 -80 -70 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 71 -70 -80 -50 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 71 -70 -80 -30 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 71 -70 -80 -10 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 71 -70 -80 10 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+0 STEP
+1 0 0 -64 -170 1 0 0 0 1 0 0 0 1 10174 - subModel-29.ldr
+1 0 0 -64 -70 -1 0 0 0 1 0 0 0 -1 10174 - subModel-29.ldr
+1 0 50 -64 -120 0 0 -1 0 1 0 1 0 0 10174 - subModel-29.ldr
+1 0 -50 -64 -120 0 0 1 0 1 0 -1 0 0 10174 - subModel-29.ldr
+1 0 0 -38 -186 0 0 -1 -1 0 0 0 1 0 10174 - flexHose2-2.ldr
+0 STEP
+1 72 0 -88 -120 -1 0 0 0 1 0 0 0 -1 10174 - subModel-30.ldr
+1 0 60 -14 -186 0 0 -1 -1 0 0 0 1 0 10174 - flexHose2-3.ldr
+1 0 90 -14 -178 0 0 -1 -1 0 0 0 1 0 10174 - flexHose2-4.ldr
+
+
+0 FILE 10174 - subModel-26.ldr
+0 subModel-26
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-26.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3700.dat
+1 1 0 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+0 STEP
+1 72 0 10 -18 0 0 1 1 0 0 0 1 0 parts/4740.dat
+
+
+0 FILE 10174 - subModel-27.ldr
+0 subModel-27
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-27.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 19 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3701.dat
+1 0 20 10 0 1 0 0 0 1 0 0 0 1 parts/6558.dat
+0 STEP
+1 71 20 0 -20 0 0 1 0 1 0 -1 0 0 parts/3702.dat
+
+
+0 FILE 10174 - subModel-28.ldr
+0 subModel-28
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-28.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3702.dat
+1 0 20 10 0 0 0 -1 0 1 0 1 0 0 parts/6558.dat
+0 STEP
+1 19 20 0 -20 1 0 0 0 1 0 0 0 1 parts/3701.dat
+
+
+0 FILE 10174 - subModel-29.ldr
+0 subModel-29
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-29.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3710.dat
+1 0 0 -32 0 1 0 0 0 1 0 0 0 1 parts/6191.dat
+
+
+0 FILE 10174 - subModel-30.ldr
+0 subModel-30
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-30.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/30516.dat
+1 0 0 -16 0 1 0 0 0 1 0 0 0 1 10174 - 30658.dat
+1 0 0 -40 0 1 0 0 0 1 0 0 0 1 parts/87081.dat
+
+
+0 FILE 10174 - flexHose2-1.ldr
+0 flexHose2-1
+0 !CATEGORY hose
+0 Name: 10174 - flexHose2-1.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 !KEYWORDS flexible
+0 !LDCAD CONTENT [type=path] [addFallBack=default] [looped=false] [displayKind=mm] [curveStep=0] [displayLenCor=0]
+
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 0 1 0 0 0 1 0 0 0 1] [prevCPDist=25] [nextCPDist=50] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 60 1 0 0 0 -1 0 0 0 -1] [prevCPDist=50] [nextCPDist=25] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=756.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=60%] [segSizeTol=5%] [segsCnt=1] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 -1 0 0 0 -1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+
+0 !LDCAD GENERATED [generator=LDCad 1.5 Beta 1]
+
+0 FILE 10174 - flexHose2-2.ldr
+0 flexHose2-2
+0 !CATEGORY hose
+0 Name: 10174 - flexHose2-2.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 !KEYWORDS flexible
+0 !LDCAD CONTENT [type=path] [addFallBack=default] [looped=false] [displayKind=mm] [curveStep=0] [displayLenCor=0]
+
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 0 1 0 0 0 1 0 0 0 1] [prevCPDist=25] [nextCPDist=68] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+0 !LDCAD PATH_POINT [type=bezier] [posOri=32 -10 50 1 0 0 0 -1 0 0 0 -1] [prevCPDist=67.5] [nextCPDist=25] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=756.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=60%] [segSizeTol=5%] [segsCnt=1] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 -1 0 0 0 -1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=32 -6 50 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=32 -6 50 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+
+0 !LDCAD GENERATED [generator=LDCad 1.5 Beta 1]
+0 //This is the fallback LDraw content for above PATH configuration.
+0 // Do not edit, any changes will be lost upon regeneration.
+0 // The path is approx 52.08 mm (130.20) and exists out of 51 segments.
+
+0 //Some general hints about the document.
+0 UNOFFICIAL PART
+0 BFC CERTIFY CCW
+
+0 //Start cap reference(s)
+1 16 0 -18 0 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 0 -18 0 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //End cap reference(s)
+1 16 32 -6 50 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 32 -6 50 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //Segments
+1 16 0.011658 -23.757474 0.018216 0.999979 -0.006473 0.000048 0.006472 0.999928 0.010117 -0.000113 -0.010116 0.999949 parts/754.dat
+1 16 0.050459 -26.271519 0.078843 0.99982 -0.018951 0.000056 0.018941 0.999382 0.02962 -0.000618 -0.029614 0.999561 parts/754.dat
+1 16 0.119575 -28.78333 0.186839 0.999499 -0.031655 0.000071 0.031613 0.998274 0.049497 -0.001638 -0.04947 0.998774 parts/754.dat
+1 16 0.223199 -31.290928 0.348756 0.998943 -0.045968 0.000091 0.045843 0.996356 0.07192 -0.003397 -0.07184 0.99741 parts/754.dat
+1 16 0.36572 -33.791957 0.571449 0.998107 -0.061501 0.000099 0.061205 0.993468 0.096305 -0.006022 -0.096116 0.995352 parts/754.dat
+1 16 0.548479 -36.283851 0.857013 0.996966 -0.077834 0.000113 0.077239 0.989517 0.122026 -0.009609 -0.121647 0.992527 parts/754.dat
+1 16 0.774138 -38.763582 1.209613 0.995444 -0.095345 0.000134 0.09425 0.984227 0.149716 -0.014406 -0.149021 0.988729 parts/754.dat
+1 16 1.046296 -41.227068 1.63487 0.99344 -0.114351 0.00016 0.112456 0.977229 0.179936 -0.020732 -0.178738 0.983678 parts/754.dat
+1 16 1.369172 -43.669274 2.139379 0.990826 -0.135144 0.000197 0.131994 0.968043 0.21324 -0.029009 -0.211257 0.977 parts/754.dat
+1 16 1.74775 -46.083695 2.730926 0.987462 -0.157856 0.000238 0.152787 0.956127 0.249954 -0.039684 -0.246784 0.968258 parts/754.dat
+1 16 2.186803 -48.462448 3.416977 0.983186 -0.182605 0.000293 0.17465 0.940817 0.29045 -0.053313 -0.285515 0.95689 parts/754.dat
+1 16 2.691924 -50.795303 4.206269 0.977791 -0.209582 0.000359 0.197335 0.921225 0.335265 -0.070596 -0.327749 0.942124 parts/754.dat
+1 16 3.26869 -53.070122 5.107518 0.971133 -0.238539 0.000424 0.220065 0.896604 0.384283 -0.092047 -0.373097 0.923215 parts/754.dat
+1 16 3.92148 -55.27268 6.127594 0.962926 -0.269764 0.000541 0.242222 0.865497 0.438456 -0.118748 -0.42207 0.898752 parts/754.dat
+1 16 4.657603 -57.382318 7.277915 0.952788 -0.303636 0.000676 0.262812 0.825796 0.49899 -0.15207 -0.475254 0.866608 parts/754.dat
+1 16 5.482925 -59.374251 8.567669 0.940532 -0.339705 0.000835 0.27964 0.775623 0.565872 -0.192877 -0.531987 0.824493 parts/754.dat
+1 16 6.401894 -61.218436 10.003807 0.92614 -0.377179 0.000996 0.289701 0.71303 0.638484 -0.241533 -0.591037 0.769634 parts/754.dat
+1 16 7.416036 -62.881211 11.588707 0.910008 -0.414589 0.001117 0.289232 0.636779 0.714743 -0.297036 -0.650099 0.699386 parts/754.dat
+1 16 8.522166 -64.326332 13.317523 0.892695 -0.45066 0.001266 0.273739 0.544465 0.792859 -0.357999 -0.707434 0.609404 parts/754.dat
+1 16 9.714937 -65.507735 15.181635 0.875442 -0.483322 0.001217 0.239376 0.435767 0.867644 -0.419882 -0.759281 0.497184 parts/754.dat
+1 16 10.980154 -66.392362 17.15893 0.860433 -0.509562 0.000993 0.184918 0.314063 0.93122 -0.474826 -0.801069 0.364457 parts/754.dat
+1 16 12.297582 -66.952579 19.217673 0.849536 -0.52753 0.000642 0.112683 0.182654 0.976699 -0.515355 -0.829669 0.214615 parts/754.dat
+1 16 13.644247 -67.173427 21.321706 0.844172 -0.536072 0.000166 0.030905 0.048976 0.998322 -0.53518 -0.84275 0.057912 parts/754.dat
+1 16 14.995282 -67.065253 23.432612 0.844863 -0.534983 -0.000261 -0.051589 -0.081956 0.9953 -0.53249 -0.840878 -0.096841 parts/754.dat
+1 16 16.327089 -66.630042 25.513996 0.852004 -0.523535 -0.000856 -0.13247 -0.217164 0.967105 -0.506499 -0.823864 -0.254377 parts/754.dat
+1 16 17.388557 -65.997468 27.163718 0.865592 -0.500748 -0.00138 -0.205358 -0.357493 0.911058 -0.456704 -0.788321 -0.412276 parts/756.dat
+1 16 19.40599 -64.430128 30.320145 0.881771 0.471676 0.001095 -0.255103 0.47885 -0.840015 -0.396739 0.740422 0.542562 parts/754.dat
+1 16 20.568293 -63.143149 32.137147 0.896156 0.443738 0.000662 -0.279584 0.565794 -0.7757 -0.344582 0.694963 0.631101 parts/754.dat
+1 16 21.663893 -61.665946 33.849267 0.908497 0.417891 0.000541 -0.289592 0.630507 -0.720137 -0.30128 0.654085 0.693832 parts/754.dat
+1 16 22.695501 -60.036923 35.461245 0.920084 0.39172 0.000526 -0.291733 0.686127 -0.666424 -0.261412 0.613013 0.745572 parts/754.dat
+1 16 23.659815 -58.271803 36.968101 0.930859 0.365377 0.000446 -0.288077 0.734675 -0.614218 -0.224749 0.571622 0.789136 parts/754.dat
+1 16 24.558451 -56.390402 38.372329 0.940289 0.340378 0.000353 -0.280362 0.775083 -0.566254 -0.193014 0.532343 0.824231 parts/754.dat
+1 16 25.39604 -54.414437 39.681096 0.94872 0.316117 0.000337 -0.269622 0.809737 -0.521182 -0.165027 0.494365 0.853446 parts/754.dat
+1 16 26.171961 -52.353439 40.893531 0.956244 0.292572 0.000275 -0.256783 0.839721 -0.478467 -0.140217 0.457461 0.878105 parts/754.dat
+1 16 26.89046 -50.221524 42.016209 0.962891 0.269889 0.00026 -0.242475 0.865506 -0.438298 -0.118517 0.42197 0.89883 parts/754.dat
+1 16 27.55181 -48.026864 43.049593 0.968883 0.247519 0.000237 -0.226822 0.88825 -0.399454 -0.099083 0.38697 0.916753 parts/754.dat
+1 16 28.157111 -45.776901 43.995406 0.974044 0.226358 0.000191 -0.210822 0.9075 -0.363314 -0.082413 0.353844 0.931667 parts/754.dat
+1 16 28.710856 -43.481729 44.860647 0.978468 0.206399 0.000175 -0.194797 0.923747 -0.329765 -0.068225 0.322631 0.944063 parts/754.dat
+1 16 29.214888 -41.147386 45.648208 0.98236 0.187 0.000161 -0.178481 0.937867 -0.297573 -0.055797 0.292295 0.954699 parts/754.dat
+1 16 29.670589 -38.77904 46.360249 0.985785 0.168013 0.000152 -0.161901 0.950161 -0.266425 -0.044908 0.262613 0.963856 parts/754.dat
+1 16 30.078409 -36.380787 46.997482 0.988673 0.150084 0.000122 -0.145769 0.960443 -0.237278 -0.035729 0.234572 0.971442 parts/754.dat
+1 16 30.442899 -33.958502 47.567003 0.991089 0.133199 0.000116 -0.130203 0.968979 -0.210064 -0.028093 0.208177 0.977688 parts/754.dat
+1 16 30.765041 -31.515728 48.070354 0.993158 0.116775 0.000107 -0.114767 0.976246 -0.183775 -0.021564 0.182505 0.982968 parts/754.dat
+1 16 31.046306 -29.055556 48.509836 0.994874 0.101121 0.000094 -0.099822 0.982242 -0.158858 -0.016156 0.158034 0.987301 parts/754.dat
+1 16 31.289259 -26.581368 48.889452 0.996329 0.085602 0.0001 -0.084813 0.987307 -0.134284 -0.011594 0.133782 0.990943 parts/754.dat
+1 16 31.49223 -24.094773 49.206599 0.997517 0.070424 0.000084 -0.069985 0.991427 -0.110338 -0.007854 0.110058 0.993894 parts/754.dat
+1 16 31.65812 -21.59869 49.465806 0.998411 0.056352 0.000073 -0.056126 0.99452 -0.088208 -0.005044 0.088064 0.996102 parts/754.dat
+1 16 31.789408 -19.095552 49.670944 0.999076 0.042973 0.000068 -0.042872 0.996817 -0.067221 -0.002956 0.067156 0.997738 parts/754.dat
+1 16 31.88733 -16.587094 49.82395 0.999542 0.030253 0.000059 -0.030216 0.998424 -0.047299 -0.00149 0.047276 0.998881 parts/754.dat
+1 16 31.954025 -14.075098 49.928162 0.999836 0.018089 0.000057 -0.01808 0.999437 -0.028273 -0.000568 0.028267 0.9996 parts/754.dat
+1 16 31.98982 -11.659209 49.984093 0.999982 0.006039 0.000042 -0.006038 0.999937 -0.009438 -0.000099 0.009437 0.999955 parts/754.dat
+
+0 FILE 10174 - flexHose-1.ldr
+0 flexHose-1
+0 !CATEGORY hose
+0 Name: 10174 - flexHose-1.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 !KEYWORDS flexible
+0 !LDCAD CONTENT [type=path] [addFallBack=default] [looped=false] [displayKind=mm] [curveStep=0] [displayLenCor=0]
+
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 0 1 0 0 0 1 0 0 0 1] [prevCPDist=25] [nextCPDist=50] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 60 1 0 0 0 -1 0 0 0 -1] [prevCPDist=50] [nextCPDist=25] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=756.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=60%] [segSizeTol=5%] [segsCnt=1] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 -1 0 0 0 -1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 1 0 0 0 1] [part=752.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 1 0 0 0 1] [part=752.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=0 -18 0 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+
+0 !LDCAD GENERATED [generator=LDCad 1.5 Beta 1]
+
+0 FILE 10174 - flexHose2-3.ldr
+0 flexHose2-3
+0 !CATEGORY hose
+0 Name: 10174 - flexHose2-3.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 !KEYWORDS flexible
+0 !LDCAD CONTENT [type=path] [addFallBack=default] [looped=false] [displayKind=mm] [curveStep=0] [displayLenCor=0]
+
+0 !LDCAD PATH_POINT [type=bezier] [posOri=56 -10 10 1 0 0 0 1 0 0 0 1] [prevCPDist=25] [nextCPDist=50] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 60 1 0 0 0 -1 0 0 0 -1] [prevCPDist=50] [nextCPDist=25] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=756.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=60%] [segSizeTol=5%] [segsCnt=1] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 -1 0 0 0 -1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=56 -6 10 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=56 -6 10 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+
+0 !LDCAD GENERATED [generator=LDCad 1.5 Beta 1]
+0 //This is the fallback LDraw content for above PATH configuration.
+0 // Do not edit, any changes will be lost upon regeneration.
+0 // The path is approx 47.82 mm (119.56) and exists out of 47 segments.
+
+0 //Some general hints about the document.
+0 UNOFFICIAL PART
+0 BFC CERTIFY CCW
+
+0 //Start cap reference(s)
+1 16 56 -6 10 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 56 -6 10 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //End cap reference(s)
+1 16 0 -18 60 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 0 -18 60 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //Segments
+1 16 55.955071 -11.993993 10.040126 0.999745 0.022589 -0.000343 -0.022577 0.999541 0.020202 0.0008 -0.020189 0.999796 parts/754.dat
+1 16 55.815243 -14.72642 10.164984 0.997812 0.066107 -0.000397 -0.065968 0.996063 0.059226 0.00431 -0.05907 0.998245 parts/754.dat
+1 16 55.57904 -17.195464 10.375886 0.994443 0.105273 -0.000306 -0.104772 0.989986 0.094609 0.010262 -0.094051 0.995514 parts/754.dat
+1 16 55.252049 -19.645648 10.667871 0.989515 0.14443 -0.000418 -0.143141 0.981061 0.130498 0.019258 -0.12907 0.991449 parts/754.dat
+1 16 54.818736 -22.065739 11.054785 0.982162 0.188037 -0.000502 -0.185176 0.967677 0.171207 0.032679 -0.16806 0.985235 parts/754.dat
+1 16 54.272549 -24.445114 11.54246 0.972861 0.231391 -0.000436 -0.226008 0.95063 0.212655 0.049621 -0.206785 0.977127 parts/754.dat
+1 16 53.624587 -26.777835 12.121019 0.962146 0.272535 -0.000452 -0.263539 0.930807 0.25327 0.069445 -0.243564 0.967395 parts/754.dat
+1 16 52.875015 -29.055057 12.790303 0.949694 0.313179 -0.000468 -0.299123 0.90751 0.294874 0.092773 -0.2799 0.955536 parts/754.dat
+1 16 52.025491 -31.268131 13.548829 0.935637 0.352963 -0.000476 -0.332123 0.880851 0.337337 0.119487 -0.315467 0.941384 parts/754.dat
+1 16 51.079053 -33.409161 14.393887 0.920188 0.391476 -0.000482 -0.361871 0.851068 0.380437 0.149342 -0.349899 0.924807 parts/754.dat
+1 16 50.039285 -35.470939 15.322271 0.903581 0.428417 -0.000482 -0.387818 0.81843 0.423992 0.182039 -0.382925 0.905666 parts/754.dat
+1 16 48.910633 -37.446944 16.330018 0.886077 0.463537 -0.000479 -0.409488 0.783242 0.467815 0.217225 -0.414324 0.883826 parts/754.dat
+1 16 47.697893 -39.331317 17.412841 0.867929 0.496688 -0.000473 -0.426511 0.745786 0.511754 0.254535 -0.443964 0.859132 parts/754.dat
+1 16 46.406182 -41.118924 18.566174 0.849392 0.527762 -0.000465 -0.438576 0.706343 0.555635 0.293572 -0.471748 0.831426 parts/754.dat
+1 16 45.040725 -42.805375 19.785351 0.830718 0.556693 -0.000455 -0.445436 0.665184 0.599263 0.333908 -0.497616 0.800552 parts/754.dat
+1 16 43.606926 -44.38684 21.065548 0.812139 0.583463 -0.000443 -0.446896 0.622536 0.642443 0.375117 -0.521555 0.766333 parts/754.dat
+1 16 42.110241 -45.859892 22.401888 0.793924 0.608017 -0.000423 -0.44284 0.578719 0.684819 0.416626 -0.543507 0.728713 parts/754.dat
+1 16 40.555905 -47.221551 23.78976 0.775703 0.631098 -0.000468 -0.432618 0.532284 0.727678 0.459485 -0.56426 0.685919 parts/754.dat
+1 16 38.945929 -48.461332 25.227217 0.758033 0.652216 -0.000405 -0.416368 0.484398 0.769413 0.50202 -0.583072 0.638751 parts/754.dat
+1 16 37.289088 -49.585095 26.706509 0.742306 0.670061 -0.000329 -0.395468 0.438503 0.807044 0.540913 -0.598944 0.590491 parts/754.dat
+1 16 35.593104 -50.596995 28.220856 0.727651 0.685948 -0.00036 -0.368757 0.391619 0.843002 0.578396 -0.613279 0.53791 parts/754.dat
+1 16 33.858867 -51.48511 29.76932 0.713533 0.700621 -0.000342 -0.334981 0.341584 0.878128 0.615352 -0.626458 0.478426 parts/754.dat
+1 16 32.090663 -52.243016 31.348348 0.699754 0.714384 -0.000446 -0.289896 0.284529 0.913785 0.65292 -0.639295 0.406197 parts/754.dat
+1 16 30.612034 -52.742659 32.665596 0.686015 0.727587 -0.000523 -0.225986 0.213758 0.950388 0.691602 -0.651862 0.311066 parts/756.dat
+1 16 27.658659 -53.54682 35.303903 0.675161 -0.737671 0.000291 -0.153165 -0.140572 -0.978151 0.721594 0.660365 -0.207894 parts/754.dat
+1 16 25.81623 -53.843567 36.949151 0.669218 -0.743066 0.000106 -0.085666 -0.077293 -0.993321 0.738112 0.664739 -0.115381 parts/754.dat
+1 16 23.96398 -53.992849 38.602883 0.666925 -0.745125 0.00003 -0.019254 -0.017274 -0.999665 0.744876 0.666702 -0.025867 parts/754.dat
+1 16 22.108287 -53.990979 40.259675 0.667758 -0.744379 -0.000087 0.050857 0.045739 -0.997658 0.742639 0.666189 0.068399 parts/754.dat
+1 16 20.256872 -53.829888 41.912671 0.672114 -0.740448 -0.000204 0.122642 0.111595 -0.986157 0.73022 0.662785 0.165814 parts/754.dat
+1 16 18.417367 -53.503222 43.555042 0.68033 -0.732905 -0.00036 0.193192 0.179808 -0.964544 0.706985 0.656139 0.26392 parts/754.dat
+1 16 16.599537 -53.006228 45.177985 0.693043 -0.720896 -0.00056 0.261236 0.251866 -0.931837 0.671898 0.645656 0.362878 parts/754.dat
+1 16 14.815459 -52.325111 46.770923 0.710218 -0.703982 -0.000718 0.323094 0.326862 -0.888128 0.625461 0.630532 0.459596 parts/754.dat
+1 16 13.077375 -51.456892 48.322843 0.731094 -0.682276 -0.000828 0.37367 0.401421 -0.836201 0.570852 0.611033 0.548422 parts/754.dat
+1 16 11.396374 -50.405589 49.823695 0.755841 -0.654755 -0.001047 0.411888 0.47672 -0.776586 0.508973 0.586544 0.63001 parts/754.dat
+1 16 9.789335 -49.165383 51.258537 0.784578 -0.620029 -0.001241 0.436683 0.553994 -0.708801 0.440165 0.555568 0.705408 parts/754.dat
+1 16 8.274917 -47.731056 52.610829 0.815387 -0.578916 -0.00126 0.445756 0.62922 -0.636697 0.369387 0.518593 0.771113 parts/754.dat
+1 16 6.867258 -46.113328 53.867815 0.845978 -0.533216 -0.001204 0.439357 0.698341 -0.565054 0.302137 0.477494 0.825053 parts/754.dat
+1 16 5.575628 -44.329737 55.021136 0.875821 -0.482634 -0.001255 0.419076 0.761769 -0.494048 0.2394 0.432171 0.869434 parts/754.dat
+1 16 4.415176 -42.391663 56.057366 0.903994 -0.427544 -0.001192 0.38677 0.818963 -0.42392 0.182221 0.38276 0.905699 parts/754.dat
+1 16 3.394145 -40.316257 56.969133 0.928856 -0.37044 -0.001068 0.345633 0.867684 -0.357298 0.133284 0.33151 0.93399 parts/754.dat
+1 16 2.516203 -38.126735 57.753104 0.949797 -0.312866 -0.000957 0.298673 0.907613 -0.295013 0.093168 0.279916 0.955493 parts/754.dat
+1 16 1.781918 -35.843308 58.408817 0.966414 -0.256988 -0.000776 0.249425 0.938689 -0.238011 0.061894 0.229824 0.971262 parts/754.dat
+1 16 1.183455 -33.489558 58.943211 0.97914 -0.203184 -0.000706 0.199521 0.962138 -0.185693 0.038409 0.181679 0.982608 parts/754.dat
+1 16 0.718792 -31.081793 59.358139 0.988439 -0.151618 -0.000586 0.150104 0.979103 -0.137211 0.021377 0.135537 0.990542 parts/754.dat
+1 16 0.379748 -28.636181 59.660894 0.994575 -0.104019 -0.000474 0.103519 0.990221 -0.093521 0.010198 0.092965 0.995617 parts/754.dat
+1 16 0.15594 -26.16663 59.860747 0.998148 -0.060833 -0.000378 0.060722 0.996667 -0.054482 0.003691 0.054358 0.998515 parts/754.dat
+1 16 0.035807 -23.713812 59.968022 0.999796 -0.020188 -0.000265 0.02018 0.999633 -0.018048 0.000629 0.018039 0.999837 parts/754.dat
+
+0 FILE 10174 - flexHose2-4.ldr
+0 flexHose2-4
+0 !CATEGORY hose
+0 Name: 10174 - flexHose2-4.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 !KEYWORDS flexible
+0 !LDCAD CONTENT [type=path] [addFallBack=default] [looped=false] [displayKind=mm] [curveStep=0] [displayLenCor=0]
+
+0 !LDCAD PATH_POINT [type=bezier] [posOri=56 2 20 1 0 0 0 1 0 0 0 1] [prevCPDist=25] [nextCPDist=50] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+0 !LDCAD PATH_POINT [type=bezier] [posOri=0 -22 60 1 0 0 0 -1 0 0 0 -1] [prevCPDist=50] [nextCPDist=25] [cirR=20] [cirDir=xyCW] [prevYRoll=0] [nextYRoll=0]
+
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 1 0 0 0 1] [donPart=756.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=60%] [segSizeTol=5%] [segsCnt=1] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+0 !LDCAD PATH_SKIN [donCol=16] [donOri=1 0 0 0 -1 0 0 0 -1] [donPart=754.dat] [donYSize=100%] [donCen=absCen] [donCenYOfs=0] [donFinScale=none] [donPlace=refsDyn] [donYAlign=0] [donInline=false] [segSize=50%] [segSizeTol=5%] [segsCnt=0] [segsGrp=0] [segsMaxMerge=1] [segsMrgAng=0] [segsMrgRollAng=0] [segsEdgeDelKind=keepFirstLeft]
+
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=56 6 20 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 1 0 0 0 1] [part=750.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=start] [color=16] [posOri=56 6 20 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+0 !LDCAD PATH_CAP [group=end] [color=16] [posOri=0 -18 60 1 0 0 0 -1 0 0 0 -1] [part=755.dat] [extraLen=0mm]
+
+0 !LDCAD GENERATED [generator=LDCad 1.5 Beta 1]
+0 //This is the fallback LDraw content for above PATH configuration.
+0 // Do not edit, any changes will be lost upon regeneration.
+0 // The path is approx 46.59 mm (116.48) and exists out of 46 segments.
+
+0 //Some general hints about the document.
+0 UNOFFICIAL PART
+0 BFC CERTIFY CCW
+
+0 //Start cap reference(s)
+1 16 56 6 20 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 56 6 20 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //End cap reference(s)
+1 16 0 -18 60 1 0 0 0 1 0 0 0 1 parts/750.dat
+1 16 0 -18 60 1 0 0 0 -1 0 0 0 -1 parts/755.dat
+
+0 //Segments
+1 16 55.955851 0.018306 20.031541 0.999755 0.022124 -0.000261 -0.022117 0.99963 0.015826 0.000611 -0.015816 0.999875 parts/754.dat
+1 16 55.820216 -2.690706 20.128431 0.997938 0.064183 -0.000288 -0.064102 0.996883 0.045985 0.003239 -0.045872 0.998942 parts/754.dat
+1 16 55.594412 -5.139525 20.289722 0.994861 0.10125 -0.000215 -0.100966 0.992226 0.07275 0.007579 -0.072354 0.99735 parts/754.dat
+1 16 55.284497 -7.574265 20.511104 0.99048 0.137653 -0.000281 -0.136944 0.985582 0.099369 0.013955 -0.098384 0.995051 parts/754.dat
+1 16 54.878036 -9.987218 20.801445 0.984152 0.177328 -0.000321 -0.175809 0.975956 0.128846 0.023161 -0.126748 0.991665 parts/754.dat
+1 16 54.371556 -12.371824 21.163217 0.976431 0.215829 -0.000261 -0.213077 0.964171 0.15803 0.034359 -0.15425 0.987434 parts/754.dat
+1 16 53.776974 -14.725299 21.58793 0.967678 0.252187 -0.000277 -0.247721 0.950744 0.186333 0.047254 -0.180242 0.982487 parts/754.dat
+1 16 53.09243 -17.041313 22.0769 0.957434 0.288651 -0.000289 -0.281805 0.934943 0.215565 0.062493 -0.206308 0.976489 parts/754.dat
+1 16 52.31905 -19.314767 22.629313 0.946282 0.323341 -0.00025 -0.313487 0.917633 0.244284 0.079217 -0.231084 0.969704 parts/754.dat
+1 16 51.464853 -21.544235 23.239473 0.934086 0.357048 -0.000292 -0.343379 0.898549 0.273315 0.097849 -0.2552 0.961925 parts/754.dat
+1 16 50.525373 -23.721216 23.910546 0.920109 0.391663 -0.000317 -0.372988 0.876485 0.304392 0.119497 -0.279955 0.952547 parts/754.dat
+1 16 49.500754 -25.839698 24.642416 0.905219 0.424946 -0.000286 -0.400206 0.852743 0.335656 0.142879 -0.303727 0.941985 parts/754.dat
+1 16 48.398804 -27.898553 25.429534 0.889817 0.456317 -0.000294 -0.424436 0.827886 0.366685 0.167567 -0.326158 0.930345 parts/754.dat
+1 16 47.221141 -29.893124 26.27073 0.87366 0.486537 -0.000291 -0.446199 0.801464 0.398198 0.193971 -0.34776 0.9173 parts/754.dat
+1 16 45.971482 -31.820291 27.163355 0.856899 0.515484 -0.000296 -0.465247 0.773637 0.430152 0.221965 -0.368459 0.902757 parts/754.dat
+1 16 44.6524 -33.676137 28.105569 0.839494 0.543369 -0.000304 -0.481548 0.74424 0.462837 0.251718 -0.388402 0.886443 parts/754.dat
+1 16 43.266433 -35.456861 29.095559 0.821552 0.570133 -0.000309 -0.494851 0.713341 0.496254 0.283151 -0.407545 0.868178 parts/754.dat
+1 16 41.81656 -37.158985 30.131198 0.803167 0.595753 -0.000319 -0.504895 0.68096 0.530447 0.316233 -0.425877 0.847718 parts/754.dat
+1 16 40.305406 -38.778582 31.210613 0.784335 0.620337 -0.000333 -0.511418 0.646924 0.565634 0.351099 -0.443476 0.824657 parts/754.dat
+1 16 38.735368 -40.311328 32.33209 0.765135 0.643869 -0.000345 -0.514036 0.611172 0.60186 0.38773 -0.460327 0.798602 parts/754.dat
+1 16 37.109127 -41.752933 33.493725 0.745533 0.666468 -0.000372 -0.512227 0.573352 0.639446 0.426384 -0.476537 0.768836 parts/754.dat
+1 16 35.427313 -43.09442 34.695238 0.723149 0.690692 -0.000634 -0.50357 0.527862 0.683944 0.47273 -0.494274 0.729534 parts/754.dat
+1 16 33.835693 -44.201329 35.829942 0.695175 0.71884 -0.001042 -0.48155 0.466772 0.741777 0.533705 -0.515163 0.670646 parts/756.dat
+1 16 30.75953 -46.131973 38.028214 0.667123 -0.744947 0.000758 -0.446367 -0.400551 -0.800197 0.596408 0.533491 -0.599737 parts/754.dat
+1 16 28.905786 -47.07061 39.352507 0.645582 -0.763691 0.000458 -0.405951 -0.343677 -0.846811 0.646859 0.5465 -0.531893 parts/754.dat
+1 16 27.012618 -47.881459 40.70454 0.627293 -0.778783 0.000564 -0.355626 -0.287093 -0.889442 0.692845 0.55774 -0.457047 parts/754.dat
+1 16 25.081773 -48.543645 42.083659 0.610351 -0.792131 0.000489 -0.2912 -0.224949 -0.929839 0.736664 0.567386 -0.367966 parts/754.dat
+1 16 23.120365 -49.052813 43.484493 0.596807 -0.802385 0.000408 -0.214009 -0.159667 -0.963694 0.773318 0.575053 -0.267008 parts/754.dat
+1 16 21.136008 -49.399305 44.901485 0.587192 -0.809447 0.000311 -0.117554 -0.085657 -0.989365 0.800866 0.580911 -0.145451 parts/754.dat
+1 16 19.135938 -49.55341 46.32981 0.583439 -0.812157 -0.000005 -0.001991 -0.001424 -0.999997 0.812154 0.583437 -0.002448 parts/754.dat
+1 16 17.13316 -49.493292 47.760275 0.587951 -0.808896 -0.000427 0.120702 0.088255 -0.988758 0.79984 0.58129 0.149525 parts/754.dat
+1 16 15.142901 -49.211804 49.181649 0.602586 -0.798053 -0.001031 0.241157 0.183322 -0.953015 0.760745 0.574025 0.302923 parts/754.dat
+1 16 13.18549 -48.69211 50.579475 0.629397 -0.777082 -0.001806 0.352899 0.287899 -0.890268 0.692331 0.559694 0.455434 parts/754.dat
+1 16 11.289196 -47.904763 51.934195 0.667185 -0.744889 -0.002182 0.440559 0.396961 -0.805189 0.600642 0.536249 0.593014 parts/754.dat
+1 16 9.480051 -46.85167 53.226609 0.713676 -0.700471 -0.002582 0.4932 0.505109 -0.70825 0.497413 0.504188 0.705957 parts/754.dat
+1 16 7.791963 -45.532559 54.432673 0.765593 -0.643319 -0.002642 0.510391 0.609889 -0.606248 0.391622 0.462791 0.795271 parts/754.dat
+1 16 6.254387 -43.958648 55.531424 0.816736 -0.577007 -0.002273 0.495779 0.703765 -0.50884 0.295204 0.414461 0.860858 parts/754.dat
+1 16 4.885062 -42.165467 56.5098 0.863516 -0.504317 -0.002051 0.456875 0.783993 -0.420262 0.213553 0.361966 0.907401 parts/754.dat
+1 16 3.700163 -40.183061 57.356441 0.903753 -0.428051 -0.001686 0.401976 0.850041 -0.340359 0.147124 0.306923 0.940294 parts/754.dat
+1 16 2.704336 -38.048505 58.067967 0.935525 -0.353259 -0.001295 0.339715 0.90065 -0.270968 0.096888 0.253057 0.962588 parts/754.dat
+1 16 1.889834 -35.799555 58.649904 0.95897 -0.283505 -0.000964 0.276872 0.937253 -0.211893 0.060976 0.202932 0.977293 parts/754.dat
+1 16 1.242145 -33.469572 59.112627 0.975558 -0.219743 -0.000743 0.216748 0.962807 -0.161317 0.036164 0.157213 0.986902 parts/754.dat
+1 16 0.746937 -31.083164 59.4664 0.986876 -0.16148 -0.000588 0.160301 0.980095 -0.117121 0.019489 0.115489 0.993118 parts/754.dat
+1 16 0.391015 -28.659068 59.720663 0.994157 -0.107946 -0.000486 0.107582 0.991156 -0.077692 0.008868 0.077185 0.996977 parts/754.dat
+1 16 0.150075 -25.962202 59.892786 0.998205 -0.059896 -0.000362 0.059825 0.997286 -0.042916 0.002931 0.042817 0.999079 parts/754.dat
+1 16 0.026819 -23.492429 59.980839 0.999824 -0.018778 -0.000198 0.018774 0.999734 -0.013428 0.00045 0.013422 0.99991 parts/754.dat
+
+0 FILE 10174 - subModel-31.ldr
+0 subModel-31
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-31.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3032.dat
+1 72 0 0 -70 1 0 0 0 1 0 0 0 1 parts/2419.dat
+0 STEP
+1 4 -40 -24 -10 1 0 0 0 1 0 0 0 1 parts/3298.dat
+1 4 20 -24 -10 1 0 0 0 1 0 0 0 1 parts/3298.dat
+1 72 -10 -8 -40 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 19 -10 -24 40 0 0 1 0 1 0 -1 0 0 parts/3701.dat
+0 STEP
+1 71 10 -8 -70 0 0 1 0 1 0 -1 0 0 parts/2420.dat
+1 71 -30 -8 -70 -1 0 0 0 1 0 0 0 -1 parts/2420.dat
+1 71 -20 0 80 1 0 0 0 1 0 0 0 1 parts/3032.dat
+0 STEP
+1 72 -70 0 0 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 72 50 0 80 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 71 30 0 130 1 0 0 0 1 0 0 0 1 parts/2420.dat
+1 71 -50 0 130 0 0 -1 0 1 0 1 0 0 parts/2420.dat
+0 STEP
+1 71 -80 -8 -20 1 0 0 0 1 0 0 0 1 parts/41769.dat
+1 72 -80 -8 40 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 71 -80 -8 100 -1 0 0 0 1 0 0 0 -1 parts/41770.dat
+1 71 60 -8 -20 1 0 0 0 1 0 0 0 1 parts/41770.dat
+1 72 60 -8 40 -1 0 0 0 1 0 0 0 -1 parts/3022.dat
+1 71 60 -8 100 -1 0 0 0 1 0 0 0 -1 parts/41769.dat
+0 STEP
+1 72 -10 -126 224 1 0 0 0 0.6 -0.8 0 0.8 0.6 10174 - subModel-32.ldr
+0 STEP
+1 71 -10 -14 40 -1 0 0 0 1 0 0 0 -1 parts/32073.dat
+0 STEP
+1 72 -70 -32 40 1 0 0 0 1 0 0 0 1 parts/41747.dat
+1 72 50 -32 40 1 0 0 0 1 0 0 0 1 parts/41748.dat
+1 72 60 -32 100 -1 0 0 0 1 0 0 0 -1 parts/43720.dat
+1 72 -80 -32 100 -1 0 0 0 1 0 0 0 -1 parts/43721.dat
+0 STEP
+1 72 -10 -32 -30 1 0 0 0 1 0 0 0 1 parts/4286.dat
+1 72 -10 -32 -10 1 0 0 0 1 0 0 0 1 parts/3062b.dat
+1 0 -10 -32 10 1 0 0 0 1 0 0 0 1 parts/6141.dat
+1 71 -10 -32 40 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 72 -50 -32 40 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 72 30 -32 40 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+0 STEP
+1 71 -30 -56 90 -1 0 0 0 1 0 0 0 -1 parts/3675.dat
+1 71 10 -56 90 0 0 -1 0 1 0 1 0 0 parts/3675.dat
+1 72 -10 -40 40 0 0 -1 0 1 0 1 0 0 parts/3710.dat
+1 71 -10 -40 -20 0 0 1 0 1 0 -1 0 0 parts/44301.dat
+0 STEP
+1 72 -30 -56 70 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 72 10 -56 70 0 0 -1 0 1 0 1 0 0 parts/4286.dat
+1 72 -10 -64 60 1 0 0 0 1 0 0 0 1 parts/42022.dat
+1 71 -30 -56 40 1 0 0 0 1 0 0 0 1 parts/41749.dat
+1 71 10 -56 40 1 0 0 0 1 0 0 0 1 parts/41750.dat
+0 STEP
+1 71 10 -80 90 0 0 -1 0 1 0 1 0 0 parts/4599a.dat
+1 71 -30 -80 90 0 0 1 0 1 0 -1 0 0 parts/4599a.dat
+1 72 -30 -64 50 0 0 1 0 1 0 -1 0 0 parts/6190.dat
+1 72 10 -64 50 0 0 1 0 1 0 -1 0 0 parts/6190.dat
+0 STEP
+1 14 10 -415.844 176.761 0 0 1 0.984 -0.176 0 0.176 0.984 0 10174 - subModel-35.ldr
+0 STEP
+1 72 10 -592.645 37.22 0 0 1 -0.34 0.941 0 -0.941 -0.34 0 10174 - subModel-36.ldr
+0 STEP
+1 14 -30 -415.844 176.761 0 0 1 0.984 -0.176 0 0.176 0.984 0 10174 - subModel-37.ldr
+0 STEP
+1 1 -20 -439.773 196.853 0 0 1 0.984 -0.176 0 0.176 0.984 0 10174 - subModel-19.ldr
+0 STEP
+1 14 -70 -415.844 176.761 0 0 1 0.984 -0.176 0 0.176 0.984 0 10174 - subModel-38.ldr
+0 STEP
+1 14 -50 -317.444 194.361 0 0 -1 -0.984 -0.176 0 -0.176 0.984 0 10174 - subModel-39.ldr
+0 STEP
+1 72 -40 -611.763 20.208 1 0 0 0 0.982 0.191 0 -0.191 0.982 10174 - subModel-40.ldr
+0 STEP
+1 71 -88 -617.212 -60.23 0 1 0 -0.34 0 -0.941 -0.941 0 0.34 parts/4032a.dat
+1 71 -100 -617.212 -60.23 0 0 1 -0.34 0.941 0 -0.941 -0.34 0 parts/3713.dat
+
+0 FILE 10174 - subModel-32.ldr
+0 subModel-32
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-32.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 -1 0 1 0 0 0 0 1 parts/41239.dat
+1 0 0 0 -120 -1 0 0 0 -1 0 0 0 1 parts/6558.dat
+1 0 0 0 -40 -1 0 0 0 -1 0 0 0 1 parts/6558.dat
+0 STEP
+1 72 20 0 -20 0 -1 0 -1 0 0 0 0 -1 parts/32271.dat
+0 STEP
+1 71 0 0 120 -1 0 0 0 1 0 0 0 -1 10174 - subModel-2.ldr
+1 71 -15 0 120 0 0 -1 1 0 0 0 -1 0 parts/32123a.dat
+1 72 -20 0 -20 0 -1 0 -1 0 0 0 0 -1 parts/32271.dat
+0 STEP
+1 1 30 0 -100 1 0 0 0 0 1 0 -1 0 parts/4274.dat
+1 1 30 0 -60 1 0 0 0 0 1 0 -1 0 parts/4274.dat
+1 1 -30 0 -60 -1 0 0 0 0 -1 0 -1 0 parts/4274.dat
+1 1 -30 0 -100 -1 0 0 0 0 -1 0 -1 0 parts/4274.dat
+0 STEP
+1 72 40 -54 -168 1 0 0 0 0.6 0.8 0 -0.8 0.6 10174 - subModel-4.ldr
+0 STEP
+1 72 -40 -54 -168 1 0 0 0 0.6 0.8 0 -0.8 0.6 10174 - subModel-3.ldr
+0 STEP
+1 71 38 0 -70 0 -1 0 0 0 1 -1 0 0 parts/2431.dat
+1 71 -38 0 -70 0 1 0 0 0 1 1 0 0 parts/2431.dat
+0 STEP
+
+1 72 0 -45.269 -44.736 0 0 1 -0.994 0.111 0 -0.111 -0.994 0 10174 - subModel-33.ldr
+1 71 0 -32 -164 1 0 0 0 0.111 0.994 0 -0.994 0.111 parts/32073.dat
+
+
+0 FILE 10174 - subModel-33.ldr
+0 subModel-33
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-33.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 -1 0 0 0 0 1 0 1 0 parts/41239.dat
+1 1 0 40 -10 0 -1 0 0 0 1 -1 0 0 parts/4274.dat
+1 1 0 0 -10 0 -1 0 0 0 1 -1 0 0 parts/4274.dat
+1 1 0 -40 -10 0 0 -1 0 -1 0 -1 0 0 parts/4274.dat
+1 1 0 -20 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+1 1 0 20 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+1 1 0 60 10 0 1 0 0 0 1 1 0 0 parts/4274.dat
+0 STEP
+
+1 72 -10 -20 18 1 0 0 0 0 1 0 -1 0 10174 - subModel-34.ldr
+0 STEP
+1 72 -10 40 -18 -1 0 0 0 0 1 0 1 0 10174 - subModel-6.ldr
+
+
+0 FILE 10174 - subModel-34.ldr
+0 subModel-34
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-34.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/43722.dat
+1 72 0 0 60 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+0 STEP
+1 72 10 -8 30 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+0 STEP
+1 72 10 -8 70 0 0 -1 0 1 0 1 0 0 parts/44728.dat
+1 72 10 -8 -10 0 0 -1 0 1 0 1 0 0 parts/44728.dat
+0 STEP
+1 71 32 12 -10 0 -1 0 0 0 -1 1 0 0 parts/3068b.dat
+1 0 40 12 70 0 -1 0 0 0 -1 1 0 0 10174 - subModel-8.ldr
+
+
+0 FILE 10174 - subModel-35.ldr
+0 subModel-35
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-35.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+1 71 200 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+0 STEP
+1 72 20 -24 0 0 0 1 0 1 0 -1 0 0 parts/42022.dat
+1 71 120 -8 0 1 0 0 0 1 0 0 0 1 parts/4162.dat
+1 71 250 -24 0 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 71 270 -24 0 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+0 STEP
+1 71 270 24 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 71 250 24 0 0 0 1 0 1 0 -1 0 0 parts/4287.dat
+1 71 140 24 0 1 0 0 0 1 0 0 0 1 parts/3666.dat
+1 71 -60 24 0 1 0 0 0 1 0 0 0 1 parts/6111.dat
+1 71 50 24 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+0 STEP
+1 1 260 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 180 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 80 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 20 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 0 -80 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -60 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -40 10 10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 1 0 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+0 STEP
+1 71 130 10 18 1 0 0 0 0 1 0 -1 0 parts/4162.dat
+1 72 260 10 18 0 0 1 -1 0 0 0 -1 0 parts/4740.dat
+1 71 10 20 18 1 0 0 0 0 1 0 -1 0 parts/3020.dat
+1 71 -120 10 20 0 1 0 0 0 1 1 0 0 10174 - subModel-21.ldr
+0 STEP
+1 0 280 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 200 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 140 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 120 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 60 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 40 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+1 0 -20 10 -20 0 0 -1 0 -1 0 -1 0 0 parts/6558.dat
+0 STEP
+1 19 -40 0 -20 -1 0 0 0 1 0 0 0 -1 parts/3701.dat
+1 72 20 10 -20 0 0 1 -1 0 0 0 -1 0 parts/32271.dat
+0 STEP
+1 72 -110 48 0 0 0 -1 0 1 0 1 0 0 parts/3665.dat
+1 72 -130 48 0 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+0 STEP
+1 1 -120 10 46 1 0 0 0 0 1 0 -1 0 10174 - subModel-10.ldr
+
+
+0 FILE 10174 - subModel-36.ldr
+0 subModel-36
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-36.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3895.dat
+1 0 -80 10 -20 0 0.8 0.6 0 0.6 -0.8 -1 0 0 parts/6558.dat
+0 STEP
+1 71 -160 90 -20 0.8 0 0.6 0.6 0 -0.8 0 1 0 parts/6629.dat
+0 STEP
+1 72 -40 10 -20 0 0 -1 0 1 0 1 0 0 parts/6587.dat
+1 72 0 10 -20 0 0 -1 0 1 0 1 0 0 parts/6587.dat
+1 71 0 0 -20 1 0 0 0 1 0 0 0 1 parts/32064a.dat
+0 STEP
+1 71 100 6 -50 0 1 0 0 0 -1 -1 0 0 10174 - subModel-12.ldr
+1 71 100 10 -20 0 1 0 -1 0 0 0 0 1 parts/3713.dat
+0 STEP
+1 72 0 0 -40 1 0 0 0 1 0 0 0 1 parts/3895.dat
+0 STEP
+1 0 -100 10 -50 0 -1 0 0 0 -1 1 0 0 parts/2780.dat
+1 0 -60 10 -50 0 -1 0 0 0 -1 1 0 0 parts/2780.dat
+1 0 -60 10 10 0 -1 0 0 0 -1 1 0 0 parts/2780.dat
+1 0 -100 10 10 0 -1 0 0 0 -1 1 0 0 parts/2780.dat
+0 STEP
+1 72 -50 -24 -10 0 0 1 0 1 0 -1 0 0 parts/30363.dat
+1 72 -30 -24 0 0 0 -1 0 1 0 1 0 0 10174 - subModel-13.ldr
+1 71 0 -24 -10 0 0 1 0 1 0 -1 0 0 parts/6215.dat
+1 72 30 -24 0 0 0 1 0 1 0 -1 0 0 parts/3062b.dat
+1 72 50 -24 0 0 0 -1 0 1 0 1 0 0 10174 - subModel-13.ldr
+0 STEP
+1 72 70 -8 -20 0 0 -1 0 1 0 1 0 0 10174 - subModel-14.ldr
+1 72 40 -48 0 0 0 1 0 1 0 -1 0 0 parts/42022.dat
+1 72 40 -48 -20 0 0 1 0 1 0 -1 0 0 parts/42022.dat
+0 STEP
+1 72 20 40 -40 -1 0 0 0 1 0 0 0 -1 10174 - subModel-15.ldr
+1 71 46 -14 24 0 1 0 0 0 1 1 0 0 parts/4095.dat
+0 STEP
+1 71 100 10 20 1 0 0 0 0 1 0 -1 0 10174 - subModel-16.ldr
+1 71 -10 10 34 -1 0 0 0 0 -1 0 -1 0 parts/30413.dat
+0 STEP
+1 71 150 28 -40 -1 0 0 0 -1 0 0 0 1 10174 - subModel-17.ldr
+0 STEP
+1 71 60 -56 -10 0 0 1 0 1 0 -1 0 0 parts/3068b.dat
+
+
+0 FILE 10174 - subModel-37.ldr
+0 subModel-37
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-37.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+1 71 200 0 0 1 0 0 0 1 0 0 0 1 parts/2730.dat
+0 STEP
+1 72 20 -24 0 0 0 1 0 1 0 -1 0 0 parts/42022.dat
+1 72 60 -24 0 0 0 -1 0 1 0 1 0 0 parts/42022.dat
+1 72 180 -8 0 -1 0 0 0 1 0 0 0 -1 parts/30244.dat
+1 71 250 -24 0 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 71 270 -24 0 0 0 -1 0 1 0 1 0 0 parts/3040b.dat
+0 STEP
+1 1 260 10 -10 0 0 1 0 1 0 -1 0 0 parts/4274.dat
+1 0 -80 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -60 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -40 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+0 STEP
+1 72 260 10 -18 0 0 1 1 0 0 0 1 0 parts/4740.dat
+
+
+0 FILE 10174 - subModel-38.ldr
+0 subModel-38
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-38.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 -120 10 20 0 0 1 -1 0 0 0 -1 0 parts/44224.dat
+
+1 71 -120 10 20 0.866 0 -0.5 -0.5 0 -0.866 0 1 0 parts/44225.dat
+
+
+0 FILE 10174 - subModel-39.ldr
+0 subModel-39
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-39.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3895.dat
+1 0 -80 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 -60 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 20 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+1 0 100 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+0 STEP
+1 1 -100 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 40 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 60 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+1 1 80 10 10 0 0 1 0 -1 0 1 0 0 parts/4274.dat
+0 STEP
+1 71 120 40 0 0 0 1 0 1 0 -1 0 0 10174 - subModel-23.ldr
+1 71 50 24 0 0 0 1 0 1 0 -1 0 0 parts/3665.dat
+1 71 -40 24 0 1 0 0 0 1 0 0 0 1 parts/3666.dat
+0 STEP
+1 71 -20 -8 0 1 0 0 0 1 0 0 0 1 parts/4162.dat
+1 72 80 -24 0 0 0 -1 0 1 0 1 0 0 parts/42022.dat
+0 STEP
+1 71 -30 10 18 1 0 0 0 0 1 0 -1 0 parts/4162.dat
+1 71 110 20 18 1 0 0 0 0 1 0 -1 0 parts/3795.dat
+
+
+0 FILE 10174 - subModel-40.ldr
+0 subModel-40
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-40.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 -10 0 0 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+1 0 -20 10 -60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+1 0 -20 10 60 -1 0 0 0 1 0 0 0 -1 parts/2780.dat
+0 STEP
+1 71 -30 0 0 0 0 1 0 1 0 -1 0 0 parts/2730.dat
+1 0 -50 10 80 -1 0 0 0 0 1 0 1 0 parts/6558.dat
+1 0 -50 10 40 -1 0 0 0 0 1 0 1 0 parts/6558.dat
+0 STEP
+1 19 -50 0 60 0 0 -1 0 1 0 1 0 0 parts/3701.dat
+1 71 -20 24 -80 0 0 -1 0 1 0 1 0 0 parts/4032a.dat
+0 STEP
+1 71 -30 -8 80 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 72 -20 -8 -80 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 72 -30 -8 0 0 0 1 0 1 0 -1 0 0 parts/6636.dat
+1 72 -10 -8 -20 0 0 -1 0 1 0 1 0 0 parts/44567.dat
+1 0 -10 -8 -50 0 0 1 0 1 0 -1 0 0 parts/6141.dat
+1 0 -10 -8 10 0 0 1 0 1 0 -1 0 0 parts/6141.dat
+0 STEP
+1 0 -20 -24 80 0 0 1 0 1 0 -1 0 0 10174 - subModel-8.ldr
+1 0 -20 -24 -80 0 0 1 0 1 0 -1 0 0 10174 - subModel-8.ldr
+1 72 -10 -16 -20 0 0 1 0 1 0 -1 0 0 parts/2431.dat
+
+0 FILE 10174 - subModel-41.ldr
+0 subModel-41
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-41.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3832.dat
+0 STEP
+1 71 -110 -8 0 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 71 110 -8 0 1 0 0 0 1 0 0 0 1 parts/3021.dat
+
+
+0 FILE 10174 - subModel-42.ldr
+0 subModel-42
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-42.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/2817.dat
+1 1 20 10 0 1 0 0 0 1 0 0 0 1 parts/3749.dat
+1 1 -20 10 0 -1 0 0 0 1 0 0 0 -1 parts/3749.dat
+0 STEP
+1 72 40 10 0 0 0 -1 0 1 0 1 0 0 parts/30553.dat
+1 72 -40 10 0 0 0 1 0 -1 0 1 0 0 parts/30553.dat
+0 STEP
+1 72 -20 -24 0 1 0 0 0 1 0 0 0 1 parts/30165.dat
+1 72 20 -24 0 1 0 0 0 1 0 0 0 1 parts/30165.dat
+0 STEP
+1 71 86.039 -7.47 0 0 0.391 -0.921 0 0.921 0.391 1 0 0 10174 - subModel-43.ldr
+
+0 FILE 10174 - subModel-43.ldr
+0 subModel-43
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-43.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 72 0 0 20 -1 0 0 0 1 0 0 0 -1 parts/44567.dat
+0 STEP
+1 71 0 -16 20 1 0 0 0 1 0 0 0 1 parts/47457.dat
+
+
+0 FILE 10174 - subModel-44.ldr
+0 subModel-44
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-44.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 8 50 1 0 0 0 1 0 0 0 1 parts/4477.dat
+1 71 80 0 0 0 0 1 0 1 0 -1 0 0 parts/3795.dat
+1 71 0 8 -50 1 0 0 0 1 0 0 0 1 parts/4477.dat
+0 STEP
+1 0 40 0 0 0 0 1 0 1 0 -1 0 0 parts/32001.dat
+1 71 -120 8 0 0 0 1 0 1 0 -1 0 0 parts/3795.dat
+1 72 90 -24 40 0 0 -1 0 1 0 1 0 0 parts/3747a.dat
+1 72 90 -24 0 0 0 -1 0 1 0 1 0 0 parts/3747a.dat
+1 72 90 -24 -40 0 0 -1 0 1 0 1 0 0 parts/3747a.dat
+0 STEP
+1 71 -60 0 0 1 0 0 0 1 0 0 0 1 parts/3036.dat
+1 71 40 -24 0 1 0 0 0 1 0 0 0 1 parts/3941.dat
+0 STEP
+1 72 -130 -8 0 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 72 -40 -8 -40 0 0 1 0 1 0 -1 0 0 parts/3022.dat
+1 72 -40 -8 40 0 0 1 0 1 0 -1 0 0 parts/3022.dat
+1 71 40 -24 -50 -1 0 0 0 1 0 0 0 -1 parts/3010.dat
+1 71 40 -24 50 -1 0 0 0 1 0 0 0 -1 parts/3010.dat
+0 STEP
+1 71 20 -32 0 0 0 1 0 1 0 -1 0 0 parts/3795.dat
+1 71 100 -32 0 0 0 1 0 1 0 -1 0 0 parts/3036.dat
+0 STEP
+1 71 80 -40 -40 -1 0 0 0 1 0 0 0 -1 parts/3795.dat
+1 71 80 -40 40 -1 0 0 0 1 0 0 0 -1 parts/3795.dat
+1 71 -40 -16 40 -1 0 0 0 1 0 0 0 -1 parts/3068b.dat
+1 71 -40 -16 -40 -1 0 0 0 1 0 0 0 -1 parts/3068b.dat
+1 72 -130 -8 30 0 0 1 0 1 0 -1 0 0 parts/50746.dat
+1 72 -130 -8 -30 0 0 1 0 1 0 -1 0 0 parts/50746.dat
+0 STEP
+1 72 110 -56 -70 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 72 110 -56 70 0 0 1 0 1 0 -1 0 0 parts/4286.dat
+1 72 110 -56 0 0 0 1 0 1 0 -1 0 0 parts/30363.dat
+1 72 140 -56 -70 1 0 0 0 1 0 0 0 1 parts/30365.dat
+1 72 140 -56 -10 1 0 0 0 1 0 0 0 1 parts/30365.dat
+1 72 140 -56 10 1 0 0 0 1 0 0 0 1 parts/30365.dat
+1 72 140 -56 70 1 0 0 0 1 0 0 0 1 parts/30365.dat
+0 STEP
+1 71 130 -64 -70 1 0 0 0 1 0 0 0 1 parts/3623.dat
+1 71 130 -64 70 1 0 0 0 1 0 0 0 1 parts/3623.dat
+1 71 130 -64 0 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 72 100 -48 40 0 0 1 0 1 0 -1 0 0 10174 - subModel-45.ldr
+1 72 100 -48 -40 0 0 -1 0 1 0 1 0 0 10174 - subModel-45.ldr
+0 STEP
+1 0 100 -96 -30 0 0 1 0 1 0 -1 0 0 10174 - subModel-46.ldr
+1 0 100 -96 30 0 0 -1 0 1 0 1 0 0 10174 - subModel-46.ldr
+1 0 -40 -48 10 0 0 -1 0 1 0 1 0 0 10174 - subModel-65.ldr
+1 0 -40 -48 -10 0 0 1 0 1 0 -1 0 0 10174 - subModel-65.ldr
+0 STEP
+1 71 -90 -24 40 0 0 1 0 1 0 -1 0 0 10174 - subModel-47.ldr
+1 71 -90 -24 0 0 0 1 0 1 0 -1 0 0 10174 - subModel-47.ldr
+1 71 -90 -24 -40 0 0 1 0 1 0 -1 0 0 10174 - subModel-47.ldr
+1 71 80 -74.048 93.405 0.953 -0.304 0 0.3 0.935 0.191 -0.059 -0.182 0.981 10174 - subModel-48.ldr
+1 4 80 -74.048 -93.405 -0.954 -0.302 0 -0.3 0.935 0.192 -0.058 0.182 -0.98 10174 - subModel-48.ldr
+0 STEP
+1 0 -40 -26.048 73.405 0.956 -0.299 0 0.296 0.934 0.191 -0.058 -0.184 0.98 10174 - subModel-49.ldr
+1 4 -40 -26.048 -73.405 -0.954 -0.299 0 -0.294 0.937 0.191 -0.057 0.183 -0.981 10174 - subModel-49.ldr
+0 STEP
+1 71 -101.498 -31.082 0 0 0.891 0.454 0 0.454 -0.891 -1 0 0 10174 - subModel-50.ldr
+0 STEP
+1 0 40 54 0 0 0.866 0.5 1 0 0 0 0.5 -0.866 parts/3707.dat
+
+
+0 FILE 10174 - subModel-45.ldr
+0 subModel-45
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-45.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 0 0 1 0 1 0 -1 0 0 parts/3709b.dat
+1 72 -10 -8 0 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+0 STEP
+1 72 -10 -16 0 0 0 1 0 1 0 -1 0 0 parts/2412b.dat
+
+
+0 FILE 10174 - subModel-46.ldr
+0 subModel-46
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-46.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 6.508 0.684 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3010.dat
+1 19 26.096 4.514 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3701.dat
+0 STEP
+1 71 17.827 -5.237 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3068b.dat
+0 STEP
+1 71 1.911 24.19 -20 0 -0.191 0.981 0 0.981 0.191 -1 0 0 parts/6134.dat
+1 71 1.911 24.19 20 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/6134.dat
+1 0 0 24 20 0 0 -1 0 1 0 1 0 0 parts/3937.dat
+1 0 0 24 -20 0 0 -1 0 1 0 1 0 0 parts/3937.dat
+
+
+0 FILE 10174 - subModel-47.ldr
+0 subModel-47
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-47.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 1 0 0 0 1 parts/3937.dat
+1 71 0 5.46 -8.91 1 0 0 0 0.454 -0.891 0 0.891 0.454 parts/6134.dat
+
+
+0 FILE 10174 - subModel-48.ldr
+0 subModel-48
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-48.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 1 0 0 0 1 parts/32014.dat
+1 1 0 0 -30 0 0 -1 0 1 0 1 0 0 parts/3749.dat
+1 71 0 -60 0 0 -1 0 1 0 0 0 0 1 parts/32073.dat
+
+
+0 FILE 10174 - subModel-49.ldr
+0 subModel-49
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-49.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 1 0 0 0 1 parts/32014.dat
+1 1 0 0 -30 0 0 -1 0 1 0 1 0 0 parts/3749.dat
+1 0 0 -90 0 0 -1 0 1 0 0 0 0 1 parts/3707.dat
+
+
+0 FILE 10174 - subModel-50.ldr
+0 subModel-50
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-50.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3795.dat
+1 0 10 -24 10 0 0 1 0 1 0 -1 0 0 parts/2357.dat
+1 0 -10 -24 10 -1 0 0 0 1 0 0 0 -1 parts/2357.dat
+0 STEP
+1 19 0 -48 -10 -1 0 0 0 1 0 0 0 -1 10174 - subModel-51.ldr
+0 STEP
+1 71 50 -48 0 0 0 -1 0 1 0 1 0 0 parts/3245a.dat
+1 71 -50 -48 0 0 0 -1 0 1 0 1 0 0 parts/3245a.dat
+0 STEP
+1 71 0 -72 -10 1 0 0 0 1 0 0 0 1 parts/3009.dat
+1 71 0 -72 10 1 0 0 0 1 0 0 0 1 parts/3010.dat
+1 72 50 -72 10 -1 0 0 0 1 0 0 0 -1 parts/3665.dat
+1 72 -50 -72 10 -1 0 0 0 1 0 0 0 -1 parts/3665.dat
+0 STEP
+1 71 -50 -80 10 0 0 -1 0 1 0 1 0 0 parts/3623.dat
+1 71 50 -80 10 0 0 -1 0 1 0 1 0 0 parts/3623.dat
+
+
+0 FILE 10174 - subModel-51.ldr
+0 subModel-51
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-51.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 19 0 0 0 1 0 0 0 1 0 0 0 1 parts/3701.dat
+1 0 0 10 -10 0 0 1 0 1 0 -1 0 0 parts/2780.dat
+0 STEP
+1 19 0 0 -20 1 0 0 0 1 0 0 0 1 parts/3701.dat
+
+
+0 FILE 10174 - subModel-52.ldr
+0 subModel-52
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-52.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3020.dat
+1 72 0 -24 -10 1 0 0 0 1 0 0 0 1 parts/3660.dat
+0 STEP
+1 72 -10 -48 -20 1 0 0 0 1 0 0 0 1 parts/30359b.dat
+1 72 10 -48 -20 1 0 0 0 1 0 0 0 1 parts/30359b.dat
+0 STEP
+1 1 -10 -38 -160 0 0 -1 0 1 0 1 0 0 parts/3749.dat
+1 1 10 -38 -160 0 0 -1 0 1 0 1 0 0 parts/3749.dat
+1 0 -1 -40 8 1 0 0 0 0 -1 0 1 0 10174 - subModel-53.ldr
+0 STEP
+1 72 30 -38 -72 0 0 1 -1 0 0 0 -1 0 10174 - subModel-54.ldr
+1 72 -30 -38 -72 0 0 1 -1 0 0 0 -1 0 10174 - subModel-54.ldr
+1 71 -10 -38 -180 0 1 0 0 0 -1 -1 0 0 parts/75535.dat
+1 71 10 -38 -180 0 1 0 0 0 -1 -1 0 0 parts/75535.dat
+0 STEP
+1 71 0 -64 -10 1 0 0 0 1 0 0 0 1 parts/47457.dat
+1 72 0 -72 -10 1 0 0 0 1 0 0 0 1 parts/3023.dat
+0 STEP
+1 71 30 -72 0 0 0 1 0 1 0 -1 0 0 parts/2362b.dat
+1 71 -30 -72 0 0 0 -1 0 1 0 1 0 0 parts/2362b.dat
+0 STEP
+1 72 0 -80 -10 1 0 0 0 1 0 0 0 1 parts/3710.dat
+1 72 -20 -80 10 -1 0 0 0 1 0 0 0 -1 parts/44567.dat
+1 72 20 -80 10 -1 0 0 0 1 0 0 0 -1 parts/44567.dat
+0 STEP
+1 71 0 -88 0 -1 0 0 0 1 0 0 0 -1 parts/3068b.dat
+1 1 -20 -84.312 39.012 -1 0 0 0 -0.819 -0.574 0 -0.574 0.819 10174 - subModel-55.ldr
+1 1 20 -84.312 39.012 -1 0 0 0 -0.819 -0.574 0 -0.574 0.819 10174 - subModel-55.ldr
+
+
+0 FILE 10174 - subModel-53.ldr
+0 subModel-53
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-53.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 1 0 -2 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 0 11 -8 -2 0 0 -1 0 1 0 1 0 0 parts/4085c.dat
+1 0 -9 -8 -2 0 0 1 0 1 0 -1 0 0 parts/4085c.dat
+
+
+0 FILE 10174 - subModel-54.ldr
+0 subModel-54
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-54.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3062b.dat
+1 72 0 -24 0 1 0 0 0 1 0 0 0 1 parts/4589.dat
+0 STEP
+1 71 0 -80 0 1 0 0 0 1 0 0 0 1 parts/30374.dat
+
+
+0 FILE 10174 - subModel-55.ldr
+0 subModel-55
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-55.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 -1 1 0 0 0 1 0 0 0 1 parts/30553.dat
+1 1 0 0 19 0 0 1 0 1 0 -1 0 0 parts/3749.dat
+
+0 FILE 10174 - subModel-56.ldr
+0 subModel-56
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-56.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3832.dat
+0 STEP
+1 71 0 -8 -40 0 0 1 0 1 0 -1 0 0 parts/3020.dat
+1 71 -60 -8 10 -1 0 0 0 1 0 0 0 -1 parts/3666.dat
+1 71 60 -8 10 -1 0 0 0 1 0 0 0 -1 parts/3666.dat
+1 71 100 -8 -40 1 0 0 0 1 0 0 0 1 parts/41770.dat
+1 71 -100 -8 -40 1 0 0 0 1 0 0 0 1 parts/41769.dat
+0 STEP
+1 72 0 0 -40 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 72 90 0 -40 0 0 -1 0 1 0 1 0 0 parts/3023.dat
+1 72 -90 0 -40 0 0 -1 0 1 0 1 0 0 parts/3023.dat
+1 71 0 0 -80 -1 0 0 0 1 0 0 0 -1 parts/3795.dat
+1 71 -70 0 -70 -1 0 0 0 1 0 0 0 -1 parts/2420.dat
+1 71 70 0 -70 0 0 1 0 1 0 -1 0 0 parts/2420.dat
+0 STEP
+1 71 0 -8 -100 -1 0 0 0 1 0 0 0 -1 parts/3020.dat
+1 72 50 -8 -60 0 0 -1 0 1 0 1 0 0 parts/43723.dat
+1 72 -50 -8 -60 0 0 1 0 1 0 -1 0 0 parts/43722.dat
+0 STEP
+1 71 0 -16 -20 0 0 1 0 1 0 -1 0 0 parts/3068b.dat
+1 71 70 -8 -200 1 0 0 0 1 0 0 0 1 parts/47397.dat
+1 71 -70 -8 -200 1 0 0 0 1 0 0 0 1 parts/47398.dat
+0 STEP
+1 71 90 -16 -20 0 0 1 0 1 0 -1 0 0 parts/2431.dat
+1 71 -90 -16 -20 0 0 1 0 1 0 -1 0 0 parts/2431.dat
+1 71 70 -16 -70 0 0 1 0 1 0 -1 0 0 parts/2420.dat
+1 71 -70 -16 -70 -1 0 0 0 1 0 0 0 -1 parts/2420.dat
+1 71 0 -16 -140 0 0 -1 0 1 0 1 0 0 parts/3036.dat
+0 STEP
+1 71 -90 8 10 1 0 0 0 1 0 0 0 1 parts/4287.dat
+1 71 90 8 10 1 0 0 0 1 0 0 0 1 parts/4287.dat
+1 72 0 8 10 1 0 0 0 1 0 0 0 1 parts/3660.dat
+1 71 0 0 -200 1 0 0 0 1 0 0 0 1 10174 - subModel-57.ldr
+0 STEP
+1 71 -60 -24 -10 1 0 0 0 1 0 0 0 1 10174 - subModel-58.ldr
+1 71 60 -24 -10 1 0 0 0 1 0 0 0 1 10174 - subModel-59.ldr
+
+
+0 FILE 10174 - subModel-57.ldr
+0 subModel-57
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-57.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3020.dat
+1 71 0 -8 0 1 0 0 0 1 0 0 0 1 parts/3020.dat
+
+
+0 FILE 10174 - subModel-58.ldr
+0 subModel-58
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-58.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/3937.dat
+1 71 0 2.34 6.428 -1 0 0 0 0.766 -0.643 0 -0.643 -0.766 parts/6134.dat
+0 STEP
+1 71 10 -3.789 11.57 -1 0 0 0 0.766 -0.643 0 -0.643 -0.766 parts/3623.dat
+0 STEP
+1 71 10 -23.072 -11.411 0 0 -1 0.643 0.766 0 0.766 -0.643 0 parts/43722.dat
+
+
+0 FILE 10174 - subModel-59.ldr
+0 subModel-59
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-59.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/3937.dat
+1 71 0 2.34 6.428 -1 0 0 0 0.766 -0.643 0 -0.643 -0.766 parts/6134.dat
+0 STEP
+1 71 -10 -3.789 11.57 -1 0 0 0 0.766 -0.643 0 -0.643 -0.766 parts/3623.dat
+0 STEP
+1 71 -10 -23.072 -11.411 0 0 1 -0.643 0.766 0 -0.766 -0.643 0 parts/43723.dat
+
+
+0 FILE 10174 - subModel-60.ldr
+0 subModel-60
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-60.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3036.dat
+1 71 20 0 -90 0 0 -1 0 1 0 1 0 0 parts/54383.dat
+0 STEP
+1 71 0 -8 -40 1 0 0 0 1 0 0 0 1 parts/3032.dat
+1 72 -60 -8 30 -1 0 0 0 1 0 0 0 -1 parts/43722.dat
+0 STEP
+1 0 -100 -8 -20 -1 0 0 0 1 0 0 0 -1 parts/3709b.dat
+1 71 -100 -8 -60 -1 0 0 0 1 0 0 0 -1 parts/3020.dat
+0 STEP
+1 71 -90 0 -20 0 0 1 0 1 0 -1 0 0 parts/3460.dat
+1 71 -120 0 -20 0 0 1 0 1 0 -1 0 0 parts/3738.dat
+0 STEP
+1 71 -120 -8 40 -1 0 0 0 1 0 0 0 -1 parts/3020.dat
+1 71 -120 -8 -140 0 0 -1 0 1 0 1 0 0 parts/3032.dat
+0 STEP
+1 71 -100 0 -140 0 0 -1 0 1 0 1 0 0 parts/3031.dat
+1 71 -170 0 -110 -1 0 0 0 1 0 0 0 -1 parts/3623.dat
+1 71 -220 0 -180 -1 0 0 0 1 0 0 0 -1 parts/3036.dat
+1 71 -180 0 -20 0 0 1 0 1 0 -1 0 0 parts/3035.dat
+0 STEP
+1 72 -180 -8 -90 -1 0 0 0 1 0 0 0 -1 parts/3023.dat
+1 71 -220 -8 -160 -1 0 0 0 1 0 0 0 -1 parts/3958.dat
+1 71 -180 -8 -40 1 0 0 0 1 0 0 0 1 parts/41769.dat
+1 72 -180 -8 30 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+1 71 -50 -8 -140 1 0 0 0 1 0 0 0 1 parts/54384.dat
+0 STEP
+1 71 -90 0 -240 1 0 0 0 1 0 0 0 1 parts/54384.dat
+1 71 -130 0 -210 0 0 -1 0 1 0 1 0 0 parts/3623.dat
+1 72 -220 0 -110 -1 0 0 0 1 0 0 0 -1 parts/3023.dat
+1 71 -260 0 -90 0 0 1 0 1 0 -1 0 0 parts/3021.dat
+0 STEP
+1 71 -230 -8 -90 1 0 0 0 1 0 0 0 1 parts/3623.dat
+1 72 -120 -8 -210 1 0 0 0 1 0 0 0 1 parts/3710.dat
+1 71 -310 -8 -160 -1 0 0 0 1 0 0 0 -1 parts/54384.dat
+1 71 -280 -8 -60 -1 0 0 0 1 0 0 0 -1 parts/41770.dat
+1 71 -220 -8 -250 0 0 1 0 1 0 -1 0 0 parts/47397.dat
+0 STEP
+1 71 -240 0 -270 0 0 1 0 1 0 -1 0 0 parts/47397.dat
+1 71 -330 0 -180 -1 0 0 0 1 0 0 0 -1 parts/54384.dat
+1 71 -270 0 0 -1 0 0 0 1 0 0 0 -1 parts/54384.dat
+1 71 -230 0 -20 0 0 1 0 1 0 -1 0 0 parts/3460.dat
+1 72 -300 0 -90 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+0 STEP
+1 71 -230 -8 -50 0 0 -1 0 1 0 1 0 0 parts/2450.dat
+0 STEP
+1 72 -140 8 20 -1 0 0 0 1 0 0 0 -1 parts/2445.dat
+1 72 -220 8 -240 -1 0 0 0 1 0 0 0 -1 parts/2445.dat
+1 71 -230 8 -20 -1 0 0 0 1 0 0 0 -1 parts/3021.dat
+1 71 -120 8 -20 -1 0 0 0 1 0 0 0 -1 parts/3738.dat
+1 71 -290 8 -100 -1 0 0 0 1 0 0 0 -1 parts/54384.dat
+1 71 -300 8 -190 0 0 1 0 1 0 -1 0 0 parts/3021.dat
+1 71 -200 8 -160 0 0 1 0 1 0 -1 0 0 parts/3032.dat
+1 71 -120 8 -100 0 0 1 0 1 0 -1 0 0 parts/3032.dat
+0 STEP
+1 72 -170 16 -180 0 0 1 0 1 0 -1 0 0 10174 - subModel-61.ldr
+1 0 -120 16 -100 0 0 1 0 1 0 -1 0 0 parts/32324.dat
+0 STEP
+1 71 -117 -74 -14.804 0.5 -0.866 0 0 0 -1 0.866 0.5 0 10174 - subModel-62.ldr
+0 STEP
+1 71 -120 26 -20 0.866 0.5 0 0 0 -1 -0.5 0.866 0 parts/3713.dat
+
+
+0 FILE 10174 - subModel-61.ldr
+0 subModel-61
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-61.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/3894.dat
+1 0 -40 10 -10 0 0 1 0 1 0 -1 0 0 parts/3673.dat
+1 0 0 10 -10 0 0 1 0 1 0 -1 0 0 parts/3673.dat
+1 0 40 10 -10 0 0 1 0 1 0 -1 0 0 parts/3673.dat
+0 STEP
+1 72 0 0 -20 1 0 0 0 1 0 0 0 1 parts/3894.dat
+
+
+0 FILE 10174 - subModel-62.ldr
+0 subModel-62
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-62.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/6587.dat
+1 0 38 0 0 0 -1 0 1 0 0 0 0 1 parts/6141.dat
+0 STEP
+1 71 28 0 0 0 -1 0 1 0 0 0 0 1 parts/3941.dat
+0 STEP
+1 72 -6 0 0 1 0 0 0 1 0 0 0 1 parts/32013.dat
+1 72 -40 0 0 0 1 0 0 0 -1 -1 0 0 parts/30367a.dat
+0 STEP
+1 0 -6 0 -70 0 -1 0 0 0 -1 1 0 0 parts/3706.dat
+1 72 62 0 0 0 -1 0 1 0 0 0 0 1 10174 - subModel-63.ldr
+0 STEP
+1 71 -6 0 -38 0 0 1 1 0 0 0 1 0 10174 - subModel-64.ldr
+
+0 FILE 10174 - subModel-63.ldr
+0 subModel-63
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-63.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/4733.dat
+1 72 0 10 14 1 0 0 0 0 1 0 -1 0 parts/30162.dat
+0 STEP
+1 72 14 10 0 0 -1 0 0 0 1 -1 0 0 parts/30162.dat
+1 72 0 10 -14 -1 0 0 0 0 1 0 1 0 parts/30162.dat
+1 72 -14 10 0 0 1 0 0 0 1 1 0 0 parts/30162.dat
+
+
+0 FILE 10174 - subModel-64.ldr
+0 subModel-64
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-64.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 -1 0 0 0 -1 0 0 0 1 parts/3961.dat
+1 71 0 -8 0 -1 0 0 0 -1 0 0 0 1 parts/4032a.dat
+0 STEP
+1 71 0 8 0 -1 0 0 0 -1 0 0 0 1 parts/45729.dat
+
+
+0 FILE 10174 - subModel-65.ldr
+0 subModel-65
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-65.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 6.508 0.684 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3010.dat
+1 19 26.096 4.514 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3701.dat
+0 STEP
+1 71 17.834 -5.237 0 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/3068b.dat
+0 STEP
+1 71 1.911 24.19 -20 0 -0.191 0.981 0 0.981 0.191 -1 0 0 parts/6134.dat
+1 71 1.911 24.19 20 0 -0.191 0.979 0 0.979 0.191 -1 0 0 parts/6134.dat
+1 0 0 24 20 0 0 -1 0 1 0 1 0 0 parts/3937.dat
+1 0 0 24 -20 0 0 -1 0 1 0 1 0 0 parts/3937.dat
+
+
+0 FILE 10174 - subModel-66.ldr
+0 subModel-66
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-66.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3036.dat
+1 71 -20 0 -90 0 0 1 0 1 0 -1 0 0 parts/54384.dat
+0 STEP
+1 71 0 -8 -40 1 0 0 0 1 0 0 0 1 parts/3032.dat
+1 72 60 -8 30 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+0 STEP
+1 71 100 -8 -60 -1 0 0 0 1 0 0 0 -1 parts/3020.dat
+1 0 100 -8 -20 -1 0 0 0 1 0 0 0 -1 parts/3709b.dat
+0 STEP
+1 71 90 0 -20 0 0 -1 0 1 0 1 0 0 parts/3460.dat
+1 71 120 0 -20 0 0 -1 0 1 0 1 0 0 parts/3738.dat
+0 STEP
+1 71 120 -8 40 -1 0 0 0 1 0 0 0 -1 parts/3020.dat
+1 71 120 -8 -140 0 0 1 0 1 0 -1 0 0 parts/3032.dat
+0 STEP
+1 71 180 0 -20 0 0 1 0 1 0 -1 0 0 parts/3035.dat
+1 71 100 0 -140 0 0 1 0 1 0 -1 0 0 parts/3031.dat
+1 71 220 0 -180 1 0 0 0 1 0 0 0 1 parts/3036.dat
+1 71 170 0 -110 1 0 0 0 1 0 0 0 1 parts/3623.dat
+0 STEP
+1 71 220 -8 -160 1 0 0 0 1 0 0 0 1 parts/3958.dat
+1 72 180 -8 -90 1 0 0 0 1 0 0 0 1 parts/3023.dat
+1 71 180 -8 -40 1 0 0 0 1 0 0 0 1 parts/41770.dat
+1 72 180 -8 30 -1 0 0 0 1 0 0 0 -1 parts/43722.dat
+1 71 50 -8 -140 1 0 0 0 1 0 0 0 1 parts/54383.dat
+0 STEP
+1 71 90 0 -240 1 0 0 0 1 0 0 0 1 parts/54383.dat
+1 71 260 0 -90 0 0 1 0 1 0 -1 0 0 parts/3021.dat
+1 71 130 0 -210 0 0 1 0 1 0 -1 0 0 parts/3623.dat
+1 72 220 0 -110 -1 0 0 0 1 0 0 0 -1 parts/3023.dat
+0 STEP
+1 71 220 -8 -250 0 0 -1 0 1 0 1 0 0 parts/47398.dat
+1 71 310 -8 -160 -1 0 0 0 1 0 0 0 -1 parts/54383.dat
+1 71 280 -8 -60 -1 0 0 0 1 0 0 0 -1 parts/41769.dat
+1 71 230 -8 -90 -1 0 0 0 1 0 0 0 -1 parts/3623.dat
+1 72 120 -8 -210 -1 0 0 0 1 0 0 0 -1 parts/3710.dat
+0 STEP
+1 71 240 0 -270 0 0 -1 0 1 0 1 0 0 parts/47398.dat
+1 71 330 0 -180 -1 0 0 0 1 0 0 0 -1 parts/54383.dat
+1 71 270 0 0 -1 0 0 0 1 0 0 0 -1 parts/54383.dat
+1 72 300 0 -90 -1 0 0 0 1 0 0 0 -1 parts/43722.dat
+1 71 230 0 -20 0 0 -1 0 1 0 1 0 0 parts/3460.dat
+0 STEP
+1 71 230 -8 -50 -1 0 0 0 1 0 0 0 -1 parts/2450.dat
+0 STEP
+1 72 140 8 20 -1 0 0 0 1 0 0 0 -1 parts/2445.dat
+1 71 230 8 -20 -1 0 0 0 1 0 0 0 -1 parts/3021.dat
+1 71 120 8 -20 -1 0 0 0 1 0 0 0 -1 parts/3738.dat
+1 71 120 8 -100 0 0 -1 0 1 0 1 0 0 parts/3032.dat
+1 71 200 8 -160 0 0 -1 0 1 0 1 0 0 parts/3032.dat
+1 72 220 8 -240 -1 0 0 0 1 0 0 0 -1 parts/2445.dat
+1 71 300 8 -190 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 290 8 -100 -1 0 0 0 1 0 0 0 -1 parts/54383.dat
+0 STEP
+1 0 120 16 -100 -1 0 0 0 1 0 0 0 -1 parts/32324.dat
+1 0 170 16 -180 0 0 -1 0 1 0 1 0 0 10174 - subModel-61.ldr
+0 STEP
+1 71 87.091 -78 -39 0 -0.866 -0.5 1 0 0 0 -0.5 0.866 10174 - subModel-67.ldr
+0 STEP
+1 71 120 26 -20 0.5 -0.866 0 0 0 1 -0.866 -0.5 0 parts/3713.dat
+
+
+0 FILE 10174 - subModel-67.ldr
+0 subModel-67
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-67.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 71 -20 -24 0 0 0 -1 0 1 0 1 0 0 parts/32064a.dat
+0 STEP
+1 72 0 -14 102 0 -1 0 1 0 0 0 0 1 10174 - subModel-68.ldr
+1 72 20 -14 102 0 -1 0 1 0 0 0 0 1 10174 - subModel-68.ldr
+0 STEP
+1 71 20 -48 0 0 0 1 0 1 0 -1 0 0 parts/32064a.dat
+1 0 -30 -14 0 1 0 0 0 1 0 0 0 1 parts/32062.dat
+0 STEP
+1 71 0 -38 112 1 0 0 0 1 0 0 0 1 10174 - subModel-69.ldr
+1 72 -50 -14 0 0 0 1 1 0 0 0 1 0 parts/30553.dat
+0 STEP
+1 72 -20 -47 -11 1 0 0 0 1 0 0 0 1 10174 - subModel-70.ldr
+1 0 70 -38 0 1 0 0 0 1 0 0 0 1 parts/3706.dat
+0 STEP
+1 72 10 -64 -10 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+1 72 0 -56 0 0 0 1 0 1 0 -1 0 0 parts/43722.dat
+0 STEP
+1 72 -53 -4 30 0 1 0 0 0 -1 -1 0 0 10174 - subModel-71.ldr
+0 STEP
+1 71 42 -38 0 0 -1 0 1 0 0 0 0 1 10174 - subModel-64.ldr
+
+0 FILE 10174 - subModel-68.ldr
+0 subModel-68
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-68.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 8 0 0 -1 -1 0 0 0 1 0 parts/4095.dat
+1 72 0 0 24 0 0 1 -1 0 0 0 -1 0 parts/4589.dat
+0 STEP
+1 72 0 0 -24 1 0 0 0 0 -1 0 1 0 parts/4589.dat
+0 STEP
+1 72 -10 0 -112 0 1 0 -1 0 0 0 0 1 parts/47905.dat
+0 STEP
+1 72 0 0 -146 -1 0 0 0 0 1 0 1 0 parts/3062b.dat
+
+
+0 FILE 10174 - subModel-69.ldr
+0 subModel-69
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-69.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 -2 0 0 -1 -1 0 0 0 1 0 parts/4095.dat
+1 72 0 0 14 0 0 1 -1 0 0 0 -1 0 parts/4589.dat
+0 STEP
+1 72 0 0 -34 0 0 -1 -1 0 0 0 1 0 parts/4589.dat
+0 STEP
+1 72 0 -10 -122 1 0 0 0 1 0 0 0 1 parts/47905.dat
+0 STEP
+1 71 0 0 -156 1 0 0 0 0 -1 0 1 0 parts/4599a.dat
+
+
+0 FILE 10174 - subModel-70.ldr
+0 subModel-70
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-70.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 -1 1 1 0 0 0 1 0 0 0 1 parts/47905.dat
+1 72 0 9 35 0 0 1 -1 0 0 0 -1 0 parts/4589.dat
+1 72 0 9 -33 0 0 -1 -1 0 0 0 1 0 parts/3062b.dat
+
+
+0 FILE 10174 - subModel-71.ldr
+0 subModel-71
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-71.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 -1 0 1 0 0 0 1 0 0 0 1 parts/4032a.dat
+1 71 0 -9 10 1 0 0 0 1 0 0 0 1 parts/44301.dat
+0 STEP
+1 72 10 -17 20 0 0 1 0 1 0 -1 0 0 parts/45677.dat
+
+
+0 FILE 10174 - subModel-72.ldr
+0 subModel-72
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-72.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/6632.dat
+1 71 0 -5 0 0 -1 0 1 0 0 0 0 1 parts/2736.dat
+
+
+0 FILE 10174 - subModel-73.ldr
+0 subModel-73
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-73.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 1 0 0 0 1 0 0 0 1 parts/6632.dat
+
+
+0 FILE 10174 - subModel-74.ldr
+0 subModel-74
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-74.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 0 0 0 0 0 -1 0 1 0 1 0 0 parts/3030.dat
+0 STEP
+1 71 20 -8 -40 0 0 -1 0 1 0 1 0 0 parts/3020.dat
+1 71 20 -8 40 0 0 -1 0 1 0 1 0 0 parts/3020.dat
+1 71 -40 -8 0 0 0 -1 0 1 0 1 0 0 parts/3032.dat
+0 STEP
+1 0 -10 -8 -70 0 0 -1 0 1 0 1 0 0 parts/6141.dat
+1 0 -10 -8 70 0 0 -1 0 1 0 1 0 0 parts/6141.dat
+1 71 -40 -8 -70 -1 0 0 0 1 0 0 0 -1 parts/44301.dat
+1 71 -40 -8 70 -1 0 0 0 1 0 0 0 -1 parts/44301.dat
+0 STEP
+1 71 40 -8 -110 0 0 -1 0 1 0 1 0 0 parts/47398.dat
+1 71 40 -8 110 0 0 -1 0 1 0 1 0 0 parts/47397.dat
+0 STEP
+1 71 70 0 80 1 0 0 0 1 0 0 0 1 parts/3021.dat
+1 71 70 0 -80 1 0 0 0 1 0 0 0 1 parts/3021.dat
+0 STEP
+1 71 70 0 0 1 0 0 0 1 0 0 0 1 10174 - subModel-75.ldr
+0 STEP
+1 71 40 -16 0 1 0 0 0 1 0 0 0 1 parts/3795.dat
+1 71 100 -8 70 1 0 0 0 1 0 0 0 1 parts/44301.dat
+1 71 100 -8 -70 1 0 0 0 1 0 0 0 1 parts/44301.dat
+1 71 -20 -16 -70 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 -20 -16 70 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+0 STEP
+1 0 80 -8 40 1 0 0 0 1 0 0 0 1 10174 - subModel-76.ldr
+1 0 80 -8 -40 1 0 0 0 1 0 0 0 1 10174 - subModel-76.ldr
+1 71 -30 -24 0 0 0 1 0 1 0 -1 0 0 parts/47457.dat
+1 72 -30 -16 30 1 0 0 0 1 0 0 0 1 parts/6190.dat
+1 72 -30 -16 -30 1 0 0 0 1 0 0 0 1 parts/6190.dat
+0 STEP
+1 71 60 -16 -80 1 0 0 0 1 0 0 0 1 parts/3020.dat
+1 71 60 -16 80 1 0 0 0 1 0 0 0 1 parts/3020.dat
+1 71 110 -16 0 0 0 -1 0 1 0 1 0 0 parts/4477.dat
+1 72 -20 -24 -50 1 0 0 0 1 0 0 0 1 parts/45677.dat
+1 72 -20 -24 50 -1 0 0 0 1 0 0 0 -1 parts/45677.dat
+1 72 0 -40 0 -1 0 0 0 1 0 0 0 -1 parts/30367a.dat
+0 STEP
+1 71 30 -40 -10 1 0 0 0 1 0 0 0 1 parts/6231.dat
+1 71 30 -40 10 0 0 -1 0 1 0 1 0 0 parts/6231.dat
+1 71 30 -40 -70 0 0 -1 0 1 0 1 0 0 parts/6231.dat
+1 71 30 -40 70 1 0 0 0 1 0 0 0 1 parts/6231.dat
+1 71 60 -40 -10 1 0 0 0 1 0 0 0 1 parts/4865a.dat
+1 71 60 -40 10 -1 0 0 0 1 0 0 0 -1 parts/4865a.dat
+1 71 30 -40 40 0 0 -1 0 1 0 1 0 0 parts/4865a.dat
+1 71 30 -40 -40 0 0 -1 0 1 0 1 0 0 parts/4865a.dat
+1 71 50 -24 90 -1 0 0 0 1 0 0 0 -1 parts/2555.dat
+1 71 50 -24 -90 -1 0 0 0 1 0 0 0 -1 parts/2555.dat
+0 STEP
+1 71 90 -40 -70 -1 0 0 0 1 0 0 0 -1 parts/6231.dat
+1 71 90 -40 10 -1 0 0 0 1 0 0 0 -1 parts/6231.dat
+1 71 90 -40 -10 0 0 1 0 1 0 -1 0 0 parts/6231.dat
+1 71 90 -40 70 0 0 1 0 1 0 -1 0 0 parts/6231.dat
+1 71 60 -40 70 1 0 0 0 1 0 0 0 1 parts/4865a.dat
+1 71 60 -40 -70 -1 0 0 0 1 0 0 0 -1 parts/4865a.dat
+1 71 90 -40 -40 0 0 1 0 1 0 -1 0 0 parts/4865a.dat
+1 71 90 -40 40 0 0 1 0 1 0 -1 0 0 parts/4865a.dat
+1 71 50 -30 108 0 0 1 -1 0 0 0 -1 0 parts/4349.dat
+1 71 50 -30 -102 0 0 1 1 0 0 0 1 0 parts/4349.dat
+0 STEP
+1 72 60 -18 -40 1 0 0 0 0 1 0 -1 0 parts/46667.dat
+1 72 60 -18 40 1 0 0 0 0 1 0 -1 0 parts/46667.dat
+1 72 120 -40 40 1 0 0 0 1 0 0 0 1 parts/30165.dat
+1 72 120 -40 -40 1 0 0 0 1 0 0 0 1 parts/30165.dat
+
+0 FILE 10174 - subModel-75.ldr
+0 subModel-75
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-75.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 1 0 0 0 1 0 0 0 1 parts/3021.dat
+0 STEP
+1 71 -10 -8 0 0 0 -1 0 1 0 1 0 0 parts/3738.dat
+0 STEP
+1 71 30 -8 -10 1 0 0 0 1 0 0 0 1 parts/44301.dat
+1 71 30 -8 10 1 0 0 0 1 0 0 0 1 parts/44301.dat
+
+
+0 FILE 10174 - subModel-76.ldr
+0 subModel-76
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-76.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 72 20 0 0 1 0 0 0 1 0 0 0 1 parts/3022.dat
+1 0 -20 -8 0 1 0 0 0 1 0 0 0 1 parts/3709b.dat
+
+
+0 FILE 10174 - subModel-77.ldr
+0 subModel-77
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-77.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 -1 0 1 0 1 0 0 parts/3029.dat
+1 72 30 -8 0 0 0 -1 0 1 0 1 0 0 parts/3023.dat
+1 72 10 -8 0 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+1 72 10 -8 -40 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+1 72 10 -8 -80 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+1 72 10 -8 40 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+1 72 10 -8 80 0 0 -1 0 1 0 1 0 0 parts/2412b.dat
+0 STEP
+1 71 -40 -8 0 0 0 -1 0 1 0 1 0 0 parts/3029.dat
+0 STEP
+1 71 50 -8 -50 0 0 -1 0 1 0 1 0 0 parts/2450.dat
+1 71 100 -8 -90 1 0 0 0 1 0 0 0 1 parts/3460.dat
+1 71 120 -8 -130 0 0 1 0 1 0 -1 0 0 parts/47397.dat
+1 71 50 -8 50 1 0 0 0 1 0 0 0 1 parts/2450.dat
+1 71 100 -8 90 1 0 0 0 1 0 0 0 1 parts/3460.dat
+1 71 120 -8 130 0 0 1 0 1 0 -1 0 0 parts/47398.dat
+0 STEP
+1 71 50 0 90 0 0 -1 0 1 0 1 0 0 parts/3623.dat
+1 71 50 0 -90 0 0 -1 0 1 0 1 0 0 parts/3623.dat
+1 71 80 0 90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 80 0 -90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 120 0 -90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 120 0 90 0 0 -1 0 1 0 1 0 0 parts/3021.dat
+1 71 180 0 100 0 0 -1 0 1 0 1 0 0 parts/3031.dat
+1 71 180 0 -100 0 0 -1 0 1 0 1 0 0 parts/3031.dat
+0 STEP
+1 72 100 -8 -70 -1 0 0 0 1 0 0 0 -1 parts/3023.dat
+1 72 100 -8 70 -1 0 0 0 1 0 0 0 -1 parts/3023.dat
+1 71 150 -8 50 0 0 1 0 1 0 -1 0 0 parts/2450.dat
+1 71 150 -8 -50 -1 0 0 0 1 0 0 0 -1 parts/2450.dat
+1 72 190 -8 -60 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 72 190 -8 60 0 0 1 0 1 0 -1 0 0 parts/3710.dat
+1 71 220 -8 0 0 0 1 0 1 0 -1 0 0 parts/3832.dat
+0 STEP
+1 72 120 -16 -110 1 0 0 0 1 0 0 0 1 parts/2431.dat
+1 72 120 -16 110 1 0 0 0 1 0 0 0 1 parts/2431.dat
+1 72 20 -16 -110 1 0 0 0 1 0 0 0 1 parts/6636.dat
+1 72 20 -16 110 1 0 0 0 1 0 0 0 1 parts/6636.dat
+1 72 -30 -16 60 0 0 -1 0 1 0 1 0 0 parts/2431.dat
+1 72 -30 -16 -60 0 0 -1 0 1 0 1 0 0 parts/2431.dat
+0 STEP
+1 0 60 10 -25 1 0 0 0 -1 0 0 0 -1 10174 - subModel-78.ldr
+0 STEP
+1 72 -50 0 50 0 0 1 0 1 0 -1 0 0 parts/3622.dat
+1 72 -50 0 -50 0 0 1 0 1 0 -1 0 0 parts/3622.dat
+1 71 180 8 50 -1 0 0 0 1 0 0 0 -1 parts/3004.dat
+1 71 180 8 -50 -1 0 0 0 1 0 0 0 -1 parts/3004.dat
+1 72 180 8 70 1 0 0 0 1 0 0 0 1 parts/30365.dat
+1 72 180 8 -70 1 0 0 0 1 0 0 0 1 parts/30365.dat
+1 72 170 8 -90 1 0 0 0 1 0 0 0 1 parts/3665.dat
+1 72 170 8 90 -1 0 0 0 1 0 0 0 -1 parts/3665.dat
+1 72 150 8 80 0 0 1 0 1 0 -1 0 0 parts/3747a.dat
+1 72 150 8 -80 0 0 1 0 1 0 -1 0 0 parts/3747a.dat
+0 STEP
+1 72 190 32 60 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 72 190 32 -60 0 0 1 0 1 0 -1 0 0 parts/3023.dat
+1 72 160 32 -70 -1 0 0 0 1 0 0 0 -1 parts/43723.dat
+1 72 160 32 70 1 0 0 0 1 0 0 0 1 parts/43722.dat
+0 STEP
+1 72 -40 -24 0 1 0 0 0 1 0 0 0 1 10174 - subModel-8.ldr
+1 72 140 -32 -90 0 0 1 0 1 0 -1 0 0 parts/30359a.dat
+1 72 140 -32 90 0 0 1 0 1 0 -1 0 0 parts/30359a.dat
+1 71 230 -24 0 0 0 1 0 1 0 -1 0 0 parts/47457.dat
+1 72 230 -32 -110 0 0 1 0 1 0 -1 0 0 parts/43710.dat
+1 72 230 -32 110 0 0 1 0 1 0 -1 0 0 parts/43711.dat
+1 71 230 -24 -80 0 0 1 0 1 0 -1 0 0 parts/47456.dat
+1 71 230 -24 -40 0 0 1 0 1 0 -1 0 0 parts/47456.dat
+1 71 230 -24 40 0 0 1 0 1 0 -1 0 0 parts/47456.dat
+1 71 230 -24 80 0 0 1 0 1 0 -1 0 0 parts/47456.dat
+0 STEP
+1 72 80 -47 0 0 0 -1 0 -1 0 -1 0 0 10174 - subModel-80.ldr
+
+
+0 FILE 10174 - subModel-78.ldr
+0 subModel-78
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-78.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 0 1 -1 0 0 0 -1 0 parts/41677.dat
+1 71 0 0 -25 0 0 1 0 1 0 -1 0 0 parts/4519.dat
+1 71 20 0 -25 0 0 1 0 1 0 -1 0 0 parts/4519.dat
+0 STEP
+1 71 70 0 -10 0 0 -1 1 0 0 0 -1 0 parts/32063.dat
+0 STEP
+1 72 20 0 -25 0 1 0 0 0 -1 -1 0 0 parts/32013.dat
+1 71 120 0 -25 -1 0 0 0 -1 0 0 0 1 10174 - subModel-79.ldr
+0 STEP
+1 71 70 0 -40 0 0 -1 1 0 0 0 -1 0 parts/32063.dat
+1 71 0 0 -25 0 0 -1 0 1 0 1 0 0 parts/75535.dat
+0 STEP
+1 71 0 0 -50 0 0 1 -1 0 0 0 -1 0 parts/41677.dat
+0 STEP
+1 0 120 10 -65 0 0 1 0 -1 0 1 0 0 parts/2444.dat
+1 0 120 10 15 0 0 -1 0 -1 0 -1 0 0 parts/2444.dat
+
+
+0 FILE 10174 - subModel-79.ldr
+0 subModel-79
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-79.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 0 0 -1 0 1 0 1 0 0 parts/3705.dat
+1 71 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/3713.dat
+
+
+0 FILE 10174 - subModel-80.ldr
+0 subModel-80
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-80.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 71 0 0 0 0 -1 0 0 0 1 -1 0 0 parts/32198.dat
+1 71 0 -21 0 0 1 0 1 0 0 0 0 -1 parts/4519.dat
+0 STEP
+1 72 0 -11 0 1 0 0 0 -1 0 0 0 -1 parts/3961.dat
+1 71 0 -19 0 1 0 0 0 -1 0 0 0 -1 parts/4032a.dat
+
+
+0 FILE 10174 - subModel-81.ldr
+0 subModel-81
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-81.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+0 BFC CERTIFY CCW
+1 273 0.196 5.019 0 -0.196 -1.368 0 1.99 -0.135 0 0 0 2 p/4-4cyli.dat
+1 273 -0.787 4.961 0 -0.581 -1.315 0 1.914 -0.399 0 0 0 2 p/4-4cyli.dat
+1 273 -1.74 4.712 0 -0.943 -1.212 0 1.764 -0.648 0 0 0 2 p/4-4cyli.dat
+1 273 -2.626 4.282 0 -1.269 -1.062 0 1.546 -0.872 0 0 0 2 p/4-4cyli.dat
+1 273 -3.411 3.688 0 -1.546 -0.872 0 1.269 -1.062 0 0 0 2 p/4-4cyli.dat
+1 273 -4.064 2.952 0 -1.764 -0.648 0 0.943 -1.212 0 0 0 2 p/4-4cyli.dat
+1 273 -4.562 2.102 0 -1.914 -0.399 0 0.581 -1.315 0 0 0 2 p/4-4cyli.dat
+1 273 -4.885 1.171 0 -1.99 -0.135 0 0.196 -1.368 0 0 0 2 p/4-4cyli.dat
+1 273 -5.019 0.196 0 -1.99 0.135 0 -0.196 -1.368 0 0 0 2 p/4-4cyli.dat
+1 273 -4.961 -0.787 0 -1.914 0.399 0 -0.581 -1.315 0 0 0 2 p/4-4cyli.dat
+1 273 -4.712 -1.74 0 -1.764 0.648 0 -0.943 -1.212 0 0 0 2 p/4-4cyli.dat
+1 273 -4.282 -2.626 0 -1.546 0.872 0 -1.269 -1.062 0 0 0 2 p/4-4cyli.dat
+1 273 -3.688 -3.411 0 -1.269 1.062 0 -1.546 -0.872 0 0 0 2 p/4-4cyli.dat
+1 273 -2.952 -4.064 0 -0.943 1.212 0 -1.764 -0.648 0 0 0 2 p/4-4cyli.dat
+1 273 -2.102 -4.562 0 -0.581 1.315 0 -1.914 -0.399 0 0 0 2 p/4-4cyli.dat
+1 273 -1.171 -4.885 0 -0.196 1.368 0 -1.99 -0.135 0 0 0 2 p/4-4cyli.dat
+1 273 0 -5 0 0 117 0 -2 0 0 0 0 2 p/4-4cyli.dat
+1 273 116.804 -5.019 0 0.196 1.368 0 -1.99 0.135 0 0 0 2 p/4-4cyli.dat
+1 273 117.787 -4.961 0 0.581 1.315 0 -1.914 0.399 0 0 0 2 p/4-4cyli.dat
+1 273 118.74 -4.712 0 0.943 1.212 0 -1.764 0.648 0 0 0 2 p/4-4cyli.dat
+1 273 119.626 -4.282 0 1.269 1.062 0 -1.546 0.872 0 0 0 2 p/4-4cyli.dat
+1 273 120.411 -3.688 0 1.546 0.872 0 -1.269 1.062 0 0 0 2 p/4-4cyli.dat
+1 273 121.064 -2.952 0 1.764 0.648 0 -0.943 1.212 0 0 0 2 p/4-4cyli.dat
+1 273 121.562 -2.102 0 1.914 0.399 0 -0.581 1.315 0 0 0 2 p/4-4cyli.dat
+1 273 121.885 -1.171 0 1.99 0.135 0 -0.196 1.368 0 0 0 2 p/4-4cyli.dat
+1 273 122.019 -0.196 0 1.99 -0.135 0 0.196 1.368 0 0 0 2 p/4-4cyli.dat
+1 273 121.961 0.787 0 1.914 -0.399 0 0.581 1.315 0 0 0 2 p/4-4cyli.dat
+1 273 121.712 1.74 0 1.764 -0.648 0 0.943 1.212 0 0 0 2 p/4-4cyli.dat
+1 273 121.282 2.626 0 1.546 -0.872 0 1.269 1.062 0 0 0 2 p/4-4cyli.dat
+1 273 120.688 3.411 0 1.269 -1.062 0 1.546 0.872 0 0 0 2 p/4-4cyli.dat
+1 273 119.952 4.064 0 0.943 -1.212 0 1.764 0.648 0 0 0 2 p/4-4cyli.dat
+1 273 119.102 4.562 0 0.581 -1.315 0 1.914 0.399 0 0 0 2 p/4-4cyli.dat
+1 273 118.171 4.885 0 0.196 -1.368 0 1.99 0.135 0 0 0 2 p/4-4cyli.dat
+1 273 117 5 0 0 -117 0 2 0 0 0 0 2 p/4-4cyli.dat
+
+
+0 FILE 10174 - subModel-82.ldr
+0 subModel-82
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-82.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 0.707 -0.707 0 0.707 0.707 parts/3029.dat
+1 0 0 56.569 -56.569 1 0 0 0 0.707 -0.707 0 0.707 0.707 parts/3029.dat
+0 STEP
+1 0 -110 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 -90 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 -70 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 -50 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 -30 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 -10 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 10 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 30 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 50 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 70 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 90 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+1 0 110 22.627 -33.941 0 0 -1 -0.707 0.707 0 0.707 0.707 0 parts/4162.dat
+0 STEP
+0 STEP
+1 71 0 106.368 -40.912 0 0 -1 0 1 0 1 0 0 10174 - subModel-83.ldr
+
+
+0 FILE 10174 - subModel-83.ldr
+0 subModel-83
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-83.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 0 0 -1 0 1 0 1 0 0 parts/3032.dat
+1 0 -10 -8 0 0 0 -1 0 1 0 1 0 0 parts/3666.dat
+0 STEP
+1 0 -10 -16 0 0 0 -1 0 1 0 1 0 0 parts/3666.dat
+0 STEP
+1 71 -10 -40 -40 0 0 1 0 1 0 -1 0 0 10174 - subModel-84.ldr
+1 71 -10 -40 40 0 0 1 0 1 0 -1 0 0 10174 - subModel-84.ldr
+
+
+0 FILE 10174 - subModel-84.ldr
+0 subModel-84
+0 Author: Roland Dahl [RolandD]
+0 Name: 10174 - subModel-84.ldr
+0 !LDRAW_ORG Model
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+0 !THEME Star Wars / Ultimate Collector Series / Star Wars Episode 4/5/6
+1 0 0 0 0 1 0 0 0 1 0 0 0 1 parts/3937.dat
+1 71 0 2.929 -7.071 -1 0 0 0 0.707 0.707 0 0.707 -0.707 parts/6134.dat
+
+
+0 FILE 10174 - 30658.dat
+0 ~Turntable 4 x  4 x  0.667 Locking Top
+0 Name: 10174 - 30658.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Unofficial_Part
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2006-08-07 [guyvivan] Initial Version
+
+1 16 0 0 -20 0 0 1 0 1 0 -1 0 0 p/stug-2x2.dat
+1 16 0 0 20 0 0 1 0 1 0 -1 0 0 p/stug-2x2.dat
+1 16 30 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 30 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -30 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -30 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 0 40 0 0 0 1 0 0 0 40 p/48/4-4edge.dat
+1 16 0 0 0 40 0 0 0 16 0 0 0 40 p/48/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 3 0 36 0 0 0 13 0 0 0 36 p/48/4-4cyli.dat
+1 16 0 16 0 40 0 0 0 1 0 0 0 40 p/48/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/48/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/48/4-4ring1.dat
+1 16 0 0 0 12 0 0 0 1 0 0 0 12 p/48/4-4ring1.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/48/4-4ring3.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/48/4-4ring4.dat
+1 16 0 3 0 10 0 0 0 1 0 0 0 10 p/48/4-4edge.dat
+1 16 0 3 0 10 0 0 0 -1 0 0 0 10 p/48/4-4ring1.dat
+1 16 0 3 0 4 0 0 0 -1 0 0 0 4 p/48/4-4ring5.dat
+1 16 0 3 0 6 0 0 0 -1 0 0 0 6 p/48/4-4ring4.dat
+1 16 0 3 0 2 0 0 0 -1 0 0 0 2 p/48/4-4rin15.dat
+1 16 0 3 0 4 0 0 0 -1 0 0 0 4 p/48/4-4ring8.dat
+1 16 0 3 0 36 0 0 0 1 0 0 0 36 p/48/4-4edge.dat
+1 16 0 16 0 36 0 0 0 1 0 0 0 36 p/48/4-4edge.dat
+1 16 0 16 0 4 0 0 0 -1 0 0 0 4 p/48/4-4ring9.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 7 0 0 0 6 p/48/4-4cyli.dat
+1 16 0 3 0 10 0 0 0 4 0 0 0 10 p/48/4-4cyli.dat
+2 24 5.948 7 0.783 9.948 7 0.783
+2 24 5.948 7 -0.783 9.948 7 -0.783
+2 24 10 7 0 9.948 7 0.783
+2 24 10 7 0 9.948 7 -0.783
+2 24 5.948 7 0.783 5.948 18 0.783
+2 24 5.948 7 -0.783 5.948 18 -0.783
+2 24 9.948 7 0.783 9.948 14 0.783
+2 24 9.948 7 -0.783 9.948 14 -0.783
+2 24 9.948 14 0.783 10.948 14 0.783
+2 24 9.948 14 -0.783 10.948 14 -0.783
+2 24 5.948 18 0.783 9.948 18 0.783
+2 24 5.948 18 -0.783 9.948 18 -0.783
+2 24 10.948 17 0.783 9.948 18 0.783
+2 24 10.948 17 -0.783 9.948 18 -0.783
+2 24 10.948 14 0.783 10.948 17 0.783
+2 24 10.948 14 -0.783 10.948 17 -0.783
+1 16 0 7 0 5.94867 0 0.78316 0 1 0 -0.78316 0 5.94867 p/48/1-24edge.dat
+4 16 5.948 18 0.783 9.948 14 0.783 9.948 7 0.783 5.948 7 0.783
+4 16 5.948 7 -0.783 9.948 7 -0.783 9.948 14 -0.783 5.948 18 -0.783
+4 16 9.948 18 0.783 10.948 14 0.783 9.948 14 0.783 5.948 18 0.783
+4 16 5.948 18 -0.783 9.948 14 -0.783 10.948 14 -0.783 9.948 18 -0.783
+3 16 9.948 18 0.783 10.948 17 0.783 10.948 14 0.783
+3 16 10.948 14 -0.783 10.948 17 -0.783 9.948 18 -0.783
+4 16 5.948 7 0.783 9.948 7 0.783 10 7 0 6 7 0
+4 16 6 7 0 10 7 0 9.948 7 -0.783 5.948 7 -0.783
+0 BFC INVERTNEXT
+1 16 0 7 0 5.94867 0 -0.78316 0 11 0 0.78316 0 5.94867 p/48/1-8cyli.dat
+1 16 0 18 0 5.94867 0 -0.78316 0 1 0 0.78316 0 5.94867 p/48/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 3.65257 0 -4.76012 0 11 0 4.76012 0 3.65257 p/48/1-12cyli.dat
+1 16 0 18 0 3.65257 0 -4.76012 0 1 0 4.76012 0 3.65257 p/48/1-12edge.dat
+2 24 9.948 14 0.783 9.914 14 1.305
+2 24 0.783 14 9.948 1.305 14 9.914
+2 24 9.948 18 0.783 9.914 18 1.305
+2 24 0.783 18 9.948 1.305 18 9.914
+3 16 5.948 18 0.783 9.914 18 1.305 9.948 18 0.783
+3 16 0.783 18 9.948 1.305 18 9.914 0.783 18 5.948
+4 16 9.948 14 0.783 9.914 14 1.305 9.914 7 1.305 9.948 7 0.783
+4 16 0.783 7 9.948 1.305 7 9.914 1.305 14 9.914 0.783 14 9.948
+1 16 0 7 0 9.91445 0 -1.30526 0 7 0 1.30526 0 9.91445 p/48/1-8cyli.dat
+1 16 0 14 0 9.91445 0 -1.30526 0 1 0 1.30526 0 9.91445 p/48/1-8edge.dat
+1 16 0 7 0 6.08761 0 -7.93353 0 7 0 7.93353 0 6.08761 p/48/1-12cyli.dat
+1 16 0 14 0 6.08761 0 -7.93353 0 1 0 7.93353 0 6.08761 p/48/1-12edge.dat
+1 16 0 18 0 9.91445 0 -1.30526 0 1 0 1.30526 0 9.91445 p/48/1-8edge.dat
+1 16 0 18 0 6.08761 0 -7.93353 0 1 0 7.93353 0 6.08761 p/48/1-12edge.dat
+1 16 0 17 0 10.9059 0 -1.43579 0 1 0 1.43579 0 10.9059 p/48/1-8edge.dat
+1 16 0 17 0 6.69638 0 -8.72689 0 1 0 8.72689 0 6.69638 p/48/1-12edge.dat
+1 16 0 14 0 10.9059 0 -1.43579 0 1 0 1.43579 0 10.9059 p/48/1-8edge.dat
+1 16 0 14 0 6.69638 0 -8.72689 0 1 0 8.72689 0 6.69638 p/48/1-12edge.dat
+1 16 0 14 0 10.9059 0 -1.43579 0 3 0 1.43579 0 10.9059 p/48/1-8cyli.dat
+1 16 0 14 0 6.69638 0 -8.72689 0 3 0 8.72689 0 6.69638 p/48/1-12cyli.dat
+2 24 10.948 17 0.783 10.905 17 1.436
+2 24 0.783 17 10.948 1.436 17 10.905
+2 24 10.948 14 0.783 10.905 14 1.436
+4 16 10.948 17 0.783 10.905 17 1.436 10.905 14 1.436 10.948 14 0.783
+4 16 0.783 14 10.948 1.436 14 10.905 1.436 17 10.905 0.783 17 10.948
+2 24 0.783 14 10.948 1.436 14 10.905
+4 16 5.795 18 1.553 9.659 18 2.588 9.914 18 1.305 5.948 18 0.783
+4 16 5.543 18 2.296 9.239 18 3.827 9.659 18 2.588 5.795 18 1.553
+4 16 5.196 18 3 8.66 18 5 9.239 18 3.827 5.543 18 2.296
+4 16 4.76 18 3.653 7.934 18 6.088 8.66 18 5 5.196 18 3
+4 16 4.243 18 4.243 7.071 18 7.071 7.934 18 6.088 4.76 18 3.653
+4 16 3.653 18 4.76 6.088 18 7.934 7.071 18 7.071 4.243 18 4.243
+4 16 3 18 5.196 5 18 8.66 6.088 18 7.934 3.653 18 4.76
+4 16 2.296 18 5.543 3.827 18 9.239 5 18 8.66 3 18 5.196
+4 16 1.553 18 5.795 2.588 18 9.659 3.827 18 9.239 2.296 18 5.543
+4 16 0.783 18 5.948 1.305 18 9.914 2.588 18 9.659 1.553 18 5.795
+4 16 0.783 14 9.948 1.305 14 9.914 1.436 14 10.905 0.783 14 10.948
+4 16 10.948 14 0.783 10.905 14 1.436 9.914 14 1.305 9.948 14 0.783
+4 16 0.783 17 10.948 1.436 17 10.905 1.305 18 9.914 0.783 18 9.948
+4 16 9.948 18 0.783 9.914 18 1.305 10.905 17 1.436 10.948 17 0.783
+4 16 10.625 17 2.847 10.905 17 1.436 9.914 18 1.305 9.659 18 2.588
+4 16 10.163 17 4.21 10.625 17 2.847 9.659 18 2.588 9.239 18 3.827
+4 16 9.526 17 5.5 10.163 17 4.21 9.239 18 3.827 8.66 18 5
+4 16 8.727 17 6.697 9.526 17 5.5 8.66 18 5 7.934 18 6.088
+4 16 7.778 17 7.778 8.727 17 6.697 7.934 18 6.088 7.071 18 7.071
+4 16 6.697 17 8.727 7.778 17 7.778 7.071 18 7.071 6.088 18 7.934
+4 16 5.5 17 9.526 6.697 17 8.727 6.088 18 7.934 5 18 8.66
+4 16 4.21 17 10.163 5.5 17 9.526 5 18 8.66 3.827 18 9.239
+4 16 2.847 17 10.625 4.21 17 10.163 3.827 18 9.239 2.588 18 9.659
+4 16 1.436 17 10.905 2.847 17 10.625 2.588 18 9.659 1.305 18 9.914
+4 16 9.659 14 2.588 9.914 14 1.305 10.905 14 1.436 10.625 14 2.847
+4 16 9.239 14 3.827 9.659 14 2.588 10.625 14 2.847 10.163 14 4.21
+4 16 8.66 14 5 9.239 14 3.827 10.163 14 4.21 9.526 14 5.5
+4 16 7.934 14 6.088 8.66 14 5 9.526 14 5.5 8.727 14 6.697
+4 16 7.071 14 7.071 7.934 14 6.088 8.727 14 6.697 7.778 14 7.778
+4 16 6.088 14 7.934 7.071 14 7.071 7.778 14 7.778 6.697 14 8.727
+4 16 5 14 8.66 6.088 14 7.934 6.697 14 8.727 5.5 14 9.526
+4 16 3.827 14 9.239 5 14 8.66 5.5 14 9.526 4.21 14 10.163
+4 16 2.588 14 9.659 3.827 14 9.239 4.21 14 10.163 2.847 14 10.625
+4 16 1.305 14 9.914 2.588 14 9.659 2.847 14 10.625 1.436 14 10.905
+2 24 -0.783 7 5.948 -0.783 7 9.948
+2 24 0.783 7 5.948 0.783 7 9.948
+2 24 0 7 10 -0.783 7 9.948
+2 24 0 7 10 0.783 7 9.948
+2 24 -0.783 7 5.948 -0.783 18 5.948
+2 24 0.783 7 5.948 0.783 18 5.948
+2 24 -0.783 7 9.948 -0.783 14 9.948
+2 24 0.783 7 9.948 0.783 14 9.948
+2 24 -0.783 14 9.948 -0.783 14 10.948
+2 24 0.783 14 9.948 0.783 14 10.948
+2 24 -0.783 18 5.948 -0.783 18 9.948
+2 24 0.783 18 5.948 0.783 18 9.948
+2 24 -0.783 17 10.948 -0.783 18 9.948
+2 24 0.783 17 10.948 0.783 18 9.948
+2 24 -0.783 14 10.948 -0.783 17 10.948
+2 24 0.783 14 10.948 0.783 17 10.948
+1 16 0 7 0 0.78316 0 -5.94867 0 1 0 5.94867 0 0.78316 p/48/1-24edge.dat
+4 16 -0.783 18 5.948 -0.783 14 9.948 -0.783 7 9.948 -0.783 7 5.948
+4 16 0.783 7 5.948 0.783 7 9.948 0.783 14 9.948 0.783 18 5.948
+4 16 -0.783 18 9.948 -0.783 14 10.948 -0.783 14 9.948 -0.783 18 5.948
+4 16 0.783 18 5.948 0.783 14 9.948 0.783 14 10.948 0.783 18 9.948
+3 16 -0.783 18 9.948 -0.783 17 10.948 -0.783 14 10.948
+3 16 0.783 14 10.948 0.783 17 10.948 0.783 18 9.948
+4 16 -0.783 7 5.948 -0.783 7 9.948 0 7 10 0 7 6
+4 16 0 7 6 0 7 10 0.783 7 9.948 0.783 7 5.948
+0 BFC INVERTNEXT
+1 16 0 7 0 -0.78316 0 -5.94867 0 11 0 5.94867 0 -0.78316 p/48/1-8cyli.dat
+1 16 0 18 0 -0.78316 0 -5.94867 0 1 0 5.94867 0 -0.78316 p/48/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 -4.76012 0 -3.65257 0 11 0 3.65257 0 -4.76012 p/48/1-12cyli.dat
+1 16 0 18 0 -4.76012 0 -3.65257 0 1 0 3.65257 0 -4.76012 p/48/1-12edge.dat
+2 24 -0.783 14 9.948 -1.305 14 9.914
+2 24 -9.948 14 0.783 -9.914 14 1.305
+2 24 -0.783 18 9.948 -1.305 18 9.914
+2 24 -9.948 18 0.783 -9.914 18 1.305
+3 16 -0.783 18 5.948 -1.305 18 9.914 -0.783 18 9.948
+3 16 -9.948 18 0.783 -9.914 18 1.305 -5.948 18 0.783
+4 16 -0.783 14 9.948 -1.305 14 9.914 -1.305 7 9.914 -0.783 7 9.948
+4 16 -9.948 7 0.783 -9.914 7 1.305 -9.914 14 1.305 -9.948 14 0.783
+1 16 0 7 0 -1.30526 0 -9.91445 0 7 0 9.91445 0 -1.30526 p/48/1-8cyli.dat
+1 16 0 14 0 -1.30526 0 -9.91445 0 1 0 9.91445 0 -1.30526 p/48/1-8edge.dat
+1 16 0 7 0 -7.93353 0 -6.08761 0 7 0 6.08761 0 -7.93353 p/48/1-12cyli.dat
+1 16 0 14 0 -7.93353 0 -6.08761 0 1 0 6.08761 0 -7.93353 p/48/1-12edge.dat
+1 16 0 18 0 -1.30526 0 -9.91445 0 1 0 9.91445 0 -1.30526 p/48/1-8edge.dat
+1 16 0 18 0 -7.93353 0 -6.08761 0 1 0 6.08761 0 -7.93353 p/48/1-12edge.dat
+1 16 0 17 0 -1.43579 0 -10.9059 0 1 0 10.9059 0 -1.43579 p/48/1-8edge.dat
+1 16 0 17 0 -8.72689 0 -6.69638 0 1 0 6.69638 0 -8.72689 p/48/1-12edge.dat
+1 16 0 14 0 -1.43579 0 -10.9059 0 1 0 10.9059 0 -1.43579 p/48/1-8edge.dat
+1 16 0 14 0 -8.72689 0 -6.69638 0 1 0 6.69638 0 -8.72689 p/48/1-12edge.dat
+1 16 0 14 0 -1.43579 0 -10.9059 0 3 0 10.9059 0 -1.43579 p/48/1-8cyli.dat
+1 16 0 14 0 -8.72689 0 -6.69638 0 3 0 6.69638 0 -8.72689 p/48/1-12cyli.dat
+2 24 -0.783 17 10.948 -1.436 17 10.905
+2 24 -10.948 17 0.783 -10.905 17 1.436
+2 24 -0.783 14 10.948 -1.436 14 10.905
+4 16 -0.783 17 10.948 -1.436 17 10.905 -1.436 14 10.905 -0.783 14 10.948
+4 16 -10.948 14 0.783 -10.905 14 1.436 -10.905 17 1.436 -10.948 17 0.783
+2 24 -10.948 14 0.783 -10.905 14 1.436
+4 16 -1.553 18 5.795 -2.588 18 9.659 -1.305 18 9.914 -0.783 18 5.948
+4 16 -2.296 18 5.543 -3.827 18 9.239 -2.588 18 9.659 -1.553 18 5.795
+4 16 -3 18 5.196 -5 18 8.66 -3.827 18 9.239 -2.296 18 5.543
+4 16 -3.653 18 4.76 -6.088 18 7.934 -5 18 8.66 -3 18 5.196
+4 16 -4.243 18 4.243 -7.071 18 7.071 -6.088 18 7.934 -3.653 18 4.76
+4 16 -4.76 18 3.653 -7.934 18 6.088 -7.071 18 7.071 -4.243 18 4.243
+4 16 -5.196 18 3 -8.66 18 5 -7.934 18 6.088 -4.76 18 3.653
+4 16 -5.543 18 2.296 -9.239 18 3.827 -8.66 18 5 -5.196 18 3
+4 16 -5.795 18 1.553 -9.659 18 2.588 -9.239 18 3.827 -5.543 18 2.296
+4 16 -5.948 18 0.783 -9.914 18 1.305 -9.659 18 2.588 -5.795 18 1.553
+4 16 -9.948 14 0.783 -9.914 14 1.305 -10.905 14 1.436 -10.948 14 0.783
+4 16 -0.783 14 10.948 -1.436 14 10.905 -1.305 14 9.914 -0.783 14 9.948
+4 16 -10.948 17 0.783 -10.905 17 1.436 -9.914 18 1.305 -9.948 18 0.783
+4 16 -0.783 18 9.948 -1.305 18 9.914 -1.436 17 10.905 -0.783 17 10.948
+4 16 -2.847 17 10.625 -1.436 17 10.905 -1.305 18 9.914 -2.588 18 9.659
+4 16 -4.21 17 10.163 -2.847 17 10.625 -2.588 18 9.659 -3.827 18 9.239
+4 16 -5.5 17 9.526 -4.21 17 10.163 -3.827 18 9.239 -5 18 8.66
+4 16 -6.697 17 8.727 -5.5 17 9.526 -5 18 8.66 -6.088 18 7.934
+4 16 -7.778 17 7.778 -6.697 17 8.727 -6.088 18 7.934 -7.071 18 7.071
+4 16 -8.727 17 6.697 -7.778 17 7.778 -7.071 18 7.071 -7.934 18 6.088
+4 16 -9.526 17 5.5 -8.727 17 6.697 -7.934 18 6.088 -8.66 18 5
+4 16 -10.163 17 4.21 -9.526 17 5.5 -8.66 18 5 -9.239 18 3.827
+4 16 -10.625 17 2.847 -10.163 17 4.21 -9.239 18 3.827 -9.659 18 2.588
+4 16 -10.905 17 1.436 -10.625 17 2.847 -9.659 18 2.588 -9.914 18 1.305
+4 16 -2.588 14 9.659 -1.305 14 9.914 -1.436 14 10.905 -2.847 14 10.625
+4 16 -3.827 14 9.239 -2.588 14 9.659 -2.847 14 10.625 -4.21 14 10.163
+4 16 -5 14 8.66 -3.827 14 9.239 -4.21 14 10.163 -5.5 14 9.526
+4 16 -6.088 14 7.934 -5 14 8.66 -5.5 14 9.526 -6.697 14 8.727
+4 16 -7.071 14 7.071 -6.088 14 7.934 -6.697 14 8.727 -7.778 14 7.778
+4 16 -7.934 14 6.088 -7.071 14 7.071 -7.778 14 7.778 -8.727 14 6.697
+4 16 -8.66 14 5 -7.934 14 6.088 -8.727 14 6.697 -9.526 14 5.5
+4 16 -9.239 14 3.827 -8.66 14 5 -9.526 14 5.5 -10.163 14 4.21
+4 16 -9.659 14 2.588 -9.239 14 3.827 -10.163 14 4.21 -10.625 14 2.847
+4 16 -9.914 14 1.305 -9.659 14 2.588 -10.625 14 2.847 -10.905 14 1.436
+2 24 -5.948 7 -0.783 -9.948 7 -0.783
+2 24 -5.948 7 0.783 -9.948 7 0.783
+2 24 -10 7 0 -9.948 7 -0.783
+2 24 -10 7 0 -9.948 7 0.783
+2 24 -5.948 7 -0.783 -5.948 18 -0.783
+2 24 -5.948 7 0.783 -5.948 18 0.783
+2 24 -9.948 7 -0.783 -9.948 14 -0.783
+2 24 -9.948 7 0.783 -9.948 14 0.783
+2 24 -9.948 14 -0.783 -10.948 14 -0.783
+2 24 -9.948 14 0.783 -10.948 14 0.783
+2 24 -5.948 18 -0.783 -9.948 18 -0.783
+2 24 -5.948 18 0.783 -9.948 18 0.783
+2 24 -10.948 17 -0.783 -9.948 18 -0.783
+2 24 -10.948 17 0.783 -9.948 18 0.783
+2 24 -10.948 14 -0.783 -10.948 17 -0.783
+2 24 -10.948 14 0.783 -10.948 17 0.783
+1 16 0 7 0 -5.94867 0 -0.78316 0 1 0 0.78316 0 -5.94867 p/48/1-24edge.dat
+4 16 -5.948 18 -0.783 -9.948 14 -0.783 -9.948 7 -0.783 -5.948 7 -0.783
+4 16 -5.948 7 0.783 -9.948 7 0.783 -9.948 14 0.783 -5.948 18 0.783
+4 16 -9.948 18 -0.783 -10.948 14 -0.783 -9.948 14 -0.783 -5.948 18 -0.783
+4 16 -5.948 18 0.783 -9.948 14 0.783 -10.948 14 0.783 -9.948 18 0.783
+3 16 -9.948 18 -0.783 -10.948 17 -0.783 -10.948 14 -0.783
+3 16 -10.948 14 0.783 -10.948 17 0.783 -9.948 18 0.783
+4 16 -5.948 7 -0.783 -9.948 7 -0.783 -10 7 0 -6 7 0
+4 16 -6 7 0 -10 7 0 -9.948 7 0.783 -5.948 7 0.783
+0 BFC INVERTNEXT
+1 16 0 7 0 -5.94867 0 0.78316 0 11 0 -0.78316 0 -5.94867 p/48/1-8cyli.dat
+1 16 0 18 0 -5.94867 0 0.78316 0 1 0 -0.78316 0 -5.94867 p/48/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 -3.65257 0 4.76012 0 11 0 -4.76012 0 -3.65257 p/48/1-12cyli.dat
+1 16 0 18 0 -3.65257 0 4.76012 0 1 0 -4.76012 0 -3.65257 p/48/1-12edge.dat
+2 24 -9.948 14 -0.783 -9.914 14 -1.305
+2 24 -0.783 14 -9.948 -1.305 14 -9.914
+2 24 -9.948 18 -0.783 -9.914 18 -1.305
+2 24 -0.783 18 -9.948 -1.305 18 -9.914
+3 16 -5.948 18 -0.783 -9.914 18 -1.305 -9.948 18 -0.783
+3 16 -0.783 18 -9.948 -1.305 18 -9.914 -0.783 18 -5.948
+4 16 -9.948 14 -0.783 -9.914 14 -1.305 -9.914 7 -1.305 -9.948 7 -0.783
+4 16 -0.783 7 -9.948 -1.305 7 -9.914 -1.305 14 -9.914 -0.783 14 -9.948
+1 16 0 7 0 -9.91445 0 1.30526 0 7 0 -1.30526 0 -9.91445 p/48/1-8cyli.dat
+1 16 0 14 0 -9.91445 0 1.30526 0 1 0 -1.30526 0 -9.91445 p/48/1-8edge.dat
+1 16 0 7 0 -6.08761 0 7.93353 0 7 0 -7.93353 0 -6.08761 p/48/1-12cyli.dat
+1 16 0 14 0 -6.08761 0 7.93353 0 1 0 -7.93353 0 -6.08761 p/48/1-12edge.dat
+1 16 0 18 0 -9.91445 0 1.30526 0 1 0 -1.30526 0 -9.91445 p/48/1-8edge.dat
+1 16 0 18 0 -6.08761 0 7.93353 0 1 0 -7.93353 0 -6.08761 p/48/1-12edge.dat
+1 16 0 17 0 -10.9059 0 1.43579 0 1 0 -1.43579 0 -10.9059 p/48/1-8edge.dat
+1 16 0 17 0 -6.69638 0 8.72689 0 1 0 -8.72689 0 -6.69638 p/48/1-12edge.dat
+1 16 0 14 0 -10.9059 0 1.43579 0 1 0 -1.43579 0 -10.9059 p/48/1-8edge.dat
+1 16 0 14 0 -6.69638 0 8.72689 0 1 0 -8.72689 0 -6.69638 p/48/1-12edge.dat
+1 16 0 14 0 -10.9059 0 1.43579 0 3 0 -1.43579 0 -10.9059 p/48/1-8cyli.dat
+1 16 0 14 0 -6.69638 0 8.72689 0 3 0 -8.72689 0 -6.69638 p/48/1-12cyli.dat
+2 24 -10.948 17 -0.783 -10.905 17 -1.436
+2 24 -0.783 17 -10.948 -1.436 17 -10.905
+2 24 -10.948 14 -0.783 -10.905 14 -1.436
+4 16 -10.948 17 -0.783 -10.905 17 -1.436 -10.905 14 -1.436 -10.948 14 -0.783
+4 16 -0.783 14 -10.948 -1.436 14 -10.905 -1.436 17 -10.905 -0.783 17 -10.948
+2 24 -0.783 14 -10.948 -1.436 14 -10.905
+4 16 -5.795 18 -1.553 -9.659 18 -2.588 -9.914 18 -1.305 -5.948 18 -0.783
+4 16 -5.543 18 -2.296 -9.239 18 -3.827 -9.659 18 -2.588 -5.795 18 -1.553
+4 16 -5.196 18 -3 -8.66 18 -5 -9.239 18 -3.827 -5.543 18 -2.296
+4 16 -4.76 18 -3.653 -7.934 18 -6.088 -8.66 18 -5 -5.196 18 -3
+4 16 -4.243 18 -4.243 -7.071 18 -7.071 -7.934 18 -6.088 -4.76 18 -3.653
+4 16 -3.653 18 -4.76 -6.088 18 -7.934 -7.071 18 -7.071 -4.243 18 -4.243
+4 16 -3 18 -5.196 -5 18 -8.66 -6.088 18 -7.934 -3.653 18 -4.76
+4 16 -2.296 18 -5.543 -3.827 18 -9.239 -5 18 -8.66 -3 18 -5.196
+4 16 -1.553 18 -5.795 -2.588 18 -9.659 -3.827 18 -9.239 -2.296 18 -5.543
+4 16 -0.783 18 -5.948 -1.305 18 -9.914 -2.588 18 -9.659 -1.553 18 -5.795
+4 16 -0.783 14 -9.948 -1.305 14 -9.914 -1.436 14 -10.905 -0.783 14 -10.948
+4 16 -10.948 14 -0.783 -10.905 14 -1.436 -9.914 14 -1.305 -9.948 14 -0.783
+4 16 -0.783 17 -10.948 -1.436 17 -10.905 -1.305 18 -9.914 -0.783 18 -9.948
+4 16 -9.948 18 -0.783 -9.914 18 -1.305 -10.905 17 -1.436 -10.948 17 -0.783
+4 16 -10.625 17 -2.847 -10.905 17 -1.436 -9.914 18 -1.305 -9.659 18 -2.588
+4 16 -10.163 17 -4.21 -10.625 17 -2.847 -9.659 18 -2.588 -9.239 18 -3.827
+4 16 -9.526 17 -5.5 -10.163 17 -4.21 -9.239 18 -3.827 -8.66 18 -5
+4 16 -8.727 17 -6.697 -9.526 17 -5.5 -8.66 18 -5 -7.934 18 -6.088
+4 16 -7.778 17 -7.778 -8.727 17 -6.697 -7.934 18 -6.088 -7.071 18 -7.071
+4 16 -6.697 17 -8.727 -7.778 17 -7.778 -7.071 18 -7.071 -6.088 18 -7.934
+4 16 -5.5 17 -9.526 -6.697 17 -8.727 -6.088 18 -7.934 -5 18 -8.66
+4 16 -4.21 17 -10.163 -5.5 17 -9.526 -5 18 -8.66 -3.827 18 -9.239
+4 16 -2.847 17 -10.625 -4.21 17 -10.163 -3.827 18 -9.239 -2.588 18 -9.659
+4 16 -1.436 17 -10.905 -2.847 17 -10.625 -2.588 18 -9.659 -1.305 18 -9.914
+4 16 -9.659 14 -2.588 -9.914 14 -1.305 -10.905 14 -1.436 -10.625 14 -2.847
+4 16 -9.239 14 -3.827 -9.659 14 -2.588 -10.625 14 -2.847 -10.163 14 -4.21
+4 16 -8.66 14 -5 -9.239 14 -3.827 -10.163 14 -4.21 -9.526 14 -5.5
+4 16 -7.934 14 -6.088 -8.66 14 -5 -9.526 14 -5.5 -8.727 14 -6.697
+4 16 -7.071 14 -7.071 -7.934 14 -6.088 -8.727 14 -6.697 -7.778 14 -7.778
+4 16 -6.088 14 -7.934 -7.071 14 -7.071 -7.778 14 -7.778 -6.697 14 -8.727
+4 16 -5 14 -8.66 -6.088 14 -7.934 -6.697 14 -8.727 -5.5 14 -9.526
+4 16 -3.827 14 -9.239 -5 14 -8.66 -5.5 14 -9.526 -4.21 14 -10.163
+4 16 -2.588 14 -9.659 -3.827 14 -9.239 -4.21 14 -10.163 -2.847 14 -10.625
+4 16 -1.305 14 -9.914 -2.588 14 -9.659 -2.847 14 -10.625 -1.436 14 -10.905
+2 24 0.783 7 -5.948 0.783 7 -9.948
+2 24 -0.783 7 -5.948 -0.783 7 -9.948
+2 24 0 7 -10 0.783 7 -9.948
+2 24 0 7 -10 -0.783 7 -9.948
+2 24 0.783 7 -5.948 0.783 18 -5.948
+2 24 -0.783 7 -5.948 -0.783 18 -5.948
+2 24 0.783 7 -9.948 0.783 14 -9.948
+2 24 -0.783 7 -9.948 -0.783 14 -9.948
+2 24 0.783 14 -9.948 0.783 14 -10.948
+2 24 -0.783 14 -9.948 -0.783 14 -10.948
+2 24 0.783 18 -5.948 0.783 18 -9.948
+2 24 -0.783 18 -5.948 -0.783 18 -9.948
+2 24 0.783 17 -10.948 0.783 18 -9.948
+2 24 -0.783 17 -10.948 -0.783 18 -9.948
+2 24 0.783 14 -10.948 0.783 17 -10.948
+2 24 -0.783 14 -10.948 -0.783 17 -10.948
+1 16 0 7 0 -0.78316 0 5.94867 0 1 0 -5.94867 0 -0.78316 p/48/1-24edge.dat
+4 16 0.783 18 -5.948 0.783 14 -9.948 0.783 7 -9.948 0.783 7 -5.948
+4 16 -0.783 7 -5.948 -0.783 7 -9.948 -0.783 14 -9.948 -0.783 18 -5.948
+4 16 0.783 18 -9.948 0.783 14 -10.948 0.783 14 -9.948 0.783 18 -5.948
+4 16 -0.783 18 -5.948 -0.783 14 -9.948 -0.783 14 -10.948 -0.783 18 -9.948
+3 16 0.783 18 -9.948 0.783 17 -10.948 0.783 14 -10.948
+3 16 -0.783 14 -10.948 -0.783 17 -10.948 -0.783 18 -9.948
+4 16 0.783 7 -5.948 0.783 7 -9.948 0 7 -10 0 7 -6
+4 16 0 7 -6 0 7 -10 -0.783 7 -9.948 -0.783 7 -5.948
+0 BFC INVERTNEXT
+1 16 0 7 0 0.78316 0 5.94867 0 11 0 -5.94867 0 0.78316 p/48/1-8cyli.dat
+1 16 0 18 0 0.78316 0 5.94867 0 1 0 -5.94867 0 0.78316 p/48/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 4.76012 0 3.65257 0 11 0 -3.65257 0 4.76012 p/48/1-12cyli.dat
+1 16 0 18 0 4.76012 0 3.65257 0 1 0 -3.65257 0 4.76012 p/48/1-12edge.dat
+2 24 0.783 14 -9.948 1.305 14 -9.914
+2 24 9.948 14 -0.783 9.914 14 -1.305
+2 24 0.783 18 -9.948 1.305 18 -9.914
+2 24 9.948 18 -0.783 9.914 18 -1.305
+3 16 0.783 18 -5.948 1.305 18 -9.914 0.783 18 -9.948
+3 16 9.948 18 -0.783 9.914 18 -1.305 5.948 18 -0.783
+4 16 0.783 14 -9.948 1.305 14 -9.914 1.305 7 -9.914 0.783 7 -9.948
+4 16 9.948 7 -0.783 9.914 7 -1.305 9.914 14 -1.305 9.948 14 -0.783
+1 16 0 7 0 1.30526 0 9.91445 0 7 0 -9.91445 0 1.30526 p/48/1-8cyli.dat
+1 16 0 14 0 1.30526 0 9.91445 0 1 0 -9.91445 0 1.30526 p/48/1-8edge.dat
+1 16 0 7 0 7.93353 0 6.08761 0 7 0 -6.08761 0 7.93353 p/48/1-12cyli.dat
+1 16 0 14 0 7.93353 0 6.08761 0 1 0 -6.08761 0 7.93353 p/48/1-12edge.dat
+1 16 0 18 0 1.30526 0 9.91445 0 1 0 -9.91445 0 1.30526 p/48/1-8edge.dat
+1 16 0 18 0 7.93353 0 6.08761 0 1 0 -6.08761 0 7.93353 p/48/1-12edge.dat
+1 16 0 17 0 1.43579 0 10.9059 0 1 0 -10.9059 0 1.43579 p/48/1-8edge.dat
+1 16 0 17 0 8.72689 0 6.69638 0 1 0 -6.69638 0 8.72689 p/48/1-12edge.dat
+1 16 0 14 0 1.43579 0 10.9059 0 1 0 -10.9059 0 1.43579 p/48/1-8edge.dat
+1 16 0 14 0 8.72689 0 6.69638 0 1 0 -6.69638 0 8.72689 p/48/1-12edge.dat
+1 16 0 14 0 1.43579 0 10.9059 0 3 0 -10.9059 0 1.43579 p/48/1-8cyli.dat
+1 16 0 14 0 8.72689 0 6.69638 0 3 0 -6.69638 0 8.72689 p/48/1-12cyli.dat
+2 24 0.783 17 -10.948 1.436 17 -10.905
+2 24 10.948 17 -0.783 10.905 17 -1.436
+2 24 0.783 14 -10.948 1.436 14 -10.905
+4 16 0.783 17 -10.948 1.436 17 -10.905 1.436 14 -10.905 0.783 14 -10.948
+4 16 10.948 14 -0.783 10.905 14 -1.436 10.905 17 -1.436 10.948 17 -0.783
+2 24 10.948 14 -0.783 10.905 14 -1.436
+4 16 1.553 18 -5.795 2.588 18 -9.659 1.305 18 -9.914 0.783 18 -5.948
+4 16 2.296 18 -5.543 3.827 18 -9.239 2.588 18 -9.659 1.553 18 -5.795
+4 16 3 18 -5.196 5 18 -8.66 3.827 18 -9.239 2.296 18 -5.543
+4 16 3.653 18 -4.76 6.088 18 -7.934 5 18 -8.66 3 18 -5.196
+4 16 4.243 18 -4.243 7.071 18 -7.071 6.088 18 -7.934 3.653 18 -4.76
+4 16 4.76 18 -3.653 7.934 18 -6.088 7.071 18 -7.071 4.243 18 -4.243
+4 16 5.196 18 -3 8.66 18 -5 7.934 18 -6.088 4.76 18 -3.653
+4 16 5.543 18 -2.296 9.239 18 -3.827 8.66 18 -5 5.196 18 -3
+4 16 5.795 18 -1.553 9.659 18 -2.588 9.239 18 -3.827 5.543 18 -2.296
+4 16 5.948 18 -0.783 9.914 18 -1.305 9.659 18 -2.588 5.795 18 -1.553
+4 16 9.948 14 -0.783 9.914 14 -1.305 10.905 14 -1.436 10.948 14 -0.783
+4 16 0.783 14 -10.948 1.436 14 -10.905 1.305 14 -9.914 0.783 14 -9.948
+4 16 10.948 17 -0.783 10.905 17 -1.436 9.914 18 -1.305 9.948 18 -0.783
+4 16 0.783 18 -9.948 1.305 18 -9.914 1.436 17 -10.905 0.783 17 -10.948
+4 16 2.847 17 -10.625 1.436 17 -10.905 1.305 18 -9.914 2.588 18 -9.659
+4 16 4.21 17 -10.163 2.847 17 -10.625 2.588 18 -9.659 3.827 18 -9.239
+4 16 5.5 17 -9.526 4.21 17 -10.163 3.827 18 -9.239 5 18 -8.66
+4 16 6.697 17 -8.727 5.5 17 -9.526 5 18 -8.66 6.088 18 -7.934
+4 16 7.778 17 -7.778 6.697 17 -8.727 6.088 18 -7.934 7.071 18 -7.071
+4 16 8.727 17 -6.697 7.778 17 -7.778 7.071 18 -7.071 7.934 18 -6.088
+4 16 9.526 17 -5.5 8.727 17 -6.697 7.934 18 -6.088 8.66 18 -5
+4 16 10.163 17 -4.21 9.526 17 -5.5 8.66 18 -5 9.239 18 -3.827
+4 16 10.625 17 -2.847 10.163 17 -4.21 9.239 18 -3.827 9.659 18 -2.588
+4 16 10.905 17 -1.436 10.625 17 -2.847 9.659 18 -2.588 9.914 18 -1.305
+4 16 2.588 14 -9.659 1.305 14 -9.914 1.436 14 -10.905 2.847 14 -10.625
+4 16 3.827 14 -9.239 2.588 14 -9.659 2.847 14 -10.625 4.21 14 -10.163
+4 16 5 14 -8.66 3.827 14 -9.239 4.21 14 -10.163 5.5 14 -9.526
+4 16 6.088 14 -7.934 5 14 -8.66 5.5 14 -9.526 6.697 14 -8.727
+4 16 7.071 14 -7.071 6.088 14 -7.934 6.697 14 -8.727 7.778 14 -7.778
+4 16 7.934 14 -6.088 7.071 14 -7.071 7.778 14 -7.778 8.727 14 -6.697
+4 16 8.66 14 -5 7.934 14 -6.088 8.727 14 -6.697 9.526 14 -5.5
+4 16 9.239 14 -3.827 8.66 14 -5 9.526 14 -5.5 10.163 14 -4.21
+4 16 9.659 14 -2.588 9.239 14 -3.827 10.163 14 -4.21 10.625 14 -2.847
+4 16 9.914 14 -1.305 9.659 14 -2.588 10.625 14 -2.847 10.905 14 -1.436
+1 16 0 15 -36.8 2.21731 0 -0.91844 0 1 0 0.91844 0 2.21731 p/3-8edge.dat
+1 16 0 15 -36.8 2.21731 0 -0.91844 0 -1 0 0.91844 0 2.21731 p/3-8chrd.dat
+1 16 0 3 -36.8 2.21731 0 -0.91844 0 12 0 0.91844 0 2.21731 p/3-8cyli.dat
+1 16 0 3 -36.8 2.21731 0 -0.91844 0 1 0 0.91844 0 2.21731 p/3-8edge.dat
+2 24 2.218 15 -35.881 2.218 3 -35.881
+2 24 -2.218 15 -35.881 -2.218 3 -35.881
+2 24 2.218 15 -35.881 0 15 -36
+2 24 -2.218 15 -35.881 0 15 -36
+1 16 36.8 15 0 -0.91844 0 -2.21731 0 1 0 2.21731 0 -0.91844 p/3-8edge.dat
+1 16 36.8 15 0 -0.91844 0 -2.21731 0 -1 0 2.21731 0 -0.91844 p/3-8chrd.dat
+1 16 36.8 3 0 -0.91844 0 -2.21731 0 12 0 2.21731 0 -0.91844 p/3-8cyli.dat
+1 16 36.8 3 0 -0.91844 0 -2.21731 0 1 0 2.21731 0 -0.91844 p/3-8edge.dat
+2 24 35.881 15 2.218 35.881 3 2.218
+2 24 35.881 15 -2.218 35.881 3 -2.218
+2 24 35.881 15 2.218 36 15 0
+2 24 35.881 15 -2.218 36 15 0
+5 24 1.436 17 10.905 1.305 18 9.914 0.783 17 10.948 2.847 17 10.625
+5 24 9.914 18 1.305 10.905 17 1.436 9.948 18 0.783 10.625 17 2.847
+5 24 9.659 18 2.588 10.625 17 2.847 10.905 17 1.436 10.163 17 4.21
+5 24 9.239 18 3.827 10.163 17 4.21 10.625 17 2.847 9.526 17 5.5
+5 24 8.66 18 5 9.526 17 5.5 10.163 17 4.21 8.727 17 6.697
+5 24 7.934 18 6.088 8.727 17 6.697 9.526 17 5.5 7.778 17 7.778
+5 24 7.071 18 7.071 7.778 17 7.778 8.727 17 6.697 6.697 17 8.727
+5 24 6.088 18 7.934 6.697 17 8.727 7.778 17 7.778 5.5 17 9.526
+5 24 5 18 8.66 5.5 17 9.526 6.697 17 8.727 4.21 17 10.163
+5 24 3.827 18 9.239 4.21 17 10.163 5.5 17 9.526 2.847 17 10.625
+5 24 2.588 18 9.659 2.847 17 10.625 4.21 17 10.163 1.436 17 10.905
+5 24 -10.905 17 1.436 -9.914 18 1.305 -10.948 17 0.783 -10.625 17 2.847
+5 24 -1.305 18 9.914 -1.436 17 10.905 -0.783 18 9.948 -2.847 17 10.625
+5 24 -2.588 18 9.659 -2.847 17 10.625 -1.436 17 10.905 -4.21 17 10.163
+5 24 -3.827 18 9.239 -4.21 17 10.163 -2.847 17 10.625 -5.5 17 9.526
+5 24 -5 18 8.66 -5.5 17 9.526 -4.21 17 10.163 -6.697 17 8.727
+5 24 -6.088 18 7.934 -6.697 17 8.727 -5.5 17 9.526 -7.778 17 7.778
+5 24 -7.071 18 7.071 -7.778 17 7.778 -6.697 17 8.727 -8.727 17 6.697
+5 24 -7.934 18 6.088 -8.727 17 6.697 -7.778 17 7.778 -9.526 17 5.5
+5 24 -8.66 18 5 -9.526 17 5.5 -8.727 17 6.697 -10.163 17 4.21
+5 24 -9.239 18 3.827 -10.163 17 4.21 -9.526 17 5.5 -10.625 17 2.847
+5 24 -9.659 18 2.588 -10.625 17 2.847 -10.163 17 4.21 -10.905 17 1.436
+5 24 -1.436 17 -10.905 -1.305 18 -9.914 -0.783 17 -10.948 -2.847 17 -10.625
+5 24 -9.914 18 -1.305 -10.905 17 -1.436 -9.948 18 -0.783 -10.625 17 -2.847
+5 24 -9.659 18 -2.588 -10.625 17 -2.847 -10.905 17 -1.436 -10.163 17 -4.21
+5 24 -9.239 18 -3.827 -10.163 17 -4.21 -10.625 17 -2.847 -9.526 17 -5.5
+5 24 -8.66 18 -5 -9.526 17 -5.5 -10.163 17 -4.21 -8.727 17 -6.697
+5 24 -7.934 18 -6.088 -8.727 17 -6.697 -9.526 17 -5.5 -7.778 17 -7.778
+5 24 -7.071 18 -7.071 -7.778 17 -7.778 -8.727 17 -6.697 -6.697 17 -8.727
+5 24 -6.088 18 -7.934 -6.697 17 -8.727 -7.778 17 -7.778 -5.5 17 -9.526
+5 24 -5 18 -8.66 -5.5 17 -9.526 -6.697 17 -8.727 -4.21 17 -10.163
+5 24 -3.827 18 -9.239 -4.21 17 -10.163 -5.5 17 -9.526 -2.847 17 -10.625
+5 24 -2.588 18 -9.659 -2.847 17 -10.625 -4.21 17 -10.163 -1.436 17 -10.905
+5 24 10.905 17 -1.436 9.914 18 -1.305 10.948 17 -0.783 10.625 17 -2.847
+5 24 1.305 18 -9.914 1.436 17 -10.905 0.783 18 -9.948 2.847 17 -10.625
+5 24 2.588 18 -9.659 2.847 17 -10.625 1.436 17 -10.905 4.21 17 -10.163
+5 24 3.827 18 -9.239 4.21 17 -10.163 2.847 17 -10.625 5.5 17 -9.526
+5 24 5 18 -8.66 5.5 17 -9.526 4.21 17 -10.163 6.697 17 -8.727
+5 24 6.088 18 -7.934 6.697 17 -8.727 5.5 17 -9.526 7.778 17 -7.778
+5 24 7.071 18 -7.071 7.778 17 -7.778 6.697 17 -8.727 8.727 17 -6.697
+5 24 7.934 18 -6.088 8.727 17 -6.697 7.778 17 -7.778 9.526 17 -5.5
+5 24 8.66 18 -5 9.526 17 -5.5 8.727 17 -6.697 10.163 17 -4.21
+5 24 9.239 18 -3.827 10.163 17 -4.21 9.526 17 -5.5 10.625 17 -2.847
+5 24 9.659 18 -2.588 10.625 17 -2.847 10.163 17 -4.21 10.905 17 -1.436
+
+
+0 FILE p/48/1-24edge.dat
+0 Hi-Res Circle 0.0417
+0 Name: 48\1-24edge.dat
+0 Author: Niels Bugge [SirBugge]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2010-01-11 [cwdee] Correct description dimension
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1.0000 0.0000 0.0000 0.9914 0.0000 0.1305
+2 24 0.9914 0.0000 0.1305 0.9659 0.0000 0.2588
+0
+
+0 FILE p/48/4-4rin15.dat
+0 Hi-Res Ring 15 x 1.0
+0 Name: 48\4-4rin15.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+4 16 15 0 0 16 0 0 15.8624 0 2.088 14.871 0 1.9575
+4 16 14.871 0 1.9575 15.8624 0 2.088 15.4544 0 4.1408 14.4885 0 3.882
+4 16 14.4885 0 3.882 15.4544 0 4.1408 14.7824 0 6.1232 13.8585 0 5.7405
+4 16 13.8585 0 5.7405 14.7824 0 6.1232 13.856 0 8 12.99 0 7.5
+4 16 12.99 0 7.5 13.856 0 8 12.6944 0 9.7408 11.901 0 9.132
+4 16 11.901 0 9.132 12.6944 0 9.7408 11.3136 0 11.3136 10.6065 0 10.6065
+4 16 10.6065 0 10.6065 11.3136 0 11.3136 9.7408 0 12.6944 9.132 0 11.901
+4 16 9.132 0 11.901 9.7408 0 12.6944 8 0 13.856 7.5 0 12.99
+4 16 7.5 0 12.99 8 0 13.856 6.1232 0 14.7824 5.7405 0 13.8585
+4 16 5.7405 0 13.8585 6.1232 0 14.7824 4.1408 0 15.4544 3.882 0 14.4885
+4 16 3.882 0 14.4885 4.1408 0 15.4544 2.088 0 15.8624 1.9575 0 14.871
+4 16 1.9575 0 14.871 2.088 0 15.8624 0 0 16 0 0 15
+4 16 0 0 15 0 0 16 -2.088 0 15.8624 -1.9575 0 14.871
+4 16 -1.9575 0 14.871 -2.088 0 15.8624 -4.1408 0 15.4544 -3.882 0 14.4885
+4 16 -3.882 0 14.4885 -4.1408 0 15.4544 -6.1232 0 14.7824 -5.7405 0 13.8585
+4 16 -5.7405 0 13.8585 -6.1232 0 14.7824 -8 0 13.856 -7.5 0 12.99
+4 16 -7.5 0 12.99 -8 0 13.856 -9.7408 0 12.6944 -9.132 0 11.901
+4 16 -9.132 0 11.901 -9.7408 0 12.6944 -11.3136 0 11.3136 -10.6065 0 10.6065
+4 16 -10.6065 0 10.6065 -11.3136 0 11.3136 -12.6944 0 9.7408 -11.901 0 9.132
+4 16 -11.901 0 9.132 -12.6944 0 9.7408 -13.856 0 8 -12.99 0 7.5
+4 16 -12.99 0 7.5 -13.856 0 8 -14.7824 0 6.1232 -13.8585 0 5.7405
+4 16 -13.8585 0 5.7405 -14.7824 0 6.1232 -15.4544 0 4.1408 -14.4885 0 3.882
+4 16 -14.4885 0 3.882 -15.4544 0 4.1408 -15.8624 0 2.088 -14.871 0 1.9575
+4 16 -14.871 0 1.9575 -15.8624 0 2.088 -16 0 0 -15 0 0
+4 16 -15 0 0 -16 0 0 -15.8624 0 -2.088 -14.871 0 -1.9575
+4 16 -14.871 0 -1.9575 -15.8624 0 -2.088 -15.4544 0 -4.1408 -14.4885 0 -3.882
+4 16 -14.4885 0 -3.882 -15.4544 0 -4.1408 -14.7824 0 -6.1232 -13.8585 0 -5.7405
+4 16 -13.8585 0 -5.7405 -14.7824 0 -6.1232 -13.856 0 -8 -12.99 0 -7.5
+4 16 -12.99 0 -7.5 -13.856 0 -8 -12.6944 0 -9.7408 -11.901 0 -9.132
+4 16 -11.901 0 -9.132 -12.6944 0 -9.7408 -11.3136 0 -11.3136 -10.6065 0 -10.6065
+4 16 -10.6065 0 -10.6065 -11.3136 0 -11.3136 -9.7408 0 -12.6944 -9.132 0 -11.901
+4 16 -9.132 0 -11.901 -9.7408 0 -12.6944 -8 0 -13.856 -7.5 0 -12.99
+4 16 -7.5 0 -12.99 -8 0 -13.856 -6.1232 0 -14.7824 -5.7405 0 -13.8585
+4 16 -5.7405 0 -13.8585 -6.1232 0 -14.7824 -4.1408 0 -15.4544 -3.882 0 -14.4885
+4 16 -3.882 0 -14.4885 -4.1408 0 -15.4544 -2.088 0 -15.8624 -1.9575 0 -14.871
+4 16 -1.9575 0 -14.871 -2.088 0 -15.8624 0 0 -16 0 0 -15
+4 16 0 0 -15 0 0 -16 2.088 0 -15.8624 1.9575 0 -14.871
+4 16 1.9575 0 -14.871 2.088 0 -15.8624 4.1408 0 -15.4544 3.882 0 -14.4885
+4 16 3.882 0 -14.4885 4.1408 0 -15.4544 6.1232 0 -14.7824 5.7405 0 -13.8585
+4 16 5.7405 0 -13.8585 6.1232 0 -14.7824 8 0 -13.856 7.5 0 -12.99
+4 16 7.5 0 -12.99 8 0 -13.856 9.7408 0 -12.6944 9.132 0 -11.901
+4 16 9.132 0 -11.901 9.7408 0 -12.6944 11.3136 0 -11.3136 10.6065 0 -10.6065
+4 16 10.6065 0 -10.6065 11.3136 0 -11.3136 12.6944 0 -9.7408 11.901 0 -9.132
+4 16 11.901 0 -9.132 12.6944 0 -9.7408 13.856 0 -8 12.99 0 -7.5
+4 16 12.99 0 -7.5 13.856 0 -8 14.7824 0 -6.1232 13.8585 0 -5.7405
+4 16 13.8585 0 -5.7405 14.7824 0 -6.1232 15.4544 0 -4.1408 14.4885 0 -3.882
+4 16 14.4885 0 -3.882 15.4544 0 -4.1408 15.8624 0 -2.088 14.871 0 -1.9575
+4 16 14.871 0 -1.9575 15.8624 0 -2.088 16 0 0 15 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4ring5.dat
+0 Hi-Res Ring  5 x 1.0
+0 Name: 48\4-4ring5.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+4 16 5 0 0 6 0 0 5.9484 0 0.783 4.957 0 0.6525
+4 16 4.957 0 0.6525 5.9484 0 0.783 5.7954 0 1.5528 4.8295 0 1.294
+4 16 4.8295 0 1.294 5.7954 0 1.5528 5.5434 0 2.2962 4.6195 0 1.9135
+4 16 4.6195 0 1.9135 5.5434 0 2.2962 5.196 0 3 4.33 0 2.5
+4 16 4.33 0 2.5 5.196 0 3 4.7604 0 3.6528 3.967 0 3.044
+4 16 3.967 0 3.044 4.7604 0 3.6528 4.2426 0 4.2426 3.5355 0 3.5355
+4 16 3.5355 0 3.5355 4.2426 0 4.2426 3.6528 0 4.7604 3.044 0 3.967
+4 16 3.044 0 3.967 3.6528 0 4.7604 3 0 5.196 2.5 0 4.33
+4 16 2.5 0 4.33 3 0 5.196 2.2962 0 5.5434 1.9135 0 4.6195
+4 16 1.9135 0 4.6195 2.2962 0 5.5434 1.5528 0 5.7954 1.294 0 4.8295
+4 16 1.294 0 4.8295 1.5528 0 5.7954 0.783 0 5.9484 0.6525 0 4.957
+4 16 0.6525 0 4.957 0.783 0 5.9484 0 0 6 0 0 5
+4 16 0 0 5 0 0 6 -0.783 0 5.9484 -0.6525 0 4.957
+4 16 -0.6525 0 4.957 -0.783 0 5.9484 -1.5528 0 5.7954 -1.294 0 4.8295
+4 16 -1.294 0 4.8295 -1.5528 0 5.7954 -2.2962 0 5.5434 -1.9135 0 4.6195
+4 16 -1.9135 0 4.6195 -2.2962 0 5.5434 -3 0 5.196 -2.5 0 4.33
+4 16 -2.5 0 4.33 -3 0 5.196 -3.6528 0 4.7604 -3.044 0 3.967
+4 16 -3.044 0 3.967 -3.6528 0 4.7604 -4.2426 0 4.2426 -3.5355 0 3.5355
+4 16 -3.5355 0 3.5355 -4.2426 0 4.2426 -4.7604 0 3.6528 -3.967 0 3.044
+4 16 -3.967 0 3.044 -4.7604 0 3.6528 -5.196 0 3 -4.33 0 2.5
+4 16 -4.33 0 2.5 -5.196 0 3 -5.5434 0 2.2962 -4.6195 0 1.9135
+4 16 -4.6195 0 1.9135 -5.5434 0 2.2962 -5.7954 0 1.5528 -4.8295 0 1.294
+4 16 -4.8295 0 1.294 -5.7954 0 1.5528 -5.9484 0 0.783 -4.957 0 0.6525
+4 16 -4.957 0 0.6525 -5.9484 0 0.783 -6 0 0 -5 0 0
+4 16 -5 0 0 -6 0 0 -5.9484 0 -0.783 -4.957 0 -0.6525
+4 16 -4.957 0 -0.6525 -5.9484 0 -0.783 -5.7954 0 -1.5528 -4.8295 0 -1.294
+4 16 -4.8295 0 -1.294 -5.7954 0 -1.5528 -5.5434 0 -2.2962 -4.6195 0 -1.9135
+4 16 -4.6195 0 -1.9135 -5.5434 0 -2.2962 -5.196 0 -3 -4.33 0 -2.5
+4 16 -4.33 0 -2.5 -5.196 0 -3 -4.7604 0 -3.6528 -3.967 0 -3.044
+4 16 -3.967 0 -3.044 -4.7604 0 -3.6528 -4.2426 0 -4.2426 -3.5355 0 -3.5355
+4 16 -3.5355 0 -3.5355 -4.2426 0 -4.2426 -3.6528 0 -4.7604 -3.044 0 -3.967
+4 16 -3.044 0 -3.967 -3.6528 0 -4.7604 -3 0 -5.196 -2.5 0 -4.33
+4 16 -2.5 0 -4.33 -3 0 -5.196 -2.2962 0 -5.5434 -1.9135 0 -4.6195
+4 16 -1.9135 0 -4.6195 -2.2962 0 -5.5434 -1.5528 0 -5.7954 -1.294 0 -4.8295
+4 16 -1.294 0 -4.8295 -1.5528 0 -5.7954 -0.783 0 -5.9484 -0.6525 0 -4.957
+4 16 -0.6525 0 -4.957 -0.783 0 -5.9484 0 0 -6 0 0 -5
+4 16 0 0 -5 0 0 -6 0.783 0 -5.9484 0.6525 0 -4.957
+4 16 0.6525 0 -4.957 0.783 0 -5.9484 1.5528 0 -5.7954 1.294 0 -4.8295
+4 16 1.294 0 -4.8295 1.5528 0 -5.7954 2.2962 0 -5.5434 1.9135 0 -4.6195
+4 16 1.9135 0 -4.6195 2.2962 0 -5.5434 3 0 -5.196 2.5 0 -4.33
+4 16 2.5 0 -4.33 3 0 -5.196 3.6528 0 -4.7604 3.044 0 -3.967
+4 16 3.044 0 -3.967 3.6528 0 -4.7604 4.2426 0 -4.2426 3.5355 0 -3.5355
+4 16 3.5355 0 -3.5355 4.2426 0 -4.2426 4.7604 0 -3.6528 3.967 0 -3.044
+4 16 3.967 0 -3.044 4.7604 0 -3.6528 5.196 0 -3 4.33 0 -2.5
+4 16 4.33 0 -2.5 5.196 0 -3 5.5434 0 -2.2962 4.6195 0 -1.9135
+4 16 4.6195 0 -1.9135 5.5434 0 -2.2962 5.7954 0 -1.5528 4.8295 0 -1.294
+4 16 4.8295 0 -1.294 5.7954 0 -1.5528 5.9484 0 -0.783 4.957 0 -0.6525
+4 16 4.957 0 -0.6525 5.9484 0 -0.783 6 0 0 5 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4ring3.dat
+0 Hi-Res Ring  3 x 1.0
+0 Name: 48\4-4ring3.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-01 [pneaster] Adjusted values per request.
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 4 0 0 3.9656 0 0.522 2.9742 0 0.3915 3 0 0
+4 16 3.9656 0 0.522 3.8636 0 1.0352 2.8977 0 0.7764 2.9742 0 0.3915
+4 16 3.8636 0 1.0352 3.6956 0 1.5308 2.7717 0 1.1481 2.8977 0 0.7764
+4 16 3.6956 0 1.5308 3.464 0 2 2.598 0 1.5 2.7717 0 1.1481
+4 16 3.464 0 2 3.1736 0 2.4352 2.3802 0 1.8264 2.598 0 1.5
+4 16 3.1736 0 2.4352 2.8284 0 2.8284 2.1213 0 2.1213 2.3802 0 1.8264
+4 16 2.8284 0 2.8284 2.4352 0 3.1736 1.8264 0 2.3802 2.1213 0 2.1213
+4 16 2.4352 0 3.1736 2 0 3.464 1.5 0 2.598 1.8264 0 2.3802
+4 16 2 0 3.464 1.5308 0 3.6956 1.1481 0 2.7717 1.5 0 2.598
+4 16 1.5308 0 3.6956 1.0352 0 3.8636 0.7764 0 2.8977 1.1481 0 2.7717
+4 16 1.0352 0 3.8636 0.522 0 3.9656 0.3915 0 2.9742 0.7764 0 2.8977
+4 16 0.522 0 3.9656 0 0 4 0 0 3 0.3915 0 2.9742
+4 16 0 0 4 -0.522 0 3.9656 -0.3915 0 2.9742 0 0 3
+4 16 -0.522 0 3.9656 -1.0352 0 3.8636 -0.7764 0 2.8977 -0.3915 0 2.9742
+4 16 -1.0352 0 3.8636 -1.5308 0 3.6956 -1.1481 0 2.7717 -0.7764 0 2.8977
+4 16 -1.5308 0 3.6956 -2 0 3.464 -1.5 0 2.598 -1.1481 0 2.7717
+4 16 -2 0 3.464 -2.4352 0 3.1736 -1.8264 0 2.3802 -1.5 0 2.598
+4 16 -2.4352 0 3.1736 -2.8284 0 2.8284 -2.1213 0 2.1213 -1.8264 0 2.3802
+4 16 -2.8284 0 2.8284 -3.1736 0 2.4352 -2.3802 0 1.8264 -2.1213 0 2.1213
+4 16 -3.1736 0 2.4352 -3.464 0 2 -2.598 0 1.5 -2.3802 0 1.8264
+4 16 -3.464 0 2 -3.6956 0 1.5308 -2.7717 0 1.1481 -2.598 0 1.5
+4 16 -3.6956 0 1.5308 -3.8636 0 1.0352 -2.8977 0 0.7764 -2.7717 0 1.1481
+4 16 -3.8636 0 1.0352 -3.9656 0 0.522 -2.9742 0 0.3915 -2.8977 0 0.7764
+4 16 -3.9656 0 0.522 -4 0 0 -3 0 0 -2.9742 0 0.3915
+4 16 -4 0 0 -3.9656 0 -0.522 -2.9742 0 -0.3915 -3 0 0
+4 16 -3.9656 0 -0.522 -3.8636 0 -1.0352 -2.8977 0 -0.7764 -2.9742 0 -0.3915
+4 16 -3.8636 0 -1.0352 -3.6956 0 -1.5308 -2.7717 0 -1.1481 -2.8977 0 -0.7764
+4 16 -3.6956 0 -1.5308 -3.464 0 -2 -2.598 0 -1.5 -2.7717 0 -1.1481
+4 16 -3.464 0 -2 -3.1736 0 -2.4352 -2.3802 0 -1.8264 -2.598 0 -1.5
+4 16 -3.1736 0 -2.4352 -2.8284 0 -2.8284 -2.1213 0 -2.1213 -2.3802 0 -1.8264
+4 16 -2.8284 0 -2.8284 -2.4352 0 -3.1736 -1.8264 0 -2.3802 -2.1213 0 -2.1213
+4 16 -2.4352 0 -3.1736 -2 0 -3.464 -1.5 0 -2.598 -1.8264 0 -2.3802
+4 16 -2 0 -3.464 -1.5308 0 -3.6956 -1.1481 0 -2.7717 -1.5 0 -2.598
+4 16 -1.5308 0 -3.6956 -1.0352 0 -3.8636 -0.7764 0 -2.8977 -1.1481 0 -2.7717
+4 16 -1.0352 0 -3.8636 -0.522 0 -3.9656 -0.3915 0 -2.9742 -0.7764 0 -2.8977
+4 16 -0.522 0 -3.9656 0 0 -4 0 0 -3 -0.3915 0 -2.9742
+4 16 0 0 -4 0.522 0 -3.9656 0.3915 0 -2.9742 0 0 -3
+4 16 0.522 0 -3.9656 1.0352 0 -3.8636 0.7764 0 -2.8977 0.3915 0 -2.9742
+4 16 1.0352 0 -3.8636 1.5308 0 -3.6956 1.1481 0 -2.7717 0.7764 0 -2.8977
+4 16 1.5308 0 -3.6956 2 0 -3.464 1.5 0 -2.598 1.1481 0 -2.7717
+4 16 2 0 -3.464 2.4352 0 -3.1736 1.8264 0 -2.3802 1.5 0 -2.598
+4 16 2.4352 0 -3.1736 2.8284 0 -2.8284 2.1213 0 -2.1213 1.8264 0 -2.3802
+4 16 2.8284 0 -2.8284 3.1736 0 -2.4352 2.3802 0 -1.8264 2.1213 0 -2.1213
+4 16 3.1736 0 -2.4352 3.464 0 -2 2.598 0 -1.5 2.3802 0 -1.8264
+4 16 3.464 0 -2 3.6956 0 -1.5308 2.7717 0 -1.1481 2.598 0 -1.5
+4 16 3.6956 0 -1.5308 3.8636 0 -1.0352 2.8977 0 -0.7764 2.7717 0 -1.1481
+4 16 3.8636 0 -1.0352 3.9656 0 -0.522 2.9742 0 -0.3915 2.8977 0 -0.7764
+4 16 3.9656 0 -0.522 4 0 0 3 0 0 2.9742 0 -0.3915
+
+0 FILE parts/32198.dat
+0 Technic Gear 20 Tooth Bevel
+0 Name: 32198.dat
+0 Author: Marc Klein [marckl]
+0 !LDRAW_ORG Part UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-07-16 [MagFors] bfc'd, used tooth primitive
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+1 16 0 0 -3 -11.08655 0 4.5922 4.5922 0 11.08655 0 6 0 p/3-8cylo.dat
+1 16 0 0 -3 11.08655 0 -4.5922 -4.5922 0 -11.08655 0 6 0 p/3-8cylo.dat
+0 BFC INVERTNEXT
+1 16 0 0 3 -8.31492 0 3.44415 -3.44415 0 -8.31492 0 -3 0 p/3-8cylo.dat
+0 BFC INVERTNEXT
+1 16 0 0 3 8.31492 0 -3.44415 3.44415 0 8.31492 0 -3 0 p/3-8cylo.dat
+1 16 -12 0 3 0 0 -3 -3 0 0 0 -6 0 p/2-4cylc.dat
+1 16 12 0 3 0 0 3 3 0 0 0 -6 0 p/2-4cylc.dat
+0 BFC INVERTNEXT
+1 16 11 0 3 0 0 1 -1 0 0 0 -10 0 p/8/2-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -11 0 3 0 0 -1 1 0 0 0 -10 0 p/8/2-4cylo.dat
+1 16 -11 0 3 0 0 -1 -1 0 0 0 -1 0 p/8/2-4ndis.dat
+1 16 11 0 3 0 0 1 1 0 0 0 -1 0 p/8/2-4ndis.dat
+1 16 0 0 0 0 0 -1 -1 0 0 0 -7 0 p/axlehol5.dat
+1 16 0 0 0 2.771639 0 -1.14805 1.14805 0 2.771639 0 -1 0 p/3-8ring2.dat
+1 16 0 0 0 -2.771639 0 1.14805 -1.14805 0 -2.771639 0 -1 0 p/3-8ring2.dat
+1 16 0 0 3 2.771639 0 -1.14805 1.14805 0 2.771639 0 -1 0 p/3-8ring3.dat
+1 16 0 0 3 -2.771639 0 1.14805 -1.14805 0 -2.771639 0 -1 0 p/3-8ring3.dat
+
+2 24 -11 1 3 -8.944 1 3
+2 24 -5.8011 1 -7 -11 1 -7
+2 24 -8.944 1 0 -5.8011 1 0
+4 16 -8.944 1 3 -11 1 3 -11 1 -7 -8.944 1 0
+4 16 -8.944 1 0 -11 1 -7 -5.8011 1 -7 -5.8011 1 0
+2 24 -11 -1 -7 -5.8011 -1 -7
+2 24 -5.8011 -1 0 -8.944 -1 0
+2 24 -8.944 -1 3 -11 -1 3
+4 16 -5.8011 -1 0 -5.8011 -1 -7 -11 -1 -7 -8.944 -1 0
+4 16 -8.944 -1 0 -11 -1 -7 -11 -1 3 -8.944 -1 3
+2 24 11 -1 3 8.944 -1 3
+2 24 5.8011 -1 -7 11 -1 -7
+2 24 8.944 -1 0 5.8011 -1 0
+4 16 8.944 -1 3 11 -1 3 11 -1 -7 8.944 -1 0
+4 16 8.944 -1 0 11 -1 -7 5.8011 -1 -7 5.8011 -1 0
+2 24 11 1 -7 5.8011 1 -7
+2 24 5.8011 1 0 8.944 1 0
+2 24 8.944 1 3 11 1 3
+4 16 5.8011 1 0 5.8011 1 -7 11 1 -7 8.944 1 0
+4 16 8.944 1 0 11 1 -7 11 1 3 8.944 1 3
+
+4 16 -8.944 1 3 -8.3148 3.4441 3 -11.0866 4.5922 3 -11.63 3 3
+4 16 -12 1 3 -8.944 1 3 -11.63 3 3 -12 3 3
+4 16 -11.0864 -4.5922 3 -8.3149 -3.4442 3 -8.944 -1 3 -11.63 -3 3
+4 16 -11.63 -3 3 -8.944 -1 3 -12 -1 3 -12 -3 3
+4 16 11.0864 4.5922 3 8.3149 3.4442 3 8.944 1 3 11.63 3 3
+4 16 12 1 3 12 3 3 11.63 3 3 8.944 1 3
+4 16 8.3148 -3.4441 3 11.0864 -4.5922 3 11.63 -3 3 8.944 -1 3
+4 16 12 -3 3 12 -1 3 8.944 -1 3 11.63 -3 3
+
+4 16 8.315 3.444 0 5.5433 2.2961 0 5.8011 1 0 8.944 1 0
+4 16 -5.8011 1 0 -5.543 2.296 0 -8.3148 3.4441 0 -8.944 1 0
+4 16 -8.3149 -3.4442 0 -5.543 -2.296 0 -5.8011 -1 0 -8.944 -1 0
+4 16 5.5433 -2.2961 0 8.315 -3.444 0 8.944 -1 0 5.8011 -1 0
+
+1 16 -11.815 -3 0 0 0 .185 0 1 0 -3 0 0 p/rect3.dat
+1 16 -11.815 3 0 0 0 .185 0 -1 0 3 0 0 p/rect3.dat
+1 16 11.815 3 0 0 0 -.185 0 -1 0 -3 0 0 p/rect3.dat
+1 16 11.815 -3 0 0 0 -.185 0 1 0 3 0 0 p/rect3.dat
+
+1 16 5.70155 1.5 -3.5 0 0 .09955 0 1 -.5 -3.5 0 0 p/rect.dat
+1 16 5.70155 -1.5 -3.5 -.09955 0 0 -.5 -1 0 0 0 3.5 p/rect.dat
+1 16 -5.70155 -1.5 -3.5 -.09955 0 0 .5 -1 0 0 0 3.5 p/rect.dat
+1 16 -5.70155 1.5 -3.5 0 0 .09955 0 1 .5 -3.5 0 0 p/rect.dat
+
+1 16 8.6295 -2.222 1.5 0 0 .3145 0 -1 1.222 1.5 0 0 p/rect3.dat
+1 16 8.6295 2.222 1.5 0 0 .3145 0 1 -1.222 -1.5 0 0 p/rect3.dat
+1 16 -8.6295 2.222 1.5 0 0 -.3145 0 1 -1.222 1.5 0 0 p/rect3.dat
+1 16 -8.6295 -2.222 1.5 0 0 -.3145 0 -1 1.222 -1.5 0 0 p/rect3.dat
+5 24 -8.3148 3.4441 3 -8.3148 3.4441 0 -6.3642 6.3641 0 -8.944 1 0
+5 24 -8.3149 -3.4442 3 -8.3149 -3.4442 0 -8.944 -1 0 -6.3641 -6.3642 0
+5 24 8.3148 -3.4441 3 8.3148 -3.4441 0 6.3642 -6.3641 0 8.944 -1 0
+5 24 8.3149 3.4442 3 8.3149 3.4442 0 8.944 1 0 6.3641 6.3642 0
+
+1 16 -11.3582 -3.7961 0 -.2718 0 0 .7961 1 0 0 0 -3 p/rect2p.dat
+1 16 -11.3582 3.7961 0 -.2718 0 0 -.7961 -1 0 0 0 3 p/rect2p.dat
+1 16 11.3582 3.7961 0 .2718 0 0 -.7961 -1 0 0 0 -3 p/rect2p.dat
+1 16 11.3582 -3.7961 0 .2718 0 0 .7961 1 0 0 0 3 p/rect2p.dat
+5 24 11.0866 4.5922 3 11.0864 4.5922 -3 8.485 8.485 -3 11.63 3 3
+5 24 -11.0866 4.5922 -3 -11.0866 4.5922 3 -8.485 8.485 3 -11.63 3 -3
+5 24 -11.0864 -4.5922 3 -11.0864 -4.5922 -3 -8.485 -8.485 -3 -11.63 -3 3
+5 24 11.0866 -4.5922 -3 11.0866 -4.5922 3 8.485 -8.485 3 11.63 -3 -3
+
+
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 0 4 0 -3 0 p/4-4con4.dat
+1 16 0 0 -3 16 0 0 0 0 16 0 1 0 p/4-4edge.dat
+1 16 0 0 0 20 0 0 0 0 20 0 1 0 p/4-4edge.dat
+
+1 16 0 0 -3 3.695518 0 -1.530734 1.530734 0 3.695518 0 -1 0 p/3-8ring3.dat
+1 16 0 0 -3 -3.695518 0 1.530734 -1.530734 0 -3.695518 0 -1 0 p/3-8ring3.dat
+1 16 0 0 -3 14.782073 0 6.122935 -6.122935 0 14.782073 0 -1 0 p/1-8chrd.dat
+1 16 0 0 -3 -14.782073 0 -6.122935 6.122935 0 -14.782073 0 -1 0 p/1-8chrd.dat
+4 16 -14.7824 0 -3 -11.63 3 -3 -11.0866 4.5922 -3 -14.7824 6.1232 -3
+4 16 -14.7824 -6.1232 -3 -11.0866 -4.5922 -3 -11.63 -3 -3 -14.7824 0 -3
+4 16 14.7819 6.1229 -3 11.0864 4.5922 -3 11.63 3 -3 14.7824 0 -3
+4 16 11.63 -3 -3 11.0864 -4.5922 -3 14.7819 -6.1229 -3 14.7824 0 -3
+
+4 16 -2.07 -26 0 2.07 -26 0 0 -20 0 -6.066 -25.367 0
+4 16 -6.066 -25.367 0 0 -20 0 -7.654 -18.478 0 -10.003 -24.088 0
+4 16 -13.608 -22.251 0 -10.003 -24.088 0 -7.654 -18.478 0 -14.142 -14.142 0
+4 16 -16.957 -19.818 0 -13.608 -22.251 0 -14.142 -14.142 0 -19.818 -16.957 0
+4 16 -22.251 -13.608 0 -19.818 -16.957 0 -14.142 -14.142 0 -18.478 -7.654 0
+4 16 -24.088 -10.003 0 -22.251 -13.608 0 -18.478 -7.654 0 -25.367 -6.066 0
+4 16 -25.367 -6.066 0 -18.478 -7.654 0 -20 0 0 -26 -2.07 0
+4 16 -26 2.07 0 -26 -2.07 0 -20 0 0 -25.367 6.066 0
+4 16 -25.367 6.066 0 -20 0 0 -18.478 7.654 0 -24.088 10.003 0
+4 16 -22.251 13.608 0 -24.088 10.003 0 -18.478 7.654 0 -14.142 14.142 0
+4 16 -19.818 16.957 0 -22.251 13.608 0 -14.142 14.142 0 -16.957 19.818 0
+4 16 -13.608 22.251 0 -16.957 19.818 0 -14.142 14.142 0 -7.654 18.478 0
+4 16 -10.003 24.088 0 -13.608 22.251 0 -7.654 18.478 0 -6.066 25.367 0
+4 16 -6.066 25.367 0 -7.654 18.478 0 0 20 0 -2.07 26 0
+4 16 2.07 26 0 -2.07 26 0 0 20 0 6.066 25.367 0
+4 16 6.066 25.367 0 0 20 0 7.654 18.478 0 10.003 24.088 0
+4 16 13.608 22.251 0 10.003 24.088 0 7.654 18.478 0 14.142 14.142 0
+4 16 16.957 19.818 0 13.608 22.251 0 14.142 14.142 0 19.818 16.957 0
+4 16 22.251 13.608 0 19.818 16.957 0 14.142 14.142 0 18.478 7.654 0
+4 16 24.088 10.003 0 22.251 13.608 0 18.478 7.654 0 25.367 6.066 0
+4 16 25.367 6.066 0 18.478 7.654 0 20 0 0 26 2.07 0
+4 16 26 -2.07 0 26 2.07 0 20 0 0 25.367 -6.066 0
+4 16 25.367 -6.066 0 20 0 0 18.478 -7.654 0 24.088 -10.003 0
+4 16 22.251 -13.608 0 24.088 -10.003 0 18.478 -7.654 0 14.142 -14.142 0
+4 16 19.818 -16.957 0 22.251 -13.608 0 14.142 -14.142 0 16.957 -19.818 0
+4 16 13.608 -22.251 0 16.957 -19.818 0 14.142 -14.142 0 7.654 -18.478 0
+4 16 10.003 -24.088 0 13.608 -22.251 0 7.654 -18.478 0 6.066 -25.367 0
+4 16 6.066 -25.367 0 7.654 -18.478 0 0 -20 0 2.07 -26 0
+
+1 16 0 -19.87 -7 1 0 0 0 1 0 0 0 1 p/toothb20.dat
+1 16 6.14 -18.897 -7 .951 -.309 0 .309 .951 0 0 0 1 p/toothb20.dat
+1 16 11.679 -16.075 -7 .809 -.588 0 .588 .809 0 0 0 1 p/toothb20.dat
+1 16 16.075 -11.679 -7 .588 -.809 0 .809 .588 0 0 0 1 p/toothb20.dat
+1 16 18.897 -6.14 -7 .309 -.951 0 .951 .309 0 0 0 1 p/toothb20.dat
+1 16 19.869 0 -7 0 -1 0 1 0 0 0 0 1 p/toothb20.dat
+1 16 18.897 6.14 -7 -.309 -.951 0 .951 -.309 0 0 0 1 p/toothb20.dat
+1 16 16.075 11.679 -7 -.588 -.809 0 .809 -.588 0 0 0 1 p/toothb20.dat
+1 16 11.679 16.075 -7 -.809 -.588 0 .588 -.809 0 0 0 1 p/toothb20.dat
+1 16 6.14 18.897 -7 -.951 -.309 0 .309 -.951 0 0 0 1 p/toothb20.dat
+1 16 0 19.869 -7 -1 0 0 0 -1 0 0 0 1 p/toothb20.dat
+1 16 -6.14 18.897 -7 -.951 .309 0 -.309 -.951 0 0 0 1 p/toothb20.dat
+1 16 -11.679 16.075 -7 -.809 .588 0 -.588 -.809 0 0 0 1 p/toothb20.dat
+1 16 -16.075 11.679 -7 -.588 .809 0 -.809 -.588 0 0 0 1 p/toothb20.dat
+1 16 -18.897 6.14 -7 -.309 .951 0 -.951 -.309 0 0 0 1 p/toothb20.dat
+1 16 -19.869 0 -7 0 1 0 -1 0 0 0 0 1 p/toothb20.dat
+1 16 -18.897 -6.14 -7 .309 .951 0 -.951 .309 0 0 0 1 p/toothb20.dat
+1 16 -16.075 -11.679 -7 .588 .809 0 -.809 .588 0 0 0 1 p/toothb20.dat
+1 16 -11.679 -16.075 -7 .809 .588 0 -.588 .809 0 0 0 1 p/toothb20.dat
+1 16 -6.14 -18.897 -7 .951 .309 0 -.309 .951 0 0 0 1 p/toothb20.dat
+
+1 16 -11 0 -7 0 0 -1 -1 0 0 0 1 0 p/8/2-4ndis.dat
+1 16 11 0 -7 0 0 1 1 0 0 0 1 0 p/8/2-4ndis.dat
+1 16 0 0 -7 5.543277 0 -2.296101 -2.296101 0 -5.543277 0 1 0 p/3-8ring1.dat
+1 16 0 0 -7 -5.543277 0 2.296101 2.296101 0 5.543277 0 1 0 p/3-8ring1.dat
+1 16 0 0 -7 0 0 6 6 0 0 0 1 0 p/4-4ring2.dat
+4 16 -5.8011 1 -7 -12 1 -7 -11.0868 4.5924 -7 -5.5433 2.2961 -7
+4 16 -12 -1 -7 -5.8011 -1 -7 -5.5433 -2.2961 -7 -11.0868 -4.5924 -7
+4 16 11.0866 -4.5922 -7 5.543 -2.296 -7 5.8011 -1 -7 12 -1 -7
+4 16 5.543 2.296 -7 11.0864 4.5922 -7 12 1 -7 5.8011 1 -7
+
+4 16 -4.636 -19.386 -7 0 -18 -7 1.582 -19.87 -7 -1.582 -19.87 -7
+4 16 -7.645 -18.409 -7 -6.889 -16.63 -7 0 -18 -7 -4.636 -19.386 -7
+4 16 -12.728 -12.728 -7 -6.889 -16.63 -7 -7.645 -18.409 -7 -10.399 -17.005 -7
+4 16 -15.145 -12.959 -7 -12.728 -12.728 -7 -10.399 -17.005 -7 -12.959 -15.145 -7
+4 16 -16.63 -6.889 -7 -12.728 -12.728 -7 -15.145 -12.959 -7 -17.005 -10.399 -7
+4 16 -19.386 -4.636 -7 -16.63 -6.889 -7 -17.005 -10.399 -7 -18.409 -7.645 -7
+4 16 -19.87 -1.582 -7 -18 0 -7 -16.63 -6.889 -7 -19.386 -4.636 -7
+4 16 -19.386 4.636 -7 -18 0 -7 -19.87 -1.582 -7 -19.87 1.582 -7
+4 16 -18.409 7.645 -7 -16.63 6.889 -7 -18 0 -7 -19.386 4.636 -7
+4 16 -12.728 12.728 -7 -16.63 6.889 -7 -18.409 7.645 -7 -17.005 10.399 -7
+4 16 -12.959 15.145 -7 -12.728 12.728 -7 -17.005 10.399 -7 -15.145 12.959 -7
+4 16 -6.889 16.63 -7 -12.728 12.728 -7 -12.959 15.145 -7 -10.399 17.005 -7
+4 16 -4.636 19.386 -7 -6.889 16.63 -7 -10.399 17.005 -7 -7.645 18.409 -7
+4 16 -1.582 19.87 -7 0 18 -7 -6.889 16.63 -7 -4.636 19.386 -7
+4 16 4.636 19.386 -7 0 18 -7 -1.582 19.87 -7 1.582 19.87 -7
+4 16 7.645 18.409 -7 6.889 16.63 -7 0 18 -7 4.636 19.386 -7
+4 16 12.728 12.728 -7 6.889 16.63 -7 7.645 18.409 -7 10.399 17.005 -7
+4 16 15.145 12.959 -7 12.728 12.728 -7 10.399 17.005 -7 12.959 15.145 -7
+4 16 16.63 6.889 -7 12.728 12.728 -7 15.145 12.959 -7 17.005 10.399 -7
+4 16 19.386 4.636 -7 16.63 6.889 -7 17.005 10.399 -7 18.409 7.645 -7
+4 16 19.87 1.582 -7 18 0 -7 16.63 6.889 -7 19.386 4.636 -7
+4 16 19.386 -4.636 -7 18 0 -7 19.87 1.582 -7 19.87 -1.582 -7
+4 16 18.409 -7.645 -7 16.63 -6.889 -7 18 0 -7 19.386 -4.636 -7
+4 16 12.728 -12.728 -7 16.63 -6.889 -7 18.409 -7.645 -7 17.005 -10.399 -7
+4 16 12.959 -15.145 -7 12.728 -12.728 -7 17.005 -10.399 -7 15.145 -12.959 -7
+4 16 6.889 -16.63 -7 12.728 -12.728 -7 12.959 -15.145 -7 10.399 -17.005 -7
+4 16 4.636 -19.386 -7 6.889 -16.63 -7 10.399 -17.005 -7 7.645 -18.409 -7
+4 16 1.582 -19.87 -7 0 -18 -7 6.889 -16.63 -7 4.636 -19.386 -7
+
+0 FILE p/3-8ring1.dat
+0 Ring  1 x 0.375
+0 Name: 3-8ring1.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 1 0 0 2 0 0 1.8478 0 .7654 .9239 0 .3827
+4 16 .9239 0 .3827 1.8478 0 .7654 1.4142 0 1.4142 .7071 0 .7071
+4 16 .7071 0 .7071 1.4142 0 1.4142 .7654 0 1.8478 .3827 0 .9239
+4 16 .3827 0 .9239 .7654 0 1.8478 0 0 2 0 0 1
+4 16 0 0 1 0 0 2 -.7654 0 1.8478 -.3827 0 .9239
+4 16 -.3827 0 .9239 -.7654 0 1.8478 -1.4142 0 1.4142 -.7071 0 .7071
+
+0
+
+
+
+0 FILE p/toothb20.dat
+0 Single Tooth for Technic Bevel Gear 20 Tooth
+0 Name: toothb20.dat
+0 Author: Santeri Piippo [arezey]
+0 !LDRAW_ORG Primitive UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+0 !HISTORY 2017-07-16 [MagFors] Closed gaps
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+3 16 2.07 -6.13 6.5 -2.07 -6.13 6.5 0 -6.13 2
+3 16 1.582 0 0 0 -3.13 0 -1.582 0 0
+3 16 1.582 0 0 1.582 0 6.5 2.07 -6.13 6.5
+3 16 -2.07 -6.13 6.5 -1.582 0 6.5 -1.582 0 0
+3 16 0 -6.13 2 0 -3.13 0 1.582 0 0
+3 16 -1.582 0 0 0 -3.13 0 0 -6.13 2
+3 16 -1.582 0 0 0 -6.13 2 -2.07 -6.13 6.5
+3 16 1.582 0 0 2.07 -6.13 6.5 0 -6.13 2
+4 16 1.582 0 6.5 1.582 0 0 4.6356 0.4836 0 4.6356 0.4836 6.5
+4 16 2.07 -6.13 6.5 1.582 0 6.5 4.6356 .4836 6.5 6.0658 -5.4971 6.5
+4 16 6.066 -5.497 7 2.07 -6.13 7 2.07 -6.13 6.5 6.066 -5.497 6.5
+4 16 2.07 -6.13 7 -2.07 -6.13 7 -2.07 -6.13 6.5 2.07 -6.13 6.5
+2 24 -2.07 -6.13 6.5 0 -6.13 2
+2 24 0 -6.13 2 2.07 -6.13 6.5
+2 24 1.582 0 0 0 -3.13 0
+2 24 0 -3.13 0 -1.582 0 0
+2 24 1.582 0 0 1.582 0 6.5
+2 24 1.582 0 6.5 2.07 -6.13 6.5
+2 24 2.07 -6.13 6.5 1.582 0 0
+2 24 -2.07 -6.13 6.5 -1.582 0 6.5
+2 24 -1.582 0 6.5 -1.582 0 0
+2 24 -1.582 0 0 -2.07 -6.13 6.5
+2 24 0 -6.13 2 0 -3.13 0
+2 24 1.582 0 6.5 4.6356 0.4836 6.5
+2 24 1.582 0 0 4.6356 0.4836 0
+2 24 2.07 -6.13 6.5 6.0658 -5.4971 6.5
+2 24 2.07 -6.13 7 -2.07 -6.13 7
+2 24 2.07 -6.13 7 6.0658 -5.4971 7
+5 24 6.066 -5.497 6.5 6.066 -5.497 7 2.07 -6.13 6.5 10.003 -4.218 6.5
+5 24 2.07 -6.13 6.5 2.07 -6.13 7 -2.07 -6.13 6.5 6.066 -5.497 6.5
+5 24 1.582 0 0 0 -6.13 2 0 -3.13 0 2.07 -6.13 6.5
+5 24 0 -6.13 2 -1.582 0 0 0 -3.13 0 -2.07 -6.13 6.5
+
+0 FILE p/3-8ring3.dat
+0 Ring  3 x 0.375
+0 Name: 3-8ring3.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-10 [nielsk] changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 4 0 0 3.6956 0 1.5308 2.7717 0 1.1481 3 0 0
+4 16 3.6956 0 1.5308 2.8284 0 2.8284 2.1213 0 2.1213 2.7717 0 1.1481
+4 16 2.8284 0 2.8284 1.5308 0 3.6956 1.1481 0 2.7717 2.1213 0 2.1213
+4 16 1.5308 0 3.6956 0 0 4 0 0 3 1.1481 0 2.7717
+4 16 0 0 4 -1.5308 0 3.6956 -1.1481 0 2.7717 0 0 3
+4 16 -1.5308 0 3.6956 -2.8284 0 2.8284 -2.1213 0 2.1213 -1.1481 0 2.7717
+0
+
+0 FILE p/8/2-4ndis.dat
+0 Lo-Res Disc Negative 0.5
+0 Name: 8\2-4ndis.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG 8_Primitive UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+3 16 1 0 1 0.7071 0 0.7071 1 0 0
+3 16 1 0 1 0 0 1 0.7071 0 0.7071
+3 16 -1 0 1 -0.7071 0 0.7071 0 0 1
+3 16 -1 0 1 -1 0 0 -0.7071 0 0.7071
+0 // Build by Primitive Generator 2
+
+0 FILE p/8/2-4cylo.dat
+0 Cylinder Open 0.5
+0 Name: 8\2-4cylo.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG 8_Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/8/2-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/8/2-4cyli.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/8/2-4edge.dat
+
+0 FILE p/8/2-4cyli.dat
+0 Cylinder 0.5
+0 Name: 8\2-4cyli.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG 8_Primitive UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+4 16 0.7071 0 0.7071 1 0 0 1 1 0 0.7071 1 0.7071
+4 16 0 0 1 0.7071 0 0.7071 0.7071 1 0.7071 0 1 1
+4 16 -0.7071 0 0.7071 0 0 1 0 1 1 -0.7071 1 0.7071
+4 16 -1 0 0 -0.7071 0 0.7071 -0.7071 1 0.7071 -1 1 0
+0 // conditional lines
+5 24 1 1 0 1 0 0 1 1 -1 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 0.7071 0 0.7071 1 1 0 0 1 1
+5 24 0 1 1 0 0 1 0.7071 1 0.7071 -0.7071 1 0.7071
+5 24 -0.7071 1 0.7071 -0.7071 0 0.7071 0 1 1 -1 1 0
+5 24 -1 1 0 -1 0 0 -0.7071 1 0.7071 -1 1 -1
+0 // Build by Primitive Generator 2
+
+0 FILE p/8/2-4edge.dat
+0 Circle 0.5
+0 Name: 8\2-4edge.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG 8_Primitive UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+2 24 1 0 0 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0 0 1
+2 24 0 0 1 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -1 0 0
+0 // Build by Primitive Generator 2
+
+0 FILE p/3-8cylo.dat
+0 Cylinder Open 0.375
+0 Name: 3-8cylo.dat
+0 Author: J.C. Tchang [tchang]
+0 !LDRAW_ORG Primitive UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-8edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/3-8edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-8cyli.dat
+
+0 FILE parts/3705.dat
+0 Technic Axle  4
+0 Name: 3705.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-11 [guyvivan] BFC'ed
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 40 0 0 0 -80 0 1 0 0 0 0 1 p/axle.dat
+0
+
+
+0 FILE parts/2444.dat
+0 Plate  2 x  2 with Hole and Split Underside Ribs
+0 Name: 2444.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley]  BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-12 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-09-12 [cwdee]   Reworked
+0 !HISTORY 2013-09-12 [MMR1988] Removed t-junctions, used more prims
+0 !HISTORY 2013-09-13 [arezey]  Simplified underside
+0 !HISTORY 2013-09-14 [MMR1988] Reduced diameter of outer cylinder
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+0 !HISTORY 2016-09-22 [MagFors] Made space for pin
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+1 16 0 8 0 0 0 -20 0 -8 0 20 0 0 p/box4-1.dat
+0 BFC INVERTNEXT
+1 16 -4 5.5 0 0 -12 0 2.5 0 0 0 0 16 p/box3u2p.dat
+0 BFC INVERTNEXT
+1 16 7.5 5.5 12.5 0 0 8.5 2.5 0 0 0 3.5 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 7.5 5.5 -12.5 0 0 8.5 2.5 0 0 0 -3.5 0 p/box2-5.dat
+
+4 16 20 10 9 20 8 9 20 2 8 20 10 8
+4 16 20 10 -9 20 10 -8 20 2 -8 20 8 -9
+4 16 20 8 20 20 0 20 20 2 8 20 8 9
+4 16 20 8 -20 20 8 -9 20 2 -8 20 0 -20
+3 16 20 0 -20 20 2 -8 20 2 0
+4 16 20 0 -20 20 2 0 20 2 8 20 0 20
+1 16 20 10 0 0 -1 0 0 0 -8 8 0 0 p/2-4ndis.dat
+2 24 20 8 -20 20 8 -9
+2 24 20 8 -9 20 10 -9
+2 24 20 10 9 20 8 9
+2 24 20 8 9 20 8 20
+
+4 16 20 8 9 16 8 9 16 8 16 20 8 20
+3 16 20 8 20 16 8 16 -1 8 16
+4 16 20 8 20 -1 8 16 -4 8 16 -20 8 20
+3 16 -4 8 16 -16 8 16 -20 8 20
+4 16 -20 8 20 -16 8 16 -16 8 -16 -20 8 -20
+3 16 -1 8 -16 16 8 -16 20 8 -20
+4 16 -20 8 -20 -4 8 -16 -1 8 -16 20 8 -20
+3 16 -20 8 -20 -16 8 -16 -4 8 -16
+4 16 20 8 -20 16 8 -16 16 8 -9 20 8 -9
+2 24 16 8 -9 20 8 -9
+2 24 20 8 9 16 8 9
+
+1 16 20 10 0 0 -1 0 0 0 -1 -1 0 0 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 2 10 0 0 16 0 0 0 -6 -6 0 0 p/4-4cyli.dat
+1 16 2 10 0 0 -1 0 -6 0 0 0 0 -6 p/4-4edge.dat
+1 16 20 10 0 0 -1 0 0 0 1 1 0 0 p/2-4ring8.dat
+
+1 16 20 10 0 0 -18 0 0 0 9 9 0 0 p/2-4cylo.dat
+4 16 20 10 9 2 10 9 16 8 9 20 8 9
+4 16 16 8 9 2 10 9 2 3 9 16 3 9
+4 16 20 10 -9 20 8 -9 16 8 -9 2 10 -9
+4 16 16 8 -9 16 3 -9 2 3 -9 2 10 -9
+
+1 16 -2.5 3 11.5 0 0 1.5 0 5 0 4.5 0 0 p/box3u8p.dat
+1 16 -2.5 3 -11.5 0 0 1.5 0 5 0 4.5 0 0 p/box3u8p.dat
+1 16 -2.5 8 7 1.5 0 0 0 -5 0 0 0 -1.5 p/2-4cylc.dat
+1 16 -2.5 8 -7 1.5 0 0 0 -5 0 0 0 1.5 p/2-4cylc.dat
+
+1 16 2 10 0 0 1 0 0 0 3 -3 0 0 p/2-4ring2.dat
+1 16 2 10 0 0 1 0 0 0 -6 6 0 0 p/2-4ndis.dat
+
+2 24 2 3 9 2 10 9
+2 24 2 3 -9 2 10 -9
+4 16 2 10 6 2 4 6 2 3 9 2 10 9
+4 16 2 10 -6 2 10 -9 2 3 -9 2 4 -6
+4 16 2 4 6 2 4 -6 2 3 -9 2 3 9
+
+1 16 9 3 0 0 0 -7 0 1 0 9 0 0 p/recte3.dat
+
+4 16 -16 3 -16 2 3 -9 16 3 -9 16 3 -16
+4 16 -16 3 -16 -16 3 16 2 3 9 2 3 -9
+4 16 -16 3 16 16 3 16 16 3 9 2 3 9
+
+1 16 -10 3 0 1 0 0 0 -1.25 0 0 0 1 p/stud3.dat
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug2-2x2.dat
+
+0 FILE parts/32063.dat
+0 Technic Beam  6 x  0.5
+0 Name: 32063.dat
+0 Author: Lutz Uhlmann
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-02-12 [PTadmin] Official Update 1998-02
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-01 [guyvivan] Made BFc compliant, reduce 20LDU to 18LDU, improve with new primitives
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // outsides
+
+
+
+1 16 0 5 -50 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -5 -50 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -5 -50 9 0 0 0 10 0 0 0 -9 p/2-4cyli.dat
+1 16 0 5 50 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -5 50 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -5 50 9 0 0 0 10 0 0 0 9 p/2-4cyli.dat
+1 16 0 -5 50 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 50 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 50 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 -5 30 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 30 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 30 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 -5 10 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 10 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 10 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 -5 -10 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 -10 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 -10 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 -5 -30 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 -30 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 -30 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 -5 -50 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 -50 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 -50 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 -9 0 0 0 1 0 0 0 -5 -50 0 0 p/rect2p.dat
+1 16 9 0 0 0 -1 0 0 0 -5 50 0 0 p/rect2p.dat
+1 16 0 -5 40 1 0 0 0 3 0 0 0 1 p/npeghol2.dat
+1 16 0 5 40 1 0 0 0 -3 0 0 0 1 p/npeghol2.dat
+1 16 0 -5 20 1 0 0 0 3 0 0 0 1 p/npeghol2.dat
+1 16 0 5 20 1 0 0 0 -3 0 0 0 1 p/npeghol2.dat
+1 16 0 -5 0 1 0 0 0 3 0 0 0 1 p/npeghol2.dat
+1 16 0 5 0 1 0 0 0 -3 0 0 0 1 p/npeghol2.dat
+1 16 0 -5 -20 1 0 0 0 3 0 0 0 1 p/npeghol2.dat
+1 16 0 5 -20 1 0 0 0 -3 0 0 0 1 p/npeghol2.dat
+1 16 0 -5 -40 1 0 0 0 3 0 0 0 1 p/npeghol2.dat
+1 16 0 5 -40 1 0 0 0 -3 0 0 0 1 p/npeghol2.dat
+1 16 0 -5 50 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 50 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -5 30 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 30 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -5 10 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 10 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -5 -10 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 -10 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -5 -30 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 -30 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -5 -50 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 -50 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+0
+
+0 FILE parts/4519.dat
+0 Technic Axle  3
+0 Name: 4519.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-11 [guyvivan] BFC'ed
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 30 0 0 0 -60 0 1 0 0 0 0 1 p/axle.dat
+0
+
+
+0 FILE parts/41677.dat
+0 Technic Beam  2 x  0.5 Liftarm
+0 Name: 41677.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from 169
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 -5 20 9 0 0 0 10 0 0 0 9 p/2-4cyli.dat
+1 16 0 -5 0 -9 0 0 0 10 0 0 0 -9 p/2-4cyli.dat
+1 16 0 -5 20 -1 0 0 0 10 0 0 0 -1 p/axlehol4.dat
+1 16 0 -5 0 1 0 0 0 10 0 0 0 1 p/axlehol4.dat
+1 16 0 -5 20 3 0 0 0 1 0 0 0 3 p/2-4ring2.dat
+1 16 0 5 20 3 0 0 0 -1 0 0 0 3 p/2-4ring2.dat
+1 16 0 -5 0 -3 0 0 0 1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 5 0 -3 0 0 0 -1 0 0 0 -3 p/2-4ring2.dat
+4 16 6 -5 20 6 -5 0 9 -5 0 9 -5 20
+4 16 6 5 20 9 5 20 9 5 0 6 5 0
+4 16 -9 -5 20 -9 -5 0 -6 -5 0 -6 -5 20
+4 16 -9 5 20 -6 5 20 -6 5 0 -9 5 0
+4 16 -9 5 20 -9 5 0 -9 -5 0 -9 -5 20
+4 16 9 5 20 9 -5 20 9 -5 0 9 5 0
+4 16 -6 -5 6 -2 -5 6 -2 -5 14 -6 -5 14
+4 16 -2 -5 11 -2 5 11 -2 5 14.398 -2 -5 14.398
+4 16 2 -5 11 2 -5 14.398 2 5 14.398 2 5 11
+4 16 2 -5 9 2 5 9 2 5 5.398 2 -5 5.602
+4 16 -2 -5 9 -2 -5 5.602 -2 5 5.602 -2 5 9
+4 16 2 -5 6 6 -5 6 6 -5 14 2 -5 14
+4 16 -6 5 6 -6 5 14 -2 5 14 -2 5 6
+4 16 2 5 6 2 5 14 6 5 14 6 5 6
+4 16 2 5 11 2 5 9 -2 5 9 -2 5 11
+4 16 2 -5 11 -2 -5 11 -2 -5 9 2 -5 9
+4 16 2 -5 11 2 5 11 -2 5 11 -2 -5 11
+4 16 2 -5 9 -2 -5 9 -2 5 9 2 5 9
+2 24 -2 5 6 -2 5 9
+2 24 2 5 6 2 5 9
+2 24 -2 -5 6 -2 -5 9
+2 24 2 -5 6 2 -5 9
+2 24 -2 -5 14 -2 -5 11
+2 24 2 -5 14 2 -5 11
+2 24 -2 5 14 -2 5 11
+2 24 2 5 14 2 5 11
+2 24 2 5 11 -2 5 11
+2 24 2 5 9 -2 5 9
+2 24 2 -5 11 -2 -5 11
+2 24 2 -5 9 -2 -5 9
+2 24 -2 -5 9 -2 5 9
+2 24 -2 -5 11 -2 5 11
+2 24 2 -5 9 2 5 9
+2 24 2 -5 11 2 5 11
+2 24 9 5 20 9 5 0
+2 24 9 -5 20 9 -5 0
+2 24 -9 5 20 -9 5 0
+2 24 -9 -5 20 -9 -5 0
+1 16 0 5 0 -9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -5 0 -9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 5 20 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -5 20 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+3 16 5.543 -5 2.296 6 -5 0 6 -5 6
+3 16 4.243 -5 4.243 5.543 -5 2.296 6 -5 6
+3 16 2.296 -5 5.543 4.243 -5 4.243 6 -5 6
+4 16 2 -5 6 2 -5 5.602 2.296 -5 5.543 6 -5 6
+4 16 -2.296 -5 5.543 -2 -5 5.602 -2 -5 6 -6 -5 6
+3 16 -4.243 -5 4.243 -2.296 -5 5.543 -6 -5 6
+3 16 -5.543 -5 2.296 -4.243 -5 4.243 -6 -5 6
+3 16 -6 -5 0 -5.543 -5 2.296 -6 -5 6
+2 24 2 -5 6 2 -5 5.602
+2 24 -2 -5 6 -2 -5 5.602
+3 16 -5.543 -5 17.704 -6 -5 20 -6 -5 14
+3 16 -4.243 -5 15.757 -5.543 -5 17.704 -6 -5 14
+3 16 -2.296 -5 14.457 -4.243 -5 15.757 -6 -5 14
+4 16 -2 -5 14 -2 -5 14.398 -2.296 -5 14.457 -6 -5 14
+4 16 2.296 -5 14.457 2 -5 14.398 2 -5 14 6 -5 14
+3 16 4.243 -5 15.757 2.296 -5 14.457 6 -5 14
+3 16 5.543 -5 17.704 4.243 -5 15.757 6 -5 14
+3 16 6 -5 20 5.543 -5 17.704 6 -5 14
+2 24 -2 -5 14 -2 -5 14.398
+2 24 2 -5 14 2 -5 14.398
+3 16 6 5 6 6 5 0 5.543 5 2.296
+3 16 6 5 6 5.543 5 2.296 4.243 5 4.243
+3 16 6 5 6 4.243 5 4.243 2.296 5 5.543
+4 16 6 5 6 2.296 5 5.543 2 5 5.602 2 5 6
+4 16 -6 5 6 -2 5 6 -2 5 5.602 -2.296 5 5.543
+3 16 -6 5 6 -2.296 5 5.543 -4.243 5 4.243
+3 16 -6 5 6 -4.243 5 4.243 -5.543 5 2.296
+3 16 -6 5 6 -5.543 5 2.296 -6 5 0
+2 24 2 5 6 2 5 5.602
+2 24 -2 5 6 -2 5 5.602
+3 16 -6 5 14 -6 5 20 -5.543 5 17.704
+3 16 -6 5 14 -5.543 5 17.704 -4.243 5 15.757
+3 16 -6 5 14 -4.243 5 15.757 -2.296 5 14.457
+4 16 -6 5 14 -2.296 5 14.457 -2 5 14.398 -2 5 14
+4 16 6 5 14 2 5 14 2 5 14.398 2.296 5 14.457
+3 16 6 5 14 2.296 5 14.457 4.243 5 15.757
+3 16 6 5 14 4.243 5 15.757 5.543 5 17.704
+3 16 6 5 14 5.543 5 17.704 6 5 20
+2 24 -2 5 14 -2 5 14.398
+2 24 2 5 14 2 5 14.398
+
+0 FILE parts/47456.dat
+0 Slope Brick Curved  2 x  3 x  0.667 with Fin and 2 Studs
+0 Name: 47456.dat
+0 Author: Paul Izquierdo Rojas [pir]
+0 !LDRAW_ORG Part UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2007-11-01 [mikeheide] Added missing egdelines, corrected four 1-4edge.dat
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2018-05-13 [cwdee] Correct description
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+4 16 -10 0 -10 -10 0 10 10 0 10 10 0 -10
+4 16 -10 0 10 -20 8 10 20 8 10 10 0 10
+4 16 -20 8 10 -20 16 10 20 16 10 20 8 10
+4 16 -11 7 -50 11 7 -50 17 12 -50 -17 12 -50
+4 16 -20 12 -50 20 12 -50 20 16 -50 -20 16 -50
+4 16 -7 3.4 -56 7 3.4 -56 11 7 -50 -11 7 -50
+4 16 -12.833 3.4 -56 -10.833 1 -60 10.833 1 -60 12.833 3.4 -56
+4 16 -10 0 -60 10 0 -60 10.8333 1 -60 -10.8333 1 -60
+4 16 -20 12 -50 -15.833 7 -52 -12 7 -52 -17 12 -50
+5 24 -15.833 7 -52 -12 7 -52 -17 12 -50 -12 3.4 -56
+5 24 15.833 7 -52 12 7 -52 17 12 -50 12 3.4 -56
+4 16 20 12 -50 17 12 -50 12 7 -52 15.833 7 -52
+4 16 -12.833 3.4 -56 -7 3.4 -56 -12 7 -52 -15.833 7 -52
+5 24 -12.833 3.4 -56 -7 3.4 -56 -12 7 -52 -10.833 1 -60
+5 24 12.833 3.4 -56 7 3.4 -56 12 7 -52 10.833 1 -60
+4 16 12.833 3.4 -56 15.833 7 -52 12 7 -52 7 3.4 -56
+3 16 -17 12 -50 -12 7 -52 -11 7 -50
+3 16 17 12 -50 11 7 -50 12 7 -52
+3 16 -7 3.4 -56 -11 7 -50 -12 7 -52
+3 16 7 3.4 -56 12 7 -52 11 7 -50
+4 16 -10 0 -60 -12.5 4.5 -50 12.5 4.5 -50 10 0 -60
+5 24 -12.5 4.5 -50 12.5 4.5 -50 0 0 -60 0 7 -40
+4 16 -15 7 -40 15 7 -40 12.5 4.5 -50 -12.5 4.5 -50
+3 16 -15 7 -40 -13 7.1 -39 -10 7 -40
+3 16 15 7 -40 10 7 -40 13 7.1 -39
+5 24 15 7 -40 10 7 -40 13 7.1 -39 12.5 4.5 -50
+5 24 -15 7 -40 -10 7 -40 -13 7.1 -39 -12.5 4.5 -50
+3 16 -15 7 -40 -15 7.4 -36 -13 7.1 -39
+3 16 15 7 -40 13 7.1 -39 15 7.4 -36
+3 16 -15 7 -40 -17.5 8 -30 -15 7.4 -36
+3 16 15 7 -40 15 7.4 -36 17.5 8 -30
+4 16 -10 0 -10 10 0 -10 10 1.5 -20 -10 1.5 -20
+4 16 -10 1.5 -20 10 1.5 -20 10 4 -30 -10 4 -30
+4 16 -10 7 -40 -10 4 -30 10 4 -30 10 7 -40
+4 16 -16 16 -46 -20 16 -50 20 16 -50 16 16 -46
+4 16 -16 16 6 16 16 6 20 16 10 -20 16 10
+4 16 -16 16 -46 -16 16 6 -20 16 10 -20 16 -50
+4 16 16 16 -46 20 16 -50 20 16 10 16 16 6
+4 16 -10 4 6 -10 4 -10 10 4 -10 10 4 6
+4 16 -10 4 6 10 4 6 16 9 6 -16 9 6
+4 16 -16 9 6 16 9 6 16 16 6 -16 16 6
+4 16 -10 4 -10 -10 6 -26 10 6 -26 10 4 -10
+4 16 -10 6 -26 -10 10 -40 10 10 -40 10 6 -26
+4 16 -12 8 -46 12 8 -46 10 10 -40 -10 10 -40
+4 16 -12 8 -46 -16 12 -46 16 12 -46 12 8 -46
+4 16 -16 12 -46 -16 16 -46 16 16 -46 16 12 -46
+4 16 -20 8 0 -20 16 0 -20 16 10 -20 8 10
+4 16 -20 8 0 -20 8.16 -10 -20 16 -10 -20 16 0
+4 16 -20 8.16 -10 -20 8.64 -20 -20 16 -20 -20 16 -10
+4 16 -20 8.64 -20 -20 9.44 -30 -20 16 -30 -20 16 -20
+4 16 -20 9.44 -30 -20 10.56 -40 -20 16 -40 -20 16 -30
+4 16 -20 10.56 -40 -20 12 -50 -20 16 -50 -20 16 -40
+4 16 20 8 0 20 8 10 20 16 10 20 16 0
+4 16 20 8 0 20 16 0 20 16 -10 20 8.16 -10
+4 16 20 8.16 -10 20 16 -10 20 16 -20 20 8.64 -20
+4 16 20 8.64 -20 20 16 -20 20 16 -30 20 9.44 -30
+4 16 20 9.44 -30 20 16 -30 20 16 -40 20 10.56 -40
+4 16 20 10.56 -40 20 16 -40 20 16 -50 20 12 -50
+3 16 -20 8.16 -10 -20 8 0 -19.239 7.391 -3.827
+3 16 -20 8.16 -10 -19.239 7.391 -3.827 -17.071 5.657 -7.071
+3 16 -20 8.16 -10 -17.071 5.657 -7.071 -13.827 3.062 -9.239
+3 16 -20 8.16 -10 -13.827 3.062 -9.239 -10 0 -10
+3 16 20 8.16 -10 19.239 7.391 -3.827 20 8 0
+3 16 20 8.16 -10 17.071 5.657 -7.071 19.239 7.391 -3.827
+3 16 20 8.16 -10 13.827 3.062 -9.239 17.071 5.657 -7.071
+3 16 20 8.16 -10 10 0 -10 13.827 3.062 -9.239
+3 16 -10 0 -10 -10 1.5 -20 -20 8.16 -10
+3 16 10 0 -10 20 8.16 -10 10 1.5 -20
+3 16 -10 1.5 -20 -20 8.64 -20 -20 8.16 -10
+3 16 10 1.5 -20 20 8.16 -10 20 8.64 -20
+3 16 -10 1.5 -20 -10 4 -30 -20 8.64 -20
+3 16 10 1.5 -20 20 8.64 -20 10 4 -30
+3 16 -10 4 -30 -20 9.44 -30 -20 8.64 -20
+3 16 10 4 -30 20 8.64 -20 20 9.44 -30
+3 16 -10 4 -30 -15 7.4 -36 -17.5 8 -30
+3 16 10 4 -30 17.5 8 -30 15 7.4 -36
+3 16 -10 4 -30 -13 7.1 -39 -15 7.4 -36
+3 16 10 4 -30 15 7.4 -36 13 7.1 -39
+3 16 -10 4 -30 -10 7 -40 -13 7.1 -39
+3 16 10 4 -30 13 7.1 -39 10 7 -40
+3 16 -17.5 8 -30 -15 7 -40 -20 9.44 -30
+3 16 17.5 8 -30 20 9.44 -30 15 7 -40
+3 16 -15 7 -40 -20 10.56 -40 -20 9.44 -30
+3 16 15 7 -40 20 9.44 -30 20 10.56 -40
+3 16 -15 7 -40 -12.5 4.5 -50 -20 10.56 -40
+3 16 15 7 -40 20 10.56 -40 12.5 4.5 -50
+3 16 -12.5 4.5 -50 -20 12 -50 -20 10.56 -40
+3 16 12.5 4.5 -50 20 10.56 -40 20 12 -50
+3 16 -12.5 4.5 -50 -15.833 7 -52 -20 12 -50
+3 16 12.5 4.5 -50 20 12 -50 15.833 7 -52
+3 16 -12.5 4.5 -50 -12.833 3.4 -56 -15.833 7 -52
+3 16 12.5 4.5 -50 15.833 7 -52 12.833 3.4 -56
+3 16 -12.5 4.5 -50 -10.833 1 -60 -12.833 3.4 -56
+3 16 12.5 4.5 -50 12.833 3.4 -56 10.833 1 -60
+3 16 -12.5 4.5 -50 -10 0 -60 -10.833 1 -60
+3 16 12.5 4.5 -50 10.833 1 -60 10 0 -60
+4 16 -10 4 -6 -16 9 -6 -16 9 -10 -10 4 -10
+4 16 -16 9 6 -16 16 6 -16 16 -10 -16 9 -10
+3 16 -10 4 -10 -16 9 -10 -10 6 -26
+3 16 -10 6 -26 -16 9 -10 -16 12 -26
+4 16 -16 9 -10 -16 16 -10 -16 16 -26 -16 12 -26
+4 16 -16 12 -26 -16 16 -26 -16 16 -46 -16 12 -46
+3 16 -16 12 -46 -12 8 -46 -16 12 -26
+3 16 -13.2 9.2 -40 -12 8 -46 -10 10 -40
+3 16 -13.2 9.2 -40 -14 10.25 -35 -14.8 10.8 -32
+3 16 -13.2 9.2 -40 -12 10 -38 -14 10.25 -35
+3 16 -13.2 9.2 -40 -10 10 -40 -12 10 -38
+3 16 -10 9.469 -38 -12 10 -38 -10 10 -40
+3 16 -10 9.469 -38 -10 8.571 -35 -12 10 -38
+3 16 -12 10 -38 -10 8.571 -35 -14 10.25 -35
+3 16 -10 7.714 -32 -14 10.25 -35 -10 8.571 -35
+3 16 -14.8 10.8 -32 -14 10.25 -35 -10 7.714 -32
+3 16 -14.8 10.8 -32 -10 7.714 -32 -10 6 -26
+3 16 -10 6 -26 -16 12 -26 -14.8 10.8 -32
+4 16 10 4 -6 10 4 -10 16 9 -10 16 9 -6
+4 16 16 9 6 16 9 -10 16 16 -10 16 16 6
+3 16 10 4 -10 10 6 -26 16 9 -10
+3 16 10 6 -26 16 12 -26 16 9 -10
+4 16 16 9 -10 16 12 -26 16 16 -26 16 16 -10
+4 16 16 12 -26 16 12 -46 16 16 -46 16 16 -26
+3 16 16 12 -46 16 12 -26 12 8 -46
+3 16 13.2 9.2 -40 10 10 -40 12 8 -46
+3 16 13.2 9.2 -40 14.8 10.8 -32 14 10.25 -35
+3 16 13.2 9.2 -40 14 10.25 -35 12 10 -38
+3 16 13.2 9.2 -40 12 10 -38 10 10 -40
+3 16 10 9.469 -38 10 10 -40 12 10 -38
+3 16 10 9.469 -38 12 10 -38 10 8.571 -35
+3 16 12 10 -38 14 10.25 -35 10 8.571 -35
+3 16 10 7.714 -32 10 8.571 -35 14 10.25 -35
+3 16 14.8 10.8 -32 10 7.714 -32 14 10.25 -35
+3 16 14.8 10.8 -32 10 6 -26 10 7.714 -32
+3 16 10 6 -26 14.8 10.8 -32 16 12 -26
+1 16 -10 0 0 0 0 -10 0 1 0 10 0 0 p/2-4disc.dat
+1 16 10 0 0 0 0 10 0 1 0 10 0 0 p/2-4disc.dat
+1 16 -10 0 0 10 0 0 0 8 0 0 0 -10 p/1-4cyls2.dat
+1 16 -10 0 0 10 0 0 0 8 0 0 0 10 p/1-4cyls2.dat
+1 16 10 0 0 -10 0 0 0 8 0 0 0 -10 p/1-4cyls2.dat
+1 16 10 0 0 -10 0 0 0 8 0 0 0 10 p/1-4cyls2.dat
+1 16 -10 4 0 0 0 -6 0 -1 0 -6 0 0 p/2-4disc.dat
+1 16 10 4 0 0 0 6 0 -1 0 -6 0 0 p/2-4disc.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 6 0 0 0 5 0 0 0 -6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 6 0 0 0 5 0 0 0 6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 -6 0 0 0 5 0 0 0 -6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 -6 0 0 0 5 0 0 0 6 p/1-4cyls2.dat
+1 16 0 16 -10 2 0 0 0 -1 0 0 0 -2 p/4-4ring3.dat
+0 BFC INVERTNEXT
+1 16 0 16 -10 6 0 0 0 -12 0 0 0 6 p/2-4cyli.dat
+1 16 0 16 -10 8 0 0 0 -12 0 0 0 8 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 16 -10 6 0 0 0 -11.5 0 0 0 -6 p/2-4cyli.dat
+1 16 0 16 -10 8 0 0 0 -11 0 0 0 -8 p/2-4cyli.dat
+1 16 0 16 -30 2 0 0 0 -1 0 0 0 -2 p/4-4ring3.dat
+0 BFC INVERTNEXT
+1 16 0 16 -30 6 0 0 0 -8.857 0 0 0 6 p/2-4cyli.dat
+1 16 0 16 -30 8 0 0 0 -8.857 0 0 0 8 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 16 -30 6 0 0 0 -7.143 0 0 0 -6 p/2-4cyli.dat
+1 16 0 16 -30 8 0 0 0 -6.571 0 0 0 -8 p/2-4cyli.dat
+1 16 -10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 10 p/1-4ndis.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 10 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 -6 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 6 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 -6 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 6 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 4.5 -10 0 0 -6 0 -0.5 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 4.5 -10 0 0 6 0 -0.5 0 -6 0 0 p/1-4cyls.dat
+1 16 0 5 -10 0 0 -8 0 -1 0 -8 0 0 p/1-4cyls.dat
+1 16 0 5 -10 0 0 8 0 -1 0 -8 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 8.857 -30 0 0 -6 0 -1.709 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 8.857 -30 0 0 6 0 -1.709 0 -6 0 0 p/1-4cyls.dat
+1 16 0 9.429 -30 0 0 -8 0 -2.281 0 -8 0 0 p/1-4cyls.dat
+1 16 0 9.429 -30 0 0 8 0 -2.281 0 -8 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 7.148 -30 0 0 -6 0 -1.398 0 -6 0 0 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 0 7.148 -30 0 0 6 0 -1.398 0 -6 0 0 p/1-4cyls2.dat
+1 16 0 7.148 -30 0 0 -8 0 -1.648 0 -8 0 0 p/1-4cyls2.dat
+1 16 0 7.148 -30 0 0 8 0 -1.648 0 -8 0 0 p/1-4cyls2.dat
+2 24 -10 0 10 10 0 10
+5 24 -10 0 -10 10 0 -10 0 0 0 0 1.5 -20
+5 24 -10 1.5 -20 10 1.5 -20 0 0 -10 0 4 -30
+5 24 -10 4 -30 10 4 -30 0 1.5 -20 0 7 -40
+2 24 -10 7 -40 10 7 -40
+2 24 -10 4 6 10 4 6
+2 24 -10 10 -40 10 10 -40
+2 24 -12 8 -46 12 8 -46
+2 24 -16 16 6 16 16 6
+2 24 -16 16 -46 16 16 -46
+2 24 -20 16 -50 20 16 -50
+2 24 -20 16 10 20 16 10
+2 24 -10 0 -60 -12.5 4.5 -50
+2 24 10 0 -60 12.5 4.5 -50
+2 24 -12.5 4.5 -50 -15 7 -40
+2 24 12.5 4.5 -50 15 7 -40
+2 24 -17.5 8 -30 -15 7 -40
+2 24 17.5 8 -30 15 7 -40
+2 24 -17.5 8 -30 -15 7.4 -36
+2 24 17.5 8 -30 15 7.4 -36
+2 24 -13 7.1 -39 -15 7.4 -36
+2 24 13 7.1 -39 15 7.4 -36
+2 24 -13 7.1 -39 -10 7 -40
+2 24 13 7.1 -39 10 7 -40
+2 24 -10 0 -10 -10 1.5 -20
+2 24 10 0 -10 10 1.5 -20
+2 24 -10 1.5 -20 -10 4 -30
+2 24 10 1.5 -20 10 4 -30
+2 24 -10 4 -30 -10 7 -40
+2 24 10 4 -30 10 7 -40
+2 24 -20 8 0 -20 8.16 -10
+2 24 20 8 0 20 8.16 -10
+2 24 -20 8.16 -10 -20 8.64 -20
+2 24 20 8.16 -10 20 8.64 -20
+2 24 -20 8.64 -20 -20 9.44 -30
+2 24 20 8.64 -20 20 9.44 -30
+2 24 -20 10.56 -40 -20 9.44 -30
+2 24 20 10.56 -40 20 9.44 -30
+2 24 -20 10.56 -40 -20 12 -50
+2 24 20 10.56 -40 20 12 -50
+2 24 -10 0 10 -20 8 10
+2 24 10 0 10 20 8 10
+2 24 -20 12 -50 -20 16 -50
+2 24 20 12 -50 20 16 -50
+2 24 -20 8 0 -20 8 10
+2 24 20 8 0 20 8 10
+2 24 -20 8 10 -20 16 10
+2 24 20 8 10 20 16 10
+2 24 -20 16 -50 -20 16 10
+2 24 20 16 -50 20 16 10
+2 24 -16 16 6 -16 16 -46
+2 24 16 16 6 16 16 -46
+5 24 -10 0 -10 -20 8.16 -10 -20 8 0 -10 1.5 -20
+5 24 10 0 -10 20 8.16 -10 20 8 0 10 1.5 -20
+5 24 -10 1.5 -20 -20 8.16 -10 -10 0 -10 -20 8.64 -20
+5 24 10 1.5 -20 20 8.16 -10 10 0 -10 20 8.64 -20
+5 24 -10 1.5 -20 -20 8.64 -20 -20 8.16 -10 -10 4 -30
+5 24 10 1.5 -20 20 8.64 -20 20 8.16 -10 10 4 -30
+5 24 -10 4 -30 -20 8.64 -20 -10 1.5 -20 -20 9.44 -30
+5 24 10 4 -30 20 8.64 -20 10 1.5 -20 20 9.44 -30
+5 24 -10 4 -30 -17.5 8 -30 -20 8.64 -20 -15 7.4 -36
+5 24 10 4 -30 17.5 8 -30 20 8.64 -20 15 7.4 -36
+5 24 -10 4 -30 -15 7.4 -36 -17.5 8 -30 -13 7.1 -39
+5 24 10 4 -30 15 7.4 -36 17.5 8 -30 13 7.1 -39
+5 24 -10 4 -30 -13 7.1 -39 -15 7.4 -36 -10 7 -40
+5 24 10 4 -30 13 7.1 -39 15 7.4 -36 10 7 -40
+5 24 -20 9.44 -30 -17.5 8 -30 -15 7 -40 -20 8.64 -20
+5 24 20 9.44 -30 17.5 8 -30 15 7 -40 20 8.64 -20
+5 24 -20 9.44 -30 -15 7 -40 -17.5 8 -30 -20 10.56 -40
+5 24 20 9.44 -30 15 7 -40 17.5 8 -30 20 10.56 -40
+5 24 -20 10.56 -40 -15 7 -40 -20 9.44 -30 -12.5 4.5 -50
+5 24 20 10.56 -40 15 7 -40 20 9.44 -30 12.5 4.5 -50
+5 24 -12.52 4.5 -50 -20 10.56 -40 -15 7 -40 -20 12 -50
+5 24 12.52 4.5 -50 20 10.56 -40 15 7 -40 20 12 -50
+5 24 -12.5 4.5 -50 -20 12 -50 -20 10.56 -40 -15.833 7 -52
+5 24 12.5 4.5 -50 20 12 -50 20 10.56 -40 15.833 7 -52
+5 24 -12.5 4.5 -50 -15.833 7 -52 -20 12 -50 -12.833 3.4 -56
+5 24 12.5 4.5 -50 15.833 7 -52 20 12 -50 12.833 3.4 -56
+5 24 -12.5 4.5 -50 -12.833 3.4 -56 -15.833 7 -52 -10.833 1 -60
+5 24 12.5 4.5 -50 12.833 3.4 -56 15.833 7 -52 10.833 1 -60
+5 24 -12.5 4.5 -50 -10.833 1 -60 -12.833 3.4 -56 -10 0 -60
+5 24 12.5 4.5 -50 10.833 1 -60 12.833 3.4 -56 10 0 -60
+2 24 -10 4 -6 -10 4 -10
+2 24 10 4 -6 10 4 -10
+2 24 -10 4 6 -16 9 6
+2 24 10 4 6 16 9 6
+2 24 -16 9 6 -16 9 -10
+2 24 16 9 6 16 9 -10
+2 24 -16 9 6 -16 16 6
+2 24 16 9 6 16 16 6
+2 24 -12 8 -46 -16 12 -46
+2 24 12 8 -46 16 12 -46
+2 24 -16 12 -46 -16 16 -46
+2 24 16 12 -46 16 16 -46
+2 24 -10 4 -10 -10 6 -26
+2 24 10 4 -10 10 6 -26
+2 24 -10 10 -40 -10 6 -26
+2 24 10 10 -40 10 6 -26
+2 24 -16 9 -10 -16 12 -26
+2 24 16 9 -10 16 12 -26
+2 24 -16 12 -46 -16 12 -26
+2 24 16 12 -46 16 12 -26
+2 24 -12 8 -46 -14.8 10.8 -32
+2 24 12 8 -46 14.8 10.8 -32
+2 24 -14 10.23 -35 -14.8 10.8 -32
+2 24 14 10.23 -35 14.8 10.8 -32
+2 24 -14 10.23 -35 -12 10 -38
+2 24 14 10.23 -35 12 10 -38
+2 24 -10 10 -40 -12 10 -38
+2 24 10 10 -40 12 10 -38
+2 24 -15.833 7 -52 -20 12 -50
+2 24 15.833 7 -52 20 12 -50
+2 24 -15.833 7 -52 -12.833 3.4 -56
+2 24 15.833 7 -52 12.833 3.4 -56
+2 24 -12.833 3.4 -56 -10.833 1 -60
+2 24 12.833 3.4 -56 10.833 1 -60
+2 24 -10.833 1 -60 10.833 1 -60
+2 24 -10 0 -60 10 0 -60
+2 24 10 0 -60 10.833 1 -60
+2 24 -10 0 -60 -10.833 1 -60
+2 24 -17 12 -50 -20 12 -50
+2 24 17 12 -50 20 12 -50
+2 24 -11 7 -50 -17 12 -50
+2 24 11 7 -50 17 12 -50
+2 24 -11 7 -50 11 7 -50
+2 24 -11 7 -50 -7 3.4 -56
+2 24 11 7 -50 7 3.4 -56
+2 24 -12 7 -52 -7 3.4 -56
+2 24 12 7 -52 7 3.4 -56
+2 24 -12 7 -52 -17 12 -50
+2 24 12 7 -52 17 12 -50
+1 16 -10 0 0 0 0 -10 0 1 0 10 0 0 p/2-4edge.dat
+1 16 10 0 0 0 0 10 0 1 0 10 0 0 p/2-4edge.dat
+1 16 -10 4 0 0 0 -6 0 1 0 6 0 0 p/2-4edge.dat
+1 16 10 4 0 0 0 6 0 1 0 6 0 0 p/2-4edge.dat
+1 16 0 16 -10 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 16 -10 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 10 p/1-4edge.dat
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 -10 p/1-4edge.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 10 p/1-4edge.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 -10 p/1-4edge.dat
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 -6 p/1-4edge.dat
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 6 p/1-4edge.dat
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 -6 p/1-4edge.dat
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 6 p/1-4edge.dat
+1 16 0 4 -10 0 0 -6 0.75 1 0 -6 0 0 p/1-4edge.dat
+1 16 0 4 -10 0 0 6 0.75 1 0 -6 0 0 p/1-4edge.dat
+1 16 0 4 -10 0 0 -8 1 1 0 -8 0 0 p/1-4edge.dat
+1 16 0 4 -10 0 0 8 1 1 0 -8 0 0 p/1-4edge.dat
+1 16 0 16 -30 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 16 -30 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 7.148 -30 0 0 -6 2 1 0 -6 0 0 p/1-4edge.dat
+1 16 0 7.148 -30 0 0 6 2 1 0 -6 0 0 p/1-4edge.dat
+1 16 0 7.148 -30 0 0 -8 2.5 1 0 -8 0 0 p/1-4edge.dat
+1 16 0 7.148 -30 0 0 8 2.5 1 0 -8 0 0 p/1-4edge.dat
+1 16 0 7.148 -30 -6 0 0 0 1 -1.3 0 0 6 p/1-4edge.dat
+1 16 0 7.148 -30 6 0 0 0 1 -1.3 0 0 6 p/1-4edge.dat
+1 16 0 7.148 -30 -8 0 0 0 1 -1.6 0 0 8 p/1-4edge.dat
+1 16 0 7.148 -30 8 0 0 0 1 -1.6 0 0 8 p/1-4edge.dat
+0
+
+0 FILE parts/43711.dat
+0 Slope Brick  2 x  4 Triple Right
+0 Name: 43711.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-01-10 [guyvivan] Secondary author
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/43710s01.dat
+0
+
+0 FILE parts/43710.dat
+0 Slope Brick  2 x  4 Triple Left
+0 Name: 43710.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-01-10 [guyvivan] Secondary author
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/43710s01.dat
+0
+
+0 FILE parts/s/43710s01.dat
+0 ~Slope Brick  2 x  4 Triple Left Without Stud
+0 Name: s\43710s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-01-10 [guyvivan] Secondary author
+0 !HISTORY 2005-07-30 [guyvivan] Corrected bad polygon
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+4 16 30 20 10 10 0 10 10 0 -10 30 20 -10
+2 24 -6 24 6 -6 24 -66
+2 24 26 24 6 -6 24 6
+2 24 -10 24 10 -10 24 -70
+2 24 30 24 10 -10 24 10
+2 24 -6 24 6 -6 4 6
+2 24 -6 4 -9 -6 21.882 -66
+2 24 9 4 -9 9 20 -60
+4 16 9 4 -9 9 20 -60 -6 20 -60 -6 4 -9
+2 24 6 20 -60 -6 20 -60
+1 16 0 20 -60 6 0 0 0 -1 0 0 0 -6 p/2-4disc.dat
+1 16 0 20 -60 6 0 0 0 -1 0 0 0 -6 p/2-4edge.dat
+1 16 0 20 -60 6 0 0 0 1 1.882 0 0 -6 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 20 -60 0 0 -6 0 1.882 0 6 0 0 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 0 20 -60 0 0 6 0 1.882 0 6 0 0 p/1-4cyls2.dat
+1 16 0 20 -60 6 0 0 0 -1 1.882 0 0 -6 p/2-4ndis.dat
+4 16 9 20 -60 7 21.882 -66 6 21.882 -66 6 20 -60
+2 24 7 21.882 -66 9 20 -60
+3 16 -6 21.882 -66 -6 24 -66 -6 4 -9
+2 24 30 20 -10 10 20 -70
+2 24 17.502 24 -47.493 10 24 -70
+4 16 17.502 20 -47.493 10 20 -70 10 24 -70 17.502 24 -47.493
+2 24 17.502 20 -47.493 17.502 24 -47.493
+3 16 10 0 -10 10 20 -70 30 20 -10
+2 24 26 20 -9 9 20 -60
+3 16 26 20 -9 9 20 -60 9 4 -9
+2 24 26 20 6 9 4 6
+2 24 26 20 -9 9 4 -9
+2 24 -10 24 10 -10 0 10
+2 24 -10 0 -10 -10 20 -70
+2 24 10 0 -10 10 20 -70
+4 16 -10 0 -10 -10 20 -70 10 20 -70 10 0 -10
+3 16 -10 24 -70 -10 20 -70 -10 0 -10
+2 24 30 20 10 10 0 10
+2 24 30 20 -10 10 0 -10
+4 16 -10 24 10 -6 24 6 -6 24 -66 -10 24 -70
+4 16 30 24 -10 26 24 -9 26 24 6 30 24 10
+4 16 30 24 10 26 24 6 -6 24 6 -10 24 10
+1 16 0 0 0 0 0 -10 0 1 0 10 0 0 p/rect.dat
+1 16 1.5 4 -1.5 0 0 -7.5 0 -1 0 7.5 0 0 p/rect.dat
+4 16 -10 24 -70 -10 0 -10 -10 0 10 -10 24 10
+4 16 -6 24 6 -6 4 6 -6 4 -9 -6 24 -66
+1 16 30 22 0 0 -1 0 -2 0 0 0 0 10 p/rect.dat
+1 16 26 22 -1.5 0 1 0 -2 0 0 0 0 7.5 p/rect.dat
+1 16 0 22 -70 0 0 10 -2 0 0 0 1 0 p/rect.dat
+1 16 0.5 22.941 -66 0 0 6.5 1.059 0 0 0 -1 0 p/rect.dat
+4 16 10 24 -70 -10 24 -70 -6 24 -66 7 24 -66
+4 16 -10 24 10 -10 0 10 30 20 10 30 24 10
+3 16 -10 0 10 10 0 10 30 20 10
+4 16 26 20 6 -6 4 6 -6 24 6 26 24 6
+3 16 26 20 6 9 4 6 -6 4 6
+4 16 9 4 -9 9 4 6 26 20 6 26 20 -9
+1 16 10 13.173 -10 1 0 0 0 -2.706 0 0 0 1 p/stud4a.dat
+2 24 18 12.784 -10 17.802 12.284 -9
+2 24 17.802 12.284 -9 17.392 11.898 -6.936
+2 24 17.392 11.898 -6.936 15.656 10.264 -4.344
+2 24 15.656 10.264 -4.344 13.064 7.825 -2.608
+2 24 13.064 7.825 -2.608 10 4.941 -2
+2 24 10 4.941 -2 9 4 -2.198
+2 24 9 4 -2.198 6.936 4 -2.608
+2 24 6.936 4 -2.608 4.344 4 -4.344
+2 24 4.344 4 -4.344 2.608 4 -6.936
+2 24 2.608 4 -6.936 2.198 4 -9
+2 24 2.198 4 -9 2 4.314 -10
+2 24 2 4.314 -10 2.608 5.275 -13.064
+2 24 2.608 5.275 -13.064 4.344 6.088 -15.656
+2 24 4.344 6.088 -15.656 6.936 6.633 -17.392
+2 24 6.936 6.633 -17.392 9 6.761 -17.802
+2 24 9 6.761 -17.802 10 7.765 -18
+2 24 10 7.765 -18 13.064 10.458 -17.392
+2 24 13.064 10.458 -17.392 15.656 12.353 -15.656
+2 24 15.656 12.353 -15.656 17.392 13.173 -13.064
+2 24 17.392 13.173 -13.064 18 12.784 -10
+2 24 16 10.902 -10 15.802 10.402 -9
+2 24 15.802 10.402 -9 15.544 10.159 -7.702
+2 24 15.544 10.159 -7.702 14.242 8.934 -5.758
+2 24 14.242 8.934 -5.758 12.298 7.104 -4.456
+2 24 12.298 7.104 -4.456 10 4.941 -4
+2 24 10 4.941 -4 9 4 -4.198
+2 24 9 4 -4.198 7.702 4 -4.456
+2 24 7.702 4 -4.456 5.758 4 -5.758
+2 24 5.758 4 -5.758 4.456 4 -7.702
+2 24 4.456 4 -7.702 4.198 4 -9
+2 24 4.198 4 -9 4 4.314 -10
+2 24 4 4.314 -10 4.456 5.035 -12.298
+2 24 4.456 5.035 -12.298 5.758 5.645 -14.242
+2 24 5.758 5.645 -14.242 7.702 6.053 -15.544
+2 24 7.702 6.053 -15.544 9 6.134 -15.802
+2 24 9 6.134 -15.802 10 7.137 -16
+2 24 10 7.137 -16 12.298 9.157 -15.544
+2 24 12.298 9.157 -15.544 14.242 10.578 -14.242
+2 24 14.242 10.578 -14.242 15.544 11.194 -12.298
+2 24 15.544 11.194 -12.298 16 10.902 -10
+1 16 10 19.448 -30 1 0 0 0 -1.138 0 0 0 1 p/stud4a.dat
+2 24 18 19.059 -30 17.392 17.525 -26.936
+2 24 17.392 17.525 -26.936 15.656 15.078 -24.344
+2 24 15.656 15.078 -24.344 13.064 12.094 -22.608
+2 24 13.064 12.094 -22.608 10 9.02 -22
+2 24 10 9.02 -22 9 8.141 -22.198
+2 24 9 8.141 -22.198 6.936 8.269 -22.608
+2 24 6.936 8.269 -22.608 4.344 8.814 -24.344
+2 24 4.344 8.814 -24.344 2.608 9.627 -26.936
+2 24 2.608 9.627 -26.936 2 10.588 -30
+2 24 2 10.588 -30 2.608 11.549 -33.064
+2 24 2.608 11.549 -33.064 4.344 12.363 -35.656
+2 24 4.344 12.363 -35.656 6.936 12.907 -37.392
+2 24 6.936 12.907 -37.392 9 13.036 -37.802
+2 24 9 13.036 -37.802 10 14.039 -38
+2 24 10 14.039 -38 13.064 16.732 -37.392
+2 24 13.064 16.732 -37.392 15.656 18.627 -35.656
+2 24 15.656 18.627 -35.656 17.392 19.448 -33.064
+2 24 17.392 19.448 -33.064 18 19.059 -30
+2 24 16 17.176 -30 15.544 16.026 -27.702
+2 24 15.544 16.026 -27.702 14.242 14.191 -25.758
+2 24 14.242 14.191 -25.758 12.298 11.953 -24.456
+2 24 12.298 11.953 -24.456 10 9.647 -24
+2 24 10 9.647 -24 9 8.768 -24.198
+2 24 9 8.768 -24.198 7.702 8.849 -24.456
+2 24 7.702 8.849 -24.456 5.758 9.257 -25.758
+2 24 5.758 9.257 -25.758 4.456 9.867 -27.702
+2 24 4.456 9.867 -27.702 4 10.588 -30
+2 24 4 10.588 -30 4.456 11.309 -32.298
+2 24 4.456 11.309 -32.298 5.758 11.919 -34.242
+2 24 5.758 11.919 -34.242 7.702 12.328 -35.544
+2 24 7.702 12.328 -35.544 9 12.408 -35.802
+2 24 9 12.408 -35.802 10 13.412 -36
+2 24 10 13.412 -36 12.298 15.432 -35.544
+2 24 12.298 15.432 -35.544 14.242 16.853 -34.242
+2 24 14.242 16.853 -34.242 15.544 17.468 -32.298
+2 24 15.544 17.468 -32.298 16 17.176 -30
+1 16 10 24 -50 1.84776 0 -0.765367 0 -1 0 0.765367 0 1.84776 p/3-4ring3.dat
+1 16 10 24 -50 2.2961 0 -5.54328 0 1 0 5.54328 0 2.2961 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 24 -50 4.24264 0 -4.24264 0 -4 0 4.24264 0 4.24264 p/5-8cyli.dat
+1 16 10 24 -50 7.39104 0 -3.06147 0 1 0 3.06147 0 7.39104 p/5-8edge.dat
+1 16 10 24 -50 7.39104 0 -3.06147 0 -4 0 3.06147 0 7.39104 p/5-8cyli.dat
+1 16 10 24 -50 -3.06147 0 7.39104 0 -4 0 -7.39104 0 -3.06147 p/1-16cyli.dat
+2 24 17.502 20 -47.493 17.392 20 -46.936
+2 24 17.392 20 -46.936 15.656 20 -44.344
+2 24 15.656 20 -44.344 14.481 20 -43.557
+2 24 14.481 20 -43.557 13.064 18.369 -42.608
+3 16 13.064 18.369 -42.608 14.481 20 -43.557 13.064 20 -42.608
+2 24 13.064 18.369 -42.608 10 15.294 -42
+4 16 10 15.294 -42 13.064 18.369 -42.608 13.064 20 -42.608 10 20 -42
+2 24 10 15.294 -42 9 14.415 -42.198
+4 16 9 14.415 -42.198 10 15.294 -42 10 20 -42 9 20 -42.198
+2 24 9 14.415 -42.198 6.936 14.544 -42.608
+4 16 6.936 14.544 -42.608 9 14.415 -42.198 9 20 -42.198 6.936 20 -42.608
+2 24 6.936 14.544 -42.608 4.344 15.088 -44.344
+4 16 4.344 15.088 -44.344 6.936 14.544 -42.608 6.936 20 -42.608 4.344 20 -44.344
+2 24 4.344 15.088 -44.344 2.608 15.901 -46.936
+4 16 2.608 15.901 -46.936 4.344 15.088 -44.344 4.344 20 -44.344 2.608 20 -46.936
+2 24 2.608 15.901 -46.936 2 16.863 -50
+4 16 2 16.863 -50 2.608 15.901 -46.936 2.608 20 -46.936 2 20 -50
+2 24 2 16.863 -50 2.608 17.824 -53.064
+4 16 2.608 17.824 -53.064 2 16.863 -50 2 20 -50 2.608 20 -53.064
+2 24 2.608 17.824 -53.064 4.344 18.637 -55.656
+4 16 4.344 18.637 -55.656 2.608 17.824 -53.064 2.608 20 -53.064 4.344 20 -55.656
+2 24 4.344 18.637 -55.656 6.936 19.182 -57.392
+4 16 6.936 19.182 -57.392 4.344 18.637 -55.656 4.344 20 -55.656 6.936 20 -57.392
+2 24 6.936 19.182 -57.392 9 19.31 -57.802
+4 16 9 19.31 -57.802 6.936 19.182 -57.392 6.936 20 -57.392 9 20 -57.802
+2 24 9 19.31 -57.802 9.687 20 -57.938
+3 16 9.687 20 -57.938 9 19.31 -57.802 9 20 -57.802
+2 24 13.838 20 -45.487 12.298 18.227 -44.456
+3 16 13.838 20 -45.487 12.298 18.227 -44.456 12.298 20 -44.456
+2 24 12.298 18.227 -44.456 10 15.922 -44
+4 16 12.298 18.227 -44.456 10 15.922 -44 10 20 -44 12.298 20 -44.456
+2 24 10 15.922 -44 9 15.043 -44.198
+4 16 10 15.922 -44 9 15.043 -44.198 9 20 -44.198 10 20 -44
+2 24 9 15.043 -44.198 7.702 15.123 -44.456
+4 16 9 15.043 -44.198 7.702 15.123 -44.456 7.702 20 -44.456 9 20 -44.198
+2 24 7.702 15.123 -44.456 5.758 15.532 -45.758
+4 16 7.702 15.123 -44.456 5.758 15.532 -45.758 5.758 20 -45.758 7.702 20 -44.456
+2 24 5.758 15.532 -45.758 4.456 16.142 -47.702
+4 16 5.758 15.532 -45.758 4.456 16.142 -47.702 4.456 20 -47.702 5.758 20 -45.758
+2 24 4.456 16.142 -47.702 4 16.863 -50
+4 16 4.456 16.142 -47.702 4 16.863 -50 4 20 -50 4.456 20 -47.702
+2 24 4 16.863 -50 4.456 17.584 -52.298
+4 16 4 16.863 -50 4.456 17.584 -52.298 4.456 20 -52.298 4 20 -50
+2 24 4.456 17.584 -52.298 5.758 18.194 -54.242
+4 16 4.456 17.584 -52.298 5.758 18.194 -54.242 5.758 20 -54.242 4.456 20 -52.298
+2 24 5.758 18.194 -54.242 7.702 18.602 -55.544
+4 16 5.758 18.194 -54.242 7.702 18.602 -55.544 7.702 20 -55.544 5.758 20 -54.242
+2 24 7.702 18.602 -55.544 9 18.683 -55.802
+4 16 7.702 18.602 -55.544 9 18.683 -55.802 9 20 -55.802 7.702 20 -55.544
+2 24 9 18.683 -55.802 10 19.686 -56
+4 16 9 18.683 -55.802 10 19.686 -56 10 20 -56 9 20 -55.802
+2 24 10 19.686 -56 10.357 20 -55.929
+4 16 10 19.686 -56 10.357 20 -55.929 10.357 24 -55.929 10 24 -56
+2 24 17.502 24 -47.493 17.392 24 -46.936
+4 16 17.502 24 -47.493 17.392 24 -46.936 17.392 20 -46.936 17.502 20 -47.493
+2 24 6.936 24 -57.392 9.687 24 -57.938
+2 24 9.687 24 -57.938 9.687 20 -57.938
+2 24 9.687 24 -57.938 7 24 -66
+4 16 9.687 24 -57.938 7 24 -66 9 20 -60 9.687 20 -57.938
+3 16 7 24 -66 7 21.882 -66 9 20 -60
+2 24 13.838 24 -45.487 12.298 24 -44.456
+2 24 13.838 24 -45.487 13.838 20 -45.487
+2 24 7.702 24 -55.544 10 24 -56
+2 24 10 24 -56 10.357 24 -55.929
+2 24 13.838 24 -45.487 10.357 24 -55.929
+4 16 13.838 24 -45.487 17.392 24 -46.936 17.502 24 -47.493 7 24 -66
+3 16 17.502 24 -47.493 10 24 -70 7 24 -66
+4 16 13.838 24 -45.487 10.357 24 -55.929 10.357 20 -55.929 13.838 20 -45.487
+2 24 10.357 20 -55.929 10.357 24 -55.929
+4 16 17.802 12.284 -9 18 12.784 -10 18 13.173 -10 17.802 13.173 -9
+4 16 17.392 11.898 -6.936 17.802 12.284 -9 17.802 13.173 -9 17.392 13.173 -6.936
+4 16 15.656 10.264 -4.344 17.392 11.898 -6.936 17.392 13.173 -6.936 15.656 13.173 -4.344
+4 16 13.064 7.825 -2.608 15.656 10.264 -4.344 15.656 13.173 -4.344 13.064 13.173 -2.608
+4 16 10 4.941 -2 13.064 7.825 -2.608 13.064 13.173 -2.608 10 13.173 -2
+4 16 9 4 -2.198 10 4.941 -2 10 13.173 -2 9 13.173 -2.198
+4 16 6.936 4 -2.608 9 4 -2.198 9 13.173 -2.198 6.936 13.173 -2.608
+4 16 4.344 4 -4.344 6.936 4 -2.608 6.936 13.173 -2.608 4.344 13.173 -4.344
+4 16 2.608 4 -6.936 4.344 4 -4.344 4.344 13.173 -4.344 2.608 13.173 -6.936
+4 16 2.198 4 -9 2.608 4 -6.936 2.608 13.173 -6.936 2.198 13.173 -9
+4 16 2 4.314 -10 2.198 4 -9 2.198 13.173 -9 2 13.173 -10
+4 16 2.608 5.275 -13.064 2 4.314 -10 2 13.173 -10 2.608 13.173 -13.064
+4 16 4.344 6.088 -15.656 2.608 5.275 -13.064 2.608 13.173 -13.064 4.344 13.173 -15.656
+4 16 6.936 6.633 -17.392 4.344 6.088 -15.656 4.344 13.173 -15.656 6.936 13.173 -17.392
+4 16 9 6.761 -17.802 6.936 6.633 -17.392 6.936 13.173 -17.392 9 13.173 -17.802
+4 16 10 7.765 -18 9 6.761 -17.802 9 13.173 -17.802 10 13.173 -18
+4 16 13.064 10.458 -17.392 10 7.765 -18 10 13.173 -18 13.064 13.173 -17.392
+4 16 15.656 12.353 -15.656 13.064 10.458 -17.392 13.064 13.173 -17.392 15.656 13.173 -15.656
+3 16 17.392 13.173 -13.064 15.656 12.353 -15.656 15.656 13.173 -15.656
+3 16 18 12.784 -10 17.392 13.173 -13.064 18 13.173 -10
+4 16 16 10.902 -10 15.802 10.402 -9 15.802 13.173 -9 16 13.173 -10
+4 16 15.802 10.402 -9 15.544 10.159 -7.702 15.544 13.173 -7.702 15.802 13.173 -9
+4 16 15.544 10.159 -7.702 14.242 8.934 -5.758 14.242 13.173 -5.758 15.544 13.173 -7.702
+4 16 14.242 8.934 -5.758 12.298 7.104 -4.456 12.298 13.173 -4.456 14.242 13.173 -5.758
+4 16 12.298 7.104 -4.456 10 4.941 -4 10 13.173 -4 12.298 13.173 -4.456
+4 16 10 4.941 -4 9 4 -4.198 9 13.173 -4.198 10 13.173 -4
+4 16 9 4 -4.198 7.702 4 -4.456 7.702 13.173 -4.456 9 13.173 -4.198
+4 16 7.702 4 -4.456 5.758 4 -5.758 5.758 13.173 -5.758 7.702 13.173 -4.456
+4 16 5.758 4 -5.758 4.456 4 -7.702 4.456 13.173 -7.702 5.758 13.173 -5.758
+4 16 4.456 4 -7.702 4.198 4 -9 4.198 13.173 -9 4.456 13.173 -7.702
+4 16 4.198 4 -9 4 4.314 -10 4 13.173 -10 4.198 13.173 -9
+4 16 4 4.314 -10 4.456 5.035 -12.298 4.456 13.173 -12.298 4 13.173 -10
+4 16 4.456 5.035 -12.298 5.758 5.645 -14.242 5.758 13.173 -14.242 4.456 13.173 -12.298
+4 16 5.758 5.645 -14.242 7.702 6.053 -15.544 7.702 13.173 -15.544 5.758 13.173 -14.242
+4 16 7.702 6.053 -15.544 9 6.134 -15.802 9 13.173 -15.802 7.702 13.173 -15.544
+4 16 9 6.134 -15.802 10 7.137 -16 10 13.173 -16 9 13.173 -15.802
+4 16 10 7.137 -16 12.298 9.157 -15.544 12.298 13.173 -15.544 10 13.173 -16
+4 16 12.298 9.157 -15.544 14.242 10.578 -14.242 14.242 13.173 -14.242 12.298 13.173 -15.544
+4 16 14.242 10.578 -14.242 15.544 11.194 -12.298 15.544 13.173 -12.298 14.242 13.173 -14.242
+4 16 15.544 11.194 -12.298 16 10.902 -10 16 13.173 -10 15.544 13.173 -12.298
+4 16 17.392 17.525 -26.936 18 19.059 -30 18 19.448 -30 17.392 19.448 -26.936
+4 16 15.656 15.078 -24.344 17.392 17.525 -26.936 17.392 19.448 -26.936 15.656 19.448 -24.344
+4 16 13.064 12.094 -22.608 15.656 15.078 -24.344 15.656 19.448 -24.344 13.064 19.448 -22.608
+4 16 10 9.02 -22 13.064 12.094 -22.608 13.064 19.448 -22.608 10 19.448 -22
+4 16 9 8.141 -22.198 10 9.02 -22 10 19.448 -22 9 19.448 -22.198
+4 16 6.936 8.269 -22.608 9 8.141 -22.198 9 19.448 -22.198 6.936 19.448 -22.608
+4 16 4.344 8.814 -24.344 6.936 8.269 -22.608 6.936 19.448 -22.608 4.344 19.448 -24.344
+4 16 2.608 9.627 -26.936 4.344 8.814 -24.344 4.344 19.448 -24.344 2.608 19.448 -26.936
+4 16 2 10.588 -30 2.608 9.627 -26.936 2.608 19.448 -26.936 2 19.448 -30
+4 16 2.608 11.549 -33.064 2 10.588 -30 2 19.448 -30 2.608 19.448 -33.064
+4 16 4.344 12.363 -35.656 2.608 11.549 -33.064 2.608 19.448 -33.064 4.344 19.448 -35.656
+4 16 6.936 12.907 -37.392 4.344 12.363 -35.656 4.344 19.448 -35.656 6.936 19.448 -37.392
+4 16 9 13.036 -37.802 6.936 12.907 -37.392 6.936 19.448 -37.392 9 19.448 -37.802
+4 16 10 14.039 -38 9 13.036 -37.802 9 19.448 -37.802 10 19.448 -38
+4 16 13.064 16.732 -37.392 10 14.039 -38 10 19.448 -38 13.064 19.448 -37.392
+4 16 15.656 18.627 -35.656 13.064 16.732 -37.392 13.064 19.448 -37.392 15.656 19.448 -35.656
+3 16 17.392 19.448 -33.064 15.656 18.627 -35.656 15.656 19.448 -35.656
+3 16 18 19.059 -30 17.392 19.448 -33.064 18 19.448 -30
+4 16 16 17.176 -30 15.544 16.026 -27.702 15.544 19.448 -27.702 16 19.448 -30
+4 16 15.544 16.026 -27.702 14.242 14.191 -25.758 14.242 19.448 -25.758 15.544 19.448 -27.702
+4 16 14.242 14.191 -25.758 12.298 11.953 -24.456 12.298 19.448 -24.456 14.242 19.448 -25.758
+4 16 12.298 11.953 -24.456 10 9.647 -24 10 19.448 -24 12.298 19.448 -24.456
+4 16 10 9.647 -24 9 8.768 -24.198 9 19.448 -24.198 10 19.448 -24
+4 16 9 8.768 -24.198 7.702 8.849 -24.456 7.702 19.448 -24.456 9 19.448 -24.198
+4 16 7.702 8.849 -24.456 5.758 9.257 -25.758 5.758 19.448 -25.758 7.702 19.448 -24.456
+4 16 5.758 9.257 -25.758 4.456 9.867 -27.702 4.456 19.448 -27.702 5.758 19.448 -25.758
+4 16 4.456 9.867 -27.702 4 10.588 -30 4 19.448 -30 4.456 19.448 -27.702
+4 16 4 10.588 -30 4.456 11.309 -32.298 4.456 19.448 -32.298 4 19.448 -30
+4 16 4.456 11.309 -32.298 5.758 11.919 -34.242 5.758 19.448 -34.242 4.456 19.448 -32.298
+4 16 5.758 11.919 -34.242 7.702 12.328 -35.544 7.702 19.448 -35.544 5.758 19.448 -34.242
+4 16 7.702 12.328 -35.544 9 12.408 -35.802 9 19.448 -35.802 7.702 19.448 -35.544
+4 16 9 12.408 -35.802 10 13.412 -36 10 19.448 -36 9 19.448 -35.802
+4 16 10 13.412 -36 12.298 15.432 -35.544 12.298 19.448 -35.544 10 19.448 -36
+4 16 12.298 15.432 -35.544 14.242 16.853 -34.242 14.242 19.448 -34.242 12.298 19.448 -35.544
+4 16 14.242 16.853 -34.242 15.544 17.468 -32.298 15.544 19.448 -32.298 14.242 19.448 -34.242
+4 16 15.544 17.468 -32.298 16 17.176 -30 16 19.448 -30 15.544 19.448 -32.298
+5 24 17.802 13.173 -9 17.802 12.284 -9 18 13.173 -10 17.392 13.173 -6.936
+5 24 17.392 13.173 -6.936 17.392 11.898 -6.936 17.802 13.173 -9 15.656 13.173 -4.344
+5 24 15.656 13.173 -4.344 15.656 10.264 -4.344 17.392 13.173 -6.936 13.064 13.173 -2.608
+5 24 13.064 13.173 -2.608 13.064 7.825 -2.608 15.656 13.173 -4.344 10 13.173 -2
+5 24 10 13.173 -2 10 4.941 -2 13.064 13.173 -2.608 9 13.173 -2.198
+5 24 6.936 13.173 -2.608 6.936 4 -2.608 9 13.173 -2.198 4.344 13.173 -4.344
+5 24 4.344 13.173 -4.344 4.344 4 -4.344 6.936 13.173 -2.608 2.608 13.173 -6.936
+5 24 2.608 13.173 -6.936 2.608 4 -6.936 4.344 13.173 -4.344 2.198 13.173 -9
+5 24 2 13.173 -10 2 4.314 -10 2.198 13.173 -9 2.608 13.173 -13.064
+5 24 2.608 13.173 -13.064 2.608 5.275 -13.064 2 13.173 -10 4.344 13.173 -15.656
+5 24 4.344 13.173 -15.656 4.344 6.088 -15.656 2.608 13.173 -13.064 6.936 13.173 -17.392
+5 24 6.936 13.173 -17.392 6.936 6.633 -17.392 4.344 13.173 -15.656 9 13.173 -17.802
+5 24 10 13.173 -18 10 7.765 -18 9 13.173 -17.802 13.064 13.173 -17.392
+5 24 13.064 13.173 -17.392 13.064 10.458 -17.392 10 13.173 -18 15.656 13.173 -15.656
+5 24 15.656 13.173 -15.656 15.656 12.353 -15.656 13.064 13.173 -17.392 17.392 13.173 -13.064
+5 24 18 13.173 -10 18 12.784 -10 17.392 13.173 -13.064 17.802 13.173 -9
+5 24 15.544 13.173 -7.702 15.544 10.159 -7.702 15.802 13.173 -9 14.242 13.173 -5.758
+5 24 14.242 13.173 -5.758 14.242 8.934 -5.758 15.544 13.173 -7.702 12.298 13.173 -4.456
+5 24 12.298 13.173 -4.456 12.298 7.104 -4.456 14.242 13.173 -5.758 10 13.173 -4
+5 24 10 13.173 -4 10 4.941 -4 12.298 13.173 -4.456 9 13.173 -4.198
+5 24 7.702 13.173 -4.456 7.702 4 -4.456 9 13.173 -4.198 5.758 13.173 -5.758
+5 24 5.758 13.173 -5.758 5.758 4 -5.758 7.702 13.173 -4.456 4.456 13.173 -7.702
+5 24 4.456 13.173 -7.702 4.456 4 -7.702 5.758 13.173 -5.758 4.198 13.173 -9
+5 24 4 13.173 -10 4 4.314 -10 4.198 13.173 -9 4.456 13.173 -12.298
+5 24 4.456 13.173 -12.298 4.456 5.035 -12.298 4 13.173 -10 5.758 13.173 -14.242
+5 24 5.758 13.173 -14.242 5.758 5.645 -14.242 4.456 13.173 -12.298 7.702 13.173 -15.544
+5 24 7.702 13.173 -15.544 7.702 6.053 -15.544 5.758 13.173 -14.242 9 13.173 -15.802
+5 24 10 13.173 -16 10 7.137 -16 9 13.173 -15.802 12.298 13.173 -15.544
+5 24 12.298 13.173 -15.544 12.298 9.157 -15.544 10 13.173 -16 14.242 13.173 -14.242
+5 24 14.242 13.173 -14.242 14.242 10.578 -14.242 12.298 13.173 -15.544 15.544 13.173 -12.298
+5 24 15.544 13.173 -12.298 15.544 11.194 -12.298 14.242 13.173 -14.242 16 13.173 -10
+5 24 16 13.173 -10 16 10.902 -10 15.544 13.173 -12.298 15.802 13.173 -9
+5 24 17.392 19.448 -26.936 17.392 17.525 -26.936 18 19.448 -30 15.656 19.448 -24.344
+5 24 15.656 19.448 -24.344 15.656 15.078 -24.344 17.392 19.448 -26.936 13.064 19.448 -22.608
+5 24 13.064 19.448 -22.608 13.064 12.094 -22.608 15.656 19.448 -24.344 10 19.448 -22
+5 24 10 19.448 -22 10 9.02 -22 13.064 19.448 -22.608 9 19.448 -22.198
+5 24 6.936 19.448 -22.608 6.936 8.269 -22.608 9 19.448 -22.198 4.344 19.448 -24.344
+5 24 4.344 19.448 -24.344 4.344 8.814 -24.344 6.936 19.448 -22.608 2.608 19.448 -26.936
+5 24 2.608 19.448 -26.936 2.608 9.627 -26.936 4.344 19.448 -24.344 2 19.448 -30
+5 24 2 19.448 -30 2 10.588 -30 2.608 19.448 -26.936 2.608 19.448 -33.064
+5 24 2.608 19.448 -33.064 2.608 11.549 -33.064 2 19.448 -30 4.344 19.448 -35.656
+5 24 4.344 19.448 -35.656 4.344 12.363 -35.656 2.608 19.448 -33.064 6.936 19.448 -37.392
+5 24 6.936 19.448 -37.392 6.936 12.907 -37.392 4.344 19.448 -35.656 9 19.448 -37.802
+5 24 10 19.448 -38 10 14.039 -38 9 19.448 -37.802 13.064 19.448 -37.392
+5 24 13.064 19.448 -37.392 13.064 16.732 -37.392 10 19.448 -38 15.656 19.448 -35.656
+5 24 15.656 19.448 -35.656 15.656 18.627 -35.656 13.064 19.448 -37.392 17.392 19.448 -33.064
+5 24 18 19.448 -30 18 19.059 -30 17.392 19.448 -33.064 17.392 19.448 -26.936
+5 24 15.544 19.448 -27.702 15.544 16.026 -27.702 16 19.448 -30 14.242 19.448 -25.758
+5 24 14.242 19.448 -25.758 14.242 14.191 -25.758 15.544 19.448 -27.702 12.298 19.448 -24.456
+5 24 12.298 19.448 -24.456 12.298 11.953 -24.456 14.242 19.448 -25.758 10 19.448 -24
+5 24 10 19.448 -24 10 9.647 -24 12.298 19.448 -24.456 9 19.448 -24.198
+5 24 7.702 19.448 -24.456 7.702 8.849 -24.456 9 19.448 -24.198 5.758 19.448 -25.758
+5 24 5.758 19.448 -25.758 5.758 9.257 -25.758 7.702 19.448 -24.456 4.456 19.448 -27.702
+5 24 4.456 19.448 -27.702 4.456 9.867 -27.702 5.758 19.448 -25.758 4 19.448 -30
+5 24 4 19.448 -30 4 10.588 -30 4.456 19.448 -27.702 4.456 19.448 -32.298
+5 24 4.456 19.448 -32.298 4.456 11.309 -32.298 4 19.448 -30 5.758 19.448 -34.242
+5 24 5.758 19.448 -34.242 5.758 11.919 -34.242 4.456 19.448 -32.298 7.702 19.448 -35.544
+5 24 7.702 19.448 -35.544 7.702 12.328 -35.544 5.758 19.448 -34.242 9 19.448 -35.802
+5 24 10 19.448 -36 10 13.412 -36 9 19.448 -35.802 12.298 19.448 -35.544
+5 24 12.298 19.448 -35.544 12.298 15.432 -35.544 10 19.448 -36 14.242 19.448 -34.242
+5 24 14.242 19.448 -34.242 14.242 16.853 -34.242 12.298 19.448 -35.544 15.544 19.448 -32.298
+5 24 15.544 19.448 -32.298 15.544 17.468 -32.298 14.242 19.448 -34.242 16 19.448 -30
+5 24 16 19.448 -30 16 17.176 -30 15.544 19.448 -32.298 15.544 19.448 -27.702
+5 24 12.298 20 -44.456 12.298 18.227 -44.456 13.838 20 -45.487 10 20 -44
+5 24 13.064 20 -42.608 13.064 18.369 -42.608 14.481 20 -43.557 10 20 -42
+5 24 10 20 -42 10 15.294 -42 13.064 20 -42.608 9 20 -42.198
+5 24 6.936 20 -42.608 6.936 14.544 -42.608 9 20 -42.198 4.344 20 -44.344
+5 24 4.344 20 -44.344 4.344 15.088 -44.344 6.936 20 -42.608 2.608 20 -46.936
+5 24 2.608 20 -46.936 2.608 15.901 -46.936 4.344 20 -44.344 2 20 -50
+5 24 2 20 -50 2 16.863 -50 2.608 20 -46.936 2.608 20 -53.064
+5 24 2.608 20 -53.064 2.608 17.824 -53.064 2 20 -50 4.344 20 -55.656
+5 24 4.344 20 -55.656 4.344 18.637 -55.656 2.608 20 -53.064 6.936 20 -57.392
+5 24 6.936 20 -57.392 6.936 19.182 -57.392 4.344 20 -55.656 9 20 -57.802
+5 24 10 20 -44 10 15.922 -44 12.298 20 -44.456 9 20 -44.198
+5 24 7.702 20 -44.456 7.702 15.123 -44.456 9 20 -44.198 5.758 20 -45.758
+5 24 5.758 20 -45.758 5.758 15.532 -45.758 7.702 20 -44.456 4.456 20 -47.702
+5 24 4.456 20 -47.702 4.456 16.142 -47.702 5.758 20 -45.758 4 20 -50
+5 24 4 20 -50 4 16.863 -50 4.456 20 -47.702 4.456 20 -52.298
+5 24 4.456 20 -52.298 4.456 17.584 -52.298 4 20 -50 5.758 20 -54.242
+5 24 5.758 20 -54.242 5.758 18.194 -54.242 4.456 20 -52.298 7.702 20 -55.544
+5 24 7.702 20 -55.544 7.702 18.602 -55.544 5.758 20 -54.242 9 20 -55.802
+5 24 10 20 -56 10 19.686 -56 9 20 -55.802 10.357 20 -55.929
+2 24 18.03 24 -32.91 21.896 24 -34.311
+4 16 18.03 24 -32.91 21.896 24 -34.311 21.896 20 -34.311 18.03 20 -32.91
+4 16 17.502 20 -47.493 14.481 20 -43.557 18.03 20 -32.91 21.896 20 -34.311
+2 24 18.03 20 -32.91 21.896 20 -34.311
+2 24 21.896 20 -34.311 21.896 24 -34.311
+2 24 18.03 20 -32.91 18.03 24 -32.91
+2 24 20.138 24 -26.586 24.004 24 -27.987
+4 16 24.004 24 -27.987 20.138 24 -26.586 20.138 20 -26.586 24.004 20 -27.987
+2 24 20.138 20 -26.586 24.004 20 -27.987
+2 24 24.004 20 -27.987 24.004 24 -27.987
+2 24 20.138 20 -26.586 20.138 24 -26.586
+2 24 23.948 24 -15.155 27.815 24 -16.556
+4 16 23.948 24 -15.155 27.815 24 -16.556 27.815 20 -16.556 23.948 20 -15.155
+2 24 30 24 -10 27.815 24 -16.556
+4 16 30 20 -10 27.815 20 -16.556 27.815 24 -16.556 30 24 -10
+2 24 23.948 24 -15.155 26 24 -9
+4 16 30 24 -10 27.815 24 -16.556 23.948 24 -15.155 26 24 -9
+4 16 23.948 20 -15.155 26 20 -9 26 24 -9 23.948 24 -15.155
+4 16 24.004 20 -27.987 20.138 20 -26.586 23.948 20 -15.155 27.815 20 -16.556
+2 24 23.948 20 -15.155 27.815 20 -16.556
+2 24 27.815 20 -16.556 27.815 24 -16.556
+2 24 23.948 20 -15.155 23.948 24 -15.155
+2 24 18.03 24 -32.91 20.138 24 -26.586
+4 16 24.004 24 -27.987 21.896 24 -34.311 18.03 24 -32.91 20.138 24 -26.586
+4 16 18.03 20 -32.91 20.138 20 -26.586 20.138 24 -26.586 18.03 24 -32.91
+2 24 24.004 24 -27.987 21.896 24 -34.311
+4 16 24.004 20 -27.987 21.896 20 -34.311 21.896 24 -34.311 24.004 24 -27.987
+2 24 17.392 19.448 -33.064 18.03 20 -32.91
+4 16 17.392 23 -33.064 18.03 23 -32.91 18.03 20 -32.91 17.392 19.448 -33.064
+2 24 17.392 19.448 -33.064 17.392 23 -33.064
+2 24 17.392 23 -33.064 18.03 23 -32.91
+2 24 19 23 -30 18.03 23 -32.91
+2 24 19 20 -30 18 19.059 -30
+4 16 19 23 -30 18 23 -30 18 19.059 -30 19 20 -30
+2 24 18 23 -30 18 19.059 -30
+2 24 19 23 -30 19 20 -30
+2 24 19 23 -30 18 23 -30
+2 24 17.392 23 -33.064 18 23 -30
+4 16 18.03 23 -32.91 17.392 23 -33.064 18 23 -30 19 23 -30
+2 24 -6 20 -28.5 2.298 20 -28.5
+2 24 -6 10.118 -28.5 2.298 10.118 -28.5
+4 16 -6 10.118 -28.5 2.298 10.118 -28.5 2.298 20 -28.5 -6 20 -28.5
+2 24 -6 10.118 -28.5 -6 20 -28.5
+2 24 2.298 10.118 -28.5 2.298 20 -28.5
+2 24 -6 11.059 -31.5 2.298 11.059 -31.5
+4 16 -6 20 -31.5 2.298 20 -31.5 2.298 11.059 -31.5 -6 11.059 -31.5
+2 24 -6 11.059 -31.5 -6 20 -31.5
+2 24 2.298 11.059 -31.5 2.298 20 -31.5
+2 24 -6 20 -31.5 2.298 20 -31.5
+4 16 2.298 20 -31.5 -6 20 -31.5 -6 20 -28.5 2.298 20 -28.5
+2 24 2 20 -30 2.298 20 -31.5
+2 24 2 20 -30 2.298 20 -28.5
+2 24 -6 20 -31.5 -6 20 -28.5
+0
+
+0 FILE p/3-4ring3.dat
+0 Ring  3 x 0.75
+0 Name: 3-4ring3.dat
+0 Author: Lance Hopenwasser [cavehop]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-11 [pneaster] Corrected Values
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 4 0 0 3.6956 0 1.5308 2.7717 0 1.1481 3 0 0
+4 16 3.6956 0 1.5308 2.8284 0 2.8284 2.1213 0 2.1213 2.7717 0 1.1481
+4 16 2.8284 0 2.8284 1.5308 0 3.6956 1.1481 0 2.7717 2.1213 0 2.1213
+4 16 1.5308 0 3.6956 0 0 4 0 0 3 1.1481 0 2.7717
+4 16 0 0 4 -1.5308 0 3.6956 -1.1481 0 2.7717 0 0 3
+4 16 -1.5308 0 3.6956 -2.8284 0 2.8284 -2.1213 0 2.1213 -1.1481 0 2.7717
+4 16 -2.8284 0 2.8284 -3.6956 0 1.5308 -2.7717 0 1.1481 -2.1213 0 2.1213
+4 16 -3.6956 0 1.5308 -4 0 0 -3 0 0 -2.7717 0 1.1481
+4 16 -4 0 0 -3.6956 0 -1.5308 -2.7717 0 -1.1481 -3 0 0
+4 16 -3.6956 0 -1.5308 -2.8284 0 -2.8284 -2.1213 0 -2.1213 -2.7717 0 -1.1481
+4 16 -2.8284 0 -2.8284 -1.5308 0 -3.6956 -1.1481 0 -2.7717 -2.1213 0 -2.1213
+4 16 -1.5308 0 -3.6956 0 0 -4 0 0 -3 -1.1481 0 -2.7717
+
+0 FILE parts/30359a.dat
+0 Bar  1 x  8 with Brick  1  x  2 Curved Top End
+0 Name: 30359a.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS Star Wars, laser cannon, cylinder, rounded, piston rod, bar, rod
+0 !KEYWORDS brick, support, connector, ion cannon, blaster, energy, binder
+0 !KEYWORDS Podracer
+
+0 !HISTORY 2004-11-06 [sbliss] Secondary author
+0 !HISTORY 2004-11-07 [guyvivan] Made BFC Compliant
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 -10 24 -20 10 24 -20
+2 24 10 24 -20 10 24 20
+2 24 10 24 20 -10 24 20
+2 24 -10 24 20 -10 24 -20
+2 24 -7 24 -16 7 24 -16
+2 24 7 24 -16 7 24 -11
+2 24 7 24 -9 7 24 9
+2 24 7 24 11 7 24 16
+2 24 -7 24 16 -7 24 11
+2 24 -7 24 9 -7 24 -9
+2 24 -7 24 -11 -7 24 -16
+2 24 7 24 16 -7 24 16
+2 24 -7 24 -16 -7 10 -16
+2 24 7 24 -16 7 10 -16
+2 24 7 24 16 7 10 16
+2 24 -7 24 16 -7 10 16
+2 24 -10 24 -20 -10 10 -20
+2 24 10 24 -20 10 10 -20
+2 24 10 24 20 10 10 20
+2 24 -10 24 20 -10 10 20
+1 16 0 10 -16 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 16 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 1 0 p/2-4edge.dat
+1 16 0 10 20 10 0 0 0 0 -10 0 1 0 p/2-4edge.dat
+1 16 0 4.415 0 -1 0 0 0 -4.89625 0 0 0 1 p/stud3a.dat
+1 16 0 4.415 0 0 0 4 0 -1.415 0 4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 -4 0 -1.415 0 4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 -4 0 -1.415 0 -4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 4 0 -1.415 0 -4 0 0 p/1-4cyls2.dat
+2 24 0 3 4 1.532 3.304 3.696
+2 24 1.532 3.304 3.696 2.828 3.56 2.828
+2 24 2.828 3.56 2.828 3.696 4.212 1.532
+2 24 3.696 4.212 1.532 4 4.415 0
+2 24 0 3 -4 1.532 3.304 -3.696
+2 24 1.532 3.304 -3.696 2.828 3.56 -2.828
+2 24 2.828 3.56 -2.828 3.696 4.212 -1.532
+2 24 3.696 4.212 -1.532 4 4.415 0
+2 24 0 3 -4 -1.532 3.304 -3.696
+2 24 -1.532 3.304 -3.696 -2.828 3.56 -2.828
+2 24 -2.828 3.56 -2.828 -3.696 4.212 -1.532
+2 24 -3.696 4.212 -1.532 -4 4.415 0
+2 24 0 3 4 -1.532 3.304 3.696
+2 24 -1.532 3.304 3.696 -2.828 3.56 2.828
+2 24 -2.828 3.56 2.828 -3.696 4.212 1.532
+2 24 -3.696 4.212 1.532 -4 4.415 0
+1 16 0 10 20 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 16 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 16 1 0 0 0 0 1 0 1 0 p/4-4ring6.dat
+1 16 0 10 -40 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 10 -120 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 10 -120 10 0 0 0 0 10 0 1 0 p/4-4edge.dat
+1 16 0 10 -120 10 0 0 0 0 10 0 -1 0 p/4-4disc.dat
+1 16 0 20 -130 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 10 -140 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 -124 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 -124 6 0 0 0 0 6 0 1 0 p/4-4disc.dat
+1 16 0 10 -140 10 0 0 0 0 10 0 1 0 p/4-4edge.dat
+4 16 10 24 -20 -10 24 -20 -7 24 -16 7 24 -16
+4 16 -10 24 -20 -10 24 20 -7 24 16 -7 24 -16
+4 16 -10 24 20 10 24 20 7 24 16 -7 24 16
+4 16 10 24 20 10 24 -20 7 24 -16 7 24 16
+4 16 -7 24 -16 -7 10 -16 7 10 -16 7 24 -16
+4 16 7 24 -16 7 10 -16 7 10 16 7 24 16
+4 16 7 24 16 7 17 16 -7 17 16 -7 24 16
+4 16 -7 24 16 -7 10 16 -7 10 -16 -7 24 -16
+4 16 10 24 -20 10 10 -20 -10 10 -20 -10 24 -20
+4 16 10 24 20 10 10 20 10 10 -20 10 24 -20
+4 16 -10 24 20 -10 20 20 10 20 20 10 24 20
+4 16 -10 24 -20 -10 10 -20 -10 10 20 -10 24 20
+1 16 0 10 -16 7 0 0 0 0 -7 0 -1 0 p/2-4disc.dat
+1 16 0 10 16 7 0 0 0 0 7 0 1 0 p/2-4ndis.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 1 0 p/2-4disc.dat
+1 16 0 10 20 2 0 0 0 0 2 0 -1 0 p/ring3.dat
+1 16 0 10 20 2 0 0 0 0 2 0 -1 0 p/ring4.dat
+1 16 0 10 20 10 0 0 0 0 10 0 -1 0 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 10 16 6 0 0 0 0 6 0 4 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 -16 7 0 0 0 0 -7 0 32 0 p/2-4cyli.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 40 0 p/2-4cyli.dat
+1 16 0 10 -120 4 0 0 0 0 4 0 80 0 p/4-4cyli.dat
+1 16 0 20 -130 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 0 20 -130 8 0 0 0 -4.319 0 0 0 -8 p/1-4cyls2.dat
+1 16 0 20 -130 -8 0 0 0 -4.319 0 0 0 -8 p/1-4cyls2.dat
+1 16 0 20 -130 -8 0 0 0 -4.319 0 0 0 8 p/1-4cyls2.dat
+1 16 0 20 -130 8 0 0 0 -4.319 0 0 0 8 p/1-4cyls2.dat
+1 16 0 20 -130 6 0 0 0 -1 0 0 0 6 p/4-4disc.dat
+0 BFC INVERTNEXT
+1 16 0 10 -140 6 0 0 0 0 6 0 16 0 p/4-4cyli.dat
+1 16 0 10 -140 10 0 0 0 0 10 0 20 0 p/4-4cyli.dat
+1 16 0 10 -140 2 0 0 0 0 2 0 1 0 p/ring3.dat
+1 16 0 10 -140 2 0 0 0 0 2 0 1 0 p/ring4.dat
+1 16 0 10 -40 3.58 0 -3.58 3.58 0 3.58 0 1 0 p/4-4edge.dat
+1 16 0 10 -40 3.58 0 -3.58 3.58 0 3.58 0 1 0 p/4-4disc.dat
+1 16 0 10 -20 -6.364 0 -6.364 6.364 0 -6.364 0 1 0 p/3-4edge.dat
+2 24 6.364 16.364 -20 5.388 17.016 -20
+2 24 -6.364 16.364 -20 -5.388 17.016 -20
+1 16 0 10 -31.429 1.193 0 1.193 -1.193 0 1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 1.591 0 1.591 -1.591 0 1.591 0 -11.429 0 p/1-4con3.dat
+1 16 0 10 -31.429 -1.193 0 1.193 -1.193 0 -1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 -1.591 0 1.591 -1.591 0 -1.591 0 -11.429 0 p/1-4con3.dat
+1 16 0 10 -31.429 -1.193 0 -1.193 1.193 0 -1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 -1.591 0 -1.591 1.591 0 -1.591 0 -11.429 0 p/1-4con3.dat
+4 16 2.238 15.402 -36 4.136 14.136 -36 3.579 13.579 -40 1.937 14.676 -40
+5 24 2.238 15.402 -36 1.937 14.676 -40 4.136 14.136 -36 0 15.849 -36
+4 16 1.937 14.676 -40 0 15.061 -40 0 15.849 -36 2.238 15.402 -36
+5 24 0 15.849 -36 0 15.061 -40 2.238 15.402 -36 -2.238 15.402 -36
+4 16 0 15.061 -40 -1.937 14.676 -40 -2.238 15.402 -36 0 15.849 -36
+5 24 -2.238 15.402 -36 -1.937 14.676 -40 -4.136 14.136 -36 0 15.849 -36
+4 16 -1.937 14.676 -40 -3.579 13.579 -40 -4.136 14.136 -36 -2.238 15.402 -36
+2 24 -2.238 15.402 -36 -5.388 17.016 -20
+2 24 -2.238 15.402 -36 0 15.849 -36
+2 24 2.238 15.402 -36 0 15.849 -36
+2 24 2.238 15.402 -36 5.388 17.016 -20
+3 16 2.238 15.402 -36 0 15.849 -36 -2.238 15.402 -36
+4 16 2.238 15.402 -36 -2.238 15.402 -36 -2.238 10 -36 2.238 10 -36
+4 16 4.136 14.136 -36 2.238 15.402 -36 5.388 17.016 -20 6.364 16.364 -20
+4 16 -6.364 16.364 -20 -5.388 17.016 -20 -2.238 15.402 -36 -4.136 14.136 -36
+4 16 -2.238 15.402 -36 -5.388 17.016 -20 -5.388 10 -20 -2.238 10 -36
+2 24 5.388 17.016 -20 5.388 10 -20
+2 24 2.238 15.402 -36 2.238 10 -36
+2 24 -5.388 17.016 -20 -5.388 10 -20
+2 24 -2.238 15.402 -36 -2.238 10 -36
+1 16 0 10 -36 2.238 0 0 0 0 -2.238 0 1 0 p/2-4edge.dat
+1 16 0 10 -20 5.388 0 0 0 0 -5.388 0 1 0 p/2-4edge.dat
+1 16 0 10 -36 2.238 0 0 0 0 -2.238 0 -1 0 p/2-4disc.dat
+4 16 2.238 10 -36 5.388 10 -20 5.388 17.016 -20 2.238 15.402 -36
+5 24 5.388 10 -20 2.238 10 -36 5.388 17.016 -20 4.978 7.938 -20
+5 24 -5.388 10 -20 -2.238 10 -36 -5.388 17.016 -20 -4.978 7.938 -20
+4 16 2.238 10 -36 2.068 9.144 -36 4.978 7.938 -20 5.388 10 -20
+5 24 4.978 7.938 -20 2.068 9.144 -36 5.388 10 -20 3.81 6.19 -20
+5 24 -4.978 7.938 -20 -2.068 9.144 -36 -5.388 10 -20 -3.81 6.19 -20
+4 16 2.068 9.144 -36 1.582 8.418 -36 3.81 6.19 -20 4.978 7.938 -20
+5 24 3.81 6.19 -20 1.582 8.418 -36 4.978 7.938 -20 2.062 5.022 -20
+5 24 -3.81 6.19 -20 -1.582 8.418 -36 -4.978 7.938 -20 -2.062 5.022 -20
+4 16 1.582 8.418 -36 0.856 7.932 -36 2.062 5.022 -20 3.81 6.19 -20
+5 24 2.062 5.022 -20 0.856 7.932 -36 3.81 6.19 -20 0 4.612 -20
+5 24 -2.062 5.022 -20 -0.856 7.932 -36 -3.81 6.19 -20 0 4.612 -20
+4 16 0.856 7.932 -36 0 7.762 -36 0 4.612 -20 2.062 5.022 -20
+5 24 0 4.612 -20 0 7.762 -36 2.062 5.022 -20 -2.062 5.022 -20
+4 16 -5.388 10 -20 -4.978 7.938 -20 -2.068 9.144 -36 -2.238 10 -36
+4 16 -4.978 7.938 -20 -3.81 6.19 -20 -1.582 8.418 -36 -2.068 9.144 -36
+4 16 -3.81 6.19 -20 -2.062 5.022 -20 -0.856 7.932 -36 -1.582 8.418 -36
+4 16 -2.062 5.022 -20 0 4.612 -20 0 7.762 -36 -0.856 7.932 -36
+2 24 3.062 19.391 -137.391 0 20 -138
+2 24 3.827 19.239 -136.88 3.062 19.391 -137.391
+2 24 5.657 18.016 -135.657 3.827 19.239 -136.88
+2 24 7.071 17.071 -133.541 5.657 18.016 -135.657
+2 24 7.391 16.592 -133.062 7.071 17.071 -133.541
+2 24 8 15.681 -130 7.391 16.592 -133.062
+2 24 8 15.681 -130 7.391 16.592 -126.938
+2 24 7.391 16.592 -126.938 7.071 17.071 -126.459
+2 24 7.071 17.071 -126.459 5.657 18.016 -124.343
+2 24 5.657 18.016 -124.343 3.827 19.239 -123.12
+2 24 3.827 19.239 -123.12 3.062 19.391 -122.609
+2 24 3.062 19.391 -122.609 0 20 -122
+2 24 -3.062 19.391 -122.609 0 20 -122
+2 24 -3.827 19.239 -123.12 -3.062 19.391 -122.609
+2 24 -5.657 18.016 -124.343 -3.827 19.239 -123.12
+2 24 -7.071 17.071 -126.459 -5.657 18.016 -124.343
+2 24 -7.391 16.592 -126.938 -7.071 17.071 -126.459
+2 24 -8 15.681 -130 -7.391 16.592 -126.938
+2 24 -8 15.681 -130 -7.391 16.592 -133.062
+2 24 -7.391 16.592 -133.062 -7.071 17.071 -133.541
+2 24 -7.071 17.071 -133.541 -5.657 18.016 -135.657
+2 24 -5.657 18.016 -135.657 -3.827 19.239 -136.88
+2 24 -3.827 19.239 -136.88 -3.062 19.391 -137.391
+2 24 -3.062 19.391 -137.391 0 20 -138
+1 16 0 0 -130 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 -130 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 -130 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -130 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -130 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -130 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -130 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 -130 5.543 1.908 -127.704
+2 24 5.543 1.908 -127.704 4.243 1.039 -125.757
+2 24 4.243 1.039 -125.757 3.827 0.915 -125.479
+2 24 3.827 0.915 -125.479 2.296 0.457 -124.457
+2 24 2.296 0.457 -124.457 0 0 -124
+2 24 0 0 -124 -2.296 0.457 -124.457
+2 24 -2.296 0.457 -124.457 -3.827 0.915 -125.479
+2 24 -3.827 0.915 -125.479 -4.243 1.039 -125.757
+2 24 -4.243 1.039 -125.757 -5.543 1.908 -127.704
+2 24 -5.543 1.908 -127.704 -6 2.213 -130
+2 24 -6 2.213 -130 -5.543 1.908 -132.296
+2 24 -5.543 1.908 -132.296 -4.243 1.039 -134.243
+2 24 -4.243 1.039 -134.243 -3.827 0.915 -134.521
+2 24 -3.827 0.915 -134.521 -2.296 0.457 -135.543
+2 24 -2.296 0.457 -135.543 0 0 -136
+2 24 0 0 -136 2.296 0.457 -135.543
+2 24 2.296 0.457 -135.543 3.827 0.915 -134.521
+2 24 3.827 0.915 -134.521 4.243 1.039 -134.243
+2 24 4.243 1.039 -134.243 5.543 1.908 -132.296
+2 24 5.543 1.908 -132.296 6 2.213 -130
+1 16 0 0 -10 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 -10 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 -10 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -10 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -10 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -10 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -10 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 -10 5.543 1.908 -7.704
+2 24 5.543 1.908 -7.704 4.243 1.039 -5.757
+2 24 4.243 1.039 -5.757 3.827 0.915 -5.479
+2 24 3.827 0.915 -5.479 2.296 0.457 -4.457
+2 24 2.296 0.457 -4.457 0 0 -4
+2 24 0 0 -4 -2.296 0.457 -4.457
+2 24 -2.296 0.457 -4.457 -3.827 0.915 -5.479
+2 24 -3.827 0.915 -5.479 -4.243 1.039 -5.757
+2 24 -4.243 1.039 -5.757 -5.543 1.908 -7.704
+2 24 -5.543 1.908 -7.704 -6 2.213 -10
+2 24 -6 2.213 -10 -5.543 1.908 -12.296
+2 24 -5.543 1.908 -12.296 -4.243 1.039 -14.243
+2 24 -4.243 1.039 -14.243 -3.827 0.915 -14.521
+2 24 -3.827 0.915 -14.521 -2.296 0.457 -15.543
+2 24 -2.296 0.457 -15.543 0 0 -16
+2 24 0 0 -16 2.296 0.457 -15.543
+2 24 2.296 0.457 -15.543 3.827 0.915 -14.521
+2 24 3.827 0.915 -14.521 4.243 1.039 -14.243
+2 24 4.243 1.039 -14.243 5.543 1.908 -12.296
+2 24 5.543 1.908 -12.296 6 2.213 -10
+1 16 0 0 10 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 10 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 10 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 10 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 10 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 10 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 10 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 10 5.543 1.908 12.296
+2 24 5.543 1.908 12.296 4.243 1.039 14.243
+2 24 4.243 1.039 14.243 3.827 0.915 14.521
+2 24 3.827 0.915 14.521 2.296 0.457 15.543
+2 24 2.296 0.457 15.543 0 0 16
+2 24 0 0 16 -2.296 0.457 15.543
+2 24 -2.296 0.457 15.543 -3.827 0.915 14.521
+2 24 -3.827 0.915 14.521 -4.243 1.039 14.243
+2 24 -4.243 1.039 14.243 -5.543 1.908 12.296
+2 24 -5.543 1.908 12.296 -6 2.213 10
+2 24 -6 2.213 10 -5.543 1.908 7.704
+2 24 -5.543 1.908 7.704 -4.243 1.039 5.757
+2 24 -4.243 1.039 5.757 -3.827 0.915 5.479
+2 24 -3.827 0.915 5.479 -2.296 0.457 4.457
+2 24 -2.296 0.457 4.457 0 0 4
+2 24 0 0 4 2.296 0.457 4.457
+2 24 2.296 0.457 4.457 3.827 0.915 5.479
+2 24 3.827 0.915 5.479 4.243 1.039 5.757
+2 24 4.243 1.039 5.757 5.543 1.908 7.704
+2 24 5.543 1.908 7.704 6 2.213 10
+1 16 7 15.31 10 0 -1 0 0 0 8.69 -1 0 0 p/box4-7a.dat
+2 24 7 10 11 7 24 11
+2 24 7 10 9 7 24 9
+2 24 6.468 7.319 11 6 6.62 11
+2 24 6.468 7.319 11 7 10 11
+2 24 6.468 7.319 9 6 6.62 9
+2 24 6.468 7.319 9 7 10 9
+2 24 6 6.62 9 6 6.62 11
+1 16 7 15.31 -10 0 -1 0 0 0 8.69 -1 0 0 p/box4-7a.dat
+2 24 7 10 -9 7 24 -9
+2 24 7 10 -11 7 24 -11
+2 24 6.468 7.319 -9 6 6.62 -9
+2 24 6.468 7.319 -9 7 10 -9
+2 24 6.468 7.319 -11 6 6.62 -11
+2 24 6.468 7.319 -11 7 10 -11
+2 24 6 6.62 -11 6 6.62 -9
+1 16 -7 15.31 -10 0 1 0 0 0 8.69 1 0 0 p/box4-7a.dat
+2 24 -7 10 -11 -7 24 -11
+2 24 -7 10 -9 -7 24 -9
+2 24 -6.468 7.319 -11 -6 6.62 -11
+2 24 -6.468 7.319 -11 -7 10 -11
+2 24 -6.468 7.319 -9 -6 6.62 -9
+2 24 -6.468 7.319 -9 -7 10 -9
+2 24 -6 6.62 -9 -6 6.62 -11
+1 16 -7 15.31 10 0 1 0 0 0 8.69 1 0 0 p/box4-7a.dat
+2 24 -7 10 9 -7 24 9
+2 24 -7 10 11 -7 24 11
+2 24 -6.468 7.319 9 -6 6.62 9
+2 24 -6.468 7.319 9 -7 10 9
+2 24 -6.468 7.319 11 -6 6.62 11
+2 24 -6.468 7.319 11 -7 10 11
+2 24 -6 6.62 11 -6 6.62 9
+1 16 0 10 -1 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 1 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 1 7 0 0 0 0 -7 0 -1 0 p/2-4disc.dat
+1 16 0 10 -1 7 0 0 0 0 -7 0 1 0 p/2-4disc.dat
+2 24 7 20 1 3.802 20 1
+2 24 7 20 -1 3.802 20 -1
+2 24 -7 20 1 -3.802 20 1
+2 24 -7 20 -1 -3.802 20 -1
+2 24 4 20 0 3.802 20 1
+2 24 4 20 0 3.802 20 -1
+2 24 -4 20 0 -3.802 20 -1
+2 24 -4 20 0 -3.802 20 1
+2 24 7 20 -1 7 20 1
+2 24 -7 20 -1 -7 20 1
+2 24 7 10 1 7 20 1
+2 24 7 10 -1 7 20 -1
+2 24 -7 10 1 -7 20 1
+2 24 -7 10 -1 -7 20 -1
+2 24 3.802 20 -1 3.802 4.283 -1
+2 24 3.802 20 1 3.802 4.283 1
+2 24 -3.802 20 1 -3.802 4.283 1
+2 24 -3.802 20 -1 -3.802 4.283 -1
+4 16 7 20 -1 7 10 -1 3.802 10 -1 3.802 20 -1
+4 16 -3.802 20 -1 -3.802 10 -1 -7 10 -1 -7 20 -1
+4 16 -7 20 1 -7 10 1 -3.802 10 1 -3.802 20 1
+4 16 3.802 20 1 3.802 10 1 7 10 1 7 20 1
+4 16 7 20 -1 3.802 20 -1 3.802 20 1 7 20 1
+4 16 -7 20 1 -3.802 20 1 -3.802 20 -1 -7 20 -1
+0
+
+0 FILE parts/3029.dat
+0 Plate  4 x 12
+0 Name: 3029.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 100 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -100 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 100 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -100 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 100 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -100 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 116 0 0 0 -4 0 0 0 36 p/box5.dat
+
+4 16 120 8 40 116 8 36 -116 8 36 -120 8 40
+0 Next Line was 4 16 120 8 -40 116 8 -36 -116 8 -36 -120 8 -40
+4 16 -120 8 -40 -116 8 -36 116 8 -36 120 8 -40
+0 Next Line was 4 16 120 8 40 116 8 36 116 8 -36 120 8 -40
+4 16 120 8 -40 116 8 -36 116 8 36 120 8 40
+4 16 -120 8 40 -116 8 36 -116 8 -36 -120 8 -40
+
+1 16 0 8 0 120 0 0 0 -8 0 0 0 40 p/box5.dat
+
+1 16 110 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 110 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 110 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 110 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/46667.dat
+0 Jet Engine Fan with 10 Blades and Technic Pin
+0 Name: 46667.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !CATEGORY Plane
+
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+1 16 0 0 -20 1 0 0 0 1 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 0.809017 0.587785 0 -0.587785 0.809017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 0.309017 0.951057 0 -0.951057 0.309017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 -0.309017 0.951057 0 -0.951057 -0.309017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 -0.809017 0.587785 0 -0.587785 -0.809017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 0 1 0 0 0 0 1 0 -1 0 p/connect.dat
+1 16 0 0 -20 -1 0 0 0 -1 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 -0.809017 -0.587785 0 0.587785 -0.809017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 -0.309017 -0.951057 0 0.951057 -0.309017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 0.309017 -0.951057 0 0.951057 0.309017 0 0 0 1 parts/s/46667s01.dat
+1 16 0 0 -20 0.809017 -0.587785 0 0.587785 0.809017 0 0 0 1 parts/s/46667s01.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 0 4 0 -24 0 p/4-4cyli.dat
+1 16 0 0 -20 9 0 0 0 0 9 0 -20 0 p/4-8sphe.dat
+1 16 0 0 0 9 0 0 0 0 9 0 -20 0 p/4-4cyli.dat
+1 16 0 0 0 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 0 -24 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 0 -24 4 0 0 0 0 4 0 -1 0 p/4-4disc.dat
+1 16 0 0 0 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 0 1 0 0 0 0 1 0 -1 0 p/4-4ring8.dat
+2 24 0 -9 -20 -2 -8.602 -20
+2 24 2 -8.602 -20 0 -9 -20
+2 24 0 -9 -10 -2 -8.602 -10
+2 24 2 -8.602 -10 0 -9 -10
+2 24 -2 -8.602 -20 -2 -8.602 -10
+2 24 2 -8.602 -20 2 -8.602 -10
+2 24 0 9 -20 2 8.602 -20
+2 24 -2 8.602 -20 0 9 -20
+2 24 0 9 -10 2 8.602 -10
+2 24 -2 8.602 -10 0 9 -10
+2 24 2 8.602 -20 2 8.602 -10
+2 24 -2 8.602 -20 -2 8.602 -10
+2 24 3.528 -8.259 -20 6.3639 -6.3639 -20
+2 24 6.3639 -6.3639 -20 6.715 -5.839 -20
+2 24 3.528 -8.259 -10 6.3639 -6.3639 -10
+2 24 6.3639 -6.3639 -10 6.715 -5.839 -10
+2 24 6.715 -5.839 -10 6.715 -5.839 -20
+2 24 3.528 -8.259 -20 3.528 -8.259 -10
+2 24 3.528 8.259 -20 6.3639 6.3639 -20
+2 24 6.3639 6.3639 -20 6.715 5.839 -20
+2 24 3.528 8.259 -10 6.3639 6.3639 -10
+2 24 6.3639 6.3639 -10 6.715 5.839 -10
+2 24 6.715 5.839 -10 6.715 5.839 -20
+2 24 3.528 8.259 -20 3.528 8.259 -10
+2 24 -3.528 8.259 -20 -6.3639 6.3639 -20
+2 24 -6.3639 6.3639 -20 -6.715 5.839 -20
+2 24 -3.528 8.259 -10 -6.3639 6.3639 -10
+2 24 -6.3639 6.3639 -10 -6.715 5.839 -10
+2 24 -6.715 5.839 -10 -6.715 5.839 -20
+2 24 -3.528 8.259 -20 -3.528 8.259 -10
+2 24 -3.528 -8.259 -20 -6.3639 -6.3639 -20
+2 24 -6.3639 -6.3639 -20 -6.715 -5.839 -20
+2 24 -3.528 -8.259 -10 -6.3639 -6.3639 -10
+2 24 -6.3639 -6.3639 -10 -6.715 -5.839 -10
+2 24 -6.715 -5.839 -10 -6.715 -5.839 -20
+2 24 -3.528 -8.259 -20 -3.528 -8.259 -10
+2 24 7.568 -4.562 -20 8.3151 -3.4443 -20
+2 24 8.3151 -3.4443 -20 8.847 -0.772 -20
+2 24 7.568 -4.562 -10 8.3151 -3.4443 -10
+2 24 8.3151 -3.4443 -10 8.847 -0.772 -10
+2 24 8.847 -0.772 -10 8.847 -0.772 -20
+2 24 7.568 -4.562 -10 7.568 -4.562 -20
+2 24 7.568 4.562 -20 8.3151 3.4443 -20
+2 24 8.3151 3.4443 -20 8.847 0.772 -20
+2 24 7.568 4.562 -10 8.3151 3.4443 -10
+2 24 8.3151 3.4443 -10 8.847 0.772 -10
+2 24 8.847 0.772 -10 8.847 0.772 -20
+2 24 7.568 4.562 -10 7.568 4.562 -20
+2 24 -7.568 4.562 -20 -8.3151 3.4443 -20
+2 24 -8.3151 3.4443 -20 -8.847 0.772 -20
+2 24 -7.568 4.562 -10 -8.3151 3.4443 -10
+2 24 -8.3151 3.4443 -10 -8.847 0.772 -10
+2 24 -8.847 0.772 -10 -8.847 0.772 -20
+2 24 -7.568 4.562 -10 -7.568 4.562 -20
+2 24 -7.568 -4.562 -20 -8.3151 -3.4443 -20
+2 24 -8.3151 -3.4443 -20 -8.847 -0.772 -20
+2 24 -7.568 -4.562 -10 -8.3151 -3.4443 -10
+2 24 -8.3151 -3.4443 -10 -8.847 -0.772 -10
+2 24 -8.847 -0.772 -10 -8.847 -0.772 -20
+2 24 -7.568 -4.562 -10 -7.568 -4.562 -20
+
+0 FILE parts/s/46667s01.dat
+0 ~Jet Engine Fan with 10 Blades and Technic Pin - Blade
+0 Name: s\46667s01.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Subpart UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+2 24 2 -8.602 0 2 -28.868 0
+4 16 2 -8.5 2 2 -28.868 2 2 -28.868 0 2 -8.5 0
+2 24 2 -28.868 0 2 -28.868 2
+2 24 0 -29 0 2 -28.868 0
+3 16 0 -29 0 -2 -28.868 0 2 -28.868 0
+2 24 0 -29 0 -2 -28.868 0
+2 24 2 -8.602 2 2 -28.868 2
+2 24 -2 -8.602 0 -2 -28.868 0
+4 16 2 -8.5 0 2 -28.868 0 -2 -28.868 0 -2 -8.5 0
+2 24 -2 -8.602 8 -14.13 -25.297 8
+4 16 -2 -8.602 8 -14.13 -25.297 8 -14.13 -25.297 10 -2 -8.602 10
+2 24 -2 -8.602 10 -14.13 -25.297 10
+4 16 -2 -8.602 10 -14.13 -25.297 10 -11.185 -26.75 10 2 -8.602 10
+2 24 2 -8.602 10 -11.185 -26.75 10
+2 24 -14.13 -25.297 10 -14.13 -25.297 8
+2 24 -11.185 -26.75 10 -14.13 -25.297 10
+3 16 -2 -26.868 0 -2 -28.868 0 -3.785 -28.751 1.1772
+5 24 -2 -26.868 0 -3.785 -28.751 1.1772 -2 -28.868 0 -3.524 -26.768 1.114
+3 16 -3.524 -26.768 1.114 -2 -26.868 0 -3.785 -28.751 1.1772
+5 24 -2 -26.868 0 -3.524 -26.768 1.114 -2 -24.868 0 -3.785 -28.751 1.1772
+5 24 -3.785 -28.751 1.1772 -3.524 -26.768 1.114 -2 -26.868 0 -7.505 -28.011 3.6307
+3 16 -7.505 -28.011 3.6307 -3.524 -26.768 1.114 -3.785 -28.751 1.1772
+5 24 -3.524 -26.768 1.114 -7.505 -28.011 3.6307 -3.785 -28.751 1.1772 -6.988 -26.079 3.648
+3 16 -3.524 -26.768 1.114 -7.505 -28.011 3.6307 -6.988 -26.079 3.648
+5 24 -3.524 -26.768 1.114 -6.988 -26.079 3.648 -3.263 -24.785 1.036 -7.505 -28.011 3.6307
+5 24 -7.505 -28.011 3.6307 -6.988 -26.079 3.648 -3.524 -26.768 1.114 -11.098 -26.793 6.0003
+3 16 -7.505 -28.011 3.6307 -11.098 -26.793 6.0003 -6.988 -26.079 3.648
+5 24 -11.098 -26.793 6.0003 -6.988 -26.079 3.648 -7.505 -28.011 3.6307 -10.333 -24.945 6.084
+3 16 -11.098 -26.793 6.0003 -10.333 -24.945 6.094 -6.988 -26.079 3.648
+5 24 -6.988 -26.079 3.648 -10.333 -24.945 6.094 -6.47 -24.148 3.668 -11.098 -26.793 6.0003
+5 24 -10.333 -24.945 6.094 -11.098 -26.793 6.0003 -6.988 -26.079 3.648 -14.13 -25.297 8
+3 16 -10.333 -24.945 6.094 -11.098 -26.793 6.0003 -14.13 -25.297 8
+5 24 -14.13 -25.297 8 -10.333 -24.945 6.094 -11.098 -26.793 6.0003 -12.94 -23.659 8
+3 16 -12.94 -23.659 8 -10.333 -24.945 6.094 -14.13 -25.297 8
+5 24 -10.333 -24.945 6.094 -12.94 -23.659 8 -9.568 -23.098 6.21 -14.13 -25.297 8
+2 24 -2 -28.868 0 -3.785 -28.751 1.1772
+2 24 -3.785 -28.751 1.1772 -7.505 -28.011 3.6307
+2 24 -7.505 -28.011 3.6307 -11.098 -26.793 6.0003
+2 24 -11.098 -26.793 6.0003 -14.13 -25.297 8
+3 16 2 -26.868 2 0 -29 3.2135 2 -28.868 2
+5 24 0 -29 3.2135 2 -26.868 2 2 -28.868 2 0 -27 3.337
+3 16 0 -29 3.2135 2 -26.868 2 0 -27 3.337
+5 24 2 -26.868 2 0 -27 3.337 2 -24.868 2 0 -29 3.2135
+5 24 0 -27 3.337 0 -29 3.2135 2 -26.868 2 -3.785 -28.751 5.51
+3 16 -3.785 -28.751 5.51 0 -29 3.2135 0 -27 3.337
+5 24 0 -27 3.337 -3.785 -28.751 5.51 0 -29 3.2135 -3.524 -26.768 5.694
+3 16 -3.524 -26.768 5.694 -3.785 -28.751 5.51 0 -27 3.337
+5 24 0 -27 3.337 -3.524 -26.768 5.694 0 -25 3.49 -3.785 -28.751 5.51
+5 24 -3.785 -28.751 5.51 -3.524 -26.768 5.694 0 -27 3.337 -7.505 -28.011 7.7672
+3 16 -3.785 -28.751 5.51 -3.524 -26.768 5.694 -7.505 -28.011 7.7672
+5 24 -3.524 -26.768 5.694 -7.505 -28.011 7.7672 -3.785 -28.751 5.51 -6.988 -26.079 8.01
+3 16 -3.524 -26.768 5.694 -6.988 -26.079 8.01 -7.505 -28.011 7.7672
+5 24 -3.524 -26.768 5.694 -6.988 -26.079 8.01 -3.263 -24.785 5.922 -7.505 -28.011 7.7672
+5 24 -6.988 -26.079 8.01 -7.505 -28.011 7.7672 -3.524 -26.768 5.694 -11.098 -26.793 9.9472
+3 16 -6.988 -26.079 8.01 -11.098 -26.793 9.9472 -7.505 -28.011 7.7672
+5 24 -11.098 -26.793 9.9472 -6.988 -26.079 8.01 -7.505 -28.011 7.7672 -9.964 -25.07 10
+3 16 -11.098 -26.793 9.9472 -6.988 -26.079 8.01 -9.964 -25.07 10
+5 24 -6.988 -26.079 8.01 -9.964 -25.07 10 -6.47 -24.148 8.311 -11.098 -26.793 9.9472
+5 24 -9.964 -25.07 10 -11.098 -26.793 9.9472 -6.988 -26.079 8.01 -11.185 -26.75 10
+3 16 -11.185 -26.75 10 -11.098 -26.793 9.9472 -9.964 -25.07 10
+2 24 2 -28.868 2 0 -29 3.2135
+2 24 0 -29 3.2135 -3.785 -28.751 5.51
+2 24 -3.785 -28.751 5.51 -7.505 -28.011 7.7672
+2 24 -7.505 -28.011 7.7672 -11.098 -26.793 9.9472
+2 24 -11.098 -26.793 9.9472 -11.185 -26.75 10
+4 16 2 -28.868 2 0 -29 3.2135 0 -29 0 2 -28.868 0
+5 24 0 -29 3.2135 0 -29 0 2 -28.868 2 -2 -28.868 0
+4 16 -2 -28.868 0 0 -29 0 0 -29 3.2135 -2 -28.868 4.427
+4 16 -2 -28.868 4.427 -3.785 -28.751 5.51 -3.785 -28.751 1.1772 -2 -28.868 0
+5 24 -3.785 -28.751 5.51 -3.785 -28.751 1.1772 -2 -28.868 4.427 -7.505 -28.011 3.6307
+4 16 -7.505 -28.011 3.6307 -3.785 -28.751 1.1772 -3.785 -28.751 5.51 -7.505 -28.011 7.7672
+5 24 -7.505 -28.011 3.6307 -7.505 -28.011 7.7672 -3.785 -28.751 1.1772 -11.098 -26.793 9.9472
+4 16 -7.505 -28.011 7.7672 -11.098 -26.793 9.9472 -11.098 -26.793 6.0003 -7.505 -28.011 3.6307
+5 24 -11.098 -26.793 9.9472 -11.098 -26.793 6.0003 -7.505 -28.011 7.7672 -14.13 -25.297 10
+4 16 -11.185 -26.75 6.0577 -11.098 -26.793 6.0003 -11.098 -26.793 9.9472 -11.185 -26.75 10
+4 16 -11.185 -26.75 10 -14.13 -25.297 10 -14.13 -25.297 8 -11.185 -26.75 6.0577
+3 16 -2 -8.602 0 -2 -10.793 0 -2.847 -10.625 5.03
+3 16 -2 -10.793 0 -2 -12.828 0 -3.364 -12.557 4.238
+5 24 -3.364 -12.557 4.238 -2 -10.793 0 -2 -12.828 0 -2.847 -10.625 5.03
+3 16 -2.847 -10.625 5.03 -2 -10.793 0 -3.364 -12.557 4.238
+5 24 -2 -10.793 0 -2.847 -10.625 5.03 -2 -8.602 0 -3.364 -12.557 4.238
+5 24 -3.364 -12.557 4.238 -2.847 -10.625 5.03 -2 -10.793 0 -4.575 -12.146 8
+3 16 -4.575 -12.146 8 -2.847 -10.625 5.03 -3.364 -12.557 4.238
+5 24 -2.847 -10.625 5.03 -4.575 -12.146 8 -3.364 -12.557 4.238 -3.347 -10.456 8
+3 16 -2.847 -10.625 5.03 -4.575 -12.146 8 -3.347 -10.456 8
+5 24 -2.847 -10.625 5.03 -3.347 -10.456 8 -2 -8.602 8 -4.575 -12.146 8
+5 24 -2.847 -10.625 5.03 -2 -8.602 0 -2 -10.793 0 -2 -8.602 8
+3 16 -2 -8.602 0 -2.847 -10.625 5.03 -2 -8.602 8
+5 24 -2.847 -10.625 5.03 -2 -8.602 8 -2 -8.602 0 -3.347 -10.456 8
+3 16 -2 -8.602 8 -2.847 -10.625 5.03 -3.347 -10.456 8
+3 16 -2 -12.828 0 -2 -14.863 0 -3.882 -14.489 3.963
+5 24 -2 -14.863 0 -3.882 -14.489 3.963 -4.4 -16.42 3.848 -2 -12.828 0
+5 24 -3.882 -14.489 3.963 -2 -12.828 0 -2 -14.863 0 -3.364 -12.557 4.238
+3 16 -3.364 -12.557 4.238 -2 -12.828 0 -3.882 -14.489 3.963
+5 24 -2 -12.828 0 -3.364 -12.557 4.238 -2 -10.793 0 -3.882 -14.489 3.963
+5 24 -3.364 -12.557 4.238 -3.882 -14.489 3.963 -2 -12.828 0 -5.741 -13.859 7.878
+3 16 -5.741 -13.859 7.878 -3.364 -12.557 4.238 -3.882 -14.489 3.963
+5 24 -3.364 -12.557 4.238 -5.741 -13.859 7.878 -3.882 -14.489 3.963 -4.575 -12.146 8
+3 16 -3.364 -12.557 4.238 -5.741 -13.859 7.878 -4.575 -12.146 8
+5 24 -3.364 -12.557 4.238 -4.575 -12.146 8 -2.847 -10.625 5.03 -5.741 -13.859 7.878
+5 24 -5.741 -13.859 7.878 -4.575 -12.146 8 -3.364 -12.557 4.238 -5.799 -13.83 8
+5 24 -5.741 -13.859 7.878 -5.799 -13.83 8 -4.575 -12.146 8 -6.989 -15.464 8
+3 16 -5.741 -13.859 7.878 -5.799 -13.83 8 -4.575 -12.146 8
+4 16 -2 -14.863 0 -2 -16.868 0 -2.219 -16.854 0.351 -4.4 -16.42 3.848
+5 24 -2 -14.863 0 -4.4 -16.42 3.848 -2.219 -16.854 0.351 -3.882 -14.489 3.963
+3 16 -4.4 -16.42 3.848 -3.882 -14.489 3.963 -2 -14.863 0
+5 24 -3.882 -14.489 3.963 -4.4 -16.42 3.848 -2 -14.863 0 -6.506 -15.706 7.225
+3 16 -3.882 -14.489 3.963 -4.4 -16.42 3.848 -6.506 -15.706 7.225
+5 24 -3.882 -14.489 3.963 -5.741 -13.859 7.878 -3.364 -12.557 4.238 -4.4 -16.42 3.848
+5 24 -3.882 -14.489 3.963 -6.506 -15.706 7.225 -4.4 -16.42 3.848 -5.741 -13.859 7.878
+3 16 -3.882 -14.489 3.963 -6.506 -15.706 7.225 -5.741 -13.859 7.878
+5 24 -6.506 -15.706 7.225 -5.741 -13.859 7.878 -3.882 -14.489 3.963 -6.989 -15.468 8
+3 16 -6.506 -15.706 7.225 -6.989 -15.468 8 -5.741 -13.859 7.878
+5 24 -5.741 -13.859 7.878 -6.989 -15.468 8 -5.799 -13.83 8 -6.506 -15.706 7.225
+3 16 -5.799 -13.83 8 -5.741 -13.859 7.878 -6.989 -15.468 8
+3 16 -2 -16.868 0 -2 -18.868 0 -2.48 -18.837 0.621
+5 24 -2 -16.868 0 -2.48 -18.837 0.621 -2 -18.868 0 -2.219 -16.854 0.351
+3 16 -2.219 -16.854 0.351 -2 -16.868 0 -2.48 -18.837 0.621
+5 24 -2 -16.868 0 -2.219 -16.854 0.351 -2 -14.863 0 -2.48 -18.837 0.621
+5 24 -2.48 -18.837 0.621 -2.219 -16.854 0.351 -2 -16.868 0 -4.917 -18.352 3.777
+3 16 -4.917 -18.352 3.777 -2.219 -16.854 0.351 -2.48 -18.837 0.621
+5 24 -2.219 -16.854 0.351 -4.917 -18.352 3.777 -2.48 -18.837 0.621 -4.4 -16.42 3.848
+3 16 -2.219 -16.854 0.351 -4.917 -18.352 3.777 -4.4 -16.42 3.848
+5 24 -2.219 -16.854 0.351 -4.4 -16.42 3.848 -2 -14.863 0 -4.917 -18.352 3.777
+5 24 -4.917 -18.352 3.777 -4.4 -16.42 3.848 -2.219 -16.854 0.351 -7.271 -17.554 6.824
+3 16 -4.917 -18.352 3.777 -7.271 -17.554 6.824 -4.4 -16.42 3.848
+5 24 -7.271 -17.554 6.824 -4.4 -16.42 3.848 -4.917 -18.352 3.777 -6.506 -15.706 7.225
+3 16 -7.271 -17.554 6.824 -6.506 -15.706 7.225 -4.4 -16.42 3.848
+5 24 -4.4 -16.42 3.848 -6.506 -15.706 7.225 -3.882 -14.489 3.963 -7.271 -17.554 6.824
+5 24 -6.506 -15.706 7.225 -7.271 -17.554 6.824 -4.4 -16.42 3.848 -8.179 -17.106 8
+3 16 -6.506 -15.706 7.225 -7.271 -17.554 6.824 -8.179 -17.106 8
+5 24 -8.179 -17.106 8 -6.506 -15.706 7.225 -7.271 -17.554 6.824 -6.989 -15.468 8
+3 16 -6.989 -15.468 8 -6.506 -15.706 7.225 -8.179 -17.106 8
+5 24 -6.506 -15.706 7.225 -6.989 -15.468 8 -5.741 -13.859 7.878 -8.179 -17.106 8
+3 16 -2 -18.868 0 -2 -20.868 0 -2.741 -20.819 0.804
+5 24 -2.741 -20.819 0.804 -2 -18.868 0 -2 -20.868 0 -2.48 -18.837 0.621
+3 16 -2.48 -18.837 0.621 -2 -18.868 0 -2.741 -20.819 0.804
+5 24 -2 -18.868 0 -2.48 -18.837 0.621 -2 -16.868 0 -2.741 -20.819 0.804
+5 24 -2.741 -20.819 0.804 -2.48 -18.837 0.621 -2 -18.868 0 -5.435 -20.284 3.729
+3 16 -5.435 -20.284 3.729 -2.48 -18.837 0.621 -2.741 -20.819 0.804
+5 24 -2.48 -18.837 0.621 -5.435 -20.284 3.729 -2.741 -20.819 0.804 -4.917 -18.352 3.777
+3 16 -2.48 -18.837 0.621 -5.435 -20.284 3.729 -4.917 -18.352 3.777
+5 24 -2.48 -18.837 0.621 -4.917 -18.352 3.777 -2.219 -16.854 0.351 -5.435 -20.284 3.729
+5 24 -5.435 -20.284 3.729 -4.917 -18.352 3.777 -2.48 -18.837 0.621 -8.037 -19.402 6.554
+3 16 -5.435 -20.284 3.729 -8.037 -19.402 6.554 -4.917 -18.352 3.777
+5 24 -8.037 -19.402 6.554 -4.917 -18.352 3.777 -5.435 -20.284 3.729 -7.271 -17.554 6.824
+3 16 -8.037 -19.402 6.554 -7.271 -17.554 6.824 -4.917 -18.352 3.777
+5 24 -4.917 -18.352 3.777 -7.271 -17.554 6.824 -4.4 -16.42 3.848 -8.037 -19.402 6.554
+5 24 -7.271 -17.554 6.824 -8.037 -19.402 6.554 -4.917 -18.352 3.777 -9.369 -18.744 8
+3 16 -7.271 -17.554 6.824 -8.037 -19.402 6.554 -9.369 -18.744 8
+5 24 -9.369 -18.744 8 -7.271 -17.554 6.824 -8.037 -19.402 6.554 -8.179 -17.106 8
+3 16 -8.179 -17.106 8 -7.271 -17.554 6.824 -9.369 -18.744 8
+5 24 -7.271 -17.554 6.824 -8.179 -17.106 8 -6.506 -15.706 7.225 -9.369 -18.744 8
+3 16 -2 -20.868 0 -2 -22.868 0 -3.002 -22.802 0.937
+5 24 -3.002 -22.802 0.937 -2 -20.868 0 -2 -22.868 0 -2.741 -20.819 0.804
+3 16 -2.741 -20.819 0.804 -2 -20.868 0 -3.002 -22.802 0.937
+5 24 -2 -20.868 0 -2.741 -20.819 0.804 -2 -18.868 0 -3.002 -22.802 0.937
+5 24 -3.002 -22.802 0.937 -2.741 -20.819 0.804 -2 -20.868 0 -5.952 -22.216 3.694
+3 16 -5.952 -22.216 3.694 -2.741 -20.819 0.804 -3.002 -22.802 0.937
+5 24 -2.741 -20.819 0.804 -5.952 -22.216 3.694 -3.002 -22.802 0.937 -5.435 -20.284 3.729
+3 16 -2.741 -20.819 0.804 -5.952 -22.216 3.694 -5.435 -20.284 3.729
+5 24 -2.741 -20.819 0.804 -5.435 -20.284 3.729 -2.48 -18.837 0.621 -5.952 -22.216 3.694
+5 24 -5.952 -22.216 3.694 -5.435 -20.284 3.729 -2.741 -20.819 0.804 -8.802 -21.25 6.358
+3 16 -5.952 -22.216 3.694 -8.802 -21.25 6.358 -5.435 -20.284 3.729
+5 24 -5.435 -20.284 3.729 -8.037 -19.402 6.554 -4.917 -18.352 3.777 -8.802 -21.25 6.358
+5 24 -8.802 -21.25 6.358 -5.435 -20.284 3.729 -5.952 -22.216 3.694 -8.037 -19.402 6.554
+3 16 -8.802 -21.25 6.358 -8.037 -19.402 6.554 -5.435 -20.284 3.729
+5 24 -8.037 -19.402 6.554 -8.802 -21.25 6.358 -5.435 -20.284 3.729 -10.559 -20.382 8
+3 16 -8.037 -19.402 6.554 -8.802 -21.25 6.358 -10.559 -20.382 8
+5 24 -10.559 -20.382 8 -8.037 -19.402 6.554 -8.802 -21.25 6.358 -9.369 -18.744 8
+3 16 -9.369 -18.744 8 -8.037 -19.402 6.554 -10.559 -20.382 8
+5 24 -8.037 -19.402 6.554 -9.369 -18.744 8 -7.271 -17.554 6.824 -10.559 -20.382 8
+3 16 -2 -22.868 0 -2 -24.868 0 -3.263 -24.785 1.036
+5 24 -3.263 -24.785 1.036 -2 -22.868 0 -2 -24.868 0 -3.002 -22.802 0.937
+3 16 -3.002 -22.802 0.937 -2 -22.868 0 -3.263 -24.785 1.036
+5 24 -2 -22.868 0 -3.002 -22.802 0.937 -2 -20.868 0 -3.263 -24.785 1.036
+5 24 -3.263 -24.785 1.036 -3.002 -22.802 0.937 -2 -22.868 0 -6.47 -24.148 3.668
+3 16 -6.47 -24.148 3.668 -3.002 -22.802 0.937 -3.263 -24.785 1.036
+5 24 -3.002 -22.802 0.937 -6.47 -24.148 3.668 -3.263 -24.785 1.036 -5.952 -22.216 3.694
+3 16 -3.002 -22.802 0.937 -6.47 -24.148 3.668 -5.952 -22.216 3.694
+5 24 -3.002 -22.802 0.937 -5.952 -22.216 3.694 -2.741 -20.819 0.804 -6.47 -24.148 3.668
+5 24 -6.47 -24.148 3.668 -5.952 -22.216 3.694 -3.002 -22.802 0.937 -9.568 -23.098 6.21
+3 16 -6.47 -24.148 3.668 -9.568 -23.098 6.21 -5.952 -22.216 3.694
+5 24 -9.568 -23.098 6.21 -5.952 -22.216 3.694 -6.47 -24.148 3.668 -8.802 -21.25 6.358
+3 16 -9.568 -23.098 6.21 -8.802 -21.25 6.358 -5.952 -22.216 3.694
+5 24 -5.952 -22.216 3.694 -8.802 -21.25 6.358 -5.435 -20.284 3.729 -9.568 -23.098 6.21
+5 24 -8.802 -21.25 6.358 -9.568 -23.098 6.21 -5.952 -22.216 3.694 -11.75 -22.021 8
+3 16 -8.802 -21.25 6.358 -9.568 -23.098 6.21 -11.75 -22.021 8
+5 24 -11.75 -22.021 8 -8.802 -21.25 6.358 -9.568 -23.098 6.21 -10.559 -20.382 8
+3 16 -10.559 -20.382 8 -8.802 -21.25 6.358 -11.75 -22.021 8
+5 24 -8.802 -21.25 6.358 -10.559 -20.382 8 -8.037 -19.402 6.554 -11.75 -22.021 8
+3 16 -2 -24.868 0 -2 -26.868 0 -3.524 -26.768 1.114
+5 24 -3.524 -26.768 1.114 -2 -24.868 0 -2 -26.868 0 -3.263 -24.785 1.036
+3 16 -3.263 -24.785 1.036 -2 -24.868 0 -3.524 -26.768 1.114
+5 24 -2 -24.868 0 -3.263 -24.785 1.036 -2 -22.868 0 -3.524 -26.768 1.114
+5 24 -3.524 -26.768 1.114 -3.263 -24.785 1.036 -2 -24.868 0 -6.988 -26.079 3.648
+3 16 -6.988 -26.079 3.648 -3.263 -24.785 1.036 -3.524 -26.768 1.114
+5 24 -3.263 -24.785 1.036 -6.988 -26.079 3.648 -3.524 -26.768 1.114 -6.47 -24.148 3.668
+3 16 -3.263 -24.785 1.036 -6.988 -26.079 3.648 -6.47 -24.148 3.668
+5 24 -3.263 -24.785 1.036 -6.47 -24.148 3.668 -3.002 -22.802 0.937 -6.988 -26.079 3.648
+5 24 -6.988 -26.079 3.648 -6.47 -24.148 3.668 -3.263 -24.785 1.036 -10.333 -24.945 6.094
+3 16 -6.988 -26.079 3.648 -10.333 -24.945 6.094 -6.47 -24.148 3.668
+5 24 -10.333 -24.945 6.094 -6.47 -24.148 3.668 -6.988 -26.079 3.648 -9.568 -23.098 6.21
+3 16 -10.333 -24.945 6.094 -9.568 -23.098 6.21 -6.47 -24.148 3.668
+5 24 -6.47 -24.148 3.668 -9.568 -23.098 6.21 -5.952 -22.216 3.694 -10.333 -24.945 6.094
+5 24 -9.568 -23.098 6.21 -10.333 -24.945 6.094 -6.47 -24.148 3.668 -12.94 -23.659 8
+3 16 -9.568 -23.098 6.21 -10.333 -24.945 6.094 -12.94 -23.659 8
+5 24 -12.94 -23.659 8 -9.568 -23.098 6.21 -10.333 -24.945 6.094 -11.75 -22.021 8
+3 16 -11.75 -22.021 8 -9.568 -23.098 6.21 -12.94 -23.659 8
+5 24 -9.568 -23.098 6.21 -11.75 -22.021 8 -8.802 -21.25 6.358 -12.94 -23.659 8
+3 16 2 -10.793 2 2 -8.602 2 1.436 -10.905 4.61
+5 24 2 -8.602 2 1.436 -10.905 4.61 2 -10.793 2 2 -8.602 10
+3 16 2 -8.602 2 2 -8.602 10 1.436 -10.905 4.61
+5 24 2 -8.602 10 1.436 -10.905 4.61 2 -8.602 2 0.271 -10.982 10
+3 16 2 -8.602 10 0.271 -10.982 10 1.436 -10.905 4.61
+3 16 2 -10.793 2 1.697 -12.888 2.772 2 -12.828 2
+5 24 1.697 -12.888 2.772 2 -10.793 2 2 -12.828 2 1.436 -10.905 4.61
+3 16 1.697 -12.888 2.772 2 -10.793 2 1.436 -10.905 4.61
+5 24 2 -10.793 2 1.436 -10.905 4.61 2 -8.602 2 1.697 -12.888 2.772
+5 24 1.436 -10.905 4.61 1.697 -12.888 2.772 2 -10.793 2 0 -13 7.094
+3 16 0 -13 7.094 1.697 -12.888 2.772 1.436 -10.905 4.61
+5 24 1.436 -10.905 4.61 0 -13 7.094 1.697 -12.888 2.772 0.271 -10.982 10
+3 16 0.271 -10.982 10 0 -13 7.094 1.436 -10.905 4.61
+5 24 1.436 -10.905 4.61 0.271 -10.982 10 2 -8.602 10 0 -13 7.094
+5 24 0 -13 7.094 0.271 -10.982 10 1.436 -10.905 4.61 -1.141 -12.925 10
+3 16 0 -13 7.094 0.271 -10.982 10 -1.141 -12.925 10
+3 16 2 -12.828 2 1.958 -14.871 2.075 2 -14.863 2
+5 24 1.958 -14.871 2.075 2 -12.828 2 2 -14.863 2 1.697 -12.888 2.772
+3 16 1.958 -14.871 2.075 2 -12.828 2 1.697 -12.888 2.772
+5 24 2 -12.828 2 1.697 -12.888 2.772 2 -10.793 2 1.958 -14.871 2.075
+5 24 1.697 -12.888 2.772 1.958 -14.871 2.075 2 -12.828 2 0 -15 5.572
+3 16 0 -15 5.572 1.958 -14.871 2.075 1.697 -12.888 2.772
+5 24 1.697 -12.888 2.772 0 -15 5.572 1.958 -14.871 2.075 0 -13 7.094
+3 16 0 -13 7.094 0 -15 5.572 1.697 -12.888 2.772
+5 24 1.697 -12.888 2.772 0 -13 7.094 1.436 -10.905 4.61 0 -15 5.572
+5 24 0 -15 5.572 0 -13 7.094 1.697 -12.888 2.772 -1.958 -14.871 9.069
+3 16 0 -15 5.572 0 -13 7.094 -1.958 -14.871 9.069
+5 24 0 -13 7.094 -1.958 -14.871 9.069 0 -15 5.572 -1.141 -12.925 10
+3 16 0 -13 7.094 -1.141 -12.925 10 -1.958 -14.871 9.069
+5 24 0 -13 7.094 -1.141 -12.925 10 0.271 -10.982 10 -1.958 -14.871 9.069
+5 24 -1.141 -12.925 10 -1.958 -14.871 9.069 0 -13 7.094 -2.479 -14.767 10
+3 16 -1.141 -12.925 10 -2.479 -14.767 10 -1.958 -14.871 9.069
+3 16 2 -14.863 2 1.958 -14.871 2.075 2 -16.868 2
+5 24 2 -14.863 2 1.958 -14.871 2.075 2 -12.828 2 2 -16.868 2
+5 24 1.958 -14.871 2.075 2 -16.868 2 2 -14.863 2 0 -17 4.772
+3 16 1.958 -14.871 2.075 0 -17 4.772 2 -16.868 2
+5 24 0 -17 4.772 1.958 -14.871 2.075 2 -16.868 2 0 -15 5.572
+3 16 0 -17 4.772 1.958 -14.871 2.075 0 -15 5.572
+5 24 1.958 -14.871 2.075 0 -15 5.572 1.697 -12.888 2.772 0 -17 4.772
+5 24 0 -15 5.572 0 -17 4.772 1.958 -14.871 2.075 -2.219 -16.854 7.849
+3 16 -2.219 -16.854 7.849 0 -17 4.772 0 -15 5.572
+5 24 0 -15 5.572 -2.219 -16.854 7.849 0 -17 4.772 -1.958 -14.871 9.069
+3 16 -1.958 -14.871 9.069 -2.219 -16.854 7.849 0 -15 5.572
+5 24 0 -15 5.572 -1.958 -14.871 9.069 0 -13 7.094 -2.219 -16.854 7.849
+5 24 -2.219 -16.854 7.849 -1.958 -14.871 9.069 0 -15 5.572 -3.771 -16.545 10
+3 16 -2.219 -16.854 7.849 -1.958 -14.871 9.069 -3.771 -16.545 10
+5 24 -1.958 -14.871 9.069 -3.771 -16.545 10 -2.219 -16.854 7.849 -2.479 -14.767 10
+3 16 -1.958 -14.871 9.069 -2.479 -14.767 10 -3.771 -16.545 10
+5 24 -1.958 -14.871 9.069 -2.479 -14.767 10 -1.141 -12.925 10 -3.771 -16.545 10
+3 16 2 -16.868 2 0 -19 4.269 2 -18.869 2
+5 24 0 -19 4.269 2 -16.868 2 2 -18.869 2 0 -17 4.772
+3 16 0 -19 4.269 2 -16.868 2 0 -17 4.772
+5 24 2 -16.868 2 0 -17 4.772 1.958 -14.871 2.075 0 -19 4.269
+5 24 0 -17 4.772 0 -19 4.269 2 -16.868 2 -2.48 -18.837 7.083
+3 16 -2.48 -18.837 7.083 0 -19 4.269 0 -17 4.772
+5 24 0 -17 4.772 -2.48 -18.837 7.083 0 -19 4.269 -2.219 -16.854 7.849
+3 16 -2.219 -16.854 7.849 -2.48 -18.837 7.083 0 -17 4.772
+5 24 0 -17 4.772 -2.219 -16.854 7.849 0 -15 5.572 -2.48 -18.837 7.083
+5 24 -2.48 -18.837 7.083 -2.219 -16.854 7.849 0 -17 4.772 -4.917 -18.352 9.848
+3 16 -2.48 -18.837 7.083 -2.219 -16.854 7.849 -4.917 -18.352 9.848
+5 24 -2.219 -16.854 7.849 -4.917 -18.352 9.848 -2.48 -18.837 7.083 -3.771 -16.545 10
+3 16 -2.219 -16.854 7.849 -3.771 -16.545 10 -4.917 -18.352 9.848
+5 24 -2.219 -16.854 7.849 -3.771 -16.545 10 -1.958 -14.871 9.069 -4.917 -18.352 9.848
+5 24 -3.771 -16.545 10 -4.917 -18.352 9.848 -2.219 -16.854 7.849 -5.051 -18.307 10
+3 16 -3.771 -16.545 10 -5.051 -18.307 10 -4.917 -18.352 9.848
+3 16 2 -18.869 2 0 -21 3.933 2 -20.868 2
+5 24 0 -21 3.933 2 -18.869 2 2 -20.868 2 0 -19 4.269
+3 16 0 -21 3.933 2 -18.869 2 0 -19 4.269
+5 24 2 -18.869 2 0 -19 4.269 2 -16.868 2 0 -21 3.933
+5 24 0 -19 4.269 0 -21 3.933 2 -18.869 2 -2.741 -20.819 6.581
+3 16 -2.741 -20.819 6.581 0 -21 3.933 0 -19 4.269
+5 24 0 -19 4.269 -2.741 -20.819 6.581 0 -21 3.933 -2.48 -18.837 7.083
+3 16 -2.48 -18.837 7.083 -2.741 -20.819 6.581 0 -19 4.269
+5 24 0 -19 4.269 -2.48 -18.837 7.083 0 -17 4.772 -2.741 -20.819 6.581
+5 24 -2.741 -20.819 6.581 -2.48 -18.837 7.083 0 -19 4.269 -5.435 -20.284 9.184
+3 16 -2.741 -20.819 6.581 -2.48 -18.837 7.083 -5.435 -20.284 9.184
+5 24 -2.48 -18.837 7.083 -5.435 -20.284 9.184 -2.741 -20.819 6.581 -4.917 -18.352 9.848
+3 16 -2.48 -18.837 7.083 -4.917 -18.352 9.848 -5.435 -20.284 9.184
+5 24 -2.48 -18.837 7.083 -4.917 -18.352 9.848 -2.219 -16.854 7.849 -5.435 -20.284 9.184
+5 24 -4.917 -18.352 9.848 -5.435 -20.284 9.184 -2.48 -18.837 7.083 -6.279 -19.998 10
+3 16 -4.917 -18.352 9.848 -6.279 -19.998 10 -5.435 -20.284 9.184
+5 24 -6.279 -19.998 10 -4.917 -18.352 9.848 -5.435 -20.284 9.184 -5.051 -18.307 10
+3 16 -6.279 -19.998 10 -4.917 -18.352 9.848 -5.051 -18.307 10
+5 24 -4.917 -18.352 9.848 -5.051 -18.307 10 -3.771 -16.545 10 -6.279 -19.998 10
+3 16 2 -20.868 2 0 -23 3.683 2 -22.868 2
+5 24 0 -23 3.683 2 -20.868 2 2 -22.868 2 0 -21 3.933
+3 16 0 -23 3.683 2 -20.868 2 0 -21 3.933
+5 24 2 -20.868 2 0 -21 3.933 2 -18.869 2 0 -23 3.683
+5 24 0 -21 3.933 0 -23 3.683 2 -20.868 2 -3.002 -22.802 6.209
+3 16 -3.002 -22.802 6.209 0 -23 3.683 0 -21 3.933
+5 24 0 -21 3.933 -3.002 -22.802 6.209 0 -23 3.683 -2.741 -20.819 6.581
+3 16 -2.741 -20.819 6.581 -3.002 -22.802 6.209 0 -21 3.933
+5 24 0 -21 3.933 -2.741 -20.819 6.581 0 -19 4.269 -3.002 -22.802 6.209
+5 24 -3.002 -22.802 6.209 -2.741 -20.819 6.581 0 -21 3.933 -5.952 -22.216 8.691
+3 16 -3.002 -22.802 6.209 -2.741 -20.819 6.581 -5.952 -22.216 8.691
+5 24 -2.741 -20.819 6.581 -5.952 -22.216 8.691 -3.002 -22.802 6.209 -5.435 -20.284 9.184
+3 16 -2.741 -20.819 6.581 -5.435 -20.284 9.184 -5.952 -22.216 8.691
+5 24 -2.741 -20.819 6.581 -5.435 -20.284 9.184 -2.48 -18.837 7.083 -5.952 -22.216 8.691
+5 24 -5.435 -20.284 9.184 -5.952 -22.216 8.691 -2.741 -20.819 6.581 -7.508 -21.689 10
+3 16 -5.435 -20.284 9.184 -7.508 -21.689 10 -5.952 -22.216 8.691
+5 24 -7.508 -21.689 10 -5.435 -20.284 9.184 -5.952 -22.216 8.691 -6.279 -19.998 10
+3 16 -7.508 -21.689 10 -5.435 -20.284 9.184 -6.279 -19.998 10
+5 24 -5.435 -20.284 9.184 -6.279 -19.998 10 -4.917 -18.352 9.848 -7.508 -21.689 10
+3 16 2 -22.868 2 0 -25 3.49 2 -24.868 2
+5 24 0 -25 3.49 2 -22.868 2 2 -24.868 2 0 -23 3.683
+3 16 0 -25 3.49 2 -22.868 2 0 -23 3.683
+5 24 2 -22.868 2 0 -23 3.683 2 -20.868 2 0 -25 3.49
+5 24 0 -23 3.683 0 -25 3.49 2 -22.868 2 -3.263 -24.785 5.922
+3 16 -3.263 -24.785 5.922 0 -25 3.49 0 -23 3.683
+5 24 0 -23 3.683 -3.263 -24.785 5.922 0 -25 3.49 -3.002 -22.802 6.209
+3 16 -3.002 -22.802 6.209 -3.263 -24.785 5.922 0 -23 3.683
+5 24 0 -23 3.683 -3.002 -22.802 6.209 0 -21 3.933 -3.263 -24.785 5.922
+5 24 -3.263 -24.785 5.922 -3.002 -22.802 6.209 0 -23 3.683 -6.47 -24.148 8.311
+3 16 -3.263 -24.785 5.922 -3.002 -22.802 6.209 -6.47 -24.148 8.311
+5 24 -3.002 -22.802 6.209 -6.47 -24.148 8.311 -3.263 -24.785 5.922 -5.952 -22.216 8.691
+3 16 -3.002 -22.802 6.209 -5.952 -22.216 8.691 -6.47 -24.148 8.311
+5 24 -3.002 -22.802 6.209 -5.952 -22.216 8.691 -2.741 -20.819 6.581 -6.47 -24.148 8.311
+5 24 -5.952 -22.216 8.691 -6.47 -24.148 8.311 -3.002 -22.802 6.209 -8.736 -23.38 10
+3 16 -5.952 -22.216 8.691 -8.736 -23.38 10 -6.47 -24.148 8.311
+5 24 -8.736 -23.38 10 -5.952 -22.216 8.691 -6.47 -24.148 8.311 -7.508 -21.689 10
+3 16 -8.736 -23.38 10 -5.952 -22.216 8.691 -7.508 -21.689 10
+5 24 -5.952 -22.216 8.691 -7.508 -21.689 10 -5.435 -20.284 9.184 -8.736 -23.38 10
+3 16 2 -24.868 2 0 -27 3.337 2 -26.868 2
+5 24 0 -27 3.337 2 -24.868 2 2 -26.868 2 0 -25 3.49
+3 16 0 -27 3.337 2 -24.868 2 0 -25 3.49
+5 24 2 -24.868 2 0 -25 3.49 2 -22.868 2 0 -27 3.337
+5 24 0 -25 3.49 0 -27 3.337 2 -24.868 2 -3.524 -26.768 5.694
+3 16 -3.524 -26.768 5.694 0 -27 3.337 0 -25 3.49
+5 24 0 -25 3.49 -3.524 -26.768 5.694 0 -27 3.337 -3.263 -24.785 5.922
+3 16 -3.263 -24.785 5.922 -3.524 -26.768 5.694 0 -25 3.49
+5 24 0 -25 3.49 -3.263 -24.785 5.922 0 -23 3.683 -3.524 -26.768 5.694
+5 24 -3.524 -26.768 5.694 -3.263 -24.785 5.922 0 -25 3.49 -6.988 -26.079 8.01
+3 16 -3.524 -26.768 5.694 -3.263 -24.785 5.922 -6.988 -26.079 8.01
+5 24 -3.263 -24.785 5.922 -6.988 -26.079 8.01 -3.524 -26.768 5.694 -6.47 -24.148 8.311
+3 16 -3.263 -24.785 5.922 -6.47 -24.148 8.311 -6.988 -26.079 8.01
+5 24 -3.263 -24.785 5.922 -6.47 -24.148 8.311 -3.002 -22.802 6.209 -6.988 -26.079 8.01
+5 24 -6.47 -24.148 8.311 -6.988 -26.079 8.01 -3.263 -24.785 5.922 -9.964 -25.07 10
+3 16 -6.47 -24.148 8.311 -9.964 -25.07 10 -6.988 -26.079 8.01
+5 24 -9.964 -25.07 10 -6.47 -24.148 8.311 -6.988 -26.079 8.01 -8.736 -23.38 10
+3 16 -9.964 -25.07 10 -6.47 -24.148 8.311 -8.736 -23.38 10
+5 24 -6.47 -24.148 8.311 -8.736 -23.38 10 -5.952 -22.216 8.691 -9.964 -25.07 10
+
+0 FILE parts/4349.dat
+0 Minifig Loudhailer
+0 Name: 4349.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !CATEGORY Minifig Accessory
+0 !KEYWORDS town, megaphone, cone, space gun, blaster, bullhorn
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2001-10-01 [pneaster] used existing primitives to enhance appearance
+0 !HISTORY 2001-11-30 [PTadmin] Official Update 2001-02
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [jriley] BFC compliancy (2003-06-08)
+0 !HISTORY 2008-07-08 [mikeheide] added edgelines (2007-11-02)
+0 !HISTORY 2008-07-09 [mikeheide] Corrected title (2008-03-01)
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 18 0 0 -1 1 0 0 0 -1 0 p/stud2.dat
+1 16 0 20 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 18 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 -4 6.666 0 0 0 0 6.666 0 1 0 p/4-4edge.dat
+1 16 0 0 -4 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 0 -22 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 0 -22 10 0 0 0 0 10 0 1 0 p/4-4edge.dat
+1 16 0 20 0 4 0 0 0 -1 0 0 0 4 p/4-4disc.dat
+1 16 0 0 18 7.104 0 0 0 0 7.104 0 -1 0 p/4-4disc.dat
+1 16 0 0 -4 1.4208 0 0 0 0 1.4208 0 1 0 p/4-4ring4.dat
+1 16 0 5.9533 0 4 0 0 0 14.0467 0 0 0 4 p/4-4cyli.dat
+1 16 0 0 -4 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 -3.25 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 -3.25 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 -2 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 -1.25 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 -0.5 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 -0.5 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 0.75 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 1.5 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 2.25 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 2.25 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 3.5 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 4.25 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 5 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 5 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 6.25 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 7 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 7.75 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 7.75 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 9 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 9.75 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 10.5 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 10.5 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 11.75 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 12.5 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 13.25 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 13.25 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 14.5 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+1 16 0 0 15.25 7.104 0 0 0 0 7.104 0 1 0 p/4-4edge.dat
+1 16 0 0 16 0.888 0 0 0 0 0.888 0 -0.75 0 p/4-4con8.dat
+1 16 0 0 16 8 0 0 0 0 8 0 1.25 0 p/4-4cyli.dat
+1 16 0 0 16 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 17.25 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 13.25 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 14.5 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 10.5 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 11.75 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 7.75 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 9 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 5 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 6.25 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 2.25 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 3.5 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 -0.5 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 0.75 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 -3.25 8 0 0 0 0 8 0 1.25 0 p/4-4edge.dat
+1 16 0 0 -2 8 0 0 0 0 8 0 1 0 p/4-4edge.dat
+1 16 0 0 17.25 0.888 0 0 0 0 0.888 0 0.75 0 p/4-4con8.dat
+0 BFC INVERTNEXT
+1 16 0 0 -4 4 0 0 0 0 4 0 18 0 p/4-4cyli.dat
+1 16 0 0 14 4 0 0 0 0 4 0 1 0 p/4-4disc.dat
+1 16 0 0 14 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 0 -22 3.333 0 0 0 0 3.333 0 18 0 p/4-4con2.dat
+0 BFC INVERTNEXT
+1 16 0 0 -22 2 0 0 0 0 2 0 18 0 p/4-4con2.dat
+1 16 0 0 -22 2.5 0 0 0 0 2.5 0 1 0 p/4-4ring3.dat
+1 16 0 0 -22 1.5 0 0 0 0 1.5 0 1 0 p/4-4ring4.dat
+0
+2 24 3.70215 5.90586 1.5 3.79525 6.49892 1.03116
+2 24 3.70215 5.90586 1.5 3.696 5.9533 1.531
+2 24 4 6.76422 0 3.85108 6.86373 0.75
+2 24 3.79525 6.49892 1.03116 3.85108 6.85442 0.75
+2 24 3.062 7.391 2.47835 2.828 7.43754 2.828
+2 24 3.696 5.9533 1.531 3.21482 7.27982 2.25
+2 24 3.21482 7.28888 2.25 3.062 7.391 2.47835
+2 24 1.531 7.45549 3.696 1.82387 7.62949 3.5
+2 24 1.82387 7.63725 3.5 2.828 7.43754 2.828
+2 24 0 7.4 4 1.05396 7.43808 3.79072
+2 24 1.05396 7.43808 3.79072 1.531 7.45549 3.696
+2 24 -1.531 7.45564 3.696 0 7.4 4
+2 24 -2.828 7.43754 2.828 -1.82387 7.63725 3.5
+2 24 -1.82387 7.62949 3.5 -1.531 7.45564 3.696
+2 24 -3.696 5.95328 1.531 -3.57091 6.29801 1.71792
+2 24 -3.57091 6.29801 1.71792 -3.21482 7.27982 2.25
+2 24 -3.062 7.391 2.47835 -2.828 7.43754 2.828
+2 24 -3.21482 7.28888 2.25 -3.062 7.391 2.47835
+2 24 -4 6.76422 0 -3.85108 6.86373 0.75
+2 24 -3.75476 6.24083 1.23505 -3.85108 6.85442 0.75
+2 24 -3.70215 5.90586 1.5 -3.75476 6.24083 1.23505
+2 24 -3.70215 5.90586 1.5 -3.696 5.95328 1.531
+2 24 -3.70187 6.25728 -1.50142 -3.696 6.30255 -1.531
+2 24 -3.7518 5.87268 -1.25 -3.70187 6.25728 -1.50142
+2 24 -3.80706 6.22456 -0.971676 -3.90072 6.82123 -0.5
+2 24 -3.7518 5.87268 -1.25 -3.80706 6.22456 -0.971676
+2 24 -3.90072 6.83056 -0.5 -4 6.76422 0
+2 24 -2.828 7.43754 -2.828 -3.062 7.391 -2.47835
+2 24 -3.062 7.391 -2.47835 -3.38213 7.17709 -2
+2 24 -3.696 6.30255 -1.531 -3.38213 7.16796 -2
+2 24 -2.19743 7.55524 -3.25 -1.6993 7.25954 -3.58337
+2 24 -1.6993 7.25954 -3.58337 -1.531 7.15958 -3.696
+2 24 -2.828 7.43754 -2.828 -2.19743 7.56295 -3.25
+2 24 -1.531 7.15958 -3.696 0 7.104 -4
+2 24 0 7.104 -4 1.531 7.15931 -3.696
+2 24 2.19743 7.56295 -3.25 2.828 7.43754 -2.828
+2 24 1.55607 7.17419 -3.67922 2.19743 7.55524 -3.25
+2 24 1.531 7.15931 -3.696 1.55607 7.17419 -3.67922
+2 24 3.696 6.30272 -1.531 3.38213 7.16796 -2
+2 24 3.062 7.391 -2.47835 3.38213 7.17709 -2
+2 24 2.828 7.43754 -2.828 3.062 7.391 -2.47835
+2 24 3.90072 6.83056 -0.5 4 6.76422 0
+2 24 3.7518 5.87268 -1.25 3.696 6.30272 -1.531
+2 24 3.84139 6.44346 -0.798775 3.90072 6.82123 -0.5
+2 24 3.7518 5.87268 -1.25 3.84139 6.44346 -0.798775
+0
+
+0 FILE p/4-4con2.dat
+0 Cone  2 x 1.0
+0 Name: 4-4con2.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 1.8478 1 0.7654 2.7717 0 1.1481 3 0 0 2 1 0
+4 16 1.4142 1 1.4142 2.1213 0 2.1213 2.7717 0 1.1481 1.8478 1 0.7654
+4 16 0.7654 1 1.8478 1.1481 0 2.7717 2.1213 0 2.1213 1.4142 1 1.4142
+4 16 0 1 2 0 0 3 1.1481 0 2.7717 0.7654 1 1.8478
+4 16 -0.7654 1 1.8478 -1.1481 0 2.7717 0 0 3 0 1 2
+4 16 -1.4142 1 1.4142 -2.1213 0 2.1213 -1.1481 0 2.7717 -0.7654 1 1.8478
+4 16 -1.8478 1 0.7654 -2.7717 0 1.1481 -2.1213 0 2.1213 -1.4142 1 1.4142
+4 16 -2 1 0 -3 0 0 -2.7717 0 1.1481 -1.8478 1 0.7654
+4 16 -1.8478 1 -0.7654 -2.7717 0 -1.1481 -3 0 0 -2 1 0
+4 16 -1.4142 1 -1.4142 -2.1213 0 -2.1213 -2.7717 0 -1.1481 -1.8478 1 -0.7654
+4 16 -0.7654 1 -1.8478 -1.1481 0 -2.7717 -2.1213 0 -2.1213 -1.4142 1 -1.4142
+4 16 0 1 -2 0 0 -3 -1.1481 0 -2.7717 -0.7654 1 -1.8478
+4 16 0.7654 1 -1.8478 1.1481 0 -2.7717 0 0 -3 0 1 -2
+4 16 1.4142 1 -1.4142 2.1213 0 -2.1213 1.1481 0 -2.7717 0.7654 1 -1.8478
+4 16 1.8478 1 -0.7654 2.7717 0 -1.1481 2.1213 0 -2.1213 1.4142 1 -1.4142
+4 16 2 1 0 3 0 0 2.7717 0 -1.1481 1.8478 1 -0.7654
+
+5 24 2 1 0 3 0 0 1.8478 1 -0.7654 1.8478 1 0.7654
+5 24 1.8478 1 0.7654 2.7717 0 1.1481 2 1 0 1.4142 1 1.4142
+5 24 1.4142 1 1.4142 2.1213 0 2.1213 1.8478 1 0.7654 0.7654 1 1.8478
+5 24 0.7654 1 1.8478 1.1481 0 2.7717 1.4142 1 1.4142 0 1 2
+5 24 0 1 2 0 0 3 0.7654 1 1.8478 -0.7654 1 1.8478
+5 24 -0.7654 1 1.8478 -1.1481 0 2.7717 0 1 2 -1.4142 1 1.4142
+5 24 -1.4142 1 1.4142 -2.1213 0 2.1213 -0.7654 1 1.8478 -1.8478 1 0.7654
+5 24 -1.8478 1 0.7654 -2.7717 0 1.1481 -1.4142 1 1.4142 -2 1 0
+5 24 -2 1 0 -3 0 0 -1.8478 1 0.7654 -1.8478 1 -0.7654
+5 24 -1.8478 1 -0.7654 -2.7717 0 -1.1481 -2 1 0 -1.4142 1 -1.4142
+5 24 -1.4142 1 -1.4142 -2.1213 0 -2.1213 -1.8478 1 -0.7654 -0.7654 1 -1.8478
+5 24 -0.7654 1 -1.8478 -1.1481 0 -2.7717 -1.4142 1 -1.4142 0 1 -2
+5 24 0 1 -2 0 0 -3 -0.7654 1 -1.8478 0.7654 1 -1.8478
+5 24 0.7654 1 -1.8478 1.1481 0 -2.7717 0 1 -2 1.4142 1 -1.4142
+5 24 1.4142 1 -1.4142 2.1213 0 -2.1213 0.7654 1 -1.8478 1.8478 1 -0.7654
+5 24 1.8478 1 -0.7654 2.7717 0 -1.1481 1.4142 1 -1.4142 2 1 0
+
+0 FILE parts/4865a.dat
+0 Panel  1 x  2 x  1 with Square Corners
+0 Name: 4865a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-07-03 [Steffen] BFCed, subfiled
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2011-12-08 [PTadmin] Renamed from 4865
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/4865s01.dat
+4 16 20 24 10 -20 24 10 -20 0 10 20 0 10
+0
+
+0 FILE parts/s/4865s01.dat
+0 ~Panel  1 x  2 x  1 without Front Face
+0 Name: s\4865s01.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Subpart UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-07-03 [Steffen] BFCed, subfiled
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-10 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 20 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+4 16 -20 24 -10 -16 24 -6 16 24 -6 20 24 -10
+4 16 20 24 -10 16 24 -6 16 24 6 20 24 10
+2 24 20 24 10 -20 24 10
+2 24 -20 24 10 -20 24 -10
+2 24 -20 24 -10 20 24 -10
+2 24 20 24 -10 20 24 10
+2 24 20 16 6 -20 16 6
+2 24 -20 16 6 -20 16 -10
+2 24 -20 16 -10 20 16 -10
+2 24 20 16 -10 20 16 6
+2 24 20 0 10 -20 0 10
+2 24 -20 0 10 -20 0 6
+2 24 -20 0 6 20 0 6
+2 24 20 0 6 20 0 10
+2 24 20 0 6 20 16 6
+2 24 -20 0 6 -20 16 6
+2 24 20 16 -10 20 24 -10
+2 24 -20 16 -10 -20 24 -10
+2 24 20 0 10 20 24 10
+2 24 -20 0 10 -20 24 10
+4 16 20 16 -10 20 16 6 -20 16 6 -20 16 -10
+4 16 20 0 6 20 0 10 -20 0 10 -20 0 6
+4 16 -20 24 10 -20 24 -10 -20 16 -10 -20 16 6
+4 16 -20 24 -10 20 24 -10 20 16 -10 -20 16 -10
+4 16 20 24 -10 20 24 10 20 16 6 20 16 -10
+4 16 -20 24 10 -20 16 6 -20 0 6 -20 0 10
+4 16 -20 16 6 20 16 6 20 0 6 -20 0 6
+4 16 20 16 6 20 24 10 20 0 10 20 0 6
+0
+
+0 FILE parts/6231.dat
+0 Panel  1 x  1 x  1 Corner with Rounded Corners
+0 Name: 6231.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2001-10-12 [sparre] bug-fix
+0 !HISTORY 2001-11-30 [PTadmin] Official Update 2001-02
+0 !HISTORY 2007-10-26 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [mikeheide] BFC'd (2007-08-24)
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2011-01-24 [Rolf] Added rounded corners
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+2 24 10 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -10
+2 24 -10 24 -10 10 24 -10
+2 24 10 24 -10 10 24 10
+2 24 10 16 6 -6 16 6
+2 24 -6 16 6 -6 16 -10
+2 24 -6 16 -10 10 16 -10
+2 24 10 16 -10 10 16 6
+2 24 8 0 10 -10 0 10
+2 24 -10 0 10 -10 0 -8
+2 24 -6 0 -8 -6 0 6
+2 24 -6 0 6 8 0 6
+2 24 10 2 6 10 16 6
+2 24 -6 0 6 -6 16 6
+2 24 -6 2 -10 -6 16 -10
+2 24 10 16 -10 10 24 -10
+2 24 10 2 10 10 24 10
+2 24 -10 0 10 -10 24 10
+2 24 -10 2 -10 -10 24 -10
+
+4 16 -10 24 10 -6 24 6 6 24 6 10 24 10
+4 16 -10 24 -10 -6 24 -6 -6 24 6 -10 24 10
+4 16 10 24 -10 6 24 -6 -6 24 -6 -10 24 -10
+4 16 10 24 10 6 24 6 6 24 -6 10 24 -10
+0 BFC INVERTNEXT
+1 16 0 24 0 6 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 10 16 6 10 16 -10 -6 16 -10 -6 16 6
+4 16 -6 16 -10 10 16 -10 10 24 -10 -10 24 -10
+4 16 10 16 -10 10 16 6 10 24 10 10 24 -10
+4 16 10 2 10 10 24 10 10 16 6 10 2 6
+4 16 10 24 10 10 2 10 8 2 10 -10 24 10
+4 16 8 2 10 8 0 10 -10 0 10 -10 24 10
+4 16 -10 24 10 -10 0 10 -10 0 -8 -10 2 -8
+4 16 -10 24 10 -10 2 -8 -10 2 -10 -10 24 -10
+4 16 -10 24 -10 -10 2 -10 -6 2 -10 -6 16 -10
+4 16 -6 16 -10 -6 2 -10 -6 2 -8 -6 16 6
+4 16 -6 2 -8 -6 0 -8 -6 0 6 -6 16 6
+4 16 -6 16 6 -6 0 6 8 0 6 8 2 6
+4 16 -6 16 6 8 2 6 10 2 6 10 16 6
+4 16 8 0 10 8 0 6 -6 0 6 -10 0 10
+4 16 -6 0 6 -6 0 -8 -10 0 -8 -10 0 10
+
+1 16 8 2 6 2 0 0 0 0 -2 0 2 0 p/1-4disc.dat
+1 16 8 2 10 2 0 0 0 0 -2 0 -2 0 p/1-4disc.dat
+1 16 8 2 6 2 0 0 0 0 -2 0 4 0 p/1-4cylo.dat
+1 16 -10 2 -8 0 2 0 0 0 -2 -2 0 0 p/1-4disc.dat
+1 16 -6 2 -8 0 -2 0 -2 0 0 0 0 -2 p/1-4disc.dat
+1 16 -10 2 -8 0 4 0 0 0 -2 -2 0 0 p/1-4cylo.dat
+0 //
+
+0 FILE parts/3030.dat
+0 Plate  4 x 10
+0 Name: 3030.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 80 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 96 0 0 0 -4 0 0 0 36 p/box5.dat
+
+4 16 100 8 40 96 8 36 -96 8 36 -100 8 40
+0 Next Line was 4 16 100 8 -40 96 8 -36 -96 8 -36 -100 8 -40
+4 16 -100 8 -40 -96 8 -36 96 8 -36 100 8 -40
+0 Next Line was 4 16 100 8 40 96 8 36 96 8 -36 100 8 -40
+4 16 100 8 -40 96 8 -36 96 8 36 100 8 40 
+4 16 -100 8 40 -96 8 36 -96 8 -36 -100 8 -40
+
+1 16 0 8 0 100 0 0 0 -8 0 0 0 40 p/box5.dat
+1 16 90 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/2736.dat
+0 Technic Axle Towball
+0 Name: 2736.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2014-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-07-07 [OrionP]  Lengthened ball post, added lines around ball post intersect, shrunk axle
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2003-01-21 [sbliss]  Completed header, BFC'ed
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-05-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-12-22 [MagFors] Primitive substitution
+0 !HISTORY 2014-06-21 [PTadmin] Official Update 2014-01
+
+1 16 0 0 0 0 1 0 1 0 0 0 0 1 p/axlehol2.dat
+1 16 0 0 0 0 1 0 1 0 0 0 0 1 p/axlehol9.dat
+1 16 17 0 0 0 1 0 1 0 0 0 0 1 p/axlehol2.dat
+1 16 17 0 0 0 1 0 1 0 0 0 0 1 p/axlehol9.dat
+1 16 0 0 0 0 17 0 1 0 0 0 0 1 p/axlehol8.dat
+1 16 17 0 0 0 -1 0 1 0 0 0 0 -1 p/axleend.dat
+1 16 0 0 0 0 -2 0 8 0 0 0 0 -8 p/4-4cylc.dat
+1 16 -2 0 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -2 0 0 0 1 0 4 0 0 0 0 4 p/4-4ring1.dat
+1 16 -2 0 0 0 -2 0 4 0 0 0 0 -4 p/4-4cyli.dat
+1 16 -12 0 0 0 -4 0 4 0 0 0 0 4 p/4-4cyl1sph2.dat
+1 16 -12 0 0 8 0 0 0 8 0 0 0 8 p/8-8sphe.dat
+
+
+0 FILE p/8-8sphe.dat
+0 Sphere 1.0
+0 Name: 8-8sphe.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-09-01 [BrickCaster] Added BFC statement
+0 !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 p/1-8sphe.dat
+1 16 0 0 0 1 0 0 0 -1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 1 0 0 0 -1 0 0 0 -1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 -1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 -1 0 0 0 -1 p/1-8sphe.dat
+
+0 FILE p/4-4cyl1sph2.dat
+0 Cylinder  1 LDU Truncated to Fit Sphere  2 LDU
+0 Name: 4-4cyl1sph2.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Primitive UPDATE 2014-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-06-21 [PTadmin] Official Update 2014-01
+
+0 // 1 47 0 0 0 2 0 0 0 2 0 0 0 2 8-8sphe.dat
+
+1 16 0 -2 0 1 0 0 0 0.3474 0 0 0 1 p/4-4cyli.dat
+
+2 24 0.9239 -1.6526 0.3827 1 -1.691 0
+2 24 0.8323 -1.6818 0.5197 0.9239 -1.6526 0.3827
+2 24 0.7071 -1.6642 0.7071 0.8323 -1.6818 0.5197
+2 24 0.5197 -1.6818 0.8323 0.7071 -1.6642 0.7071
+2 24 0.3827 -1.6526 0.9239 0.5197 -1.6818 0.8323
+2 24 0 -1.691 1 0.3827 -1.6526 0.9239
+
+2 24 -0.3827 -1.6526 0.9239 0 -1.691 1
+2 24 -0.7071 -1.6642 0.7071 -0.5197 -1.6818 0.8323
+2 24 -0.5197 -1.6818 0.8323 -0.3827 -1.6526 0.9239
+2 24 -0.8323 -1.6818 0.5197 -0.9239 -1.6526 0.3827
+2 24 -0.7071 -1.6642 0.7071 -0.8323 -1.6818 0.5197
+2 24 -0.9239 -1.6526 0.3827 -1 -1.691 0
+
+2 24 -1 -1.691 0 -0.9239 -1.6526 -0.3827
+2 24 -0.9239 -1.6526 -0.3827 -0.8323 -1.6818 -0.5197
+2 24 -0.8323 -1.6818 -0.5197 -0.7071 -1.6642 -0.7071
+2 24 -0.7071 -1.6642 -0.7071 -0.5197 -1.6818 -0.8323
+2 24 -0.5197 -1.6818 -0.8323 -0.3827 -1.6526 -0.9239
+2 24 -0.3827 -1.6526 -0.9239 0 -1.691 -1
+
+2 24 0 -1.691 -1 0.3827 -1.6526 -0.9239
+2 24 0.5197 -1.6818 -0.8323 0.7071 -1.6642 -0.7071
+2 24 0.3827 -1.6526 -0.9239 0.5197 -1.6818 -0.8323
+2 24 0.9239 -1.6526 -0.3827 0.8323 -1.6818 -0.5197
+2 24 0.8323 -1.6818 -0.5197 0.7071 -1.6642 -0.7071
+2 24 1 -1.691 0 0.9239 -1.6526 -0.3827
+
+
+0 FILE parts/6632.dat
+0 Technic Beam  3 x  0.5 Liftarm
+0 Name: 6632.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 -5 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+
+1 16 0 5 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -5 0 9 0 0 0 10 0 0 0 -9 p/2-4cyli.dat
+1 16 0 -5 0 1 0 0 0 10 0 0 0 1 p/axlehol4.dat
+1 16 0 -5 10 1 0 0 0 10 0 0 0 1 p/npeghol4.dat
+1 16 0 -5 40 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 5 40 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -5 40 9 0 0 0 10 0 0 0 9 p/2-4cyli.dat
+1 16 0 -5 40 1 0 0 0 10 0 0 0 -1 p/axlehol4.dat
+1 16 0 -5 30 1 0 0 0 10 0 0 0 -1 p/npeghol4.dat
+1 16 -9 0 20 0 1 0 0 0 5 -20 0 0 p/rect2p.dat
+1 16 9 0 20 0 -1 0 0 0 5 20 0 0 p/rect2p.dat
+1 16 0 -5 20 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 5 20 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -3 20 6 0 0 0 6 0 0 0 6 p/4-4cyli.dat
+1 16 0 5 0 3 0 0 0 -1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 -5 0 3 0 0 0 1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 -5 40 -3 0 0 0 1 0 0 0 3 p/2-4ring2.dat
+1 16 0 5 40 -3 0 0 0 -1 0 0 0 3 p/2-4ring2.dat
+1 16 0 -5 20 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 5 20 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+0
+
+0 FILE parts/45729.dat
+0 =Dish  6 x  6 Inverted With Hollow Studs
+0 Name: 45729.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Part Alias UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2012-02-22 [MagFors] Updated reference
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+0 !HISTORY 2012-08-11 [cwdee] Re-issue due to ommission from early downloads of 2012-02
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+0 !HISTORY 2013-12-14 [cwdee] Add = prefix
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Alias of 44375a; used for parts moulded in trans colours
+
+1 16 0 0 0  1 0 0  0 1 0  0 0 1 parts/44375a.dat
+
+0 FILE parts/3961.dat
+0 Dish  8 x  8 Inverted
+0 Name: 3961.dat
+0 Author: Lutz Uhlmann [El-Lutzo]
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS Space, Radar Dish, Round
+
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-09-27 [OrionP] Moved guts to subpart
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-05-09 [cwdee] Remove CATEGORY Round
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3961s01.dat
+
+1 16 0 3 0 20 0 0 0 -3 0 0 0 20 p/48/1-4con1.dat
+1 16 0 3 0 0 0 20 0 -3 0 -20 0 0 p/48/1-4con1.dat
+1 16 0 3 0 -20 0 0 0 -3 0 0 0 -20 p/48/1-4con1.dat
+1 16 0 3 0 0 0 -20 0 -3 0 20 0 0 p/48/1-4con1.dat
+1 16 0 9 0 20 0 0 0 -6 0 0 0 20 p/48/1-4con2.dat
+1 16 0 9 0 0 0 20 0 -6 0 -20 0 0 p/48/1-4con2.dat
+1 16 0 9 0 -20 0 0 0 -6 0 0 0 -20 p/48/1-4con2.dat
+1 16 0 9 0 0 0 -20 0 -6 0 20 0 0 p/48/1-4con2.dat
+1 16 0 16 0 20 0 0 0 -7 0 0 0 20 p/48/1-4con3.dat
+1 16 0 16 0 0 0 20 0 -7 0 -20 0 0 p/48/1-4con3.dat
+1 16 0 16 0 -20 0 0 0 -7 0 0 0 -20 p/48/1-4con3.dat
+1 16 0 16 0 0 0 -20 0 -7 0 20 0 0 p/48/1-4con3.dat
+0
+
+0 FILE p/48/1-4con3.dat
+0 Hi-Res Cone  3 x 0.25
+0 Name: 48\1-4con3.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Recreated CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 3 1 0 2.9742 1 0.3915 3.9656 0 0.522 4 0 0
+4 16 2.9742 1 0.3915 2.8977 1 0.7764 3.8636 0 1.0352 3.9656 0 0.522
+4 16 2.8977 1 0.7764 2.7717 1 1.1481 3.6956 0 1.5308 3.8636 0 1.0352
+4 16 2.7717 1 1.1481 2.598 1 1.5 3.464 0 2 3.6956 0 1.5308
+4 16 2.598 1 1.5 2.3802 1 1.8264 3.1736 0 2.4352 3.464 0 2
+4 16 2.3802 1 1.8264 2.1213 1 2.1213 2.8284 0 2.8284 3.1736 0 2.4352
+4 16 2.1213 1 2.1213 1.8264 1 2.3802 2.4352 0 3.1736 2.8284 0 2.8284
+4 16 1.8264 1 2.3802 1.5 1 2.598 2 0 3.464 2.4352 0 3.1736
+4 16 1.5 1 2.598 1.1481 1 2.7717 1.5308 0 3.6956 2 0 3.464
+4 16 1.1481 1 2.7717 0.7764 1 2.8977 1.0352 0 3.8636 1.5308 0 3.6956
+4 16 0.7764 1 2.8977 0.3915 1 2.9742 0.522 0 3.9656 1.0352 0 3.8636
+4 16 0.3915 1 2.9742 0 1 3 0 0 4 0.522 0 3.9656
+0 // conditional lines
+5 24 3 1 0 4 0 0 3 1 -0.395 2.9743 1 0.3916
+5 24 2.9742 1 0.3915 3.9656 0 0.522 3 1 0 2.8978 1 0.7765
+5 24 2.8977 1 0.7764 3.8636 0 1.0352 2.9743 1 0.3916 2.7716 1 1.1481
+5 24 2.7717 1 1.1481 3.6956 0 1.5308 2.8978 1 0.7765 2.5981 1 1.5
+5 24 2.598 1 1.5 3.464 0 2 2.7716 1 1.1481 2.3801 1 1.8263
+5 24 2.3802 1 1.8264 3.1736 0 2.4352 2.5981 1 1.5 2.1213 1 2.1213
+5 24 2.1213 1 2.1213 2.8284 0 2.8284 2.3801 1 1.8263 1.8263 1 2.3801
+5 24 1.8264 1 2.3802 2.4352 0 3.1736 2.1213 1 2.1213 1.5 1 2.5981
+5 24 1.5 1 2.598 2 0 3.464 1.8263 1 2.3801 1.1481 1 2.7716
+5 24 1.1481 1 2.7717 1.5308 0 3.6956 1.5 1 2.5981 0.7765 1 2.8978
+5 24 0.7764 1 2.8977 1.0352 0 3.8636 1.1481 1 2.7716 0.3916 1 2.9743
+5 24 0.3915 1 2.9742 0.522 0 3.9656 0.7765 1 2.8978 0 1 3
+5 24 0 1 3 0 0 4 0.3916 1 2.9743 -0.395 1 3
+0 // Built by Primitive Generator 2
+
+0 FILE p/48/1-4con2.dat
+0 Hi-Res Cone  2 x 0.25
+0 Name: 48\1-4con2.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Recreated CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 2 1 0 1.9828 1 0.261 2.9742 0 0.3915 3 0 0
+4 16 1.9828 1 0.261 1.9318 1 0.5176 2.8977 0 0.7764 2.9742 0 0.3915
+4 16 1.9318 1 0.5176 1.8478 1 0.7654 2.7717 0 1.1481 2.8977 0 0.7764
+4 16 1.8478 1 0.7654 1.732 1 1 2.598 0 1.5 2.7717 0 1.1481
+4 16 1.732 1 1 1.5868 1 1.2176 2.3802 0 1.8264 2.598 0 1.5
+4 16 1.5868 1 1.2176 1.4142 1 1.4142 2.1213 0 2.1213 2.3802 0 1.8264
+4 16 1.4142 1 1.4142 1.2176 1 1.5868 1.8264 0 2.3802 2.1213 0 2.1213
+4 16 1.2176 1 1.5868 1 1 1.732 1.5 0 2.598 1.8264 0 2.3802
+4 16 1 1 1.732 0.7654 1 1.8478 1.1481 0 2.7717 1.5 0 2.598
+4 16 0.7654 1 1.8478 0.5176 1 1.9318 0.7764 0 2.8977 1.1481 0 2.7717
+4 16 0.5176 1 1.9318 0.261 1 1.9828 0.3915 0 2.9742 0.7764 0 2.8977
+4 16 0.261 1 1.9828 0 1 2 0 0 3 0.3915 0 2.9742
+0 // conditional lines
+5 24 2 1 0 3 0 0 2 1 -0.2633 1.9829 1 0.2611
+5 24 1.9828 1 0.261 2.9742 0 0.3915 2 1 0 1.9319 1 0.5176
+5 24 1.9318 1 0.5176 2.8977 0 0.7764 1.9829 1 0.2611 1.8478 1 0.7654
+5 24 1.8478 1 0.7654 2.7717 0 1.1481 1.9319 1 0.5176 1.7321 1 1
+5 24 1.732 1 1 2.598 0 1.5 1.8478 1 0.7654 1.5867 1 1.2175
+5 24 1.5868 1 1.2176 2.3802 0 1.8264 1.7321 1 1 1.4142 1 1.4142
+5 24 1.4142 1 1.4142 2.1213 0 2.1213 1.5867 1 1.2175 1.2175 1 1.5867
+5 24 1.2176 1 1.5868 1.8264 0 2.3802 1.4142 1 1.4142 1 1 1.7321
+5 24 1 1 1.732 1.5 0 2.598 1.2175 1 1.5867 0.7654 1 1.8478
+5 24 0.7654 1 1.8478 1.1481 0 2.7717 1 1 1.7321 0.5176 1 1.9319
+5 24 0.5176 1 1.9318 0.7764 0 2.8977 0.7654 1 1.8478 0.2611 1 1.9829
+5 24 0.261 1 1.9828 0.3915 0 2.9742 0.5176 1 1.9319 0 1 2
+5 24 0 1 2 0 0 3 0.2611 1 1.9829 -0.2633 1 2
+0 // Built by Primitive Generator 2
+
+0 FILE p/48/1-4con1.dat
+0 Hi-Res Cone  1 x 0.25
+0 Name: 48\1-4con1.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Recreated CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 1 1 0 0.9914 1 0.1305 1.9828 0 0.261 2 0 0
+4 16 0.9914 1 0.1305 0.9659 1 0.2588 1.9318 0 0.5176 1.9828 0 0.261
+4 16 0.9659 1 0.2588 0.9239 1 0.3827 1.8478 0 0.7654 1.9318 0 0.5176
+4 16 0.9239 1 0.3827 0.866 1 0.5 1.732 0 1 1.8478 0 0.7654
+4 16 0.866 1 0.5 0.7934 1 0.6088 1.5868 0 1.2176 1.732 0 1
+4 16 0.7934 1 0.6088 0.7071 1 0.7071 1.4142 0 1.4142 1.5868 0 1.2176
+4 16 0.7071 1 0.7071 0.6088 1 0.7934 1.2176 0 1.5868 1.4142 0 1.4142
+4 16 0.6088 1 0.7934 0.5 1 0.866 1 0 1.732 1.2176 0 1.5868
+4 16 0.5 1 0.866 0.3827 1 0.9239 0.7654 0 1.8478 1 0 1.732
+4 16 0.3827 1 0.9239 0.2588 1 0.9659 0.5176 0 1.9318 0.7654 0 1.8478
+4 16 0.2588 1 0.9659 0.1305 1 0.9914 0.261 0 1.9828 0.5176 0 1.9318
+4 16 0.1305 1 0.9914 0 1 1 0 0 2 0.261 0 1.9828
+0 // conditional lines
+5 24 1 1 0 2 0 0 1 1 -0.1317 0.9914 1 0.1305
+5 24 0.9914 1 0.1305 1.9828 0 0.261 1 1 0 0.9659 1 0.2588
+5 24 0.9659 1 0.2588 1.9318 0 0.5176 0.9914 1 0.1305 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 1.8478 0 0.7654 0.9659 1 0.2588 0.866 1 0.5
+5 24 0.866 1 0.5 1.732 0 1 0.9239 1 0.3827 0.7934 1 0.6088
+5 24 0.7934 1 0.6088 1.5868 0 1.2176 0.866 1 0.5 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 1.4142 0 1.4142 0.7934 1 0.6088 0.6088 1 0.7934
+5 24 0.6088 1 0.7934 1.2176 0 1.5868 0.7071 1 0.7071 0.5 1 0.866
+5 24 0.5 1 0.866 1 0 1.732 0.6088 1 0.7934 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.7654 0 1.8478 0.5 1 0.866 0.2588 1 0.9659
+5 24 0.2588 1 0.9659 0.5176 0 1.9318 0.3827 1 0.9239 0.1305 1 0.9914
+5 24 0.1305 1 0.9914 0.261 0 1.9828 0.2588 1 0.9659 0 1 1
+5 24 0 1 1 0 0 2 0.1305 1 0.9914 -0.1317 1 1
+0 // Built by Primitive Generator 2
+
+0 FILE parts/s/3961s01.dat
+0 ~Dish  8 x  8 Inverted without Top Surface
+0 Name: s\3961s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-03-31 [Philo] Improved center hole, optimized with new cone primitives
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+0 // Uncomment for top surface
+0 // 1 16 0 3 0 20 0 0 0 -3 0 0 0 20 48\4-4con1.dat
+0 // 1 16 0 9 0 20 0 0 0 -6 0 0 0 20 48\4-4con2.dat
+0 // 1 16 0 16 0 20 0 0 0 -7 0 0 0 20 48\4-4con3.dat
+
+
+2 24 16 4 10 16 4 -10
+2 24 -16 4 10 -16 4 -10
+2 24 10 4 16 -10 4 16
+2 24 10 4 -16 -10 4 -16
+2 24 16 8 10 16 8 -10
+2 24 -16 8 10 -16 8 -10
+2 24 10 8 16 -10 8 16
+2 24 10 8 -16 -10 8 -16
+4 16 16 4 -10 16 4 10 16 8 10 16 8 -10
+4 16 -16 4 10 -16 4 -10 -16 8 -10 -16 8 10
+4 16 10 4 16 -10 4 16 -10 8 16 10 8 16
+4 16 -10 4 -16 10 4 -16 10 8 -16 -10 8 -16
+1 16 10 4 10 6 0 0 0 1 0 0 0 6 p/1-4edge.dat
+1 16 -10 4 10 -6 0 0 0 1 0 0 0 6 p/1-4edge.dat
+1 16 -10 4 -10 -6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 10 4 -10 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 10 8 10 6 0 0 0 1 0 0 0 6 p/1-4edge.dat
+1 16 -10 8 10 -6 0 0 0 1 0 0 0 6 p/1-4edge.dat
+1 16 -10 8 -10 -6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 10 8 -10 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 4 10 6 0 0 0 4 0 0 0 6 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 4 10 -6 0 0 0 4 0 0 0 6 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 4 -10 -6 0 0 0 4 0 0 0 -6 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 4 -10 6 0 0 0 4 0 0 0 -6 p/1-4cyli.dat
+1 16 10 4 10 6 0 0 0 -1 0 0 0 6 p/1-4disc.dat
+1 16 -10 4 10 -6 0 0 0 -1 0 0 0 6 p/1-4disc.dat
+1 16 -10 4 -10 -6 0 0 0 -1 0 0 0 -6 p/1-4disc.dat
+1 16 10 4 -10 6 0 0 0 -1 0 0 0 -6 p/1-4disc.dat
+4 16 0 8 23 3.994 8 22.651 3.994 8 16 0 8 16
+4 16 3.994 8 22.651 7.866 8 21.613 7.866 8 16 3.994 8 16
+4 16 7.866 8 21.613 11.5 8 19.919 10 8 16 7.866 8 16
+4 16 11.5 8 19.919 14.784 8 17.619 13 8 15.196 10 8 16
+4 16 14.784 8 17.619 17.619 8 14.784 15.196 8 13 13 8 15.196
+4 16 17.619 8 14.784 19.919 8 11.5 16 8 10 15.196 8 13
+4 16 19.919 8 11.5 21.613 8 7.866 16 8 7.866 16 8 10
+4 16 21.613 8 7.866 22.651 8 3.994 16 8 3.994 16 8 7.866
+4 16 22.651 8 3.994 23 8 0 16 8 0 16 8 3.994
+4 16 -23 8 0 -22.651 8 3.994 -16 8 3.994 -16 8 0
+4 16 -22.651 8 3.994 -21.613 8 7.866 -16 8 7.866 -16 8 3.994
+4 16 -21.613 8 7.866 -19.919 8 11.5 -16 8 10 -16 8 7.866
+4 16 -19.919 8 11.5 -17.619 8 14.784 -15.196 8 13 -16 8 10
+4 16 -17.619 8 14.784 -14.784 8 17.619 -13 8 15.196 -15.196 8 13
+4 16 -14.784 8 17.619 -11.5 8 19.919 -10 8 16 -13 8 15.196
+4 16 -11.5 8 19.919 -7.866 8 21.613 -7.866 8 16 -10 8 16
+4 16 -7.866 8 21.613 -3.994 8 22.651 -3.994 8 16 -7.866 8 16
+4 16 -3.994 8 22.651 0 8 23 0 8 16 -3.994 8 16
+4 16 0 8 -23 -3.994 8 -22.651 -3.994 8 -16 0 8 -16
+4 16 -3.994 8 -22.651 -7.866 8 -21.613 -7.866 8 -16 -3.994 8 -16
+4 16 -7.866 8 -21.613 -11.5 8 -19.919 -10 8 -16 -7.866 8 -16
+4 16 -11.5 8 -19.919 -14.784 8 -17.619 -13 8 -15.196 -10 8 -16
+4 16 -14.784 8 -17.619 -17.619 8 -14.784 -15.196 8 -13 -13 8 -15.196
+4 16 -17.619 8 -14.784 -19.919 8 -11.5 -16 8 -10 -15.196 8 -13
+4 16 -19.919 8 -11.5 -21.613 8 -7.866 -16 8 -7.866 -16 8 -10
+4 16 -21.613 8 -7.866 -22.651 8 -3.994 -16 8 -3.994 -16 8 -7.866
+4 16 -22.651 8 -3.994 -23 8 0 -16 8 0 -16 8 -3.994
+4 16 23 8 0 22.651 8 -3.994 16 8 -3.994 16 8 0
+4 16 22.651 8 -3.994 21.613 8 -7.866 16 8 -7.866 16 8 -3.994
+4 16 21.613 8 -7.866 19.919 8 -11.5 16 8 -10 16 8 -7.866
+4 16 19.919 8 -11.5 17.619 8 -14.784 15.196 8 -13 16 8 -10
+4 16 17.619 8 -14.784 14.784 8 -17.619 13 8 -15.196 15.196 8 -13
+4 16 14.784 8 -17.619 11.5 8 -19.919 10 8 -16 13 8 -15.196
+4 16 11.5 8 -19.919 7.866 8 -21.613 7.866 8 -16 10 8 -16
+4 16 7.866 8 -21.613 3.994 8 -22.651 3.994 8 -16 7.866 8 -16
+4 16 3.994 8 -22.651 0 8 -23 0 8 -16 3.994 8 -16
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+4 16 -10 4 16 10 4 16 10 4 8 -10 4 8
+4 16 10 4 -16 -10 4 -16 -10 4 -8 10 4 -8
+4 16 16 4 10 16 4 -10 8 4 -10 8 4 10
+4 16 -16 4 -10 -16 4 10 -8 4 10 -8 4 -10
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ring1.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4ring3.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4ring4.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 0 0 20 0 0 0 1 0 0 0 20 p/48/4-4aring.dat
+1 16 0 0 0 20 0 0 0 1 0 0 0 20 p/48/4-4edge.dat
+1 16 0 4 0 23 0 0 0 1 0 0 0 23 p/48/4-4edge.dat
+1 16 0 8 0 23 0 0 0 1 0 0 0 23 p/48/4-4edge.dat
+1 16 0 16 0 80 0 0 0 1 0 0 0 80 p/48/4-4edge.dat
+1 16 0 24 0 80 0 0 0 1 0 0 0 80 p/48/4-4edge.dat
+1 16 0 24 0 76.5 0 0 0 1 0 0 0 76.5 p/48/4-4edge.dat
+1 16 0 20 0 76.5 0 0 0 1 0 0 0 76.5 p/48/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 76.5 0 0 0 -4 0 0 0 76.5 p/48/4-4cyli.dat
+1 16 0 24 0 80 0 0 0 -8 0 0 0 80 p/48/4-4cyli.dat
+1 16 0 24 0 1.5 0 0 0 -1 0 0 0 1.5 p/48/1-4rin51.dat
+1 16 0 24 0 2 0 0 0 -1 0 0 0 2 p/48/1-4rin39.dat
+1 16 0 24 0 0 0 -1.5 0 -1 0 1.5 0 0 p/48/1-4rin51.dat
+1 16 0 24 0 0 0 -2 0 -1 0 2 0 0 p/48/1-4rin39.dat
+1 16 0 24 0 -1.5 0 0 0 -1 0 0 0 -1.5 p/48/1-4rin51.dat
+1 16 0 24 0 -2 0 0 0 -1 0 0 0 -2 p/48/1-4rin39.dat
+1 16 0 24 0 0 0 1.5 0 -1 0 -1.5 0 0 p/48/1-4rin51.dat
+1 16 0 24 0 0 0 2 0 -1 0 -2 0 0 p/48/1-4rin39.dat
+1 16 0 4 0 23 0 0 0 4 0 0 0 23 p/48/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 4.1765 0 1 0 0 0 -0.1765 0 0 0 1 p/48/1-4con23.dat
+0 BFC INVERTNEXT
+1 16 0 5.5882 0 8 0 0 0 -1.4118 0 0 0 8 p/48/4-4con3.dat
+0 BFC INVERTNEXT
+1 16 0 4.177 0 0 0 1 0 -0.1765 0 -1 0 0 p/48/1-4con23.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 0 0 8 0 -1.4118 0 -8 0 0 p/48/4-4con4.dat
+0 BFC INVERTNEXT
+1 16 0 4.177 0 -1 0 0 0 -0.1765 0 0 0 -1 p/48/1-4con23.dat
+0 BFC INVERTNEXT
+1 16 0 4.177 0 0 0 -1 0 -0.1765 0 1 0 0 p/48/1-4con23.dat
+0 BFC INVERTNEXT
+1 16 0 20 0 4.5 0 0 0 -1.9091 0 0 0 4.5 p/48/4-4con16.dat
+0 BFC INVERTNEXT
+1 16 0 18.0909 0 12 0 0 0 -5.0909 0 0 0 12 p/48/4-4con5.dat
+0 BFC INVERTNEXT
+1 16 0 13 0 20 0 0 0 -6 0 0 0 20 p/48/4-4con2.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+
+0 FILE p/48/4-4con16.dat
+0 Hi-Res Cone 16 x 1.0
+0 Name: 48\4-4con16.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+4 16 16 1 0 15.8624 1 2.088 16.8538 0 2.2185 17 0 0
+4 16 15.8624 1 2.088 15.4544 1 4.1408 16.4203 0 4.3996 16.8538 0 2.2185
+4 16 15.4544 1 4.1408 14.7824 1 6.1232 15.7063 0 6.5059 16.4203 0 4.3996
+4 16 14.7824 1 6.1232 13.856 1 8 14.722 0 8.5 15.7063 0 6.5059
+4 16 13.856 1 8 12.6944 1 9.7408 13.4878 0 10.3496 14.722 0 8.5
+4 16 12.6944 1 9.7408 11.3136 1 11.3136 12.0207 0 12.0207 13.4878 0 10.3496
+4 16 11.3136 1 11.3136 9.7408 1 12.6944 10.3496 0 13.4878 12.0207 0 12.0207
+4 16 9.7408 1 12.6944 8 1 13.856 8.5 0 14.722 10.3496 0 13.4878
+4 16 8 1 13.856 6.1232 1 14.7824 6.5059 0 15.7063 8.5 0 14.722
+4 16 6.1232 1 14.7824 4.1408 1 15.4544 4.3996 0 16.4203 6.5059 0 15.7063
+4 16 4.1408 1 15.4544 2.088 1 15.8624 2.2185 0 16.8538 4.3996 0 16.4203
+4 16 2.088 1 15.8624 0 1 16 0 0 17 2.2185 0 16.8538
+4 16 0 1 16 -2.088 1 15.8624 -2.2185 0 16.8538 0 0 17
+4 16 -2.088 1 15.8624 -4.1408 1 15.4544 -4.3996 0 16.4203 -2.2185 0 16.8538
+4 16 -4.1408 1 15.4544 -6.1232 1 14.7824 -6.5059 0 15.7063 -4.3996 0 16.4203
+4 16 -6.1232 1 14.7824 -8 1 13.856 -8.5 0 14.722 -6.5059 0 15.7063
+4 16 -8 1 13.856 -9.7408 1 12.6944 -10.3496 0 13.4878 -8.5 0 14.722
+4 16 -9.7408 1 12.6944 -11.3136 1 11.3136 -12.0207 0 12.0207 -10.3496 0 13.4878
+4 16 -11.3136 1 11.3136 -12.6944 1 9.7408 -13.4878 0 10.3496 -12.0207 0 12.0207
+4 16 -12.6944 1 9.7408 -13.856 1 8 -14.722 0 8.5 -13.4878 0 10.3496
+4 16 -13.856 1 8 -14.7824 1 6.1232 -15.7063 0 6.5059 -14.722 0 8.5
+4 16 -14.7824 1 6.1232 -15.4544 1 4.1408 -16.4203 0 4.3996 -15.7063 0 6.5059
+4 16 -15.4544 1 4.1408 -15.8624 1 2.088 -16.8538 0 2.2185 -16.4203 0 4.3996
+4 16 -15.8624 1 2.088 -16 1 0 -17 0 0 -16.8538 0 2.2185
+4 16 -16 1 0 -15.8624 1 -2.088 -16.8538 0 -2.2185 -17 0 0
+4 16 -15.8624 1 -2.088 -15.4544 1 -4.1408 -16.4203 0 -4.3996 -16.8538 0 -2.2185
+4 16 -15.4544 1 -4.1408 -14.7824 1 -6.1232 -15.7063 0 -6.5059 -16.4203 0 -4.3996
+4 16 -14.7824 1 -6.1232 -13.856 1 -8 -14.722 0 -8.5 -15.7063 0 -6.5059
+4 16 -13.856 1 -8 -12.6944 1 -9.7408 -13.4878 0 -10.3496 -14.722 0 -8.5
+4 16 -12.6944 1 -9.7408 -11.3136 1 -11.3136 -12.0207 0 -12.0207 -13.4878 0 -10.3496
+4 16 -11.3136 1 -11.3136 -9.7408 1 -12.6944 -10.3496 0 -13.4878 -12.0207 0 -12.0207
+4 16 -9.7408 1 -12.6944 -8 1 -13.856 -8.5 0 -14.722 -10.3496 0 -13.4878
+4 16 -8 1 -13.856 -6.1232 1 -14.7824 -6.5059 0 -15.7063 -8.5 0 -14.722
+4 16 -6.1232 1 -14.7824 -4.1408 1 -15.4544 -4.3996 0 -16.4203 -6.5059 0 -15.7063
+4 16 -4.1408 1 -15.4544 -2.088 1 -15.8624 -2.2185 0 -16.8538 -4.3996 0 -16.4203
+4 16 -2.088 1 -15.8624 0 1 -16 0 0 -17 -2.2185 0 -16.8538
+4 16 0 1 -16 2.088 1 -15.8624 2.2185 0 -16.8538 0 0 -17
+4 16 2.088 1 -15.8624 4.1408 1 -15.4544 4.3996 0 -16.4203 2.2185 0 -16.8538
+4 16 4.1408 1 -15.4544 6.1232 1 -14.7824 6.5059 0 -15.7063 4.3996 0 -16.4203
+4 16 6.1232 1 -14.7824 8 1 -13.856 8.5 0 -14.722 6.5059 0 -15.7063
+4 16 8 1 -13.856 9.7408 1 -12.6944 10.3496 0 -13.4878 8.5 0 -14.722
+4 16 9.7408 1 -12.6944 11.3136 1 -11.3136 12.0207 0 -12.0207 10.3496 0 -13.4878
+4 16 11.3136 1 -11.3136 12.6944 1 -9.7408 13.4878 0 -10.3496 12.0207 0 -12.0207
+4 16 12.6944 1 -9.7408 13.856 1 -8 14.722 0 -8.5 13.4878 0 -10.3496
+4 16 13.856 1 -8 14.7824 1 -6.1232 15.7063 0 -6.5059 14.722 0 -8.5
+4 16 14.7824 1 -6.1232 15.4544 1 -4.1408 16.4203 0 -4.3996 15.7063 0 -6.5059
+4 16 15.4544 1 -4.1408 15.8624 1 -2.088 16.8538 0 -2.2185 16.4203 0 -4.3996
+4 16 15.8624 1 -2.088 16 1 0 17 0 0 16.8538 0 -2.2185
+
+0 conditional lines
+5 24 16 1 0 17 0 0 15.8624 1 -2.088 15.8624 1 2.088
+5 24 15.8624 1 2.088 16.8538 0 2.2185 16 1 0 15.4544 1 4.1408
+5 24 15.4544 1 4.1408 16.4203 0 4.3996 15.8624 1 2.088 14.7824 1 6.1232
+5 24 14.7824 1 6.1232 15.7063 0 6.5059 15.4544 1 4.1408 13.856 1 8
+5 24 13.856 1 8 14.722 0 8.5 14.7824 1 6.1232 12.6944 1 9.7408
+5 24 12.6944 1 9.7408 13.4878 0 10.3496 13.856 1 8 11.3136 1 11.3136
+5 24 11.3136 1 11.3136 12.0207 0 12.0207 12.6944 1 9.7408 9.7408 1 12.6944
+5 24 9.7408 1 12.6944 10.3496 0 13.4878 11.3136 1 11.3136 8 1 13.856
+5 24 8 1 13.856 8.5 0 14.722 9.7408 1 12.6944 6.1232 1 14.7824
+5 24 6.1232 1 14.7824 6.5059 0 15.7063 8 1 13.856 4.1408 1 15.4544
+5 24 4.1408 1 15.4544 4.3996 0 16.4203 6.1232 1 14.7824 2.088 1 15.8624
+5 24 2.088 1 15.8624 2.2185 0 16.8538 4.1408 1 15.4544 0 1 16
+5 24 0 1 16 0 0 17 2.088 1 15.8624 -2.088 1 15.8624
+5 24 -2.088 1 15.8624 -2.2185 0 16.8538 0 1 16 -4.1408 1 15.4544
+5 24 -4.1408 1 15.4544 -4.3996 0 16.4203 -2.088 1 15.8624 -6.1232 1 14.7824
+5 24 -6.1232 1 14.7824 -6.5059 0 15.7063 -4.1408 1 15.4544 -8 1 13.856
+5 24 -8 1 13.856 -8.5 0 14.722 -6.1232 1 14.7824 -9.7408 1 12.6944
+5 24 -9.7408 1 12.6944 -10.3496 0 13.4878 -8 1 13.856 -11.3136 1 11.3136
+5 24 -11.3136 1 11.3136 -12.0207 0 12.0207 -9.7408 1 12.6944 -12.6944 1 9.7408
+5 24 -12.6944 1 9.7408 -13.4878 0 10.3496 -11.3136 1 11.3136 -13.856 1 8
+5 24 -13.856 1 8 -14.722 0 8.5 -12.6944 1 9.7408 -14.7824 1 6.1232
+5 24 -14.7824 1 6.1232 -15.7063 0 6.5059 -13.856 1 8 -15.4544 1 4.1408
+5 24 -15.4544 1 4.1408 -16.4203 0 4.3996 -14.7824 1 6.1232 -15.8624 1 2.088
+5 24 -15.8624 1 2.088 -16.8538 0 2.2185 -15.4544 1 4.1408 -16 1 0
+5 24 -16 1 0 -17 0 0 -15.8624 1 2.088 -15.8624 1 -2.088
+5 24 -15.8624 1 -2.088 -16.8538 0 -2.2185 -16 1 0 -15.4544 1 -4.1408
+5 24 -15.4544 1 -4.1408 -16.4203 0 -4.3996 -15.8624 1 -2.088 -14.7824 1 -6.1232
+5 24 -14.7824 1 -6.1232 -15.7063 0 -6.5059 -15.4544 1 -4.1408 -13.856 1 -8
+5 24 -13.856 1 -8 -14.722 0 -8.5 -14.7824 1 -6.1232 -12.6944 1 -9.7408
+5 24 -12.6944 1 -9.7408 -13.4878 0 -10.3496 -13.856 1 -8 -11.3136 1 -11.3136
+5 24 -11.3136 1 -11.3136 -12.0207 0 -12.0207 -12.6944 1 -9.7408 -9.7408 1 -12.6944
+5 24 -9.7408 1 -12.6944 -10.3496 0 -13.4878 -11.3136 1 -11.3136 -8 1 -13.856
+5 24 -8 1 -13.856 -8.5 0 -14.722 -9.7408 1 -12.6944 -6.1232 1 -14.7824
+5 24 -6.1232 1 -14.7824 -6.5059 0 -15.7063 -8 1 -13.856 -4.1408 1 -15.4544
+5 24 -4.1408 1 -15.4544 -4.3996 0 -16.4203 -6.1232 1 -14.7824 -2.088 1 -15.8624
+5 24 -2.088 1 -15.8624 -2.2185 0 -16.8538 -4.1408 1 -15.4544 0 1 -16
+5 24 0 1 -16 0 0 -17 -2.088 1 -15.8624 2.088 1 -15.8624
+5 24 2.088 1 -15.8624 2.2185 0 -16.8538 0 1 -16 4.1408 1 -15.4544
+5 24 4.1408 1 -15.4544 4.3996 0 -16.4203 2.088 1 -15.8624 6.1232 1 -14.7824
+5 24 6.1232 1 -14.7824 6.5059 0 -15.7063 4.1408 1 -15.4544 8 1 -13.856
+5 24 8 1 -13.856 8.5 0 -14.722 6.1232 1 -14.7824 9.7408 1 -12.6944
+5 24 9.7408 1 -12.6944 10.3496 0 -13.4878 8 1 -13.856 11.3136 1 -11.3136
+5 24 11.3136 1 -11.3136 12.0207 0 -12.0207 9.7408 1 -12.6944 12.6944 1 -9.7408
+5 24 12.6944 1 -9.7408 13.4878 0 -10.3496 11.3136 1 -11.3136 13.856 1 -8
+5 24 13.856 1 -8 14.722 0 -8.5 12.6944 1 -9.7408 14.7824 1 -6.1232
+5 24 14.7824 1 -6.1232 15.7063 0 -6.5059 13.856 1 -8 15.4544 1 -4.1408
+5 24 15.4544 1 -4.1408 16.4203 0 -4.3996 14.7824 1 -6.1232 15.8624 1 -2.088
+5 24 15.8624 1 -2.088 16.8538 0 -2.2185 15.4544 1 -4.1408 16 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4con3.dat
+0 Hi-Res Cone  3 x 1.0
+0 Name: 48\4-4con3.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+4 16 3 1 0 2.9742 1 0.3915 3.9656 0 0.522 4 0 0
+4 16 2.9742 1 0.3915 2.8977 1 0.7764 3.8636 0 1.0352 3.9656 0 0.522
+4 16 2.8977 1 0.7764 2.7717 1 1.1481 3.6956 0 1.5308 3.8636 0 1.0352
+4 16 2.7717 1 1.1481 2.598 1 1.5 3.464 0 2 3.6956 0 1.5308
+4 16 2.598 1 1.5 2.3802 1 1.8264 3.1736 0 2.4352 3.464 0 2
+4 16 2.3802 1 1.8264 2.1213 1 2.1213 2.8284 0 2.8284 3.1736 0 2.4352
+4 16 2.1213 1 2.1213 1.8264 1 2.3802 2.4352 0 3.1736 2.8284 0 2.8284
+4 16 1.8264 1 2.3802 1.5 1 2.598 2 0 3.464 2.4352 0 3.1736
+4 16 1.5 1 2.598 1.1481 1 2.7717 1.5308 0 3.6956 2 0 3.464
+4 16 1.1481 1 2.7717 0.7764 1 2.8977 1.0352 0 3.8636 1.5308 0 3.6956
+4 16 0.7764 1 2.8977 0.3915 1 2.9742 0.522 0 3.9656 1.0352 0 3.8636
+4 16 0.3915 1 2.9742 0 1 3 0 0 4 0.522 0 3.9656
+4 16 0 1 3 -0.3915 1 2.9742 -0.522 0 3.9656 0 0 4
+4 16 -0.3915 1 2.9742 -0.7764 1 2.8977 -1.0352 0 3.8636 -0.522 0 3.9656
+4 16 -0.7764 1 2.8977 -1.1481 1 2.7717 -1.5308 0 3.6956 -1.0352 0 3.8636
+4 16 -1.1481 1 2.7717 -1.5 1 2.598 -2 0 3.464 -1.5308 0 3.6956
+4 16 -1.5 1 2.598 -1.8264 1 2.3802 -2.4352 0 3.1736 -2 0 3.464
+4 16 -1.8264 1 2.3802 -2.1213 1 2.1213 -2.8284 0 2.8284 -2.4352 0 3.1736
+4 16 -2.1213 1 2.1213 -2.3802 1 1.8264 -3.1736 0 2.4352 -2.8284 0 2.8284
+4 16 -2.3802 1 1.8264 -2.598 1 1.5 -3.464 0 2 -3.1736 0 2.4352
+4 16 -2.598 1 1.5 -2.7717 1 1.1481 -3.6956 0 1.5308 -3.464 0 2
+4 16 -2.7717 1 1.1481 -2.8977 1 0.7764 -3.8636 0 1.0352 -3.6956 0 1.5308
+4 16 -2.8977 1 0.7764 -2.9742 1 0.3915 -3.9656 0 0.522 -3.8636 0 1.0352
+4 16 -2.9742 1 0.3915 -3 1 0 -4 0 0 -3.9656 0 0.522
+4 16 -3 1 0 -2.9742 1 -0.3915 -3.9656 0 -0.522 -4 0 0
+4 16 -2.9742 1 -0.3915 -2.8977 1 -0.7764 -3.8636 0 -1.0352 -3.9656 0 -0.522
+4 16 -2.8977 1 -0.7764 -2.7717 1 -1.1481 -3.6956 0 -1.5308 -3.8636 0 -1.0352
+4 16 -2.7717 1 -1.1481 -2.598 1 -1.5 -3.464 0 -2 -3.6956 0 -1.5308
+4 16 -2.598 1 -1.5 -2.3802 1 -1.8264 -3.1736 0 -2.4352 -3.464 0 -2
+4 16 -2.3802 1 -1.8264 -2.1213 1 -2.1213 -2.8284 0 -2.8284 -3.1736 0 -2.4352
+4 16 -2.1213 1 -2.1213 -1.8264 1 -2.3802 -2.4352 0 -3.1736 -2.8284 0 -2.8284
+4 16 -1.8264 1 -2.3802 -1.5 1 -2.598 -2 0 -3.464 -2.4352 0 -3.1736
+4 16 -1.5 1 -2.598 -1.1481 1 -2.7717 -1.5308 0 -3.6956 -2 0 -3.464
+4 16 -1.1481 1 -2.7717 -0.7764 1 -2.8977 -1.0352 0 -3.8636 -1.5308 0 -3.6956
+4 16 -0.7764 1 -2.8977 -0.3915 1 -2.9742 -0.522 0 -3.9656 -1.0352 0 -3.8636
+4 16 -0.3915 1 -2.9742 0 1 -3 0 0 -4 -0.522 0 -3.9656
+4 16 0 1 -3 0.3915 1 -2.9742 0.522 0 -3.9656 0 0 -4
+4 16 0.3915 1 -2.9742 0.7764 1 -2.8977 1.0352 0 -3.8636 0.522 0 -3.9656
+4 16 0.7764 1 -2.8977 1.1481 1 -2.7717 1.5308 0 -3.6956 1.0352 0 -3.8636
+4 16 1.1481 1 -2.7717 1.5 1 -2.598 2 0 -3.464 1.5308 0 -3.6956
+4 16 1.5 1 -2.598 1.8264 1 -2.3802 2.4352 0 -3.1736 2 0 -3.464
+4 16 1.8264 1 -2.3802 2.1213 1 -2.1213 2.8284 0 -2.8284 2.4352 0 -3.1736
+4 16 2.1213 1 -2.1213 2.3802 1 -1.8264 3.1736 0 -2.4352 2.8284 0 -2.8284
+4 16 2.3802 1 -1.8264 2.598 1 -1.5 3.464 0 -2 3.1736 0 -2.4352
+4 16 2.598 1 -1.5 2.7717 1 -1.1481 3.6956 0 -1.5308 3.464 0 -2
+4 16 2.7717 1 -1.1481 2.8977 1 -0.7764 3.8636 0 -1.0352 3.6956 0 -1.5308
+4 16 2.8977 1 -0.7764 2.9742 1 -0.3915 3.9656 0 -0.522 3.8636 0 -1.0352
+4 16 2.9742 1 -0.3915 3 1 0 4 0 0 3.9656 0 -0.522
+
+0 conditional lines
+5 24 3 1 0 4 0 0 2.9742 1 -0.3915 2.9742 1 0.3915
+5 24 2.9742 1 0.3915 3.9656 0 0.522 3 1 0 2.8977 1 0.7764
+5 24 2.8977 1 0.7764 3.8636 0 1.0352 2.9742 1 0.3915 2.7717 1 1.1481
+5 24 2.7717 1 1.1481 3.6956 0 1.5308 2.8977 1 0.7764 2.598 1 1.5
+5 24 2.598 1 1.5 3.464 0 2 2.7717 1 1.1481 2.3802 1 1.8264
+5 24 2.3802 1 1.8264 3.1736 0 2.4352 2.598 1 1.5 2.1213 1 2.1213
+5 24 2.1213 1 2.1213 2.8284 0 2.8284 2.3802 1 1.8264 1.8264 1 2.3802
+5 24 1.8264 1 2.3802 2.4352 0 3.1736 2.1213 1 2.1213 1.5 1 2.598
+5 24 1.5 1 2.598 2 0 3.464 1.8264 1 2.3802 1.1481 1 2.7717
+5 24 1.1481 1 2.7717 1.5308 0 3.6956 1.5 1 2.598 0.7764 1 2.8977
+5 24 0.7764 1 2.8977 1.0352 0 3.8636 1.1481 1 2.7717 0.3915 1 2.9742
+5 24 0.3915 1 2.9742 0.522 0 3.9656 0.7764 1 2.8977 0 1 3
+5 24 0 1 3 0 0 4 0.3915 1 2.9742 -0.3915 1 2.9742
+5 24 -0.3915 1 2.9742 -0.522 0 3.9656 0 1 3 -0.7764 1 2.8977
+5 24 -0.7764 1 2.8977 -1.0352 0 3.8636 -0.3915 1 2.9742 -1.1481 1 2.7717
+5 24 -1.1481 1 2.7717 -1.5308 0 3.6956 -0.7764 1 2.8977 -1.5 1 2.598
+5 24 -1.5 1 2.598 -2 0 3.464 -1.1481 1 2.7717 -1.8264 1 2.3802
+5 24 -1.8264 1 2.3802 -2.4352 0 3.1736 -1.5 1 2.598 -2.1213 1 2.1213
+5 24 -2.1213 1 2.1213 -2.8284 0 2.8284 -1.8264 1 2.3802 -2.3802 1 1.8264
+5 24 -2.3802 1 1.8264 -3.1736 0 2.4352 -2.1213 1 2.1213 -2.598 1 1.5
+5 24 -2.598 1 1.5 -3.464 0 2 -2.3802 1 1.8264 -2.7717 1 1.1481
+5 24 -2.7717 1 1.1481 -3.6956 0 1.5308 -2.598 1 1.5 -2.8977 1 0.7764
+5 24 -2.8977 1 0.7764 -3.8636 0 1.0352 -2.7717 1 1.1481 -2.9742 1 0.3915
+5 24 -2.9742 1 0.3915 -3.9656 0 0.522 -2.8977 1 0.7764 -3 1 0
+5 24 -3 1 0 -4 0 0 -2.9742 1 0.3915 -2.9742 1 -0.3915
+5 24 -2.9742 1 -0.3915 -3.9656 0 -0.522 -3 1 0 -2.8977 1 -0.7764
+5 24 -2.8977 1 -0.7764 -3.8636 0 -1.0352 -2.9742 1 -0.3915 -2.7717 1 -1.1481
+5 24 -2.7717 1 -1.1481 -3.6956 0 -1.5308 -2.8977 1 -0.7764 -2.598 1 -1.5
+5 24 -2.598 1 -1.5 -3.464 0 -2 -2.7717 1 -1.1481 -2.3802 1 -1.8264
+5 24 -2.3802 1 -1.8264 -3.1736 0 -2.4352 -2.598 1 -1.5 -2.1213 1 -2.1213
+5 24 -2.1213 1 -2.1213 -2.8284 0 -2.8284 -2.3802 1 -1.8264 -1.8264 1 -2.3802
+5 24 -1.8264 1 -2.3802 -2.4352 0 -3.1736 -2.1213 1 -2.1213 -1.5 1 -2.598
+5 24 -1.5 1 -2.598 -2 0 -3.464 -1.8264 1 -2.3802 -1.1481 1 -2.7717
+5 24 -1.1481 1 -2.7717 -1.5308 0 -3.6956 -1.5 1 -2.598 -0.7764 1 -2.8977
+5 24 -0.7764 1 -2.8977 -1.0352 0 -3.8636 -1.1481 1 -2.7717 -0.3915 1 -2.9742
+5 24 -0.3915 1 -2.9742 -0.522 0 -3.9656 -0.7764 1 -2.8977 0 1 -3
+5 24 0 1 -3 0 0 -4 -0.3915 1 -2.9742 0.3915 1 -2.9742
+5 24 0.3915 1 -2.9742 0.522 0 -3.9656 0 1 -3 0.7764 1 -2.8977
+5 24 0.7764 1 -2.8977 1.0352 0 -3.8636 0.3915 1 -2.9742 1.1481 1 -2.7717
+5 24 1.1481 1 -2.7717 1.5308 0 -3.6956 0.7764 1 -2.8977 1.5 1 -2.598
+5 24 1.5 1 -2.598 2 0 -3.464 1.1481 1 -2.7717 1.8264 1 -2.3802
+5 24 1.8264 1 -2.3802 2.4352 0 -3.1736 1.5 1 -2.598 2.1213 1 -2.1213
+5 24 2.1213 1 -2.1213 2.8284 0 -2.8284 1.8264 1 -2.3802 2.3802 1 -1.8264
+5 24 2.3802 1 -1.8264 3.1736 0 -2.4352 2.1213 1 -2.1213 2.598 1 -1.5
+5 24 2.598 1 -1.5 3.464 0 -2 2.3802 1 -1.8264 2.7717 1 -1.1481
+5 24 2.7717 1 -1.1481 3.6956 0 -1.5308 2.598 1 -1.5 2.8977 1 -0.7764
+5 24 2.8977 1 -0.7764 3.8636 0 -1.0352 2.7717 1 -1.1481 2.9742 1 -0.3915
+5 24 2.9742 1 -0.3915 3.9656 0 -0.522 2.8977 1 -0.7764 3 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/1-4con23.dat
+0 Hi-Res Cone 23 x 0.25
+0 Name: 48\1-4con23.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Recreated CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 23 1 0 22.8022 1 3.0015 23.7936 0 3.132 24 0 0
+4 16 22.8022 1 3.0015 22.2157 1 5.9524 23.1816 0 6.2112 23.7936 0 3.132
+4 16 22.2157 1 5.9524 21.2497 1 8.8021 22.1736 0 9.1848 23.1816 0 6.2112
+4 16 21.2497 1 8.8021 19.918 1 11.5 20.784 0 12 22.1736 0 9.1848
+4 16 19.918 1 11.5 18.2482 1 14.0024 19.0416 0 14.6112 20.784 0 12
+4 16 18.2482 1 14.0024 16.2633 1 16.2633 16.9704 0 16.9704 19.0416 0 14.6112
+4 16 16.2633 1 16.2633 14.0024 1 18.2482 14.6112 0 19.0416 16.9704 0 16.9704
+4 16 14.0024 1 18.2482 11.5 1 19.918 12 0 20.784 14.6112 0 19.0416
+4 16 11.5 1 19.918 8.8021 1 21.2497 9.1848 0 22.1736 12 0 20.784
+4 16 8.8021 1 21.2497 5.9524 1 22.2157 6.2112 0 23.1816 9.1848 0 22.1736
+4 16 5.9524 1 22.2157 3.0015 1 22.8022 3.132 0 23.7936 6.2112 0 23.1816
+4 16 3.0015 1 22.8022 0 1 23 0 0 24 3.132 0 23.7936
+0 // conditional lines
+5 24 23 1 0 24 0 0 23 1 -3.028 22.8032 1 3.0021
+5 24 22.8022 1 3.0015 23.7936 0 3.132 23 1 0 22.2163 1 5.9528
+5 24 22.2157 1 5.9524 23.1816 0 6.2112 22.8032 1 3.0021 21.2492 1 8.8017
+5 24 21.2497 1 8.8021 22.1736 0 9.1848 22.2163 1 5.9528 19.9186 1 11.5
+5 24 19.918 1 11.5 20.784 0 12 21.2492 1 8.8017 18.2471 1 14.0015
+5 24 18.2482 1 14.0024 19.0416 0 14.6112 19.9186 1 11.5 16.2635 1 16.2635
+5 24 16.2633 1 16.2633 16.9704 0 16.9704 18.2471 1 14.0015 14.0015 1 18.2471
+5 24 14.0024 1 18.2482 14.6112 0 19.0416 16.2635 1 16.2635 11.5 1 19.9186
+5 24 11.5 1 19.918 12 0 20.784 14.0015 1 18.2471 8.8017 1 21.2492
+5 24 8.8021 1 21.2497 9.1848 0 22.1736 11.5 1 19.9186 5.9528 1 22.2163
+5 24 5.9524 1 22.2157 6.2112 0 23.1816 8.8017 1 21.2492 3.0021 1 22.8032
+5 24 3.0015 1 22.8022 3.132 0 23.7936 5.9528 1 22.2163 0 1 23
+5 24 0 1 23 0 0 24 3.0021 1 22.8032 -3.028 1 23
+0 // Built by Primitive Generator 2
+
+0 FILE p/48/1-4rin39.dat
+0 Hi-Res Ring 39 x 0.25
+0 Name: 48\1-4rin39.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 40 0 0 39.656 0 5.22 38.6646 0 5.0895 39 0 0
+4 16 39.656 0 5.22 38.636 0 10.352 37.6701 0 10.0932 38.6646 0 5.0895
+4 16 38.636 0 10.352 36.956 0 15.308 36.0321 0 14.9253 37.6701 0 10.0932
+4 16 36.956 0 15.308 34.64 0 20 33.774 0 19.5 36.0321 0 14.9253
+4 16 34.64 0 20 31.736 0 24.352 30.9426 0 23.7432 33.774 0 19.5
+4 16 31.736 0 24.352 28.284 0 28.284 27.5769 0 27.5769 30.9426 0 23.7432
+4 16 28.284 0 28.284 24.352 0 31.736 23.7432 0 30.9426 27.5769 0 27.5769
+4 16 24.352 0 31.736 20 0 34.64 19.5 0 33.774 23.7432 0 30.9426
+4 16 20 0 34.64 15.308 0 36.956 14.9253 0 36.0321 19.5 0 33.774
+4 16 15.308 0 36.956 10.352 0 38.636 10.0932 0 37.6701 14.9253 0 36.0321
+4 16 10.352 0 38.636 5.22 0 39.656 5.0895 0 38.6646 10.0932 0 37.6701
+4 16 5.22 0 39.656 0 0 40 0 0 39 5.0895 0 38.6646
+
+0 FILE p/48/1-4rin51.dat
+0 Hi-Res Ring 51 x 0.25
+0 Name: 48\1-4rin51.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG 48_Primitive UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 51 0 0 52 0 0 51.5528 0 6.786 50.5614 0 6.6555
+4 16 50.5614 0 6.6555 51.5528 0 6.786 50.2268 0 13.4576 49.2609 0 13.1988
+4 16 49.2609 0 13.1988 50.2268 0 13.4576 48.0428 0 19.9004 47.1189 0 19.5177
+4 16 47.1189 0 19.5177 48.0428 0 19.9004 45.032 0 26 44.166 0 25.5
+4 16 44.166 0 25.5 45.032 0 26 41.2568 0 31.6576 40.4634 0 31.0488
+4 16 40.4634 0 31.0488 41.2568 0 31.6576 36.7692 0 36.7692 36.0621 0 36.0621
+4 16 36.0621 0 36.0621 36.7692 0 36.7692 31.6576 0 41.2568 31.0488 0 40.4634
+4 16 31.0488 0 40.4634 31.6576 0 41.2568 26 0 45.032 25.5 0 44.166
+4 16 25.5 0 44.166 26 0 45.032 19.9004 0 48.0428 19.5177 0 47.1189
+4 16 19.5177 0 47.1189 19.9004 0 48.0428 13.4576 0 50.2268 13.1988 0 49.2609
+4 16 13.1988 0 49.2609 13.4576 0 50.2268 6.786 0 51.5528 6.6555 0 50.5614
+4 16 6.6555 0 50.5614 6.786 0 51.5528 0 0 52 0 0 51
+0
+
+0 FILE parts/30162.dat
+0 Minifig Binoculars with Round Eyepiece
+0 Name: 30162.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Part UPDATE 2015-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !CATEGORY Minifig Accessory
+0 !KEYWORDS Adventurers, City
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2007-06-06 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-03-11 [Steffen] BFCed
+0 !HISTORY 2012-03-14 [Steffen] modified with WINDZ for BFC compliance
+0 !HISTORY 2015-10-10 [MagFors] Closed gaps
+0 !HISTORY 2015-12-30 [PTadmin] Official Update 2015-02
+
+2 24 2 0 5.61 2 0 -5.61
+2 24 2 0 5.61 2 4 5.61
+2 24 2 0 6 2 4 6
+2 24 2 0 6 2 0 5.61
+2 24 2 4 6 2 4 5.61
+4 16 6 4 0 6 4 -7 5.54 3.91 -7 5.54 3.91 -2.3
+5 24 6 4 0 6 4 -7 4.46 3.7 -7 7.54 3.7 -7
+4 16 5.54 3.91 -7 4.46 3.7 -7 4.46 3.7 -3.9 5.54 3.91 -2.3
+4 16 4.46 3.7 -7 4.25 3.55 -7 4.25 3.55 -4.25 4.46 3.7 -3.9
+5 24 4.46 3.7 -3.9 4.46 3.7 -7 5.54 3.91 -7 3.18 2.82 -7
+4 16 4.25 3.55 -7 3.18 2.82 -7 3.18 2.82 -4.96 4.25 3.55 -4.25
+4 16 3.18 2.82 -7 2.3 1.53 -7 2.3 1.53 -5.54 3.18 2.82 -4.96
+5 24 3.18 2.82 -4.96 3.18 2.82 -7 4.25 3.55 -7 2.3 1.53 -7
+4 16 2.3 1.53 -7 2 0 -7 2 0 -5.61 2.3 1.53 -5.54
+5 24 2.3 1.53 -5.54 2.3 1.53 -7 3.18 2.82 -7 2 0 -7
+4 16 6 4 0 5.54 3.91 -2.3 5.54 0 -2.3 6 0 0
+5 24 6 4 0 6 0 0 5.54 0 2.3 5.54 0 -2.3
+4 16 5.54 3.91 -2.3 4.46 3.7 -3.9 4.46 0 -3.9 5.54 0 -2.3
+5 24 5.54 3.91 -2.3 5.54 0 -2.3 4.25 0 -4.25 6 4 0
+4 16 4.46 3.7 -3.9 4.25 3.55 -4.25 4.25 0 -4.25 4.46 0 -3.9
+4 16 4.25 3.55 -4.25 3.18 2.82 -4.96 3.18 0 -4.96 4.25 0 -4.25
+5 24 4.25 3.55 -4.25 4.25 0 -4.25 5.54 0 -2.3 2.3 0 -5.54
+4 16 3.18 2.82 -4.96 2.3 1.53 -5.54 2.3 0 -5.54 3.18 0 -4.96
+3 16 2.3 1.53 -5.54 2 0 -5.61 2.3 0 -5.54
+5 24 2.3 1.53 -5.54 2.3 0 -5.54 4.25 0 -4.25 2 0 -5.61
+2 24 6 4 0 5.54 3.91 -2.3
+2 24 5.54 3.91 -2.3 4.46 3.7 -3.9
+2 24 4.46 3.7 -3.9 4.25 3.55 -4.25
+2 24 4.25 3.55 -4.25 3.18 2.82 -4.96
+2 24 3.18 2.82 -4.96 2.3 1.53 -5.54
+2 24 2.3 1.53 -5.54 2 0 -5.61
+3 16 6 4 6 6 4 0 5.543 4 2.296
+3 16 6 4 6 5.543 4 2.296 4.243 4 4.243
+3 16 6 4 6 4.243 4 4.243 2.296 4 5.543
+4 16 6 4 6 2.296 4 5.543 2 4 5.61 2 4 6
+4 16 6 0 0 5.54 0 2.3 5.54 4 2.3 6 4 0
+5 24 6 0 0 6 4 0 5.54 0 2.3 6 0 -6
+4 16 5.54 0 2.3 4.25 0 4.25 4.25 4 4.25 5.54 4 2.3
+5 24 5.54 0 2.3 5.54 4 2.3 4.25 0 4.25 6 0 0
+4 16 4.25 0 4.25 2.3 0 5.54 2.3 4 5.54 4.25 4 4.25
+5 24 4.25 0 4.25 4.25 4 4.25 2.3 0 5.54 5.54 0 2.3
+4 16 2.3 0 5.54 2 0 5.61 2 4 5.61 2.3 4 5.54
+5 24 2.3 0 5.54 2.3 4 5.54 0 0 6 4.25 0 4.25
+4 16 2 0 6 2 4 6 2 4 5.61 2 0 5.61
+2 24 6 0 0 5.54 0 -2.3
+2 24 5.54 0 -2.3 4.25 0 -4.25
+2 24 4.25 0 -4.25 2.3 0 -5.54
+2 24 2.3 0 -5.54 2 0 -5.61
+2 24 6 0 0 5.54 0 2.3
+2 24 5.54 0 2.3 4.25 0 4.25
+2 24 4.25 0 4.25 2.3 0 5.54
+2 24 2.3 0 5.54 2 0 5.61
+2 24 6 4 0 5.54 4 2.3
+2 24 5.54 4 2.3 4.25 4 4.25
+2 24 4.25 4 4.25 2.3 4 5.54
+2 24 2.3 4 5.54 2 4 5.61
+
+2 24 -2 0 5.61 -2 0 -5.61
+2 24 -2 0 5.61 -2 4 5.61
+2 24 -2 0 6 -2 4 6
+2 24 -2 0 6 -2 0 5.61
+2 24 -2 4 6 -2 4 5.61
+4 16 -6 4 0 -5.54 3.91 -2.3 -5.54 3.91 -7 -6 4 -7
+5 24 -6 4 0 -6 4 -7 -4.46 3.7 -7 -7.54 3.7 -7
+4 16 -5.54 3.91 -7 -5.54 3.91 -2.3 -4.46 3.7 -3.9 -4.46 3.7 -7
+4 16 -4.46 3.7 -7 -4.46 3.7 -3.9 -4.25 3.55 -4.25 -4.25 3.55 -7
+5 24 -4.46 3.7 -3.9 -4.46 3.7 -7 -5.54 3.91 -7 -3.18 2.82 -7
+4 16 -4.25 3.55 -7 -4.25 3.55 -4.25 -3.18 2.82 -4.96 -3.18 2.82 -7
+4 16 -3.18 2.82 -7 -3.18 2.82 -4.96 -2.3 1.53 -5.54 -2.3 1.53 -7
+5 24 -3.18 2.82 -4.96 -3.18 2.82 -7 -4.25 3.55 -7 -2.3 1.53 -7
+4 16 -2.3 1.53 -7 -2.3 1.53 -5.54 -2 0 -5.61 -2 0 -7
+5 24 -2.3 1.53 -5.54 -2.3 1.53 -7 -3.18 2.82 -7 -2 0 -7
+4 16 -6 4 0 -6 0 0 -5.54 0 -2.3 -5.54 3.91 -2.3
+5 24 -6 4 0 -6 0 0 -5.54 0 2.3 -5.54 0 -2.3
+4 16 -5.54 3.91 -2.3 -5.54 0 -2.3 -4.46 0 -3.9 -4.46 3.7 -3.9
+5 24 -5.54 3.91 -2.3 -5.54 0 -2.3 -4.25 0 -4.25 -6 4 0
+4 16 -4.46 3.7 -3.9 -4.46 0 -3.9 -4.25 0 -4.25 -4.25 3.55 -4.25
+4 16 -4.25 3.55 -4.25 -4.25 0 -4.25 -3.18 0 -4.96 -3.18 2.82 -4.96
+5 24 -4.25 3.55 -4.25 -4.25 0 -4.25 -5.54 0 -2.3 -2.3 0 -5.54
+4 16 -3.18 2.82 -4.96 -3.18 0 -4.96 -2.3 0 -5.54 -2.3 1.53 -5.54
+3 16 -2.3 1.53 -5.54 -2.3 0 -5.54 -2 0 -5.61
+5 24 -2.3 1.53 -5.54 -2.3 0 -5.54 -4.25 0 -4.25 -2 0 -5.61
+2 24 -6 4 0 -5.54 3.91 -2.3
+2 24 -5.54 3.91 -2.3 -4.46 3.7 -3.9
+2 24 -4.46 3.7 -3.9 -4.25 3.55 -4.25
+2 24 -4.25 3.55 -4.25 -3.18 2.82 -4.96
+2 24 -3.18 2.82 -4.96 -2.3 1.53 -5.54
+2 24 -2.3 1.53 -5.54 -2 0 -5.61
+3 16 -6 4 6 -5.543 4 2.296 -6 4 0
+3 16 -6 4 6 -4.243 4 4.243 -5.543 4 2.296
+3 16 -6 4 6 -2.296 4 5.543 -4.243 4 4.243
+4 16 -6 4 6 -2 4 6 -2 4 5.61 -2.296 4 5.543
+4 16 -6 0 0 -6 4 0 -5.54 4 2.3 -5.54 0 2.3
+5 24 -6 0 0 -6 4 0 -5.54 0 2.3 -6 0 -6
+4 16 -5.54 0 2.3 -5.54 4 2.3 -4.25 4 4.25 -4.25 0 4.25
+5 24 -5.54 0 2.3 -5.54 4 2.3 -4.25 0 4.25 -6 0 0
+4 16 -4.25 0 4.25 -4.25 4 4.25 -2.3 4 5.54 -2.3 0 5.54
+5 24 -4.25 0 4.25 -4.25 4 4.25 -2.3 0 5.54 -5.54 0 2.3
+4 16 -2.3 0 5.54 -2.3 4 5.54 -2 4 5.61 -2 0 5.61
+5 24 -2.3 0 5.54 -2.3 4 5.54 0 0 6 -4.25 0 4.25
+4 16 -2 0 6 -2 0 5.61 -2 4 5.61 -2 4 6
+2 24 -6 0 0 -5.54 0 -2.3
+2 24 -5.54 0 -2.3 -4.25 0 -4.25
+2 24 -4.25 0 -4.25 -2.3 0 -5.54
+2 24 -2.3 0 -5.54 -2 0 -5.61
+2 24 -6 0 0 -5.54 0 2.3
+2 24 -5.54 0 2.3 -4.25 0 4.25
+2 24 -4.25 0 4.25 -2.3 0 5.54
+2 24 -2.3 0 5.54 -2 0 5.61
+2 24 -6 4 0 -5.54 4 2.3
+2 24 -5.54 4 2.3 -4.25 4 4.25
+2 24 -4.25 4 4.25 -2.3 4 5.54
+2 24 -2.3 4 5.54 -2 4 5.61
+
+1 16 -6 0 8 0 0 -4 -4 0 0 0 -1 0 p/2-4chrd.dat
+1 16 6 0 8 0 0 4 4 0 0 0 -1 0 p/2-4chrd.dat
+1 16 -6 0 8 0 0 -4 4 0 0 0 1 0 p/2-4edge.dat
+1 16 6 0 8 0 0 4 4 0 0 0 1 0 p/2-4edge.dat
+1 16 -6 0 6 4 0 0 0 0 -4 0 1 0 p/1-4edge.dat
+1 16 6 0 6 -4 0 0 0 0 -4 0 1 0 p/1-4edge.dat
+1 16 -6 0 -7 0 0 4 4 0 0 0 1 0 p/2-4edge.dat
+1 16 6 0 -7 0 0 -4 4 0 0 0 1 0 p/2-4edge.dat
+1 16 -6 0 -10 0 0 -4 4 0 0 0 1 0 p/2-4edge.dat
+1 16 6 0 -10 0 0 4 4 0 0 0 1 0 p/2-4edge.dat
+
+4 16 -6 4 8 -6 -4 8 6 -4 8 6 4 8
+4 16 -2 4 6 2 4 6 6 -4 6 -6 -4 6
+4 16 -6 4 8 6 4 8 6 4 6 -6 4 6
+4 16 -6 -4 8 -6 -4 6 6 -4 6 6 -4 8
+4 16 -6 -4 -7 -6 -4 -10 6 -4 -10 6 -4 -7
+4 16 -6 4 -7 6 4 -7 6 4 -10 -6 4 -10
+4 16 -6 4 -7 -6 -4 -7 6 -4 -7 6 4 -7
+4 16 -6 4 -10 6 4 -10 6 -4 -10 -6 -4 -10
+2 24 -6 -4 8 6 -4 8
+2 24 -6 4 8 6 4 8
+2 24 -6 -4 6 6 -4 6
+2 24 -2 4 6 2 4 6
+2 24 -6 -4 -7 6 -4 -7
+2 24 -6 4 -7 6 4 -7
+2 24 -6 -4 -10 6 -4 -10
+2 24 -6 4 -10 6 4 -10
+
+4 16 2 0 6 6 0 6 6 0 -6 2 0 -6
+4 16 -2 0 6 -2 0 -6 -6 0 -6 -6 0 6
+
+1 16 6 0 -7 -4 0 0 0 0 -4 0 13 0 p/3-4cyli.dat
+1 16 -6 0 -7 4 0 0 0 0 -4 0 13 0 p/3-4cyli.dat
+1 16 6 0 -10 0 0 4 -4 0 0 0 3 0 p/2-4cyli.dat
+1 16 6 0 6 0 0 4 -4 0 0 0 2 0 p/2-4cyli.dat
+1 16 -6 0 -10 0 0 -4 -4 0 0 0 3 0 p/2-4cyli.dat
+1 16 -6 0 6 0 0 -4 -4 0 0 0 2 0 p/2-4cyli.dat
+
+1 16 6 0 8 3 0 0 0 0 3 0 1 0 p/4-4cylo.dat
+1 16 -6 0 8 3 0 0 0 0 3 0 1 0 p/4-4cylo.dat
+1 16 6 0 9 4 0 0 0 0 4 0 1 0 p/4-4cylo.dat
+1 16 -6 0 9 4 0 0 0 0 4 0 1 0 p/4-4cylo.dat
+0 BFC INVERTNEXT
+1 16 6 0 8 2.5 0 0 0 0 2.5 0 2 0 p/4-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -6 0 8 2.5 0 0 0 0 2.5 0 2 0 p/4-4cylo.dat
+
+1 16 6 0 9 1 0 0 0 0 1 0 1 0 p/4-4ring3.dat
+1 16 -6 0 9 1 0 0 0 0 1 0 1 0 p/4-4ring3.dat
+
+1 16 6 0 10 -1 0 0 0 0 1 0 -1 0 p/4-4ring3.dat
+1 16 6 0 10 -0.5 0 0 0 0 0.5 0 -1 0 p/4-4ring5.dat
+
+1 16 -6 0 10 -1 0 0 0 0 1 0 -1 0 p/4-4ring3.dat
+1 16 -6 0 10 -0.5 0 0 0 0 0.5 0 -1 0 p/4-4ring5.dat
+
+1 16 -6 0 -18 4.2426 0 -4.2426 4.2426 0 4.2426 0 8 0 p/3-4cylo.dat
+1 16 -6 0 -10 -6 0 0 0 0 6 0 -1 0 p/4-4disc.dat
+0 BFC INVERTNEXT
+1 16 -6 0 -12 4 0 0 0 0 4 0 -6 0 p/4-4cylc.dat
+1 16 -6 0 -18 2 0 0 0 0 2 0 1 0 p/4-4ring2.dat
+
+1 16 6 0 -18 -4.2426 0 4.2426 4.2426 0 4.2426 0 8 0 p/3-4cylo.dat
+1 16 6 0 -10 -6 0 0 0 0 6 0 -1 0 p/4-4disc.dat
+0 BFC INVERTNEXT
+1 16 6 0 -12 4 0 0 0 0 4 0 -6 0 p/4-4cylc.dat
+1 16 6 0 -18 2 0 0 0 0 2 0 1 0 p/4-4ring2.dat
+
+0 BFC INVERTNEXT
+1 16 0 -6 -18 1.7574 0 -1.7574 1.7574 0 1.7574 0 8 0 p/1-4cylo.dat
+1 16 0 -6 -18 1.7574 0 -1.7574 1.7574 0 1.7574 0 1 0 p/1-4ndis.dat
+1 16 0 -6 -10 -1.7574 0 1.7574 1.7574 0 1.7574 0 -1 0 p/1-4ndis.dat
+3 16 0 -2.4852 -18 0 0 -18 1.7574 -4.2426 -18
+3 16 -1.7574 -4.2426 -18 0 0 -18 0 -2.4852 -18
+3 16 1.7574 -4.2426 -10 0 0 -10 0 -2.4852 -10
+3 16 0 -2.4852 -10 0 0 -10 -1.7574 -4.2426 -10
+
+0 BFC INVERTNEXT
+1 16 0 6 -18 -1.7574 0 1.7574 -1.7574 0 -1.7574 0 8 0 p/1-4cylo.dat
+1 16 0 6 -18 -1.7574 0 1.7574 -1.7574 0 -1.7574 0 1 0 p/1-4ndis.dat
+1 16 0 6 -10 1.7574 0 -1.7574 -1.7574 0 -1.7574 0 -1 0 p/1-4ndis.dat
+3 16 0 2.4852 -18 0 0 -18 -1.7574 4.2426 -18
+3 16 1.7574 4.2426 -18 0 0 -18 0 2.4852 -18
+3 16 -1.7574 4.2426 -10 0 0 -10 0 2.4852 -10
+3 16 0 2.4852 -10 0 0 -10 1.7574 4.2426 -10
+
+0 FILE p/3-4cylo.dat
+0 Cylinder Open 0.75
+0 Name: 3-4cylo.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/3-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-4cyli.dat
+
+0 FILE p/2-4chrd.dat
+0 Chord 0.5
+0 Name: 2-4chrd.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2014-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-06-21 [PTadmin] Official Update 2014-01
+
+4 16 0.9239 0 0.3827 -0.9239 0 0.3827 -1 0 0 1 0 0
+4 16 0.7071 0 0.7071 -0.7071 0 0.7071 -0.9239 0 0.3827 0.9239 0 0.3827
+4 16 0.3827 0 0.9239 -0.3827 0 0.9239 -0.7071 0 0.7071 0.7071 0 0.7071
+3 16 0 0 1 -0.3827 0 0.9239 0.3827 0 0.9239
+
+0 FILE parts/4733.dat
+0 Brick  1 x  1 with Studs on Four Sides
+0 Name: 4733.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2004-07-24 [cwdee] Add "Four" to part title
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 6 24 6 -6 24 6
+2 24 -6 24 6 -6 24 -6
+2 24 -6 24 -6 6 24 -6
+2 24 6 24 -6 6 24 6
+2 24 6 4 6 -6 4 6
+2 24 -6 4 6 -6 4 -6
+2 24 -6 4 -6 6 4 -6
+2 24 6 4 -6 6 4 6
+2 24 6 4 6 6 24 6
+2 24 -6 4 6 -6 24 6
+2 24 -6 4 -6 -6 24 -6
+2 24 6 4 -6 6 24 -6
+2 24 10 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -10
+2 24 -10 24 -10 10 24 -10
+2 24 10 24 -10 10 24 10
+2 24 10 0 10 -10 0 10
+2 24 -10 0 10 -10 0 -10
+2 24 -10 0 -10 10 0 -10
+2 24 10 0 -10 10 0 10
+2 24 10 0 10 10 24 10
+2 24 -10 0 10 -10 24 10
+2 24 -10 0 -10 -10 24 -10
+2 24 10 0 -10 10 24 -10
+1 16 0 4 0 4 0 0 0 -1 0 0 0 4 p/4-4edge.dat
+1 16 6 10 0 0 -1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 0 10 -6 4 0 0 0 0 4 0 -1 0 p/4-4edge.dat
+1 16 -6 10 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 0 10 6 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 10 10 0 0 1 0 6 0 0 0 0 6 p/4-4edge.dat
+1 16 0 10 -10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 -10 10 0 0 1 0 6 0 0 0 0 6 p/4-4edge.dat
+1 16 0 10 10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 4 0 4 0 0 0 -1 0 0 0 4 p/4-4ndis.dat
+1 16 6 10 0 0 1 0 4 0 0 0 0 4 p/4-4ndis.dat
+1 16 0 10 -6 -4 0 0 0 0 4 0 -1 0 p/4-4ndis.dat
+1 16 -6 10 0 0 -1 0 4 0 0 0 0 -4 p/4-4ndis.dat
+1 16 0 10 6 4 0 0 0 0 4 0 1 0 p/4-4ndis.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 10 10 0 0 -1 0 6 0 0 0 0 -6 p/4-4ndis.dat
+1 16 0 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+1 16 -10 10 0 0 1 0 6 0 0 0 0 6 p/4-4ndis.dat
+1 16 0 10 10 -6 0 0 0 0 6 0 -1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 10 0 0 -4 0 4 0 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 -10 4 0 0 0 0 4 0 4 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 0 4 0 4 0 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 10 4 0 0 0 0 4 0 -4 0 p/4-4cyli.dat
+4 16 10 24 10 6 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -6 -10 24 -10
+4 16 -10 24 -10 -6 24 -6 6 24 -6 10 24 -10
+4 16 10 24 -10 6 24 -6 6 24 6 10 24 10
+4 16 6 4 6 4 4 4 -4 4 4 -6 4 6
+4 16 -6 4 6 -4 4 4 -4 4 -4 -6 4 -6
+4 16 -6 4 -6 -4 4 -4 4 4 -4 6 4 -6
+4 16 6 4 -6 4 4 -4 4 4 4 6 4 6
+4 16 -10 0 10 -6 0 6 6 0 6 10 0 10
+4 16 -10 0 -10 -6 0 -6 -6 0 6 -10 0 10
+4 16 10 0 -10 6 0 -6 -6 0 -6 -10 0 -10
+4 16 10 0 10 6 0 6 6 0 -6 10 0 -10
+4 16 -10 24 10 -6 16 10 6 16 10 10 24 10
+4 16 -10 24 10 -10 0 10 -6 4 10 -6 16 10
+4 16 10 0 10 6 4 10 -6 4 10 -10 0 10
+4 16 10 0 10 10 24 10 6 16 10 6 4 10
+4 16 6 24 6 4 14 6 -4 14 6 -6 24 6
+4 16 -6 24 6 -4 14 6 -4 6 6 -6 4 6
+4 16 -6 4 6 -4 6 6 4 6 6 6 4 6
+4 16 6 4 6 4 6 6 4 14 6 6 24 6
+4 16 -6 24 -6 -4 14 -6 4 14 -6 6 24 -6
+4 16 6 24 -6 4 14 -6 4 6 -6 6 4 -6
+4 16 6 4 -6 4 6 -6 -4 6 -6 -6 4 -6
+4 16 -6 4 -6 -4 6 -6 -4 14 -6 -6 24 -6
+4 16 10 24 -10 6 16 -10 -6 16 -10 -10 24 -10
+4 16 -10 24 -10 -6 16 -10 -6 4 -10 -10 0 -10
+4 16 -10 0 -10 -6 4 -10 6 4 -10 10 0 -10
+4 16 10 0 -10 6 4 -10 6 16 -10 10 24 -10
+4 16 10 24 10 10 16 6 10 16 -6 10 24 -10
+4 16 10 24 -10 10 16 -6 10 4 -6 10 0 -10
+4 16 10 0 -10 10 4 -6 10 4 6 10 0 10
+4 16 10 0 10 10 4 6 10 16 6 10 24 10
+4 16 6 24 -6 6 14 -4 6 14 4 6 24 6
+4 16 6 24 6 6 14 4 6 6 4 6 4 6
+4 16 6 4 6 6 6 4 6 6 -4 6 4 -6
+4 16 6 4 -6 6 6 -4 6 14 -4 6 24 -6
+4 16 -6 24 6 -6 14 4 -6 14 -4 -6 24 -6
+4 16 -6 24 -6 -6 14 -4 -6 6 -4 -6 4 -6
+4 16 -6 4 -6 -6 6 -4 -6 6 4 -6 4 6
+4 16 -6 4 6 -6 6 4 -6 14 4 -6 24 6
+4 16 -10 24 -10 -10 16 -6 -10 16 6 -10 24 10
+4 16 -10 24 -10 -10 0 -10 -10 4 -6 -10 16 -6
+4 16 -10 0 10 -10 4 6 -10 4 -6 -10 0 -10
+4 16 -10 0 10 -10 24 10 -10 16 6 -10 4 6
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 10 10 0 0 -1 0 1 0 0 0 0 1 p/stud2a.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+1 16 -10 10 0 0 1 0 1 0 0 0 0 1 p/stud2a.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/stud2a.dat
+0
+
+0 FILE parts/3706.dat
+0 Technic Axle  6
+0 Name: 3706.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-11 [guyvivan] BFC'ed
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 60 0 0 0 -120 0 1 0 0 0 0 1 p/axle.dat
+0
+
+
+0 FILE parts/30367a.dat
+0 Cylinder  2 x  2 with Dome Top with Blocked Stud
+0 Name: 30367a.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Star Wars, R2-D2, astromech, droid, robot, minifig, head
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from 553 (2004-11-05)
+0 !HISTORY 2009-10-10 [anathema] Rebuilt using torus primitives
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+0 !HISTORY 2012-05-15 [MagFors] Moved part of subfile, to use it in 30367b and 30367c
+0 !HISTORY 2012-05-15 [MagFors] Renamed from 30367
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/30367as01.dat
+0 // outside surface
+1 16 0 16 0 8 0 0 0 -10.667 0 0 0 -8 p/r04o1500.dat
+1 16 0 16 0 0 0 -8 0 -10.667 0 -8 0 0 p/r04o1500.dat
+1 16 0 16 0 -8 0 0 0 -10.667 0 0 0 8 p/r04o1500.dat
+1 16 0 16 0 0 0 8 0 -10.667 0 8 0 0 p/r04o1500.dat
+1 16 0 16 0 20 0 0 0 4 0 0 0 20 p/4-4cyli.dat
+
+0 FILE p/r04o1500.dat
+0 Torus Outside  1 x 1.5000 x 0.25
+0 Name: r04o1500.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+0 !HISTORY 2013-09-27 [MMR1988] Recreated to fix condlines
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Major Radius: 2
+0 // Tube(Minor) Radius: 3
+0 // Segments(Sweep): 4/16 = 0.25
+0 // 1  9  0 0 0  1 0 0  0 1 0  0 0 1 4-4edge.dat
+0 // 1  12  1 0 0 1.5000 0 0  0 0 1.5000  0 1 0  4-4edge.dat
+
+4 16 1 1.5 0 0.9239 1.5 0.3827 1.4543 1.3859 0.6024 1.5741 1.3859 0
+4 16 1.5741 1.3859 0 1.4543 1.3859 0.6024 1.9038 1.0607 0.7886 2.0607 1.0607 0
+4 16 2.0607 1.0607 0 1.9038 1.0607 0.7886 2.2043 0.5741 0.9131 2.3859 0.5741 0
+4 16 2.3859 0.5741 0 2.2043 0.5741 0.9131 2.3098 0 0.9568 2.5 0 0
+4 16 0.9239 1.5 0.3827 0.7071 1.5 0.7071 1.113 1.3859 1.113 1.4543 1.3859 0.6024
+4 16 1.4543 1.3859 0.6024 1.113 1.3859 1.113 1.4571 1.0607 1.4571 1.9038 1.0607 0.7886
+4 16 1.9038 1.0607 0.7886 1.4571 1.0607 1.4571 1.687 0.5741 1.687 2.2043 0.5741 0.9131
+4 16 2.2043 0.5741 0.9131 1.687 0.5741 1.687 1.7678 0 1.7678 2.3098 0 0.9568
+4 16 0.7071 1.5 0.7071 0.3827 1.5 0.9239 0.6024 1.3859 1.4543 1.113 1.3859 1.113
+4 16 1.113 1.3859 1.113 0.6024 1.3859 1.4543 0.7886 1.0607 1.9038 1.4571 1.0607 1.4571
+4 16 1.4571 1.0607 1.4571 0.7886 1.0607 1.9038 0.9131 0.5741 2.2043 1.687 0.5741 1.687
+4 16 1.687 0.5741 1.687 0.9131 0.5741 2.2043 0.9568 0 2.3098 1.7678 0 1.7678
+4 16 0.3827 1.5 0.9239 0 1.5 1 0 1.3859 1.5741 0.6024 1.3859 1.4543
+4 16 0.6024 1.3859 1.4543 0 1.3859 1.5741 0 1.0607 2.0607 0.7886 1.0607 1.9038
+4 16 0.7886 1.0607 1.9038 0 1.0607 2.0607 0 0.5741 2.3859 0.9131 0.5741 2.2043
+4 16 0.9131 0.5741 2.2043 0 0.5741 2.3859 0 0 2.5 0.9568 0 2.3098
+
+0 // conditional lines
+5 24 1 1.5 0 0.9239 1.5 0.3827 1.5741 1.3859 0 0.3787 1.5 0
+5 24 1 1.5 0 1.5741 1.3859 0 0.9239 1.5 0.3827 1 1.5 -0.4142
+5 24 1.5741 1.3859 0 1.4543 1.3859 0.6024 2.0607 1.0607 0 1 1.5 0
+5 24 1.5741 1.3859 0 2.0607 1.0607 0 1.4543 1.3859 0.6024 1.5741 1.3859 -0.652
+5 24 2.0607 1.0607 0 1.9038 1.0607 0.7886 2.3859 0.5741 0 1.5741 1.3859 0
+5 24 2.0607 1.0607 0 2.3859 0.5741 0 1.9038 1.0607 0.7886 2.0607 1.0607 -0.8535
+5 24 2.3859 0.5741 0 2.2043 0.5741 0.9131 2.5 0 0 2.0607 1.0607 0
+5 24 2.3859 0.5741 0 2.5 0 0 2.2043 0.5741 0.9131 2.3859 0.5741 -0.9882
+5 24 2.5 0 0 2.3098 0 0.9568 2.5 -0.6213 0 2.3859 0.5741 0
+5 24 0.9239 1.5 0.3827 0.7071 1.5 0.7071 1.4543 1.3859 0.6024 0.3499 1.5 0.1449
+5 24 0.9239 1.5 0.3827 1.4543 1.3859 0.6024 0.7071 1.5 0.7071 1 1.5 0
+5 24 1.4543 1.3859 0.6024 1.113 1.3859 1.113 1.9038 1.0607 0.7886 0.9239 1.5 0.3827
+5 24 1.4543 1.3859 0.6024 1.9038 1.0607 0.7886 1.113 1.3859 1.113 1.5741 1.3859 0
+5 24 1.9038 1.0607 0.7886 1.4571 1.0607 1.4571 2.2043 0.5741 0.9131 1.4543 1.3859 0.6024
+5 24 1.9038 1.0607 0.7886 2.2043 0.5741 0.9131 1.4571 1.0607 1.4571 2.0607 1.0607 0
+5 24 2.2043 0.5741 0.9131 1.687 0.5741 1.687 2.3098 0 0.9568 1.9038 1.0607 0.7886
+5 24 2.2043 0.5741 0.9131 2.3098 0 0.9568 1.687 0.5741 1.687 2.3859 0.5741 0
+5 24 2.3098 0 0.9568 1.7678 0 1.7678 2.3098 -0.6213 0.9568 2.2043 0.5741 0.9131
+5 24 0.7071 1.5 0.7071 0.3827 1.5 0.9239 1.113 1.3859 1.113 0.2678 1.5 0.2678
+5 24 0.7071 1.5 0.7071 1.113 1.3859 1.113 0.3827 1.5 0.9239 0.9239 1.5 0.3827
+5 24 1.113 1.3859 1.113 0.6024 1.3859 1.4543 1.4571 1.0607 1.4571 0.7071 1.5 0.7071
+5 24 1.113 1.3859 1.113 1.4571 1.0607 1.4571 0.6024 1.3859 1.4543 1.4543 1.3859 0.6024
+5 24 1.4571 1.0607 1.4571 0.7886 1.0607 1.9038 1.687 0.5741 1.687 1.113 1.3859 1.113
+5 24 1.4571 1.0607 1.4571 1.687 0.5741 1.687 0.7886 1.0607 1.9038 1.9038 1.0607 0.7886
+5 24 1.687 0.5741 1.687 0.9131 0.5741 2.2043 1.7678 0 1.7678 1.4571 1.0607 1.4571
+5 24 1.687 0.5741 1.687 1.7678 0 1.7678 0.9131 0.5741 2.2043 2.2043 0.5741 0.9131
+5 24 1.7678 0 1.7678 0.9568 0 2.3098 1.7678 -0.6213 1.7678 1.687 0.5741 1.687
+5 24 0.3827 1.5 0.9239 0 1.5 1 0.6024 1.3859 1.4543 0.1449 1.5 0.3499
+5 24 0.3827 1.5 0.9239 0.6024 1.3859 1.4543 0 1.5 1 0.7071 1.5 0.7071
+5 24 0.6024 1.3859 1.4543 0 1.3859 1.5741 0.7886 1.0607 1.9038 0.3827 1.5 0.9239
+5 24 0.6024 1.3859 1.4543 0.7886 1.0607 1.9038 0 1.3859 1.5741 1.113 1.3859 1.113
+5 24 0.7886 1.0607 1.9038 0 1.0607 2.0607 0.9131 0.5741 2.2043 0.6024 1.3859 1.4543
+5 24 0.7886 1.0607 1.9038 0.9131 0.5741 2.2043 0 1.0607 2.0607 1.4571 1.0607 1.4571
+5 24 0.9131 0.5741 2.2043 0 0.5741 2.3859 0.9568 0 2.3098 0.7886 1.0607 1.9038
+5 24 0.9131 0.5741 2.2043 0.9568 0 2.3098 0 0.5741 2.3859 1.687 0.5741 1.687
+5 24 0.9568 0 2.3098 0 0 2.5 0.9568 -0.6213 2.3098 0.9131 0.5741 2.2043
+5 24 0 1.5 1 0 1.3859 1.5741 -0.4142 1.5 1 0.3827 1.5 0.9239
+5 24 0 1.3859 1.5741 0 1.0607 2.0607 -0.652 1.3859 1.5741 0.6024 1.3859 1.4543
+5 24 0 1.0607 2.0607 0 0.5741 2.3859 -0.8535 1.0607 2.0607 0.7886 1.0607 1.9038
+5 24 0 0.5741 2.3859 0 0 2.5 -0.9882 0.5741 2.3859 0.9131 0.5741 2.2043
+0 // Build by Primitive Generator 2
+
+0 FILE parts/s/30367as01.dat
+0 ~Cylinder  2 x  2 with Dome Top with Blocked Stud
+0 Name: s\30367as01.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Subpart UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+1 16 0 20 0 -1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 4 0 0 0 2 0 -1 0 2 0 0 p/4-4ring2.dat
+1 16 0 16 0 8 0 0 0 4 0 0 0 8 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 16 0 16 0 0 0 4 0 0 0 16 p/4-4cyli.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/30367s01.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 parts/s/30367s01.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/s/30367s01.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 parts/s/30367s01.dat
+0 // stud
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/filstud3.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+
+
+0 FILE p/filstud3.dat
+0 Stud Filler with 3 Ribs for Hollow Studs
+0 Name: filstud3.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Primitive UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+1 16 0 4 0 4 0 0 0 1 0 0 0 4 p/3-16edge.dat
+1 16 0 4 0 -1.5307 0 -3.6955 0 1 0 3.6955 0 -1.5307 p/3-16edge.dat
+1 16 0 4 0 -2.8284 0 2.8284 0 1 0 -2.8284 0 -2.8284 p/1-4edge.dat
+2 24 1 4 3.801 1.5307 4 3.6955
+2 24 -1 4 3.801 -1.5307 4 3.6955
+2 24 -3.794 4 -1.036 -4 4 0
+2 24 3.794 4 -1.036 4 4 0
+4 16 0 4 0 0 4 4 1 4 3.801 1 4 0.577
+4 16 0 4 0 -1 4 0.577 -1 4 3.801 0 4 4
+4 16 0 4 0 -3.6955 4 -1.5307 -3.794 4 -1.036 -1 4 0.577
+4 16 0 4 0 0 4 -1.1545 -2.8284 4 -2.8284 -3.6955 4 -1.5307
+4 16 0 4 0 3.6955 4 -1.5307 2.8284 4 -2.8284 0 4 -1.1545
+4 16 0 4 0 1 4 0.577 3.794 4 -1.036 3.6955 4 -1.5307
+0 //
+0 BFC INVERTNEXT
+1 16 2.397 2 1.3825 0 -1.397 0 -2 0 0 0 0.8065 -1.612 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -2.397 2 1.3825 0 1.397 0 2 0 0 0 0.8065 -1.612 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 0 2 -2.8284 0 1.4142 -1.4142 -2 0 0 0 0.83695 0.83695 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 4 0 0 0 4 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 -1.5307 0 -3.6955 0 4 0 3.6955 0 -1.5307 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 -2.8284 0 2.8284 0 4 0 -2.8284 0 -2.8284 p/1-4cyli.dat
+4 16 1 4 3.801 1.5307 4 3.6955 1.5307 0 3.6955 1 0 3.801
+4 16 -1 0 3.801 -1.5307 0 3.6955 -1.5307 4 3.6955 -1 4 3.801
+4 16 -3.794 4 -1.036 -4 4 0 -4 0 0 -3.794 0 -1.036
+4 16 3.794 0 -1.036 4 0 0 4 4 0 3.794 4 -1.036
+5 24 1.5307 4 3.6955 1.5307 0 3.6955 1 0 3.801 2.8284 0 2.8284
+5 24 -1.5307 4 3.6955 -1.5307 0 3.6955 -1 0 3.801 -2.82848 0 2.82847
+5 24 -4 4 0 -4 0 0 -3.794 0 -1.036 -3.69545 0 1.53073
+5 24 4 4 0 4 0 0 3.794 0 -1.036 3.6956 0 1.5308
+0 //
+2 24 1 0 3.801 0 0 4
+2 24 0 0 4 -1 0 3.801
+2 24 -3.794 0 -1.036 -3.6955 0 -1.5307
+2 24 -2.8284 0 -2.8284 -3.6955 0 -1.5307
+2 24 3.794 0 -1.036 3.6955 0 -1.5307
+2 24 2.8284 0 -2.8284 3.6955 0 -1.5307
+4 16 0 0 0 1 0 0.577 1 0 3.801 0 0 4
+4 16 0 0 0 0 0 4 -1 0 3.801 -1 0 0.577
+4 16 0 0 0 -1 0 0.577 -3.794 0 -1.036 -3.6955 0 -1.5307
+4 16 0 0 0 -3.6955 0 -1.5307 -2.8284 0 -2.8284 0 0 -1.1545
+4 16 0 0 0 0 0 -1.1545 2.8284 0 -2.8284 3.6955 0 -1.5307
+4 16 0 0 0 3.6955 0 -1.5307 3.794 0 -1.036 1 0 0.577
+
+0 FILE parts/s/30367s01.dat
+0 ~Cylinder  2 x  2 with Dome Top Subpart - Quarter
+0 Name: s\30367s01.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Subpart UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-10 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from s\553s01 (2004-11-05)
+0 !HISTORY 2009-10-10 [anathema] Increased use of primitives; fixed gaps in stud closure
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+0 !HISTORY 2012-05-15 [MagFors] Moved part of file, to use it in 30367b and 30367c
+0 !HISTORY 2012-12-23 [MagFors] Divided into quarter section
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+0 !HISTORY 2018-03-26 [cwdee] Replace t04ounit with identical r04o1000
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+2 24 16 20 11.36 14.14 20 14.14
+2 24 14.14 20 14.14 11.36 20 16
+2 24 16 24 -11.36 16 24 11.36
+2 24 11.36 20 16 0 20 16
+2 24 16 20 0 16 20 11.36
+1 16 0 20 0 16 0 0 0 1 0 0 0 16 p/1-4edge.dat
+1 16 0 24 0 18.4776 0 7.6537 0 1 0 -7.6537 0 18.4776 p/1-8edge.dat
+1 16 0 24 0 18.4776 0 7.6537 0 -1 0 7.6537 0 -18.4776 p/1-8chrd.dat
+4 16 18.4776 24 -7.6537 18.47744 24 7.65358 16 24 11.36 16 24 -11.36
+4 16 16 24 11.36 16 20 11.36 16 20 0 16 24 -11.36
+1 16 0 20 0 18.4776 0 7.6537 0 4 0 -7.6537 0 18.4776 p/1-8cyli.dat
+1 16 17.23872 22 9.50679 -1.23872 -1 0 0 0 2 1.85321 0 0 p/rect2a.dat
+5 24 18.477 24 7.654 18.477 20 7.654 16 20 11.36 20.001 20 0
+3 16 0 20 16 11.36 20 16 11.36 24 16
+1 16 9.507 22 17.239 0 0 1.853 2 0 0 0 -1 -1.239 p/rect2a.dat
+5 24 18.478 20 -7.654 18.478 24 -7.654 16 24 -11.36 20.001 24 0
+3 16 16 20 0 16 20 11.36 14.7824 20 6.1232
+4 16 14.7824 20 6.1232 16 20 11.36 14.14 20 14.14 11.3136 20 11.3136
+4 16 6.1232 20 14.7824 11.3136 20 11.3136 14.14 20 14.14 11.36 20 16
+3 16 0 20 16 6.1232 20 14.7824 11.36 20 16
+1 16 0 4 0 7.391 0 -3.061 0 1 0 3.061 0 7.391 p/1-8edge.dat
+1 16 0 4 0 7.391 0 -3.061 0 12 0 3.061 0 7.391 p/1-8cyli.dat
+1 16 7.5465 10 2.2805 0.1555 -1 0 0 0 -6 -0.7805 0 0 p/rect2a.dat
+5 24 7.391 4 3.061 7.391 16 3.061 7.702 16 1.5 5.657 16 5.657
+1 16 7.702 16 1.5 8 0 0 0 0 -12 0 1 0 p/1-4edge.dat
+1 16 7.702 16 1.5 8 0 0 0 0 -12 0 -1 0 p/1-4disc.dat
+1 16 11.851 16 0.75 4 0 -0.149 0 -1 0 0 0 0.75 p/rect3.dat
+1 16 2.281 10 7.546 0 0 -0.78087 -6 0 0 0 -1 0.1557 p/rect2a.dat
+5 24 3.062 4 7.391 3.062 16 7.391 1.5 16 7.702 5.657 16 5.657
+1 16 1.5 16 7.702 0 -1 0 0 0 -12 8 0 0 p/1-4disc.dat
+1 16 1.5 16 7.702 0 -1 0 0 0 -12 8 0 0 p/1-4edge.dat
+1 16 0.75 16 11.851 0 0 0.75 0 -1 0 -4 0 -0.149 p/rect3.dat
+0 BFC INVERTNEXT
+1 16 0 16 0 8 0 0 0 -12 0 0 0 8 p/r04o1000.dat
+
+0 FILE parts/32013.dat
+0 Technic Angle Connector #1
+0 Name: 32013.dat
+0 Author: Lutz Uhlmann [El-Lutzo]
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC Compliant (2004-07-10)
+0 !HISTORY 2009-08-03 [Philo] Improved shape, added identification number
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 0 0 1 0 -1 0 0 0 0 1 p/connhole.dat
+1 16 -10 0 0 0 1 0 -9 0 0 0 0 9 p/4-4edge.dat
+1 16 10 0 0 0 1 0 -9 0 0 0 0 9 p/4-4edge.dat
+1 16 10 0 0 0 -20 0 -9 0 0 0 0 9 p/4-4cyli.dat
+1 16 0 0 0 -1 0 0 0 -1 0 0 0 -1 parts/s/32013s01.dat
+2 24 3.444 8.499 -2.517 1.155 8.724 -1.387
+2 24 1.155 8.724 -1.387 -1.154 8.724 -1.386
+2 24 -1.154 8.724 -1.386 -3.444 8.5 -2.516
+0 // 1
+4 16 -9 -0.875 -26.75 -9 -0.875 -16.75 -9 0.25 -18.375 -9 0.25 -26.75
+4 16 -9 -0.875 -16.75 -9 0.275 -16.75 -9 2 -18.675 -9 0.25 -18.375
+3 16 -9 2 -18.675 -9 1.05 -19.325 -9 0.25 -18.375
+1 16 -8.75 -0.3 -16.75 0 0 -0.25 0.575 0 0 0 -1 0 p/rect.dat
+1 16 -8.75 1.137 -17.712 0.25 0 0 0 -0.74474 0.8625 0 -0.27811 -0.9625 p/rect3.dat
+1 16 -8.75 1.525 -19 0.25 0 0 0 -0.56468 -0.475 0 0.20579 -0.325 p/rect3.dat
+1 16 -8.75 0.65 -18.85 0.25 0 0 0 0.76491 -0.4 0 0.12963 0.475 p/rect3.dat
+1 16 -8.75 0.25 -22.562 0.25 0 0 0 -1 0 0 0 -4.1875 p/rect3.dat
+1 16 -8.75 -0.312 -26.75 0.25 0 0 0 0 -0.5625 0 1 0 p/rect3.dat
+1 16 -8.75 -0.875 -21.75 0 0 -0.25 0 1 0 5 0 0 p/rect2p.dat
+0
+
+0 FILE parts/3673.dat
+0 Technic Pin
+0 Name: 3673.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-04-10 [Steffen] BFCed
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 0 0 0 1 0 0 0 -1 -1 0 0 p/connect.dat
+1 16 0 0 0 0 -1 0 0 0 -1 1 0 0 p/connect.dat
+
+0 FILE parts/3894.dat
+0 Technic Brick  1 x  6 with Holes
+0 Name: 3894.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 56 24 6 -56 24 6
+2 24 56 24 -6 -56 24 -6
+2 24 60 24 10 -60 24 10
+2 24 60 24 -10 -60 24 -10
+0 BFC INVERTNEXT
+1 16 10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 52 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -52 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 48 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -48 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 12 18 6 12 10 6 8 10 6 8 18 6
+4 16 12 18 -6 8 18 -6 8 10 -6 12 10 -6
+4 16 32 18 6 32 10 6 28 10 6 28 18 6
+4 16 32 18 -6 28 18 -6 28 10 -6 32 10 -6
+4 16 -8 18 6 -8 10 6 -12 10 6 -12 18 6
+4 16 -8 18 -6 -12 18 -6 -12 10 -6 -8 10 -6
+4 16 -28 18 6 -28 10 6 -32 10 6 -32 18 6
+4 16 -28 18 -6 -32 18 -6 -32 10 -6 -28 10 -6
+4 16 56 24 6 56 4 6 48 4 6 48 18 6
+4 16 56 24 -6 48 18 -6 48 4 -6 56 4 -6
+4 16 -48 18 6 -48 4 6 -56 4 6 -56 24 6
+4 16 -48 18 -6 -56 24 -6 -56 4 -6 -48 4 -6
+4 16 56 24 6 48 18 6 -48 18 6 -56 24 6
+4 16 56 24 -6 -56 24 -6 -48 18 -6 48 18 -6
+4 16 60 24 10 56 24 6 -56 24 6 -60 24 10
+4 16 60 24 -10 -60 24 -10 -56 24 -6 56 24 -6
+4 16 60 24 10 60 24 -10 56 24 -6 56 24 6
+4 16 -60 24 10 -56 24 6 -56 24 -6 -60 24 -10
+0 BFC INVERTNEXT
+1 16 20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -60 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 12 18 10 8 18 10 8 2 10 12 2 10
+4 16 12 18 -10 12 2 -10 8 2 -10 8 18 -10
+4 16 32 18 10 28 18 10 28 2 10 32 2 10
+4 16 32 18 -10 32 2 -10 28 2 -10 28 18 -10
+4 16 -8 18 10 -12 18 10 -12 2 10 -8 2 10
+4 16 -8 18 -10 -8 2 -10 -12 2 -10 -12 18 -10
+4 16 -28 18 10 -32 18 10 -32 2 10 -28 2 10
+4 16 -28 18 -10 -28 2 -10 -32 2 -10 -32 18 -10
+4 16 60 24 10 -60 24 10 -48 18 10 48 18 10
+4 16 60 24 -10 48 18 -10 -48 18 -10 -60 24 -10
+4 16 60 0 10 48 2 10 -48 2 10 -60 0 10
+4 16 60 0 -10 -60 0 -10 -48 2 -10 48 2 -10
+4 16 60 24 10 48 18 10 48 2 10 60 0 10
+4 16 60 24 -10 60 0 -10 48 2 -10 48 18 -10
+4 16 -60 24 10 -60 0 10 -48 2 10 -48 18 10
+4 16 -60 24 -10 -48 18 -10 -48 2 -10 -60 0 -10
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/32324.dat
+0 Technic Brick  4 x  4 with Open Center  2 x  2
+0 Name: 32324.dat
+0 Author: Marc Klein [marckl]
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2002-04-17 [sbliss] Reworked with primitive files and BFC
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+0 BFC INVERTNEXT
+1 16 0 10 -38 -6 0 0 0 0 6 0 16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 38 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -38 10 20 0 16 0 0 0 6 6 0 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -22 10 0 0 -16 0 -6 0 0 0 0 -6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -38 10 -20 0 16 0 0 0 6 6 0 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 38 10 20 0 -16 0 0 0 6 -6 0 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 22 10 0 0 16 0 6 0 0 0 0 -6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 38 10 -20 0 -16 0 0 0 6 -6 0 0 p/4-4cyli.dat
+
+1 16 20 10 20 0 1 0 0 0 -1 -1 0 0 p/peghole3.dat
+1 16 20 10 0 0 1 0 0 0 -1 -1 0 0 p/peghole2.dat
+1 16 20 10 -20 0 1 0 0 0 -1 1 0 0 p/peghole3.dat
+1 16 0 10 -20 -1 0 0 0 0 -1 0 -1 0 p/peghole2.dat
+1 16 -20 10 -20 0 -1 0 0 0 -1 1 0 0 p/peghole3.dat
+1 16 -20 10 0 0 -1 0 0 0 -1 1 0 0 p/peghole2.dat
+1 16 -20 10 20 0 -1 0 0 0 -1 -1 0 0 p/peghole3.dat
+1 16 0 10 20 1 0 0 0 0 -1 0 1 0 p/peghole2.dat
+
+2 24 20 24 28 20 2 28
+4 16 22 2 28 22 24 28 20 24 28 20 2 28
+4 16 22 24 -28 22 2 -28 20 2 -28 20 24 -28
+2 24 20 2 -28 20 24 -28
+
+1 16 40 10 20 0 -1 0 0 0 1 -1 0 0 p/peghole.dat
+1 16 40 10 0 0 -1 0 0 0 1 -1 0 0 p/peghole.dat
+1 16 40 10 -20 0 -1 0 0 0 1 -1 0 0 p/peghole.dat
+1 16 0 10 -40 -1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -40 10 -20 0 1 0 0 0 1 1 0 0 p/peghole.dat
+1 16 -40 10 0 0 1 0 0 0 1 1 0 0 p/peghole.dat
+1 16 -40 10 20 0 1 0 0 0 1 1 0 0 p/peghole.dat
+1 16 0 10 40 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+
+1 16 37 10 -20 0 -14 0 0 0 8 -8 0 0 p/2-4cyli.dat
+1 16 37 10 -20 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+1 16 23 10 -20 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+1 16 37 10 0 0 -14 0 0 0 8 -8 0 0 p/2-4cyli.dat
+1 16 37 10 0 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+1 16 23 10 0 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+1 16 37 10 20 0 -14 0 0 0 8 -8 0 0 p/2-4cyli.dat
+1 16 37 10 20 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+1 16 23 10 20 0 -1 0 0 0 8 -8 0 0 p/2-4edge.dat
+
+4 16 -22 24 28 -22 2 28 -20 2 28 -20 24 28
+2 24 -20 2 28 -20 24 28
+4 16 -22 2 -28 -22 24 -28 -20 24 -28 -20 2 -28
+2 24 -20 24 -28 -20 2 -28
+
+1 16 -37 10 20 0 14 0 0 0 8 8 0 0 p/2-4cyli.dat
+1 16 -37 10 20 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 -23 10 20 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 -37 10 0 0 14 0 0 0 8 8 0 0 p/2-4cyli.dat
+1 16 -37 10 0 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 -23 10 0 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 -37 10 -20 0 14 0 0 0 8 8 0 0 p/2-4cyli.dat
+1 16 -37 10 -20 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 -23 10 -20 0 1 0 0 0 8 8 0 0 p/2-4edge.dat
+1 16 0 10 37 8 0 0 0 0 8 0 -14 0 p/2-4cyli.dat
+1 16 0 10 37 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 23 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+
+1 16 12 24 28 8 0 0 0 -22 0 0 0 -8 p/1-4cyli.dat
+1 16 12 24 28 8 0 0 0 -1 0 0 0 -8 p/1-4edge.dat
+1 16 12 2 28 8 0 0 0 -1 0 0 0 -8 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 12 24 28 5 0 0 0 -22 0 0 0 -5 p/1-4cyli.dat
+1 16 12 24 28 5 0 0 0 -1 0 0 0 -5 p/1-4edge.dat
+1 16 12 2 28 5 0 0 0 -1 0 0 0 -5 p/1-4edge.dat
+1 16 12 24 28 1 0 0 0 -1 0 0 0 -1 p/1-4ring5.dat
+1 16 12 24 28 2 0 0 0 -1 0 0 0 -2 p/1-4ring3.dat
+
+1 16 12 24 -28 0 0 8 0 -22 0 8 0 0 p/1-4cyli.dat
+1 16 12 24 -28 0 0 8 0 -1 0 8 0 0 p/1-4edge.dat
+1 16 12 2 -28 0 0 8 0 -1 0 8 0 0 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 12 24 -28 0 0 5 0 -22 0 5 0 0 p/1-4cyli.dat
+1 16 12 24 -28 0 0 5 0 -1 0 5 0 0 p/1-4edge.dat
+1 16 12 2 -28 0 0 5 0 -1 0 5 0 0 p/1-4edge.dat
+1 16 12 24 -28 0 0 1 0 -1 0 1 0 0 p/1-4ring5.dat
+1 16 12 24 -28 0 0 2 0 -1 0 2 0 0 p/1-4ring3.dat
+
+1 16 -12 24 -28 -8 0 0 0 -22 0 0 0 8 p/1-4cyli.dat
+1 16 -12 24 -28 -8 0 0 0 -1 0 0 0 8 p/1-4edge.dat
+1 16 -12 2 -28 -8 0 0 0 -1 0 0 0 8 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 -12 24 -28 -5 0 0 0 -22 0 0 0 5 p/1-4cyli.dat
+1 16 -12 24 -28 -5 0 0 0 -1 0 0 0 5 p/1-4edge.dat
+1 16 -12 2 -28 -5 0 0 0 -1 0 0 0 5 p/1-4edge.dat
+1 16 -12 24 -28 -1 0 0 0 -1 0 0 0 1 p/1-4ring5.dat
+1 16 -12 24 -28 -2 0 0 0 -1 0 0 0 2 p/1-4ring3.dat
+
+1 16 -12 24 28 0 0 -8 0 -22 0 -8 0 0 p/1-4cyli.dat
+1 16 -12 24 28 0 0 -8 0 -1 0 -8 0 0 p/1-4edge.dat
+1 16 -12 2 28 0 0 -8 0 -1 0 -8 0 0 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 -12 24 28 0 0 -5 0 -22 0 -5 0 0 p/1-4cyli.dat
+1 16 -12 24 28 0 0 -5 0 -1 0 -5 0 0 p/1-4edge.dat
+1 16 -12 2 28 0 0 -5 0 -1 0 -5 0 0 p/1-4edge.dat
+1 16 -12 24 28 0 0 -1 0 -1 0 -1 0 0 p/1-4ring5.dat
+1 16 -12 24 28 0 0 -2 0 -1 0 -2 0 0 p/1-4ring3.dat
+
+1 16 0 10 -37 -8 0 0 0 0 8 0 14 0 p/2-4cyli.dat
+1 16 0 10 -37 -8 0 0 0 0 8 0 1 0 p/2-4edge.dat
+1 16 0 10 -23 -8 0 0 0 0 8 0 1 0 p/2-4edge.dat
+1 16 0 10 -23 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+4 16 -8 2 -23 -8 10 -23 -12 10 -23 -12 2 -23
+4 16 -8 10 -23 -8 18 -23 -12 24 -23 -12 10 -23
+4 16 -12 24 -23 -8 18 -23 8 18 -23 12 24 -23
+4 16 8 10 -23 12 10 -23 12 24 -23 8 18 -23
+4 16 12 10 -23 8 10 -23 8 2 -23 12 2 -23
+2 24 -8 2 -23 -8 10 -23
+2 24 -12 2 -23 -8 2 -23
+2 24 12 24 -23 -12 24 -23
+2 24 8 2 -23 12 2 -23
+2 24 8 10 -23 8 2 -23
+
+1 16 0 10 23 -8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 8 2 23 8 10 23 12 10 23 12 2 23
+4 16 8 10 23 8 18 23 12 24 23 12 10 23
+4 16 12 24 23 8 18 23 -8 18 23 -12 24 23
+4 16 -8 10 23 -12 10 23 -12 24 23 -8 18 23
+4 16 -12 10 23 -8 10 23 -8 2 23 -12 2 23
+2 24 8 2 23 8 10 23
+2 24 12 2 23 8 2 23
+2 24 -12 24 23 12 24 23
+2 24 -8 2 23 -12 2 23
+2 24 -8 10 23 -8 2 23
+
+1 16 -37 10 20 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+1 16 -37 10 0 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+1 16 -37 10 -20 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+3 16 -37 10 28 -37 2 28 -37 2 37
+4 16 -37 18 28 -37 10 28 -37 2 37 -37 24 37
+4 16 -37 18 12 -37 18 28 -37 24 37 -37 24 10
+3 16 -37 18 8 -37 18 12 -37 24 10
+4 16 -37 10 8 -37 10 12 -37 18 12 -37 18 8
+4 16 -37 2 8 -37 2 12 -37 10 12 -37 10 8
+4 16 -37 18 -8 -37 18 8 -37 24 10 -37 24 -10
+3 16 -37 18 -12 -37 18 -8 -37 24 -10
+4 16 -37 10 -12 -37 10 -8 -37 18 -8 -37 18 -12
+4 16 -37 2 -12 -37 2 -8 -37 10 -8 -37 10 -12
+4 16 -37 18 -28 -37 18 -12 -37 24 -10 -37 24 -37
+4 16 -37 10 -28 -37 18 -28 -37 24 -37 -37 2 -37
+3 16 -37 2 -28 -37 10 -28 -37 2 -37
+2 24 -37 10 8 -37 2 8
+2 24 -37 2 12 -37 10 12
+2 24 -37 2 8 -37 2 12
+2 24 -37 24 -37 -37 2 -37
+2 24 -37 24 37 -37 24 -37
+2 24 -37 10 -12 -37 2 -12
+2 24 -37 2 -8 -37 10 -8
+2 24 -37 2 -12 -37 2 -8
+2 24 -37 2 28 -37 2 37
+2 24 -37 10 28 -37 2 28
+2 24 -37 2 37 -37 24 37
+2 24 -37 2 -28 -37 10 -28
+2 24 -37 2 -37 -37 2 -28
+
+4 16 23 2 28 37 2 37 -37 2 37 -23 2 28
+4 16 23 2 -28 37 2 -37 37 2 37 23 2 28
+4 16 -23 2 -28 -37 2 -37 37 2 -37 23 2 -28
+4 16 -23 2 28 -37 2 37 -37 2 -37 -23 2 -28
+1 16 -12 2 -28 -5 0 0 0 -1 0 0 0 5 p/1-4disc.dat
+1 16 -12 2 28 0 0 -5 0 -1 0 -5 0 0 p/1-4disc.dat
+1 16 12 2 -28 0 0 5 0 -1 0 5 0 0 p/1-4disc.dat
+1 16 12 2 28 5 0 0 0 -1 0 0 0 -5 p/1-4disc.dat
+1 16 -12 2 -28 -8 0 0 0 -1 0 0 0 8 p/1-4ndis.dat
+1 16 -12 2 28 0 0 -8 0 -1 0 -8 0 0 p/1-4ndis.dat
+1 16 12 2 -28 0 0 8 0 -1 0 8 0 0 p/1-4ndis.dat
+1 16 12 2 28 8 0 0 0 -1 0 0 0 -8 p/1-4ndis.dat
+4 16 20 2 28 20 2 20 22 2 20 22 2 28
+4 16 20 2 -28 22 2 -28 22 2 -20 20 2 -20
+4 16 -22 2 20 -20 2 20 -20 2 28 -22 2 28
+4 16 -20 2 -28 -20 2 -20 -22 2 -20 -22 2 -28
+4 16 -8 2 -23 -12 2 -23 -12 2 -28 -8 2 -28
+4 16 -12 2 28 -12 2 23 -8 2 23 -8 2 28
+4 16 12 2 28 8 2 28 8 2 23 12 2 23
+4 16 12 2 -28 12 2 -23 8 2 -23 8 2 -28
+
+2 24 -23 2 28 -37 2 28
+2 24 -23 2 28 -23 2 31
+2 24 -8 2 37 -37 2 37
+2 24 -17 2 31 -23 2 31
+2 24 -8 2 37 -8 2 23
+2 24 -17 2 28 -17 2 31
+2 24 -8 2 -23 -8 2 -37
+2 24 -37 2 -37 -8 2 -37
+2 24 -23 2 -31 -17 2 -31
+2 24 -37 2 -28 -23 2 -28
+2 24 -23 2 -31 -23 2 -28
+2 24 -17 2 -31 -17 2 -28
+2 24 8 2 23 8 2 37
+2 24 23 2 31 17 2 31
+2 24 23 2 28 37 2 28
+2 24 23 2 31 23 2 28
+2 24 17 2 31 17 2 28
+2 24 23 2 -28 37 2 -28
+2 24 23 2 -28 23 2 -31
+2 24 17 2 -31 23 2 -31
+2 24 8 2 -37 8 2 -23
+2 24 17 2 -28 17 2 -31
+
+1 16 37 10 -20 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+1 16 37 10 0 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+1 16 37 10 20 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+3 16 37 10 -28 37 2 -28 37 2 -37
+4 16 37 18 -28 37 10 -28 37 2 -37 37 24 -37
+4 16 37 18 -12 37 18 -28 37 24 -37 37 24 -10
+3 16 37 18 -8 37 18 -12 37 24 -10
+4 16 37 10 -8 37 10 -12 37 18 -12 37 18 -8
+4 16 37 2 -8 37 2 -12 37 10 -12 37 10 -8
+4 16 37 18 8 37 18 -8 37 24 -10 37 24 10
+3 16 37 18 12 37 18 8 37 24 10
+4 16 37 10 12 37 10 8 37 18 8 37 18 12
+4 16 37 2 12 37 2 8 37 10 8 37 10 12
+4 16 37 18 28 37 18 12 37 24 10 37 24 37
+4 16 37 10 28 37 18 28 37 24 37 37 2 37
+3 16 37 2 28 37 10 28 37 2 37
+2 24 37 10 -8 37 2 -8
+2 24 37 2 -12 37 10 -12
+2 24 37 2 -8 37 2 -12
+2 24 37 24 37 37 2 37
+2 24 37 24 -37 37 24 37
+2 24 37 10 12 37 2 12
+2 24 37 2 8 37 10 8
+2 24 37 2 12 37 2 8
+2 24 37 2 -28 37 2 -37
+2 24 37 10 -28 37 2 -28
+2 24 37 2 -37 37 24 -37
+2 24 37 2 28 37 10 28
+2 24 37 2 37 37 2 28
+
+1 16 0 10 -37 -8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+3 16 -8 2 -37 -37 2 -37 -8 10 -37
+4 16 -8 18 -37 -8 10 -37 -37 2 -37 -37 24 -37
+4 16 0 18 -37 -8 18 -37 -37 24 -37 0 24 -37
+4 16 8 18 -37 0 18 -37 0 24 -37 37 24 -37
+4 16 37 24 -37 37 2 -37 8 10 -37 8 18 -37
+3 16 37 2 -37 8 2 -37 8 10 -37
+2 24 -37 24 -37 37 24 -37
+2 24 37 2 -37 8 2 -37
+2 24 8 10 -37 8 2 -37
+2 24 -8 2 -37 -8 10 -37
+
+1 16 0 10 37 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+3 16 8 2 37 37 2 37 8 10 37
+4 16 8 18 37 8 10 37 37 2 37 37 24 37
+4 16 0 18 37 8 18 37 37 24 37 0 24 37
+4 16 -8 18 37 0 18 37 0 24 37 -37 24 37
+4 16 -37 24 37 -37 2 37 -8 10 37 -8 18 37
+3 16 -37 2 37 -8 2 37 -8 10 37
+2 24 37 24 37 -37 24 37
+2 24 -8 10 37 -8 2 37
+2 24 8 2 37 8 10 37
+
+2 24 -22 2 28 -20 2 28
+2 24 -20 2 20 -12 2 20
+2 24 -20 2 -28 -22 2 -28
+2 24 -12 2 -20 -20 2 -20
+2 24 20 2 28 22 2 28
+2 24 12 2 20 20 2 20
+2 24 20 2 -20 12 2 -20
+2 24 22 2 -28 20 2 -28
+
+2 24 12 24 20 8 24 20
+2 24 20 0 20 20 2 20
+2 24 -20 0 20 20 0 20
+2 24 -8 24 20 -12 24 20
+2 24 -20 2 20 -20 0 20
+
+1 16 0 10 20 -8 0 0 0 0 -8 0 1 0 p/2-4ndis.dat
+3 16 -20 0 20 -12 2 20 -20 2 20
+4 16 -20 0 20 0 0 20 -8 2 20 -12 2 20
+3 16 0 0 20 8 2 20 -8 2 20
+4 16 0 0 20 20 0 20 12 2 20 8 2 20
+3 16 20 0 20 20 2 20 12 2 20
+3 16 -8 2 20 -8 10 20 -12 2 20
+4 16 -8 10 20 -8 24 20 -12 24 20 -12 2 20
+3 16 12 2 20 8 10 20 8 2 20
+4 16 12 2 20 12 24 20 8 24 20 8 10 20
+
+4 16 -40 0 -40 -40 0 40 -20 0 20 -20 0 -20
+2 24 -40 0 40 -40 0 -40
+2 24 -20 0 -20 -20 0 20
+4 16 -20 0 20 -40 0 40 40 0 40 20 0 20
+2 24 40 0 40 -40 0 40
+4 16 20 0 20 40 0 40 40 0 -40 20 0 -20
+2 24 40 0 -40 40 0 40
+2 24 20 0 20 20 0 -20
+4 16 20 0 -20 40 0 -40 -40 0 -40 -20 0 -20
+2 24 -40 0 -40 40 0 -40
+2 24 20 0 -20 -20 0 -20
+
+1 16 0 10 40 0 0 -8 -8 0 0 0 -1 0 p/4-4ndis.dat
+4 16 40 0 40 -40 0 40 -8 2 40 8 2 40
+4 16 -40 0 40 -40 24 40 -8 18 40 -8 2 40
+4 16 -40 24 40 40 24 40 8 18 40 -8 18 40
+4 16 40 24 40 40 0 40 8 2 40 8 18 40
+2 24 -40 24 40 40 24 40
+2 24 40 24 40 40 0 40
+2 24 -40 0 40 -40 24 40
+
+1 16 20 10 20 0 1 0 0 0 -8 -8 0 0 p/1-4ndis.dat
+1 16 20 10 0 0 1 0 0 0 -8 -8 0 0 p/2-4ndis.dat
+1 16 20 10 -20 0 1 0 0 0 -8 8 0 0 p/1-4ndis.dat
+4 16 20 24 12 20 10 12 20 10 8 20 24 8
+4 16 20 10 12 20 2 12 20 2 8 20 10 8
+4 16 20 24 -8 20 10 -8 20 10 -12 20 24 -12
+4 16 20 10 -8 20 2 -8 20 2 -12 20 10 -12
+3 16 20 0 20 20 2 12 20 2 20
+4 16 20 0 20 20 0 0 20 2 8 20 2 12
+3 16 20 0 0 20 2 -8 20 2 8
+4 16 20 0 0 20 0 -20 20 2 -12 20 2 -8
+3 16 20 0 -20 20 2 -20 20 2 -12
+2 24 20 0 -20 20 2 -20
+2 24 20 24 -12 20 24 -8
+2 24 20 24 8 20 24 12
+
+1 16 40 10 20 0 -1 0 0 0 8 8 0 0 p/4-4ndis.dat
+1 16 40 10 0 0 -1 0 0 0 8 8 0 0 p/4-4ndis.dat
+1 16 40 10 -20 0 -1 0 0 0 8 8 0 0 p/4-4ndis.dat
+4 16 40 0 -40 40 0 -10 40 2 -20 40 2 -28
+3 16 40 0 -10 40 2 -12 40 2 -20
+4 16 40 0 -10 40 2 -8 40 10 -12 40 2 -12
+3 16 40 0 -10 40 2 0 40 2 -8
+4 16 40 0 -10 40 0 10 40 2 8 40 2 0
+4 16 40 0 10 40 2 12 40 10 12 40 2 8
+3 16 40 0 10 40 2 20 40 2 12
+4 16 40 0 10 40 0 40 40 2 28 40 2 20
+3 16 40 0 40 40 10 28 40 2 28
+4 16 40 0 40 40 24 40 40 18 28 40 10 28
+4 16 40 24 40 40 24 10 40 18 20 40 18 28
+3 16 40 24 10 40 18 12 40 18 20
+4 16 40 24 10 40 18 8 40 10 12 40 18 12
+3 16 40 24 10 40 18 0 40 18 8
+4 16 40 24 10 40 24 -10 40 18 -8 40 18 0
+4 16 40 24 -10 40 18 -12 40 10 -12 40 18 -8
+3 16 40 24 -10 40 18 -20 40 18 -12
+4 16 40 24 -10 40 24 -40 40 18 -28 40 18 -20
+4 16 40 24 -40 40 0 -40 40 10 -28 40 18 -28
+3 16 40 0 -40 40 2 -28 40 10 -28
+3 16 40 10 -12 40 2 -8 40 18 -8
+3 16 40 10 12 40 18 8 40 2 8
+2 24 40 24 -40 40 0 -40
+2 24 40 24 40 40 24 -40
+
+1 16 -20 10 -20 0 -1 0 0 0 -8 8 0 0 p/1-4ndis.dat
+1 16 -20 10 0 0 -1 0 0 0 -8 8 0 0 p/2-4ndis.dat
+1 16 -20 10 20 0 -1 0 0 0 -8 -8 0 0 p/1-4ndis.dat
+4 16 -20 24 -12 -20 10 -12 -20 10 -8 -20 24 -8
+4 16 -20 10 -12 -20 2 -12 -20 2 -8 -20 10 -8
+4 16 -20 24 8 -20 10 8 -20 10 12 -20 24 12
+4 16 -20 10 8 -20 2 8 -20 2 12 -20 10 12
+3 16 -20 0 -20 -20 2 -12 -20 2 -20
+4 16 -20 0 -20 -20 0 0 -20 2 -8 -20 2 -12
+3 16 -20 0 0 -20 2 8 -20 2 -8
+4 16 -20 0 0 -20 0 20 -20 2 12 -20 2 8
+3 16 -20 0 20 -20 2 20 -20 2 12
+2 24 -20 24 12 -20 24 8
+2 24 -20 24 -8 -20 24 -12
+
+1 16 -40 10 -20 0 1 0 0 0 8 -8 0 0 p/4-4ndis.dat
+1 16 -40 10 0 0 1 0 0 0 8 -8 0 0 p/4-4ndis.dat
+1 16 -40 10 20 0 1 0 0 0 8 -8 0 0 p/4-4ndis.dat
+4 16 -40 0 40 -40 0 10 -40 2 20 -40 2 28
+3 16 -40 0 10 -40 2 12 -40 2 20
+4 16 -40 0 10 -40 2 8 -40 10 12 -40 2 12
+3 16 -40 0 10 -40 2 0 -40 2 8
+4 16 -40 0 10 -40 0 -10 -40 2 -8 -40 2 0
+4 16 -40 0 -10 -40 2 -12 -40 10 -12 -40 2 -8
+3 16 -40 0 -10 -40 2 -20 -40 2 -12
+4 16 -40 0 -10 -40 0 -40 -40 2 -28 -40 2 -20
+3 16 -40 0 -40 -40 10 -28 -40 2 -28
+4 16 -40 0 -40 -40 24 -40 -40 18 -28 -40 10 -28
+4 16 -40 24 -40 -40 24 -10 -40 18 -20 -40 18 -28
+3 16 -40 24 -10 -40 18 -12 -40 18 -20
+4 16 -40 24 -10 -40 18 -8 -40 10 -12 -40 18 -12
+3 16 -40 24 -10 -40 18 0 -40 18 -8
+4 16 -40 24 -10 -40 24 10 -40 18 8 -40 18 0
+4 16 -40 24 10 -40 18 12 -40 10 12 -40 18 8
+3 16 -40 24 10 -40 18 20 -40 18 12
+4 16 -40 24 10 -40 24 40 -40 18 28 -40 18 20
+4 16 -40 24 40 -40 0 40 -40 10 28 -40 18 28
+3 16 -40 0 40 -40 2 28 -40 10 28
+3 16 -40 10 12 -40 2 8 -40 18 8
+3 16 -40 10 -12 -40 18 -8 -40 2 -8
+2 24 -40 24 -40 -40 24 40
+
+1 16 0 10 -40 0 0 -8 8 0 0 0 1 0 p/4-4ndis.dat
+4 16 -40 0 -40 40 0 -40 8 2 -40 -8 2 -40
+4 16 40 0 -40 40 24 -40 8 18 -40 8 2 -40
+4 16 40 24 -40 -40 24 -40 -8 18 -40 8 18 -40
+4 16 -40 24 -40 -40 0 -40 -8 2 -40 -8 18 -40
+2 24 40 24 -40 -40 24 -40
+
+2 24 -23 2 31 -23 24 31
+2 24 -23 10 28 -23 2 28
+2 24 -23 2 12 -23 10 12
+2 24 -23 10 8 -23 2 8
+2 24 -23 2 8 -23 2 12
+2 24 -23 24 -31 -23 24 31
+2 24 -23 2 -8 -23 10 -8
+2 24 -23 10 -12 -23 2 -12
+2 24 -23 2 -12 -23 2 -8
+2 24 -23 2 -28 -23 10 -28
+2 24 -23 24 -31 -23 2 -31
+1 16 -23 10 20 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+1 16 -23 10 0 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+1 16 -23 10 -20 0 1 0 0 0 8 -8 0 0 p/2-4ndis.dat
+3 16 -23 2 31 -23 2 28 -23 10 28
+4 16 -23 2 31 -23 10 28 -23 18 28 -23 24 31
+3 16 -23 24 31 -23 18 28 -23 18 20
+4 16 -23 24 31 -23 18 20 -23 18 12 -23 24 10
+3 16 -23 24 10 -23 18 12 -23 18 8
+4 16 -23 18 12 -23 10 12 -23 10 8 -23 18 8
+4 16 -23 10 12 -23 2 12 -23 2 8 -23 10 8
+3 16 -23 24 10 -23 18 8 -23 18 0
+4 16 -23 24 10 -23 18 0 -23 18 -8 -23 24 -10
+3 16 -23 24 -10 -23 18 -8 -23 18 -12
+4 16 -23 18 -8 -23 10 -8 -23 10 -12 -23 18 -12
+4 16 -23 10 -8 -23 2 -8 -23 2 -12 -23 10 -12
+3 16 -23 24 -10 -23 18 -12 -23 18 -20
+4 16 -23 24 -10 -23 18 -20 -23 18 -28 -23 24 -31
+4 16 -23 24 -31 -23 18 -28 -23 10 -28 -23 2 -31
+3 16 -23 10 -28 -23 2 -28 -23 2 -31
+
+2 24 23 2 -12 23 10 -12
+2 24 23 10 -8 23 2 -8
+2 24 23 2 -8 23 2 -12
+2 24 23 2 8 23 10 8
+2 24 23 10 12 23 2 12
+2 24 23 2 12 23 2 8
+2 24 23 24 31 23 24 -31
+2 24 23 2 28 23 10 28
+2 24 23 24 31 23 2 31
+2 24 23 2 -31 23 24 -31
+2 24 23 10 -28 23 2 -28
+1 16 23 10 -20 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+1 16 23 10 0 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+1 16 23 10 20 0 -1 0 0 0 8 8 0 0 p/2-4ndis.dat
+3 16 23 2 -31 23 2 -28 23 10 -28
+4 16 23 2 -31 23 10 -28 23 18 -28 23 24 -31
+3 16 23 24 -31 23 18 -28 23 18 -20
+4 16 23 24 -31 23 18 -20 23 18 -12 23 24 -10
+3 16 23 24 -10 23 18 -12 23 18 -8
+4 16 23 18 -12 23 10 -12 23 10 -8 23 18 -8
+4 16 23 10 -12 23 2 -12 23 2 -8 23 10 -8
+3 16 23 24 -10 23 18 -8 23 18 0
+4 16 23 24 -10 23 18 0 23 18 8 23 24 10
+3 16 23 24 10 23 18 8 23 18 12
+4 16 23 18 8 23 10 8 23 10 12 23 18 12
+4 16 23 10 8 23 2 8 23 2 12 23 10 12
+3 16 23 24 10 23 18 12 23 18 20
+4 16 23 24 10 23 18 20 23 18 28 23 24 31
+4 16 23 24 31 23 18 28 23 10 28 23 2 31
+3 16 23 10 28 23 2 28 23 2 31
+
+4 16 -40 24 -40 40 24 -40 37 24 -37 -37 24 -37
+4 16 -40 24 40 -40 24 -40 -37 24 -37 -37 24 37
+4 16 40 24 40 -40 24 40 -37 24 37 37 24 37
+4 16 40 24 -40 40 24 40 37 24 37 37 24 -37
+
+2 24 -12 24 -20 -8 24 -20
+2 24 8 24 -20 12 24 -20
+1 16 0 10 -20 8 0 0 0 0 -8 0 -1 0 p/2-4ndis.dat
+3 16 20 0 -20 12 2 -20 20 2 -20
+4 16 20 0 -20 0 0 -20 8 2 -20 12 2 -20
+3 16 0 0 -20 -8 2 -20 8 2 -20
+4 16 0 0 -20 -20 0 -20 -12 2 -20 -8 2 -20
+3 16 -20 0 -20 -20 2 -20 -12 2 -20
+3 16 8 2 -20 8 10 -20 12 2 -20
+4 16 8 10 -20 8 24 -20 12 24 -20 12 2 -20
+3 16 -12 2 -20 -8 10 -20 -8 2 -20
+4 16 -12 2 -20 -12 24 -20 -8 24 -20 -8 10 -20
+
+2 24 -22 24 -28 -20 24 -28
+2 24 -17 24 -31 -23 24 -31
+2 24 -17 24 -28 -17 24 -31
+2 24 20 24 -28 22 24 -28
+2 24 17 24 -31 17 24 -28
+2 24 22 24 28 20 24 28
+2 24 17 24 31 23 24 31
+2 24 17 24 28 17 24 31
+2 24 -23 24 31 -17 24 31
+2 24 -20 24 28 -22 24 28
+2 24 -17 24 31 -17 24 28
+
+4 16 12 24 -20 8 24 -20 8 24 -22 12 24 -23
+4 16 12 24 -23 8 24 -22 -8 24 -22 -12 24 -23
+4 16 -12 24 -23 -8 24 -22 -8 24 -20 -12 24 -20
+
+4 16 -12 24 20 -8 24 20 -8 24 22 -12 24 23
+4 16 -12 24 23 -8 24 22 8 24 22 12 24 23
+4 16 12 24 23 8 24 22 8 24 20 12 24 20
+
+3 16 20 24 -28 17 24 -28 17 24 -31
+4 16 17 24 -31 23 24 -31 22 24 -28 20 24 -28
+4 16 23 24 -31 23 24 -10 22 24 -12 22 24 -28
+4 16 20 24 -8 20 24 -12 22 24 -12 22 24 -8
+3 16 22 24 -12 23 24 -10 22 24 -8
+4 16 23 24 -10 23 24 10 22 24 8 22 24 -8
+4 16 20 24 12 20 24 8 22 24 8 22 24 12
+3 16 22 24 8 23 24 10 22 24 12
+4 16 23 24 10 23 24 31 22 24 28 22 24 12
+4 16 23 24 31 17 24 31 20 24 28 22 24 28
+3 16 17 24 31 17 24 28 20 24 28
+
+3 16 -20 24 28 -17 24 28 -17 24 31
+4 16 -17 24 31 -23 24 31 -22 24 28 -20 24 28
+4 16 -23 24 31 -23 24 10 -22 24 12 -22 24 28
+4 16 -20 24 8 -20 24 12 -22 24 12 -22 24 8
+3 16 -22 24 12 -23 24 10 -22 24 8
+4 16 -23 24 10 -23 24 -10 -22 24 -8 -22 24 8
+4 16 -20 24 -12 -20 24 -8 -22 24 -8 -22 24 -12
+3 16 -22 24 -8 -23 24 -10 -22 24 -12
+4 16 -23 24 -10 -23 24 -31 -22 24 -28 -22 24 -12
+4 16 -23 24 -31 -17 24 -31 -20 24 -28 -22 24 -28
+3 16 -17 24 -31 -17 24 -28 -20 24 -28
+
+4 16 23 10 -28 23 2 -28 37 2 -28 37 10 -28
+5 24 23 10 -28 37 10 -28 37 2 -28 23 13.06 -27.39
+4 16 23 2 -12 23 10 -12 37 10 -12 37 2 -12
+5 24 23 10 -12 37 10 -12 37 13.06 -12.61 23 2 -12
+2 24 23 2 -12 37 2 -12
+
+2 24 23 2 -8 37 2 -8
+4 16 23 10 -8 23 2 -8 37 2 -8 37 10 -8
+5 24 23 10 -8 37 10 -8 37 2 -8 23 13.06 -7.391
+4 16 23 2 8 23 10 8 37 10 8 37 2 8
+5 24 23 10 8 37 10 8 37 13.06 7.391 23 2 8
+2 24 23 2 8 37 2 8
+
+2 24 23 2 12 37 2 12
+4 16 23 10 12 23 2 12 37 2 12 37 10 12
+5 24 23 10 12 37 10 12 37 2 12 23 13.06 12.61
+4 16 23 2 28 23 10 28 37 10 28 37 2 28
+5 24 23 10 28 37 10 28 37 13.06 27.39 23 2 28
+
+4 16 -23 10 28 -23 2 28 -37 2 28 -37 10 28
+5 24 -23 10 28 -37 10 28 -37 2 28 -23 13.06 27.39
+4 16 -37 10 12 -37 2 12 -23 2 12 -23 10 12
+2 24 -23 2 12 -37 2 12
+5 24 -23 10 12 -37 10 12 -37 13.06 12.61 -23 2 12
+
+2 24 -23 2 8 -37 2 8
+4 16 -23 10 8 -23 2 8 -37 2 8 -37 10 8
+5 24 -23 10 8 -37 10 8 -37 2 8 -23 13.06 7.391
+4 16 -37 10 -8 -37 2 -8 -23 2 -8 -23 10 -8
+2 24 -23 2 -8 -37 2 -8
+5 24 -23 10 -8 -37 10 -8 -37 13.06 -7.391 -23 2 -8
+
+2 24 -23 2 -12 -37 2 -12
+4 16 -23 10 -12 -23 2 -12 -37 2 -12 -37 10 -12
+5 24 -23 10 -12 -37 10 -12 -37 2 -12 -23 13.06 -12.61
+4 16 -23 2 -28 -23 10 -28 -37 10 -28 -37 2 -28
+5 24 -23 10 -28 -37 10 -28 -37 13.06 -27.39 -23 2 -28
+
+4 16 8 10 23 8 2 23 8 2 37 8 10 37
+5 24 8 10 23 8 10 37 8 2 37 7.391 13.06 23
+4 16 -8 2 23 -8 10 23 -8 10 37 -8 2 37
+5 24 -8 10 23 -8 10 37 -7.391 13.06 37 -8 2 23
+
+4 16 -17 2 31 -23 2 31 -23 24 31 -17 24 31
+2 24 -17 2 31 -17 24 31
+4 16 -17 2 28 -17 2 31 -17 24 31 -17 24 28
+4 16 17 2 31 17 2 28 17 24 28 17 24 31
+2 24 17 2 31 17 24 31
+4 16 23 2 31 17 2 31 17 24 31 23 24 31
+
+4 16 -8 10 -23 -8 2 -23 -8 2 -37 -8 10 -37
+5 24 -8 10 -23 -8 10 -37 -8 2 -37 -7.391 13.06 -23
+4 16 8 10 -37 8 2 -37 8 2 -23 8 10 -23
+5 24 8 10 -23 8 10 -37 7.391 13.06 -37 8 2 -23
+
+4 16 -17 2 -31 -17 2 -28 -17 24 -28 -17 24 -31
+2 24 -17 2 -31 -17 24 -31
+4 16 -23 2 -31 -17 2 -31 -17 24 -31 -23 24 -31
+4 16 17 2 -31 23 2 -31 23 24 -31 17 24 -31
+2 24 17 2 -31 17 24 -31
+4 16 17 2 -28 17 2 -31 17 24 -31 17 24 -28
+
+1 16 0 18 -30 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 0 18 30 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 30 18 -20 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 30 18 0 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 30 18 20 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 -30 18 -20 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 -30 18 0 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+1 16 -30 18 20 0 0 1 0 -1.5 0 -1 0 0 p/stud3.dat
+
+1 16 30 0 -30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 30 0 -10 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 30 0 10 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 30 0 30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 10 0 -30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 10 0 30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -10 0 -30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -10 0 30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -30 0 -30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -30 0 -10 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -30 0 10 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+1 16 -30 0 30 0 0 1 0 1 0 -1 0 0 p/stud2.dat
+0
+
+0 FILE p/1-4ring5.dat
+0 Ring  5 x 0.25
+0 Name: 1-4ring5.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 6 0 0 5.5433 0 2.2961 4.6195 0 1.9135 5 0 0
+4 16 5.5433 0 2.2961 4.2426 0 4.2426 3.5355 0 3.5355 4.6195 0 1.9135
+4 16 4.2426 0 4.2426 2.2961 0 5.5433 1.9135 0 4.6195 3.5355 0 3.5355
+4 16 2.2961 0 5.5433 0 0 6 0 0 5 1.9135 0 4.6195
+
+0 FILE p/peghole2.dat
+0 Peg Hole End Extended
+0 Name: peghole2.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+0 BFC INVERTNEXT
+1 16 0 0 0 8 0 0 0 2 0 0 0 8 p/2-4cyli.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 0 2 0 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 0 2 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 2 0 6 0 0 0 1 0 0 0 -6 p/2-4ndis.dat
+1 16 0 2 0 2 0 0 0 1 0 0 0 2 p/2-4ring3.dat
+4 16 6 2 -6 8 2 -14 8 2 0 6 2 0
+4 16 6 2 -6 0 2 -6 -8 2 -14 8 2 -14
+3 16 -6 2 -6 -8 2 -14 0 2 -6
+4 16 -6 2 -6 -6 2 0 -8 2 0 -8 2 -14
+4 16 8 0 0 8 2 0 8 2 -14 8 0 -14
+4 16 -8 0 0 -8 0 -14 -8 2 -14 -8 2 0
+2 24 -8 2 -14 -8 2 0
+2 24 8 2 0 8 2 -14
+2 24 8 2 -14 -8 2 -14
+2 24 -8 0 -14 -8 0 0
+2 24 8 0 0 8 0 -14
+2 24 8 0 -14 8 2 -14
+2 24 -8 0 -14 -8 2 -14
+
+0 FILE p/peghole3.dat
+0 Peg Hole End Extended 1/2
+0 Name: peghole3.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+0 BFC INVERTNEXT
+1 16 0 0 0 8 0 0 0 2 0 0 0 8 p/1-4cyli.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/1-4edge.dat
+1 16 0 2 0 8 0 0 0 1 0 0 0 8 p/1-4edge.dat
+1 16 0 2 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 2 0 6 0 0 0 1 0 0 0 -6 p/3-4ndis.dat
+1 16 0 2 0 2 0 0 0 1 0 0 0 2 p/1-4ring3.dat
+4 16 -8 2 8 -6 2 6 0 2 6 0 2 8
+4 16 -8 2 0 -6 2 0 -6 2 6 -8 2 8
+4 16 6 2 -6 8 2 -14 8 2 0 6 2 0
+4 16 6 2 -6 0 2 -6 -8 2 -14 8 2 -14
+3 16 -6 2 -6 -8 2 -14 0 2 -6
+4 16 -6 2 -6 -6 2 0 -8 2 0 -8 2 -14
+4 16 8 0 0 8 2 0 8 2 -14 8 0 -14
+
+2 24 0 2 8 -8 2 8
+2 24 -8 2 -14 -8 2 8
+2 24 8 2 0 8 2 -14
+2 24 8 2 -14 -8 2 -14
+2 24 8 0 0 8 0 -14
+2 24 8 0 -14 8 2 -14
+
+0 FILE p/3-4ndis.dat
+0 Disc Negative 0.75
+0 Name: 3-4ndis.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; compacted code
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0 0.3827 1 0 0 1 0 1
+3 16 0.7071 0 0.7071 0.9239 0 0.3827 1 0 1
+3 16 0.3827 0 0.9239 0.7071 0 0.7071 1 0 1
+3 16 0 0 1 0.3827 0 0.9239 1 0 1
+3 16 -0.3827 0 0.9239 0 0 1 -1 0 1
+3 16 -0.7071 0 0.7071 -0.3827 0 0.9239 -1 0 1
+3 16 -0.9239 0 0.3827 -0.7071 0 0.7071 -1 0 1
+3 16 -1 0 0 -0.9239 0 0.3827 -1 0 1
+3 16 -0.9239 0 -0.3827 -1 0 0 -1 0 -1
+3 16 -0.7071 0 -0.7071 -0.9239 0 -0.3827 -1 0 -1
+3 16 -0.3827 0 -0.9239 -0.7071 0 -0.7071 -1 0 -1
+3 16 0 0 -1 -0.3827 0 -0.9239 -1 0 -1
+
+0 FILE parts/2450.dat
+0 Plate  3 x  3 without Corner
+0 Name: 2450.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-07 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-13 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [mkennedy] Used ribt45, optimized with box2-5 and stug2, used rect1 in gaps (2006-06-29)
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+0 !HISTORY 2011-03-12 [anathema] Corrected winding of triangles and quads
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 10 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -10 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -10 4 -10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 0 0 -30 4 0 0 0 30 0 p/box2-5.dat
+1 16 -20 4 -30 10 0 0 0 0 4 0 1 0 p/rect2p.dat
+1 16 30 4 20 0 -1 0 0 0 4 10 0 0 p/rect2p.dat
+1 16 10 4 -10 1 0 0 0 1 0 0 0 1 p/ribt45.dat
+1 16 -1.42 4 -18.58 1.41 0 4.25 0 -1 0 -1.41 0 4.25 p/rect1.dat
+1 16 18.58 4 1.42 1.41 0 4.25 0 -1 0 -1.41 0 4.25 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 6 0 0 -26 0 2 0 0 0 0 26 p/box2-5.dat
+1 16 -18.82 6 -26 -7.18 0 0 0 0 2 0 -1 0 p/rect2p.dat
+1 16 -7.13 6 -27.13 -2.87 -1 0 0 0 2 -2.87 0 0 p/rect2a.dat
+1 16 25.13 6 7.95 0 -1.41 -2.28 2 0 0 0 1.41 -2.28 p/box2-5.dat
+1 16 26 6 18.82 0 1 0 0 0 2 7.18 0 0 p/rect2p.dat
+1 16 27.13 6 7.13 2.87 -1 0 0 0 2 2.87 0 0 p/rect2a.dat
+1 16 -7.95 6 -25.13 0 -1.41 2.28 2 0 0 0 1.41 2.28 p/box2-5.dat
+1 16 10 2 -10 20 -1 0 0 0 -2 20 0 0 p/rect3.dat
+4 16 26 8 26 -26 8 26 -30 8 30 30 8 30
+4 16 -26 8 26 -26 8 -26 -30 8 -30 -30 8 30
+4 16 -26 8 -26 -11.65 8 -26 -10 8 -30 -30 8 -30
+4 16 -11.65 8 -26 -7.07 8 -21.41 -4.24 8 -24.24 -10 8 -30
+4 16 21.41 8 7.07 26 8 11.65 30 8 10 24.24 8 4.24
+4 16 26 8 11.65 26 8 26 30 8 30 30 8 10
+4 16 26 4 11.65 -11.65 4 -26 -26 4 -26 26 4 26
+3 16 26 4 26 -26 4 -26 -26 4 26
+4 16 -30 0 -30 -10 0 -30 30 0 10 30 0 30
+3 16 30 0 30 -30 0 30 -30 0 -30
+1 16 20 0 20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 10 0 0 -1 0 1 0 1 0 0 p/stug-2x2.dat
+1 16 -20 0 -20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+
+0 FILE parts/54384.dat
+0 Wing  3 x  6 Left
+0 Name: 54384.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/54383s01.dat
+1 16 -10 0 40 0 0 -1 0 1 0 1 0 0 p/stug2.dat
+1 16 -20 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/3958.dat
+0 Plate  6 x  6
+0 Name: 3958.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-30 [PTadmin]  Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin]  Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC compliant (2005-05-17)
+0 !HISTORY 2009-05-02 [PTadmin]  Official Update 2009-01
+0 !HISTORY 2017-01-09 [Steffen]  used more stugs
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug-6x6.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 56 0 0 0 -4 0 0 0 56 p/box5.dat
+4 16 60 8 60 56 8 56 -56 8 56 -60 8 60
+4 16 -60 8 60 -56 8 56 -56 8 -56 -60 8 -60
+4 16 -60 8 -60 -56 8 -56 56 8 -56 60 8 -60
+4 16 60 8 -60 56 8 -56 56 8 56 60 8 60
+1 16 0 8 0 60 0 0 0 -8 0 0 0 60 p/box5.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stug4-5x5.dat
+
+0 FILE p/stug4-5x5.dat
+0 Stud Tube Open Group  5 x  5
+0 Name: stug4-5x5.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stug4-4x4.dat
+1 16 -10 0 40 1 0 0 0 1 0 0 0 1 p/stug4-1x4.dat
+1 16 40 0 0 0 0 -1 0 1 0 1 0 0 p/stug4-1x5.dat
+
+
+0 FILE p/stug4-1x5.dat
+0 Stud Tube Open Group  1 x  5
+0 Name: stug4-1x5.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -40 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16   0 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16  20 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16  40 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+
+0 FILE p/stug4-1x4.dat
+0 Stud Tube Open Group  1 x  4
+0 Name: stug4-1x4.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16  10 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16  30 0 0 1 0 0 0 1 0 0 0 1 p/stud4.dat
+
+0 FILE p/stug4-4x4.dat
+0 Stud Tube Open Group  4 x  4
+0 Name: stug4-4x4.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -20 0 -20 1 0 0 0 1 0 0 0 1 p/stug4-2x2.dat
+1 16 -20 0 20 1 0 0 0 1 0 0 0 1 p/stug4-2x2.dat
+1 16 20 0 20 1 0 0 0 1 0 0 0 1 p/stug4-2x2.dat
+1 16 20 0 -20 1 0 0 0 1 0 0 0 1 p/stug4-2x2.dat
+
+0 FILE p/stug4-2x2.dat
+0 Stud Tube Open Group  2 x  2
+0 Name: stug4-2x2.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud4.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud4.dat
+
+0 FILE p/stug-6x6.dat
+0 Stud Group  6 x  6
+0 Name: stug-6x6.dat
+0 Author: Tore Eriksson [Tore_Eriksson]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2011-07-01 [PTadmin] Renamed from stug6
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stug-3x3.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stug-3x3.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stug-3x3.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stug-3x3.dat
+0
+
+0 FILE p/stug-3x3.dat
+0 Stud Group  3 x  3
+0 Name: stug-3x3.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2011-07-01 [PTadmin] Renamed from stug3
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 -20 0 -20 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 0 20 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 -20 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 20 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 -20 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 20 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3035.dat
+0 Plate  4 x  8
+0 Name: 3035.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2004-07-26 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 76 0 0 0 -4 0 0 0 36 p/box5.dat
+4 16 80 8 -40 76 8 -36 -76 8 -36 -80 8 -40
+4 16 80 8 40 76 8 36 76 8 -36 80 8 -40
+4 16 -76 8 -36 -76 8 36 -80 8 40 -80 8 -40
+4 16 -76 8 36 76 8 36 80 8 40 -80 8 40
+1 16 0 8 0 80 0 0 0 -8 0 0 0 40 p/box5.dat
+1 16 70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3031.dat
+0 Plate  4 x  4
+0 Name: 3031.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 36 0 0 0 -4 0 0 0 36 p/box5.dat
+
+4 16 40 8 40 36 8 36 -36 8 36 -40 8 40
+0 Next Line was 4 16 40 8 -40 36 8 -36 -36 8 -36 -40 8 -40
+4 16 -40 8 -40 -36 8 -36 36 8 -36 40 8 -40
+0 Next Line was 4 16 40 8 40 36 8 36 36 8 -36 40 8 -40
+4 16 40 8 -40 36 8 -36 36 8 36 40 8 40
+4 16 -40 8 40 -36 8 36 -36 8 -36 -40 8 -40
+
+1 16 0 8 0 40 0 0 0 -8 0 0 0 40 p/box5.dat
+
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3460.dat
+0 Plate  1 x  8
+0 Name: 3460.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-25 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 76 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 80 8 10 76 8 6 -76 8 6 -80 8 10
+4 16 -80 8 10 -76 8 6 -76 8 -6 -80 8 -10
+4 16 -80 8 -10 -76 8 -6 76 8 -6 80 8 -10
+4 16 80 8 -10 76 8 -6 76 8 6 80 8 10
+1 16 0 8 0 80 0 0 0 -8 0 0 0 10 p/box5.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+
+0 FILE parts/54383.dat
+0 Wing  3 x  6 Right
+0 Name: 54383.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/54383s01.dat
+1 16 10 0 40 0 0 -1 0 1 0 1 0 0 p/stug2.dat
+1 16 20 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/s/54383s01.dat
+0 ~Wing  3 x  6 Right without Studs
+0 Name: s\54383s01.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Subpart UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 10 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -7.114 4 7.623 -0.634609 0 1.42248 0 3.8 0 1.89664 0 0.475957 p/box4-1.dat
+1 16 10 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 8 0 0 0 10 0 -8 0 60 0 0 p/box4-4a.dat
+3 16 10 0 60 -30 0 60 10 0 -60
+0 BFC INVERTNEXT
+1 16 19.25 8 0 0 0 6.75 0 -4 0 56 0 0 p/box4-4a.dat
+3 16 -24.83 4 56 12.5 4 56 12.5 4 -56
+0 BFC INVERTNEXT
+1 16 10 4 -20 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 10 4 -20 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 10 8 -20 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 10 4 -20 0 0 8 0 4 0 -8 0 0 p/3-4cyli.dat
+1 16 10 4 -20 0 0 -8 0 4 0 -8 0 0 p/3-16cyli.dat
+1 16 10 4 -20 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 10 8 -20 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 10 4 -20 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 10 8 -20 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 10 8 -20 2 0 0 0 -1 0 0 0 2 p/4-4ring3.dat
+1 16 10 4 -40 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 10 4 -40 0 0 8 0 4 0 8 0 0 p/2-4cyli.dat
+1 16 10 8 -40 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 10 4 -40 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 10 4 -40 0 0 -8 0 4 0 8 0 0 p/3-16cyli.dat
+1 16 10 8 -40 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 10 8 -40 0 0 2 0 -1 0 2 0 0 p/2-4ring3.dat
+1 16 10 4 -40 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 4 -40 6 0 0 0 4 0 0 0 -6 p/1-4cyli.dat
+1 16 10 8 -40 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 10 4 -40 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 10 4 -40 6 0 0 0 4 0 0 0 6 p/3-8cyli.dat
+1 16 10 8 -40 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 -4.27 8 -11.4 1.72 0 1.73 0 -4 0 0.57 0 -5.2 p/box3u8p.dat
+1 16 -0.1 6 -18.2 0 -1 -0.73 -2 0 0 0 0 2.18 p/rect.dat
+1 16 11.16 6 -51.98 -1.34 -1 0 0 0 2 4 0 0 p/rect.dat
+1 16 7.45 6 -40.75 -1.67 -1 0 0 0 2 5 0 0 p/rect.dat
+1 16 -3.08 6 -20.75 1.19 1 0 0 0 2 -3.57 0 0 p/rect3.dat
+1 16 0.36 6 -23.69 0 0 2.25 -2 0 0 0 1 0.63 p/rect3.dat
+1 16 1.31 6 -20.19 0 0 0.69 -2 0 0 0 -1 0.19 p/rect3.dat
+1 16 2.47 6 -36.96 0 0 0.12 -2 0 0 0 -1 0.04 p/rect3.dat
+1 16 6.167 6 -48.5 3.833 1 0 0 0 2 -11.5 0 0 p/rect3.dat
+1 16 9.55 6 -45.87 -0.45 0 0 0 0 2 0.13 -1 0 p/rect2p.dat
+1 16 9.92 6 -47.985 -0.08 0 0 0 0 2 0.015 1 0 p/rect2p.dat
+4 16 12.5 8 -56 26 8 -56 30 8 -60 10 8 -60
+4 16 30 8 -60 26 8 -56 26 8 56 30 8 60
+4 16 -1.89 8 -24.32 -4.27 8 -17.17 -0.83 8 -16.02 0.62 8 -20.38
+4 16 2 8 -20 2.61 8 -23.06 -1.89 8 -24.32 0.62 8 -20.38
+4 16 2.6 8 -36.95 12.5 8 -56 10 8 -60 2.32 8 -37
+4 16 4.343 8 -34.343 5.757 8 -35.757 12.5 8 -56 2.6 8 -36.95
+4 16 6.939 8 -32.609 7.731 8 -34.457 5.757 8 -35.757 4.343 8 -34.343
+4 16 10 8 -32 10 8 -34 7.704 8 -34.457 6.939 8 -32.609
+4 16 10 8 -46 10 8 -48 9.81 8 -47.97 9.07 8 -45.74
+4 16 1.62 4 -23.35 5.13 4 -33.83 4.343 4 -34.343 -1.89 4 -24.32
+4 16 -1.9 4 -24.3 4.343 4 -34.343 2.6 4 -37 2.32 4 -37
+2 24 -1.89 4 -24.32 2.32 4 -37
+2 24 -7.73 4 -6.77 -4.27 4 -17.17
+1 16 -10 2 0 -20 1 0 0 0 -2 60 0 0 p/rect3.dat
+1 16 -10 4 60 -20 0 0 0 0 4 0 -1 0 p/rect2p.dat
+1 16 -6.165 6 56 -18.665 0 0 0 0 2 0 1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 -10 4 40 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 -10 4 40 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -10 8 40 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -10 4 40 0 0 8 0 4 0 -8 0 0 p/3-4cyli.dat
+1 16 -10 4 40 0 0 -8 0 4 0 -8 0 0 p/3-16cyli.dat
+1 16 -10 4 40 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 -10 8 40 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 -10 4 40 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 -10 8 40 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 -10 8 40 2 0 0 0 -1 0 0 0 2 p/4-4ring3.dat
+1 16 -10 4 20 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 -10 4 20 0 0 8 0 4 0 8 0 0 p/2-4cyli.dat
+1 16 -10 8 20 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 -10 4 20 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 -10 4 20 0 0 -8 0 4 0 8 0 0 p/3-16cyli.dat
+1 16 -10 8 20 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 -10 8 20 0 0 2 0 -1 0 2 0 0 p/2-4ring3.dat
+1 16 -10 4 20 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 -10 4 20 6 0 0 0 4 0 0 0 -6 p/1-4cyli.dat
+1 16 -10 8 20 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 -10 4 20 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 -10 4 20 6 0 0 0 4 0 0 0 6 p/3-8cyli.dat
+1 16 -10 8 20 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+1 16 -24.55 6 55.18 0 -1 -0.28 2 0 0 0 0 0.81 p/rect.dat
+0 BFC INVERTNEXT
+1 16 -24.27 8 48.6 1.72 0 1.73 0 -4 0 0.57 0 -5.2 p/box3u8p.dat
+1 16 -20.1 6 41.8 0 -1 -0.73 -2 0 0 0 0 2.18 p/rect.dat
+1 16 -7.23 6 3.2 -2.96 -1 0 0 0 2 8.83 0 0 p/rect.dat
+1 16 -12.55 6 19.25 -1.67 -1 0 0 0 2 5 0 0 p/rect.dat
+1 16 -23.08 6 39.25 1.19 1 0 0 0 2 -3.57 0 0 p/rect3.dat
+1 16 -19.64 6 36.31 0 0 2.25 -2 0 0 0 1 0.63 p/rect3.dat
+1 16 -18.69 6 39.81 0 0 0.69 -2 0 0 0 -1 0.19 p/rect3.dat
+1 16 -17.53 6 23.04 0 0 0.12 -2 0 0 0 -1 0.04 p/rect3.dat
+1 16 -28.865 6 56.61 1.128 1 0 0 0 2 -3.38 0 0 p/rect3.dat
+1 16 -12.655 6 8.115 4.925 1 0 0 0 2 -14.885 0 0 p/rect3.dat
+1 16 -10.45 6 14.13 -0.45 0 0 0 0 2 0.13 -1 0 p/rect2p.dat
+1 16 -10.08 6 12.015 -0.08 0 0 0 0 2 0.015 1 0 p/rect2p.dat
+4 16 30 8 60 26 8 56 -24.83 8 56 -30 8 60
+4 16 -30 8 60 -24.83 8 56 -24.27 8 54.37 -27.73 8 53.23
+4 16 -21.89 8 35.68 -24.27 8 42.83 -20.83 8 43.98 -19.38 8 39.62
+4 16 -18 8 40 -17.39 8 36.94 -21.89 8 35.68 -19.38 8 39.62
+4 16 -17.4 8 23.05 -4.27 8 -5.63 -7.73 8 -6.77 -17.68 8 23
+4 16 -15.657 8 25.657 -14.243 8 24.243 -4.27 8 -5.63 -17.4 8 23.05
+4 16 -13.061 8 27.391 -12.269 8 25.543 -14.243 8 24.243 -15.657 8 25.657
+4 16 -10 8 28 -10 8 26 -12.296 8 25.543 -13.061 8 27.391
+4 16 -10 8 14 -10 8 12 -10.19 8 12.03 -10.93 8 14.26
+4 16 -18.38 4 36.65 -14.87 4 26.17 -15.657 4 25.657 -21.89 4 35.68
+4 16 -21.9 4 35.7 -15.657 4 25.657 -17.4 4 23 -17.68 4 23
+2 24 -21.89 4 35.68 -17.68 4 23
+2 24 -27.73 4 53.23 -24.27 4 42.83
+0
+
+0 FILE parts/47398.dat
+0 Wing  3 x 12 Right
+0 Name: 47398.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/47398s01.dat
+1 16 -20 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 20 0 -110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/47397.dat
+0 Wing  3 x 12 Left
+0 Name: 47397.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/47398s01.dat
+1 16 20 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -50 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -70 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -90 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 -110 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/s/47398s01.dat
+0 ~Wing  3 x 12 Subpart
+0 Name: s\47398s01.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Subpart UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 20 4 -100 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 10 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 60 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 80 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 10 4 100 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -10 4 100 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -10 4 80 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 0 30 0 4 0 0 0 0 120 p/box2-5.dat
+1 16 20 4 -120 10 0 0 0 0 4 0 1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0.3333 6 0 0 25.6667 0 2 0 0 0 0 116 p/box2-5.dat
+1 16 -10 2 0 20 1 0 0 0 -2 -120 0 0 p/rect2a.dat
+1 16 19.6666 6 -116 6.3333 0 0 0 0 2 0 -1 0 p/rect2p.dat
+1 16 12.9583 6 -113.75 -0.375 -1 0 0 0 2 2.25 0 0 p/rect.dat
+1 16 13.2917 6 -111.5 0.7083 0 0 0 0 2 0 1 0 p/rect2p.dat
+1 16 14 6 -110 0 -1 0 0 0 2 1.5 0 0 p/rect.dat
+1 16 13.0417 6 -108.5 0.9583 0 0 0 0 2 0 -1 0 p/rect2p.dat
+1 16 10.3523 6 -98.1128 -1.731 -1 0 0 0 2 10.3871 0 0 p/rect.dat
+1 16 9.3106 6 -87.8628 0.6893 0 0 0 0 2 -0.1371 1 0 p/rect2p.dat
+1 16 9.1383 6 -85.8285 0.8617 0 0 0 0 2 -0.1714 -1 0 p/rect2p.dat
+1 16 7.4081 6 -80.4459 -0.8685 -1 0 0 0 2 5.2112 0 0 p/rect.dat
+1 16 7.1217 6 -74.8457 0.5821 0 0 0 0 2 0.389 1 0 p/rect2p.dat
+1 16 10 4 -80 0 0 6 0 1 0 -6 0 0 p/3-8edge.dat
+1 16 10 4 -80 4.2426 0 -4.2426 0 1 0 4.2426 0 4.2426 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 10 4 -80 0 0 6 0 4 0 -6 0 0 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 10 4 -80 4.2426 0 -4.2426 0 4 0 4.2426 0 4.2426 p/3-16cyli.dat
+1 16 10 8 -80 0 0 6 0 1 0 -6 0 0 p/3-8edge.dat
+1 16 10 8 -80 4.2426 0 -4.2426 0 1 0 4.2426 0 4.2426 p/3-16edge.dat
+1 16 10 8 -80 0 0 2 0 -1 0 -2 0 0 p/2-4ring3.dat
+1 16 10 8 -80 0 0 -2 0 -1 0 2 0 0 p/1-8ring3.dat
+1 16 10 4 -80 0 0 8 0 1 0 -8 0 0 p/5-8edge.dat
+1 16 10 4 -80 0 0 8 0 4 0 -8 0 0 p/5-8cyli.dat
+1 16 10 8 -80 0 0 8 0 1 0 -8 0 0 p/5-8edge.dat
+1 16 3.5617 6 -75.5125 0.7814 0 0 0 0 2 1.1694 -1 0 p/rect2p.dat
+1 16 3.5397 6 -81.2385 0.7594 0 0 0 0 2 -4.5566 1 0 p/rect3.dat
+1 16 4.9212 6 -86.7495 0.622 0 0 0 0 2 -0.9544 1 0 p/rect2p.dat
+1 16 0 4 -90 5.54328 0 2.2961 0 1 0 -2.2961 0 5.54328 p/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 -90 5.54328 0 2.2961 0 4 0 -2.2961 0 5.54328 p/1-8cyli.dat
+1 16 0 8 -90 5.54328 0 2.2961 0 1 0 -2.2961 0 5.54328 p/1-8edge.dat
+1 16 5.479 6 -92.3923 0.0962 0 0 0 0 2 0.0962 -1 0 p/rect2p.dat
+1 16 7.7073 6 -106.244 2.2926 0 0 0 0 2 -13.7557 1 0 p/rect3.dat
+1 16 10 4 -60 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 4 -60 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 10 8 -60 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 10 8 -60 2 0 0 0 -1 0 0 0 2 p/ring3.dat
+1 16 10 4 -60 -5.6568 0 5.6568 0 1 0 -5.6568 0 -5.6568 p/3-4edge.dat
+1 16 10 4 -60 -5.6568 0 5.6568 0 4 0 -5.6568 0 -5.6568 p/3-4cyli.dat
+1 16 10 8 -60 -5.6568 0 5.6568 0 1 0 -5.6568 0 -5.6568 p/3-4edge.dat
+1 16 3.6891 6 -64.6795 0 1 -0.6523 2 0 0 0 0 0.9772 p/rect3.dat
+1 16 1.8594 6 -63.8986 1.1774 0 0 0 0 2 0.1963 1 0 p/rect2p.dat
+1 16 0.024 6 -60.148 0.658 0 0 0 0 2 -3.946 1 0 p/rect3.dat
+1 16 1.4458 6 -55.8482 2.1278 0 0 0 0 2 0.3548 -1 0 p/rect2p.dat
+1 16 3.9584 6 -54.9183 0 1 -0.3847 2 0 0 0 0 -0.5751 p/rect3.dat
+1 16 -1.2753 4 -40.1909 -0.635 0 1.973 0 4 0 3.8 0 0.329 p/box4-4a.dat
+1 16 -3.2483 6 -40.5199 0.635 0 0 0 0 2 -3.8 1 0 p/rect3.dat
+1 16 -4.7019 6 -19.7884 0 1.973 0.82 -2 0 0 0 0.329 -4.7533 p/box2-5.dat
+1 16 -3.8958 6 -14.4743 0.3468 0 0 0 0 2 -0.2317 -1 0 p/rect2p.dat
+1 16 0 4 -10 -5.5433 0 -2.2961 0 1 0 2.2961 0 -5.5433 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 -5.5433 0 -2.2961 0 4 0 2.2961 0 -5.5433 p/3-16cyli.dat
+1 16 0 8 -10 -5.5433 0 -2.2961 0 1 0 2.2961 0 -5.5433 p/3-16edge.dat
+1 16 -5.2122 6 -7.2084 0.331 0 0 0 0 2 0.4954 1 0 p/rect2p.dat
+1 16 -6.8275 6 4.9649 0 -1 1.9463 2 0 0 0 0 -11.6779 p/rect3.dat
+1 16 -5.9828 6 15.9733 0 -1.0607 1.7303 2 0 0 0 -1.0607 -1.7303 p/box2-5.dat
+1 16 -5.5401 6 17.652 2.3483 0 0 0 0 2 -2.3483 -1 0 p/rect2p.dat
+1 16 -6.6008 6 23.4087 0 1.0607 2.3483 2 0 0 0 -1.0607 2.3483 p/box2-5.dat
+1 16 -7.5175 6 24.6038 -2.2141 0 0 0 0 2 -2.2141 -1 0 p/rect2p.dat
+1 16 -10.5551 6 27.332 -0.8235 -1 0 0 0 2 4.9423 0 0 p/rect.dat
+1 16 -10.6894 6 32.1372 0.6893 0 0 0 0 2 -0.1371 1 0 p/rect2p.dat
+1 16 -10.8617 6 34.1715 0.8617 0 0 0 0 2 -0.1714 -1 0 p/rect2p.dat
+1 16 -12.5919 6 39.5541 -0.8685 -1 0 0 0 2 5.2112 0 0 p/rect.dat
+1 16 -12.8783 6 45.1543 0.5821 0 0 0 0 2 0.389 1 0 p/rect2p.dat
+1 16 -10 4 40 0 0 6 0 1 0 -6 0 0 p/3-8edge.dat
+1 16 -10 4 40 4.2426 0 -4.2426 0 1 0 4.2426 0 4.2426 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 -10 4 40 0 0 6 0 4 0 -6 0 0 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 4 40 4.2426 0 -4.2426 0 4 0 4.2426 0 4.2426 p/3-16cyli.dat
+1 16 -10 8 40 0 0 6 0 1 0 -6 0 0 p/3-8edge.dat
+1 16 -10 8 40 4.2426 0 -4.2426 0 1 0 4.2426 0 4.2426 p/3-16edge.dat
+1 16 -10 8 40 0 0 2 0 -1 0 -2 0 0 p/2-4ring3.dat
+1 16 -10 8 40 0 0 -2 0 -1 0 2 0 0 p/1-8ring3.dat
+1 16 -10 4 40 0 0 8 0 1 0 -8 0 0 p/5-8edge.dat
+1 16 -10 4 40 0 0 8 0 4 0 -8 0 0 p/5-8cyli.dat
+1 16 -10 8 40 0 0 8 0 1 0 -8 0 0 p/5-8edge.dat
+1 16 -16.4383 6 44.4875 0.7814 0 0 0 0 2 1.1694 -1 0 p/rect2p.dat
+1 16 -16.4603 6 38.7615 0.7594 0 0 0 0 2 -4.5566 1 0 p/rect3.dat
+1 16 -15.0788 6 33.2505 0.622 0 0 0 0 2 -0.9544 1 0 p/rect2p.dat
+1 16 -20 4 30 5.54328 0 2.2961 0 1 0 -2.2961 0 5.54328 p/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 -20 4 30 5.54328 0 2.2961 0 4 0 -2.2961 0 5.54328 p/1-8cyli.dat
+1 16 -20 8 30 5.54328 0 2.2961 0 1 0 -2.2961 0 5.54328 p/1-8edge.dat
+1 16 -14.521 6 27.6077 0.0962 0 0 0 0 2 0.0962 -1 0 p/rect2p.dat
+1 16 -10.2189 6 1.3204 -4.364 0 0 0 0 2 26.1911 1 0 p/rect2a.dat
+1 16 -10 4 60 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 -10 4 60 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 -10 8 60 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -10 8 60 2 0 0 0 -1 0 0 0 2 p/ring3.dat
+1 16 -10 4 60 -5.6568 0 5.6568 0 1 0 -5.6568 0 -5.6568 p/3-4edge.dat
+1 16 -10 4 60 -5.6568 0 5.6568 0 4 0 -5.6568 0 -5.6568 p/3-4cyli.dat
+1 16 -10 8 60 -5.6568 0 5.6568 0 1 0 -5.6568 0 -5.6568 p/3-4edge.dat
+1 16 -16.3109 6 55.3205 0 1 -0.6523 2 0 0 0 0 0.9772 p/rect3.dat
+1 16 -18.1406 6 56.1014 1.1774 0 0 0 0 2 0.1963 1 0 p/rect2p.dat
+1 16 -19.976 6 59.852 0.658 0 0 0 0 2 -3.946 1 0 p/rect3.dat
+1 16 -18.5542 6 64.1518 2.1278 0 0 0 0 2 0.3548 -1 0 p/rect2p.dat
+1 16 -16.0416 6 65.0817 0 1 -0.3847 2 0 0 0 0 -0.5751 p/rect3.dat
+1 16 -21.2753 4 79.8091 -0.635 0 1.973 0 4 0 3.8 0 0.329 p/box4-4a.dat
+1 16 -23.2483 6 79.4801 0.635 0 0 0 0 2 -3.8 1 0 p/rect3.dat
+1 16 -24.7019 6 100.212 0 1.973 0.82 -2 0 0 0 0.329 -4.7533 p/box2-5.dat
+1 16 -23.8958 6 105.526 0.3468 0 0 0 0 2 -0.2317 -1 0 p/rect2p.dat
+1 16 -20 4 110 -5.5433 0 -2.2961 0 1 0 2.2961 0 -5.5433 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 -20 4 110 -5.5433 0 -2.2961 0 4 0 2.2961 0 -5.5433 p/3-16cyli.dat
+1 16 -20 8 110 -5.5433 0 -2.2961 0 1 0 2.2961 0 -5.5433 p/3-16edge.dat
+1 16 -25.2122 6 112.792 0.331 0 0 0 0 2 0.4954 1 0 p/rect2p.dat
+1 16 -25.1072 6 114.643 0 0 0.226 2 0 0 0 -1 -1.3565 p/rect3.dat
+1 16 -27.9274 6 107.564 0 0 2.0725 2 0 0 0 1 -12.4353 p/rect1.dat
+2 24 4.2992 4 -85.7951 5.4147 4 -92.4885
+2 24 2.7803 4 -76.6819 0.682 4 -64.095
+2 24 -0.682 4 -56.203 -2.6133 4 -44.3199
+2 24 -3.9193 4 -36.7199 -5.8549 4 -24.8707
+2 24 -15.7008 4 34.2049 -14.5853 4 27.5115
+2 24 -17.2197 4 43.3181 -19.318 4 55.905
+2 24 -20.682 4 63.797 -22.6133 4 75.6801
+2 24 -23.9193 4 83.2801 -25.8549 4 95.1293
+4 16 -30 0 120 30 0 120 30 0 -120 10 0 -120
+4 16 26 4 116 -29.3333 4 116 9.333 4 -116 26 4 -116
+4 16 -0.682 8 -56.203 0.682 8 -64.095 3.0368 8 -63.7023 3.5736 8 -55.4898
+4 16 4.2991 8 -85.7951 5.5432 8 -87.7039 4.3432 8 -74.3432 2.7803 8 -76.6819
+3 16 5.5432 8 -87.7039 6.5396 8 -75.2347 4.3432 8 -74.3432
+4 16 6 8 -90 13.3333 8 -116 6.5396 8 -75.2347 5.5432 8 -87.7039
+3 16 13.3333 8 -116 6 8 -90 5.5433 8 -92.2961
+4 16 5.5433 8 -92.2961 5.3828 8 -92.4885 10 8 -120 13.3333 8 -116
+4 16 10 8 -88 10 8 -86 8.2766 8 -85.6571 8.5613 8 -87.7257
+4 16 14 8 -111.5 14 8 -108.5 12.0834 8 -108.5 12.5834 8 -111.5
+4 16 13.3333 8 -116 10 8 -120 30 8 -120 26 8 -116
+4 16 26 8 -116 30 8 -120 30 8 120 26 8 116
+4 16 26 8 116 30 8 120 -30 8 120 -25.3333 8 116
+4 16 -25.5433 8 112.296 -24.8812 8 113.287 -25.33 8 116 -30 8 120
+3 16 -30 8 120 -26 8 110 -25.5433 8 112.296
+4 16 -30 8 120 -25.8549 8 95.1293 -25.5433 8 107.704 -26 8 110
+3 16 -25.5433 8 107.704 -25.8549 8 95.1293 -24.2426 8 105.757
+4 16 -25.8549 8 95.1293 -21.9089 8 95.7873 -23.549 8 105.294 -24.2426 8 105.757
+4 16 -20.682 8 63.797 -19.318 8 55.905 -16.9632 8 56.2977 -16.4264 8 64.5102
+4 16 -15.7009 8 34.2049 -14.4568 8 32.2961 -15.6568 8 45.6568 -17.2197 8 43.3181
+3 16 -14.4568 8 32.2961 -13.4604 8 44.7653 -15.6568 8 45.6568
+4 16 -14 8 30 -4.8812 8 -6.713 -13.4604 8 44.7653 -14.4568 8 32.2961
+4 16 -5.5433 8 -7.7039 -4.8812 8 -6.713 -14 8 30 -14.4567 8 27.7039
+4 16 -14.4567 8 27.7039 -14.6172 8 27.5115 -6 8 -10 -5.5433 8 -7.7039
+4 16 -14.6172 8 27.5115 -5.8549 8 -24.8707 -5.5433 8 -12.2961 -6 8 -10
+3 16 -5.5433 8 -12.2961 -5.8549 8 -24.8707 -4.2426 8 -14.2426
+4 16 -5.8549 8 -24.8707 -1.9089 8 -24.2127 -3.549 8 -14.706 -4.2426 8 -14.2426
+4 16 -10 8 32 -10 8 34 -11.7234 8 34.3429 -11.4387 8 32.2743
+4 16 -7.8884 8 20 -3.182 8 24.6965 -5.3034 8 26.8179 -9.7316 8 22.3897
+3 16 -7.8884 8 20 -9.7316 8 22.3897 -8.7738 8 16.6429
+4 16 -7.8884 8 20 -8.7738 8 16.6429 -5.3132 8 13.1823 -3.1918 8 15.3037
+0
+
+0 FILE p/5-8cyli.dat
+0 Cylinder 0.625
+0 Name: 5-8cyli.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+4 16 .3827 1 .9239 .3827 0 .9239 .7071 0 .7071 .7071 1 .7071
+4 16 0 1 1 0 0 1 .3827 0 .9239 .3827 1 .9239
+4 16 -.3827 1 .9239 -.3827 0 .9239 0 0 1 0 1 1
+4 16 -.7071 1 .7071 -.7071 0 .7071 -.3827 0 .9239 -.3827 1 .9239
+4 16 -.9239 1 .3827 -.9239 0 .3827 -.7071 0 .7071 -.7071 1 .7071
+4 16 -1 1 0 -1 0 0 -.9239 0 .3827 -.9239 1 .3827
+4 16 -.9239 1 -.3827 -.9239 0 -.3827 -1 0 0 -1 1 0
+4 16 -.7071 1 -.7071 -.7071 0 -.7071 -.9239 0 -.3827 -.9239 1 -.3827
+0
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .3827 1 .9239
+5 24 .3827 1 .9239 .3827 0 .9239 .7071 1 .7071 0 1 1
+5 24 0 1 1 0 0 1 .3827 1 .9239 -.3827 1 .9239
+5 24 -.3827 1 .9239 -.3827 0 .9239 0 1 1 -.7071 1 .7071
+5 24 -.7071 1 .7071 -.7071 0 .7071 -.3827 1 .9239 -.9239 1 .3827
+5 24 -.9239 1 .3827 -.9239 0 .3827 -.7071 1 .7071 -1 1 0
+5 24 -1 1 0 -1 0 0 -.9239 1 .3827 -.9239 1 -.3827
+5 24 -.9239 1 -.3827 -.9239 0 -.3827 -1 1 0 -.7071 1 -.7071
+5 24 -.7071 1 -.7071 -.7071 0 -.7071 -.9239 1 -.3827 -.4142 1 -1
+0
+
+0 FILE p/5-8edge.dat
+0 Circle 0.625
+0 Name: 5-8edge.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -0.9239 0 0.3827
+2 24 -0.9239 0 0.3827 -1 0 0
+2 24 -1 0 0 -0.9239 0 -0.3827
+2 24 -0.9239 0 -0.3827 -0.7071 0 -0.7071
+
+0 FILE parts/30374.dat
+0 Bar  4L Lightsaber Blade
+0 Name: 30374.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part UPDATE 2018-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+0 !KEYWORDS minifig accessory, tool, saber, bar, star wars
+
+0 !HISTORY 2002-07-26 [sbliss] Corrected spacing in title, applied BFC
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-12-31 [cwdee] Correct lightsaber spelling
+0 !HISTORY 2018-01-30 [PTadmin] Official Update 2018-01
+
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 80 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+1 16 0 0 0 4 0 0 0 80 0 0 0 4 p/4-4cyli.dat
+1 16 0 80 0 -4 0 0 0 -1 0 0 0 4 p/4-4disc.dat
+0
+
+0 FILE parts/4589.dat
+0 Cone  1 x  1
+0 Name: 4589.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS round, pylon, 299.dat
+
+0 !HISTORY 1997-12-05 [PTadmin] Official Update 1997-17
+0 !HISTORY 1999-03-01 [sbliss] Replaced conic code with primitives. Cleaned up format.
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2003-08-07 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-09-12 [mikeheide] changed references
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 19 0 8 0 0 0 2.5 0 0 0 8 p/4-4edge.dat
+1 16 0 24 0 8 0 0 0 2.5 0 0 0 8 p/4-4edge.dat
+1 16 0 24 0 6 0 0 0 2.5 0 0 0 6 p/4-4edge.dat
+1 16 0 24 0 2 0 0 0 -2.5 0 0 0 2 p/4-4ring3.dat
+1 16 0 19 0 8 0 0 0 5 0 0 0 8 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 -6 0 0 0 -5 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 18 0 6 0 0 0 1 0 0 0 6 p/4-4cyli.dat
+1 16 0 12 0 1 0 0 0 6 0 0 0 1 p/axlehole.dat
+1 16 0 12 0 1 0 0 0 1 0 0 0 1 p/axlehol2.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/axlehol3.dat
+1 16 0 12 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 19 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 12 0 0 0 4 p/4-4cyli.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 19 0 -2 0 0 0 -1 0 0 0 2 p/4-4ring4.dat
+1 16 0 12 0 -2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+1 16 0 9.5 0 -2 0 0 0 -9.5 0 0 0 2 p/4-4con3.dat
+1 16 0 19 0 0 0 -2 0 -9.5 0 -2 0 0 p/4-4con4.dat
+0 //
+
+0 FILE parts/4085c.dat
+0 Plate  1 x  1 with Clip Vertical (Thick U-Clip)
+0 Name: 4085c.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-11-29 [cwdee] rewrite
+0 !HISTORY 2001-11-30 [PTadmin] Official Update 2001-02
+0 !HISTORY 2003-01-28 [sbliss] Completed header
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-07-01 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-08-07 [C3POwen] Utilised clip2.dat primitive
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+4 16 -6 8 6 -6 8 -6 -10 8 -10 -10 8 10
+4 16 6 8 6 -6 8 6 -10 8 10 10 8 10
+4 16 6 8 -6 6 8 6 10 8 10 10 8 -10
+3 16 -10 8 -10 -6 8 -6 -4.75 8 -10
+4 16 6 8 -6 4.75 8 -10 -4.75 8 -10 -6 8 -6
+3 16 4.75 8 -10 6 8 -6 10 8 -10
+0 BFC INVERTNEXT
+1 16 0 8 0 -6 0 0 0 -4 0 0 0 -6 p/box5.dat
+1 16 0 4 -10 0 0 10 4 0 0 0 20 0 p/box3u2p.dat
+3 16 -10 0 10 -10 0 -10 -4.75 0 -10
+4 16 -10 0 10 -4.75 0 -10 4.75 0 -10 10 0 10
+3 16 10 0 10 4.75 0 -10 10 0 -10
+1 16 -7.375 4 -10 0 0 2.625 4 0 0 0 1 0 p/rect3.dat
+1 16 0 4 -10 1 0 0 0 1 0 0 0 1 p/clip2.dat
+1 16 7.375 4 -10 0 0 -2.625 -4 0 0 0 1 0 p/rect3.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 p/stud.dat
+
+0 FILE p/clip2.dat
+0 Vertical Clip for Bricks
+0 Name: clip2.dat
+0 Author: J.C. Tchang [tchang]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-10-16 [Holly-Wood] Changed origin, made primitive, rectified
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 0 0 4.75 0 0 0 0 4 0 -3 0 p/box4o8a.dat
+
+5 24 -4.75 4 -3 -4.75 -4 -3 -4.75 4 0 -5.4 4 -4.5
+5 24 -5.4 4 -4.5 -5.4 -4 -4.5 -4.75 4 -3 -6.5 4 -6
+5 24 -6.5 -4 -6 -6.5 4 -6 -5.4 -4 -4.5 -7.2 -4 -7.5
+5 24 -7.2 -4 -7.5 -7.2 4 -7.5 -6.5 -4 -6 -7.584 -4 -9
+5 24 -7.584 -4 -9 -7.584 4 -9 -7.2 -4 -7.5 -7.584 -4 -14
+
+1 16 -5.075 0 -3.75 -0.325 12 0 0 0 -4 -0.75 -5.2 0 p/rect2p.dat
+1 16 -5.95 0 -5.25 -0.55 3 0 0 0 -4 -0.75 -2.2 0 p/rect2p.dat
+1 16 -6.85 0 -6.75 -0.35 12 0 0 0 -4 -0.75 -5.6 0 p/rect2p.dat
+1 16 -7.392 0 -8.25 -0.192 4 0 0 0 -4 -0.75 -1.024 0 p/rect2p.dat
+1 16 -7.584 0 -11.5 0 1 0 4 0 0 0 0 -2.5 p/rect3.dat
+1 16 -5.64 0 -14 0 0 1.944 4 0 0 0 1 0 p/rect3.dat
+1 16 -3.696 0 -12.7655 0 -1.03958 0 4 0 0 0 0 1.2345 p/rect3.dat
+1 16 -3.848 0 -10.7655 -0.152 -6.124 0 0 0 -4 0.7655 -1.216 0 p/rect2p.dat
+3 16 -4 -4 -6 -4.75 -4 -3 -5.4 -4 -4.5
+4 16 -4 -4 -6 -5.4 -4 -4.5 -6.5 -4 -6 -7.2 -4 -7.5
+4 16 -4 -4 -10 -4 -4 -6 -7.2 -4 -7.5 -7.584 -4 -9
+4 16 -3.696 -4 -11.531 -4 -4 -10 -7.584 -4 -9 -7.584 -4 -14
+3 16 -7.584 -4 -14 -3.696 -4 -14 -3.696 -4 -11.531
+3 16 -4 4 -6 -5.4 4 -4.5 -4.75 4 -3
+4 16 -6.5 4 -6 -5.4 4 -4.5 -4 4 -6 -7.2 4 -7.5
+4 16 -4 4 -10 -7.584 4 -9 -7.2 4 -7.5 -4 4 -6
+4 16 -3.696 4 -11.531 -7.584 4 -14 -7.584 4 -9 -4 4 -10
+3 16 -7.584 4 -14 -3.696 4 -11.531 -3.696 4 -14
+
+5 24 4.75 -4 -3 4.75 4 -3 4.75 -4 0 5.4 -4 -4.5
+5 24 5.4 -4 -4.5 5.4 4 -4.5 4.75 -4 -3 6.5 -4 -6
+5 24 6.5 -4 -6 6.5 4 -6 5.4 -4 -4.5 7.2 -4 -7.5
+5 24 7.2 -4 -7.5 7.2 4 -7.5 6.5 -4 -6 7.584 -4 -9
+5 24 7.584 -4 -9 7.584 4 -9 7.2 -4 -7.5 7.584 -4 -14
+
+1 16 5.075 0 -3.75 0.325 -12 0 0 0 4 -0.75 -5.2 0 p/rect2p.dat
+1 16 5.95 0 -5.25 0.55 -3 0 0 0 4 -0.75 -2.2 0 p/rect2p.dat
+1 16 6.85 0 -6.75 0.35 -12 0 0 0 4 -0.75 -5.6 0 p/rect2p.dat
+1 16 7.392 0 -8.25 0.192 -4 0 0 0 4 -0.75 -1.024 0 p/rect2p.dat
+1 16 7.584 0 -11.5 0 -1 0 -4 0 0 0 0 -2.5 p/rect3.dat
+1 16 5.64 0 -14 0 0 -1.944 -4 0 0 0 1 0 p/rect3.dat
+1 16 3.696 0 -12.7655 0 1 0 -4 0 0 0 0 1.2345 p/rect3.dat
+1 16 3.848 0 -10.7655 0.152 0.980851 0 0 0 4 0.7655 -0.999992 0 p/rect2p.dat
+3 16 4 -4 -6 5.4 -4 -4.5 4.75 -4 -3
+4 16 6.5 -4 -6 5.4 -4 -4.5 4 -4 -6 7.2 -4 -7.5
+4 16 4 -4 -10 7.584 -4 -9 7.2 -4 -7.5 4 -4 -6
+4 16 3.696 -4 -11.531 7.584 -4 -14 7.584 -4 -9 4 -4 -10
+3 16 7.584 -4 -14 3.696 -4 -11.531 3.696 -4 -14
+3 16 4 4 -6 4.75 4 -3 5.4 4 -4.5
+4 16 4 4 -6 5.4 4 -4.5 6.5 4 -6 7.2 4 -7.5
+4 16 4 4 -10 4 4 -6 7.2 4 -7.5 7.584 4 -9
+4 16 3.696 4 -11.531 4 4 -10 7.584 4 -9 7.584 4 -14
+3 16 7.584 4 -14 3.696 4 -14 3.696 4 -11.531
+
+1 16 0 -4 -10 -4 0 0 0 1 0 0 0 4 p/2-4edge.dat
+1 16 0 4 -10 -4 0 0 0 1 0 0 0 4 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 -10 -4 0 0 0 8 0 0 0 4 p/2-4cyli.dat
+1 16 0 -4 -10 -4 0 0 0 1 0 0 0 4 p/2-4ndis.dat
+1 16 0 4 -10 4 0 0 0 -1 0 0 0 4 p/2-4ndis.dat
+
+4 16 -4.75 -4 -3 -4 -4 -6 4 -4 -6 4.75 -4 -3
+4 16 -4.75 4 -3 4.75 4 -3 4 4 -6 -4 4 -6
+0 //
+0 FILE p/box4o8a.dat
+0 Box with 4 Faces (2 Parallel Pairs) without Top and Bottom Edges
+0 Name: box4o8a.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE parts/2362b.dat
+0 Panel  1 x  2 x  3 with Hollow Studs
+0 Name: 2362b.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-08-03 [OrionP] Moved guts to subpart
+0 !HISTORY 2004-04-25 [cwdee] Modify to use studless subpart
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-05-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/2362s01.dat
+
+4 16 20 72 10 -20 72 10 -20 0 10 20 0 10
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/s/2362s01.dat
+0 ~Panel  1 x  2 x  3 without Front Face and Studs
+0 Name: s\2362s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2004-04-25 [cwdee] Updated to move studs to main parts
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-08-28 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 68 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 72 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 20 72 10 16 72 6 -16 72 6 -20 72 10
+4 16 -20 72 10 -16 72 6 -16 72 -6 -20 72 -10
+4 16 -20 72 -10 -16 72 -6 16 72 -6 20 72 -10
+4 16 20 72 -10 16 72 -6 16 72 6 20 72 10
+2 24 20 72 10 -20 72 10
+2 24 -20 72 10 -20 72 -10
+2 24 -20 72 -10 20 72 -10
+2 24 20 72 -10 20 72 10
+2 24 20 64 6 -20 64 6
+2 24 -20 64 6 -20 64 -10
+2 24 -20 64 -10 20 64 -10
+2 24 20 64 -10 20 64 6
+2 24 20 4 6 -20 4 6
+2 24 -20 4 6 -20 4 -10
+2 24 -20 4 -10 20 4 -10
+2 24 20 4 -10 20 4 6
+2 24 20 0 10 -20 0 10
+2 24 -20 0 10 -20 0 -10
+2 24 -20 0 -10 20 0 -10
+2 24 20 0 -10 20 0 10
+2 24 20 0 -10 20 4 -10
+2 24 -20 0 -10 -20 4 -10
+2 24 20 4 6 20 64 6
+2 24 -20 4 6 -20 64 6
+2 24 20 64 -10 20 72 -10
+2 24 -20 64 -10 -20 72 -10
+2 24 20 0 10 20 72 10
+2 24 -20 0 10 -20 72 10
+4 16 20 64 -10 20 64 6 -20 64 6 -20 64 -10
+4 16 20 4 6 20 4 -10 -20 4 -10 -20 4 6
+4 16 20 0 -10 20 0 10 -20 0 10 -20 0 -10
+4 16 -20 72 10 -20 72 -10 -20 64 -10 -20 64 10
+4 16 -20 72 -10 20 72 -10 20 64 -10 -20 64 -10
+4 16 20 72 -10 20 72 10 20 64 10 20 64 -10
+4 16 -20 64 10 -20 64 6 -20 4 6 -20 4 10
+4 16 -20 64 6 20 64 6 20 4 6 -20 4 6
+4 16 20 64 6 20 64 10 20 4 10 20 4 6
+4 16 -20 4 10 -20 4 -10 -20 0 -10 -20 0 10
+4 16 -20 4 -10 20 4 -10 20 0 -10 -20 0 -10
+4 16 20 4 -10 20 4 10 20 0 10 20 0 -10
+0
+
+0 FILE parts/75535.dat
+0 Technic Pin Joiner Round
+0 Name: 75535.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-09-21 [OrionP] Added groove
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 20 0 0 0 -1 0 1 0 0 0 0 1 p/peghole.dat
+1 16 -20 0 0 0 1 0 1 0 0 0 0 1 p/peghole.dat
+1 16 2 0 0 0 -2 0 1 0 0 0 0 1 p/peghole.dat
+1 16 -2 0 0 0 2 0 1 0 0 0 0 1 p/peghole.dat
+1 16 -20 0 0 0 -1 0 10 0 0 0 0 10 p/4-4edge.dat
+1 16 20 0 0 0 -1 0 10 0 0 0 0 10 p/4-4edge.dat
+1 16 16.25 0 0 0 -1 0 10 0 0 0 0 10 p/4-4edge.dat
+1 16 15.75 0 0 0 -1 0 10 0 0 0 0 10 p/4-4edge.dat
+1 16 16 0 0 0 -1 0 9.5 0 0 0 0 9.5 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 18 0 0 0 -16 0 6 0 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -18 0 0 0 16 0 6 0 0 0 0 6 p/4-4cyli.dat
+1 16 15.75 0 0 0 -35.75 0 10 0 0 0 0 10 p/4-4cyli.dat
+1 16 20 0 0 0 -3.75 0 10 0 0 0 0 10 p/4-4cyli.dat
+1 16 16.25 0 0 0 -0.25 0 0.5 0 0 0 0 0.5 p/4-4con19.dat
+1 16 15.75 0 0 0 0.25 0 0.5 0 0 0 0 -0.5 p/4-4con19.dat
+1 16 20 0 0 0 -1 0 2 0 0 0 0 -2 p/ring4.dat
+1 16 -20 0 0 0 1 0 2 0 0 0 0 2 p/ring4.dat
+0
+
+0 FILE p/4-4con19.dat
+0 Cone 19 x 1.0
+0 Name: 4-4con19.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 19 1 0 20 0 0 17.5541 1 7.2713 17.5541 1 -7.2713
+5 24 17.5541 1 7.2713 18.4780 0 7.6540 13.4349 1 13.4349 19 1 0
+5 24 13.4349 1 13.4349 14.1420 0 14.1420 7.2713 1 17.5541 17.5541 1 7.2713
+5 24 7.2713 1 17.5541 7.6540 0 18.4780 0 1 19 13.4349 1 13.4349
+5 24 0 1 19 0 0 20 -7.2713 1 17.5541 7.2713 1 17.5541
+5 24 -7.2713 1 17.5541 -7.6540 0 18.4780 -13.4349 1 13.4349 0 1 19
+5 24 -13.4349 1 13.4349 -14.1420 0 14.1420 -17.5541 1 7.2713 -7.2713 1 17.5541
+5 24 -17.5541 1 7.2713 -18.4780 0 7.6540 -19 1 0 -13.4349 1 13.4349
+5 24 -19 1 0 -20 0 0 -17.5541 1 -7.2713 -17.5541 1 7.2713
+5 24 -17.5541 1 -7.2713 -18.4780 0 -7.6540 -13.4349 1 -13.4349 -19 1 0
+5 24 -13.4349 1 -13.4349 -14.1420 0 -14.1420 -7.2713 1 -17.5541 -17.5541 1 -7.2713
+5 24 -7.2713 1 -17.5541 -7.6540 0 -18.4780 0 1 -19 -13.4349 1 -13.4349
+5 24 0 1 -19 0 0 -20 7.2713 1 -17.5541 -7.2713 1 -17.5541
+5 24 7.2713 1 -17.5541 7.6540 0 -18.4780 13.4349 1 -13.4349 0 1 -19
+5 24 13.4349 1 -13.4349 14.1420 0 -14.1420 17.5541 1 -7.2713 7.2713 1 -17.5541
+5 24 17.5541 1 -7.2713 18.4780 0 -7.6540 19 1 0 13.4349 1 -13.4349
+
+4 16 19 1 0 17.5541 1 7.2713 18.4780 0 7.6540 20 0 0
+4 16 17.5541 1 7.2713 13.4349 1 13.4349 14.1420 0 14.1420 18.4780 0 7.6540
+4 16 13.4349 1 13.4349 7.2713 1 17.5541 7.6540 0 18.4780 14.1420 0 14.1420
+4 16 7.2713 1 17.5541 0 1 19 0 0 20 7.6540 0 18.4780
+4 16 0 1 19 -7.2713 1 17.5541 -7.6540 0 18.4780 0 0 20
+4 16 -7.2713 1 17.5541 -13.4349 1 13.4349 -14.1420 0 14.1420 -7.6540 0 18.4780
+4 16 -13.4349 1 13.4349 -17.5541 1 7.2713 -18.4780 0 7.6540 -14.1420 0 14.1420
+4 16 -17.5541 1 7.2713 -19 1 0 -20 0 0 -18.4780 0 7.6540
+4 16 -19 1 0 -17.5541 1 -7.2713 -18.4780 0 -7.6540 -20 0 0
+4 16 -17.5541 1 -7.2713 -13.4349 1 -13.4349 -14.1420 0 -14.1420 -18.4780 0 -7.6540
+4 16 -13.4349 1 -13.4349 -7.2713 1 -17.5541 -7.6540 0 -18.4780 -14.1420 0 -14.1420
+4 16 -7.2713 1 -17.5541 0 1 -19 0 0 -20 -7.6540 0 -18.4780
+4 16 0 1 -19 7.2713 1 -17.5541 7.6540 0 -18.4780 0 0 -20
+4 16 7.2713 1 -17.5541 13.4349 1 -13.4349 14.1420 0 -14.1420 7.6540 0 -18.4780
+4 16 13.4349 1 -13.4349 17.5541 1 -7.2713 18.4780 0 -7.6540 14.1420 0 -14.1420
+4 16 17.5541 1 -7.2713 19 1 0 20 0 0 18.4780 0 -7.6540
+0
+
+
+0 FILE parts/30359b.dat
+0 Bar  1 x  8 with Brick  1  x  2 Curved Top End With Axlehole
+0 Name: 30359b.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Star Wars, laser cannon, cylinder, rounded, piston rod, bar, rod
+0 !KEYWORDS brick, support, connector, ion cannon, blaster, energy, binder
+0 !KEYWORDS Podracer
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [cwdee] Very minor correction to description (2005-12-29)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 -10 24 -20 10 24 -20
+2 24 10 24 -20 10 24 20
+2 24 10 24 20 -10 24 20
+2 24 -10 24 20 -10 24 -20
+2 24 -7 24 -16 7 24 -16
+2 24 7 24 -16 7 24 -11
+2 24 7 24 -9 7 24 9
+2 24 7 24 11 7 24 16
+2 24 -7 24 16 -7 24 11
+2 24 -7 24 9 -7 24 -9
+2 24 -7 24 -11 -7 24 -16
+2 24 7 24 16 -7 24 16
+2 24 -7 24 -16 -7 10 -16
+2 24 7 24 -16 7 10 -16
+2 24 7 24 16 7 10 16
+2 24 -7 24 16 -7 10 16
+2 24 -10 24 -20 -10 10 -20
+2 24 10 24 -20 10 10 -20
+2 24 10 24 20 10 10 20
+2 24 -10 24 20 -10 10 20
+1 16 0 10 -16 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 16 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 1 0 p/2-4edge.dat
+1 16 0 10 20 10 0 0 0 0 -10 0 1 0 p/2-4edge.dat
+1 16 0 4.415 0 -1 0 0 0 -4.89625 0 0 0 1 p/stud3a.dat
+1 16 0 4.415 0 0 0 4 0 -1.415 0 4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 -4 0 -1.415 0 4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 -4 0 -1.415 0 -4 0 0 p/1-4cyls2.dat
+1 16 0 4.415 0 0 0 4 0 -1.415 0 -4 0 0 p/1-4cyls2.dat
+2 24 0 3 4 1.532 3.304 3.696
+2 24 1.532 3.304 3.696 2.828 3.56 2.828
+2 24 2.828 3.56 2.828 3.696 4.212 1.532
+2 24 3.696 4.212 1.532 4 4.415 0
+2 24 0 3 -4 1.532 3.304 -3.696
+2 24 1.532 3.304 -3.696 2.828 3.56 -2.828
+2 24 2.828 3.56 -2.828 3.696 4.212 -1.532
+2 24 3.696 4.212 -1.532 4 4.415 0
+2 24 0 3 -4 -1.532 3.304 -3.696
+2 24 -1.532 3.304 -3.696 -2.828 3.56 -2.828
+2 24 -2.828 3.56 -2.828 -3.696 4.212 -1.532
+2 24 -3.696 4.212 -1.532 -4 4.415 0
+2 24 0 3 4 -1.532 3.304 3.696
+2 24 -1.532 3.304 3.696 -2.828 3.56 2.828
+2 24 -2.828 3.56 2.828 -3.696 4.212 1.532
+2 24 -3.696 4.212 1.532 -4 4.415 0
+1 16 0 10 20 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 16 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 16 1 0 0 0 0 1 0 1 0 p/4-4ring6.dat
+1 16 0 10 -40 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 10 -116 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 10 -120 10 0 0 0 0 10 0 1 0 p/4-4edge.dat
+1 16 0 20 -130 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 10 -140 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 -140 10 0 0 0 0 10 0 1 0 p/4-4edge.dat
+4 16 10 24 -20 -10 24 -20 -7 24 -16 7 24 -16
+4 16 -10 24 -20 -10 24 20 -7 24 16 -7 24 -16
+4 16 -10 24 20 10 24 20 7 24 16 -7 24 16
+4 16 10 24 20 10 24 -20 7 24 -16 7 24 16
+4 16 -7 24 -16 -7 10 -16 7 10 -16 7 24 -16
+4 16 7 24 -16 7 10 -16 7 10 16 7 24 16
+4 16 7 24 16 7 17 16 -7 17 16 -7 24 16
+4 16 -7 24 16 -7 10 16 -7 10 -16 -7 24 -16
+4 16 10 24 -20 10 10 -20 -10 10 -20 -10 24 -20
+4 16 10 24 20 10 10 20 10 10 -20 10 24 -20
+4 16 -10 24 20 -10 20 20 10 20 20 10 24 20
+4 16 -10 24 -20 -10 10 -20 -10 10 20 -10 24 20
+1 16 0 10 -16 7 0 0 0 0 -7 0 -1 0 p/2-4disc.dat
+1 16 0 10 16 7 0 0 0 0 7 0 1 0 p/2-4ndis.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 1 0 p/2-4disc.dat
+1 16 0 10 20 2 0 0 0 0 2 0 -1 0 p/ring3.dat
+1 16 0 10 20 2 0 0 0 0 2 0 -1 0 p/ring4.dat
+1 16 0 10 20 10 0 0 0 0 10 0 -1 0 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 10 16 6 0 0 0 0 6 0 4 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 -16 7 0 0 0 0 -7 0 32 0 p/2-4cyli.dat
+1 16 0 10 -20 10 0 0 0 0 -10 0 40 0 p/2-4cyli.dat
+1 16 0 10 -116 4 0 0 0 0 4 0 76 0 p/4-4cyli.dat
+1 16 0 10 -120 -5 0 0 0 0 5 0 3.25 0 p/4-4con1.dat
+1 16 0 10 -116.75 -1 0 0 0 0 1 0 0.75 0 p/4-4con4.dat
+1 16 0 20 -130 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 0 20 -130 8 0 0 0 -4.319 0 0 0 -8 p/1-4cyls2.dat
+1 16 0 20 -130 -8 0 0 0 -4.319 0 0 0 -8 p/1-4cyls2.dat
+1 16 0 20 -130 -8 0 0 0 -4.319 0 0 0 8 p/1-4cyls2.dat
+1 16 0 20 -130 8 0 0 0 -4.319 0 0 0 8 p/1-4cyls2.dat
+1 16 0 20 -130 6 0 0 0 -1 0 0 0 6 p/4-4disc.dat
+0 BFC INVERTNEXT
+1 16 0 10 -140 6 0 0 0 0 6 0 16 0 p/4-4cyli.dat
+1 16 0 10 -135 1 0 0 0 0 1 0 11 0 p/axlehol6.dat
+1 16 0 10 -135 0 0 1 -1 0 0 0 11 0 p/axlehol6.dat
+1 16 0 10 -135 -1 0 0 0 0 -1 0 11 0 p/axlehol6.dat
+1 16 0 10 -135 0 0 -1 1 0 0 0 11 0 p/axlehol6.dat
+1 16 0 10 -135 1 0 0 0 0 1 0 11 0 p/axlehol3.dat
+1 16 0 10 -124 1 0 0 0 0 1 0 11 0 p/axlehol2.dat
+1 16 0 10 -124 1 0 0 0 0 1 0 11 0 p/axleend.dat
+1 16 0 10 -140 10 0 0 0 0 10 0 20 0 p/4-4cyli.dat
+1 16 0 10 -140 2 0 0 0 0 2 0 1 0 p/ring3.dat
+1 16 0 10 -140 2 0 0 0 0 2 0 1 0 p/ring4.dat
+1 16 0 10 -40 3.58 0 -3.58 3.58 0 3.58 0 1 0 p/4-4edge.dat
+1 16 0 10 -40 3.58 0 -3.58 3.58 0 3.58 0 1 0 p/4-4disc.dat
+1 16 0 10 -20 -6.364 0 -6.364 6.364 0 -6.364 0 1 0 p/3-4edge.dat
+2 24 6.364 16.364 -20 5.388 17.016 -20
+2 24 -6.364 16.364 -20 -5.388 17.016 -20
+1 16 0 10 -31.429 1.193 0 1.193 -1.193 0 1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 1.591 0 1.591 -1.591 0 1.591 0 -11.429 0 p/1-4con3.dat
+1 16 0 10 -31.429 -1.193 0 1.193 -1.193 0 -1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 -1.591 0 1.591 -1.591 0 -1.591 0 -11.429 0 p/1-4con3.dat
+1 16 0 10 -31.429 -1.193 0 -1.193 1.193 0 -1.193 0 -8.571 0 p/1-4con3.dat
+1 16 0 10 -20 -1.591 0 -1.591 1.591 0 -1.591 0 -11.429 0 p/1-4con3.dat
+4 16 2.238 15.402 -36 4.136 14.136 -36 3.579 13.579 -40 1.937 14.676 -40
+5 24 2.238 15.402 -36 1.937 14.676 -40 4.136 14.136 -36 0 15.849 -36
+4 16 1.937 14.676 -40 0 15.061 -40 0 15.849 -36 2.238 15.402 -36
+5 24 0 15.849 -36 0 15.061 -40 2.238 15.402 -36 -2.238 15.402 -36
+4 16 0 15.061 -40 -1.937 14.676 -40 -2.238 15.402 -36 0 15.849 -36
+5 24 -2.238 15.402 -36 -1.937 14.676 -40 -4.136 14.136 -36 0 15.849 -36
+4 16 -1.937 14.676 -40 -3.579 13.579 -40 -4.136 14.136 -36 -2.238 15.402 -36
+2 24 -2.238 15.402 -36 -5.388 17.016 -20
+2 24 -2.238 15.402 -36 0 15.849 -36
+2 24 2.238 15.402 -36 0 15.849 -36
+2 24 2.238 15.402 -36 5.388 17.016 -20
+3 16 2.238 15.402 -36 0 15.849 -36 -2.238 15.402 -36
+4 16 2.238 15.402 -36 -2.238 15.402 -36 -2.238 10 -36 2.238 10 -36
+4 16 4.136 14.136 -36 2.238 15.402 -36 5.388 17.016 -20 6.364 16.364 -20
+4 16 -6.364 16.364 -20 -5.388 17.016 -20 -2.238 15.402 -36 -4.136 14.136 -36
+4 16 -2.238 15.402 -36 -5.388 17.016 -20 -5.388 10 -20 -2.238 10 -36
+2 24 5.388 17.016 -20 5.388 10 -20
+2 24 2.238 15.402 -36 2.238 10 -36
+2 24 -5.388 17.016 -20 -5.388 10 -20
+2 24 -2.238 15.402 -36 -2.238 10 -36
+1 16 0 10 -36 2.238 0 0 0 0 -2.238 0 1 0 p/2-4edge.dat
+1 16 0 10 -20 5.388 0 0 0 0 -5.388 0 1 0 p/2-4edge.dat
+1 16 0 10 -36 2.238 0 0 0 0 -2.238 0 -1 0 p/2-4disc.dat
+4 16 2.238 10 -36 5.388 10 -20 5.388 17.016 -20 2.238 15.402 -36
+5 24 5.388 10 -20 2.238 10 -36 5.388 17.016 -20 4.978 7.938 -20
+5 24 -5.388 10 -20 -2.238 10 -36 -5.388 17.016 -20 -4.978 7.938 -20
+4 16 2.238 10 -36 2.068 9.144 -36 4.978 7.938 -20 5.388 10 -20
+5 24 4.978 7.938 -20 2.068 9.144 -36 5.388 10 -20 3.81 6.19 -20
+5 24 -4.978 7.938 -20 -2.068 9.144 -36 -5.388 10 -20 -3.81 6.19 -20
+4 16 2.068 9.144 -36 1.582 8.418 -36 3.81 6.19 -20 4.978 7.938 -20
+5 24 3.81 6.19 -20 1.582 8.418 -36 4.978 7.938 -20 2.062 5.022 -20
+5 24 -3.81 6.19 -20 -1.582 8.418 -36 -4.978 7.938 -20 -2.062 5.022 -20
+4 16 1.582 8.418 -36 0.856 7.932 -36 2.062 5.022 -20 3.81 6.19 -20
+5 24 2.062 5.022 -20 0.856 7.932 -36 3.81 6.19 -20 0 4.612 -20
+5 24 -2.062 5.022 -20 -0.856 7.932 -36 -3.81 6.19 -20 0 4.612 -20
+4 16 0.856 7.932 -36 0 7.762 -36 0 4.612 -20 2.062 5.022 -20
+5 24 0 4.612 -20 0 7.762 -36 2.062 5.022 -20 -2.062 5.022 -20
+4 16 -5.388 10 -20 -4.978 7.938 -20 -2.068 9.144 -36 -2.238 10 -36
+4 16 -4.978 7.938 -20 -3.81 6.19 -20 -1.582 8.418 -36 -2.068 9.144 -36
+4 16 -3.81 6.19 -20 -2.062 5.022 -20 -0.856 7.932 -36 -1.582 8.418 -36
+4 16 -2.062 5.022 -20 0 4.612 -20 0 7.762 -36 -0.856 7.932 -36
+2 24 3.062 19.391 -137.391 0 20 -138
+2 24 3.827 19.239 -136.88 3.062 19.391 -137.391
+2 24 5.657 18.016 -135.657 3.827 19.239 -136.88
+2 24 7.071 17.071 -133.541 5.657 18.016 -135.657
+2 24 7.391 16.592 -133.062 7.071 17.071 -133.541
+2 24 8 15.681 -130 7.391 16.592 -133.062
+2 24 8 15.681 -130 7.391 16.592 -126.938
+2 24 7.391 16.592 -126.938 7.071 17.071 -126.459
+2 24 7.071 17.071 -126.459 5.657 18.016 -124.343
+2 24 5.657 18.016 -124.343 3.827 19.239 -123.12
+2 24 3.827 19.239 -123.12 3.062 19.391 -122.609
+2 24 3.062 19.391 -122.609 0 20 -122
+2 24 -3.062 19.391 -122.609 0 20 -122
+2 24 -3.827 19.239 -123.12 -3.062 19.391 -122.609
+2 24 -5.657 18.016 -124.343 -3.827 19.239 -123.12
+2 24 -7.071 17.071 -126.459 -5.657 18.016 -124.343
+2 24 -7.391 16.592 -126.938 -7.071 17.071 -126.459
+2 24 -8 15.681 -130 -7.391 16.592 -126.938
+2 24 -8 15.681 -130 -7.391 16.592 -133.062
+2 24 -7.391 16.592 -133.062 -7.071 17.071 -133.541
+2 24 -7.071 17.071 -133.541 -5.657 18.016 -135.657
+2 24 -5.657 18.016 -135.657 -3.827 19.239 -136.88
+2 24 -3.827 19.239 -136.88 -3.062 19.391 -137.391
+2 24 -3.062 19.391 -137.391 0 20 -138
+1 16 0 0 -130 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 -130 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 -130 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -130 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -130 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -130 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -130 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 -130 5.543 1.908 -127.704
+2 24 5.543 1.908 -127.704 4.243 1.039 -125.757
+2 24 4.243 1.039 -125.757 3.827 0.915 -125.479
+2 24 3.827 0.915 -125.479 2.296 0.457 -124.457
+2 24 2.296 0.457 -124.457 0 0 -124
+2 24 0 0 -124 -2.296 0.457 -124.457
+2 24 -2.296 0.457 -124.457 -3.827 0.915 -125.479
+2 24 -3.827 0.915 -125.479 -4.243 1.039 -125.757
+2 24 -4.243 1.039 -125.757 -5.543 1.908 -127.704
+2 24 -5.543 1.908 -127.704 -6 2.213 -130
+2 24 -6 2.213 -130 -5.543 1.908 -132.296
+2 24 -5.543 1.908 -132.296 -4.243 1.039 -134.243
+2 24 -4.243 1.039 -134.243 -3.827 0.915 -134.521
+2 24 -3.827 0.915 -134.521 -2.296 0.457 -135.543
+2 24 -2.296 0.457 -135.543 0 0 -136
+2 24 0 0 -136 2.296 0.457 -135.543
+2 24 2.296 0.457 -135.543 3.827 0.915 -134.521
+2 24 3.827 0.915 -134.521 4.243 1.039 -134.243
+2 24 4.243 1.039 -134.243 5.543 1.908 -132.296
+2 24 5.543 1.908 -132.296 6 2.213 -130
+1 16 0 0 -10 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 -10 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 -10 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -10 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 -10 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -10 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 -10 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 -10 5.543 1.908 -7.704
+2 24 5.543 1.908 -7.704 4.243 1.039 -5.757
+2 24 4.243 1.039 -5.757 3.827 0.915 -5.479
+2 24 3.827 0.915 -5.479 2.296 0.457 -4.457
+2 24 2.296 0.457 -4.457 0 0 -4
+2 24 0 0 -4 -2.296 0.457 -4.457
+2 24 -2.296 0.457 -4.457 -3.827 0.915 -5.479
+2 24 -3.827 0.915 -5.479 -4.243 1.039 -5.757
+2 24 -4.243 1.039 -5.757 -5.543 1.908 -7.704
+2 24 -5.543 1.908 -7.704 -6 2.213 -10
+2 24 -6 2.213 -10 -5.543 1.908 -12.296
+2 24 -5.543 1.908 -12.296 -4.243 1.039 -14.243
+2 24 -4.243 1.039 -14.243 -3.827 0.915 -14.521
+2 24 -3.827 0.915 -14.521 -2.296 0.457 -15.543
+2 24 -2.296 0.457 -15.543 0 0 -16
+2 24 0 0 -16 2.296 0.457 -15.543
+2 24 2.296 0.457 -15.543 3.827 0.915 -14.521
+2 24 3.827 0.915 -14.521 4.243 1.039 -14.243
+2 24 4.243 1.039 -14.243 5.543 1.908 -12.296
+2 24 5.543 1.908 -12.296 6 2.213 -10
+1 16 0 0 10 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 10 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 10 6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 10 -6 0 0 0 2.213 0 0 0 6 p/1-4cyls2.dat
+1 16 0 0 10 -6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 10 6 0 0 0 2.213 0 0 0 -6 p/1-4cyls2.dat
+1 16 0 0 10 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+2 24 6 2.213 10 5.543 1.908 12.296
+2 24 5.543 1.908 12.296 4.243 1.039 14.243
+2 24 4.243 1.039 14.243 3.827 0.915 14.521
+2 24 3.827 0.915 14.521 2.296 0.457 15.543
+2 24 2.296 0.457 15.543 0 0 16
+2 24 0 0 16 -2.296 0.457 15.543
+2 24 -2.296 0.457 15.543 -3.827 0.915 14.521
+2 24 -3.827 0.915 14.521 -4.243 1.039 14.243
+2 24 -4.243 1.039 14.243 -5.543 1.908 12.296
+2 24 -5.543 1.908 12.296 -6 2.213 10
+2 24 -6 2.213 10 -5.543 1.908 7.704
+2 24 -5.543 1.908 7.704 -4.243 1.039 5.757
+2 24 -4.243 1.039 5.757 -3.827 0.915 5.479
+2 24 -3.827 0.915 5.479 -2.296 0.457 4.457
+2 24 -2.296 0.457 4.457 0 0 4
+2 24 0 0 4 2.296 0.457 4.457
+2 24 2.296 0.457 4.457 3.827 0.915 5.479
+2 24 3.827 0.915 5.479 4.243 1.039 5.757
+2 24 4.243 1.039 5.757 5.543 1.908 7.704
+2 24 5.543 1.908 7.704 6 2.213 10
+1 16 7 15.31 10 0 -1 0 0 0 8.69 -1 0 0 p/box4-7a.dat
+2 24 7 10 11 7 24 11
+2 24 7 10 9 7 24 9
+2 24 6.468 7.319 11 6 6.62 11
+2 24 6.468 7.319 11 7 10 11
+2 24 6.468 7.319 9 6 6.62 9
+2 24 6.468 7.319 9 7 10 9
+2 24 6 6.62 9 6 6.62 11
+1 16 7 15.31 -10 0 -1 0 0 0 8.69 -1 0 0 p/box4-7a.dat
+2 24 7 10 -9 7 24 -9
+2 24 7 10 -11 7 24 -11
+2 24 6.468 7.319 -9 6 6.62 -9
+2 24 6.468 7.319 -9 7 10 -9
+2 24 6.468 7.319 -11 6 6.62 -11
+2 24 6.468 7.319 -11 7 10 -11
+2 24 6 6.62 -11 6 6.62 -9
+1 16 -7 15.31 -10 0 1 0 0 0 8.69 1 0 0 p/box4-7a.dat
+2 24 -7 10 -11 -7 24 -11
+2 24 -7 10 -9 -7 24 -9
+2 24 -6.468 7.319 -11 -6 6.62 -11
+2 24 -6.468 7.319 -11 -7 10 -11
+2 24 -6.468 7.319 -9 -6 6.62 -9
+2 24 -6.468 7.319 -9 -7 10 -9
+2 24 -6 6.62 -9 -6 6.62 -11
+1 16 -7 15.31 10 0 1 0 0 0 8.69 1 0 0 p/box4-7a.dat
+2 24 -7 10 9 -7 24 9
+2 24 -7 10 11 -7 24 11
+2 24 -6.468 7.319 9 -6 6.62 9
+2 24 -6.468 7.319 9 -7 10 9
+2 24 -6.468 7.319 11 -6 6.62 11
+2 24 -6.468 7.319 11 -7 10 11
+2 24 -6 6.62 11 -6 6.62 9
+1 16 0 10 -1 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 1 7 0 0 0 0 -7 0 1 0 p/2-4edge.dat
+1 16 0 10 1 7 0 0 0 0 -7 0 -1 0 p/2-4disc.dat
+1 16 0 10 -1 7 0 0 0 0 -7 0 1 0 p/2-4disc.dat
+2 24 7 20 1 3.802 20 1
+2 24 7 20 -1 3.802 20 -1
+2 24 -7 20 1 -3.802 20 1
+2 24 -7 20 -1 -3.802 20 -1
+2 24 4 20 0 3.802 20 1
+2 24 4 20 0 3.802 20 -1
+2 24 -4 20 0 -3.802 20 -1
+2 24 -4 20 0 -3.802 20 1
+2 24 7 20 -1 7 20 1
+2 24 -7 20 -1 -7 20 1
+2 24 7 10 1 7 20 1
+2 24 7 10 -1 7 20 -1
+2 24 -7 10 1 -7 20 1
+2 24 -7 10 -1 -7 20 -1
+2 24 3.802 20 -1 3.802 4.283 -1
+2 24 3.802 20 1 3.802 4.283 1
+2 24 -3.802 20 1 -3.802 4.283 1
+2 24 -3.802 20 -1 -3.802 4.283 -1
+4 16 7 20 -1 7 10 -1 3.802 10 -1 3.802 20 -1
+4 16 -3.802 20 -1 -3.802 10 -1 -7 10 -1 -7 20 -1
+4 16 -7 20 1 -7 10 1 -3.802 10 1 -3.802 20 1
+4 16 3.802 20 1 3.802 10 1 7 10 1 7 20 1
+4 16 7 20 -1 3.802 20 -1 3.802 20 1 7 20 1
+4 16 -7 20 1 -3.802 20 1 -3.802 20 -1 -7 20 -1
+0
+
+0 FILE p/axlehol6.dat
+0 Technic Axle Hole Tooth
+0 Name: axlehol6.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2005-08-28 [guyvivan] Use 1-8chrd.dat primitive
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 5.602 0 2 2 0 2
+2 24 2 0 2 2 0 5.602
+2 24 5.602 1 2 2 1 2
+2 24 2 1 2 2 1 5.602
+2 24 5.602 0 2 5.602 1 2
+2 24 2 0 2 2 1 2
+2 24 2 0 5.602 2 1 5.602
+4 16 5.602 0 2 2 0 2 2 1 2 5.602 1 2
+4 16 2 0 2 2 0 5.602 2 1 5.602 2 1 2
+3 16 5.602 0 2 5.543 0 2.296 2 0 2
+3 16 2.296 0 5.543 2 0 5.602 2 0 2
+3 16 2 0 2 5.543 0 2.296 2.296 0 5.543
+3 16 2 1 2 5.543 1 2.296 5.602 1 2
+3 16 2 1 2 2 1 5.602 2.296 1 5.543
+3 16 2.296 1 5.543 5.543 1 2.296 2 1 2
+1 16 0 0 0 5.543 0 -2.296 0 1 0 2.296 0 5.543 p/1-8chrd.dat
+1 16 0 1 0 5.543 0 -2.296 0 -1 0 2.296 0 5.543 p/1-8chrd.dat
+0
+
+0 FILE p/ring4.dat
+0 ~Moved to 4-4ring4
+0 Name: ring4.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Ring  4 x 1.0
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4ring4.dat
+
+0 FILE parts/3009.dat
+0 Brick  1 x  6
+0 Name: 3009.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2003-07-03 [Steffen] Subfiled for patterning
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-06 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3009s01.dat
+4 16 -60 0 -10 -60 24 -10 60 24 -10 60 0 -10
+0
+
+0 FILE parts/s/3009s01.dat
+0 ~Brick  1 x  6 without Front Face
+0 Name: s\3009s01.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Subpart UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2003-07-03 [Steffen] Subfiled for patterning
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-08-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 40 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 56 0 0 0 -20 0 0 0 6 p/box5.dat
+4 16 60 24 10 56 24 6 -56 24 6 -60 24 10
+4 16 -60 24 10 -56 24 6 -56 24 -6 -60 24 -10
+4 16 -60 24 -10 -56 24 -6 56 24 -6 60 24 -10
+4 16 60 24 -10 56 24 -6 56 24 6 60 24 10
+2 24 60 0 10 -60 0 10
+2 24 -60 0 10 -60 0 -10
+2 24 -60 0 -10 60 0 -10
+2 24 60 0 -10 60 0 10
+2 24 60 24 10 -60 24 10
+2 24 -60 24 10 -60 24 -10
+2 24 -60 24 -10 60 24 -10
+2 24 60 24 -10 60 24 10
+2 24 60 24 10 60 0 10
+2 24 -60 24 10 -60 0 10
+2 24 60 24 -10 60 0 -10
+2 24 -60 24 -10 -60 0 -10
+4 16 -60 0 -10 60 0 -10 60 0 10 -60 0 10
+4 16 -60 0 10 -60 24 10 -60 24 -10 -60 0 -10
+4 16 60 0 10 60 24 10 -60 24 10 -60 0 10
+4 16 60 0 -10 60 24 -10 60 24 10 60 0 10
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3245a.dat
+0 Brick  1 x  2 x  2
+0 Name: 3245a.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Part UPDATE 2004-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS Train
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 48 0 20 0 0 0 -48 0 0 0 10 p/box5.dat
+1 16 0 4 0 1 0 0 0 -11 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 48 0 16 0 0 0 -44 0 0 0 6 p/box5.dat
+4 16 16 48 -6 20 48 -10 -20 48 -10 -16 48 -6
+4 16 16 48 6 20 48 10 20 48 -10 16 48 -6
+4 16 -16 48 6 -20 48 10 20 48 10 16 48 6
+4 16 -16 48 -6 -20 48 -10 -20 48 10 -16 48 6
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/2357.dat
+0 Brick  2 x  2 Corner
+0 Name: 2357.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2003-09-08 [jriley] BFC compliancy
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 10 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 10 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+4 16 10 24 30 6 24 26 -6 24 26 -10 24 30
+4 16 -10 24 30 -6 24 26 -6 24 -6 -10 24 -10
+4 16 -10 24 -10 -6 24 -6 26 24 -6 30 24 -10
+4 16 30 24 -10 26 24 -6 26 24 6 30 24 10
+4 16 30 24 10 26 24 6 6 24 6 10 24 10
+4 16 10 24 10 6 24 6 6 24 26 10 24 30
+4 16 6 4 6 26 4 6 26 4 -6 -6 4 -6
+4 16 6 4 26 6 4 6 -6 4 -6 -6 4 26
+4 16 30 0 10 10 0 10 -10 0 -10 30 0 -10
+4 16 -10 0 30 -10 0 -10 10 0 10 10 0 30
+1 16 20 12 0 0 10 0 12 0 0 0 0 10 p/box2-5.dat
+1 16 0 12 20 0 10 0 12 0 0 0 0 10 p/box2-5.dat
+1 16 10 12 10 0 -20 0 12 0 0 0 0 -20 p/box2-5.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 20 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 BFC INVERTNEXT
+1 16 0 14 16 0 6 0 10 0 0 0 0 10 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 16 14 0 0 10 0 10 0 0 0 0 6 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 10 14 10 0 -16 0 10 0 0 0 0 -16 p/box2-5.dat
+0
+
+0 FILE parts/32014.dat
+0 Technic Angle Connector #6 (90 degree)
+0 Name: 32014.dat
+0 Author: Lutz Uhlmann [El-Lutzo]
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC Compliant (2004-07-10)
+0 !HISTORY 2009-08-03 [Philo] Improved shape, added identification number
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 0 0 -1 0 1 0 0 0 0 1 p/connhole.dat
+1 16 10 0 0 0 -1 0 9 0 0 0 0 9 p/4-4edge.dat
+1 16 -10 0 0 0 -1 0 9 0 0 0 0 9 p/4-4edge.dat
+1 16 -10 0 0 0 20 0 9 0 0 0 0 9 p/4-4cyli.dat
+1 16 0 0 0 1 0 0 0 0 -1 0 1 0 parts/s/32013s01.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 parts/s/32013s01.dat
+2 24 -3.444 -8.499 -8.499 -1.155 -8.724 -8.724
+2 24 -1.155 -8.724 -8.724 1.154 -8.724 -8.724
+2 24 1.154 -8.724 -8.724 3.444 -8.5 -8.5
+2 24 3.443 -8.499 -8.5 3.444 -8.498 -8.5
+2 24 -3.444 -8.5 -8.5 -4.405 -6.18 -6.18
+2 24 -4.405 -6.18 -6.18 -4.705 -5.88 -5.88
+2 24 3.443 -8.5 -8.499 3.444 -8.5 -8.498
+2 24 3.443 -8.499 -8.499 4.404 -6.18 -6.18
+2 24 4.404 -6.18 -6.18 4.704 -5.88 -5.88
+0 // 6
+4 16 -9 0.05 -18.5 -9 -1.45 -17.125 -9 -0.825 -16.25 -9 0.925 -17.75
+4 16 -9 0.925 -17.75 -9 2.05 -19.5 -9 1.175 -20 -9 0.05 -18.5
+4 16 -9 2.675 -21.5 -9 1.425 -21 -9 1.175 -20 -9 2.05 -19.5
+4 16 -9 2.675 -21.5 -9 2.675 -24.75 -9 1.675 -24.75 -9 1.675 -22.5
+4 16 -9 1.425 -21 -9 1.675 -22.5 -9 0.675 -21.625 -9 0.675 -20.5
+4 16 -9 -0.325 -21.625 -9 -0.575 -20.5 -9 0.675 -20.5 -9 0.675 -21.625
+4 16 -9 -0.325 -21.625 -9 -1.075 -22.125 -9 -1.825 -21.25 -9 -0.575 -20.5
+4 16 -9 -1.45 -23 -9 -2.45 -22.75 -9 -1.825 -21.25 -9 -1.075 -22.125
+4 16 -9 -1.45 -23 -9 -1.45 -24.75 -9 -2.45 -25 -9 -2.45 -22.75
+4 16 -9 -0.95 -25.375 -9 -1.575 -26.375 -9 -2.45 -25 -9 -1.45 -24.75
+4 16 -9 -0.2 -25.625 -9 -0.325 -26.75 -9 -1.575 -26.375 -9 -0.95 -25.375
+4 16 -9 -0.2 -25.625 -9 0.8 -25.625 -9 0.8 -26.75 -9 -0.325 -26.75
+4 16 -9 1.3 -25.375 -9 1.925 -26.25 -9 0.8 -26.75 -9 0.8 -25.625
+4 16 -9 1.675 -24.75 -9 2.675 -24.75 -9 1.925 -26.25 -9 1.3 -25.375
+3 16 -9 1.675 -22.5 -9 1.425 -21 -9 2.675 -21.5
+1 16 -8.75 -1.137 -16.687 0 0 -0.25 0.3125 0.81373 0 0.4375 -0.09557 0 p/rect.dat
+1 16 -8.75 0.05 -17 0 0 -0.25 0.875 -0.65079 0 -0.75 -0.31861 0 p/rect2p.dat
+1 16 -8.75 1.488 -18.625 0 0 -0.25 0.5625 -0.84118 0 -0.875 -0.16489 0 p/rect2p.dat
+1 16 -8.75 2.362 -20.5 0 0 -0.25 0.3125 -0.95448 0 -1 -0.08158 0 p/rect2p.dat
+1 16 -8.75 2.675 -23.125 0 0 -0.25 0 -1 0 -1.625 0 0 p/rect2p.dat
+1 16 -8.75 2.3 -25.5 0 0 -0.25 -0.375 -0.89443 0 -0.75 0.10424 0 p/rect2p.dat
+1 16 -8.75 0.237 -26.75 0 0 -0.25 -0.5625 0 0 0 1 0 p/rect2p.dat
+1 16 -8.75 -0.95 -26.562 0 0 -0.25 -0.625 0.28735 0 0.1875 0.47771 0 p/rect2p.dat
+1 16 -8.75 -2.013 -25.687 0 0 -0.25 -0.4375 0.84366 0 0.6875 0.12857 0 p/rect2p.dat
+1 16 -8.75 -2.45 -23.875 0 0 -0.25 0 1 0 1.125 0 0 p/rect2p.dat
+1 16 -8.75 -2.138 -22 0 0 -0.25 0.3125 0.92308 0 0.75 -0.08433 0 p/rect2p.dat
+1 16 -8.75 0.05 -20.5 0 0 -0.25 0.625 0 0 0 -1 0 p/rect2p.dat
+1 16 -8.75 1.05 -20.75 0.25 0 0 0 -0.5547 0.375 0 -0.16665 -0.25 p/rect3.dat
+1 16 -8.75 1.3 -20.5 0 0 -0.25 -0.125 0.97014 0 0.5 0.0322 0 p/rect2p.dat
+1 16 -8.75 0.613 -19.25 0 0 -0.25 -0.5625 0.8 0 0.75 0.17313 0 p/rect2p.dat
+1 16 -8.75 -0.7 -17.812 0 0 -0.25 -0.75 0.67572 0 0.6875 0.26738 0 p/rect2p.dat
+1 16 -8.75 1.175 -22.062 0 0 -0.25 -0.5 0.6585 0 0.4375 0.18649 0 p/rect2p.dat
+1 16 -8.75 0.175 -21.625 0 0 -0.25 -0.5 0 0 0 1 0 p/rect2p.dat
+1 16 -8.75 -1.262 -22.562 0 0 -0.25 -0.1875 -0.91914 0 -0.4375 0.05093 0 p/rect2p.dat
+1 16 -8.75 -1.45 -23.875 0 0 -0.25 0 -1 0 -0.875 0 0 p/rect2p.dat
+1 16 -8.75 -1.2 -25.062 0 0 -0.25 0.25 -0.78087 0 -0.3125 -0.07978 0 p/rect2p.dat
+1 16 -8.75 -0.575 -25.5 0 0 -0.25 0.375 -0.31623 0 -0.125 -0.28424 0 p/rect2p.dat
+1 16 -8.75 0.3 -25.625 0 0 -0.25 0.5 0 0 0 -1 0 p/rect2p.dat
+1 16 -8.75 1.488 -25.062 0 0 -0.25 0.1875 0.85749 0 0.3125 -0.05458 0 p/rect2p.dat
+1 16 -8.75 1.675 -23.625 0 0 -0.25 0 1 0 1.125 0 0 p/rect2p.dat
+1 16 -8.75 1.363 -26.5 0 0 -0.25 -0.5625 -0.40614 0 -0.25 0.32719 0 p/rect2p.dat
+1 16 -8.75 -1.2 -20.875 0 0 -0.25 0.625 0.5145 0 0.375 -0.29059 0 p/rect2p.dat
+1 16 -8.75 -0.7 -21.875 0 0 -0.25 -0.375 -0.5547 0 -0.25 0.16665 0 p/rect2p.dat
+1 16 -8.75 1.05 -25.5 0 0 -0.25 0.25 0.44721 0 0.125 -0.13841 0 p/rect2p.dat
+0 // 6
+4 16 9 -18.5 0.05 9 -17.125 -1.45 9 -16.25 -0.825 9 -17.75 0.925
+4 16 9 -17.75 0.925 9 -19.5 2.05 9 -20 1.175 9 -18.5 0.05
+4 16 9 -21.5 2.675 9 -21 1.425 9 -20 1.175 9 -19.5 2.05
+4 16 9 -21.5 2.675 9 -24.75 2.675 9 -24.75 1.675 9 -22.5 1.675
+4 16 9 -21 1.425 9 -22.5 1.675 9 -21.625 0.675 9 -20.5 0.675
+4 16 9 -21.625 -0.325 9 -20.5 -0.575 9 -20.5 0.675 9 -21.625 0.675
+4 16 9 -21.625 -0.325 9 -22.125 -1.075 9 -21.25 -1.825 9 -20.5 -0.575
+4 16 9 -23 -1.45 9 -22.75 -2.45 9 -21.25 -1.825 9 -22.125 -1.075
+4 16 9 -23 -1.45 9 -24.75 -1.45 9 -25 -2.45 9 -22.75 -2.45
+4 16 9 -25.375 -0.95 9 -26.375 -1.575 9 -25 -2.45 9 -24.75 -1.45
+4 16 9 -25.625 -0.2 9 -26.75 -0.325 9 -26.375 -1.575 9 -25.375 -0.95
+4 16 9 -25.625 -0.2 9 -25.625 0.8 9 -26.75 0.8 9 -26.75 -0.325
+4 16 9 -25.375 1.3 9 -26.25 1.925 9 -26.75 0.8 9 -25.625 0.8
+4 16 9 -24.75 1.675 9 -24.75 2.675 9 -26.25 1.925 9 -25.375 1.3
+3 16 9 -22.5 1.675 9 -21 1.425 9 -21.5 2.675
+1 16 8.75 -16.687 -1.137 0 0 0.25 0.4375 -0.58124 0 0.3125 0.18493 0 p/rect.dat
+1 16 8.75 -17 0.05 0 0 0.25 -0.75 -0.75926 0 0.875 -0.23975 0 p/rect2p.dat
+1 16 8.75 -18.625 1.488 0 0 0.25 -0.875 -0.54076 0 0.5625 -0.375 0 p/rect2p.dat
+1 16 8.75 -20.5 2.362 0 0 0.25 -1 -0.29827 0 0.3125 -0.64236 0 p/rect2p.dat
+1 16 8.75 -23.125 2.675 0 0 0.25 -1.625 0 0 0 -1 0 p/rect2p.dat
+1 16 8.75 -25.5 2.3 0 0 0.25 -0.75 0.44721 0 -0.375 -0.38665 0 p/rect2p.dat
+1 16 8.75 -26.75 0.237 0 0 0.25 0 1 0 -0.5625 0 0 p/rect2p.dat
+1 16 8.75 -26.562 -0.95 0 0 0.25 0.1875 0.95783 0 -0.625 0.04888 0 p/rect2p.dat
+1 16 8.75 -25.687 -2.013 0 0 0.25 0.6875 0.53688 0 -0.4375 0.3049 0 p/rect2p.dat
+1 16 8.75 -23.875 -2.45 0 0 0.25 1.125 0 0 0 1 0 p/rect2p.dat
+1 16 8.75 -22 -2.138 0 0 0.25 0.75 -0.38462 0 0.3125 0.4382 0 p/rect2p.dat
+1 16 8.75 -20.5 0.05 0 0 0.25 0 -1 0 0.625 0 0 p/rect2p.dat
+1 16 8.75 -20.75 1.05 -0.25 0 0 0 -0.83205 -0.25 0 -0.0749 0.375 p/rect3.dat
+1 16 8.75 -20.5 1.3 0 0 0.25 0.5 0.24254 0 -0.125 0.45812 0 p/rect2p.dat
+1 16 8.75 -19.25 0.613 0 0 0.25 0.75 0.6 0 -0.5625 0.29827 0 p/rect2p.dat
+1 16 8.75 -17.812 -0.7 0 0 0.25 0.6875 0.73715 0 -0.75 0.22707 0 p/rect2p.dat
+1 16 8.75 -22.062 1.175 0 0 0.25 0.4375 0.75258 0 -0.5 0.14382 0 p/rect2p.dat
+1 16 8.75 -21.625 0.175 0 0 0.25 0 1 0 -0.5 0 0 p/rect2p.dat
+1 16 8.75 -22.562 -1.262 0 0 0.25 -0.4375 0.39392 0 -0.1875 -0.26754 0 p/rect2p.dat
+1 16 8.75 -23.875 -1.45 0 0 0.25 -0.875 0 0 0 -1 0 p/rect2p.dat
+1 16 8.75 -25.062 -1.2 0 0 0.25 -0.3125 -0.6247 0 0.25 -0.12409 0 p/rect2p.dat
+1 16 8.75 -25.5 -0.575 0 0 0.25 -0.125 -0.94868 0 0.375 -0.03292 0 p/rect2p.dat
+1 16 8.75 -25.625 0.3 0 0 0.25 0 -1 0 0.5 0 0 p/rect2p.dat
+1 16 8.75 -25.062 1.488 0 0 0.25 0.3125 -0.5145 0 0.1875 0.15013 0 p/rect2p.dat
+1 16 8.75 -23.625 1.675 0 0 0.25 1.125 0 0 0 1 0 p/rect2p.dat
+1 16 8.75 -26.5 1.363 0 0 0.25 -0.25 0.91381 0 -0.5625 -0.06824 0 p/rect2p.dat
+1 16 8.75 -20.875 -1.2 0 0 0.25 0.375 -0.85749 0 0.625 0.10868 0 p/rect2p.dat
+1 16 8.75 -21.875 -0.7 0 0 0.25 -0.25 0.83205 0 -0.375 -0.0749 0 p/rect2p.dat
+1 16 8.75 -25.5 1.05 0 0 0.25 0.125 -0.89443 0 0.25 0.03492 0 p/rect2p.dat
+0 FILE parts/s/32013s01.dat
+0 ~Technic Angle Connector Half
+0 Name: s\32013s01.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Subpart UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 29 -1 0 0 0 0 -1 0 -19 0 p/axl2hole.dat
+1 16 0 0 10 -1 0 0 0 0 -1 0 1 0 p/axl2hol2.dat
+1 16 0 0 29 -1 0 0 0 0 -1 0 1 0 p/axl2hol3.dat
+0 BFC INVERTNEXT
+1 16 0 0 29 -6 0 0 0 0 -6 0 1 0 p/4-4cyli.dat
+1 16 0 0 30 -6 0 0 0 0 -6 0 1 0 p/4-4edge.dat
+1 16 0 0 10 -6 0 0 0 0 6 0 -1 0 p/4-4disc.dat
+1 16 -8.5 0 19.157 0 1 0 -3.44415 0 0 0 0 10.8425 p/rect3.dat
+1 16 -8.5 0 0 0 -1 0 3.44415 0 -8.31492 8.31492 0 3.44415 p/1-8edge.dat
+2 24 3.444 -8.5 2.516 3.444 -8.5 30
+2 24 -3.444 -8.5 2.516 -3.444 -8.5 30
+1 16 0 4.447 30 -3.44399 0 17.3142 -12.9464 0 -2.57519 0 -30 0 p/48/1-16edge.dat
+1 16 0 4.447 30 -3.44399 0 17.3142 -12.9464 0 -2.57519 0 -28.614 0 p/48/1-16cyli.dat
+1 16 -9.755 -9.755 30 1.25542 0 6.31142 6.31142 0 -1.25542 0 1 0 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 -9.755 -9.755 30 1.25542 0 6.31142 6.31142 0 -1.25542 0 -21.685 0 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 -9.755 -9.755 8.315 1.25542 0 6.31142 6.31142 0 -1.25542 0 -9.5 0 p/3-16cyls.dat
+2 24 -8.499 -3.444 8.315 -6.18 -4.405 7.673
+2 24 -8.5 -3.444 8.315 -8.499 -3.444 8.315
+2 24 -4.405 -6.18 6.487 -6.18 -4.405 7.673
+2 24 -4.329 -6.364 6.364 -4.405 -6.18 6.487
+2 24 -3.52 -8.315 3.444 -4.329 -6.364 6.364
+2 24 -3.444 -8.5 2.516 -3.52 -8.315 3.444
+1 16 9.755 -9.755 30 -1.25542 0 -6.31142 6.31142 0 -1.25542 0 1 0 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 9.755 -9.755 30 -1.25542 0 -6.31142 6.31142 0 -1.25542 0 -21.685 0 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 9.755 -9.755 8.315 -1.25542 0 -6.31142 6.31142 0 -1.25542 0 -9.5 0 p/3-16cyls.dat
+2 24 8.499 -3.444 8.315 6.18 -4.405 7.673
+2 24 8.5 -3.444 8.315 8.499 -3.444 8.315
+2 24 4.405 -6.18 6.487 6.18 -4.405 7.673
+2 24 4.329 -6.364 6.364 4.405 -6.18 6.487
+2 24 3.52 -8.315 3.444 4.329 -6.364 6.364
+2 24 3.444 -8.5 2.516 3.52 -8.315 3.444
+1 16 8.5 0 19.158 0 -1 0 3.44415 0 0 0 0 10.8425 p/rect3.dat
+1 16 8.5 0 0 0 1 0 -3.44415 0 8.31492 8.31492 0 3.44415 p/1-8edge.dat
+2 24 -3.444 8.5 2.516 -3.444 8.5 30
+2 24 3.444 8.5 2.516 3.444 8.5 30
+1 16 0 -4.447 30 3.44399 0 -17.3142 12.9464 0 2.57519 0 -30 0 p/48/1-16edge.dat
+1 16 0 -4.447 30 3.44399 0 -17.3142 12.9464 0 2.57519 0 -28.614 0 p/48/1-16cyli.dat
+1 16 9.755 9.755 30 -1.25542 0 -6.31142 -6.31142 0 1.25542 0 1 0 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 9.755 9.755 30 -1.25542 0 -6.31142 -6.31142 0 1.25542 0 -21.685 0 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 9.755 9.755 8.315 -1.25542 0 -6.31142 -6.31142 0 1.25542 0 -9.5 0 p/3-16cyls.dat
+2 24 8.499 3.444 8.315 6.18 4.405 7.673
+2 24 8.5 3.444 8.315 8.499 3.444 8.315
+2 24 4.405 6.18 6.487 6.18 4.405 7.673
+2 24 4.329 6.364 6.364 4.405 6.18 6.487
+2 24 3.52 8.315 3.444 4.329 6.364 6.364
+2 24 3.444 8.5 2.516 3.52 8.315 3.444
+1 16 -9.755 9.755 30 1.25542 0 6.31142 -6.31142 0 1.25542 0 1 0 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 -9.755 9.755 30 1.25542 0 6.31142 -6.31142 0 1.25542 0 -21.685 0 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 -9.755 9.755 8.315 1.25542 0 6.31142 -6.31142 0 1.25542 0 -9.5 0 p/3-16cyls.dat
+2 24 -8.499 3.444 8.315 -6.18 4.405 7.673
+2 24 -8.5 3.444 8.315 -8.499 3.444 8.315
+2 24 -4.405 6.18 6.487 -6.18 4.405 7.673
+2 24 -4.329 6.364 6.364 -4.405 6.18 6.487
+2 24 -3.52 8.315 3.444 -4.329 6.364 6.364
+2 24 -3.444 8.5 2.516 -3.52 8.315 3.444
+2 24 3.444 8.499 2.517 1.155 8.724 1.387
+2 24 1.155 8.724 1.387 -1.154 8.724 1.386
+2 24 -1.154 8.724 1.386 -3.444 8.5 2.516
+4 16 -8.5 3.444 30 -8.5 -3.444 30 -6 0 30 -5.543 2.296 30
+4 16 -6.18 4.404 30 -8.5 3.444 30 -5.543 2.296 30 -4.243 4.243 30
+4 16 -4.404 6.18 30 -6.18 4.404 30 -4.243 4.243 30 -2.296 5.543 30
+4 16 -3.444 8.5 30 -4.404 6.18 30 -2.296 5.543 30 0 6 30
+4 16 -1.154 8.724 30 -3.444 8.5 30 0 6 30 1.155 8.724 30
+4 16 1.155 8.724 30 0 6 30 2.296 5.543 30 3.443 8.499 30
+4 16 3.443 8.499 30 2.296 5.543 30 4.243 4.243 30 4.404 6.18 30
+4 16 4.404 6.18 30 4.243 4.243 30 5.543 2.296 30 6.18 4.404 30
+4 16 6.18 4.404 30 5.543 2.296 30 6 0 30 8.5 3.444 30
+4 16 8.5 -3.444 30 8.5 3.444 30 6 0 30 5.543 -2.296 30
+4 16 6.18 -4.404 30 8.5 -3.444 30 5.543 -2.296 30 4.243 -4.243 30
+4 16 4.404 -6.18 30 6.18 -4.404 30 4.243 -4.243 30 2.296 -5.543 30
+4 16 3.444 -8.5 30 4.404 -6.18 30 2.296 -5.543 30 0 -6 30
+4 16 1.154 -8.724 30 3.444 -8.5 30 0 -6 30 -1.155 -8.724 30
+4 16 -1.155 -8.724 30 0 -6 30 -2.296 -5.543 30 -3.444 -8.5 30
+4 16 -3.444 -8.5 30 -2.296 -5.543 30 -4.243 -4.243 30 -4.405 -6.18 30
+4 16 -4.405 -6.18 30 -4.243 -4.243 30 -5.543 -2.296 30 -6.18 -4.405 30
+4 16 -6.18 -4.405 30 -5.543 -2.296 30 -6 0 30 -8.5 -3.444 30
+
+0 FILE p/3-16cyls.dat
+0 Cylinder Sloped 0.1875
+0 Name: 3-16cyls.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+3 16 1 0 0 .9239 .0761 .3827 .9239 0 .3827
+4 16 .9239 0 .3827 .9239 .0761 .3827 .7071 .2929 .7071 .7071 0 .7071
+4 16 .7071 0 .7071 .7071 .2929 .7071 .3827 .6173 .9239 .3827 0 .9239
+5 24 .9239 0 .3827 .9239 .0761 .3827 .7071 0 .7071 1 0 0
+5 24 .7071 0 .7071 .7071 .2929 .7071 .3827 0 .9239 .9239 0 .3827
+5 24 .3827 0 .9239 .3827 .6173 .9239 0 0 1.0824 .7071 0 .7071
+0
+
+
+0 FILE p/48/1-16edge.dat
+0 Hi-Res Circle 0.0625
+0 Name: 48\1-16edge.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 1 0 0 0.9914 0 0.1305
+2 24 0.9914 0 0.1305 0.9659 0 0.2588
+2 24 0.9659 0 0.2588 0.9239 0 0.3827
+
+0 end of file 
+
+
+
+0 FILE p/axl2hol3.dat
+0 Technic Axle Hole Reduced Tooth Outer Edges
+0 Name: axl2hol3.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 5.54301 0 2.29598 5.602 0 2
+2 24 2.29598 0 5.54301 2 0 5.602
+2 24 -5.54301 0 -2.29598 -5.602 0 -2
+2 24 -2.29598 0 -5.54301 -2 0 -5.602
+2 24 4.24264 0 4.24264 2.29598 0 5.54301
+2 24 -4.243 0 4.243 -3.743 0 4.577
+2 24 -4.577 0 3.743 -4.243 0 4.243
+2 24 -5.54301 0 -2.29598 -4.24264 0 -4.24264
+2 24 -4.24264 0 -4.24264 -2.29598 0 -5.54301
+2 24 4.243 0 -4.243 3.743 0 -4.577
+2 24 4.577 0 -3.743 4.243 0 -4.243
+2 24 5.54301 0 2.29598 4.24264 0 4.24264
+0
+
+0 FILE p/axl2hol2.dat
+0 Technic Axle Hole Reduced Side Edges
+0 Name: axl2hol2.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 6 0 0 5.602 0 2
+2 24 5.543 0 -2.296 6 0 0
+2 24 4.577 0 -3.743 5.543 0 -2.296
+2 24 2.296 0 -5.543 3.743 0 -4.577
+2 24 0 0 -6 2.296 0 -5.543
+2 24 0 0 -6 -2 0 -5.602
+2 24 -6 0 0 -5.602 0 -2
+2 24 -5.543 0 2.296 -6 0 0
+2 24 -4.577 0 3.743 -5.543 0 2.296
+2 24 -2.296 0 5.543 -3.743 0 4.577
+2 24 0 0 6 -2.296 0 5.543
+2 24 0 0 6 2 0 5.602
+0
+
+0 FILE parts/30365.dat
+0 Hinge Brick  1 x  2 Locking with Dual Finger On End
+0 Name: 30365.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Part UPDATE 2004-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2003-04-30 [technog] BFC'd and switch to primitives
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2003-08-29 [cwdee] rename swh3 subpart to 30364s01
+0 !HISTORY 2003-12-30 [technog] Modified for corrected clh4
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 26 10 0 0 0 1 0 1 0 -1 0 0 p/clh4.dat
+1 16 20 10 -6.25 0 6 0 0 0 6 2.25 0 0 p/box4o4a.dat
+1 16 26 10 0 0 0 1 0 1 0 1 0 0 p/clh4.dat
+1 16 20 10 6.25 0 6 0 0 0 6 2.25 0 0 p/box4o4a.dat
+1 16 30 9 0 1 0 0 0 1 0 0 0 1 parts/s/30364s01.dat
+0
+
+0 FILE parts/s/30364s01.dat
+0 ~Hinge Brick  1 x  2 Locking 30364/30365 Common Region
+0 Name: s\30364s01.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Subpart UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-08-29 [technog] BFC'd and primitive optimized
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2004-07-17 [cwdee] Corrected chamfers
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-08-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 -30 -5 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 -30 15 0 0 0 -16 0 -20 0 6 0 0 p/box4-4a.dat
+4 16 -14 15 -10 -14 15 -6 -46 15 -6 -50 15 -10
+4 16 -50 15 -10 -46 15 -6 -46 15 6 -50 15 10
+4 16 -50 15 10 -46 15 6 -14 15 6 -14 15 10
+1 16 -13.5 14.5 8 0 0 -0.5 0 -1 0.5 2 0 0 p/rect3.dat
+1 16 -11.5 12.5 0 0 0 1.5 0 -1 -1.5 10 0 0 p/rect3.dat
+1 16 -13.5 14.5 -8 0 0 -0.5 0 -1 0.5 2 0 0 p/rect3.dat
+1 16 -13.5 14 0 0 0 0.5 0 -1 0 6 0 0 p/rect.dat
+3 16 -13 14 6 -14 15 6 -14 14 6
+3 16 -14 15 -6 -13 14 -6 -14 14 -6
+1 16 -14 4.5 0  0 10 0 0 0 -9.5 6 0 0 p/rect3.dat
+
+1 16 -32 15 0 0 0 -18 0 -24 0 10 0 0 p/box4-4a.dat
+1 16 -12 11 0 0 0 2 0 -20 0 -10 0 0 p/box4-7a.dat
+3 16 -14 11 10 -14 15 10 -10 11 10
+3 16 -14 15 -10 -14 11 -10 -10 11 -10
+1 16 -20 -9 0 -1 0 0 0 1 0 0 0 -1 p/stud.dat
+1 16 -40 -9 0 -1 0 0 0 1 0 0 0 -1 p/stud.dat
+0
+
+0 FILE p/clh4.dat
+0 Click Lock Hinge Half Dual Finger
+0 Name: clh4.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 !HELP Requires 2 halves rotated 180 degrees apart on Z-axis.
+0 !HELP Placement on side of bricks; rotate pair accordingly, place 10 Ldu
+0 !HELP below top surface and 6 Ldu off side surface, fill as needed -
+0 !HELP box4o4a.dat's recommended.
+0 !HELP Placement off side of plates and windscreens; rotate pair accordingly,
+0 !HELP place center origin 2 Ldu below top surface and 6 Ldu off side surface,
+0 !HELP fill as needed.
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2003-12-29 [technog] Corrected width
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 8.5 0 0.9 0 -4.5 0 0 0 6 0.9 0 0 p/box3u8p.dat
+4 16 8.5 6 0 8.5 6 1.8 8.5 -6 1.8 8.5 -6 0
+4 16 8.5 -5.25 4 8.5 -4.81 1.8 8.5 4.81 1.8 8.5 5.25 4
+4 16 4 -4.81 1.8 4 -5.25 4 4 5.25 4 4 4.81 1.8
+1 16 8.5 0 4 0 -1 0 5.25 0 0 0 0 5.25 p/2-4disc.dat
+1 16 4 0 4 0 1 0 5.25 0 0 0 0 5.25 p/2-4disc.dat
+1 16 4 0 4 0 -1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 4 0 4 0 -1 0 1 0 0 0 0 1 p/4-4con3.dat
+1 16 3 0 4 0 -1 0 3 0 0 0 0 3 p/4-4edge.dat
+1 16 3 0 4 0 1 0 3 0 0 0 0 3 p/4-4disc.dat
+1 16 6.25 5.73 1.903 -2.25 0 0 0 0 0.27 0 -1 -0.103 p/rect3.dat
+4 16 4 4.81 1.8 4 4.89 2.18 4 5.46 2.006 4 6 1.8
+4 16 8.5 4.89 2.18 8.5 4.81 1.8 8.5 6 1.8 8.5 5.46 2.006
+0 BFC INVERTNEXT
+1 16 4 5.641 2.88 0 4.5 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4cyli.dat
+1 16 8.5 5.64 2.88 0 -1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4ndis.dat
+1 16 8.5 5.64 2.88 0 -1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 4 5.641 2.88 0 1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4ndis.dat
+1 16 4 5.641 2.88 0 -1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 4 5.81 4 0 4.5 0 0 0 0.19 -0.25 0 0 p/2-4cyli.dat
+1 16 8.5 5.81 4 0 -1 0 0 0 0.19 -0.25 0 0 p/2-4disc.dat
+1 16 8.5 5.81 4 0 -1 0 0 0 0.19 -0.25 0 0 p/2-4edge.dat
+1 16 4 5.81 4 0 1 0 0 0 0.19 -0.25 0 0 p/2-4disc.dat
+1 16 4 5.81 4 0 -1 0 0 0 0.19 -0.25 0 0 p/2-4edge.dat
+4 16 4 5.22 3.867 4 5.22 4.133 4 5.82 4.25 4 5.82 3.75
+4 16 8.5 5.22 4.133 8.5 5.22 3.867 8.5 5.82 3.75 8.5 5.82 4.25
+0 BFC INVERTNEXT
+1 16 4 5.641 5.12 0 4.5 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4cyli.dat
+1 16 8.5 5.64 5.119 0 -1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4ndis.dat
+1 16 8.5 5.64 5.119 0 -1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 4 5.641 5.12 0 1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4ndis.dat
+1 16 4 5.641 5.12 0 -1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 4 5.368 6.224 0 4.5 0 0.097 0 0.175 -0.231 0 0.073 p/2-4cyli.dat
+1 16 8.5 5.368 6.224 0 -1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 8.5 5.368 6.224 0 -1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4edge.dat
+1 16 4 5.368 6.224 0 1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 4 5.368 6.224 0 -1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4edge.dat
+4 16 4 4.874 5.875 4 4.772 6.12 4 5.281 6.458 4 5.463 5.996
+4 16 8.5 4.772 6.12 8.5 4.874 5.875 8.5 5.463 5.996 8.5 5.281 6.458
+0 BFC INVERTNEXT
+1 16 4 4.782 7.193 0 4.5 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4cyli.dat
+1 16 8.5 4.781 7.193 0 -1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4ndis.dat
+1 16 8.5 4.781 7.193 0 -1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 4 4.782 7.193 0 1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4ndis.dat
+1 16 4 4.782 7.193 0 -1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 4 4.109 8.108 0 4.5 0 0.177 0 0.134 -0.177 0 0.134 p/2-4cyli.dat
+1 16 8.5 4.109 8.108 0 -1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 8.5 4.109 8.108 0 -1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4edge.dat
+1 16 4 4.109 8.108 0 1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 4 4.109 8.108 0 -1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4edge.dat
+4 16 4 3.785 7.597 4 3.597 7.785 4 3.938 8.284 4 4.284 7.938
+4 16 8.5 3.597 7.785 8.5 3.785 7.597 8.5 4.284 7.938 8.5 3.938 8.284
+0 BFC INVERTNEXT
+1 16 4 3.195 8.78 0 4.5 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4cyli.dat
+1 16 8.5 3.196 8.779 0 -1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4ndis.dat
+1 16 8.5 3.196 8.779 0 -1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4edge.dat
+1 16 4 3.195 8.78 0 1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4ndis.dat
+1 16 4 3.195 8.78 0 -1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4edge.dat
+1 16 4 2.224 9.368 0 4.5 0 0.231 0 0.073 -0.097 0 0.175 p/2-4cyli.dat
+1 16 8.5 2.225 9.368 0 -1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 8.5 2.225 9.368 0 -1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4edge.dat
+1 16 4 2.224 9.368 0 1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 4 2.224 9.368 0 -1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4edge.dat
+4 16 4 2.12 8.772 4 1.875 8.874 4 1.996 9.463 4 2.458 9.281
+4 16 8.5 1.875 8.874 8.5 2.12 8.772 8.5 2.458 9.281 8.5 1.996 9.463
+0 BFC INVERTNEXT
+1 16 4 1.12 9.64 0 4.5 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4cyli.dat
+1 16 8.5 1.12 9.64 0 -1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 8.5 1.12 9.64 0 -1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4edge.dat
+1 16 4 1.12 9.64 0 1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 4 1.12 9.64 0 -1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4edge.dat
+1 16 4 0 9.81 0 4.5 0 0.25 0 0 0 0 0.19 p/2-4cyli.dat
+1 16 8.5 0 9.81 0 -1 0 0.25 0 0 0 0 0.19 p/2-4disc.dat
+1 16 8.5 0 9.81 0 -1 0 0.25 0 0 0 0 0.19 p/2-4edge.dat
+1 16 4 0 9.81 0 1 0 0.25 0 0 0 0 0.19 p/2-4disc.dat
+1 16 4 0 9.81 0 -1 0 0.25 0 0 0 0 0.19 p/2-4edge.dat
+4 16 4 0.133 9.22 4 -0.133 9.22 4 -0.25 9.82 4 0.25 9.82
+4 16 8.5 -0.133 9.22 8.5 0.133 9.22 8.5 0.25 9.82 8.5 -0.25 9.82
+0 BFC INVERTNEXT
+1 16 4 -1.12 9.64 0 4.5 0 0.875 0 0.117 0.175 0 -0.59 p/2-4cyli.dat
+1 16 8.5 -1.12 9.64 0 -1 0 0.875 0 0.117 0.175 0 -0.59 p/2-4ndis.dat
+1 16 8.5 -1.12 9.64 0 -1 0 0.875 0 0.117 0.175 0 -0.59 p/2-4edge.dat
+1 16 4 -1.12 9.64 0 1 0 0.875 0 0.117 0.175 0 -0.59 p/2-4ndis.dat
+1 16 4 -1.12 9.64 0 -1 0 0.875 0 0.117 0.175 0 -0.59 p/2-4edge.dat
+1 16 4 -2.224 9.368 0 4.5 0 0.231 0 -0.073 0.097 0 0.175 p/2-4cyli.dat
+1 16 8.5 -2.225 9.368 0 -1 0 0.231 0 -0.073 0.097 0 0.175 p/2-4disc.dat
+1 16 8.5 -2.225 9.368 0 -1 0 0.231 0 -0.073 0.097 0 0.175 p/2-4edge.dat
+1 16 4 -2.224 9.368 0 1 0 0.231 0 -0.073 0.097 0 0.175 p/2-4disc.dat
+1 16 4 -2.224 9.368 0 -1 0 0.231 0 -0.073 0.097 0 0.175 p/2-4edge.dat
+4 16 4 -1.875 8.874 4 -2.12 8.772 4 -2.458 9.281 4 -1.996 9.463
+4 16 8.5 -2.12 8.772 8.5 -1.875 8.874 8.5 -1.996 9.463 8.5 -2.458 9.281
+0 BFC INVERTNEXT
+1 16 4 -3.193 8.782 0 4.5 0 0.741 0 0.334 0.496 0 -0.5 p/2-4cyli.dat
+1 16 8.5 -3.193 8.782 0 -1 0 0.741 0 0.334 0.496 0 -0.5 p/2-4ndis.dat
+1 16 8.5 -3.193 8.782 0 -1 0 0.741 0 0.334 0.496 0 -0.5 p/2-4edge.dat
+1 16 4 -3.193 8.782 0 1 0 0.741 0 0.334 0.496 0 -0.5 p/2-4ndis.dat
+1 16 4 -3.193 8.782 0 -1 0 0.741 0 0.334 0.496 0 -0.5 p/2-4edge.dat
+1 16 4 -4.108 8.109 0 4.5 0 0.177 0 -0.134 0.177 0 0.134 p/2-4cyli.dat
+1 16 8.5 -4.108 8.109 0 -1 0 0.177 0 -0.134 0.177 0 0.134 p/2-4disc.dat
+1 16 8.5 -4.108 8.109 0 -1 0 0.177 0 -0.134 0.177 0 0.134 p/2-4edge.dat
+1 16 4 -4.108 8.109 0 1 0 0.177 0 -0.134 0.177 0 0.134 p/2-4disc.dat
+1 16 4 -4.108 8.109 0 -1 0 0.177 0 -0.134 0.177 0 0.134 p/2-4edge.dat
+4 16 4 -3.597 7.785 4 -3.785 7.597 4 -4.284 7.938 4 -3.938 8.284
+4 16 8.5 -3.785 7.597 8.5 -3.597 7.785 8.5 -3.938 8.284 8.5 -4.284 7.938
+0 BFC INVERTNEXT
+1 16 4 -4.78 7.196 0 4.5 0 0.495 0 0.5 0.742 0 -0.334 p/2-4cyli.dat
+1 16 8.5 -4.78 7.196 0 -1 0 0.495 0 0.5 0.742 0 -0.334 p/2-4ndis.dat
+1 16 8.5 -4.78 7.196 0 -1 0 0.495 0 0.5 0.742 0 -0.334 p/2-4edge.dat
+1 16 4 -4.78 7.196 0 1 0 0.495 0 0.5 0.742 0 -0.334 p/2-4ndis.dat
+1 16 4 -4.78 7.196 0 -1 0 0.495 0 0.5 0.742 0 -0.334 p/2-4edge.dat
+1 16 4 -5.368 6.224 0 4.5 0 0.097 0 -0.175 0.231 0 0.073 p/2-4cyli.dat
+1 16 8.5 -5.368 6.224 0 -1 0 0.097 0 -0.175 0.231 0 0.073 p/2-4disc.dat
+1 16 8.5 -5.368 6.224 0 -1 0 0.097 0 -0.175 0.231 0 0.073 p/2-4edge.dat
+1 16 4 -5.368 6.224 0 1 0 0.097 0 -0.175 0.231 0 0.073 p/2-4disc.dat
+1 16 4 -5.368 6.224 0 -1 0 0.097 0 -0.175 0.231 0 0.073 p/2-4edge.dat
+4 16 4 -4.772 6.12 4 -4.874 5.875 4 -5.463 5.996 4 -5.281 6.458
+4 16 8.5 -4.874 5.875 8.5 -4.772 6.12 8.5 -5.281 6.458 8.5 -5.463 5.996
+0 BFC INVERTNEXT
+1 16 4 -5.641 5.12 0 4.5 0 0.175 0 0.59 0.875 0 -0.117 p/2-4cyli.dat
+1 16 8.5 -5.64 5.119 0 -1 0 0.175 0 0.59 0.875 0 -0.117 p/2-4ndis.dat
+1 16 8.5 -5.64 5.119 0 -1 0 0.175 0 0.59 0.875 0 -0.117 p/2-4edge.dat
+1 16 4 -5.641 5.12 0 1 0 0.175 0 0.59 0.875 0 -0.117 p/2-4ndis.dat
+1 16 4 -5.641 5.12 0 -1 0 0.175 0 0.59 0.875 0 -0.117 p/2-4edge.dat
+1 16 4 -5.81 4 0 4.5 0 0 0 -0.19 0.25 0 0 p/2-4cyli.dat
+1 16 8.5 -5.81 4 0 -1 0 0 0 -0.19 0.25 0 0 p/2-4disc.dat
+1 16 8.5 -5.81 4 0 -1 0 0 0 -0.19 0.25 0 0 p/2-4edge.dat
+1 16 4 -5.81 4 0 1 0 0 0 -0.19 0.25 0 0 p/2-4disc.dat
+1 16 4 -5.81 4 0 -1 0 0 0 -0.19 0.25 0 0 p/2-4edge.dat
+4 16 4 -5.22 4.133 4 -5.22 3.867 4 -5.82 3.75 4 -5.82 4.25
+4 16 8.5 -5.22 3.867 8.5 -5.22 4.133 8.5 -5.82 4.25 8.5 -5.82 3.75
+0 BFC INVERTNEXT
+1 16 4 -5.641 2.88 0 4.5 0 -0.175 0 0.59 0.875 0 0.117 p/2-4cyli.dat
+1 16 8.5 -5.64 2.88 0 -1 0 -0.175 0 0.59 0.875 0 0.117 p/2-4ndis.dat
+1 16 8.5 -5.64 2.88 0 -1 0 -0.175 0 0.59 0.875 0 0.117 p/2-4edge.dat
+1 16 4 -5.641 2.88 0 1 0 -0.175 0 0.59 0.875 0 0.117 p/2-4ndis.dat
+1 16 4 -5.641 2.88 0 -1 0 -0.175 0 0.59 0.875 0 0.117 p/2-4edge.dat
+4 16 8.5 -4.81 1.8 8.5 -4.89 2.18 8.5 -5.46 2.006 8.5 -6 1.8
+4 16 4 -4.89 2.18 4 -4.81 1.8 4 -6 1.8 4 -5.46 2.006
+1 16 6.25 -5.73 1.903 2.25 0 0 0 0 -0.27 0 -1 -0.103 p/rect3.dat
+
+0 FILE parts/50746.dat
+0 =Slope Brick 31  1 x  1 x  0.667 
+0 Name: 50746.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Part Alias UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2013-08-04 [cwdee] Description change
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+0 // Alias of 54200
+0 // Part 50746 is the transparent counterpart of 54200
+
+1 16 0 0 0  1 0 0  0 1 0  0 0 1 parts/54200.dat
+
+0 FILE parts/54200.dat
+0 Slope Brick 31  1 x  1 x  0.667 
+0 Name: 54200.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2006-01-14 [cwdee] Rotated to match other slope bricks
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2013-08-04 [cwdee] Description change
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+0 !HISTORY 2014-11-21 [roland] Auto-corrected with libfix version of LDCad 1.4
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+2 24 10 -16 10 10 -1 10
+2 24 -10 -16 10 -10 -1 10
+2 24 -10 -4 -10 -10 -1 -10
+2 24 10 -4 -10 10 -1 -10
+2 24 10 -1 10 -10 -1 10
+2 24 10 -1 -10 -10 -1 -10
+2 24 10 -16 10 -10 -16 10
+2 24 10 -4 -10 -10 -4 -10
+2 24 10 -1 10 10 -1 -10
+2 24 -10 -1 10 -10 -1 -10
+2 24 -10 -16 10 -10 -4 -10
+2 24 10 -16 10 10 -4 -10
+4 16 -10 -16 10 -10 -1 10 -10 -1 -10 -10 -4 -10
+4 16 10 -16 10 10 -4 -10 10 -1 -10 10 -1 10
+4 16 10 -16 10 10 -1 10 -10 -1 10 -10 -16 10
+4 16 6 -10.6 6 -6 -10.6 6 -6 0 6 6 0 6
+4 16 6 -3.4 -6 6 0 -6 -6 0 -6 -6 -3.4 -6
+4 16 10 -4 -10 -10 -4 -10 -10 -1 -10 10 -1 -10
+4 16 -10 -16 10 -10 -4 -10 10 -4 -10 10 -16 10
+2 24 9 0 9 -9 0 9
+2 24 9 0 -9 -9 0 -9
+1 16 0 -1 0 0 0 9 0 1 0 -9 0 0 p/box4.dat
+4 16 10 -1 -10 9 -1 -9 9 -1 9 10 -1 10
+4 16 -10 -1 10 -9 -1 9 -9 -1 -9 -10 -1 -10
+4 16 10 -1 10 9 -1 9 -9 -1 9 -10 -1 10
+4 16 -10 -1 -10 -9 -1 -9 9 -1 -9 10 -1 -10
+4 16 6 0 -6 6 0 6 9 0 9 9 0 -9
+4 16 -6 0 6 -6 0 -6 -9 0 -9 -9 0 9
+4 16 -6 0 -6 6 0 -6 9 0 -9 -9 0 -9
+4 16 6 0 6 -6 0 6 -9 0 9 9 0 9
+4 16 6 -10.6 6 6 0 6 6 0 -6 6 -3.4 -6
+4 16 -6 -10.6 6 -6 -3.4 -6 -6 0 -6 -6 0 6
+2 24 6 0 6 -6 0 6
+2 24 6 0 -6 -6 0 -6
+2 24 6 0 -6 6 0 6
+2 24 -6 0 -6 -6 0 6
+2 24 6 -10.6 6 -6 -10.6 6
+2 24 6 -3.4 -6 -6 -3.4 -6
+2 24 6 -3.4 -6 6 -10.6 6
+2 24 -6 -3.4 -6 -6 -10.6 6
+2 24 -6 -10.6 6 -6 0 6
+2 24 6 -10.6 6 6 0 6
+2 24 6 -3.4 -6 6 0 -6
+2 24 -6 -3.4 -6 -6 0 -6
+4 16 -6 -10.6 6 6 -10.6 6 6 -4 -5 -6 -4 -5
+3 16 -3.1092 -4 -5 -2.2961 -4 -5.5434 -2.2961 -3.674 -5.5434
+2 24 -2.2961 -4 -5.5434 -2.2961 -3.674 -5.5434
+4 16 -2.2961 -4 -5.5434 0 -4 -6 0 -3.4 -6 -2.2961 -3.674 -5.5434
+5 24 0 -4 -6 0 -3.4 -6 -2.2961 -4 -5.5434 2.2961 -4 -5.5434
+4 16 0 -4 -6 2.2961 -4 -5.5434 2.2961 -3.674 -5.5434 0 -3.4 -6
+2 24 2.2961 -4 -5.5434 2.2961 -3.674 -5.5434
+3 16 3.1092 -4 -5 2.2961 -3.674 -5.5434 2.2961 -4 -5.5434
+2 24 -3.1092 -4 -5 -2.2961 -4 -5.5434
+2 24 -2.2961 -4 -5.5434 0 -4 -6
+2 24 2.2961 -4 -5.5434 0 -4 -6
+2 24 3.1092 -4 -5 2.2961 -4 -5.5434
+2 24 -3.1092 -4 -5 -2.2961 -3.674 -5.5434
+2 24 -2.2961 -3.674 -5.5434 0 -3.4 -6
+2 24 2.2961 -3.674 -5.5434 0 -3.4 -6
+2 24 3.1092 -4 -5 2.2961 -3.674 -5.5434
+2 24 -3.1092 -4 -5 3.1092 -4 -5
+4 16 -3.1092 -4 -5 0 -4 -5 0 -4 -6 -2.2961 -4 -5.5434
+4 16 3.1092 -4 -5 2.2961 -4 -5.5434 0 -4 -6 0 -4 -5
+4 16 -3.1092 -4 -5 -2.2961 -3.674 -5.5434 -6 -3.4 -6 -6 -4 -5
+3 16 -6 -3.4 -6 -2.2961 -3.674 -5.5434 0 -3.4 -6
+4 16 3.1092 -4 -5 6 -4 -5 6 -3.4 -6 2.2961 -3.674 -5.5434
+3 16 6 -3.4 -6 0 -3.4 -6 2.2961 -3.674 -5.5434
+0
+
+0 FILE parts/3010.dat
+0 Brick  1 x  4
+0 Name: 3010.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2002-12-12 [hafhead] New subparted version
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-06 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3010s01.dat
+4 16 -40 0 -10 40 0 -10 40 24 -10 -40 24 -10
+0
+
+0 FILE parts/s/3010s01.dat
+0 ~Brick  1 x  4 without Front Face
+0 Name: s\3010s01.dat
+0 Author: Tony Hafner [hafhead]
+0 !LDRAW_ORG Subpart UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-08-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 24 0 40 0 0 0 -24 0 0 0 10 p/box4t.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 36 0 0 0 -20 0 0 0 6 p/box5.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+4 16 -40 24 -10 40 24 -10 36 24 -6 -36 24 -6
+4 16 -40 24 10 -36 24 6 36 24 6 40 24 10
+4 16 -40 24 -10 -36 24 -6 -36 24 6 -40 24 10
+4 16 40 24 -10 40 24 10 36 24 6 36 24 -6
+0
+
+0 FILE parts/3941.dat
+0 Brick  2 x  2 Round
+0 Name: 3941.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-21 [OrionP] Changed stud to stud10, BFC'd
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 20 24 0 18.48 24 7.65
+2 24 18.48 24 7.65 16 24 11.36
+2 24 16 24 11.36 16 20 11.36
+2 24 16 20 11.36 14.14 20 14.14
+2 24 14.14 20 14.14 11.36 20 16
+2 24 11.36 20 16 11.36 24 16
+2 24 11.36 24 16 7.65 24 18.48
+2 24 7.65 24 18.48 0 24 20
+2 24 -20 24 0 -18.48 24 7.65
+2 24 -18.48 24 7.65 -16 24 11.36
+2 24 -16 24 11.36 -16 20 11.36
+2 24 -16 20 11.36 -14.14 20 14.14
+2 24 -14.14 20 14.14 -11.36 20 16
+2 24 -11.36 20 16 -11.36 24 16
+2 24 -11.36 24 16 -7.65 24 18.48
+2 24 -7.65 24 18.48 0 24 20
+2 24 20 24 0 18.48 24 -7.65
+2 24 18.48 24 -7.65 16 24 -11.36
+2 24 16 24 -11.36 16 20 -11.36
+2 24 16 20 -11.36 14.14 20 -14.14
+2 24 14.14 20 -14.14 11.36 20 -16
+2 24 11.36 20 -16 11.36 24 -16
+2 24 11.36 24 -16 7.65 24 -18.48
+2 24 7.65 24 -18.48 0 24 -20
+2 24 -20 24 0 -18.48 24 -7.65
+2 24 -18.48 24 -7.65 -16 24 -11.36
+2 24 -16 24 -11.36 -16 20 -11.36
+2 24 -16 20 -11.36 -14.14 20 -14.14
+2 24 -14.14 20 -14.14 -11.36 20 -16
+2 24 -11.36 20 -16 -11.36 24 -16
+2 24 -11.36 24 -16 -7.65 24 -18.48
+2 24 -7.65 24 -18.48 0 24 -20
+2 24 16 24 0 16 24 11.36
+2 24 11.35 24 16 0 24 16
+2 24 16 20 0 16 20 11.36
+2 24 11.35 20 16 0 20 16
+2 24 -16 24 0 -16 24 11.36
+2 24 -11.35 24 16 0 24 16
+2 24 -16 20 0 -16 20 11.36
+2 24 -11.35 20 16 0 20 16
+2 24 16 24 0 16 24 -11.36
+2 24 11.35 24 -16 0 24 -16
+2 24 16 20 0 16 20 -11.36
+2 24 11.35 20 -16 0 20 -16
+2 24 -16 24 0 -16 24 -11.36
+2 24 -11.35 24 -16 0 24 -16
+2 24 -16 20 0 -16 20 -11.36
+2 24 -11.35 20 -16 0 20 -16
+1 16 0 20 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 8 0 0 0 16 0 0 0 8 p/4-4cyli.dat
+1 16 0 20 0 1 0 0 0 1 0 0 0 1 p/axlehol3.dat
+1 16 0 0 0 1 0 0 0 20 0 0 0 1 p/axlehole.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/axlehol2.dat
+1 16 0 20 0 16 0 0 0 1 0 0 0 16 p/4-4edge.dat
+1 16 0 4 0 16 0 0 0 1 0 0 0 16 p/4-4edge.dat
+1 16 0 0 0 20 0 0 0 1 0 0 0 20 p/4-4edge.dat
+4 16 20 24 0 16 24 0 16 24 11.36 18.48 24 7.65
+4 16 0 24 20 7.65 24 18.48 11.36 24 16 0 24 16
+4 16 -20 24 0 -18.48 24 7.65 -16 24 11.36 -16 24 0
+4 16 0 24 20 0 24 16 -11.36 24 16 -7.65 24 18.48
+4 16 20 24 0 18.48 24 -7.65 16 24 -11.36 16 24 0
+4 16 0 24 -20 0 24 -16 11.36 24 -16 7.65 24 -18.48
+4 16 -20 24 0 -16 24 0 -16 24 -11.36 -18.48 24 -7.65
+4 16 0 24 -20 -7.65 24 -18.48 -11.36 24 -16 0 24 -16
+4 16 20 24 0 18.48 24 7.65 18.48 20 7.65 20 20 0
+4 16 0 24 20 0 20 20 7.65 20 18.48 7.65 24 18.48
+4 16 18.48 24 7.65 16 24 11.36 16 20 11.36 18.48 20 7.65
+4 16 7.65 24 18.48 7.65 20 18.48 11.36 20 16 11.36 24 16
+4 16 16 24 11.36 16 24 0 16 20 0 16 20 11.36
+4 16 11.36 24 16 11.36 20 16 0 20 16 0 24 16
+4 16 -20 24 0 -20 20 0 -18.48 20 7.65 -18.48 24 7.65
+4 16 0 24 20 -7.65 24 18.48 -7.65 20 18.48 0 20 20
+4 16 -18.48 24 7.65 -18.48 20 7.65 -16 20 11.36 -16 24 11.36
+4 16 -7.65 24 18.48 -11.36 24 16 -11.36 20 16 -7.65 20 18.48
+4 16 -16 24 11.36 -16 20 11.36 -16 20 0 -16 24 0
+4 16 -11.36 24 16 0 24 16 0 20 16 -11.36 20 16
+4 16 20 24 0 20 20 0 18.48 20 -7.65 18.48 24 -7.65
+4 16 0 24 -20 7.65 24 -18.48 7.65 20 -18.48 0 20 -20
+4 16 18.48 24 -7.65 18.48 20 -7.65 16 20 -11.36 16 24 -11.36
+4 16 7.65 24 -18.48 11.36 24 -16 11.36 20 -16 7.65 20 -18.48
+4 16 16 24 -11.36 16 20 -11.36 16 20 0 16 24 0
+4 16 11.36 24 -16 0 24 -16 0 20 -16 11.36 20 -16
+4 16 -20 24 0 -18.48 24 -7.65 -18.48 20 -7.65 -20 20 0
+4 16 0 24 -20 0 20 -20 -7.65 20 -18.48 -7.65 24 -18.48
+4 16 -18.48 24 -7.65 -16 24 -11.36 -16 20 -11.36 -18.48 20 -7.65
+4 16 -7.65 24 -18.48 -7.65 20 -18.48 -11.36 20 -16 -11.36 24 -16
+4 16 -16 24 -11.36 -16 24 0 -16 20 0 -16 20 -11.36
+4 16 -11.36 24 -16 -11.36 20 -16 0 20 -16 0 24 -16
+0 BFC INVERTNEXT
+1 16 0 4 0 16 0 0 0 16 0 0 0 16 p/4-4cyli.dat
+1 16 0 0 0 20 0 0 0 20 0 0 0 20 p/4-4cyli.dat
+3 16 16 20 0 14.78 20 6.12 16 20 11.36
+4 16 14.78 20 6.12 11.31 20 11.31 14.14 20 14.14 16 20 11.36
+4 16 6.12 20 14.78 11.36 20 16 14.14 20 14.14 11.31 20 11.31
+3 16 0 20 16 11.36 20 16 6.12 20 14.78
+3 16 -16 20 0 -16 20 11.36 -14.78 20 6.12
+4 16 -14.78 20 6.12 -16 20 11.36 -14.14 20 14.14 -11.31 20 11.31
+4 16 -6.12 20 14.78 -11.31 20 11.31 -14.14 20 14.14 -11.36 20 16
+3 16 0 20 16 -6.12 20 14.78 -11.36 20 16
+3 16 16 20 0 16 20 -11.36 14.78 20 -6.12
+4 16 14.78 20 -6.12 16 20 -11.36 14.14 20 -14.14 11.31 20 -11.31
+4 16 6.12 20 -14.78 11.31 20 -11.31 14.14 20 -14.14 11.36 20 -16
+3 16 0 20 -16 6.12 20 -14.78 11.36 20 -16
+3 16 -16 20 0 -14.78 20 -6.12 -16 20 -11.36
+4 16 -14.78 20 -6.12 -11.31 20 -11.31 -14.14 20 -14.14 -16 20 -11.36
+4 16 -6.12 20 -14.78 -11.36 20 -16 -14.14 20 -14.14 -11.31 20 -11.31
+3 16 0 20 -16 -11.36 20 -16 -6.12 20 -14.78
+5 24 0 20 20 0 24 20 -7.65 20 18.48 7.65 20 18.48
+5 24 -7.65 20 18.48 -7.65 24 18.48 -14.14 20 14.14 0 20 20
+5 24 -18.48 20 7.65 -18.48 24 7.65 -20 20 0 -14.14 20 14.14
+5 24 -20 20 0 -20 24 0 -18.48 20 -7.65 -18.48 20 7.65
+5 24 -18.48 20 -7.65 -18.48 24 -7.65 -14.14 20 -14.14 -20 20 0
+5 24 -7.65 20 -18.48 -7.65 24 -18.48 0 20 -20 -14.14 20 -14.14
+5 24 0 20 -20 0 24 -20 7.65 20 -18.48 -7.65 20 -18.48
+5 24 7.65 20 -18.48 7.65 24 -18.48 14.14 20 -14.14 0 20 -20
+5 24 18.48 20 -7.65 18.48 24 -7.65 20 20 0 14.14 20 -14.14
+5 24 20 20 0 20 24 0 18.48 20 7.65 18.48 20 -7.65
+5 24 18.48 20 7.65 18.48 24 7.65 14.14 20 14.14 20 20 0
+5 24 7.65 20 18.48 7.65 24 18.48 0 20 20 14.14 20 14.14
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud10.dat
+1 16 -10 0 10 0 0 -1 0 1 0 1 0 0 p/stud10.dat
+1 16 10 0 -10 0 0 1 0 1 0 -1 0 0 p/stud10.dat
+1 16 -10 0 -10 -1 0 0 0 1 0 0 0 -1 p/stud10.dat
+1 16 0 0 0 10 0 0 0 1 0 0 0 10 p/ring1.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/ring1.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/ring1.dat
+0
+
+0 FILE p/ring1.dat
+0 ~Moved to 4-4ring1
+0 Name: ring1.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Ring  1 x 1.0
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4ring1.dat
+
+0 FILE parts/3747a.dat
+0 Slope Brick 33  3 x  2 Inverted without Ribs between Studs
+0 Name: 3747a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-09-13 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-10-31 [OrionP] Added Underside Notches
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-07-05 [PTadmin] Renamed from 3747
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 16 0 0 0 -20 0 0 0 6 p/box5.dat
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+4 16 -20 24 -10 -16 24 -6 16 24 -6 20 24 -10
+4 16 20 24 -10 16 24 -6 16 24 6 20 24 10
+2 24 20 24 -10 20 24 10
+2 24 20 24 -10 -20 24 -10
+2 24 20 24 10 -20 24 10
+2 24 -20 24 -10 -20 24 10
+2 24 20 0 -50 20 4 -50
+2 24 20 4 -50 20 24 -10
+2 24 20 0 10 20 24 10
+2 24 -20 0 -50 -20 4 -50
+2 24 -20 4 -50 -20 24 -10
+2 24 -20 0 10 -20 24 10
+2 24 20 4 -50 -20 4 -50
+2 24 20 0 -50 20 0 10
+2 24 20 0 -50 -20 0 -50
+2 24 20 0 10 -20 0 10
+2 24 -20 0 -50 -20 0 10
+2 24 18 20 -10 -18 20 -10
+2 24 -18 20 -10 -18 2 -46
+2 24 -18 2 -46 18 2 -46
+2 24 18 2 -46 18 20 -10
+2 24 18 0 -10 -18 0 -10
+2 24 -18 0 -10 -18 0 -46
+2 24 -18 0 -46 18 0 -46
+2 24 18 0 -46 18 0 -10
+2 24 18 0 -10 18 20 -10
+2 24 -18 0 -10 -18 20 -10
+2 24 -18 0 -46 -18 2 -46
+2 24 18 0 -46 18 2 -46
+1 16 10 15 -20 4 0 0 0 0.894 2 0 -0.447 4 p/4-4edge.dat
+1 16 -10 15 -20 4 0 0 0 0.894 2 0 -0.447 4 p/4-4edge.dat
+1 16 10 15 -20 6 0 0 0 0.894 3 0 -0.447 6 p/4-4edge.dat
+1 16 -10 15 -20 6 0 0 0 0.894 3 0 -0.447 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 13 -20 0 0 4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 13 -20 0 0 -4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 13 -20 0 0 4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 13 -20 0 0 -4 0 2 0 -4 0 0 p/2-4cyls.dat
+1 16 10 12 -20 0 0 6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 10 12 -20 0 0 -6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 -10 12 -20 0 0 6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 -10 12 -20 0 0 -6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 10 5 -40 4 0 0 0 0.894 2 0 -0.447 4 p/4-4edge.dat
+1 16 -10 5 -40 4 0 0 0 0.894 2 0 -0.447 4 p/4-4edge.dat
+1 16 10 5 -40 6 0 0 0 0.894 3 0 -0.447 6 p/4-4edge.dat
+1 16 -10 5 -40 6 0 0 0 0.894 3 0 -0.447 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 3 -40 0 0 4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 3 -40 0 0 -4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 3 -40 0 0 4 0 2 0 -4 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 3 -40 0 0 -4 0 2 0 -4 0 0 p/2-4cyls.dat
+1 16 10 2 -40 0 0 6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 10 2 -40 0 0 -6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 -10 2 -40 0 0 6 0 3 0 -6 0 0 p/2-4cyls.dat
+1 16 -10 2 -40 0 0 -6 0 3 0 -6 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 0 -20 4 0 0 0 13 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 0 -20 4 0 0 0 13 0 0 0 4 p/4-4cyli.dat
+1 16 10 0 -20 6 0 0 0 12 0 0 0 6 p/4-4cyli.dat
+1 16 -10 0 -20 6 0 0 0 12 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 0 -40 4 0 0 0 3 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 0 -40 4 0 0 0 3 0 0 0 4 p/4-4cyli.dat
+1 16 10 0 -40 6 0 0 0 2 0 0 0 6 p/4-4cyli.dat
+1 16 -10 0 -40 6 0 0 0 2 0 0 0 6 p/4-4cyli.dat
+4 16 20 24 -10 20 24 10 20 0 10 20 4 -50
+3 16 20 24 -10 20 4 -50 15.602 20 -18
+3 16 -20 24 -10 -15.602 20 -18 -20 4 -50
+4 16 -4.398 20 -18 0 24 -10 4.398 20 -18 0 4 -50 
+4 16 15.602 20 -18 20 4 -50 0 4 -50 4.398 20 -18
+4 16 -15.602 20 -18 -4.398 20 -18 0 4 -50 -20 4 -50
+3 16 -20 24 -10 -15.5434 20.148 -17.7038 -15.602 20 -18
+3 16 -20 24 -10 -14.2426 21.121 -15.7574 -15.5434 20.148 -17.7038
+3 16 -20 24 -10 -12.2962 21.772 -14.4566 -14.2426 21.121 -15.7574
+4 16 -20 24 -10  0 24 -10 -10 22 -14 -12.2962 21.772 -14.4566
+3 16 0 24 -10 -7.7038 21.772 -14.4566 -10 22 -14
+3 16 0 24 -10 -5.7574 21.121 -15.7574 -7.7038 21.772 -14.4566
+3 16 0 24 -10 -4.4566 20.148 -17.7038 -5.7574 21.121 -15.7574
+3 16 0 24 -10 -4.398 20 -18 -4.4566 20.148 -17.7038
+3 16 20 24 -10 15.602 20 -18 15.5434 20.148 -17.7038
+3 16 20 24 -10 15.5434 20.148 -17.7038 14.2426 21.121 -15.7574
+3 16 20 24 -10 14.2426 21.121 -15.7574 12.2962 21.772 -14.4566
+4 16 20 24 -10 12.2962 21.772 -14.4566 10 22 -14 0 24 -10
+3 16 0 24 -10 10 22 -14 7.7038 21.772 -14.4566
+3 16 0 24 -10 7.7038 21.772 -14.4566 5.7574 21.121 -15.7574
+3 16 0 24 -10 5.7574 21.121 -15.7574 4.4566 20.148 -17.7038
+3 16 0 24 -10 4.4566 20.148 -17.7038 4.398 20 -18
+4 16 20 24 10 -20 24 10 -20 0 10 20 0 10
+4 16 -20 24 -10 -20 4 -50 -20 0 10 -20 24 10
+3 16 20 0 -50 20 4 -50 20 0 10
+4 16 20 0 -50 -20 0 -50 -20 4 -50 20 4 -50
+3 16 -20 0 -50 -20 0 10 -20 4 -50
+4 16 18 20 -10 -18 20 -10 -18 2 -46 18 2 -46
+4 16 18 20 -10 18 2 -46 18 0 -46 18 0 -10
+4 16 -18 20 -10 -18 0 -10 -18 0 -46 -18 2 -46
+4 16 18 20 -10 18 0 -10 -18 0 -10 -18 20 -10
+4 16 18 2 -46 -18 2 -46 -18 0 -46 18 0 -46
+4 16 20 0 10 -20 0 10 -18 0 -10 18 0 -10
+4 16 -20 0 10 -20 0 -50 -18 0 -46 -18 0 -10
+4 16 -20 0 -50 20 0 -50 18 0 -46 -18 0 -46
+4 16 20 0 -50 20 0 10 18 0 -10 18 0 -46
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -20 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 10 0 -40 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -20 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 -10 0 -40 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+0 Underside notches
+3 16 15.602 20 -18 15.5434 20 -17.7038 15.5434 20.148 -17.7038
+3 16 4.4566 20.148 -17.7038 4.4566 20 -17.7038 4.398 20 -18
+4 16 15.5434 20.148 -17.7038 15.5434 20 -17.7038 14.2426 20 -15.7574 14.2426 21.121 -15.7574
+4 16 14.2426 21.121 -15.7574 14.2426 20 -15.7574 12.2962 20 -14.4566 12.2962 21.772 -14.4566
+4 16 12.2962 21.772 -14.4566 12.2962 20 -14.4566 10 20 -14 10 22 -14
+4 16 10 22 -14 10 20 -14 7.7038 20 -14.4566 7.7038 21.772 -14.4566
+4 16 7.7038 21.772 -14.4566 7.7038 20 -14.4566 5.7574 20 -15.7574 5.7574 21.121 -15.7574
+4 16 5.7574 21.121 -15.7574 5.7574 20 -15.7574 4.4566 20 -17.7038 4.4566 20.148 -17.7038
+4 16 15.602 20 -18 4.398 20 -18 4.4566 20 -17.7038 15.5434 20 -17.7038
+4 16 15.5434 20 -17.7038 4.4566 20 -17.7038 5.7574 20 -15.7574 14.2426 20 -15.7574
+4 16 5.7574 20 -15.7574 7.7038 20 -14.4566 12.2962 20 -14.4566 14.2426 20 -15.7574
+3 16 10 20 -14 12.2962 20 -14.4566 7.7038 20 -14.4566
+2 24 15.602 20 -18 4.398 20 -18
+2 24 15.602 20 -18 15.5434 20.148 -17.7038
+2 24 4.4566 20.148 -17.7038 4.398 20 -18
+2 24 15.5434 20.148 -17.7038 14.2426 21.121 -15.7574
+2 24 14.2426 21.121 -15.7574 12.2962 21.772 -14.4566
+2 24 12.2962 21.772 -14.4566 10 22 -14
+2 24 10 22 -14 7.7038 21.772 -14.4566
+2 24 7.7038 21.772 -14.4566 5.7574 21.121 -15.7574
+2 24 5.7574 21.121 -15.7574 4.4566 20.148 -17.7038
+2 24 15.602 20 -18 15.5434 20 -17.7038
+2 24 4.4566 20 -17.7038 4.398 20 -18
+2 24 15.5434 20 -17.7038 14.2426 20 -15.7574
+2 24 5.7574 20 -15.7574 4.4566 20 -17.7038
+2 24 5.7574 20 -15.7574 7.7038 20 -14.4566
+2 24 12.2962 20 -14.4566 14.2426 20 -15.7574
+2 24 10 20 -14 12.2962 20 -14.4566
+2 24 10 20 -14 7.7038 20 -14.4566
+5 24 15.5434 20 -17.7038 15.5434 20.148 -17.7038 14.2426 20 -15.7574 16 20 -20
+5 24 14.2426 20 -15.7574 14.2426 21.121 -15.7574 12.2962 20 -14.4566 15.5434 20 -17.7038
+5 24 12.2962 20 -14.4566 12.2962 21.772 -14.4566 10 20 -14 14.2426 20 -15.7574
+5 24 10 20 -14 10 22 -14 7.7038 20 -14.4566 12.2962 20 -14.4566
+5 24 7.7038 20 -14.4566 7.7038 21.772 -14.4566 5.7574 20 -15.7574 10 20 -14
+5 24 5.7574 20 -15.7574 5.7574 21.121 -15.7574 4.4566 20 -17.7038 7.7038 20 -14.4566
+5 24 4.4566 20 -17.7038 4.4566 20.148 -17.7038 4 20 -20 5.7574 20 -15.7574
+3 16 -4.398 20 -18 -4.4566 20 -17.7038 -4.4566 20.148 -17.7038
+3 16 -15.5434 20.148 -17.7038 -15.5434 20 -17.7038 -15.602 20 -18
+4 16 -4.4566 20.148 -17.7038 -4.4566 20 -17.7038 -5.7574 20 -15.7574 -5.7574 21.121 -15.7574
+4 16 -5.7574 21.121 -15.7574 -5.7574 20 -15.7574 -7.7038 20 -14.4566 -7.7038 21.772 -14.4566
+4 16 -7.7038 21.772 -14.4566 -7.7038 20 -14.4566 -10 20 -14 -10 22 -14
+4 16 -10 22 -14 -10 20 -14 -12.2962 20 -14.4566 -12.2962 21.772 -14.4566
+4 16 -12.2962 21.772 -14.4566 -12.2962 20 -14.4566 -14.2426 20 -15.7574 -14.2426 21.121 -15.7574
+4 16 -14.2426 21.121 -15.7574 -14.2426 20 -15.7574 -15.5434 20 -17.7038 -15.5434 20.148 -17.7038
+4 16 -4.398 20 -18 -15.602 20 -18 -15.5434 20 -17.7038 -4.4566 20 -17.7038
+4 16 -4.4566 20 -17.7038 -15.5434 20 -17.7038 -14.2426 20 -15.7574 -5.7574 20 -15.7574
+4 16 -14.2426 20 -15.7574 -12.2962 20 -14.4566 -7.7038 20 -14.4566 -5.7574 20 -15.7574
+3 16 -10 20 -14 -7.7038 20 -14.4566 -12.2962 20 -14.4566
+2 24 -4.398 20 -18 -15.602 20 -18
+2 24 -4.398 20 -18 -4.4566 20.148 -17.7038
+2 24 -15.5434 20.148 -17.7038 -15.602 20 -18
+2 24 -4.4566 20.148 -17.7038 -5.7574 21.121 -15.7574
+2 24 -5.7574 21.121 -15.7574 -7.7038 21.772 -14.4566
+2 24 -7.7038 21.772 -14.4566 -10 22 -14
+2 24 -10 22 -14 -12.2962 21.772 -14.4566
+2 24 -12.2962 21.772 -14.4566 -14.2426 21.121 -15.7574
+2 24 -14.2426 21.121 -15.7574 -15.5434 20.148 -17.7038
+2 24 -4.398 20 -18 -4.4566 20 -17.7038
+2 24 -15.5434 20 -17.7038 -15.602 20 -18
+2 24 -4.4566 20 -17.7038 -5.7574 20 -15.7574
+2 24 -14.2426 20 -15.7574 -15.5434 20 -17.7038
+2 24 -14.2426 20 -15.7574 -12.2962 20 -14.4566
+2 24 -7.7038 20 -14.4566 -5.7574 20 -15.7574
+2 24 -10 20 -14 -7.7038 20 -14.4566
+2 24 -10 20 -14 -12.2962 20 -14.4566
+5 24 -4.4566 20 -17.7038 -4.4566 20.148 -17.7038 -5.7574 20 -15.7574 -4 20 -20
+5 24 -5.7574 20 -15.7574 -5.7574 21.121 -15.7574 -7.7038 20 -14.4566 -4.4566 20 -17.7038
+5 24 -7.7038 20 -14.4566 -7.7038 21.772 -14.4566 -10 20 -14 -5.7574 20 -15.7574
+5 24 -10 20 -14 -10 22 -14 -12.2962 20 -14.4566 -7.7038 20 -14.4566
+5 24 -12.2962 20 -14.4566 -12.2962 21.772 -14.4566 -14.2426 20 -15.7574 -10 20 -14
+5 24 -14.2426 20 -15.7574 -14.2426 21.121 -15.7574 -15.5434 20 -17.7038 -12.2962 20 -14.4566
+5 24 -15.5434 20 -17.7038 -15.5434 20.148 -17.7038 -16 20 -20 -14.2426 20 -15.7574
+0
+
+0 FILE parts/32001.dat
+0 Technic Plate  2 x  6 with Holes
+0 Name: 32001.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-20 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 60 0 0 0 8 0 0 0 20 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 56 0 0 0 4 0 0 0 16 p/box4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 40 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -40 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 40 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -40 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 40 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+4 16 60 8 20 56 8 16 -56 8 16 -60 8 20
+4 16 -60 8 20 -56 8 16 -56 8 -16 -60 8 -20
+4 16 -60 8 -20 -56 8 -16 56 8 -16 60 8 -20
+4 16 60 8 -20 56 8 -16 56 8 16 60 8 20
+1 16 40 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -40 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+4 16 56 4 16 48 4 8 -48 4 8 -56 4 16
+4 16 -56 4 16 -48 4 8 -48 4 -8 -56 4 -16
+4 16 -56 4 -16 -48 4 -8 48 4 -8 56 4 -16
+4 16 56 4 -16 48 4 -8 48 4 8 56 4 16
+4 16 32 4 8 32 4 -8 28 4 -8 28 4 8
+4 16 12 4 8 12 4 -8 8 4 -8 8 4 8
+4 16 -8 4 8 -8 4 -8 -12 4 -8 -12 4 8
+4 16 -28 4 8 -28 4 -8 -32 4 -8 -32 4 8
+1 16 40 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -40 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+4 16 60 0 -20 46 0 -6 -46 0 -6 -60 0 -20
+4 16 -60 0 -20 -46 0 -6 -46 0 6 -60 0 20
+4 16 -60 0 20 -46 0 6 46 0 6 60 0 20
+4 16 60 0 20 46 0 6 46 0 -6 60 0 -20
+4 16 34 0 -6 34 0 6 26 0 6 26 0 -6
+4 16 14 0 -6 14 0 6 6 0 6 6 0 -6
+4 16 -6 0 -6 -6 0 6 -14 0 6 -14 0 -6
+4 16 -26 0 -6 -26 0 6 -34 0 6 -34 0 -6
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/4477.dat
+0 Plate  1 x 10
+0 Name: 4477.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 80 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -80 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 96 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 100 8 10 96 8 6 -96 8 6 -100 8 10
+4 16 -100 8 10 -96 8 6 -96 8 -6 -100 8 -10
+4 16 -100 8 -10 -96 8 -6 96 8 -6 100 8 -10
+4 16 100 8 -10 96 8 -6 96 8 6 100 8 10
+1 16 0 8 0 100 0 0 0 -8 0 0 0 10 p/box5.dat
+1 16 90 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/30165.dat
+0 Brick  2 x  2 with Curved Top and  2 Studs on Top
+0 Name: 30165.dat
+0 Author: Lutz Uhlmann [El-Lutzo]
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-01-12 [PTadmin] Official Update 1998-01
+0 !HISTORY 1998-02-12 [PTadmin] Official Update 1998-02
+0 !HISTORY 2007-06-06 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-08-08 [MagFors] BFC'ed, used more primitives, corrected understud
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 4 0 6 0 0 0 1 1.19 0 0 6 p/2-4edge.dat
+1 16 0 4 0 -6 0 0 0 1 1.19 0 0 -6 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+2 24 8 4 0 7.3912 4.6088 3.0616
+2 24 7.3912 4.6088 3.0616 5.6568 5.1249 5.6568
+2 24 4.9589 5.2176 6.1232 5.6568 5.1249 5.6568
+2 24 3.0616 6.065 7.3912 4.9589 5.2176 6.1232
+2 24 0 6.4719 8 3.0616 6.065 7.3912
+2 24 -3.0616 6.065 7.3912 0 6.4719 8
+2 24 -5.6568 5.1249 5.6568 -4.9589 5.2176 6.1232
+2 24 -4.9589 5.2176 6.1232 -3.0616 6.065 7.3912
+2 24 -7.3912 4.6088 3.0616 -5.6568 5.1249 5.6568
+2 24 -8 4 0 -7.3912 4.6088 3.0616
+2 24 -7.3912 4.6088 -3.0616 -8 4 0
+2 24 -5.6568 5.1249 -5.6568 -7.3912 4.6088 -3.0616
+2 24 -4.9589 5.2176 -6.1232 -3.0616 6.065 -7.3912
+2 24 -5.6568 5.1249 -5.6568 -4.9589 5.2176 -6.1232
+2 24 -3.0616 6.065 -7.3912 0 6.4719 -8
+2 24 0 6.4719 -8 3.0616 6.065 -7.3912
+2 24 3.0616 6.065 -7.3912 4.9589 5.2176 -6.1232
+2 24 4.9589 5.2176 -6.1232 5.6568 5.1249 -5.6568
+2 24 5.6568 5.1249 -5.6568 7.3912 4.6088 -3.0616
+2 24 7.3912 4.6088 -3.0616 8 4 0
+1 16 0 20 0 8 0 0 0 -16 0 0 0 8 p/4-4cyli.dat
+1 16 0 20 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+4 16 20 24 20 16 24 16 -16 24 16 -20 24 20
+4 16 -20 24 20 -16 24 16 -16 24 -16 -20 24 -20
+4 16 -20 24 -20 -16 24 -16 16 24 -16 20 24 -20
+4 16 20 24 -20 16 24 -16 16 24 16 20 24 20
+0 BFC INVERTNEXT
+1 16 0 24 0 -16 0 0 0 -4 0 0 0 16 p/box4o4a.dat
+1 16 0 24 0 -20 0 0 0 -4 0 0 0 20 p/box4o4a.dat
+1 16 -16 20 0 0 -1 0 0 0 -16 16 0 0 p/2-4disc.dat
+0 BFC INVERTNEXT
+1 16 16 20 0 0 -32 0 0 0 -16 -16 0 0 p/2-4cylc.dat
+1 16 -20 20 0 0 1 0 0 0 -20 -20 0 0 p/2-4disc.dat
+1 16 20 20 0 0 -40 0 0 0 -20 -20 0 0 p/2-4cylc.dat
+1 16 10 0 0 4 0 0 0 1 0.795 0 0 4 p/2-4edge.dat
+1 16 10 0 0 -4 0 0 0 1 0.795 0 0 -4 p/2-4edge.dat
+1 16 10 0 0 6 0 0 0 1 1.19 0 0 6 p/2-4edge.dat
+1 16 10 0 0 -6 0 0 0 1 1.19 0 0 -6 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 0 0 4 0 0 0 0.795 0 0 0 4 p/4-4cyli.dat
+1 16 10 0 0 6 0 0 0 1.19 0 0 0 6 p/4-4cyli.dat
+1 16 -10 0 0 4 0 0 0 1 0.795 0 0 4 p/2-4edge.dat
+1 16 -10 0 0 -4 0 0 0 1 0.795 0 0 -4 p/2-4edge.dat
+1 16 -10 0 0 6 0 0 0 1 1.19 0 0 6 p/2-4edge.dat
+1 16 -10 0 0 -6 0 0 0 1 1.19 0 0 -6 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 -10 0 0 4 0 0 0 0.795 0 0 0 4 p/4-4cyli.dat
+1 16 -10 0 0 6 0 0 0 1.19 0 0 0 6 p/4-4cyli.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+
+0 FILE parts/3832.dat
+0 Plate  2 x 10
+0 Name: 3832.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 96 0 0 0 -4 0 0 0 16 p/box5.dat
+4 16 100 8 20 96 8 16 -96 8 16 -100 8 20
+4 16 100 8 -20 -100 8 -20 -96 8 -16 96 8 -16
+4 16 100 8 20 100 8 -20 96 8 -16 96 8 16
+4 16 -100 8 20 -96 8 16 -96 8 -16 -100 8 -20
+1 16 0 8 0 100 0 0 0 -8 0 0 0 20 p/box5.dat
+1 16 90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/756.dat
+0 ~Hose Flexible Segment Center Section
+0 Name: 756.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Subpart UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 2011-08-25 [cwdee]   CA rewrite, corrected intersections using tori
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 -1.333 0 3 0 0 0 -2 0 0 0 3 p/t01o3333.dat
+1 16 0 -1.333 0 4 0 0 0 0.667 0 0 0 4 p/4-4cyli.dat
+1 16 0 -0.667 0 3 0 0 0 2 0 0 0 3 p/t01o3333.dat
+1 16 0 0 0 3 0 0 0 1 0 0 0 3 p/4-4edge.dat
+1 16 0 0 0 3 0 0 0 3 0 0 0 3 p/4-8sphe.dat
+1 16 0 -2 0 3 0 0 0 1 0 0 0 3 p/4-4edge.dat
+1 16 0 -2 0 3 0 0 0 -3 0 0 0 3 p/4-8sphe.dat
+
+0 FILE parts/754.dat
+0 ~Hose Flexible Segment Link Section
+0 Name: 754.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Subpart UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 2000-04-28 [sbliss]  Removed erroneous RING3.dat references.
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2007-12-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-05-26 [Steffen] modified to match updated 756.dat
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 -1.333 0 3 0 0 0 -2 0 0 0 3 p/t01o3333.dat
+1 16 0 -1.333 0 4 0 0 0 0.667 0 0 0 4 p/4-4cyli.dat
+1 16 0 -0.667 0 3 0 0 0 2 0 0 0 3 p/t01o3333.dat
+1 16 0 0 0 3 0 0 0 3 0 0 0 3 p/4-8sphe.dat
+1 16 0 0 0 3 0 0 0 1 0 0 0 -3 p/4-4edge.dat
+1 16 0 -2 0 3 0 0 0 1 0 0 0 -3 p/4-4edge.dat
+1 16 0 -2 0 3 0 0 0 1 0 0 0 -3 p/4-4disc.dat
+
+0 FILE p/t01o3333.dat
+0 Torus Outside  1 x 0.3333 x 1
+0 Name: t01o3333.dat
+0 Author: Michael Heidemann [mikeheide]
+0 !LDRAW_ORG Primitive UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+0 !HISTORY 2013-09-27 [MMR1988] Recreated to fix condlines
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Major Radius: 3
+0 // Tube(Minor) Radius: 1
+0 // Segments(Sweep): 16/16 = 1.00
+0 // 1  9  0 0 0  1 0 0  0 1 0  0 0 1 4-4edge.dat
+0 // 1  12  1 0 0 0.3333 0 0  0 0 0.3333  0 1 0  4-4edge.dat
+
+4 16 1 0.3333 0 0.9239 0.3333 0.3827 1.0418 0.308 0.4315 1.1276 0.308 0
+4 16 1.1276 0.308 0 1.0418 0.308 0.4315 1.1417 0.2357 0.4729 1.2357 0.2357 0
+4 16 1.2357 0.2357 0 1.1417 0.2357 0.4729 1.2084 0.1276 0.5006 1.308 0.1276 0
+4 16 1.308 0.1276 0 1.2084 0.1276 0.5006 1.2319 0 0.5103 1.3333 0 0
+4 16 0.9239 0.3333 0.3827 0.7071 0.3333 0.7071 0.7973 0.308 0.7973 1.0418 0.308 0.4315
+4 16 1.0418 0.308 0.4315 0.7973 0.308 0.7973 0.8738 0.2357 0.8738 1.1417 0.2357 0.4729
+4 16 1.1417 0.2357 0.4729 0.8738 0.2357 0.8738 0.9249 0.1276 0.9249 1.2084 0.1276 0.5006
+4 16 1.2084 0.1276 0.5006 0.9249 0.1276 0.9249 0.9428 0 0.9428 1.2319 0 0.5103
+4 16 0.7071 0.3333 0.7071 0.3827 0.3333 0.9239 0.4315 0.308 1.0418 0.7973 0.308 0.7973
+4 16 0.7973 0.308 0.7973 0.4315 0.308 1.0418 0.4729 0.2357 1.1417 0.8738 0.2357 0.8738
+4 16 0.8738 0.2357 0.8738 0.4729 0.2357 1.1417 0.5006 0.1276 1.2084 0.9249 0.1276 0.9249
+4 16 0.9249 0.1276 0.9249 0.5006 0.1276 1.2084 0.5103 0 1.2319 0.9428 0 0.9428
+4 16 0.3827 0.3333 0.9239 0 0.3333 1 0 0.308 1.1276 0.4315 0.308 1.0418
+4 16 0.4315 0.308 1.0418 0 0.308 1.1276 0 0.2357 1.2357 0.4729 0.2357 1.1417
+4 16 0.4729 0.2357 1.1417 0 0.2357 1.2357 0 0.1276 1.308 0.5006 0.1276 1.2084
+4 16 0.5006 0.1276 1.2084 0 0.1276 1.308 0 0 1.3333 0.5103 0 1.2319
+4 16 0 0.3333 1 -0.3827 0.3333 0.9239 -0.4315 0.308 1.0418 0 0.308 1.1276
+4 16 0 0.308 1.1276 -0.4315 0.308 1.0418 -0.4729 0.2357 1.1417 0 0.2357 1.2357
+4 16 0 0.2357 1.2357 -0.4729 0.2357 1.1417 -0.5006 0.1276 1.2084 0 0.1276 1.308
+4 16 0 0.1276 1.308 -0.5006 0.1276 1.2084 -0.5103 0 1.2319 0 0 1.3333
+4 16 -0.3827 0.3333 0.9239 -0.7071 0.3333 0.7071 -0.7973 0.308 0.7973 -0.4315 0.308 1.0418
+4 16 -0.4315 0.308 1.0418 -0.7973 0.308 0.7973 -0.8738 0.2357 0.8738 -0.4729 0.2357 1.1417
+4 16 -0.4729 0.2357 1.1417 -0.8738 0.2357 0.8738 -0.9249 0.1276 0.9249 -0.5006 0.1276 1.2084
+4 16 -0.5006 0.1276 1.2084 -0.9249 0.1276 0.9249 -0.9428 0 0.9428 -0.5103 0 1.2319
+4 16 -0.7071 0.3333 0.7071 -0.9239 0.3333 0.3827 -1.0418 0.308 0.4315 -0.7973 0.308 0.7973
+4 16 -0.7973 0.308 0.7973 -1.0418 0.308 0.4315 -1.1417 0.2357 0.4729 -0.8738 0.2357 0.8738
+4 16 -0.8738 0.2357 0.8738 -1.1417 0.2357 0.4729 -1.2084 0.1276 0.5006 -0.9249 0.1276 0.9249
+4 16 -0.9249 0.1276 0.9249 -1.2084 0.1276 0.5006 -1.2319 0 0.5103 -0.9428 0 0.9428
+4 16 -0.9239 0.3333 0.3827 -1 0.3333 0 -1.1276 0.308 0 -1.0418 0.308 0.4315
+4 16 -1.0418 0.308 0.4315 -1.1276 0.308 0 -1.2357 0.2357 0 -1.1417 0.2357 0.4729
+4 16 -1.1417 0.2357 0.4729 -1.2357 0.2357 0 -1.308 0.1276 0 -1.2084 0.1276 0.5006
+4 16 -1.2084 0.1276 0.5006 -1.308 0.1276 0 -1.3333 0 0 -1.2319 0 0.5103
+4 16 -1 0.3333 0 -0.9239 0.3333 -0.3827 -1.0418 0.308 -0.4315 -1.1276 0.308 0
+4 16 -1.1276 0.308 0 -1.0418 0.308 -0.4315 -1.1417 0.2357 -0.4729 -1.2357 0.2357 0
+4 16 -1.2357 0.2357 0 -1.1417 0.2357 -0.4729 -1.2084 0.1276 -0.5006 -1.308 0.1276 0
+4 16 -1.308 0.1276 0 -1.2084 0.1276 -0.5006 -1.2319 0 -0.5103 -1.3333 0 0
+4 16 -0.9239 0.3333 -0.3827 -0.7071 0.3333 -0.7071 -0.7973 0.308 -0.7973 -1.0418 0.308 -0.4315
+4 16 -1.0418 0.308 -0.4315 -0.7973 0.308 -0.7973 -0.8738 0.2357 -0.8738 -1.1417 0.2357 -0.4729
+4 16 -1.1417 0.2357 -0.4729 -0.8738 0.2357 -0.8738 -0.9249 0.1276 -0.9249 -1.2084 0.1276 -0.5006
+4 16 -1.2084 0.1276 -0.5006 -0.9249 0.1276 -0.9249 -0.9428 0 -0.9428 -1.2319 0 -0.5103
+4 16 -0.7071 0.3333 -0.7071 -0.3827 0.3333 -0.9239 -0.4315 0.308 -1.0418 -0.7973 0.308 -0.7973
+4 16 -0.7973 0.308 -0.7973 -0.4315 0.308 -1.0418 -0.4729 0.2357 -1.1417 -0.8738 0.2357 -0.8738
+4 16 -0.8738 0.2357 -0.8738 -0.4729 0.2357 -1.1417 -0.5006 0.1276 -1.2084 -0.9249 0.1276 -0.9249
+4 16 -0.9249 0.1276 -0.9249 -0.5006 0.1276 -1.2084 -0.5103 0 -1.2319 -0.9428 0 -0.9428
+4 16 -0.3827 0.3333 -0.9239 0 0.3333 -1 0 0.308 -1.1276 -0.4315 0.308 -1.0418
+4 16 -0.4315 0.308 -1.0418 0 0.308 -1.1276 0 0.2357 -1.2357 -0.4729 0.2357 -1.1417
+4 16 -0.4729 0.2357 -1.1417 0 0.2357 -1.2357 0 0.1276 -1.308 -0.5006 0.1276 -1.2084
+4 16 -0.5006 0.1276 -1.2084 0 0.1276 -1.308 0 0 -1.3333 -0.5103 0 -1.2319
+4 16 0 0.3333 -1 0.3827 0.3333 -0.9239 0.4315 0.308 -1.0418 0 0.308 -1.1276
+4 16 0 0.308 -1.1276 0.4315 0.308 -1.0418 0.4729 0.2357 -1.1417 0 0.2357 -1.2357
+4 16 0 0.2357 -1.2357 0.4729 0.2357 -1.1417 0.5006 0.1276 -1.2084 0 0.1276 -1.308
+4 16 0 0.1276 -1.308 0.5006 0.1276 -1.2084 0.5103 0 -1.2319 0 0 -1.3333
+4 16 0.3827 0.3333 -0.9239 0.7071 0.3333 -0.7071 0.7973 0.308 -0.7973 0.4315 0.308 -1.0418
+4 16 0.4315 0.308 -1.0418 0.7973 0.308 -0.7973 0.8738 0.2357 -0.8738 0.4729 0.2357 -1.1417
+4 16 0.4729 0.2357 -1.1417 0.8738 0.2357 -0.8738 0.9249 0.1276 -0.9249 0.5006 0.1276 -1.2084
+4 16 0.5006 0.1276 -1.2084 0.9249 0.1276 -0.9249 0.9428 0 -0.9428 0.5103 0 -1.2319
+4 16 0.7071 0.3333 -0.7071 0.9239 0.3333 -0.3827 1.0418 0.308 -0.4315 0.7973 0.308 -0.7973
+4 16 0.7973 0.308 -0.7973 1.0418 0.308 -0.4315 1.1417 0.2357 -0.4729 0.8738 0.2357 -0.8738
+4 16 0.8738 0.2357 -0.8738 1.1417 0.2357 -0.4729 1.2084 0.1276 -0.5006 0.9249 0.1276 -0.9249
+4 16 0.9249 0.1276 -0.9249 1.2084 0.1276 -0.5006 1.2319 0 -0.5103 0.9428 0 -0.9428
+4 16 0.9239 0.3333 -0.3827 1 0.3333 0 1.1276 0.308 0 1.0418 0.308 -0.4315
+4 16 1.0418 0.308 -0.4315 1.1276 0.308 0 1.2357 0.2357 0 1.1417 0.2357 -0.4729
+4 16 1.1417 0.2357 -0.4729 1.2357 0.2357 0 1.308 0.1276 0 1.2084 0.1276 -0.5006
+4 16 1.2084 0.1276 -0.5006 1.308 0.1276 0 1.3333 0 0 1.2319 0 -0.5103
+
+0 // conditional lines
+5 24 1 0.3333 0 0.9239 0.3333 0.3827 1.1276 0.308 0 0.8619 0.3333 0
+5 24 1 0.3333 0 1.1276 0.308 0 0.9239 0.3333 0.3827 0.9239 0.3333 -0.3827
+5 24 1.1276 0.308 0 1.0418 0.308 0.4315 1.2357 0.2357 0 1 0.3333 0
+5 24 1.1276 0.308 0 1.2357 0.2357 0 1.0418 0.308 0.4315 1.0418 0.308 -0.4315
+5 24 1.2357 0.2357 0 1.1417 0.2357 0.4729 1.308 0.1276 0 1.1276 0.308 0
+5 24 1.2357 0.2357 0 1.308 0.1276 0 1.1417 0.2357 0.4729 1.1417 0.2357 -0.4729
+5 24 1.308 0.1276 0 1.2084 0.1276 0.5006 1.3333 0 0 1.2357 0.2357 0
+5 24 1.308 0.1276 0 1.3333 0 0 1.2084 0.1276 0.5006 1.2084 0.1276 -0.5006
+5 24 1.3333 0 0 1.2319 0 0.5103 1.3333 -0.1381 0 1.308 0.1276 0
+5 24 0.9239 0.3333 0.3827 0.7071 0.3333 0.7071 1.0418 0.308 0.4315 0.7963 0.3333 0.3299
+5 24 0.9239 0.3333 0.3827 1.0418 0.308 0.4315 0.7071 0.3333 0.7071 1 0.3333 0
+5 24 1.0418 0.308 0.4315 0.7973 0.308 0.7973 1.1417 0.2357 0.4729 0.9239 0.3333 0.3827
+5 24 1.0418 0.308 0.4315 1.1417 0.2357 0.4729 0.7973 0.308 0.7973 1.1276 0.308 0
+5 24 1.1417 0.2357 0.4729 0.8738 0.2357 0.8738 1.2084 0.1276 0.5006 1.0418 0.308 0.4315
+5 24 1.1417 0.2357 0.4729 1.2084 0.1276 0.5006 0.8738 0.2357 0.8738 1.2357 0.2357 0
+5 24 1.2084 0.1276 0.5006 0.9249 0.1276 0.9249 1.2319 0 0.5103 1.1417 0.2357 0.4729
+5 24 1.2084 0.1276 0.5006 1.2319 0 0.5103 0.9249 0.1276 0.9249 1.308 0.1276 0
+5 24 1.2319 0 0.5103 0.9428 0 0.9428 1.2319 -0.1381 0.5103 1.2084 0.1276 0.5006
+5 24 0.7071 0.3333 0.7071 0.3827 0.3333 0.9239 0.7973 0.308 0.7973 0.6095 0.3333 0.6095
+5 24 0.7071 0.3333 0.7071 0.7973 0.308 0.7973 0.3827 0.3333 0.9239 0.9239 0.3333 0.3827
+5 24 0.7973 0.308 0.7973 0.4315 0.308 1.0418 0.8738 0.2357 0.8738 0.7071 0.3333 0.7071
+5 24 0.7973 0.308 0.7973 0.8738 0.2357 0.8738 0.4315 0.308 1.0418 1.0418 0.308 0.4315
+5 24 0.8738 0.2357 0.8738 0.4729 0.2357 1.1417 0.9249 0.1276 0.9249 0.7973 0.308 0.7973
+5 24 0.8738 0.2357 0.8738 0.9249 0.1276 0.9249 0.4729 0.2357 1.1417 1.1417 0.2357 0.4729
+5 24 0.9249 0.1276 0.9249 0.5006 0.1276 1.2084 0.9428 0 0.9428 0.8738 0.2357 0.8738
+5 24 0.9249 0.1276 0.9249 0.9428 0 0.9428 0.5006 0.1276 1.2084 1.2084 0.1276 0.5006
+5 24 0.9428 0 0.9428 0.5103 0 1.2319 0.9428 -0.1381 0.9428 0.9249 0.1276 0.9249
+5 24 0.3827 0.3333 0.9239 0 0.3333 1 0.4315 0.308 1.0418 0.3299 0.3333 0.7963
+5 24 0.3827 0.3333 0.9239 0.4315 0.308 1.0418 0 0.3333 1 0.7071 0.3333 0.7071
+5 24 0.4315 0.308 1.0418 0 0.308 1.1276 0.4729 0.2357 1.1417 0.3827 0.3333 0.9239
+5 24 0.4315 0.308 1.0418 0.4729 0.2357 1.1417 0 0.308 1.1276 0.7973 0.308 0.7973
+5 24 0.4729 0.2357 1.1417 0 0.2357 1.2357 0.5006 0.1276 1.2084 0.4315 0.308 1.0418
+5 24 0.4729 0.2357 1.1417 0.5006 0.1276 1.2084 0 0.2357 1.2357 0.8738 0.2357 0.8738
+5 24 0.5006 0.1276 1.2084 0 0.1276 1.308 0.5103 0 1.2319 0.4729 0.2357 1.1417
+5 24 0.5006 0.1276 1.2084 0.5103 0 1.2319 0 0.1276 1.308 0.9249 0.1276 0.9249
+5 24 0.5103 0 1.2319 0 0 1.3333 0.5103 -0.1381 1.2319 0.5006 0.1276 1.2084
+5 24 0 0.3333 1 -0.3827 0.3333 0.9239 0 0.308 1.1276 0 0.3333 0.8619
+5 24 0 0.3333 1 0 0.308 1.1276 -0.3827 0.3333 0.9239 0.3827 0.3333 0.9239
+5 24 0 0.308 1.1276 -0.4315 0.308 1.0418 0 0.2357 1.2357 0 0.3333 1
+5 24 0 0.308 1.1276 0 0.2357 1.2357 -0.4315 0.308 1.0418 0.4315 0.308 1.0418
+5 24 0 0.2357 1.2357 -0.4729 0.2357 1.1417 0 0.1276 1.308 0 0.308 1.1276
+5 24 0 0.2357 1.2357 0 0.1276 1.308 -0.4729 0.2357 1.1417 0.4729 0.2357 1.1417
+5 24 0 0.1276 1.308 -0.5006 0.1276 1.2084 0 0 1.3333 0 0.2357 1.2357
+5 24 0 0.1276 1.308 0 0 1.3333 -0.5006 0.1276 1.2084 0.5006 0.1276 1.2084
+5 24 0 0 1.3333 -0.5103 0 1.2319 0 -0.1381 1.3333 0 0.1276 1.308
+5 24 -0.3827 0.3333 0.9239 -0.7071 0.3333 0.7071 -0.4315 0.308 1.0418 -0.3299 0.3333 0.7963
+5 24 -0.3827 0.3333 0.9239 -0.4315 0.308 1.0418 -0.7071 0.3333 0.7071 0 0.3333 1
+5 24 -0.4315 0.308 1.0418 -0.7973 0.308 0.7973 -0.4729 0.2357 1.1417 -0.3827 0.3333 0.9239
+5 24 -0.4315 0.308 1.0418 -0.4729 0.2357 1.1417 -0.7973 0.308 0.7973 0 0.308 1.1276
+5 24 -0.4729 0.2357 1.1417 -0.8738 0.2357 0.8738 -0.5006 0.1276 1.2084 -0.4315 0.308 1.0418
+5 24 -0.4729 0.2357 1.1417 -0.5006 0.1276 1.2084 -0.8738 0.2357 0.8738 0 0.2357 1.2357
+5 24 -0.5006 0.1276 1.2084 -0.9249 0.1276 0.9249 -0.5103 0 1.2319 -0.4729 0.2357 1.1417
+5 24 -0.5006 0.1276 1.2084 -0.5103 0 1.2319 -0.9249 0.1276 0.9249 0 0.1276 1.308
+5 24 -0.5103 0 1.2319 -0.9428 0 0.9428 -0.5103 -0.1381 1.2319 -0.5006 0.1276 1.2084
+5 24 -0.7071 0.3333 0.7071 -0.9239 0.3333 0.3827 -0.7973 0.308 0.7973 -0.6095 0.3333 0.6095
+5 24 -0.7071 0.3333 0.7071 -0.7973 0.308 0.7973 -0.9239 0.3333 0.3827 -0.3827 0.3333 0.9239
+5 24 -0.7973 0.308 0.7973 -1.0418 0.308 0.4315 -0.8738 0.2357 0.8738 -0.7071 0.3333 0.7071
+5 24 -0.7973 0.308 0.7973 -0.8738 0.2357 0.8738 -1.0418 0.308 0.4315 -0.4315 0.308 1.0418
+5 24 -0.8738 0.2357 0.8738 -1.1417 0.2357 0.4729 -0.9249 0.1276 0.9249 -0.7973 0.308 0.7973
+5 24 -0.8738 0.2357 0.8738 -0.9249 0.1276 0.9249 -1.1417 0.2357 0.4729 -0.4729 0.2357 1.1417
+5 24 -0.9249 0.1276 0.9249 -1.2084 0.1276 0.5006 -0.9428 0 0.9428 -0.8738 0.2357 0.8738
+5 24 -0.9249 0.1276 0.9249 -0.9428 0 0.9428 -1.2084 0.1276 0.5006 -0.5006 0.1276 1.2084
+5 24 -0.9428 0 0.9428 -1.2319 0 0.5103 -0.9428 -0.1381 0.9428 -0.9249 0.1276 0.9249
+5 24 -0.9239 0.3333 0.3827 -1 0.3333 0 -1.0418 0.308 0.4315 -0.7963 0.3333 0.3299
+5 24 -0.9239 0.3333 0.3827 -1.0418 0.308 0.4315 -1 0.3333 0 -0.7071 0.3333 0.7071
+5 24 -1.0418 0.308 0.4315 -1.1276 0.308 0 -1.1417 0.2357 0.4729 -0.9239 0.3333 0.3827
+5 24 -1.0418 0.308 0.4315 -1.1417 0.2357 0.4729 -1.1276 0.308 0 -0.7973 0.308 0.7973
+5 24 -1.1417 0.2357 0.4729 -1.2357 0.2357 0 -1.2084 0.1276 0.5006 -1.0418 0.308 0.4315
+5 24 -1.1417 0.2357 0.4729 -1.2084 0.1276 0.5006 -1.2357 0.2357 0 -0.8738 0.2357 0.8738
+5 24 -1.2084 0.1276 0.5006 -1.308 0.1276 0 -1.2319 0 0.5103 -1.1417 0.2357 0.4729
+5 24 -1.2084 0.1276 0.5006 -1.2319 0 0.5103 -1.308 0.1276 0 -0.9249 0.1276 0.9249
+5 24 -1.2319 0 0.5103 -1.3333 0 0 -1.2319 -0.1381 0.5103 -1.2084 0.1276 0.5006
+5 24 -1 0.3333 0 -0.9239 0.3333 -0.3827 -1.1276 0.308 0 -0.8619 0.3333 0
+5 24 -1 0.3333 0 -1.1276 0.308 0 -0.9239 0.3333 -0.3827 -0.9239 0.3333 0.3827
+5 24 -1.1276 0.308 0 -1.0418 0.308 -0.4315 -1.2357 0.2357 0 -1 0.3333 0
+5 24 -1.1276 0.308 0 -1.2357 0.2357 0 -1.0418 0.308 -0.4315 -1.0418 0.308 0.4315
+5 24 -1.2357 0.2357 0 -1.1417 0.2357 -0.4729 -1.308 0.1276 0 -1.1276 0.308 0
+5 24 -1.2357 0.2357 0 -1.308 0.1276 0 -1.1417 0.2357 -0.4729 -1.1417 0.2357 0.4729
+5 24 -1.308 0.1276 0 -1.2084 0.1276 -0.5006 -1.3333 0 0 -1.2357 0.2357 0
+5 24 -1.308 0.1276 0 -1.3333 0 0 -1.2084 0.1276 -0.5006 -1.2084 0.1276 0.5006
+5 24 -1.3333 0 0 -1.2319 0 -0.5103 -1.3333 -0.1381 0 -1.308 0.1276 0
+5 24 -0.9239 0.3333 -0.3827 -0.7071 0.3333 -0.7071 -1.0418 0.308 -0.4315 -0.7963 0.3333 -0.3299
+5 24 -0.9239 0.3333 -0.3827 -1.0418 0.308 -0.4315 -0.7071 0.3333 -0.7071 -1 0.3333 0
+5 24 -1.0418 0.308 -0.4315 -0.7973 0.308 -0.7973 -1.1417 0.2357 -0.4729 -0.9239 0.3333 -0.3827
+5 24 -1.0418 0.308 -0.4315 -1.1417 0.2357 -0.4729 -0.7973 0.308 -0.7973 -1.1276 0.308 0
+5 24 -1.1417 0.2357 -0.4729 -0.8738 0.2357 -0.8738 -1.2084 0.1276 -0.5006 -1.0418 0.308 -0.4315
+5 24 -1.1417 0.2357 -0.4729 -1.2084 0.1276 -0.5006 -0.8738 0.2357 -0.8738 -1.2357 0.2357 0
+5 24 -1.2084 0.1276 -0.5006 -0.9249 0.1276 -0.9249 -1.2319 0 -0.5103 -1.1417 0.2357 -0.4729
+5 24 -1.2084 0.1276 -0.5006 -1.2319 0 -0.5103 -0.9249 0.1276 -0.9249 -1.308 0.1276 0
+5 24 -1.2319 0 -0.5103 -0.9428 0 -0.9428 -1.2319 -0.1381 -0.5103 -1.2084 0.1276 -0.5006
+5 24 -0.7071 0.3333 -0.7071 -0.3827 0.3333 -0.9239 -0.7973 0.308 -0.7973 -0.6095 0.3333 -0.6095
+5 24 -0.7071 0.3333 -0.7071 -0.7973 0.308 -0.7973 -0.3827 0.3333 -0.9239 -0.9239 0.3333 -0.3827
+5 24 -0.7973 0.308 -0.7973 -0.4315 0.308 -1.0418 -0.8738 0.2357 -0.8738 -0.7071 0.3333 -0.7071
+5 24 -0.7973 0.308 -0.7973 -0.8738 0.2357 -0.8738 -0.4315 0.308 -1.0418 -1.0418 0.308 -0.4315
+5 24 -0.8738 0.2357 -0.8738 -0.4729 0.2357 -1.1417 -0.9249 0.1276 -0.9249 -0.7973 0.308 -0.7973
+5 24 -0.8738 0.2357 -0.8738 -0.9249 0.1276 -0.9249 -0.4729 0.2357 -1.1417 -1.1417 0.2357 -0.4729
+5 24 -0.9249 0.1276 -0.9249 -0.5006 0.1276 -1.2084 -0.9428 0 -0.9428 -0.8738 0.2357 -0.8738
+5 24 -0.9249 0.1276 -0.9249 -0.9428 0 -0.9428 -0.5006 0.1276 -1.2084 -1.2084 0.1276 -0.5006
+5 24 -0.9428 0 -0.9428 -0.5103 0 -1.2319 -0.9428 -0.1381 -0.9428 -0.9249 0.1276 -0.9249
+5 24 -0.3827 0.3333 -0.9239 0 0.3333 -1 -0.4315 0.308 -1.0418 -0.3299 0.3333 -0.7963
+5 24 -0.3827 0.3333 -0.9239 -0.4315 0.308 -1.0418 0 0.3333 -1 -0.7071 0.3333 -0.7071
+5 24 -0.4315 0.308 -1.0418 0 0.308 -1.1276 -0.4729 0.2357 -1.1417 -0.3827 0.3333 -0.9239
+5 24 -0.4315 0.308 -1.0418 -0.4729 0.2357 -1.1417 0 0.308 -1.1276 -0.7973 0.308 -0.7973
+5 24 -0.4729 0.2357 -1.1417 0 0.2357 -1.2357 -0.5006 0.1276 -1.2084 -0.4315 0.308 -1.0418
+5 24 -0.4729 0.2357 -1.1417 -0.5006 0.1276 -1.2084 0 0.2357 -1.2357 -0.8738 0.2357 -0.8738
+5 24 -0.5006 0.1276 -1.2084 0 0.1276 -1.308 -0.5103 0 -1.2319 -0.4729 0.2357 -1.1417
+5 24 -0.5006 0.1276 -1.2084 -0.5103 0 -1.2319 0 0.1276 -1.308 -0.9249 0.1276 -0.9249
+5 24 -0.5103 0 -1.2319 0 0 -1.3333 -0.5103 -0.1381 -1.2319 -0.5006 0.1276 -1.2084
+5 24 0 0.3333 -1 0.3827 0.3333 -0.9239 0 0.308 -1.1276 0 0.3333 -0.8619
+5 24 0 0.3333 -1 0 0.308 -1.1276 0.3827 0.3333 -0.9239 -0.3827 0.3333 -0.9239
+5 24 0 0.308 -1.1276 0.4315 0.308 -1.0418 0 0.2357 -1.2357 0 0.3333 -1
+5 24 0 0.308 -1.1276 0 0.2357 -1.2357 0.4315 0.308 -1.0418 -0.4315 0.308 -1.0418
+5 24 0 0.2357 -1.2357 0.4729 0.2357 -1.1417 0 0.1276 -1.308 0 0.308 -1.1276
+5 24 0 0.2357 -1.2357 0 0.1276 -1.308 0.4729 0.2357 -1.1417 -0.4729 0.2357 -1.1417
+5 24 0 0.1276 -1.308 0.5006 0.1276 -1.2084 0 0 -1.3333 0 0.2357 -1.2357
+5 24 0 0.1276 -1.308 0 0 -1.3333 0.5006 0.1276 -1.2084 -0.5006 0.1276 -1.2084
+5 24 0 0 -1.3333 0.5103 0 -1.2319 0 -0.1381 -1.3333 0 0.1276 -1.308
+5 24 0.3827 0.3333 -0.9239 0.7071 0.3333 -0.7071 0.4315 0.308 -1.0418 0.3299 0.3333 -0.7963
+5 24 0.3827 0.3333 -0.9239 0.4315 0.308 -1.0418 0.7071 0.3333 -0.7071 0 0.3333 -1
+5 24 0.4315 0.308 -1.0418 0.7973 0.308 -0.7973 0.4729 0.2357 -1.1417 0.3827 0.3333 -0.9239
+5 24 0.4315 0.308 -1.0418 0.4729 0.2357 -1.1417 0.7973 0.308 -0.7973 0 0.308 -1.1276
+5 24 0.4729 0.2357 -1.1417 0.8738 0.2357 -0.8738 0.5006 0.1276 -1.2084 0.4315 0.308 -1.0418
+5 24 0.4729 0.2357 -1.1417 0.5006 0.1276 -1.2084 0.8738 0.2357 -0.8738 0 0.2357 -1.2357
+5 24 0.5006 0.1276 -1.2084 0.9249 0.1276 -0.9249 0.5103 0 -1.2319 0.4729 0.2357 -1.1417
+5 24 0.5006 0.1276 -1.2084 0.5103 0 -1.2319 0.9249 0.1276 -0.9249 0 0.1276 -1.308
+5 24 0.5103 0 -1.2319 0.9428 0 -0.9428 0.5103 -0.1381 -1.2319 0.5006 0.1276 -1.2084
+5 24 0.7071 0.3333 -0.7071 0.9239 0.3333 -0.3827 0.7973 0.308 -0.7973 0.6095 0.3333 -0.6095
+5 24 0.7071 0.3333 -0.7071 0.7973 0.308 -0.7973 0.9239 0.3333 -0.3827 0.3827 0.3333 -0.9239
+5 24 0.7973 0.308 -0.7973 1.0418 0.308 -0.4315 0.8738 0.2357 -0.8738 0.7071 0.3333 -0.7071
+5 24 0.7973 0.308 -0.7973 0.8738 0.2357 -0.8738 1.0418 0.308 -0.4315 0.4315 0.308 -1.0418
+5 24 0.8738 0.2357 -0.8738 1.1417 0.2357 -0.4729 0.9249 0.1276 -0.9249 0.7973 0.308 -0.7973
+5 24 0.8738 0.2357 -0.8738 0.9249 0.1276 -0.9249 1.1417 0.2357 -0.4729 0.4729 0.2357 -1.1417
+5 24 0.9249 0.1276 -0.9249 1.2084 0.1276 -0.5006 0.9428 0 -0.9428 0.8738 0.2357 -0.8738
+5 24 0.9249 0.1276 -0.9249 0.9428 0 -0.9428 1.2084 0.1276 -0.5006 0.5006 0.1276 -1.2084
+5 24 0.9428 0 -0.9428 1.2319 0 -0.5103 0.9428 -0.1381 -0.9428 0.9249 0.1276 -0.9249
+5 24 0.9239 0.3333 -0.3827 1 0.3333 0 1.0418 0.308 -0.4315 0.7963 0.3333 -0.3299
+5 24 0.9239 0.3333 -0.3827 1.0418 0.308 -0.4315 1 0.3333 0 0.7071 0.3333 -0.7071
+5 24 1.0418 0.308 -0.4315 1.1276 0.308 0 1.1417 0.2357 -0.4729 0.9239 0.3333 -0.3827
+5 24 1.0418 0.308 -0.4315 1.1417 0.2357 -0.4729 1.1276 0.308 0 0.7973 0.308 -0.7973
+5 24 1.1417 0.2357 -0.4729 1.2357 0.2357 0 1.2084 0.1276 -0.5006 1.0418 0.308 -0.4315
+5 24 1.1417 0.2357 -0.4729 1.2084 0.1276 -0.5006 1.2357 0.2357 0 0.8738 0.2357 -0.8738
+5 24 1.2084 0.1276 -0.5006 1.308 0.1276 0 1.2319 0 -0.5103 1.1417 0.2357 -0.4729
+5 24 1.2084 0.1276 -0.5006 1.2319 0 -0.5103 1.308 0.1276 0 0.9249 0.1276 -0.9249
+5 24 1.2319 0 -0.5103 1.3333 0 0 1.2319 -0.1381 -0.5103 1.2084 0.1276 -0.5006
+0 // Build by Primitive Generator 2
+
+0 FILE parts/755.dat
+0 ~Hose Flexible Segment End Section
+0 Name: 755.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Subpart UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS gizmo, minifig, space, tube
+
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 1999-08-19 [sbliss] Changed 4-4con12.dat >> 4-4con1.dat
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2007-12-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-06-02 [Steffen] BFCed
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 5 0 5 0 0 0 -5 0 0 0 5 p/4-4cylc.dat
+1 16 0 0 0 5 0 0 0 1 0 0 0 5 p/4-4disc.dat
+1 16 0 0 0 3 0 0 0 -6 0 0 0 3 p/4-4cylo.dat
+1 16 0 -6 0 1 0 0 0 -1 0 0 0 1 p/4-4ring3.dat
+1 16 0 -6 0 4 0 0 0 -2 0 0 0 4 p/4-4cylo.dat
+1 16 0 -8 0 2 0 0 0 -4 0 0 0 2 p/4-4con1.dat
+1 16 0 -12 0 2 0 0 0 1 0 0 0 2 p/4-4edge.dat
+1 16 0 -12 0 2 0 0 0 1 0 0 0 2 p/4-4disc.dat
+
+0 FILE parts/750.dat
+0 Hose Flexible End  1 x  1 x  0.667 with Tabs
+0 Name: 750.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 !HELP This file, the End piece, forms each end of a flexible hose.
+0 !HELP Use this file in conjuction with the files:
+0 !HELP 754.dat Link Section
+0 !HELP 755.dat End Section
+0 !HELP 756.dat Center Section
+0 !HELP to manually construct complete flexible tubes.
+0 !HELP Example:
+0 !HELP Start with a 750.dat End piece,
+0 !HELP Next comes a 755.dat End Section,
+0 !HELP Then a string of approximately 25 754.dat Link Sections,
+0 !HELP Place a 756.dat Center Section,
+0 !HELP Then another string of 754.dat's facing the opposite way,
+0 !HELP Then a 755.dat End Section,
+0 !HELP Finish with a 750.dat End piece.
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS gizmo, space, tube, cap
+
+0 !HISTORY 1998-07-15 [PTadmin] Official Update 1998-07
+0 !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
+0 !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2007-12-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2014-11-21 [roland]  Auto-corrected with libfix version of LDCad 1.4
+0 !HISTORY 2016-11-27 [MagFors] Made BFC, closed mesh, used stud, removed keywords
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+1 16 0 7 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 7 0 -2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 7 0 0 0 4 p/4-4cylo.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring2.dat
+1 16 0 7 0 1 0 0 0 -2.25 0 0 0 1 p/stud4a.dat
+
+2 24 -2 7 7.6023 -3.0616 7 7.3912
+2 24 -2 0 5.6023 -2.296 0 5.543
+1 16 1 3.5 6.80115 1 0 0 0 0 -3.5 -0.19885 1 0 p/box2-9.dat
+1 16 -1 3.5 6.80115 -1 0 0 0 0 -3.5 -0.19885 1 0 p/box2-9.dat
+3 16 2 7 7.6023 2 0 7.6023 2 0 5.6023
+3 16 -2 0 7.6023 -2 7 7.6023 -2 0 5.6023
+2 24 2 0 5.6023 2 7 7.6023
+2 24 -2 0 5.6023 -2 7 7.6023
+2 24 3.062 7 7.391 2 7 7.6023
+2 24 2.2962 0 5.5434 2 0 5.6023
+5 24 0 0 8 0 7 8 2 7 7.6023 -2 7 7.6023
+4 16 2 7 7.6023 2 0 5.6023 2.2962 0 5.5434 3.0616 7 7.3912
+4 16 -2 0 5.6023 -2 7 7.6023 -3.0616 7 7.3912 -2.2962 0 5.5434
+1 16 0 0 0 5.54328 0 -2.2961 0 1 0 2.2961 0 5.54328 p/1-8edge.dat
+1 16 0 7 0 1.84776 0 -0.76537 0 -7 0 0.76537 0 1.84776 p/1-8con3.dat
+1 16 0 7 0 7.39104 0 -3.06147 0 1 0 3.06147 0 7.39104 p/1-8edge.dat
+
+2 24 7.6023 7 2 7.3912 7 3.0616
+2 24 5.6023 0 2 5.5434 0 2.2962
+1 16 6.80115 3.5 -1 -0.19885 1 0 0 0 -3.5 -1 0 0 p/box2-9.dat
+1 16 6.80115 3.5 1 -0.19885 1 0 0 0 -3.5 1 0 0 p/box2-9.dat
+3 16 7.6023 7 -2 7.6023 0 -2 5.6023 0 -2
+3 16 7.6023 0 2 7.6023 7 2 5.6023 0 2
+2 24 5.6023 0 -2 7.6023 7 -2
+2 24 5.6023 0 2 7.6023 7 2
+2 24 7.3912 7 -3.0616 7.6023 7 -2
+2 24 5.5434 0 -2.2962 5.6023 0 -2
+5 24 8 0 0 8 7 0 7.6023 7 -2 7.6023 7 2
+4 16 5.5434 0 -2.2962 7.3912 7 -3.0616 7.6023 7 -2 5.6023 0 -2
+4 16 7.3912 7 3.0616 5.5434 0 2.2962 5.6023 0 2 7.6023 7 2
+1 16 0 0 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8edge.dat
+1 16 0 7 0 0.76537 0 1.84776 0 -7 0 -1.84776 0 0.76537 p/1-8con3.dat
+1 16 0 7 0 3.06147 0 7.39104 0 1 0 -7.39104 0 3.06147 p/1-8edge.dat
+
+2 24 2 7 -7.6023 3.062 7 -7.391
+2 24 2 0 -5.6023 2.2962 0 -5.5434
+1 16 -1 3.5 -6.80115 -1 0 0 0 0 -3.5 0.19885 -1 0 p/box2-9.dat
+1 16 1 3.5 -6.80115 1 0 0 0 0 -3.5 0.19885 -1 0 p/box2-9.dat
+3 16 -2 7 -7.6023 -2 0 -7.6023 -2 0 -5.6023
+3 16 2 0 -7.6023 2 7 -7.6023 2 0 -5.6023
+2 24 -2 0 -5.6023 -2 7 -7.6023
+2 24 2 0 -5.6023 2 7 -7.6023
+2 24 -3.0616 7 -7.3912 -2 7 -7.6023
+2 24 -2.296 0 -5.543 -2 0 -5.6023
+5 24 0 0 -8 0 7 -8 -2 7 -7.6023 2 7 -7.6023
+4 16 -2 0 -5.6023 -2.2962 0 -5.5434 -3.0616 7 -7.3912 -2 7 -7.6023
+4 16 2.2962 0 -5.5434 2 0 -5.6023 2 7 -7.6023 3.0616 7 -7.3912
+1 16 0 0 0 -5.54328 0 2.2961 0 1 0 -2.2961 0 -5.54328 p/1-8edge.dat
+1 16 0 7 0 -1.84776 0 0.76537 0 -7 0 -0.76537 0 -1.84776 p/1-8con3.dat
+1 16 0 7 0 -7.39104 0 3.06147 0 1 0 -3.06147 0 -7.39104 p/1-8edge.dat
+
+2 24 -7.6023 7 -2 -7.391 7 -3.062
+2 24 -5.6023 0 -2 -5.543 0 -2.296
+1 16 -6.80115 3.5 1 0.19885 -1 0 0 0 -3.5 1 0 0 p/box2-9.dat
+1 16 -6.80115 3.5 -1 0.19885 -1 0 0 0 -3.5 -1 0 0 p/box2-9.dat
+3 16 -7.6023 7 2 -7.6023 0 2 -5.6023 0 2
+3 16 -7.6023 0 -2 -7.6023 7 -2 -5.6023 0 -2
+2 24 -5.6023 0 2 -7.6023 7 2
+2 24 -5.6023 0 -2 -7.6023 7 -2
+2 24 -7.391 7 3.062 -7.6023 7 2
+2 24 -5.543 0 2.296 -5.6023 0 2
+5 24 -8 0 0 -8 7 0 -7.6023 7 -2 -7.6023 7 2
+4 16 -7.6023 7 2 -5.6023 0 2 -5.5434 0 2.2962 -7.3912 7 3.0616
+4 16 -5.5434 0 -2.2962 -5.6023 0 -2 -7.6023 7 -2 -7.3912 7 -3.0616
+1 16 0 0 0 -2.2961 0 -5.54328 0 1 0 5.54328 0 -2.2961 p/1-8edge.dat
+1 16 0 7 0 -0.76537 0 -1.84776 0 -7 0 1.84776 0 -0.76537 p/1-8con3.dat
+1 16 0 7 0 -3.06147 0 -7.39104 0 1 0 7.39104 0 -3.06147 p/1-8edge.dat
+
+0 FILE p/1-8con3.dat
+0 Cone  3 x 0.125
+0 Name: 1-8con3.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+4 16 3 1 0 2.7717 1 1.1481 3.6956 0 1.5308 4 0 0
+4 16 2.7717 1 1.1481 2.1213 1 2.1213 2.8284 0 2.8284 3.6956 0 1.5308
+
+0 conditional lines
+5 24 3 1 0 4 0 0 2.7717 1 -1.1481 2.7717 1 1.1481
+5 24 2.7717 1 1.1481 3.6956 0 1.5308 3 1 0 2.1213 1 2.1213
+5 24 2.1213 1 2.1213 2.8284 0 2.8284 2.7717 1 1.1481 1.1481 1 2.7717
+
+0 end of file 
+
+
+
+0 FILE p/box2-9.dat
+0 Box with 2 Faces without 9 Edges
+0 Name: box2-9.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 1 1 -1 1 1
+2 24 1 -1 1 1 1 1
+2 24 1 1 -1 1 1 1
+4 16 1 1 1 1 1 -1 -1 1 -1 -1 1 1
+4 16 1 1 1 -1 1 1 -1 -1 1 1 -1 1
+0
+
+0 FILE parts/87081.dat
+0 Brick  4 x  4 Round with Pinhole and Snapstud
+0 Name: 87081.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Part UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 !HELP turntable together with 61485
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Turntable
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/87081s01.dat
+1 16 0 0 0 0 0 1 0 1 0 1 0 0 parts/s/87081s01.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 parts/s/87081s01.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/87081s01.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/s/87081s01.dat
+1 16 0 0 0 0 0 -1 0 1 0 -1 0 0 parts/s/87081s01.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 parts/s/87081s01.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 parts/s/87081s01.dat
+1 16 0 0 0 14 0 0 0 1 0 0 0 14 p/48/4-4aring.dat
+1 16 0 4 0 20 0 0 0 -1 0 0 0 20 p/48/4-4aring.dat
+0 // click lock against part 61485
+1 16 36 23.5 0 0 0 -0.75 0 -19.5 0 -0.75 0 0 p/2-4cylc.dat
+2 24 36 23.5 0 35.951 23.5 0.74
+2 24 35.951 4 0.74 35.951 23.5 0.74
+2 24 35.951 23.5 -0.74 36 23.5 0
+2 24 35.951 4 -0.74 35.951 23.5 -0.74
+1 16 -36 23.5 0 0 0 0.75 0 -19.5 0 0.75 0 0 p/2-4cylc.dat
+2 24 -36 23.5 0 -35.951 23.5 0.74
+2 24 -35.951 4 0.74 -35.951 23.5 0.74
+2 24 -35.951 23.5 -0.74 -36 23.5 0
+2 24 -35.951 4 -0.74 -35.951 23.5 -0.74
+1 16 0 20 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 20 0 1 0 0 0 -1 0 0 0 1 p/stud18a.dat
+1 16 -20 20 0 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 20 20 0 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 0 20 20 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 0 20 -20 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stug-2x2.dat
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stug-2x2.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+0 FILE p/stud18a.dat
+0 Stud Tube Open Snap
+0 Name: stud18a.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Primitive UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 0 0 7 0 0 0 1 0 0 0 7 p/4-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4ring7.dat
+2 24 5.606 -4 1.981 5.543 -4 2.296
+1 16 0 -4 0 5.5433 0 -2.2961 0 1 0 2.2961 0 5.5433 p/1-8edge.dat
+1 16 0 -4 0 0.9239 0 -0.3827 0 1 0 0.3827 0 0.9239 p/1-8ring6.dat
+4 16 6.606 -4 1.981 6.467 -4 2.679 5.543 -4 2.296 5.606 -4 1.981
+2 24 6.606 -2 1.981 6.467 -2 2.679
+1 16 0 -2 0 6.4672 0 -2.6788 0 1 0 2.6788 0 6.4672 p/1-8edge.dat
+1 16 0 -2 0 6.4672 0 -2.6788 0 2 0 2.6788 0 6.4672 p/1-8cyli.dat
+4 16 6.8 -1 1 6.467 0 2.679 6.467 -2 2.679 6.606 -2 1.981
+3 16 6.8 -2 1 6.8 -1 1 6.606 -2 1.981
+4 16 6.8 -1 1 7 -1 0 7 0 0 6.467 0 2.679
+5 24 7 0 0 7 -1 0 6.467 0 -2.679 6.467 0 2.679
+1 16 0 -3 0 6.4672 0 -2.6788 0 7 0 2.6788 0 6.4672 p/t16o1429.dat
+1 16 0 -3 0 4.9497 0 4.9497 0 -7 0 4.9497 0 -4.9497 p/t16o1429.dat
+4 16 6.981 -3.924 2.056 6.821 -3.924 2.825 6.467 -4 2.679 6.606 -4 1.981
+4 16 7.12 -3.707 2.95 6.821 -3.924 2.825 6.981 -3.924 2.056 7.3 -3.707 2.119
+4 16 7.512 -3.383 2.161 7.321 -3.383 3.033 7.12 -3.707 2.95 7.3 -3.707 2.119
+4 16 7.391 -3 3.062 7.321 -3.383 3.033 7.512 -3.383 2.161 7.587 -3 2.176
+4 16 7.321 -2.617 3.033 7.391 -3 3.062 7.587 -3 2.176 7.512 -2.617 2.161
+4 16 7.3 -2.293 2.119 7.12 -2.293 2.95 7.321 -2.617 3.033 7.512 -2.617 2.161
+4 16 6.821 -2.076 2.825 7.12 -2.293 2.95 7.3 -2.293 2.119 6.981 -2.076 2.056
+4 16 6.606 -2 1.981 6.467 -2 2.679 6.821 -2.076 2.825 6.981 -2.076 2.056
+5 24 6.606 -4 1.981 6.467 -4 2.679 5.606 -4 1.981 6.981 -3.924 2.056
+5 24 6.821 -3.924 2.825 6.981 -3.924 2.056 6.606 -4 1.981 7.12 -3.707 2.95
+5 24 7.12 -3.707 2.95 7.3 -3.707 2.119 6.981 -3.924 2.056 7.321 -3.383 3.033
+5 24 7.321 -3.383 3.033 7.512 -3.383 2.161 7.3 -3.707 2.119 7.391 -3 3.062
+5 24 7.391 -3 3.062 7.587 -3 2.176 7.512 -3.383 2.161 7.321 -2.617 3.033
+5 24 7.321 -2.617 3.033 7.512 -2.617 2.161 7.587 -3 2.176 7.12 -2.293 2.95
+5 24 7.12 -2.293 2.95 7.3 -2.293 2.119 7.512 -2.617 2.161 6.821 -2.076 2.825
+5 24 6.821 -2.076 2.825 6.981 -2.076 2.056 7.3 -2.293 2.119 6.467 -2 2.679
+1 16 6.606 -3 1.981 0.1951 -0.9808 0 0 0 1 -0.9808 -0.1951 0 p/1-4ndis.dat
+1 16 6.606 -3 1.981 0.1951 -0.9808 0 0 0 1 -0.9808 -0.1951 0 p/1-4edge.dat
+1 16 5.606 -3 1.981 0.1951 1 0 0 0 -1 -0.9808 0 0 p/1-4edge.dat
+1 16 5.606 -3 1.981 0.1951 1 0 0 0 -1 -0.9808 0 0 p/1-4disc.dat
+1 16 5.606 -3 1.981 0.1951 1 0 0 0 -1 -0.9808 0 0 p/1-4cyli.dat
+1 16 6.606 -3 1.981 0 0.1951 0.9808 -1 0 0 0 -0.9808 0.1951 p/2-8sphe.dat
+4 16 5.543 0 2.296 5.8 -1 1 5.8 -3 1 5.606 -3 1.981
+4 16 5.606 -4 1.981 5.543 -4 2.296 5.543 0 2.296 5.606 -3 1.981
+2 24 6.8 -1 1 6.8 -2 1
+2 24 6.8 -2 1 6.8 -3 1
+2 24 5.8 -3 1 5.8 -1 1
+3 16 6.8 -3 1 5.8 -3 1 6.8 -2 1
+4 16 6.8 -2 1 5.8 -3 1 5.8 -1 1 6.8 -1 1
+1 16 6.4 -1 0.5 0.5 0 -0.1 0 1 0 0 0 0.5 p/rect3.dat
+4 16 5.8 -1 1 5.543 0 2.296 6 0 0 6 -1 0
+5 24 6 0 0 6 -1 0 5.543 0 -2.296 5.543 0 2.296
+0 BFC INVERTNEXT
+1 16 0 -4 0 5.5433 0 -2.2961 0 4 0 2.2961 0 5.5433 p/1-8cyli.dat
+0 // mirrored
+2 24 1.981 -4 5.606 2.296 -4 5.543
+4 16 1.981 -4 5.606 2.296 -4 5.543 2.679 -4 6.467 1.981 -4 6.606
+2 24 1.981 -2 6.606 2.679 -2 6.467
+4 16 1.981 -2 6.606 2.679 -2 6.467 2.679 0 6.467 1 -1 6.8
+3 16 1.981 -2 6.606 1 -1 6.8 1 -2 6.8
+4 16 2.679 0 6.467 0 0 7 0 -1 7 1 -1 6.8
+1 16 0 -3 0 2.6788 0 6.4672 0 7 0 6.4672 0 -2.6788 p/t16o1429.dat
+1 16 0 -3 0 4.9497 0 -4.9497 0 -7 0 4.9497 0 4.9497 p/t16o1429.dat
+4 16 1.981 -4 6.606 2.679 -4 6.467 2.825 -3.924 6.821 2.056 -3.924 6.981
+4 16 2.119 -3.707 7.3 2.056 -3.924 6.981 2.825 -3.924 6.821 2.95 -3.707 7.12
+4 16 2.119 -3.707 7.3 2.95 -3.707 7.12 3.033 -3.383 7.321 2.161 -3.383 7.512
+4 16 2.176 -3 7.587 2.161 -3.383 7.512 3.033 -3.383 7.321 3.062 -3 7.391
+4 16 2.161 -2.617 7.512 2.176 -3 7.587 3.062 -3 7.391 3.033 -2.617 7.321
+4 16 2.161 -2.617 7.512 3.033 -2.617 7.321 2.95 -2.293 7.12 2.119 -2.293 7.3
+4 16 2.056 -2.076 6.981 2.119 -2.293 7.3 2.95 -2.293 7.12 2.825 -2.076 6.821
+4 16 2.056 -2.076 6.981 2.825 -2.076 6.821 2.679 -2 6.467 1.981 -2 6.606
+5 24 1.981 -4 6.606 2.679 -4 6.467 1.981 -4 5.606 2.056 -3.924 6.981
+5 24 2.825 -3.924 6.821 2.056 -3.924 6.981 1.981 -4 6.606 2.95 -3.707 7.12
+5 24 2.95 -3.707 7.12 2.119 -3.707 7.3 2.056 -3.924 6.981 3.033 -3.383 7.321
+5 24 3.033 -3.383 7.321 2.161 -3.383 7.512 2.119 -3.707 7.3 3.062 -3 7.391
+5 24 3.062 -3 7.391 2.176 -3 7.587 2.161 -3.383 7.512 3.033 -2.617 7.321
+5 24 3.033 -2.617 7.321 2.161 -2.617 7.512 2.176 -3 7.587 2.95 -2.293 7.12
+5 24 2.95 -2.293 7.12 2.119 -2.293 7.3 2.161 -2.617 7.512 2.825 -2.076 6.821
+5 24 2.825 -2.076 6.821 2.056 -2.076 6.981 2.119 -2.293 7.3 2.679 -2 6.467
+1 16 1.981 -3 6.606 -0.9808 -0.1951 0 0 0 1 0.1951 -0.9808 0 p/1-4ndis.dat
+1 16 1.981 -3 6.606 -0.9808 -0.1951 0 0 0 1 0.1951 -0.9808 0 p/1-4edge.dat
+1 16 1.981 -3 5.606 -0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4edge.dat
+1 16 1.981 -3 5.606 -0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4disc.dat
+1 16 1.981 -3 5.606 -0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4cyli.dat
+1 16 1.981 -3 6.606 0 -0.9808 0.1951 -1 0 0 0 0.1951 0.9808 p/2-8sphe.dat
+4 16 2.296 0 5.543 2.296 -4 5.543 1.981 -4 5.606 1.981 -3 5.606
+4 16 1 -3 5.8 1 -1 5.8 2.296 0 5.543 1.981 -3 5.606
+2 24 1 -1 6.8 1 -2 6.8
+2 24 1 -2 6.8 1 -3 6.8
+2 24 1 -3 5.8 1 -1 5.8
+3 16 1 -2 6.8 1 -3 5.8 1 -3 6.8
+4 16 1 -1 6.8 1 -1 5.8 1 -3 5.8 1 -2 6.8
+1 16 0.5 -1 6.4 0 0 0.5 0 1 0 -0.5 0 -0.1 p/rect3.dat
+4 16 0 0 6 2.296 0 5.543 1 -1 5.8 0 -1 6
+0 // condlines
+5 24 6.467 0 2.679 6.467 -2 2.679 7 0 0 4.95 0 4.95
+5 24 2.679 0 6.467 2.679 -2 6.467 0 0 7 4.95 0 4.95
+5 24 5.543 -4 2.296 5.543 0 2.296 5.606 -4 1.981 4.243 -4 4.243
+5 24 2.296 -4 5.543 2.296 0 5.543 1.981 -4 5.606 4.243 -4 4.243
+5 24 6.606 -4 1.981 6.981 -3.924 2.056 6.821 -3.924 2.825 7.056 -3.841 1.68
+5 24 6.981 -3.924 2.056 7.3 -3.707 2.119 7.12 -3.707 2.95 7.321 -3.653 1.733
+5 24 7.3 -3.707 2.119 7.512 -3.383 2.161 7.321 -3.383 3.033 7.505 -3.383 1.77
+5 24 7.512 -3.383 2.161 7.587 -3 2.176 7.391 -3 3.062 7.587 -3 1.786
+5 24 7.587 -3 2.176 7.512 -2.617 2.161 7.321 -2.617 3.033 7.505 -2.617 1.77
+5 24 7.512 -2.617 2.161 7.3 -2.293 2.119 7.321 -2.347 1.733 7.12 -2.293 2.95
+5 24 7.3 -2.293 2.119 6.981 -2.076 2.056 6.821 -2.076 2.825 7.056 -2.159 1.68
+5 24 6.981 -2.076 2.056 6.606 -2 1.981 6.467 -2 2.679 6.681 -2.076 1.606
+5 24 1.981 -4 6.606 2.056 -3.924 6.981 2.825 -3.924 6.821 1.68 -3.841 7.056
+5 24 2.056 -3.924 6.981 2.119 -3.707 7.3 2.95 -3.707 7.12 1.733 -3.653 7.321
+5 24 2.119 -3.707 7.3 2.161 -3.383 7.512 3.033 -3.383 7.321 1.77 -3.383 7.505
+5 24 2.161 -3.383 7.512 2.176 -3 7.587 3.062 -3 7.391 1.786 -3 7.587
+5 24 2.176 -3 7.587 2.161 -2.617 7.512 3.033 -2.617 7.321 1.77 -2.617 7.505
+5 24 2.161 -2.617 7.512 2.119 -2.293 7.3 1.733 -2.347 7.321 2.95 -2.293 7.12
+5 24 2.119 -2.293 7.3 2.056 -2.076 6.981 2.825 -2.076 6.821 1.68 -2.159 7.056
+5 24 2.056 -2.076 6.981 1.981 -2 6.606 2.679 -2 6.467 1.606 -2.076 6.681
+5 24 6.786 -3.383 1.075 6.801 -3 1 5.801 -3 1 7.162 -3 1.149
+5 24 6.744 -3.707 1.287 6.786 -3.383 1.075 5.786 -3.383 1.075 7.145 -3.383 1.231
+5 24 6.681 -3.924 1.606 6.744 -3.707 1.287 5.744 -3.707 1.287 7.109 -3.653 1.415
+5 24 6.606 -4 1.981 6.681 -3.924 1.606 5.681 -3.924 1.606 7.056 -3.841 1.68
+5 24 1 -3 6.801 1.075 -3.383 6.786 1.075 -3.383 5.786 1.231 -3.383 7.145
+5 24 1.075 -3.383 6.786 1.287 -3.707 6.744 1.287 -3.707 5.744 1.415 -3.653 7.109
+5 24 1.287 -3.707 6.744 1.606 -3.924 6.681 1.606 -3.924 5.681 1.68 -3.841 7.056
+5 24 1.606 -3.924 6.681 1.981 -4 6.606 1.981 -4 5.606 2.056 -3.924 6.981
+0 //
+2 24 -1.981 -4 5.606 -2.296 -4 5.543
+1 16 0 -4 0 -2.2961 0 -5.5433 0 1 0 5.5433 0 -2.2961 p/1-8edge.dat
+1 16 0 -4 0 -0.3827 0 -0.9239 0 1 0 0.9239 0 -0.3827 p/1-8ring6.dat
+4 16 -1.981 -4 6.606 -2.679 -4 6.467 -2.296 -4 5.543 -1.981 -4 5.606
+2 24 -1.981 -2 6.606 -2.679 -2 6.467
+1 16 0 -2 0 -2.6788 0 -6.4672 0 1 0 6.4672 0 -2.6788 p/1-8edge.dat
+1 16 0 -2 0 -2.6788 0 -6.4672 0 2 0 6.4672 0 -2.6788 p/1-8cyli.dat
+4 16 -1 -1 6.8 -2.679 0 6.467 -2.679 -2 6.467 -1.981 -2 6.606
+3 16 -1 -2 6.8 -1 -1 6.8 -1.981 -2 6.606
+4 16 -1 -1 6.8 0 -1 7 0 0 7 -2.679 0 6.467
+5 24 0 0 7 0 -1 7 2.679 0 6.467 -2.679 0 6.467
+1 16 0 -3 0 -2.6788 0 -6.4672 0 7 0 6.4672 0 -2.6788 p/t16o1429.dat
+1 16 0 -3 0 -4.9497 0 4.9497 0 -7 0 4.9497 0 4.9497 p/t16o1429.dat
+4 16 -2.056 -3.924 6.981 -2.825 -3.924 6.821 -2.679 -4 6.467 -1.981 -4 6.606
+4 16 -2.95 -3.707 7.12 -2.825 -3.924 6.821 -2.056 -3.924 6.981 -2.119 -3.707 7.3
+4 16 -2.161 -3.383 7.512 -3.033 -3.383 7.321 -2.95 -3.707 7.12 -2.119 -3.707 7.3
+4 16 -3.062 -3 7.391 -3.033 -3.383 7.321 -2.161 -3.383 7.512 -2.176 -3 7.587
+4 16 -3.033 -2.617 7.321 -3.062 -3 7.391 -2.176 -3 7.587 -2.161 -2.617 7.512
+4 16 -2.119 -2.293 7.3 -2.95 -2.293 7.12 -3.033 -2.617 7.321 -2.161 -2.617 7.512
+4 16 -2.825 -2.076 6.821 -2.95 -2.293 7.12 -2.119 -2.293 7.3 -2.056 -2.076 6.981
+4 16 -1.981 -2 6.606 -2.679 -2 6.467 -2.825 -2.076 6.821 -2.056 -2.076 6.981
+5 24 -1.981 -4 6.606 -2.679 -4 6.467 -1.981 -4 5.606 -2.056 -3.924 6.981
+5 24 -2.825 -3.924 6.821 -2.056 -3.924 6.981 -1.981 -4 6.606 -2.95 -3.707 7.12
+5 24 -2.95 -3.707 7.12 -2.119 -3.707 7.3 -2.056 -3.924 6.981 -3.033 -3.383 7.321
+5 24 -3.033 -3.383 7.321 -2.161 -3.383 7.512 -2.119 -3.707 7.3 -3.062 -3 7.391
+5 24 -3.062 -3 7.391 -2.176 -3 7.587 -2.161 -3.383 7.512 -3.033 -2.617 7.321
+5 24 -3.033 -2.617 7.321 -2.161 -2.617 7.512 -2.176 -3 7.587 -2.95 -2.293 7.12
+5 24 -2.95 -2.293 7.12 -2.119 -2.293 7.3 -2.161 -2.617 7.512 -2.825 -2.076 6.821
+5 24 -2.825 -2.076 6.821 -2.056 -2.076 6.981 -2.119 -2.293 7.3 -2.679 -2 6.467
+1 16 -1.981 -3 6.606 0.9808 0.1951 0 0 0 1 0.1951 -0.9808 0 p/1-4ndis.dat
+1 16 -1.981 -3 6.606 0.9808 0.1951 0 0 0 1 0.1951 -0.9808 0 p/1-4edge.dat
+1 16 -1.981 -3 5.606 0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4edge.dat
+1 16 -1.981 -3 5.606 0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4disc.dat
+1 16 -1.981 -3 5.606 0.9808 0 0 0 0 -1 0.1951 1 0 p/1-4cyli.dat
+1 16 -1.981 -3 6.606 0 0.9808 -0.1951 -1 0 0 0 0.1951 0.9808 p/2-8sphe.dat
+4 16 -2.296 0 5.543 -1 -1 5.8 -1 -3 5.8 -1.981 -3 5.606
+4 16 -1.981 -4 5.606 -2.296 -4 5.543 -2.296 0 5.543 -1.981 -3 5.606
+2 24 -1 -1 6.8 -1 -2 6.8
+2 24 -1 -2 6.8 -1 -3 6.8
+2 24 -1 -3 5.8 -1 -1 5.8
+3 16 -1 -3 6.8 -1 -3 5.8 -1 -2 6.8
+4 16 -1 -2 6.8 -1 -3 5.8 -1 -1 5.8 -1 -1 6.8
+1 16 -0.5 -1 6.4 0 0 -0.5 0 1 0 0.5 0 -0.1 p/rect3.dat
+4 16 -1 -1 5.8 -2.296 0 5.543 0 0 6 0 -1 6
+5 24 0 0 6 0 -1 6 2.296 0 5.543 -2.296 0 5.543
+0 BFC INVERTNEXT
+1 16 0 -4 0 -2.2961 0 -5.5433 0 4 0 5.5433 0 -2.2961 p/1-8cyli.dat
+0 // mirrored
+2 24 -5.606 -4 1.981 -5.543 -4 2.296
+4 16 -5.606 -4 1.981 -5.543 -4 2.296 -6.467 -4 2.679 -6.606 -4 1.981
+2 24 -6.606 -2 1.981 -6.467 -2 2.679
+4 16 -6.606 -2 1.981 -6.467 -2 2.679 -6.467 0 2.679 -6.8 -1 1
+3 16 -6.606 -2 1.981 -6.8 -1 1 -6.8 -2 1
+4 16 -6.467 0 2.679 -7 0 0 -7 -1 0 -6.8 -1 1
+1 16 0 -3 0 -6.4672 0 2.6788 0 7 0 2.6788 0 6.4672 p/t16o1429.dat
+1 16 0 -3 0 -4.9497 0 -4.9497 0 -7 0 4.9497 0 -4.9497 p/t16o1429.dat
+4 16 -6.606 -4 1.981 -6.467 -4 2.679 -6.821 -3.924 2.825 -6.981 -3.924 2.056
+4 16 -7.3 -3.707 2.119 -6.981 -3.924 2.056 -6.821 -3.924 2.825 -7.12 -3.707 2.95
+4 16 -7.3 -3.707 2.119 -7.12 -3.707 2.95 -7.321 -3.383 3.033 -7.512 -3.383 2.161
+4 16 -7.587 -3 2.176 -7.512 -3.383 2.161 -7.321 -3.383 3.033 -7.391 -3 3.062
+4 16 -7.512 -2.617 2.161 -7.587 -3 2.176 -7.391 -3 3.062 -7.321 -2.617 3.033
+4 16 -7.512 -2.617 2.161 -7.321 -2.617 3.033 -7.12 -2.293 2.95 -7.3 -2.293 2.119
+4 16 -6.981 -2.076 2.056 -7.3 -2.293 2.119 -7.12 -2.293 2.95 -6.821 -2.076 2.825
+4 16 -6.981 -2.076 2.056 -6.821 -2.076 2.825 -6.467 -2 2.679 -6.606 -2 1.981
+5 24 -6.606 -4 1.981 -6.467 -4 2.679 -5.606 -4 1.981 -6.981 -3.924 2.056
+5 24 -6.821 -3.924 2.825 -6.981 -3.924 2.056 -6.606 -4 1.981 -7.12 -3.707 2.95
+5 24 -7.12 -3.707 2.95 -7.3 -3.707 2.119 -6.981 -3.924 2.056 -7.321 -3.383 3.033
+5 24 -7.321 -3.383 3.033 -7.512 -3.383 2.161 -7.3 -3.707 2.119 -7.391 -3 3.062
+5 24 -7.391 -3 3.062 -7.587 -3 2.176 -7.512 -3.383 2.161 -7.321 -2.617 3.033
+5 24 -7.321 -2.617 3.033 -7.512 -2.617 2.161 -7.587 -3 2.176 -7.12 -2.293 2.95
+5 24 -7.12 -2.293 2.95 -7.3 -2.293 2.119 -7.512 -2.617 2.161 -6.821 -2.076 2.825
+5 24 -6.821 -2.076 2.825 -6.981 -2.076 2.056 -7.3 -2.293 2.119 -6.467 -2 2.679
+1 16 -6.606 -3 1.981 -0.1951 0.9808 0 0 0 1 -0.9808 -0.1951 0 p/1-4ndis.dat
+1 16 -6.606 -3 1.981 -0.1951 0.9808 0 0 0 1 -0.9808 -0.1951 0 p/1-4edge.dat
+1 16 -5.606 -3 1.981 -0.1951 -1 0 0 0 -1 -0.9808 0 0 p/1-4edge.dat
+1 16 -5.606 -3 1.981 -0.1951 -1 0 0 0 -1 -0.9808 0 0 p/1-4disc.dat
+1 16 -5.606 -3 1.981 -0.1951 -1 0 0 0 -1 -0.9808 0 0 p/1-4cyli.dat
+1 16 -6.606 -3 1.981 0 -0.1951 -0.9808 -1 0 0 0 -0.9808 0.1951 p/2-8sphe.dat
+4 16 -5.543 0 2.296 -5.543 -4 2.296 -5.606 -4 1.981 -5.606 -3 1.981
+4 16 -5.8 -3 1 -5.8 -1 1 -5.543 0 2.296 -5.606 -3 1.981
+2 24 -6.8 -1 1 -6.8 -2 1
+2 24 -6.8 -2 1 -6.8 -3 1
+2 24 -5.8 -3 1 -5.8 -1 1
+3 16 -6.8 -2 1 -5.8 -3 1 -6.8 -3 1
+4 16 -6.8 -1 1 -5.8 -1 1 -5.8 -3 1 -6.8 -2 1
+1 16 -6.4 -1 0.5 0.5 0 0.1 0 1 0 0 0 0.5 p/rect3.dat
+4 16 -6 0 0 -5.543 0 2.296 -5.8 -1 1 -6 -1 0
+0 // condlines
+5 24 -2.679 0 6.467 -2.679 -2 6.467 0 0 7 -4.95 0 4.95
+5 24 -6.467 0 2.679 -6.467 -2 2.679 -7 0 0 -4.95 0 4.95
+5 24 -2.296 -4 5.543 -2.296 0 5.543 -1.981 -4 5.606 -4.243 -4 4.243
+5 24 -5.543 -4 2.296 -5.543 0 2.296 -5.606 -4 1.981 -4.243 -4 4.243
+5 24 -1.981 -4 6.606 -2.056 -3.924 6.981 -2.825 -3.924 6.821 -1.68 -3.841 7.056
+5 24 -2.056 -3.924 6.981 -2.119 -3.707 7.3 -2.95 -3.707 7.12 -1.733 -3.653 7.321
+5 24 -2.119 -3.707 7.3 -2.161 -3.383 7.512 -3.033 -3.383 7.321 -1.77 -3.383 7.505
+5 24 -2.161 -3.383 7.512 -2.176 -3 7.587 -3.062 -3 7.391 -1.786 -3 7.587
+5 24 -2.176 -3 7.587 -2.161 -2.617 7.512 -3.033 -2.617 7.321 -1.77 -2.617 7.505
+5 24 -2.161 -2.617 7.512 -2.119 -2.293 7.3 -1.733 -2.347 7.321 -2.95 -2.293 7.12
+5 24 -2.119 -2.293 7.3 -2.056 -2.076 6.981 -2.825 -2.076 6.821 -1.68 -2.159 7.056
+5 24 -2.056 -2.076 6.981 -1.981 -2 6.606 -2.679 -2 6.467 -1.606 -2.076 6.681
+5 24 -6.606 -4 1.981 -6.981 -3.924 2.056 -6.821 -3.924 2.825 -7.056 -3.841 1.68
+5 24 -6.981 -3.924 2.056 -7.3 -3.707 2.119 -7.12 -3.707 2.95 -7.321 -3.653 1.733
+5 24 -7.3 -3.707 2.119 -7.512 -3.383 2.161 -7.321 -3.383 3.033 -7.505 -3.383 1.77
+5 24 -7.512 -3.383 2.161 -7.587 -3 2.176 -7.391 -3 3.062 -7.587 -3 1.786
+5 24 -7.587 -3 2.176 -7.512 -2.617 2.161 -7.321 -2.617 3.033 -7.505 -2.617 1.77
+5 24 -7.512 -2.617 2.161 -7.3 -2.293 2.119 -7.321 -2.347 1.733 -7.12 -2.293 2.95
+5 24 -7.3 -2.293 2.119 -6.981 -2.076 2.056 -6.821 -2.076 2.825 -7.056 -2.159 1.68
+5 24 -6.981 -2.076 2.056 -6.606 -2 1.981 -6.467 -2 2.679 -6.681 -2.076 1.606
+5 24 -1.075 -3.383 6.786 -1 -3 6.801 -1 -3 5.801 -1.149 -3 7.162
+5 24 -1.287 -3.707 6.744 -1.075 -3.383 6.786 -1.075 -3.383 5.786 -1.231 -3.383 7.145
+5 24 -1.606 -3.924 6.681 -1.287 -3.707 6.744 -1.287 -3.707 5.744 -1.415 -3.653 7.109
+5 24 -1.981 -4 6.606 -1.606 -3.924 6.681 -1.606 -3.924 5.681 -1.68 -3.841 7.056
+5 24 -6.801 -3 1 -6.786 -3.383 1.075 -5.786 -3.383 1.075 -7.145 -3.383 1.231
+5 24 -6.786 -3.383 1.075 -6.744 -3.707 1.287 -5.744 -3.707 1.287 -7.109 -3.653 1.415
+5 24 -6.744 -3.707 1.287 -6.681 -3.924 1.606 -5.681 -3.924 1.606 -7.056 -3.841 1.68
+5 24 -6.681 -3.924 1.606 -6.606 -4 1.981 -5.606 -4 1.981 -6.981 -3.924 2.056
+0 //
+2 24 -5.606 -4 -1.981 -5.543 -4 -2.296
+1 16 0 -4 0 -5.5433 0 2.2961 0 1 0 -2.2961 0 -5.5433 p/1-8edge.dat
+1 16 0 -4 0 -0.9239 0 0.3827 0 1 0 -0.3827 0 -0.9239 p/1-8ring6.dat
+4 16 -6.606 -4 -1.981 -6.467 -4 -2.679 -5.543 -4 -2.296 -5.606 -4 -1.981
+2 24 -6.606 -2 -1.981 -6.467 -2 -2.679
+1 16 0 -2 0 -6.4672 0 2.6788 0 1 0 -2.6788 0 -6.4672 p/1-8edge.dat
+1 16 0 -2 0 -6.4672 0 2.6788 0 2 0 -2.6788 0 -6.4672 p/1-8cyli.dat
+4 16 -6.8 -1 -1 -6.467 0 -2.679 -6.467 -2 -2.679 -6.606 -2 -1.981
+3 16 -6.8 -2 -1 -6.8 -1 -1 -6.606 -2 -1.981
+4 16 -6.8 -1 -1 -7 -1 0 -7 0 0 -6.467 0 -2.679
+5 24 -7 0 0 -7 -1 0 -6.467 0 2.679 -6.467 0 -2.679
+1 16 0 -3 0 -6.4672 0 2.6788 0 7 0 -2.6788 0 -6.4672 p/t16o1429.dat
+1 16 0 -3 0 -4.9497 0 -4.9497 0 -7 0 -4.9497 0 4.9497 p/t16o1429.dat
+4 16 -6.981 -3.924 -2.056 -6.821 -3.924 -2.825 -6.467 -4 -2.679 -6.606 -4 -1.981
+4 16 -7.12 -3.707 -2.95 -6.821 -3.924 -2.825 -6.981 -3.924 -2.056 -7.3 -3.707 -2.119
+4 16 -7.512 -3.383 -2.161 -7.321 -3.383 -3.033 -7.12 -3.707 -2.95 -7.3 -3.707 -2.119
+4 16 -7.391 -3 -3.062 -7.321 -3.383 -3.033 -7.512 -3.383 -2.161 -7.587 -3 -2.176
+4 16 -7.321 -2.617 -3.033 -7.391 -3 -3.062 -7.587 -3 -2.176 -7.512 -2.617 -2.161
+4 16 -7.3 -2.293 -2.119 -7.12 -2.293 -2.95 -7.321 -2.617 -3.033 -7.512 -2.617 -2.161
+4 16 -6.821 -2.076 -2.825 -7.12 -2.293 -2.95 -7.3 -2.293 -2.119 -6.981 -2.076 -2.056
+4 16 -6.606 -2 -1.981 -6.467 -2 -2.679 -6.821 -2.076 -2.825 -6.981 -2.076 -2.056
+5 24 -6.606 -4 -1.981 -6.467 -4 -2.679 -5.606 -4 -1.981 -6.981 -3.924 -2.056
+5 24 -6.821 -3.924 -2.825 -6.981 -3.924 -2.056 -6.606 -4 -1.981 -7.12 -3.707 -2.95
+5 24 -7.12 -3.707 -2.95 -7.3 -3.707 -2.119 -6.981 -3.924 -2.056 -7.321 -3.383 -3.033
+5 24 -7.321 -3.383 -3.033 -7.512 -3.383 -2.161 -7.3 -3.707 -2.119 -7.391 -3 -3.062
+5 24 -7.391 -3 -3.062 -7.587 -3 -2.176 -7.512 -3.383 -2.161 -7.321 -2.617 -3.033
+5 24 -7.321 -2.617 -3.033 -7.512 -2.617 -2.161 -7.587 -3 -2.176 -7.12 -2.293 -2.95
+5 24 -7.12 -2.293 -2.95 -7.3 -2.293 -2.119 -7.512 -2.617 -2.161 -6.821 -2.076 -2.825
+5 24 -6.821 -2.076 -2.825 -6.981 -2.076 -2.056 -7.3 -2.293 -2.119 -6.467 -2 -2.679
+1 16 -6.606 -3 -1.981 -0.1951 0.9808 0 0 0 1 0.9808 0.1951 0 p/1-4ndis.dat
+1 16 -6.606 -3 -1.981 -0.1951 0.9808 0 0 0 1 0.9808 0.1951 0 p/1-4edge.dat
+1 16 -5.606 -3 -1.981 -0.1951 -1 0 0 0 -1 0.9808 0 0 p/1-4edge.dat
+1 16 -5.606 -3 -1.981 -0.1951 -1 0 0 0 -1 0.9808 0 0 p/1-4disc.dat
+1 16 -5.606 -3 -1.981 -0.1951 -1 0 0 0 -1 0.9808 0 0 p/1-4cyli.dat
+1 16 -6.606 -3 -1.981 0 -0.1951 -0.9808 -1 0 0 0 0.9808 -0.1951 p/2-8sphe.dat
+4 16 -5.543 0 -2.296 -5.8 -1 -1 -5.8 -3 -1 -5.606 -3 -1.981
+4 16 -5.606 -4 -1.981 -5.543 -4 -2.296 -5.543 0 -2.296 -5.606 -3 -1.981
+2 24 -6.8 -1 -1 -6.8 -2 -1
+2 24 -6.8 -2 -1 -6.8 -3 -1
+2 24 -5.8 -3 -1 -5.8 -1 -1
+3 16 -6.8 -3 -1 -5.8 -3 -1 -6.8 -2 -1
+4 16 -6.8 -2 -1 -5.8 -3 -1 -5.8 -1 -1 -6.8 -1 -1
+1 16 -6.4 -1 -0.5 -0.5 0 0.1 0 1 0 0 0 -0.5 p/rect3.dat
+4 16 -5.8 -1 -1 -5.543 0 -2.296 -6 0 0 -6 -1 0
+5 24 -6 0 0 -6 -1 0 -5.543 0 2.296 -5.543 0 -2.296
+0 BFC INVERTNEXT
+1 16 0 -4 0 -5.5433 0 2.2961 0 4 0 -2.2961 0 -5.5433 p/1-8cyli.dat
+0 // mirrored
+2 24 -1.981 -4 -5.606 -2.296 -4 -5.543
+4 16 -1.981 -4 -5.606 -2.296 -4 -5.543 -2.679 -4 -6.467 -1.981 -4 -6.606
+2 24 -1.981 -2 -6.606 -2.679 -2 -6.467
+4 16 -1.981 -2 -6.606 -2.679 -2 -6.467 -2.679 0 -6.467 -1 -1 -6.8
+3 16 -1.981 -2 -6.606 -1 -1 -6.8 -1 -2 -6.8
+4 16 -2.679 0 -6.467 0 0 -7 0 -1 -7 -1 -1 -6.8
+1 16 0 -3 0 -2.6788 0 -6.4672 0 7 0 -6.4672 0 2.6788 p/t16o1429.dat
+1 16 0 -3 0 -4.9497 0 4.9497 0 -7 0 -4.9497 0 -4.9497 p/t16o1429.dat
+4 16 -1.981 -4 -6.606 -2.679 -4 -6.467 -2.825 -3.924 -6.821 -2.056 -3.924 -6.981
+4 16 -2.119 -3.707 -7.3 -2.056 -3.924 -6.981 -2.825 -3.924 -6.821 -2.95 -3.707 -7.12
+4 16 -2.119 -3.707 -7.3 -2.95 -3.707 -7.12 -3.033 -3.383 -7.321 -2.161 -3.383 -7.512
+4 16 -2.176 -3 -7.587 -2.161 -3.383 -7.512 -3.033 -3.383 -7.321 -3.062 -3 -7.391
+4 16 -2.161 -2.617 -7.512 -2.176 -3 -7.587 -3.062 -3 -7.391 -3.033 -2.617 -7.321
+4 16 -2.161 -2.617 -7.512 -3.033 -2.617 -7.321 -2.95 -2.293 -7.12 -2.119 -2.293 -7.3
+4 16 -2.056 -2.076 -6.981 -2.119 -2.293 -7.3 -2.95 -2.293 -7.12 -2.825 -2.076 -6.821
+4 16 -2.056 -2.076 -6.981 -2.825 -2.076 -6.821 -2.679 -2 -6.467 -1.981 -2 -6.606
+5 24 -1.981 -4 -6.606 -2.679 -4 -6.467 -1.981 -4 -5.606 -2.056 -3.924 -6.981
+5 24 -2.825 -3.924 -6.821 -2.056 -3.924 -6.981 -1.981 -4 -6.606 -2.95 -3.707 -7.12
+5 24 -2.95 -3.707 -7.12 -2.119 -3.707 -7.3 -2.056 -3.924 -6.981 -3.033 -3.383 -7.321
+5 24 -3.033 -3.383 -7.321 -2.161 -3.383 -7.512 -2.119 -3.707 -7.3 -3.062 -3 -7.391
+5 24 -3.062 -3 -7.391 -2.176 -3 -7.587 -2.161 -3.383 -7.512 -3.033 -2.617 -7.321
+5 24 -3.033 -2.617 -7.321 -2.161 -2.617 -7.512 -2.176 -3 -7.587 -2.95 -2.293 -7.12
+5 24 -2.95 -2.293 -7.12 -2.119 -2.293 -7.3 -2.161 -2.617 -7.512 -2.825 -2.076 -6.821
+5 24 -2.825 -2.076 -6.821 -2.056 -2.076 -6.981 -2.119 -2.293 -7.3 -2.679 -2 -6.467
+1 16 -1.981 -3 -6.606 0.9808 0.1951 0 0 0 1 -0.1951 0.9808 0 p/1-4ndis.dat
+1 16 -1.981 -3 -6.606 0.9808 0.1951 0 0 0 1 -0.1951 0.9808 0 p/1-4edge.dat
+1 16 -1.981 -3 -5.606 0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4edge.dat
+1 16 -1.981 -3 -5.606 0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4disc.dat
+1 16 -1.981 -3 -5.606 0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4cyli.dat
+1 16 -1.981 -3 -6.606 0 0.9808 -0.1951 -1 0 0 0 -0.1951 -0.9808 p/2-8sphe.dat
+4 16 -2.296 0 -5.543 -2.296 -4 -5.543 -1.981 -4 -5.606 -1.981 -3 -5.606
+4 16 -1 -3 -5.8 -1 -1 -5.8 -2.296 0 -5.543 -1.981 -3 -5.606
+2 24 -1 -1 -6.8 -1 -2 -6.8
+2 24 -1 -2 -6.8 -1 -3 -6.8
+2 24 -1 -3 -5.8 -1 -1 -5.8
+3 16 -1 -2 -6.8 -1 -3 -5.8 -1 -3 -6.8
+4 16 -1 -1 -6.8 -1 -1 -5.8 -1 -3 -5.8 -1 -2 -6.8
+1 16 -0.5 -1 -6.4 0 0 -0.5 0 1 0 0.5 0 0.1 p/rect3.dat
+4 16 0 0 -6 -2.296 0 -5.543 -1 -1 -5.8 0 -1 -6
+0 // condlines
+5 24 -6.467 0 -2.679 -6.467 -2 -2.679 -7 0 0 -4.95 0 -4.95
+5 24 -2.679 0 -6.467 -2.679 -2 -6.467 0 0 -7 -4.95 0 -4.95
+5 24 -5.543 -4 -2.296 -5.543 0 -2.296 -5.606 -4 -1.981 -4.243 -4 -4.243
+5 24 -2.296 -4 -5.543 -2.296 0 -5.543 -1.981 -4 -5.606 -4.243 -4 -4.243
+5 24 -6.606 -4 -1.981 -6.981 -3.924 -2.056 -6.821 -3.924 -2.825 -7.056 -3.841 -1.68
+5 24 -6.981 -3.924 -2.056 -7.3 -3.707 -2.119 -7.12 -3.707 -2.95 -7.321 -3.653 -1.733
+5 24 -7.3 -3.707 -2.119 -7.512 -3.383 -2.161 -7.321 -3.383 -3.033 -7.505 -3.383 -1.77
+5 24 -7.512 -3.383 -2.161 -7.587 -3 -2.176 -7.391 -3 -3.062 -7.587 -3 -1.786
+5 24 -7.587 -3 -2.176 -7.512 -2.617 -2.161 -7.321 -2.617 -3.033 -7.505 -2.617 -1.77
+5 24 -7.512 -2.617 -2.161 -7.3 -2.293 -2.119 -7.321 -2.347 -1.733 -7.12 -2.293 -2.95
+5 24 -7.3 -2.293 -2.119 -6.981 -2.076 -2.056 -6.821 -2.076 -2.825 -7.056 -2.159 -1.68
+5 24 -6.981 -2.076 -2.056 -6.606 -2 -1.981 -6.467 -2 -2.679 -6.681 -2.076 -1.606
+5 24 -1.981 -4 -6.606 -2.056 -3.924 -6.981 -2.825 -3.924 -6.821 -1.68 -3.841 -7.056
+5 24 -2.056 -3.924 -6.981 -2.119 -3.707 -7.3 -2.95 -3.707 -7.12 -1.733 -3.653 -7.321
+5 24 -2.119 -3.707 -7.3 -2.161 -3.383 -7.512 -3.033 -3.383 -7.321 -1.77 -3.383 -7.505
+5 24 -2.161 -3.383 -7.512 -2.176 -3 -7.587 -3.062 -3 -7.391 -1.786 -3 -7.587
+5 24 -2.176 -3 -7.587 -2.161 -2.617 -7.512 -3.033 -2.617 -7.321 -1.77 -2.617 -7.505
+5 24 -2.161 -2.617 -7.512 -2.119 -2.293 -7.3 -1.733 -2.347 -7.321 -2.95 -2.293 -7.12
+5 24 -2.119 -2.293 -7.3 -2.056 -2.076 -6.981 -2.825 -2.076 -6.821 -1.68 -2.159 -7.056
+5 24 -2.056 -2.076 -6.981 -1.981 -2 -6.606 -2.679 -2 -6.467 -1.606 -2.076 -6.681
+5 24 -6.786 -3.383 -1.075 -6.801 -3 -1 -5.801 -3 -1 -7.162 -3 -1.149
+5 24 -6.744 -3.707 -1.287 -6.786 -3.383 -1.075 -5.786 -3.383 -1.075 -7.145 -3.383 -1.231
+5 24 -6.681 -3.924 -1.606 -6.744 -3.707 -1.287 -5.744 -3.707 -1.287 -7.109 -3.653 -1.415
+5 24 -6.606 -4 -1.981 -6.681 -3.924 -1.606 -5.681 -3.924 -1.606 -7.056 -3.841 -1.68
+5 24 -1 -3 -6.801 -1.075 -3.383 -6.786 -1.075 -3.383 -5.786 -1.231 -3.383 -7.145
+5 24 -1.075 -3.383 -6.786 -1.287 -3.707 -6.744 -1.287 -3.707 -5.744 -1.415 -3.653 -7.109
+5 24 -1.287 -3.707 -6.744 -1.606 -3.924 -6.681 -1.606 -3.924 -5.681 -1.68 -3.841 -7.056
+5 24 -1.606 -3.924 -6.681 -1.981 -4 -6.606 -1.981 -4 -5.606 -2.056 -3.924 -6.981
+0 //
+2 24 1.981 -4 -5.606 2.296 -4 -5.543
+1 16 0 -4 0 2.2961 0 5.5433 0 1 0 -5.5433 0 2.2961 p/1-8edge.dat
+1 16 0 -4 0 0.3827 0 0.9239 0 1 0 -0.9239 0 0.3827 p/1-8ring6.dat
+4 16 1.981 -4 -6.606 2.679 -4 -6.467 2.296 -4 -5.543 1.981 -4 -5.606
+2 24 1.981 -2 -6.606 2.679 -2 -6.467
+1 16 0 -2 0 2.6788 0 6.4672 0 1 0 -6.4672 0 2.6788 p/1-8edge.dat
+1 16 0 -2 0 2.6788 0 6.4672 0 2 0 -6.4672 0 2.6788 p/1-8cyli.dat
+4 16 1 -1 -6.8 2.679 0 -6.467 2.679 -2 -6.467 1.981 -2 -6.606
+3 16 1 -2 -6.8 1 -1 -6.8 1.981 -2 -6.606
+4 16 1 -1 -6.8 0 -1 -7 0 0 -7 2.679 0 -6.467
+5 24 0 0 -7 0 -1 -7 -2.679 0 -6.467 2.679 0 -6.467
+1 16 0 -3 0 2.6788 0 6.4672 0 7 0 -6.4672 0 2.6788 p/t16o1429.dat
+1 16 0 -3 0 4.9497 0 -4.9497 0 -7 0 -4.9497 0 -4.9497 p/t16o1429.dat
+4 16 2.056 -3.924 -6.981 2.825 -3.924 -6.821 2.679 -4 -6.467 1.981 -4 -6.606
+4 16 2.95 -3.707 -7.12 2.825 -3.924 -6.821 2.056 -3.924 -6.981 2.119 -3.707 -7.3
+4 16 2.161 -3.383 -7.512 3.033 -3.383 -7.321 2.95 -3.707 -7.12 2.119 -3.707 -7.3
+4 16 3.062 -3 -7.391 3.033 -3.383 -7.321 2.161 -3.383 -7.512 2.176 -3 -7.587
+4 16 3.033 -2.617 -7.321 3.062 -3 -7.391 2.176 -3 -7.587 2.161 -2.617 -7.512
+4 16 2.119 -2.293 -7.3 2.95 -2.293 -7.12 3.033 -2.617 -7.321 2.161 -2.617 -7.512
+4 16 2.825 -2.076 -6.821 2.95 -2.293 -7.12 2.119 -2.293 -7.3 2.056 -2.076 -6.981
+4 16 1.981 -2 -6.606 2.679 -2 -6.467 2.825 -2.076 -6.821 2.056 -2.076 -6.981
+5 24 1.981 -4 -6.606 2.679 -4 -6.467 1.981 -4 -5.606 2.056 -3.924 -6.981
+5 24 2.825 -3.924 -6.821 2.056 -3.924 -6.981 1.981 -4 -6.606 2.95 -3.707 -7.12
+5 24 2.95 -3.707 -7.12 2.119 -3.707 -7.3 2.056 -3.924 -6.981 3.033 -3.383 -7.321
+5 24 3.033 -3.383 -7.321 2.161 -3.383 -7.512 2.119 -3.707 -7.3 3.062 -3 -7.391
+5 24 3.062 -3 -7.391 2.176 -3 -7.587 2.161 -3.383 -7.512 3.033 -2.617 -7.321
+5 24 3.033 -2.617 -7.321 2.161 -2.617 -7.512 2.176 -3 -7.587 2.95 -2.293 -7.12
+5 24 2.95 -2.293 -7.12 2.119 -2.293 -7.3 2.161 -2.617 -7.512 2.825 -2.076 -6.821
+5 24 2.825 -2.076 -6.821 2.056 -2.076 -6.981 2.119 -2.293 -7.3 2.679 -2 -6.467
+1 16 1.981 -3 -6.606 -0.9808 -0.1951 0 0 0 1 -0.1951 0.9808 0 p/1-4ndis.dat
+1 16 1.981 -3 -6.606 -0.9808 -0.1951 0 0 0 1 -0.1951 0.9808 0 p/1-4edge.dat
+1 16 1.981 -3 -5.606 -0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4edge.dat
+1 16 1.981 -3 -5.606 -0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4disc.dat
+1 16 1.981 -3 -5.606 -0.9808 0 0 0 0 -1 -0.1951 -1 0 p/1-4cyli.dat
+1 16 1.981 -3 -6.606 0 -0.9808 0.1951 -1 0 0 0 -0.1951 -0.9808 p/2-8sphe.dat
+4 16 2.296 0 -5.543 1 -1 -5.8 1 -3 -5.8 1.981 -3 -5.606
+4 16 1.981 -4 -5.606 2.296 -4 -5.543 2.296 0 -5.543 1.981 -3 -5.606
+2 24 1 -1 -6.8 1 -2 -6.8
+2 24 1 -2 -6.8 1 -3 -6.8
+2 24 1 -3 -5.8 1 -1 -5.8
+3 16 1 -3 -6.8 1 -3 -5.8 1 -2 -6.8
+4 16 1 -2 -6.8 1 -3 -5.8 1 -1 -5.8 1 -1 -6.8
+1 16 0.5 -1 -6.4 0 0 0.5 0 1 0 -0.5 0 0.1 p/rect3.dat
+4 16 1 -1 -5.8 2.296 0 -5.543 0 0 -6 0 -1 -6
+5 24 0 0 -6 0 -1 -6 -2.296 0 -5.543 2.296 0 -5.543
+0 BFC INVERTNEXT
+1 16 0 -4 0 2.2961 0 5.5433 0 4 0 -5.5433 0 2.2961 p/1-8cyli.dat
+0 // mirrored
+2 24 5.606 -4 -1.981 5.543 -4 -2.296
+4 16 5.606 -4 -1.981 5.543 -4 -2.296 6.467 -4 -2.679 6.606 -4 -1.981
+2 24 6.606 -2 -1.981 6.467 -2 -2.679
+4 16 6.606 -2 -1.981 6.467 -2 -2.679 6.467 0 -2.679 6.8 -1 -1
+3 16 6.606 -2 -1.981 6.8 -1 -1 6.8 -2 -1
+4 16 6.467 0 -2.679 7 0 0 7 -1 0 6.8 -1 -1
+1 16 0 -3 0 6.4672 0 -2.6788 0 7 0 -2.6788 0 -6.4672 p/t16o1429.dat
+1 16 0 -3 0 4.9497 0 4.9497 0 -7 0 -4.9497 0 4.9497 p/t16o1429.dat
+4 16 6.606 -4 -1.981 6.467 -4 -2.679 6.821 -3.924 -2.825 6.981 -3.924 -2.056
+4 16 7.3 -3.707 -2.119 6.981 -3.924 -2.056 6.821 -3.924 -2.825 7.12 -3.707 -2.95
+4 16 7.3 -3.707 -2.119 7.12 -3.707 -2.95 7.321 -3.383 -3.033 7.512 -3.383 -2.161
+4 16 7.587 -3 -2.176 7.512 -3.383 -2.161 7.321 -3.383 -3.033 7.391 -3 -3.062
+4 16 7.512 -2.617 -2.161 7.587 -3 -2.176 7.391 -3 -3.062 7.321 -2.617 -3.033
+4 16 7.512 -2.617 -2.161 7.321 -2.617 -3.033 7.12 -2.293 -2.95 7.3 -2.293 -2.119
+4 16 6.981 -2.076 -2.056 7.3 -2.293 -2.119 7.12 -2.293 -2.95 6.821 -2.076 -2.825
+4 16 6.981 -2.076 -2.056 6.821 -2.076 -2.825 6.467 -2 -2.679 6.606 -2 -1.981
+5 24 6.606 -4 -1.981 6.467 -4 -2.679 5.606 -4 -1.981 6.981 -3.924 -2.056
+5 24 6.821 -3.924 -2.825 6.981 -3.924 -2.056 6.606 -4 -1.981 7.12 -3.707 -2.95
+5 24 7.12 -3.707 -2.95 7.3 -3.707 -2.119 6.981 -3.924 -2.056 7.321 -3.383 -3.033
+5 24 7.321 -3.383 -3.033 7.512 -3.383 -2.161 7.3 -3.707 -2.119 7.391 -3 -3.062
+5 24 7.391 -3 -3.062 7.587 -3 -2.176 7.512 -3.383 -2.161 7.321 -2.617 -3.033
+5 24 7.321 -2.617 -3.033 7.512 -2.617 -2.161 7.587 -3 -2.176 7.12 -2.293 -2.95
+5 24 7.12 -2.293 -2.95 7.3 -2.293 -2.119 7.512 -2.617 -2.161 6.821 -2.076 -2.825
+5 24 6.821 -2.076 -2.825 6.981 -2.076 -2.056 7.3 -2.293 -2.119 6.467 -2 -2.679
+1 16 6.606 -3 -1.981 0.1951 -0.9808 0 0 0 1 0.9808 0.1951 0 p/1-4ndis.dat
+1 16 6.606 -3 -1.981 0.1951 -0.9808 0 0 0 1 0.9808 0.1951 0 p/1-4edge.dat
+1 16 5.606 -3 -1.981 0.1951 1 0 0 0 -1 0.9808 0 0 p/1-4edge.dat
+1 16 5.606 -3 -1.981 0.1951 1 0 0 0 -1 0.9808 0 0 p/1-4disc.dat
+1 16 5.606 -3 -1.981 0.1951 1 0 0 0 -1 0.9808 0 0 p/1-4cyli.dat
+1 16 6.606 -3 -1.981 0 0.1951 0.9808 -1 0 0 0 0.9808 -0.1951 p/2-8sphe.dat
+4 16 5.543 0 -2.296 5.543 -4 -2.296 5.606 -4 -1.981 5.606 -3 -1.981
+4 16 5.8 -3 -1 5.8 -1 -1 5.543 0 -2.296 5.606 -3 -1.981
+2 24 6.8 -1 -1 6.8 -2 -1
+2 24 6.8 -2 -1 6.8 -3 -1
+2 24 5.8 -3 -1 5.8 -1 -1
+3 16 6.8 -2 -1 5.8 -3 -1 6.8 -3 -1
+4 16 6.8 -1 -1 5.8 -1 -1 5.8 -3 -1 6.8 -2 -1
+1 16 6.4 -1 -0.5 -0.5 0 -0.1 0 1 0 0 0 -0.5 p/rect3.dat
+4 16 6 0 0 5.543 0 -2.296 5.8 -1 -1 6 -1 0
+0 // condlines
+5 24 2.679 0 -6.467 2.679 -2 -6.467 0 0 -7 4.95 0 -4.95
+5 24 6.467 0 -2.679 6.467 -2 -2.679 7 0 0 4.95 0 -4.95
+5 24 2.296 -4 -5.543 2.296 0 -5.543 1.981 -4 -5.606 4.243 -4 -4.243
+5 24 5.543 -4 -2.296 5.543 0 -2.296 5.606 -4 -1.981 4.243 -4 -4.243
+5 24 1.981 -4 -6.606 2.056 -3.924 -6.981 2.825 -3.924 -6.821 1.68 -3.841 -7.056
+5 24 2.056 -3.924 -6.981 2.119 -3.707 -7.3 2.95 -3.707 -7.12 1.733 -3.653 -7.321
+5 24 2.119 -3.707 -7.3 2.161 -3.383 -7.512 3.033 -3.383 -7.321 1.77 -3.383 -7.505
+5 24 2.161 -3.383 -7.512 2.176 -3 -7.587 3.062 -3 -7.391 1.786 -3 -7.587
+5 24 2.176 -3 -7.587 2.161 -2.617 -7.512 3.033 -2.617 -7.321 1.77 -2.617 -7.505
+5 24 2.161 -2.617 -7.512 2.119 -2.293 -7.3 1.733 -2.347 -7.321 2.95 -2.293 -7.12
+5 24 2.119 -2.293 -7.3 2.056 -2.076 -6.981 2.825 -2.076 -6.821 1.68 -2.159 -7.056
+5 24 2.056 -2.076 -6.981 1.981 -2 -6.606 2.679 -2 -6.467 1.606 -2.076 -6.681
+5 24 6.606 -4 -1.981 6.981 -3.924 -2.056 6.821 -3.924 -2.825 7.056 -3.841 -1.68
+5 24 6.981 -3.924 -2.056 7.3 -3.707 -2.119 7.12 -3.707 -2.95 7.321 -3.653 -1.733
+5 24 7.3 -3.707 -2.119 7.512 -3.383 -2.161 7.321 -3.383 -3.033 7.505 -3.383 -1.77
+5 24 7.512 -3.383 -2.161 7.587 -3 -2.176 7.391 -3 -3.062 7.587 -3 -1.786
+5 24 7.587 -3 -2.176 7.512 -2.617 -2.161 7.321 -2.617 -3.033 7.505 -2.617 -1.77
+5 24 7.512 -2.617 -2.161 7.3 -2.293 -2.119 7.321 -2.347 -1.733 7.12 -2.293 -2.95
+5 24 7.3 -2.293 -2.119 6.981 -2.076 -2.056 6.821 -2.076 -2.825 7.056 -2.159 -1.68
+5 24 6.981 -2.076 -2.056 6.606 -2 -1.981 6.467 -2 -2.679 6.681 -2.076 -1.606
+5 24 1.075 -3.383 -6.786 1 -3 -6.801 1 -3 -5.801 1.149 -3 -7.162
+5 24 1.287 -3.707 -6.744 1.075 -3.383 -6.786 1.075 -3.383 -5.786 1.231 -3.383 -7.145
+5 24 1.606 -3.924 -6.681 1.287 -3.707 -6.744 1.287 -3.707 -5.744 1.415 -3.653 -7.109
+5 24 1.981 -4 -6.606 1.606 -3.924 -6.681 1.606 -3.924 -5.681 1.68 -3.841 -7.056
+5 24 6.801 -3 -1 6.786 -3.383 -1.075 5.786 -3.383 -1.075 7.145 -3.383 -1.231
+5 24 6.786 -3.383 -1.075 6.744 -3.707 -1.287 5.744 -3.707 -1.287 7.109 -3.653 -1.415
+5 24 6.744 -3.707 -1.287 6.681 -3.924 -1.606 5.681 -3.924 -1.606 7.056 -3.841 -1.68
+5 24 6.681 -3.924 -1.606 6.606 -4 -1.981 5.606 -4 -1.981 6.981 -3.924 -2.056
+
+
+0 FILE p/2-8sphe.dat
+0 Sphere 0.25
+0 Name: 2-8sphe.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+0
+
+
+
+0 FILE p/t16o1429.dat
+0 Torus Outside  1 x 0.1429 x 0.0625
+0 Name: t16o1429.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Primitive UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+0 !HISTORY 2013-09-27 [MMR1988] Recreated to fix condlines
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Major Radius: 7
+0 // Tube(Minor) Radius: 1
+0 // Segments(Sweep): 1/16 = 0.0625
+0 // 1  9  0 0 0  1 0 0  0 1 0  0 0 1 4-4edge.dat
+0 // 1  12  1 0 0 0.1429 0 0  0 0 0.1429  0 1 0  4-4edge.dat
+
+4 16 1 0.1429 0 0.9239 0.1429 0.3827 0.9744 0.132 0.4036 1.0547 0.132 0
+4 16 1.0547 0.132 0 0.9744 0.132 0.4036 1.0172 0.101 0.4214 1.101 0.101 0
+4 16 1.101 0.101 0 1.0172 0.101 0.4214 1.0458 0.0547 0.4332 1.132 0.0547 0
+4 16 1.132 0.0547 0 1.0458 0.0547 0.4332 1.0559 0 0.4374 1.1429 0 0
+
+0 // conditional lines
+5 24 1 0.1429 0 0.9239 0.1429 0.3827 1.0547 0.132 0 0.9408 0.1429 0
+5 24 1 0.1429 0 1.0547 0.132 0 0.9239 0.1429 0.3827 1 0.1429 -0.4142
+5 24 1.0547 0.132 0 0.9744 0.132 0.4036 1.101 0.101 0 1 0.1429 0
+5 24 1.0547 0.132 0 1.101 0.101 0 0.9744 0.132 0.4036 1.0547 0.132 -0.4368
+5 24 1.101 0.101 0 1.0172 0.101 0.4214 1.132 0.0547 0 1.0547 0.132 0
+5 24 1.101 0.101 0 1.132 0.0547 0 1.0172 0.101 0.4214 1.101 0.101 -0.456
+5 24 1.132 0.0547 0 1.0458 0.0547 0.4332 1.1429 0 0 1.101 0.101 0
+5 24 1.132 0.0547 0 1.1429 0 0 1.0458 0.0547 0.4332 1.132 0.0547 -0.4689
+5 24 1.1429 0 0 1.0559 0 0.4374 1.1429 -0.0592 0 1.132 0.0547 0
+5 24 0.9239 0.1429 0.3827 0.9744 0.132 0.4036 0.7654 0.1429 0.7654 1 0.1429 0
+5 24 0.9744 0.132 0.4036 1.0172 0.101 0.4214 0.8072 0.132 0.8072 1.0547 0.132 0
+5 24 1.0172 0.101 0.4214 1.0458 0.0547 0.4332 0.8427 0.101 0.8427 1.101 0.101 0
+5 24 1.0458 0.0547 0.4332 1.0559 0 0.4374 0.8664 0.0547 0.8664 1.132 0.0547 0
+0 // Build by Primitive Generator 2
+
+0 FILE p/4-4ring7.dat
+0 Ring  7 x 1.0
+0 Name: 4-4ring7.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-04-05 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-08-26 [cwdee] Switch polygon winding and rename
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 -3.0616 0 7.3912 -2.6789 0 6.4673 0 0 7 0 0 8
+4 16 -5.6568 0 5.6568 -4.9497 0 4.9497 -2.6789 0 6.4673 -3.0616 0 7.3912
+4 16 -7.3912 0 3.0616 -6.4673 0 2.6789 -4.9497 0 4.9497 -5.6568 0 5.6568
+4 16 -8 0 0 -7 0 0 -6.4673 0 2.6789 -7.3912 0 3.0616
+4 16 -7.3912 0 -3.0616 -6.4673 0 -2.6789 -7 0 0 -8 0 0
+4 16 -5.6568 0 -5.6568 -4.9497 0 -4.9497 -6.4673 0 -2.6789 -7.3912 0 -3.0616
+4 16 -3.0616 0 -7.3912 -2.6789 0 -6.4673 -4.9497 0 -4.9497 -5.6568 0 -5.6568
+4 16 0 0 -8 0 0 -7 -2.6789 0 -6.4673 -3.0616 0 -7.3912
+4 16 3.0616 0 -7.3912 2.6789 0 -6.4673 0 0 -7 0 0 -8
+4 16 5.6568 0 -5.6568 4.9497 0 -4.9497 2.6789 0 -6.4673 3.0616 0 -7.3912
+4 16 7.3912 0 -3.0616 6.4673 0 -2.6789 4.9497 0 -4.9497 5.6568 0 -5.6568
+4 16 8 0 0 7 0 0 6.4673 0 -2.6789 7.3912 0 -3.0616
+4 16 7.3912 0 3.0616 6.4673 0 2.6789 7 0 0 8 0 0
+4 16 5.6568 0 5.6568 4.9497 0 4.9497 6.4673 0 2.6789 7.3912 0 3.0616
+4 16 3.0616 0 7.3912 2.6789 0 6.4673 4.9497 0 4.9497 5.6568 0 5.6568
+4 16 0 0 8 0 0 7 2.6789 0 6.4673 3.0616 0 7.3912
+0
+
+0 FILE p/2-4cylc.dat
+0 Cylinder Closed 0.5
+0 Name: 2-4cylc.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/2-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/2-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/2-4disc.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/2-4cyli.dat
+0
+
+0 FILE parts/s/87081s01.dat
+0 ~Brick  4 x  4 Round - 1/8
+0 Name: s\87081s01.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Subpart UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+0 // outside
+1 16 0 0 0 7 0 0 0 1 0 0 0 7 p/1-8edge.dat
+1 16 0 0 0 40 0 0 0 1 0 0 0 40 p/48/1-8edge.dat
+1 16 0 0 0 7 0 0 0 1 0 0 0 7 p/1-8ring1.dat
+1 16 0 0 0 14 0 0 0 1 0 0 0 14 p/48/1-8ring1.dat
+1 16 0 0 0 7 0 0 0 1 0 0 0 7 p/48/1-8ring4.dat
+1 16 0 0 0 5 0 0 0 1 0 0 0 5 p/48/1-8ring7.dat
+1 16 0 0 0 40 0 0 0 20 0 0 0 40 p/48/1-8cyli.dat
+1 16 0 8 0 7 0 0 0 1 0 0 0 7 p/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 7 0 0 0 8 0 0 0 7 p/1-8cyli.dat
+1 16 0 8 0 6 0 0 0 1 0 0 0 6 p/1-8edge.dat
+1 16 0 8 0 1 0 0 0 1 0 0 0 1 p/1-8ring6.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 6 0 0 0 12 0 0 0 6 p/1-8cyli.dat
+0 // inside
+1 16 0 4 0 10 0 0 0 1 0 0 0 10 p/1-8edge.dat
+1 16 0 4 0 36 0 0 0 1 0 0 0 36 p/48/1-8edge.dat
+1 16 0 4 0 7.0711 0 7.0711 0 -1 0 7.0711 0 -7.0711 p/1-8ring1.dat
+1 16 0 4 0 7.0711 0 7.0711 0 -1 0 7.0711 0 -7.0711 p/48/1-8ring2.dat
+1 16 0 4 0 4.2426 0 4.2426 0 -1 0 4.2426 0 -4.2426 p/48/1-8ring5.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 36 0 0 0 16 0 0 0 36 p/48/1-8cyli.dat
+1 16 0 10 0 10 0 0 0 1 0 0 0 10 p/1-8edge.dat
+1 16 0 4 0 10 0 0 0 6 0 0 0 10 p/1-8cyli.dat
+1 16 0 10 0 8 0 0 0 1 0 0 0 8 p/1-8edge.dat
+1 16 0 10 0 1.4142 0 1.4142 0 -1 0 1.4142 0 -1.4142 p/1-8ring4.dat
+1 16 0 10 0 8 0 0 0 10 0 0 0 8 p/1-8cyli.dat
+0 // halfstud
+1 16 19.998 4 19.998 4.2426 0 -4.2426 0 -20 0 -4.2426 0 -4.2426 p/1-4edge.dat
+1 16 19.998 24 19.998 4.2426 0 -4.2426 0 -20 0 -4.2426 0 -4.2426 p/1-4edge.dat
+1 16 19.998 4 19.998 5.6569 0 -5.6569 0 -20 0 -5.6569 0 -5.6569 p/1-4edge.dat
+1 16 19.998 24 19.998 5.6569 0 -5.6569 0 -20 0 -5.6569 0 -5.6569 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 19.998 24 19.998 4.2426 0 -4.2426 0 -20 0 -4.2426 0 -4.2426 p/1-4cyli.dat
+1 16 19.998 24 19.998 5.6569 0 -5.6569 0 -20 0 -5.6569 0 -5.6569 p/1-4cyli.dat
+1 16 19.998 24 19.998 1.4142 0 -1.4142 0 -5 0 -1.4142 0 -1.4142 p/1-4ring3.dat
+2 24 25.654 4 14.34 28.1284 4 16.8154
+2 24 24.24 4 15.754 26.7144 4 18.2294
+2 24 28.1284 4 16.8154 26.7144 4 18.2294
+1 16 24.947 14 15.048 -0.7071 2.47487 0 0 0 10 0.7071 2.47487 0 p/box4-7a.dat
+0 // studbase
+1 16 20 4 0 6 0 0 0 1 0 0 0 6 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 20 4 0 6 0 0 0 16 0 0 0 6 p/2-4cyli.dat
+1 16 20 4 0 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 20 4 0 8 0 0 0 16 0 0 0 8 p/2-4cyli.dat
+0 // corner
+1 16 0 20 0 28.2843 0 28.2843 0 -1 0 28.2843 0 -28.2843 p/48/1-48edge.dat
+1 16 0 20 0 28.5607 0 -21.9154 0 1 0 21.9154 0 28.5607 p/48/1-48edge.dat
+2 24 28.56 20 21.915 29.298 20 20.811
+2 24 31.733 20 24.349 32.174 20 23.689
+1 16 0 24 0 40 0 0 0 1 0 0 0 40 p/48/1-12edge.dat
+1 16 0 20 0 2.8284 0 2.8284 0 -1 0 2.8284 0 -2.8284 p/48/1-48rin9.dat
+4 16 28.56 20 21.915 31.733 20 24.349 32.174 20 23.689 29.298 20 20.811
+1 16 33.407 22 21.843 0 -14.764 -1.233 2 0 0 0 -9.864 1.8455 p/rect2a.dat
+1 16 30.736 22 22.25 0 0.7074 -1.438 2 0 0 0 -1 -1.439 p/rect3.dat
+1 16 30.236 22 19.405 0 0.8315 0.9395 2 0 0 0 1 -1.406 p/rect1.dat
+4 16 34.64 24 19.998 31.176 24 17.998 29.298 24 20.811 32.174 24 23.689
+1 16 0 20 0 40 0 0 0 4 0 0 0 40 p/48/1-12cyli.dat
+0 // dent
+2 24 33.259 20 13.776 32.434 20 15.451
+2 24 34.772 20 9.316 33.259 20 13.776
+2 24 35.196 20 7.184 34.772 20 9.316
+4 16 35.691 24 4.698 39.656 24 5.22 40 24 0 36 24 0
+3 16 38.636 24 10.352 39.656 24 5.22 35.691 24 4.698
+4 16 35.543 24 7.704 35.926 24 9.626 38.636 24 10.352 35.691 24 4.698
+3 16 35.691 24 4.698 35.196 24 7.184 35.543 24 7.704
+3 16 38.636 24 10.352 35.926 24 9.626 36 24 10
+3 16 36 24 10 35.543 24 12.296 38.636 24 10.352
+4 16 35.543 24 12.296 34.274 24 14.197 36.956 24 15.308 38.636 24 10.352
+4 16 34.243 24 14.243 34.64 24 20 36.956 24 15.308 34.274 24 14.197
+4 16 34.243 24 14.243 32.434 24 15.451 31.176 24 18 34.64 24 20
+4 16 35.926 20 9.626 35.543 20 7.704 35.196 20 7.184 34.772 20 9.318
+4 16 36 20 10 35.926 20 9.626 34.772 20 9.318 33.26 20 13.777
+4 16 33.26 20 13.777 34.274 20 14.197 35.543 20 12.296 36 20 10
+4 16 34.274 20 14.197 33.26 20 13.777 32.434 20 15.451 34.243 20 14.243
+1 16 35.845 22 2.349 0 0.9978 0.155 2 0 0 0 1 -2.349 p/rect1.dat
+1 16 35.443 22 5.941 -0.247 0.9808 0 0 0 2 1.243 1 0 p/rect2a.dat
+1 16 35.37 22 7.444 0.1735 2.08 0 0 0 2 0.26 -1.388 0 p/rect2p.dat
+1 16 35.772 22 8.852 0.2285 0.9808 0 0 0 2 1.148 -1 0 p/rect2p.dat
+1 16 35.772 22 11.148 -0.2285 0.9808 0 0 0 2 1.148 1 0 p/rect2p.dat
+1 16 34.893 22 13.27 -0.65 0.8317 0 0 0 2 0.9735 1 0 p/rect2p.dat
+1 16 33.339 22 14.847 0 0.5553 -0.9045 -2 0 0 0 1 0.604 p/rect3.dat
+1 16 31.805 22 16.725 0 0.8967 0.629 2 0 0 0 1 -1.2745 p/rect1.dat
+0 // optional
+5 24 36 24 0 36 20 0 36 24 -4.738 35.69 24 4.698
+5 24 35.69 24 4.698 35.69 20 4.698 36 24 0 34.772 24 9.317
+5 24 35.543 20 7.704 35.543 24 7.704 36 20 10 34.243 20 5.757
+5 24 36 20 10 36 24 10 35.543 20 12.296 35.543 20 7.704
+5 24 35.543 20 12.296 35.543 24 12.296 34.243 20 14.243 36 20 10
+5 24 34.243 20 14.243 34.243 24 14.243 32.296 20 15.543 35.543 20 12.296
+5 24 31.176 24 18 31.176 20 18 33.26 24 13.777 28.807 24 22.108
+0 // 
+0 //
+
+0 FILE p/48/1-48rin9.dat
+0 Hi-Res Ring  9 x 0.0208
+0 Name: 48\1-48rin9.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 9 0 0 10 0 0 9.914 0 1.305 8.9226 0 1.1745
+0
+
+0 FILE p/48/1-48edge.dat
+0 Hi-Res Circle 0.02083
+0 Name: 48\1-48edge.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1.0000 0.0000 0.0000 0.9914 0.0000 0.1305
+0
+
+0 FILE p/1-8ring4.dat
+0 Ring  4 x 0.125
+0 Name: 1-8ring4.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 4 0 0 5 0 0 4.6195 0 1.9135 3.6956 0 1.5308
+4 16 3.6956 0 1.5308 4.6195 0 1.9135 3.5355 0 3.5355 2.8284 0 2.8284
+
+0 end of file 
+
+
+
+0 FILE p/48/1-8ring5.dat
+0 Hi-Res Ring  5 x 0.125
+0 Name: 48\1-8ring5.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 5 0 0 6 0 0 5.9484 0 0.783 4.957 0 0.6525
+4 16 4.957 0 0.6525 5.9484 0 0.783 5.7954 0 1.5528 4.8295 0 1.294
+4 16 4.8295 0 1.294 5.7954 0 1.5528 5.5434 0 2.2962 4.6195 0 1.9135
+4 16 4.6195 0 1.9135 5.5434 0 2.2962 5.196 0 3 4.33 0 2.5
+4 16 4.33 0 2.5 5.196 0 3 4.7604 0 3.6528 3.967 0 3.044
+4 16 3.967 0 3.044 4.7604 0 3.6528 4.2426 0 4.2426 3.5355 0 3.5355
+
+0 end of file 
+
+
+
+0 FILE p/48/1-8ring2.dat
+0 Hi-Res Ring  2 x 0.125
+0 Name: 48\1-8ring2.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+4 16 2 0 0 3 0 0 2.9742 0 0.3915 1.9828 0 0.261
+4 16 1.9828 0 0.261 2.9742 0 0.3915 2.8977 0 0.7764 1.9318 0 0.5176
+4 16 1.9318 0 0.5176 2.8977 0 0.7764 2.7717 0 1.1481 1.8478 0 0.7654
+4 16 1.8478 0 0.7654 2.7717 0 1.1481 2.598 0 1.5 1.732 0 1
+4 16 1.732 0 1 2.598 0 1.5 2.3802 0 1.8264 1.5868 0 1.2176
+4 16 1.5868 0 1.2176 2.3802 0 1.8264 2.1213 0 2.1213 1.4142 0 1.4142
+
+0 // end of file
+
+0 FILE p/1-8ring6.dat
+0 Ring  6 x 0.125
+0 Name: 1-8ring6.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 7 0 0 6.4673 0 2.6789 5.5434 0 2.2962 6 0 0
+4 16 6.4673 0 2.6789 4.9497 0 4.9497 4.2426 0 4.2426 5.5434 0 2.2962
+
+0 FILE p/48/1-8ring7.dat
+0 Hi-Res Ring  7 x 0.125
+0 Name: 48\1-8ring7.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+4 16 7 0 0 8 0 0 7.9312 0 1.044 6.9398 0 0.9135
+4 16 6.9398 0 0.9135 7.9312 0 1.044 7.7272 0 2.0704 6.7613 0 1.8116
+4 16 6.7613 0 1.8116 7.7272 0 2.0704 7.3912 0 3.0616 6.4673 0 2.6789
+4 16 6.4673 0 2.6789 7.3912 0 3.0616 6.928 0 4 6.062 0 3.5
+4 16 6.062 0 3.5 6.928 0 4 6.3472 0 4.8704 5.5538 0 4.2616
+4 16 5.5538 0 4.2616 6.3472 0 4.8704 5.6568 0 5.6568 4.9497 0 4.9497
+0
+
+0 FILE p/48/1-8ring4.dat
+0 Hi-Res Ring  4 x 0.125
+0 Name: 48\1-8ring4.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 4 0 0 5 0 0 4.957 0 0.6525 3.9656 0 0.522
+4 16 3.9656 0 0.522 4.957 0 0.6525 4.8295 0 1.294 3.8636 0 1.0352
+4 16 3.8636 0 1.0352 4.8295 0 1.294 4.6195 0 1.9135 3.6956 0 1.5308
+4 16 3.6956 0 1.5308 4.6195 0 1.9135 4.33 0 2.5 3.464 0 2
+4 16 3.464 0 2 4.33 0 2.5 3.967 0 3.044 3.1736 0 2.4352
+4 16 3.1736 0 2.4352 3.967 0 3.044 3.5355 0 3.5355 2.8284 0 2.8284
+0
+
+0 FILE p/48/1-8ring1.dat
+0 Hi-Res Ring  1 x 0.125
+0 Name: 48\1-8ring1.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 1 0 0 2 0 0 1.9828 0 0.261 0.9914 0 0.1305
+4 16 0.9914 0 0.1305 1.9828 0 0.261 1.9318 0 0.5176 0.9659 0 0.2588
+4 16 0.9659 0 0.2588 1.9318 0 0.5176 1.8478 0 0.7654 0.9239 0 0.3827
+4 16 0.9239 0 0.3827 1.8478 0 0.7654 1.732 0 1 0.866 0 0.5
+4 16 0.866 0 0.5 1.732 0 1 1.5868 0 1.2176 0.7934 0 0.6088
+4 16 0.7934 0 0.6088 1.5868 0 1.2176 1.4142 0 1.4142 0.7071 0 0.7071
+0
+
+0 FILE p/1-8ring1.dat
+0 Ring  1 x 0.125
+0 Name: 1-8ring1.dat
+0 Author: Bernd Broich [bbroich]
+0 !LDRAW_ORG Primitive UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-12-27 [sbliss] Updated for BFC compliance
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 1.8478 0 0.7654 0.9239 0 0.3827 1 0 0 2 0 0
+4 16 1.4142 0 1.4142 0.7071 0 0.7071 0.9239 0 0.3827 1.8478 0 0.7654
+0
+
+0 FILE parts/30516.dat
+0 ~Turntable  4 x  4 Locking Grooved Base
+0 Name: 30516.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/30516s01.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/30516s01.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 parts/s/30516s01.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 parts/s/30516s01.dat
+1 16 30 4 0 1 0 0 0 -7 0 0 0 1 p/stud3.dat
+1 16 30 4 -20 1 0 0 0 -7 0 0 0 1 p/stud3.dat
+1 16 30 4 20 1 0 0 0 -7 0 0 0 1 p/stud3.dat
+1 16 -30 4 0 -1 0 0 0 -7 0 0 0 -1 p/stud3.dat
+1 16 -30 4 20 -1 0 0 0 -7 0 0 0 -1 p/stud3.dat
+1 16 -30 4 -20 -1 0 0 0 -7 0 0 0 -1 p/stud3.dat
+1 16 -40 16 0 0 1 0 0 0 16 40 0 0 p/rect.dat
+1 16 40 16 0 0 -1 0 0 0 16 40 0 0 p/rect.dat
+2 24 40 0 40 -40 0 40
+2 24 40 0 -40 -40 0 -40
+1 16 0 5.5 -28 -20 0 0 0 2.5 0 0 0 12 p/box2-5.dat
+1 16 0 5.5 28 20 0 0 0 2.5 0 0 0 -12 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 30 32 0 0 0 -6 0 -28 0 36 0 0 p/box5.dat
+0 BFC INVERTNEXT
+1 16 -30 32 0 0 0 -6 0 -28 0 36 0 0 p/box5.dat
+2 24 40 32 -40 20 32 -40
+2 24 -40 32 -40 -20 32 -40
+2 24 40 32 40 20 32 40
+2 24 -40 32 40 -20 32 40
+1 16 20 28 -30 0 -4 0 0 0 4 10 0 0 p/box5-4a.dat
+1 16 20 28 30 0 -4 0 0 0 4 10 0 0 p/box5-4a.dat
+1 16 -20 28 30 0 4 0 0 0 4 -10 0 0 p/box5-4a.dat
+1 16 -20 28 -30 0 4 0 0 0 4 -10 0 0 p/box5-4a.dat
+1 16 -20 28 0 0 -1 0 0 0 4 -20 0 0 p/rect3.dat
+1 16 20 28 0 0 1 0 0 0 4 -20 0 0 p/rect3.dat
+1 16 20 16 0 0 1 0 8 0 0 0 0 40 p/rect2p.dat
+1 16 -20 16 0 0 -1 0 8 0 0 0 0 -40 p/rect2p.dat
+1 16 20 5.5 0 0 1 0 -2.5 0 0 0 0 -16 p/rect1.dat
+1 16 -20 5.5 0 0 -1 0 -2.5 0 0 0 0 16 p/rect1.dat
+2 24 20 24 -40 20 24 -20
+2 24 -20 24 -40 -20 24 -20
+2 24 -20 24 40 -20 24 20
+2 24 20 24 40 20 24 20
+4 16 40 0 -40 20 8 -40 20 32 -40 40 32 -40
+4 16 -40 32 -40 -20 32 -40 -20 8 -40 -40 0 -40
+4 16 -40 0 40 -20 8 40 -20 32 40 -40 32 40
+4 16 40 32 40 20 32 40 20 8 40 40 0 40
+4 16 -40 0 -40 -20 8 -40 20 8 -40 40 0 -40
+4 16 40 0 40 20 8 40 -20 8 40 -40 0 40
+4 16 40 32 40 40 32 -40 36 32 -36 36 32 36
+4 16 20 32 -40 20 32 40 24 32 36 24 32 -36
+4 16 40 32 -40 20 32 -40 24 32 -36 36 32 -36
+4 16 20 32 40 40 32 40 36 32 36 24 32 36
+4 16 -40 32 -40 -40 32 40 -36 32 36 -36 32 -36
+4 16 -20 32 40 -20 32 -40 -24 32 -36 -24 32 36
+4 16 -40 32 40 -20 32 40 -24 32 36 -36 32 36
+4 16 -20 32 -40 -40 32 -40 -36 32 -36 -24 32 -36
+1 16 0 0 0 40 0 0 0 1 0 0 0 40 p/4-4ndis.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4ring9.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4rin17.dat
+1 16 0 0 0 1.41421 0 1.41421 0 1 0 -1.41421 0 1.41421 p/1-4rin16.dat
+1 16 0 0 0 -1.41421 0 -1.41421 0 1 0 1.41421 0 -1.41421 p/1-4rin16.dat
+1 16 0 -13 0 14 0 0 0 1 0 0 0 14 p/4-4edge.dat
+1 16 0 -13 0 14 0 0 0 13 0 0 0 14 p/4-4cyli.dat
+1 16 0 0 0 14 0 0 0 1 0 0 0 14 p/4-4edge.dat
+1 16 0 0 0 14 0 0 0 1 0 0 0 14 p/4-4ndis.dat
+1 16 0 -13 0 12 0 0 0 1 0 0 0 12 p/4-4edge.dat
+1 16 0 -11 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 -13 0 2 0 0 0 1 0 0 0 2 p/4-4ring6.dat
+0 BFC INVERTNEXT
+1 16 0 -13 0 2 0 0 0 2 0 0 0 2 p/4-4con5.dat
+1 16 0 -2 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -11 0 10 0 0 0 9 0 0 0 10 p/4-4cyli.dat
+1 16 0 -2 0 12 0 0 0 1 0 0 0 12 p/4-4edge.dat
+1 16 0 -2 0 2 0 0 0 -1 0 0 0 2 p/4-4ring5.dat
+1 16 0 3 0 12 0 0 0 1 0 0 0 12 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -2 0 12 0 0 0 5 0 0 0 12 p/4-4cyli.dat
+1 16 0 3 0 12 0 0 0 -1 0 0 0 12 p/4-4ndis.dat
+4 16 20 3 16 20 3 -16 12 3 -12 12 3 12
+4 16 -20 3 -16 -20 3 16 -12 3 12 -12 3 -12
+4 16 20 3 -16 -20 3 -16 -12 3 -12 12 3 -12
+4 16 -20 3 16 20 3 16 12 3 12 -12 3 12
+2 24 34 28 0 33.802 28 1
+2 24 34 28 0 33.802 28 -1
+2 24 33.802 4 -1 33.802 28 -1
+2 24 33.802 4 1 33.802 28 1
+2 24 33.802 4 1 36 4 1
+4 16 36 28 1 36 28 -1 33.802 28 -1 33.802 28 1
+4 16 33.802 28 1 33.802 4 1 36 4 1 36 28 1
+4 16 36 28 -1 36 4 -1 33.802 4 -1 33.802 28 -1
+2 24 33.802 4 -1 36 4 -1
+2 24 33.802 28 -1 36 28 -1
+2 24 33.802 28 1 36 28 1
+2 24 36 28 -1 36 28 1
+2 24 36 28 -1 36 4 -1
+2 24 36 28 1 36 4 1
+2 24 26 28 0 26.198 28 -1
+2 24 26 28 0 26.198 28 1
+2 24 26.198 4 1 26.198 28 1
+2 24 26.198 4 -1 26.198 28 -1
+2 24 26.198 4 -1 24 4 -1
+4 16 24 28 -1 24 28 1 26.198 28 1 26.198 28 -1
+4 16 26.198 28 -1 26.198 4 -1 24 4 -1 24 28 -1
+4 16 24 28 1 24 4 1 26.198 4 1 26.198 28 1
+2 24 26.198 4 1 24 4 1
+2 24 26.198 28 1 24 28 1
+2 24 26.198 28 -1 24 28 -1
+2 24 24 28 1 24 28 -1
+2 24 24 28 1 24 4 1
+2 24 24 28 -1 24 4 -1
+2 24 34 28 -20 33.802 28 -19
+2 24 34 28 -20 33.802 28 -21
+2 24 33.802 4 -21 33.802 28 -21
+2 24 33.802 4 -19 33.802 28 -19
+2 24 33.802 4 -19 36 4 -19
+4 16 36 28 -19 36 28 -21 33.802 28 -21 33.802 28 -19
+4 16 33.802 28 -19 33.802 4 -19 36 4 -19 36 28 -19
+4 16 36 28 -21 36 4 -21 33.802 4 -21 33.802 28 -21
+2 24 33.802 4 -21 36 4 -21
+2 24 33.802 28 -21 36 28 -21
+2 24 33.802 28 -19 36 28 -19
+2 24 36 28 -21 36 28 -19
+2 24 36 28 -21 36 4 -21
+2 24 36 28 -19 36 4 -19
+2 24 26 28 -20 26.198 28 -21
+2 24 26 28 -20 26.198 28 -19
+2 24 26.198 4 -19 26.198 28 -19
+2 24 26.198 4 -21 26.198 28 -21
+2 24 26.198 4 -21 24 4 -21
+4 16 24 28 -21 24 28 -19 26.198 28 -19 26.198 28 -21
+4 16 26.198 28 -21 26.198 4 -21 24 4 -21 24 28 -21
+4 16 24 28 -19 24 4 -19 26.198 4 -19 26.198 28 -19
+2 24 26.198 4 -19 24 4 -19
+2 24 26.198 28 -19 24 28 -19
+2 24 26.198 28 -21 24 28 -21
+2 24 24 28 -19 24 28 -21
+2 24 24 28 -19 24 4 -19
+2 24 24 28 -21 24 4 -21
+2 24 34 28 20 33.802 28 21
+2 24 34 28 20 33.802 28 19
+2 24 33.802 4 19 33.802 28 19
+2 24 33.802 4 21 33.802 28 21
+2 24 33.802 4 21 36 4 21
+4 16 36 28 21 36 28 19 33.802 28 19 33.802 28 21
+4 16 33.802 28 21 33.802 4 21 36 4 21 36 28 21
+4 16 36 28 19 36 4 19 33.802 4 19 33.802 28 19
+2 24 33.802 4 19 36 4 19
+2 24 33.802 28 19 36 28 19
+2 24 33.802 28 21 36 28 21
+2 24 36 28 19 36 28 21
+2 24 36 28 19 36 4 19
+2 24 36 28 21 36 4 21
+2 24 26 28 20 26.198 28 19
+2 24 26 28 20 26.198 28 21
+2 24 26.198 4 21 26.198 28 21
+2 24 26.198 4 19 26.198 28 19
+2 24 26.198 4 19 24 4 19
+4 16 24 28 19 24 28 21 26.198 28 21 26.198 28 19
+4 16 26.198 28 19 26.198 4 19 24 4 19 24 28 19
+4 16 24 28 21 24 4 21 26.198 4 21 26.198 28 21
+2 24 26.198 4 21 24 4 21
+2 24 26.198 28 21 24 28 21
+2 24 26.198 28 19 24 28 19
+2 24 24 28 21 24 28 19
+2 24 24 28 21 24 4 21
+2 24 24 28 19 24 4 19
+2 24 -26 28 0 -26.198 28 1
+2 24 -26 28 0 -26.198 28 -1
+2 24 -26.198 4 -1 -26.198 28 -1
+2 24 -26.198 4 1 -26.198 28 1
+2 24 -26.198 4 1 -24 4 1
+4 16 -24 28 1 -24 28 -1 -26.198 28 -1 -26.198 28 1
+4 16 -26.198 28 1 -26.198 4 1 -24 4 1 -24 28 1
+4 16 -24 28 -1 -24 4 -1 -26.198 4 -1 -26.198 28 -1
+2 24 -26.198 4 -1 -24 4 -1
+2 24 -26.198 28 -1 -24 28 -1
+2 24 -26.198 28 1 -24 28 1
+2 24 -24 28 -1 -24 28 1
+2 24 -24 28 -1 -24 4 -1
+2 24 -24 28 1 -24 4 1
+2 24 -34 28 0 -33.802 28 -1
+2 24 -34 28 0 -33.802 28 1
+2 24 -33.802 4 1 -33.802 28 1
+2 24 -33.802 4 -1 -33.802 28 -1
+2 24 -33.802 4 -1 -36 4 -1
+4 16 -36 28 -1 -36 28 1 -33.802 28 1 -33.802 28 -1
+4 16 -33.802 28 -1 -33.802 4 -1 -36 4 -1 -36 28 -1
+4 16 -36 28 1 -36 4 1 -33.802 4 1 -33.802 28 1
+2 24 -33.802 4 1 -36 4 1
+2 24 -33.802 28 1 -36 28 1
+2 24 -33.802 28 -1 -36 28 -1
+2 24 -36 28 1 -36 28 -1
+2 24 -36 28 1 -36 4 1
+2 24 -36 28 -1 -36 4 -1
+2 24 -26 28 -20 -26.198 28 -19
+2 24 -26 28 -20 -26.198 28 -21
+2 24 -26.198 4 -21 -26.198 28 -21
+2 24 -26.198 4 -19 -26.198 28 -19
+2 24 -26.198 4 -19 -24 4 -19
+4 16 -24 28 -19 -24 28 -21 -26.198 28 -21 -26.198 28 -19
+4 16 -26.198 28 -19 -26.198 4 -19 -24 4 -19 -24 28 -19
+4 16 -24 28 -21 -24 4 -21 -26.198 4 -21 -26.198 28 -21
+2 24 -26.198 4 -21 -24 4 -21
+2 24 -26.198 28 -21 -24 28 -21
+2 24 -26.198 28 -19 -24 28 -19
+2 24 -24 28 -21 -24 28 -19
+2 24 -24 28 -21 -24 4 -21
+2 24 -24 28 -19 -24 4 -19
+2 24 -34 28 -20 -33.802 28 -21
+2 24 -34 28 -20 -33.802 28 -19
+2 24 -33.802 4 -19 -33.802 28 -19
+2 24 -33.802 4 -21 -33.802 28 -21
+2 24 -33.802 4 -21 -36 4 -21
+4 16 -36 28 -21 -36 28 -19 -33.802 28 -19 -33.802 28 -21
+4 16 -33.802 28 -21 -33.802 4 -21 -36 4 -21 -36 28 -21
+4 16 -36 28 -19 -36 4 -19 -33.802 4 -19 -33.802 28 -19
+2 24 -33.802 4 -19 -36 4 -19
+2 24 -33.802 28 -19 -36 28 -19
+2 24 -33.802 28 -21 -36 28 -21
+2 24 -36 28 -19 -36 28 -21
+2 24 -36 28 -19 -36 4 -19
+2 24 -36 28 -21 -36 4 -21
+2 24 -26 28 20 -26.198 28 21
+2 24 -26 28 20 -26.198 28 19
+2 24 -26.198 4 19 -26.198 28 19
+2 24 -26.198 4 21 -26.198 28 21
+2 24 -26.198 4 21 -24 4 21
+4 16 -24 28 21 -24 28 19 -26.198 28 19 -26.198 28 21
+4 16 -26.198 28 21 -26.198 4 21 -24 4 21 -24 28 21
+4 16 -24 28 19 -24 4 19 -26.198 4 19 -26.198 28 19
+2 24 -26.198 4 19 -24 4 19
+2 24 -26.198 28 19 -24 28 19
+2 24 -26.198 28 21 -24 28 21
+2 24 -24 28 19 -24 28 21
+2 24 -24 28 19 -24 4 19
+2 24 -24 28 21 -24 4 21
+2 24 -34 28 20 -33.802 28 19
+2 24 -34 28 20 -33.802 28 21
+2 24 -33.802 4 21 -33.802 28 21
+2 24 -33.802 4 19 -33.802 28 19
+2 24 -33.802 4 19 -36 4 19
+4 16 -36 28 19 -36 28 21 -33.802 28 21 -33.802 28 19
+4 16 -33.802 28 19 -33.802 4 19 -36 4 19 -36 28 19
+4 16 -36 28 21 -36 4 21 -33.802 4 21 -33.802 28 21
+2 24 -33.802 4 21 -36 4 21
+2 24 -33.802 28 21 -36 28 21
+2 24 -33.802 28 19 -36 28 19
+2 24 -36 28 21 -36 28 19
+2 24 -36 28 21 -36 4 21
+2 24 -36 28 19 -36 4 19
+
+0 FILE p/4-4ring5.dat
+0 Ring  5 x 1.0
+0 Name: 4-4ring5.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-23 [pneaster] resequenced quads, corrected winding.
+0 !HISTORY 2001-12-29 [pneaster] Added BFC.
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 6 0 0 5.5433 0 2.2961 4.6195 0 1.9135 5 0 0
+4 16 5.5433 0 2.2961 4.2426 0 4.2426 3.5355 0 3.5355 4.6195 0 1.9135
+4 16 4.2426 0 4.2426 2.2961 0 5.5433 1.9135 0 4.6195 3.5355 0 3.5355
+4 16 2.2961 0 5.5433 0 0 6 0 0 5 1.9135 0 4.6195
+4 16 0 0 6 -2.2961 0 5.5433 -1.9135 0 4.6195 0 0 5
+4 16 -2.2961 0 5.5433 -4.2426 0 4.2426 -3.5355 0 3.5355 -1.9135 0 4.6195
+4 16 -4.2426 0 4.2426 -5.5433 0 2.2961 -4.6195 0 1.9135 -3.5355 0 3.5355
+4 16 -5.5433 0 2.2961 -6 0 0 -5 0 0 -4.6195 0 1.9135
+4 16 -6 0 0 -5.5433 0 -2.2961 -4.6195 0 -1.9135 -5 0 0
+4 16 -5.5433 0 -2.2961 -4.2426 0 -4.2426 -3.5355 0 -3.5355 -4.6195 0 -1.9135
+4 16 -4.2426 0 -4.2426 -2.2961 0 -5.5433 -1.9135 0 -4.6195 -3.5355 0 -3.5355
+4 16 -2.2961 0 -5.5433 0 0 -6 0 0 -5 -1.9135 0 -4.6195
+4 16 0 0 -6 2.2961 0 -5.5433 1.9135 0 -4.6195 0 0 -5
+4 16 2.2961 0 -5.5433 4.2426 0 -4.2426 3.5355 0 -3.5355 1.9135 0 -4.6195
+4 16 4.2426 0 -4.2426 5.5433 0 -2.2961 4.6195 0 -1.9135 3.5355 0 -3.5355
+4 16 5.5433 0 -2.2961 6 0 0 5 0 0 4.6195 0 -1.9135
+
+0 FILE p/4-4con5.dat
+0 Cone  5 x 1.0
+0 Name: 4-4con5.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 5 1 0 6 0 0 4.6195 1 1.9135 4.6195 1 -1.9135
+5 24 4.6195 1 1.9135 5.5434 0 2.2962 3.5355 1 3.5355 5 1 0
+5 24 3.5355 1 3.5355 4.2426 0 4.2426 1.9135 1 4.6195 4.6195 1 1.9135
+5 24 1.9135 1 4.6195 2.2962 0 5.5434 0 1 5 3.5355 1 3.5355
+5 24 0 1 5 0 0 6 -1.9135 1 4.6195 1.9135 1 4.6195
+5 24 -1.9135 1 4.6195 -2.2962 0 5.5434 -3.5355 1 3.5355 0 1 5
+5 24 -3.5355 1 3.5355 -4.2426 0 4.2426 -4.6195 1 1.9135 -1.9135 1 4.6195
+5 24 -4.6195 1 1.9135 -5.5434 0 2.2962 -5 1 0 -3.5355 1 3.5355
+5 24 -5 1 0 -6 0 0 -4.6195 1 -1.9135 -4.6195 1 1.9135
+5 24 -4.6195 1 -1.9135 -5.5434 0 -2.2962 -3.5355 1 -3.5355 -5 1 0
+5 24 -3.5355 1 -3.5355 -4.2426 0 -4.2426 -1.9135 1 -4.6195 -4.6195 1 -1.9135
+5 24 -1.9135 1 -4.6195 -2.2962 0 -5.5434 0 1 -5 -3.5355 1 -3.5355
+5 24 0 1 -5 0 0 -6 1.9135 1 -4.6195 -1.9135 1 -4.6195
+5 24 1.9135 1 -4.6195 2.2962 0 -5.5434 3.5355 1 -3.5355 0 1 -5
+5 24 3.5355 1 -3.5355 4.2426 0 -4.2426 4.6195 1 -1.9135 1.9135 1 -4.6195
+5 24 4.6195 1 -1.9135 5.5434 0 -2.2962 5 1 0 3.5355 1 -3.5355
+
+4 16 5 1 0 4.6195 1 1.9135 5.5434 0 2.2962 6 0 0
+4 16 4.6195 1 1.9135 3.5355 1 3.5355 4.2426 0 4.2426 5.5434 0 2.2962
+4 16 3.5355 1 3.5355 1.9135 1 4.6195 2.2962 0 5.5434 4.2426 0 4.2426
+4 16 1.9135 1 4.6195 0 1 5 0 0 6 2.2962 0 5.5434
+4 16 0 1 5 -1.9135 1 4.6195 -2.2962 0 5.5434 0 0 6
+4 16 -1.9135 1 4.6195 -3.5355 1 3.5355 -4.2426 0 4.2426 -2.2962 0 5.5434
+4 16 -3.5355 1 3.5355 -4.6195 1 1.9135 -5.5434 0 2.2962 -4.2426 0 4.2426
+4 16 -4.6195 1 1.9135 -5 1 0 -6 0 0 -5.5434 0 2.2962
+4 16 -5 1 0 -4.6195 1 -1.9135 -5.5434 0 -2.2962 -6 0 0
+4 16 -4.6195 1 -1.9135 -3.5355 1 -3.5355 -4.2426 0 -4.2426 -5.5434 0 -2.2962
+4 16 -3.5355 1 -3.5355 -1.9135 1 -4.6195 -2.2962 0 -5.5434 -4.2426 0 -4.2426
+4 16 -1.9135 1 -4.6195 0 1 -5 0 0 -6 -2.2962 0 -5.5434
+4 16 0 1 -5 1.9135 1 -4.6195 2.2962 0 -5.5434 0 0 -6
+4 16 1.9135 1 -4.6195 3.5355 1 -3.5355 4.2426 0 -4.2426 2.2962 0 -5.5434
+4 16 3.5355 1 -3.5355 4.6195 1 -1.9135 5.5434 0 -2.2962 4.2426 0 -4.2426
+4 16 4.6195 1 -1.9135 5 1 0 6 0 0 5.5434 0 -2.2962
+0
+
+
+0 FILE p/4-4ring6.dat
+0 Ring  6 x 1.0
+0 Name: 4-4ring6.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-23 [pneaster] resequenced quads, corrected winding.
+0 !HISTORY 2001-11-30 [PTadmin] Official Update 2001-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 7 0 0 6.4672 0 2.6788 5.5433 0 2.2961 6 0 0
+4 16 6.4672 0 2.6788 4.9497 0 4.9497 4.2426 0 4.2426 5.5433 0 2.2961
+4 16 4.9497 0 4.9497 2.6788 0 6.4672 2.2961 0 5.5433 4.2426 0 4.2426
+4 16 2.6788 0 6.4672 0 0 7 0 0 6 2.2961 0 5.5433
+4 16 0 0 7 -2.6788 0 6.4672 -2.2961 0 5.5433 0 0 6
+4 16 -2.6788 0 6.4672 -4.9497 0 4.9497 -4.2426 0 4.2426 -2.2961 0 5.5433
+4 16 -4.9497 0 4.9497 -6.4672 0 2.6788 -5.5433 0 2.2961 -4.2426 0 4.2426
+4 16 -6.4672 0 2.6788 -7 0 0 -6 0 0 -5.5433 0 2.2961
+4 16 -7 0 0 -6.4672 0 -2.6788 -5.5433 0 -2.2961 -6 0 0
+4 16 -6.4672 0 -2.6788 -4.9497 0 -4.9497 -4.2426 0 -4.2426 -5.5433 0 -2.2961
+4 16 -4.9497 0 -4.9497 -2.6788 0 -6.4672 -2.2961 0 -5.5433 -4.2426 0 -4.2426
+4 16 -2.6788 0 -6.4672 0 0 -7 0 0 -6 -2.2961 0 -5.5433
+4 16 0 0 -7 2.6788 0 -6.4672 2.2961 0 -5.5433 0 0 -6
+4 16 2.6788 0 -6.4672 4.9497 0 -4.9497 4.2426 0 -4.2426 2.2961 0 -5.5433
+4 16 4.9497 0 -4.9497 6.4672 0 -2.6788 5.5433 0 -2.2961 4.2426 0 -4.2426
+4 16 6.4672 0 -2.6788 7 0 0 6 0 0 5.5433 0 -2.2961
+
+0 FILE p/1-4rin16.dat
+0 Ring 16 x 0.25
+0 Name: 1-4rin16.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 17 0 0 15.706 0 6.5056 14.7821 0 6.1229 16 0 0
+4 16 15.706 0 6.5056 12.0208 0 12.0208 11.3137 0 11.3137 14.7821 0 6.1229
+4 16 12.0208 0 12.0208 6.5056 0 15.706 6.1229 0 14.7821 11.3137 0 11.3137
+4 16 6.5056 0 15.706 0 0 17 0 0 16 6.1229 0 14.7821
+
+0 FILE p/4-4rin17.dat
+0 Ring 17 x 1.0
+0 Name: 4-4rin17.dat
+0 Author: Miklos Hosszu [hmick]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 18 0 0 16.6302 0 6.8886 15.7063 0 6.5059 17 0 0
+4 16 16.6302 0 6.8886 12.7278 0 12.7278 12.0207 0 12.0207 15.7063 0 6.5059
+4 16 12.7278 0 12.7278 6.8886 0 16.6302 6.5059 0 15.7063 12.0207 0 12.0207
+4 16 6.8886 0 16.6302 0 0 18 0 0 17 6.5059 0 15.7063
+4 16 0 0 18 -6.8886 0 16.6302 -6.5059 0 15.7063 0 0 17
+4 16 -6.8886 0 16.6302 -12.7278 0 12.7278 -12.0207 0 12.0207 -6.5059 0 15.7063
+4 16 -12.7278 0 12.7278 -16.6302 0 6.8886 -15.7063 0 6.5059 -12.0207 0 12.0207
+4 16 -16.6302 0 6.8886 -18 0 0 -17 0 0 -15.7063 0 6.5059
+4 16 -18 0 0 -16.6302 0 -6.8886 -15.7063 0 -6.5059 -17 0 0
+4 16 -16.6302 0 -6.8886 -12.7278 0 -12.7278 -12.0207 0 -12.0207 -15.7063 0 -6.5059
+4 16 -12.7278 0 -12.7278 -6.8886 0 -16.6302 -6.5059 0 -15.7063 -12.0207 0 -12.0207
+4 16 -6.8886 0 -16.6302 0 0 -18 0 0 -17 -6.5059 0 -15.7063
+4 16 0 0 -18 6.8886 0 -16.6302 6.5059 0 -15.7063 0 0 -17
+4 16 6.8886 0 -16.6302 12.7278 0 -12.7278 12.0207 0 -12.0207 6.5059 0 -15.7063
+4 16 12.7278 0 -12.7278 16.6302 0 -6.8886 15.7063 0 -6.5059 12.0207 0 -12.0207
+4 16 16.6302 0 -6.8886 18 0 0 17 0 0 15.7063 0 -6.5059
+
+0 FILE p/4-4ring9.dat
+0 Ring  9 x 1.0
+0 Name: 4-4ring9.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG Primitive UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 9 0 0 10 0 0 9.239 0 3.827 8.3151 0 3.4443
+4 16 8.3151 0 3.4443 9.239 0 3.827 7.071 0 7.071 6.3639 0 6.3639
+4 16 6.3639 0 6.3639 7.071 0 7.071 3.827 0 9.239 3.4443 0 8.3151
+4 16 3.4443 0 8.3151 3.827 0 9.239 0 0 10 0 0 9
+4 16 0 0 9 0 0 10 -3.827 0 9.239 -3.4443 0 8.3151
+4 16 -3.4443 0 8.3151 -3.827 0 9.239 -7.071 0 7.071 -6.3639 0 6.3639
+4 16 -6.3639 0 6.3639 -7.071 0 7.071 -9.239 0 3.827 -8.3151 0 3.4443
+4 16 -8.3151 0 3.4443 -9.239 0 3.827 -10 0 0 -9 0 0
+4 16 -9 0 0 -10 0 0 -9.239 0 -3.827 -8.3151 0 -3.4443
+4 16 -8.3151 0 -3.4443 -9.239 0 -3.827 -7.071 0 -7.071 -6.3639 0 -6.3639
+4 16 -6.3639 0 -6.3639 -7.071 0 -7.071 -3.827 0 -9.239 -3.4443 0 -8.3151
+4 16 -3.4443 0 -8.3151 -3.827 0 -9.239 0 0 -10 0 0 -9
+4 16 0 0 -9 0 0 -10 3.827 0 -9.239 3.4443 0 -8.3151
+4 16 3.4443 0 -8.3151 3.827 0 -9.239 7.071 0 -7.071 6.3639 0 -6.3639
+4 16 6.3639 0 -6.3639 7.071 0 -7.071 9.239 0 -3.827 8.3151 0 -3.4443
+4 16 8.3151 0 -3.4443 9.239 0 -3.827 10 0 0 9 0 0
+0
+
+0 FILE parts/s/30516s01.dat
+0 ~Turntable  4 x  4 Locking with Grooved Base - Top Quarter
+0 Name: s\30516s01.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Subpart UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 -9 0 0 0 32 0 1 0 32 0 0 p/48/1-12edge.dat
+2 24 16 -9 27.712 19.482 -9 25.389
+2 24 16 5 27.712 19.482 5 25.389
+2 24 19.799 5 25.111 19.482 5 25.389
+2 24 19.799 -9 25.111 19.482 -9 25.389
+4 16 16 5 27.712 19.482 5 25.389 19.482 -9 25.389 16 -9 27.712
+5 24 19.482 -9 25.389 19.482 5 25.389 16 5 27.712 19.799 5 25.111
+4 16 19.799 -9 25.111 19.482 -9 25.389 19.482 5 25.389 19.799 5 25.111
+0 BFC INVERTNEXT
+1 16 0 -9 0 0 0 32 0 14 0 32 0 0 p/48/1-12cyli.dat
+1 16 0 5 0 0 0 32 0 1 0 32 0 0 p/48/1-12edge.dat
+1 16 0 5 0 0 0 32 0 1 0 32 0 0 p/48/1-8chrd.dat
+1 16 0 0 0 32 0 0 0 1 0 0 0 32 p/48/1-8edge.dat
+1 16 0 -6 0 32 0 0 0 1 0 0 0 32 p/48/1-8edge.dat
+1 16 0 -6 0 32 0 0 0 6 0 0 0 32 p/48/1-8cyli.dat
+1 16 0 -9 0 31 0 0 0 1 0 0 0 31 p/48/1-12edge.dat
+1 16 0 0 0 28 0 0 0 1 0 0 0 28 p/48/1-8edge.dat
+1 16 0 0 0 28 0 0 0 1 0 0 0 28 p/48/1-8chrd.dat
+1 16 0 -9 0 28 0 0 0 1 0 0 0 28 p/48/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 -9 0 28 0 0 0 9 0 0 0 28 p/48/1-8cyli.dat
+2 24 19.799 -9 19.799 19.799 -9 25.111
+4 16 22.455 -9 21.311 22.627 -9 22.627 19.799 -9 25.111 19.799 -9 19.799
+4 16 19.799 5 25.111 0 5 32 0 5 19.799 19.799 5 19.799
+4 16 19.799 0 19.799 0 0 19.799 0 0 14 14 0 14
+4 16 19.799 0 19.799 14 0 14 14 0 0 28 0 0
+2 24 19.799 5 19.799 19.799 5 25.111
+2 24 19.799 -9 25.111 19.799 5 25.111
+4 16 19.799 -9 19.799 19.799 -9 25.111 19.799 5 25.111 19.799 5 19.799
+2 24 19.799 5 19.799 0 5 19.799
+2 24 19.799 0 19.799 0 0 19.799
+4 16 19.799 0 19.799 19.799 5 19.799 0 5 19.799 0 0 19.799
+2 24 19.799 5 19.799 19.799 -9 19.799
+1 16 2.158 -9 32.929 2.27263 0 -0.771455 0 1 0 0.771455 0 2.27263 p/3-8edge.dat
+1 16 6.438 -9 32.365 2.35388 0 -0.468217 0 1 0 0.468217 0 2.35388 p/3-8edge.dat
+1 16 10.607 -9 31.248 2.39486 0 -0.156968 0 1 0 0.156968 0 2.39486 p/3-8edge.dat
+1 16 14.595 -9 29.596 2.39486 0 0.156968 0 1 0 -0.156968 0 2.39486 p/3-8edge.dat
+1 16 18.333 -9 27.438 2.35388 0 0.468217 0 1 0 -0.468217 0 2.35388 p/3-8edge.dat
+1 16 21.757 -9 24.81 2.27263 0 0.771455 0 1 0 -0.771455 0 2.27263 p/3-8edge.dat
+1 16 21.757 -9 24.81 1.80442 0 1.58243 0 1 0 -1.58243 0 1.80442 p/1-16edge.dat
+1 16 2.158 0 32.929 2.27263 0 -0.771455 0 1 0 0.771455 0 2.27263 p/3-8edge.dat
+1 16 6.438 0 32.365 2.35388 0 -0.468217 0 1 0 0.468217 0 2.35388 p/3-8edge.dat
+1 16 10.607 0 31.248 2.39486 0 -0.156968 0 1 0 0.156968 0 2.39486 p/3-8edge.dat
+1 16 14.595 0 29.596 2.39486 0 0.156968 0 1 0 -0.156968 0 2.39486 p/3-8edge.dat
+1 16 18.333 0 27.438 2.35388 0 0.468217 0 1 0 -0.468217 0 2.35388 p/3-8edge.dat
+1 16 21.757 0 24.81 2.27263 0 0.771455 0 1 0 -0.771455 0 2.27263 p/3-8edge.dat
+1 16 21.757 0 24.81 1.80442 0 1.58243 0 1 0 -1.58243 0 1.80442 p/1-16edge.dat
+1 16 2.158 -9 32.929 2.27263 0 -0.771455 0 9 0 0.771455 0 2.27263 p/3-8cyli.dat
+1 16 6.438 -9 32.365 2.35388 0 -0.468217 0 9 0 0.468217 0 2.35388 p/3-8cyli.dat
+1 16 10.607 -9 31.248 2.39486 0 -0.156968 0 9 0 0.156968 0 2.39486 p/3-8cyli.dat
+1 16 14.595 -9 29.596 2.39486 0 0.156968 0 9 0 -0.156968 0 2.39486 p/3-8cyli.dat
+1 16 18.333 -9 27.438 2.35388 0 0.468217 0 9 0 -0.468217 0 2.35388 p/3-8cyli.dat
+1 16 21.757 -9 24.81 2.27263 0 0.771455 0 9 0 -0.771455 0 2.27263 p/3-8cyli.dat
+1 16 21.757 -9 24.81 1.80442 0 1.58243 0 9 0 -1.58243 0 1.80442 p/1-16cyli.dat
+1 16 2.158 -9 32.929 2.27263 0 -0.771455 0 1 0 0.771455 0 2.27263 p/3-8chrd.dat
+1 16 6.438 -9 32.365 2.35388 0 -0.468217 0 1 0 0.468217 0 2.35388 p/3-8chrd.dat
+1 16 10.607 -9 31.248 2.39486 0 -0.156968 0 1 0 0.156968 0 2.39486 p/3-8chrd.dat
+1 16 14.595 -9 29.596 2.39486 0 0.156967 0 1 0 -0.156967 0 2.39486 p/3-8chrd.dat
+1 16 18.333 -9 27.438 2.35388 0 0.468216 0 1 0 -0.468216 0 2.35388 p/3-8chrd.dat
+1 16 21.757 -9 24.81 2.27263 0 0.771454 0 1 0 -0.771454 0 2.27263 p/3-8chrd.dat
+2 24 0 -9 34 0 0 34
+2 24 4.438 -9 33.709 4.438 0 33.709
+2 24 8.8 -9 32.842 8.8 0 32.842
+2 24 13.011 -9 31.412 13.011 0 31.412
+2 24 17 -9 29.445 17 0 29.445
+2 24 20.698 -9 26.974 20.698 0 26.974
+4 16 0 -9 32 4.176 -9 31.725 4.437 -9 33.708 0 -9 34
+4 16 8.799 -9 32.841 4.437 -9 33.708 4.176 -9 31.725 8.282 -9 30.909
+4 16 8.282 -9 30.909 12.246 -9 29.565 13.012 -9 31.413 8.799 -9 32.841
+4 16 17 -9 29.444 13.012 -9 31.413 12.246 -9 29.565 16 -9 27.712
+4 16 16 -9 27.712 19.482 -9 25.389 20.699 -9 26.976 17 -9 29.444
+4 16 24.041 -9 24.041 20.699 -9 26.976 19.482 -9 25.389 22.627 -9 22.627
+2 24 23.563 0 23.228 22.982 0 22.223
+4 16 23.563 -9 23.228 22.982 -6 22.223 22.982 0 22.223 23.563 0 23.228
+2 24 23.563 -9 23.228 22.455 -9 21.311
+3 16 23.563 -9 23.228 22.455 -9 21.311 22.982 -6 22.223
+2 24 22.982 -6 22.223 22.455 -9 21.311
+2 24 22.982 -6 22.223 22.982 0 22.223
+2 24 24.595 -9 18.873 22.455 -9 21.311
+4 16 25.389 -6 19.482 22.982 -6 22.223 22.455 -9 21.311 24.595 -9 18.873
+5 24 25.389 -6 19.482 24.595 -9 18.873 22.455 -9 21.311 26.846 -9 15.5
+4 16 24.595 -9 18.873 26.846 -9 15.5 27.712 -6 16 25.389 -6 19.482
+5 24 27.712 -6 16 26.846 -9 15.5 24.595 -9 18.873 28.641 -9 11.864
+4 16 29.565 -6 12.246 27.712 -6 16 26.846 -9 15.5 28.641 -9 11.864
+5 24 29.565 -6 12.246 28.641 -9 11.864 26.846 -9 15.5 29.943 -9 8.023
+4 16 28.641 -9 11.864 29.943 -9 8.023 30.909 -6 8.282 29.565 -6 12.246
+5 24 30.909 -6 8.282 29.943 -9 8.023 28.641 -9 11.864 30.733 -9 4.046
+4 16 31.725 -6 4.176 30.909 -6 8.282 29.943 -9 8.023 30.733 -9 4.046
+5 24 31.725 -6 4.176 30.733 -9 4.046 29.943 -9 8.023 31 -9 0
+4 16 30.733 -9 4.046 31 -9 0 32 -6 0 31.725 -6 4.176
+5 24 32 -6 0 31 -9 0 30.733 -9 4.046 30.733 -9 -4.046
+2 24 24.595 -9 18.873 26.846 -9 15.5
+3 16 22.627 -9 22.627 22.455 -9 21.311 24.032 -9 24.04
+4 16 19.799 -9 19.799 22.215 -9 17.046 24.595 -9 18.873 22.455 -9 21.311
+4 16 26.846 -9 15.5 24.595 -9 18.873 22.215 -9 17.046 24.248 -9 14
+4 16 24.248 -9 14 25.869 -9 10.716 28.641 -9 11.864 26.846 -9 15.5
+4 16 29.943 -9 8.023 28.641 -9 11.864 25.869 -9 10.716 27.045 -9 7.246
+4 16 27.045 -9 7.246 27.759 -9 3.654 30.733 -9 4.046 29.943 -9 8.023
+4 16 31 -9 0 30.733 -9 4.046 27.759 -9 3.654 28 -9 0
+0
+
+0 FILE p/3-8chrd.dat
+0 Chord 0.375
+0 Name: 3-8chrd.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-01-07 [Steffen] added primitive code for POVray
+0 !HISTORY 2004-03-18 [mkennedy] removed pov code and rearanged polygons.
+0 !HISTORY 2004-09-12 [cwdee] reversed winding and standardised precision
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 0.7071 0 0.7071 0.3827 0 0.9239 0 0 1
+4 16 0.9239 0 0.3827 -0.3827 0 0.9239 -0.7071 0 0.7071 1 0 0
+4 16 0.7071 0 0.7071 0 0 1 -0.3827 0 0.9239 0.9239 0 0.3827
+0
+
+0 FILE p/48/1-8cyli.dat
+0 Hi-Res Cylinder 0.125
+0 Name: 48\1-8cyli.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG 48_Primitive UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2004-10-12 [sbliss] fixed title, BFC'ed
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 1 0 0 1 1 0 0.9914 0 0.1305 1 0 -1
+5 24 0.9914 0 0.1305 0.9914 1 0.1305 0.9659 0 0.2588 1 0 0
+5 24 0.9659 0 0.2588 0.9659 1 0.2588 0.9239 0 0.3827 0.9914 0 0.1305
+5 24 0.9239 0 0.3827 0.9239 1 0.3827 0.8660 0 0.5000 0.9659 0 0.2588
+5 24 0.8660 0 0.5000 0.8660 1 0.5000 0.7934 0 0.6088 0.9239 0 0.3827
+5 24 0.7934 0 0.6088 0.7934 1 0.6088 0.7071 0 0.7071 0.8660 0 0.5000
+5 24 0.7071 0 0.7071 0.7071 1 0.7071 0.6088 0 0.7934 0.7934 0 0.6088
+
+4 16 0.9914 1 0.1305 0.9914 0 0.1305 1 0 0 1 1 0
+4 16 0.9659 1 0.2588 0.9659 0 0.2588 0.9914 0 0.1305 0.9914 1 0.1305
+4 16 0.9239 1 0.3827 0.9239 0 0.3827 0.9659 0 0.2588 0.9659 1 0.2588
+4 16 0.8660 1 0.5000 0.8660 0 0.5000 0.9239 0 0.3827 0.9239 1 0.3827
+4 16 0.7934 1 0.6088 0.7934 0 0.6088 0.8660 0 0.5000 0.8660 1 0.5000
+4 16 0.7071 1 0.7071 0.7071 0 0.7071 0.7934 0 0.6088 0.7934 1 0.6088
+0
+
+0 FILE p/48/1-8edge.dat
+0 Hi-Res Circle 0.125
+0 Name: 48\1-8edge.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG 48_Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2007-10-13 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-17 [Steffen] added BFC CERTIFY statement
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9914 0 0.1305
+2 24 0.9914 0 0.1305 0.9659 0 0.2588
+2 24 0.9659 0 0.2588 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.866 0 0.5
+2 24 0.866 0 0.5 0.7934 0 0.6088
+2 24 0.7934 0 0.6088 0.7071 0 0.7071
+
+0 FILE p/48/1-8chrd.dat
+0 Hi-Res Chord 0.125
+0 Name: 48\1-8chrd.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 1 0 0 0.9914 0 0.1305 0.7934 0 0.6088 0.7071 0 0.7071
+4 16 0.9914 0 0.1305 0.9659 0 0.2588 0.866 0 0.5 0.7934 0 0.6088
+3 16 0.9659 0 0.2588 0.9239 0 0.3827 0.866 0 0.5
+0
+
+0 FILE p/48/1-12edge.dat
+0 Hi-Res Circle 0.0833
+0 Name: 48\1-12edge.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 1 0 0 .9914 0 .1305
+2 24 .9914 0 .1305 .9659 0 .2588
+2 24 .9659 0 .2588 .9239 0 .3827
+2 24 .9239 0 .3827 .866 0 .5
+
+0 end of file 
+
+
+
+0 FILE parts/6191.dat
+0 Brick  1 x  4 x  1.333 with Curved Top
+0 Name: 6191.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-07-16 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-10-16 [mikeheide] BFC'ed
+0 !HISTORY 2008-11-01 [Philo] Improved inside
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2014-08-06 [MagFors] Subfiled for patterned parts
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/6191s01.dat
+1 16 40 20 10 0 -80 0 -20 0 0 0 0 -20 p/1-4cyli.dat
+4 16 40 32 -10 40 20 -10 -40 20 -10 -40 32 -10
+
+0 FILE parts/s/6191s01.dat
+0 ~Brick  1 x  4 x  1.333 with Curved Top without Front Surface
+0 Name: s\6191s01.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Subpart UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-08-06 [MagFors] Primitive substitution
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+1 16 20 10.475 0 0 0 -4 0 -2.675 0 -4 0 0 p/4-4cyls.dat
+2 24 16.26121 8.6864 -1.3136 16.3044 9.011399 -1.5308
+2 24 16.3044 9.011399 -1.5308 17.1716 10.95301 -2.8284
+2 24 17.1716 10.95301 -2.8284 18.4692 12.25061 -3.6956
+2 24 18.4692 12.25061 -3.6956 20 12.70609 -4
+2 24 20 12.70609 -4 21.5308 12.25061 -3.6956
+2 24 22.8284 10.95301 -2.8284 21.5308 12.25061 -3.6956
+2 24 23.6956 9.011399 -1.5308 22.8284 10.95301 -2.8284
+2 24 23.73879 8.6864 -1.3136 23.6956 9.011399 -1.5308
+2 24 24 7.808507 0 23.6956 6.785457 1.5308
+2 24 23.6956 6.785457 1.5308 22.8284 5.918257 2.8284
+2 24 21.5308 5.338698 3.6956 22.8284 5.918257 2.8284
+2 24 20.61956 5.2176 3.8768 21.5308 5.338698 3.6956
+2 24 18.4692 5.338698 3.6956 19.38044 5.2176 3.8768
+2 24 17.1716 5.918257 2.8284 18.4692 5.338698 3.6956
+2 24 16.3044 6.785457 1.5308 17.1716 5.918257 2.8284
+2 24 16 7.808507 0 16.3044 6.785457 1.5308
+2 24 23.73879 8.6864 -1.3136 24 7.808507 0
+2 24 16.26121 8.6864 -1.3136 16 7.808507 0
+2 24 20 5.193369 4 20.61956 5.2176 3.8768
+2 24 19.38044 5.2176 3.8768 20 5.193369 4
+1 16 20 10.475 0 4 0 0 0 17.525 0 0 0 4 p/4-4cyli.dat
+1 16 20 28 0 1 0 0 0 -1 0 0 0 1 p/stud3a.dat
+
+1 16 0 10.475 0 0 0 -4 0 -2.675 0 -4 0 0 p/4-4cyls.dat
+2 24 -3.73879 8.6864 -1.3136 -3.6956 9.011399 -1.5308
+2 24 -3.6956 9.011399 -1.5308 -2.8284 10.95301 -2.8284
+2 24 -2.8284 10.95301 -2.8284 -1.5308 12.25061 -3.6956
+2 24 -1.5308 12.25061 -3.6956 0 12.70609 -4
+2 24 0 12.70609 -4 1.5308 12.25061 -3.6956
+2 24 2.8284 10.95301 -2.8284 1.5308 12.25061 -3.6956
+2 24 3.6956 9.011399 -1.5308 2.8284 10.95301 -2.8284
+2 24 3.73879 8.6864 -1.3136 3.6956 9.011399 -1.5308
+2 24 4 7.808507 0 3.6956 6.785457 1.5308
+2 24 3.6956 6.785457 1.5308 2.8284 5.918257 2.8284
+2 24 1.5308 5.338698 3.6956 2.8284 5.918257 2.8284
+2 24 0.61956 5.2176 3.8768 1.5308 5.338698 3.6956
+2 24 -1.5308 5.338698 3.6956 -0.61956 5.2176 3.8768
+2 24 -2.8284 5.918257 2.8284 -1.5308 5.338698 3.6956
+2 24 -3.6956 6.785457 1.5308 -2.8284 5.918257 2.8284
+2 24 -4 7.808507 0 -3.6956 6.785457 1.5308
+2 24 3.73879 8.6864 -1.3136 4 7.808507 0
+2 24 -3.73879 8.6864 -1.3136 -4 7.808507 0
+2 24 0 5.193369 4 0.61956 5.2176 3.8768
+2 24 -0.61956 5.2176 3.8768 0 5.193369 4
+1 16 0 10.475 0 4 0 0 0 17.525 0 0 0 4 p/4-4cyli.dat
+1 16 0 28 0 1 0 0 0 -1 0 0 0 1 p/stud3a.dat
+
+1 16 -20 10.475 0 0 0 -4 0 -2.675 0 -4 0 0 p/4-4cyls.dat
+2 24 -23.73879 8.6864 -1.3136 -23.6956 9.011399 -1.5308
+2 24 -23.6956 9.011399 -1.5308 -22.8284 10.95301 -2.8284
+2 24 -22.8284 10.95301 -2.8284 -21.5308 12.25061 -3.6956
+2 24 -21.5308 12.25061 -3.6956 -20 12.70609 -4
+2 24 -20 12.70609 -4 -18.4692 12.25061 -3.6956
+2 24 -17.1716 10.95301 -2.8284 -18.4692 12.25061 -3.6956
+2 24 -16.3044 9.011399 -1.5308 -17.1716 10.95301 -2.8284
+2 24 -16.26121 8.6864 -1.3136 -16.3044 9.011399 -1.5308
+2 24 -16 7.808507 0 -16.3044 6.785457 1.5308
+2 24 -16.3044 6.785457 1.5308 -17.1716 5.918257 2.8284
+2 24 -18.4692 5.338698 3.6956 -17.1716 5.918257 2.8284
+2 24 -19.38044 5.2176 3.8768 -18.4692 5.338698 3.6956
+2 24 -21.5308 5.338698 3.6956 -20.61956 5.2176 3.8768
+2 24 -22.8284 5.918257 2.8284 -21.5308 5.338698 3.6956
+2 24 -23.6956 6.785457 1.5308 -22.8284 5.918257 2.8284
+2 24 -24 7.808507 0 -23.6956 6.785457 1.5308
+2 24 -16.26121 8.6864 -1.3136 -16 7.808507 0
+2 24 -23.73879 8.6864 -1.3136 -24 7.808507 0
+2 24 -20 5.193369 4 -19.38044 5.2176 3.8768
+2 24 -20.61956 5.2176 3.8768 -20 5.193369 4
+1 16 -20 10.475 0 4 0 0 0 17.525 0 0 0 4 p/4-4cyli.dat
+1 16 -20 28 0 1 0 0 0 -1 0 0 0 1 p/stud3a.dat
+
+
+1 16 0 32 0 36 0 0 0 1 0 0 0 6 p/recte4.dat
+4 16 40 32 10 36 32 6 -36 32 6 -40 32 10
+4 16 -40 32 10 -36 32 6 -36 32 -6 -40 32 -10
+4 16 -40 32 -10 -36 32 -6 36 32 -6 40 32 -10
+4 16 40 32 -10 36 32 -6 36 32 6 40 32 10
+0 BFC INVERTNEXT
+1 16 0 18.6088 4.9384 -36 0 0 0 -13.6 -0.2088 0 0 1.0616 p/box2-7.dat
+1 16 0 26 -6 0 0 36 -6 0 0 0 -1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 36 20 10 0 -72 0 0 0 -16 -16 0 0 p/3-16cylo.dat
+5 24 36 5.2176 3.8768 -36 5.2176 3.8768 36 4.8 6 36 8.6864 -1.3136
+1 16 -36 20 10 0 -1 0 0 0 -16 -16 0 0 p/3-16chrd.dat
+4 16 -36 32 6 -36 5.2176 3.8768 -36 20 -6 -36 32 -6
+3 16 -36 4.8 6 -36 5.2176 3.8768 -36 32 6
+1 16 36 20 10 0 1 0 0 0 -16 -16 0 0 p/3-16chrd.dat
+4 16 36 32 -6 36 20 -6 36 5.2176 3.8768 36 32 6
+3 16 36 32 6 36 5.2176 3.8768 36 4.8 6
+
+
+1 16 0 32 0 40 0 0 0 1 0 0 0 10 p/recte4.dat
+1 16 0 16 10 -40 0 0 0 0 -16 0 -1 0 p/rect3.dat
+2 24 40 20 -10 40 32 -10
+2 24 -40 20 -10 -40 32 -10
+1 16 40 20 10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+1 16 -40 20 10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+4 16 40 32 10 40 0 10 40 20 -10 40 32 -10
+1 16 40 20 10 0 -1 0 -20 0 0 0 0 -20 p/1-4chrd.dat
+4 16 -40 32 -10 -40 20 -10 -40 0 10 -40 32 10
+1 16 -40 20 10 0 1 0 -20 0 0 0 0 -20 p/1-4chrd.dat
+
+0 FILE p/3-16chrd.dat
+0 Chord 0.1875
+0 Name: 3-16chrd.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 1 0 0 0.9239 0 0.3827 0.7071 0 0.7071 0.3827 0 0.9239
+0
+
+
+0 FILE p/3-16cylo.dat
+0 Cylinder Open 0.1875
+0 Name: 3-16cylo.dat
+0 Author: J.C. Tchang [tchang]
+0 !LDRAW_ORG Primitive UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-16edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/3-16edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/3-16cyli.dat
+
+0 FILE p/recte4.dat
+0 Rectangle Empty with 4 Edges
+0 Name: recte4.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+2 24  1 0  1 -1 0  1
+2 24 -1 0  1 -1 0 -1
+2 24 -1 0 -1  1 0 -1
+2 24  1 0 -1  1 0  1
+
+0 FILE parts/3700.dat
+0 Technic Brick  1 x  2 with Hole
+0 Name: 3700.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 16 24 6 -16 24 6
+2 24 16 24 -6 -16 24 -6
+2 24 20 24 10 -20 24 10
+2 24 20 24 -10 -20 24 -10
+0 BFC INVERTNEXT
+1 16 12 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -12 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 8 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -8 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 16 24 6 16 4 6 8 4 6 8 18 6
+4 16 16 24 -6 8 18 -6 8 4 -6 16 4 -6
+4 16 -8 18 6 -8 4 6 -16 4 6 -16 24 6
+4 16 -8 18 -6 -16 24 -6 -16 4 -6 -8 4 -6
+4 16 16 24 6 8 18 6 -8 18 6 -16 24 6
+4 16 16 24 -6 -16 24 -6 -8 18 -6 8 18 -6
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 20 24 -10 -20 24 -10 -16 24 -6 16 24 -6
+4 16 20 24 10 20 24 -10 16 24 -6 16 24 6
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -20 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 20 24 10 -20 24 10 -8 18 10 8 18 10
+4 16 20 24 -10 8 18 -10 -8 18 -10 -20 24 -10
+4 16 20 0 10 8 2 10 -8 2 10 -20 0 10
+4 16 20 0 -10 -20 0 -10 -8 2 -10 8 2 -10
+4 16 20 24 10 8 18 10 8 2 10 20 0 10
+4 16 20 24 -10 20 0 -10 8 2 -10 8 18 -10
+4 16 -20 24 10 -20 0 10 -8 2 10 -8 18 10
+4 16 -20 24 -10 -8 18 -10 -8 2 -10 -20 0 -10
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/4070.dat
+0 Brick  1 x  1 with Headlight
+0 Name: 4070.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS side stud, headlight brick
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-01-28 [sbliss] Completed header; BFC'ed; remeshed polygons
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 6 24 6 -6 24 6
+2 24 -6 24 6 -6 24 -6
+2 24 -6 24 -6 6 24 -6
+2 24 6 24 -6 6 24 6
+
+4 16 10 24 10 6 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -6 -10 24 -10
+4 16 -10 24 -10 -6 24 -6 6 24 -6 10 24 -10
+4 16 10 24 -10 6 24 -6 6 24 6 10 24 10
+
+2 24 10 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -10
+2 24 -10 24 -10 10 24 -10
+2 24 10 24 -10 10 24 10
+
+1 16 0 20 -8 10 0 0 0 1 0 0 0 2 p/rect.dat
+2 24 6 20 -2 -6 20 -2
+2 24 -6 20 -2 -6 20 -6
+2 24 6 20 -6 6 20 -2
+4 16 6 20 -2 6 20 -6 -6 20 -6 -6 20 -2
+1 16 0 16 8 6 0 0 0 1 0 0 0 2 p/rect.dat
+1 16 0 4 4 -6 0 0 0 -1 0 0 0 6 p/rect.dat
+1 16 0 0 2 10 0 0 0 1 0 0 0 8 p/rect.dat
+
+2 24 6 16 10 6 4 10
+2 24 -6 16 10 -6 4 10
+2 24 10 24 10 10 0 10
+2 24 -10 24 10 -10 0 10
+2 24 6 24 6 6 16 6
+2 24 -6 24 6 -6 16 6
+2 24 6 20 -2 6 4 -2
+2 24 -6 20 -2 -6 4 -2
+2 24 6 24 -6 6 20 -6
+2 24 -6 24 -6 -6 20 -6
+2 24 10 20 -6 10 0 -6
+2 24 -10 20 -6 -10 0 -6
+2 24 10 24 -10 10 20 -10
+2 24 -10 24 -10 -10 20 -10
+
+1 16 0 10 -2 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 0 10 -2 4 0 0 0 0 -4 0 -1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 10 -2 4 0 0 0 0 4 0 -4 0 p/4-4cyli.dat
+1 16 0 10 -6 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 0 10 -6 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+
+4 16 -6 16 10 6 16 10 10 24 10 -10 24 10
+4 16 -6 4 10 -6 16 10 -10 24 10 -10 0 10
+4 16 6 4 10 -6 4 10 -10 0 10 10 0 10
+4 16 6 16 10 6 4 10 10 0 10 10 24 10
+
+4 16 6 24 6 6 16 6 -6 16 6 -6 24 6
+
+4 16 -4 14 -2 4 14 -2 6 20 -2 -6 20 -2
+4 16 -4 6 -2 -4 14 -2 -6 20 -2 -6 4 -2
+4 16 4 6 -2 -4 6 -2 -6 4 -2 6 4 -2
+4 16 4 14 -2 4 6 -2 6 4 -2 6 20 -2
+
+4 16 10 20 -6 6 16 -6 -6 16 -6 -10 20 -6
+4 16 -10 20 -6 -6 16 -6 -6 4 -6 -10 0 -6
+4 16 -10 0 -6 -6 4 -6 6 4 -6 10 0 -6
+4 16 10 0 -6 6 4 -6 6 16 -6 10 20 -6
+
+4 16 -6 20 -6 6 20 -6 6 24 -6 -6 24 -6
+
+4 16 10 24 -10 10 20 -10 -10 20 -10 -10 24 -10
+
+4 16 10 24 10 10 20 -6 10 20 -10 10 24 -10
+4 16 10 24 10 10 0 10 10 0 -6 10 20 -6
+
+4 16 6 20 -6 6 20 -2 6 24 6 6 24 -6
+4 16 6 24  6  6 20 -2 6  4 -2  6 16 6
+4 16 6 4  -2  6 4 10  6 16 10  6 16 6
+
+4 16 -6 24 6 -6 20 -2 -6 20 -6 -6 24 -6
+4 16 -6 4 -2 -6 20 -2 -6 24 6 -6 16 6
+4 16 -6 16 10 -6 4 10 -6 4 -2 -6 16 6
+
+4 16 -10 20 -10 -10 20 -6 -10 24 10 -10 24 -10
+4 16 -10 0 -6 -10 0 10 -10 24 10 -10 20 -6
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 10 -6 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+0
+
+
+0 FILE parts/3738.dat
+0 Technic Plate  2 x  8 with Holes
+0 Name: 3738.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-20 [guyvivan] Made BFC Compliant
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 80 0 0 0 8 0 0 0 20 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 76 0 0 0 4 0 0 0 16 p/box4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 60 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 40 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -40 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -60 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 60 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 40 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -40 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -60 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 60 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 40 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -60 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+4 16 80 8 20 76 8 16 -76 8 16 -80 8 20
+4 16 -80 8 20 -76 8 16 -76 8 -16 -80 8 -20
+4 16 -80 8 -20 -76 8 -16 76 8 -16 80 8 -20
+4 16 80 8 -20 76 8 -16 76 8 16 80 8 20
+1 16 60 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 40 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -40 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -60 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+4 16 76 4 16 68 4 8 -68 4 8 -76 4 16
+4 16 -76 4 16 -68 4 8 -68 4 -8 -76 4 -16
+4 16 -76 4 -16 -68 4 -8 68 4 -8 76 4 -16
+4 16 76 4 -16 68 4 -8 68 4 8 76 4 16
+4 16 52 4 8 52 4 -8 48 4 -8 48 4 8
+4 16 32 4 8 32 4 -8 28 4 -8 28 4 8
+4 16 12 4 8 12 4 -8 8 4 -8 8 4 8
+4 16 -8 4 8 -8 4 -8 -12 4 -8 -12 4 8
+4 16 -28 4 8 -28 4 -8 -32 4 -8 -32 4 8
+4 16 -48 4 8 -48 4 -8 -52 4 -8 -52 4 8
+1 16 60 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 40 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -40 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -60 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+4 16 80 0 -20 66 0 -6 -66 0 -6 -80 0 -20
+4 16 -80 0 -20 -66 0 -6 -66 0 6 -80 0 20
+4 16 -80 0 20 -66 0 6 66 0 6 80 0 20
+4 16 80 0 20 66 0 6 66 0 -6 80 0 -20
+4 16 54 0 -6 54 0 6 46 0 6 46 0 -6
+4 16 34 0 -6 34 0 6 26 0 6 26 0 -6
+4 16 14 0 -6 14 0 6 6 0 6 6 0 -6
+4 16 -6 0 -6 -6 0 6 -14 0 6 -14 0 -6
+4 16 -26 0 -6 -26 0 6 -34 0 6 -34 0 -6
+4 16 -46 0 -6 -46 0 6 -54 0 6 -54 0 -6
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3034.dat
+0 Plate  2 x  8
+0 Name: 3034.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2003-08-07 [jriley] BFCed
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 76 0 0 0 -4 0 0 0 16 p/box5.dat
+4 16 80 8 20 76 8 16 -76 8 16 -80 8 20
+4 16 80 8 -20 -80 8 -20 -76 8 -16 76 8 -16
+4 16 80 8 20 80 8 -20 76 8 -16 76 8 16
+4 16 -80 8 20 -76 8 16 -76 8 -16 -80 8 -20
+1 16 0 8 0 80 0 0 0 -8 0 0 0 20 p/box5.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/47457.dat
+0 Slope Brick Curved  2 x  2 x   2/3 Triple with Two Top Studs
+0 Name: 47457.dat
+0 Author: Edwin Pilobello [gypsy_fly]
+0 !LDRAW_ORG Part UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2006-09-29 [WilliamH] BFCed; added conditional lines; used stud4a and more primitives
+0 !HISTORY 2006-09-30 [WilliamH] Added missing internal surface and two missing lines; corrected underside geometry
+0 !HISTORY 2006-10-03 [WilliamH] Joined stud4a to underside correctly
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 0 0 10 0 1 0 10 0 0 p/rect1.dat
+1 16 0 4 -2 0 0 10 0 -1 0 8 0 0 p/rect1.dat
+5 24 -10 0 -10 10 0 -10 0 0 10 0 0.8 -15.8
+4 16 -20 8 10 20 8 10 10 0 10 -10 0 10
+1 16 0 12 10 20 0 0 0 0 4 0 -1 0 p/rect3.dat
+1 16 0 12.5 6 16 0 0 0 0 3.5 0 1 0 p/rect3.dat
+1 16 0 14 -30 20 0 0 0 0 2 0 1 0 p/rect.dat
+1 16 0 14 -27 16 0 0 0 0 2 0 -1 0 p/rect.dat
+4 16 -20 16 -30 20 16 -30 16 16 -27 -16 16 -27
+4 16 -16 16 6 16 16 6 20 16 10 -20 16 10
+4 16 -10 4 6 10 4 6 16 9 6 -16 9 6
+
+4 16 -10 4 -10 -10.5 4.5 -15 10.5 4.5 -15 10 4 -10
+5 24 -10 4 -10 -8 4 -10 0 4.5 -15 0 4 10
+5 24 8 4 -10 10 4 -10 0 4.5 -15 0 4 10
+4 16 -10.5 4.5 -15 -11.5 6 -19.4 11.5 6 -19.4 10.5 4.5 -15
+5 24 -10.5 4.5 -15 -6.096 4.5 -15 0 6 -19.4 0 4 -10
+5 24 6.096 4.5 -15 10.5 4.5 -15 0 6 -19.4 0 4 -10
+4 16 -11.5 6 -19.4 -13.5 8.5 -23.5 13.5 8.5 -23.5 11.5 6 -19.4
+5 24 -11.5 6 -19.4 11.5 6 -19.4 0 8.5 -23.5 0 4.5 -15
+4 16 -13.5 8.5 -23.5 -16 12 -27 16 12 -27 13.5 8.5 -23.5
+5 24 -13.5 8.5 -23.5 13.5 8.5 -23.5 0 12 -27 0 6 -19.4
+3 16 -10.5 4.5 -15 -10 4 -10 -16 9 -10
+3 16 -16 9.671 -13.8 -10.5 4.5 -15 -16 9 -10
+3 16 -11.5 6 -19.4 -10.5 4.5 -15 -16 9.671 -13.8
+3 16 -16 10.306 -17.4 -11.5 6 -19.4 -16 9.671 -13.8
+3 16 -13.5 8.5 -23.5 -11.5 6 -19.4 -16 10.306 -17.4
+3 16 -16 11.029 -21.5 -13.5 8.5 -23.5 -16 10.306 -17.4
+3 16 -16 12 -27 -13.5 8.5 -23.5 -16 11.029 -21.5
+3 16 16 9 -10 10 4 -10 10.5 4.5 -15
+3 16 16 9 -10 10.5 4.5 -15 16 9.671 -13.8
+3 16 16 9.671 -13.8 10.5 4.5 -15 11.5 6 -19.4
+3 16 16 9.671 -13.8 11.5 6 -19.4 16 10.306 -17.4
+3 16 16 10.306 -17.4 11.5 6 -19.4 13.5 8.5 -23.5
+3 16 16 10.306 -17.4 13.5 8.5 -23.5 16 11.029 -21.5
+3 16 16 11.029 -21.5 13.5 8.5 -23.5 16 12 -27
+4 16 10 0 -10 10.8 0.8 -15.8 -10.8 0.8 -15.8 -10 0 -10
+4 16 10.8 0.8 -15.8 12.6 3.2 -21.6 -12.6 3.2 -21.6 -10.8 0.8 -15.8
+5 24 10.8 0.8 -15.8 -10.8 0.8 -15.8 0 3.2 -21.6 0 0 -10
+4 16 12.6 3.2 -21.6 15.7 6.9 -26.5 -15.7 6.9 -26.5 -12.6 3.2 -21.6
+5 24 12.6 3.2 -21.6 -12.6 3.2 -21.6 0 6.9 -26.5 0 0.8 -15.8
+4 16 15.7 6.9 -26.5 20 12 -30 -20 12 -30 -15.7 6.9 -26.5
+5 24 15.7 6.9 -26.5 -15.7 6.9 -26.5 0 12 -30 0 3.2 -21.6
+
+4 16 -16 16 -27 -16 16 6 -20 16 10 -20 16 -30
+4 16 20 16 -30 20 16 10 16 16 6 16 16 -27
+4 16 -20 16 0 -20 16 10 -20 8 10 -20 8 0
+4 16 20 8 0 20 8 10 20 16 10 20 16 0
+4 16 -20 8.5 -10 -20 16 -10 -20 16 0 -20 8 0
+4 16 20 8 0 20 16 0 20 16 -10 20 8.5 -10
+4 16 -20 10 -20 -20 16 -20 -20 16 -10 -20 8.5 -10
+4 16 20 8.5 -10 20 16 -10 20 16 -20 20 10 -20
+4 16 -20 12 -30 -20 16 -30 -20 16 -20 -20 10 -20
+4 16 20 10 -20 20 16 -20 20 16 -30 20 12 -30
+3 16 10.8 0.8 -15.8 10 0 -10 20 8.5 -10
+5 24 10.8 0.8 -15.8 20 8.5 -10 20 9.3 -15 10 0 -10
+3 16 20 9.3 -15 10.8 0.8 -15.8 20 8.5 -10
+5 24 20 9.3 -15 10.8 0.8 -15.8 20 8.5 -10 12.6 3.2 -21.6
+3 16 12.6 3.2 -21.6 10.8 0.8 -15.8 20 9.3 -15
+5 24 12.6 3.2 -21.6 20 9.3 -15 10.8 0.8 -15.8 20 10 -20
+3 16 20 10 -20 12.6 3.2 -21.6 20 9.3 -15
+5 24 20 10 -20 12.6 3.2 -21.6 20 9.3 -15 15.7 6.9 -26.5
+3 16 15.7 6.9 -26.5 12.6 3.2 -21.6 20 10 -20
+5 24 15.7 6.9 -26.5 20 10 -20 12.6 3.2 -21.6 20 11.2 -25
+3 16 20 11.2 -25 15.7 6.9 -26.5 20 10 -20
+5 24 20 11.2 -25 15.7 6.9 -26.5 20 10 -20 20 12 -30
+3 16 20 12 -30 15.7 6.9 -26.5 20 11.2 -25
+3 16 -20 8.5 -10 -10 0 -10 -10.8 0.8 -15.8
+5 24 -20 8.5 -10 -10.8 0.8 -15.8 -10 0 -10 -20 9.3 -15
+3 16 -20 8.5 -10 -10.8 0.8 -15.8 -20 9.3 -15
+5 24 -10.8 0.8 -15.8 -20 9.3 -15 -20 8.5 -10 -12.6 3.2 -21.6
+3 16 -20 9.3 -15 -10.8 0.8 -15.8 -12.6 3.2 -21.6
+5 24 -20 9.3 -15 -12.6 3.2 -21.6 -10.8 0.8 -15.8 -20 10 -20
+3 16 -20 9.3 -15 -12.6 3.2 -21.6 -20 10 -20
+5 24 -12.6 3.2 -21.6 -20 10 -20 -20 9.3 -15 -15.7 6.9 -26.5
+3 16 -20 10 -20 -12.6 3.2 -21.6 -15.7 6.9 -26.5
+5 24 -20 10 -20 -15.7 6.9 -26.5 -12.6 3.2 -21.6 -20 11.2 -25
+3 16 -20 10 -20 -15.7 6.9 -26.5 -20 11.2 -25
+5 24 -15.7 6.9 -26.5 -20 11.2 -25 -20 10 -20 -20 12 -30
+3 16 -20 11.2 -25 -15.7 6.9 -26.5 -20 12 -30
+3 16 -20 8.5 -10 -20 8 0 -19.239 7.391 -3.827
+3 16 19.239 7.391 -3.827 20 8 0 20 8.5 -10
+3 16 -20 8.5 -10 -19.239 7.391 -3.827 -17.071 5.657 -7.071
+3 16 17.071 5.657 -7.071 19.239 7.391 -3.827 20 8.5 -10
+3 16 -20 8.5 -10 -17.071 5.657 -7.071 -13.827 3.062 -9.239
+3 16 13.827 3.062 -9.239 17.071 5.657 -7.071 20 8.5 -10
+3 16 -20 8.5 -10 -13.827 3.062 -9.239 -10 0 -10
+3 16 10 0 -10 13.827 3.062 -9.239 20 8.5 -10
+4 16 -16 9 -6 -16 9 -10 -10 4 -10 -10 4 -6
+4 16 10 4 -6 10 4 -10 16 9 -10 16 9 -6
+4 16 -16 16 6 -16 16 -10 -16 9 -10 -16 9 6
+4 16 16 9 6 16 9 -10 16 16 -10 16 16 6
+4 16 -16 16 -10 -16 16 -27 -16 12 -27 -16 9 -10
+4 16 16 9 -10 16 12 -27 16 16 -27 16 16 -10
+
+1 16 -10 0 0 0 0 -10 0 1 0 10 0 0 p/2-4disc.dat
+1 16 10 0 0 0 0 10 0 1 0 10 0 0 p/2-4disc.dat
+1 16 -10 0 0 10 0 0 0 8 0 0 0 -10 p/1-4cyls2.dat
+1 16 -10 0 0 10 0 0 0 8 0 0 0 10 p/1-4cyls2.dat
+1 16 10 0 0 -10 0 0 0 8 0 0 0 -10 p/1-4cyls2.dat
+1 16 10 0 0 -10 0 0 0 8 0 0 0 10 p/1-4cyls2.dat
+1 16 -10 4 0 0 0 -6 0 -1 0 6 0 0 p/2-4disc.dat
+1 16 10 4 0 0 0 6 0 -1 0 6 0 0 p/2-4disc.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 6 0 0 0 5 0 0 0 -6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 -10 4 0 6 0 0 0 5 0 0 0 6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 -6 0 0 0 5 0 0 0 -6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 10 4 0 -6 0 0 0 5 0 0 0 6 p/1-4cyls2.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 2 0 0 0 6 p/2-4cyli.dat
+1 16 0 4 -10 8 0 0 0 2 0 0 0 8 p/2-4cyli.dat
+1 16 0 6 -10 1 0 0 0 -2.5 0 0 0 1 p/stud4a.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 10 p/1-4ndis.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 10 p/1-4ndis.dat
+1 16 -10 4 0 -6 4.242 0 5 -5 0 0 0 -6 p/1-4ndis.dat
+1 16 -10 4 0 -6 4.242 0 5 -5 0 0 0 6 p/1-4ndis.dat
+1 16 10 4 0 6 -4.242 0 5 -5 0 0 0 -6 p/1-4ndis.dat
+1 16 10 4 0 6 -4.242 0 5 -5 0 0 0 6 p/1-4ndis.dat
+
+2 24 -20 8 0 -20 8.5 -10
+2 24 20 8 0 20 8.5 -10
+2 24 -20 8.5 -10 -20 10 -20
+2 24 20 8.5 -10 20 10 -20
+2 24 -20 10 -20 -20 12 -30
+2 24 20 10 -20 20 12 -30
+2 24 -10 0 10 -20 8 10
+2 24 10 0 10 20 8 10
+2 24 -20 8 0 -20 8 10
+2 24 20 8 0 20 8 10
+2 24 -20 16 -30 -20 16 10
+2 24 20 16 -30 20 16 10
+2 24 -16 16 6 -16 16 -27
+2 24 16 16 6 16 16 -27
+2 24 -10 4 6 -16 9 6
+2 24 10 4 6 16 9 6
+2 24 -16 9 6 -16 9 -10
+2 24 16 9 6 16 9 -10
+2 24 16 9 -10 16 12 -27
+2 24 -16 9 -10 -16 12 -27
+2 24 -10 4 -10 -10.5 4.5 -15
+2 24 -10 4 -10 -10 4 -6
+2 24 10 4 -10 10 4 -6
+2 24 -10.5 4.5 -15 -11.5 6 -19.42
+2 24 -11.5 6 -19.4 -13.5 8.5 -23.5
+2 24 -13.5 8.5 -23.5 -16 12 -27
+2 24 10 4 -10 10.5 4.5 -15
+2 24 10.5 4.5 -15 11.5 6 -19.4
+2 24 11.5 6 -19.4 13.5 8.5 -23.5
+2 24 13.5 8.5 -23.5 16 12 -27
+2 24 -10 0 -10 -10.8 0.8 -15.8
+2 24 -10.8 0.8 -15.8 -12.6 3.2 -21.6
+2 24 -12.6 3.2 -21.6 -15.7 6.9 -26.5
+2 24 -15.7 6.9 -26.5 -20 12 -30
+2 24 10 0 -10 10.8 0.8 -15.8
+2 24 10.8 0.8 -15.8 12.6 3.2 -21.6
+2 24 12.6 3.2 -21.6 15.7 6.9 -26.5
+2 24 15.7 6.9 -26.5 20 12 -30
+
+1 16 -10 0 0 0 0 -10 0 1 0 10 0 0 p/2-4edge.dat
+1 16 10 0 0 0 0 10 0 1 0 10 0 0 p/2-4edge.dat
+1 16 -10 4 0 0 0 -6 0 1 0 6 0 0 p/2-4edge.dat
+1 16 10 4 0 0 0 6 0 1 0 6 0 0 p/2-4edge.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 10 p/1-4edge.dat
+1 16 -10 0 0 -10 7.07 0 8 8 0 0 0 -10 p/1-4edge.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 10 p/1-4edge.dat
+1 16 10 0 0 10 -7.07 0 8 8 0 0 0 -10 p/1-4edge.dat
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 -6 p/1-4edge.dat
+1 16 -10 4 0 -6 4.242 0 5 5 0 0 0 6 p/1-4edge.dat
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 -6 p/1-4edge.dat
+1 16 10 4 0 6 -4.242 0 5 5 0 0 0 6 p/1-4edge.dat
+
+4 16 -8 6 -10 -8 4 -10 -7.3912 4.306 -13.0616 -7.3912 6 -13.0616
+2 24 -7.3912 4.306 -13.0616 -8 4 -10
+3 16 -7.3912 6 -13.0616 -7.3912 4.306 -13.0616 -6.096 4.5 -15
+2 24 -7.3912 4.306 -13.0616 -6.096 4.5 -15
+4 16 -7.3912 6 -13.0616 -6.096 4.5 -15 -5.6568 4.727 -15.6568 -5.6568 6 -15.6568
+2 24 -5.6568 4.727 -15.6568 -6.096 4.5 -15
+4 16 -5.6568 6 -15.6568 -5.6568 4.727 -15.6568 -3.0616 5.315 -17.3912 -3.0616 6 -17.3912
+2 24 -3.0616 5.315 -17.3912 -5.6568 4.727 -15.6568
+4 16 -3.0616 6 -17.3912 -3.0616 5.315 -17.3912 0 5.523 -18 0 6 -18
+2 24 0 5.523 -18 -3.0616 5.315 -17.3912
+4 16 0 6 -18 0 5.523 -18 3.0616 5.315 -17.3912 3.0616 6 -17.3912
+2 24 0 5.523 -18 3.0616 5.315 -17.3912
+4 16 3.0616 6 -17.3912 3.0616 5.315 -17.3912 5.6568 4.727 -15.6568 5.6568 6 -15.6568
+2 24 3.0616 5.315 -17.3912 5.6568 4.727 -15.6568
+4 16 5.6568 6 -15.6568 5.6568 4.727 -15.6568 6.096 4.5 -15 7.3912 6 -13.0616
+2 24 7.3912 4.306 -13.0616 6.096 4.5 -15
+3 16 6.096 4.5 -15 7.3912 4.306 -13.0616 7.3912 6 -13.0616
+2 24 5.6568 4.727 -15.6568 6.096 4.5 -15
+4 16 7.3912 6 -13.0616 7.3912 4.306 -13.0616 8 4 -10 8 6 -10
+2 24 7.3912 4.306 -13.0616 8 4 -10
+5 24 -8 6 -10 -8 4 -10 -8 6 -6.6864 -7.3912 6 -13.0616
+5 24 -7.3912 6 -13.0616 -7.3912 4.306 -13.0616 -8 6 -10 -5.6568 6 -15.6568
+5 24 -5.6568 6 -15.6568 -5.6568 4.727 -15.6568 -7.3912 6 -13.0616 -3.0616 6 -17.3912
+5 24 -3.0616 6 -17.3912 -3.0616 5.315 -17.3912 -5.6568 6 -15.6568 0 6 -18
+5 24 0 6 -18 0 5.523 -18 -3.0616 6 -17.3912 3.0616 6 -17.3912
+5 24 3.0616 6 -17.3912 3.0616 5.315 -17.3912 0 6 -18 5.6568 6 -15.6568
+5 24 5.6568 6 -15.6568 5.6568 4.727 -15.6568 3.0616 6 -17.3912 7.3912 6 -13.0616
+5 24 7.3912 6 -13.0616 7.3912 4.306 -13.0616 5.6568 6 -15.6568 8 6 -10
+5 24 8 6 -10 8 4 -10 7.3912 6 -13.0616 8 6 -6.6864
+
+4 16 -5.5434 6 -12.2962 -5.5434 4.23 -12.2962 -6 4 -10 -6 6 -10
+2 24 -5.5434 4.23 -12.2962 -6 4 -10
+4 16 -4.2426 6 -14.2426 -4.2426 4.424 -14.2426 -5.5434 4.23 -12.2962 -5.5434 6 -12.2962
+2 24 -4.2426 4.424 -14.2426 -5.5434 4.23 -12.2926
+4 16 -2.2962 6 -15.5434 -3.107 4.5 -15 -4.2426 4.424 -14.2426 -4.2426 6 -14.2426
+2 24 -4.2426 4.424 -14.2416 -3.107 4.5 -15
+3 16 -3.107 4.5 -15 -2.2962 6 -15.5434 -2.2962 4.685 -15.5434
+2 24 -2.2926 4.685 -15.5434 -3.107 4.5 -15
+4 16 0 6 -16 0 4.841 -16 -2.2962 4.685 -15.5434 -2.2962 6 -15.5434
+2 24 0 4.841 -16 -2.2962 4.685 -15.5434
+4 16 2.2962 6 -15.5434 2.2962 4.685 -15.5434 0 4.841 -16 0 6 -16
+2 24 0 4.841 -16 2.2962 4.685 -15.5434
+3 16 2.2962 4.685 -15.5434 2.2962 6 -15.5434 3.107 4.5 -15
+2 24 2.2926 4.685 -15.5434 3.107 4.5 -15
+4 16 4.2426 6 -14.2426 4.2426 4.424 -14.2426 3.107 4.5 -15 2.2962 6 -15.5434
+2 24 4.2426 4.424 -14.2416 3.107 4.5 -15
+4 16 5.5434 6 -12.2962 5.5434 4.23 -12.2962 4.2426 4.424 -14.2426 4.2426 6 -14.2426
+2 24 4.2426 4.424 -14.2426 5.5434 4.23 -12.2926
+2 24 5.5434 4.23 -12.2962 6 4 -10
+4 16 6 6 -10 6 4 -10 5.5434 4.23 -12.2962 5.5434 6 -12.2962
+5 24 -6 6 -10 -6 4 -10 -6 6 -7.5148 -5.5434 6 -12.2962
+5 24 -5.5434 6 -12.2962 -5.5434 4.23 -12.2962 -6 6 -10 -4.2426 6 -14.2426
+5 24 -4.2426 6 -14.2426 -4.2426 4.424 -14.2426 -5.5434 6 -12.2962 -2.2962 6 -15.5434
+5 24 -2.2962 6 -15.5434 -2.2962 4.685 -15.5434 -4.2426 6 -14.2426 0 6 -16
+5 24 0 6 -16 0 4.841 -16 -2.2962 6 -15.5434 2.2962 6 -15.5434
+5 24 2.2962 6 -15.5434 2.2962 4.685 -15.5434 0 6 -16 4.2426 6 -14.2426
+5 24 4.2426 6 -14.2426 4.2426 4.424 -14.2426 2.2962 6 -15.5434 5.5434 6 -12.2962
+5 24 5.5434 6 -12.2962 5.5434 4.23 -12.2962 4.2426 6 -14.2426 6 6 -10
+5 24 6 6 -10 6 4 -10 5.5434 6 -12.2962 6 6 -7.5148
+0
+
+0 FILE parts/3794a.dat
+0 Plate  1 x  2 without Groove with 1 Centre Stud
+0 Name: 3794a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS jumper, offset, tile, spacer
+
+0 !HISTORY 2002-07-16 [fwcain] Added keywords.
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2004-07-25 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2011-11-12 [PTadmin] Renamed from 3794
+0 !HISTORY 2011-12-05 [MagFors] Retitled, was "Plate  1 x  2 with 1 Stud" 
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+0 
+4 16 20 8 10 16 8 6 -16 8 6 -20 8 10
+4 16 -20 8 10 -16 8 6 -16 8 -6 -20 8 -10
+4 16 -20 8 -10 -16 8 -6 16 8 -6 20 8 -10
+4 16 20 8 -10 16 8 -6 16 8 6 20 8 10
+1 16 0 8 0 20 0 0 0 -8 0 0 0 10 p/box5.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+
+0 FILE parts/3037.dat
+0 Slope Brick 45  2 x  4
+0 Name: 3037.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [izanette] Made BFC compliant (2003-03-08)
+0 !HISTORY 2008-07-08 [OrionP] Fixed L3P errors, moved guts to subpart (2003-10-05)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3037s01.dat
+4 16 40 20 -30 40 0 -10 -40 0 -10 -40 20 -30
+0
+
+0 FILE parts/s/3037s01.dat
+0 ~Slope Brick 45  2 x  4 Without Front Face
+0 Name: s\3037s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Uncomment for front face
+0 // 4 16 40 20 -30 40 0 -10 -40 0 -10 -40 20 -30
+
+
+1 16 20 20 -10 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 20 4 -10 6 0 0 0 1 0 0 0 6  p/2-4edge.dat
+1 16 20 4 -10 6 0 0 0 1 6 0 0 -6 p/2-4edge.dat
+1 16 20 4 -10 8 0 0 0 1 0 0 0 8  p/2-4edge.dat
+1 16 20 4 -10 8 0 0 0 1 8 0 0 -8 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 20 10 -10 0 0 6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 20 10 -10 0 0 -6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 20 4 -10 6 0 0 0 16 0 0 0 6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 20 10 -10 6 0 0 0 10 0 0 0 -6 p/2-4cyli.dat
+1 16 20 12 -10 0 0 8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 20 12 -10 0 0 -8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 20 4 -10 8 0 0 0 16 0 0 0 8 p/2-4cyli.dat
+1 16 20 12 -10 8 0 0 0 8 0 0 0 -8 p/2-4cyli.dat
+1 16 -20 20 -10 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -20 4 -10 6 0 0 0 1 0 0 0 6  p/2-4edge.dat
+1 16 -20 4 -10 6 0 0 0 1 6 0 0 -6 p/2-4edge.dat
+1 16 -20 4 -10 8 0 0 0 1 0 0 0 8  p/2-4edge.dat
+1 16 -20 4 -10 8 0 0 0 1 8 0 0 -8 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 -20 10 -10 0 0 6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -20 10 -10 0 0 -6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -20 4 -10 6 0 0 0 16 0 0 0 6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 -10 6 0 0 0 10 0 0 0 -6 p/2-4cyli.dat
+1 16 -20 12 -10 0 0 8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 -20 12 -10 0 0 -8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 -20 4 -10 8 0 0 0 16 0 0 0 8 p/2-4cyli.dat
+1 16 -20 12 -10 8 0 0 0 8 0 0 0 -8 p/2-4cyli.dat
+1 16 0 20 -10 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6  p/2-4edge.dat
+1 16 0 4 -10 6 0 0 0 1 6 0 0 -6 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 0 0 0 8  p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 8 0 0 -8 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 10 -10 0 0 6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 10 -10 0 0 -6 0 -6 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 16 0 0 0 6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 -10 6 0 0 0 10 0 0 0 -6 p/2-4cyli.dat
+1 16 0 12 -10 0 0 8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 0 12 -10 0 0 -8 0 -8 0 -8 0 0 p/1-4cyls.dat
+1 16 0 4 -10 8 0 0 0 16 0 0 0 8 p/2-4cyli.dat
+1 16 0 12 -10 8 0 0 0 8 0 0 0 -8 p/2-4cyli.dat
+
+2 24 36 24 6 -36 24 6
+2 24 -36 24 6 -36 24 -26
+2 24 -36 24 -26 36 24 -26
+2 24 36 24 -26 36 24 6
+
+2 24 40 24 10 -40 24 10
+2 24 -40 24 10 -40 24 -30
+2 24 -40 24 -30 40 24 -30
+2 24 40 24 -30 40 24 10
+
+2 24 36 24 6 36 4 6
+2 24 -36 24 6 -36 4 6
+2 24 36 24 -26 36 20 -26
+2 24 -36 24 -26 -36 20 -26
+2 24 36 4 6 -36 4 6
+2 24 36 4 -10 -36 4 -10
+2 24 36 20 -26 -36 20 -26
+2 24 36 4 6 36 4 -10
+2 24 -36 4 6 -36 4 -10
+2 24 36 20 -26 36 4 -10
+2 24 -36 20 -26 -36 4 -10
+
+2 24 40 24 10 40 0 10
+2 24 -40 24 10 -40 0 10
+2 24 40 24 -30 40 20 -30
+2 24 -40 24 -30 -40 20 -30
+2 24 40 0 10 -40 0 10
+2 24 40 0 -10 -40 0 -10
+2 24 40 20 -30 -40 20 -30
+2 24 40 0 10 40 0 -10
+2 24 -40 0 10 -40 0 -10
+2 24 40 20 -30 40 0 -10
+2 24 -40 20 -30 -40 0 -10
+
+4 16 40 24 10 36 24 6 -36 24 6 -40 24 10
+4 16 -40 24 10 -36 24 6 -36 24 -26 -40 24 -30
+4 16 -40 24 -30 -36 24 -26 36 24 -26 40 24 -30
+4 16 40 24 -30 36 24 -26 36 24 6 40 24 10
+4 16 36 4 6 36 4 -10 -36 4 -10 -36 4 6
+4 16 40 0 10 -40 0 10 -40 0 -10 40 0 -10
+
+4 16 40 24 10 -40 24 10 -40 0 10 40 0 10
+4 16 36 24 6 36 4 6 -36 4 6 -36 24 6
+4 16 36 24 -26 -36 24 -26 -36 20 -26 36 20 -26
+4 16 40 24 -30 40 20 -30 -40 20 -30 -40 24 -30
+
+4 16 40 24 10 40 0 10 40 20 -30 40 24 -30
+3 16 40 0 10 40 0 -10 40 20 -30
+4 16 36 24 6 36 24 -26 36 20 -26 36 4 6
+3 16 36 4 6 36 20 -26 36 4 -10
+4 16 -36 24 6 -36 4 6 -36 20 -26 -36 24 -26
+3 16 -36 4 6 -36 4 -10 -36 20 -26
+4 16 -40 24 10 -40 24 -30 -40 20 -30 -40 0 10
+3 16 -40 0 10 -40 20 -30 -40 0 -10
+
+4 16 36 20 -26 -36 20 -26 -36 4 -10 36 4 -10
+
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/30414.dat
+0 Brick  1 x  4 with Studs on Side
+0 Name: 30414.dat
+0 Author: R. M. Rodinsky [dublar]
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-02-18 [PTadmin] Official Update 2002-01
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 -40 24 10 -40 0 10
+2 24 -40 24 10 40 24 10
+2 24 40 24 10 40 0 10
+4 16 40 0 10 40 24 10 -40 24 10 -40 0 10
+2 24 -36 24 6 -36 4 6
+2 24 36 24 6 36 4 6
+2 24 36 24 6 -36 24 6
+4 16 -36 4 6 -36 24 6 36 24 6 36 4 6
+4 16 40 24 10 36 24 6 -36 24 6 -40 24 10
+2 24 -36 24 6 -36 24 -6
+2 24 -36 24 -6 -36 4 -6
+4 16 -36 4 -6 -36 24 -6 -36 24 6 -36 4 6
+2 24 36 24 -6 36 4 -6
+2 24 -36 24 -6 36 24 -6
+2 24 36 24 -6 36 24 6
+4 16 36 4 6 36 24 6 36 24 -6 36 4 -6
+4 16 -36 24 -6 -36 14 -6 36 14 -6 36 24 -6
+2 24 -40 24 -10 -40 0 -10
+2 24 -40 24 -10 -40 24 10
+4 16 -40 0 10 -40 24 10 -40 24 -10 -40 0 -10
+4 16 -40 24 10 -36 24 6 -36 24 -6 -40 24 -10
+2 24 40 24 -10 40 0 -10
+2 24 40 24 10 40 24 -10
+2 24 40 24 -10 -40 24 -10
+4 16 -40 24 -10 -36 24 -6 36 24 -6 40 24 -10
+4 16 40 24 -10 36 24 -6 36 24 6 40 24 10
+4 16 40 0 -10 40 24 -10 40 24 10 40 0 10
+4 16 40 24 -10 40 16 -10 -40 16 -10 -40 24 -10
+4 16 -36 4 -10 -40 4 -10 -40 16 -10 -36 16 -10
+4 16 -16 4 -10 -24 4 -10 -24 16 -10 -16 16 -10
+4 16 4 4 -10 -4 4 -10 -4 16 -10 4 16 -10
+4 16 24 4 -10 16 4 -10 16 16 -10 24 16 -10
+4 16 40 4 -10 36 4 -10 36 16 -10 40 16 -10
+4 16 -36 14 -6 -36 4 -6 -34 4 -6 -34 14 -6
+4 16 -14 14 -6 -26 14 -6 -26 6 -6 -14 6 -6
+4 16 6 14 -6 -6 14 -6 -6 6 -6 6 6 -6
+4 16 14 6 -6 26 6 -6 26 14 -6 14 14 -6
+4 16 34 14 -6 34 4 -6 36 4 -6 36 14 -6
+1 16 -30 10 -6 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 -30 10 -6 4 0 0 0 0 4 0 -1 0 p/4-4ndis.dat
+1 16 -10 10 -6 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 -10 10 -6 4 0 0 0 0 4 0 -1 0 p/4-4ndis.dat
+1 16 10 10 -6 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 10 10 -6 4 0 0 0 0 4 0 -1 0 p/4-4ndis.dat
+
+1 16 30 10 -6 4 0 0 0 0 4 0 1 0 p/4-4edge.dat
+1 16 30 10 -6 4 0 0 0 0 4 0 -1 0 p/4-4ndis.dat
+
+1 16 -30 10 -10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 -30 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 -30 10 -10 4 0 0 0 0 4 0 4 0 p/4-4cyli.dat
+1 16 -30 10 -10 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+1 16 -10 10 -10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 -10 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 -10 10 -10 4 0 0 0 0 4 0 4 0 p/4-4cyli.dat
+1 16 -10 10 -10 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+1 16 10 10 -10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 10 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 10 10 -10 4 0 0 0 0 4 0 4 0 p/4-4cyli.dat
+1 16 10 10 -10 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+1 16 30 10 -10 6 0 0 0 0 6 0 1 0 p/4-4edge.dat
+1 16 30 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 30 10 -10 4 0 0 0 0 4 0 4 0 p/4-4cyli.dat
+1 16 30 10 -10 1 0 0 0 0 1 0 1 0 p/stud2a.dat
+4 16 36 4 -6 36 6 -6 -36 6 -6 -36 4 -6
+2 24 36 4 6 -36 4 6
+1 16 -20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+2 24 -36 4 6 -36 4 -6
+2 24 36 4 -6 36 4 6
+2 24 -36 4 -6 36 4 -6
+4 16 36 4 6 36 4 -6 -36 4 -6 -36 4 6
+4 16 40 4 -10 40 0 -10 -40 0 -10 -40 4 -10
+
+2 24 -40 0 10 40 0 10
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+2 24 -40 0 -10 -40 0 10
+2 24 40 0 -10 -40 0 -10
+2 24 40 0 10 40 0 -10
+4 16 -40 0 10 -40 0 -10 40 0 -10 40 0 10
+0
+
+0 FILE parts/3709b.dat
+0 Technic Plate  2 x  4 with Holes
+0 Name: 3709b.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-07-15 [PTadmin] Official Update 1998-07
+0 !HISTORY 2004-07-20 [guyvivan] Made BFC Compliant
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 40 0 0 0 8 0 0 0 20 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 36 0 0 0 4 0 0 0 16 p/box4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 -20 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 0 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+4 16 40 8 20 36 8 16 -36 8 16 -40 8 20
+4 16 -40 8 20 -36 8 16 -36 8 -16 -40 8 -20
+4 16 -40 8 -20 -36 8 -16 36 8 -16 40 8 -20
+4 16 40 8 -20 36 8 -16 36 8 16 40 8 20
+1 16 20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 -20 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+4 16 36 4 16 28 4 8 -28 4 8 -36 4 16
+4 16 -36 4 16 -28 4 8 -28 4 -8 -36 4 -16
+4 16 -36 4 -16 -28 4 -8 28 4 -8 36 4 -16
+4 16 36 4 -16 28 4 -8 28 4 8 36 4 16
+4 16 12 4 8 12 4 -8 8 4 -8 8 4 8
+4 16 -8 4 8 -8 4 -8 -12 4 -8 -12 4 8
+1 16 20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+1 16 -20 0 0 6 0 0 0 1 0 0 0 6 p/4-4ndis.dat
+4 16 40 0 -20 26 0 -6 -26 0 -6 -40 0 -20
+4 16 -40 0 -20 -26 0 -6 -26 0 6 -40 0 20
+4 16 -40 0 20 -26 0 6 26 0 6 40 0 20
+4 16 40 0 20 26 0 6 26 0 -6 40 0 -20
+4 16 14 0 -6 14 0 6 6 0 6 6 0 -6
+4 16 -6 0 -6 -6 0 6 -14 0 6 -14 0 -6
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/4864b.dat
+0 Panel  1 x  2 x  2 with Hollow Studs
+0 Name: 4864b.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-25 [cwdee] Update to use subpart
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/4864s01.dat
+
+4 16 -20 0 10 -20 48 10 20 48 10 20 0 10
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+
+0
+
+0 FILE parts/s/4864s01.dat
+0 ~Panel  1 x  2 x  2 without Front Face and Studs
+0 Name: s\4864s01.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Subpart UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-07-02 [Steffen] BFCed
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2004-04-25 [cwdee] Restructured for solid/hollow studs
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-09-10 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+0 // Uncomment for decorated surface
+0 // 4 16 -20 0 10 -20 48 10 20 48 10 20 0 10
+0 // Uncomment for solid studs
+0 // 1 16 10 0 0 1 0 0 0 1 0 0 0 1 stud.dat
+0 // 1 16 -10 0 0 1 0 0 0 1 0 0 0 1 stud.dat
+0 // Uncomment for hollow studs
+0 // 1 16 10 0 0 1 0 0 0 1 0 0 0 1 stud2.dat
+0 // 1 16 -10 0 0 1 0 0 0 1 0 0 0 1 stud2.dat
+1 16 0 44 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 48 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 20 48 10 16 48 6 -16 48 6 -20 48 10
+4 16 -20 48 10 -16 48 6 -16 48 -6 -20 48 -10
+4 16 -20 48 -10 -16 48 -6 16 48 -6 20 48 -10
+4 16 20 48 -10 16 48 -6 16 48 6 20 48 10
+2 24 20 48 10 -20 48 10
+2 24 -20 48 10 -20 48 -10
+2 24 20 48 -10 20 48 10
+2 24 20 0 10 20 48 10
+2 24 -20 0 10 -20 48 10
+4 16 -20 40 6 -20 48 10 -20 48 -10 -20 40 -10
+4 16 -20 48 10 -20 40 6 -20 4 6 -20 0 10
+4 16 -20 0 10 -20 4 6 -20 4 -10 -20 0 -10
+4 16 20 48 -10 20 48 10 20 40 6 20 40 -10
+4 16 20 4 6 20 40 6 20 48 10 20 0 10
+4 16 20 4 -10 20 4 6 20 0 10 20 0 -10
+0 BFC INVERTNEXT
+1 16 0 22 -10 20 0 0 0 0 -18 0 16 0 p/box3u2p.dat
+1 16 0 2 0 20 0 0 0 0 -2 0 -10 0 p/box2-5.dat
+1 16 0 44 -10 -20 0 0 0 0 4 0 1 0 p/rect3.dat
+0
+
+0 FILE parts/3004.dat
+0 Brick  1 x  2
+0 Name: 3004.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-05-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+
+0 BFC INVERTNEXT
+1 16 0 24 0 16 0 0 0 -20 0 0 0 6 p/box5.dat
+
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+4 16 -20 24 -10 -16 24 -6 16 24 -6 20 24 -10
+4 16 20 24 -10 16 24 -6 16 24 6 20 24 10
+
+1 16 0 24 0 20 0 0 0 -24 0 0 0 10 p/box5.dat
+
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3036.dat
+0 Plate  6 x  8
+0 Name: 3036.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2004-07-26 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 60 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 -40 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 76 0 0 0 -4 0 0 0 56 p/box5.dat
+4 16 80 8 -60 76 8 -56 -76 8 -56 -80 8 -60
+4 16 80 8 60 76 8 56 76 8 -56 80 8 -60
+4 16 -76 8 -56 -76 8 56 -80 8 60 -80 8 -60
+4 16 -76 8 56 76 8 56 80 8 60 -80 8 60
+1 16 0 8 0 80 0 0 0 -8 0 0 0 60 p/box5.dat
+1 16 70 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -50 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/6636.dat
+0 Tile  1 x  6
+0 Name: 6636.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-02-15 [BrickCaster] groove
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2004-07-27 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [johnny-thunder] subfiled (2006-07-01)
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/6636s01.dat
+4 16 60 0 -10 60 0 10 -60 0 10 -60 0 -10
+0
+
+0 FILE parts/s/6636s01.dat
+0 ~Tile  1 x  6 without Top Face
+0 Name: s\6636s01.dat
+0 Author: C.L.Rasmussen [johnny-thunder]
+0 !LDRAW_ORG Subpart UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 40 4 0 1 0 0 0 -1 0 0 0 -1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 -1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 -1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 -1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 -1 p/stud3.dat
+1 16 0 7 0 60 0 0 0 -7 0 0 0 10 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 56 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 59 8 9 56 8 6 -56 8 6 -59 8 9
+4 16 -59 8 9 -56 8 6 -56 8 -6 -59 8 -9
+4 16 -59 8 -9 -56 8 -6 56 8 -6 59 8 -9
+4 16 59 8 -9 56 8 -6 56 8 6 59 8 9
+1 16 0 8 0 59 0 0 0 -1 0 0 0 9 p/box4.dat
+4 16 60 7 10 59 7 9 -59 7 9 -60 7 10
+4 16 -60 7 10 -59 7 9 -59 7 -9 -60 7 -10
+4 16 -60 7 -10 -59 7 -9 59 7 -9 60 7 -10
+4 16 60 7 -10 59 7 -9 59 7 9 60 7 10
+0
+
+0 FILE parts/3795.dat
+0 Plate  2 x  6
+0 Name: 3795.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-08-01 [Steffen] BFCed
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 56 0 0 0 -4 0 0 0 16 p/box5.dat
+4 16 -60 8 20 -56 8 16 56 8 16 60 8 20
+4 16 60 8 -20 56 8 -16 -56 8 -16 -60 8 -20
+4 16 60 8 20 56 8 16 56 8 -16 60 8 -20
+4 16 -60 8 -20 -56 8 -16 -56 8 16 -60 8 20
+1 16 0 8 0 60 0 0 0 -8 0 0 0 20 p/box5.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/44225.dat
+0 Technic Beam  3 with Rotation Joint 3 Pin
+0 Name: 44225.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 -10 50 1 0 0 0 8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 50 1 0 0 0 -8 0 0 0 1 p/npeghol2.dat
+1 16 0 -10 70 1 0 0 0 8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 70 1 0 0 0 -8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 80 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -10 80 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -10 80 9 0 0 0 20 0 0 0 9 p/2-4cyli.dat
+2 24 9 -10 28.558 9 -10 80
+2 24 -9 -10 28.558 -9 -10 80
+2 24 9 10 34.5 9 10 80
+2 24 -9 10 34.5 -9 10 80
+4 16 9 10 28.558 9 10 80 9 -10 80 9 -10 28.558
+4 16 -9 -10 28.558 -9 -10 80 -9 10 80 -9 10 28.558
+1 16 0 -10 80 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 80 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 80 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 80 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 80 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -10 60 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 60 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 60 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 60 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 60 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -10 40 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 40 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+1 16 0 10 0 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 0 0 6 0 -8 0 6 0 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8 40 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 40 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 40 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 40 -9 0 0 0 -1 0 0 0 -9 p/2-4ndis.dat
+4 16 9 10 31 9 10 28.558 -9 10 28.578 -9 10 31
+1 16 0 -10 40 6.36396 0 -6.36396 0 1 0 -6.36396 0 -6.36396 p/1-4edge.dat
+1 16 0 6 40 6.36396 0 -6.36396 0 1 0 -6.36396 0 -6.36396 p/1-4edge.dat
+1 16 0 -10 40 6.36396 0 -6.36396 0 16 0 -6.36396 0 -6.36396 p/1-4cyli.dat
+2 24 6.364 -10 33.636 6.364 6 33.636
+2 24 -6.364 -10 33.636 -6.364 6 33.636
+2 24 9 -10 28.558 6.364 -10 29.255
+4 16 9 -10 28.558 6.364 -10 29.255 6.364 0 29.255 9 0 28.558
+4 16 -9 0 28.558 -6.364 0 29.255 -6.364 -10 29.255 -9 -10 28.558
+2 24 -9 -10 28.558 -6.364 -10 29.255
+2 24 -6.364 -10 33.636 -6.364 -10 29.255
+2 24 6.364 -10 33.636 6.364 -10 29.255
+4 16 6.364 6 25.237 6.364 6 33.636 1.5 6 31.298 1.5 6 25.901
+4 16 -6.364 6 33.636 -6.364 6 25.237 -1.5 6 25.901 -1.5 6 31.298
+4 16 6.364 -10 33.636 6.364 -10 29.255 9 -10 28.558 9 -10 40
+4 16 -6.364 -10 29.255 -6.364 -10 33.636 -9 -10 40 -9 -10 28.558
+4 16 6.364 6 33.636 6.364 6 29.255 6.364 -10 29.255 6.364 -10 33.636
+4 16 -6.364 -10 33.636 -6.364 -10 29.255 -6.364 6 29.255 -6.364 6 33.636
+2 24 9 0 28.558 6.364 0 29.255
+2 24 -9 0 28.558 -6.364 0 29.255
+2 24 9 -10 28.558 9 0 28.558
+2 24 -9 -10 28.558 -9 0 28.558
+2 24 6.364 0 29.255 6.364 -10 29.255
+2 24 -6.364 0 29.255 -6.364 -10 29.255
+2 24 -6.364 6 33.636 -6.364 6 25.237
+2 24 6.364 6 33.636 6.364 6 25.237
+2 24 -6.364 0 29.255 -6.364 0 25.237
+2 24 6.364 0 29.255 6.364 0 25.237
+2 24 6.364 0 25.237 6.364 6 25.237
+2 24 -6.364 0 25.237 -6.364 6 25.237
+4 16 6.364 6 29.255 6.364 6 25.237 6.364 0 25.237 6.364 0 29.255
+4 16 -6.364 0 29.255 -6.364 0 25.237 -6.364 6 25.237 -6.364 6 29.255
+2 24 1.5 0 31.298 1.5 0 25.901
+4 16 1.5 0 31.298 1.5 0 25.901 1.5 6 25.901 1.5 6 31.298
+4 16 -1.5 6 31.298 -1.5 6 25.901 -1.5 0 25.901 -1.5 0 31.298
+4 16 -1.5 0 31.298 -1.5 0 25.901 1.5 0 25.901 1.5 0 31.298
+2 24 -1.5 0 31.298 -1.5 0 25.901
+2 24 1.5 6 31.298 1.5 6 25.901
+2 24 -1.5 6 31.298 -1.5 6 25.901
+2 24 1.5 0 31.298 1.5 6 31.298
+2 24 -1.5 0 31.298 -1.5 6 31.298
+2 24 1.5 0 25.901 1.5 6 25.901
+2 24 -1.5 0 25.901 -1.5 6 25.901
+2 24 1.5 0 31.298 0 0 31
+2 24 -1.5 0 31.298 0 0 31
+2 24 0 0 26 1.5 0 25.901
+2 24 0 0 26 -1.5 0 25.901
+1 16 0 6 0 21.2132 0 21.2132 0 1 0 21.2132 0 -21.2132 p/48/3-4edge.dat
+1 16 0 6 0 0 0 12 0 1 0 12 0 0 p/4-4ring1.dat
+1 16 0 10 0 21.2132 0 21.2132 0 1 0 21.2132 0 -21.2132 p/48/3-4edge.dat
+2 24 21.213 6 21.213 18.264 6 23.802
+2 24 18.264 6 23.802 15 6 25.98
+2 24 15 6 25.98 14.553 6 26.184
+2 24 21.213 10 21.213 18.264 10 23.802
+2 24 18.264 10 23.802 15 10 25.98
+2 24 15 10 25.98 14.553 10 26.184
+2 24 -21.213 10 21.213 -18.264 10 23.802
+2 24 -18.264 10 23.802 -15 10 25.98
+2 24 -15 10 25.98 -14.553 10 26.184
+2 24 -21.213 6 21.213 -18.264 6 23.802
+2 24 -18.264 6 23.802 -15 6 25.98
+2 24 -15 6 25.98 -14.553 6 26.184
+1 16 0 6 0 30 0 0 0 4 0 0 0 -30 p/48/4-4cyli.dat
+1 16 0 6 0 26 0 0 0 1 0 0 0 -26 p/48/4-4edge.dat
+1 16 0 6 0 2 0 0 0 1 0 0 0 -2 p/48/4-4rin13.dat
+1 16 0 6 0 2 0 0 0 1 0 0 0 -2 p/48/4-4rin14.dat
+1 16 0 -6 0 2 0 0 0 1 0 0 0 -2 p/48/4-4rin12.dat
+1 16 0 -6 0 26 0 0 0 1 0 0 0 -26 p/48/4-4edge.dat
+1 16 0 -6 0 26 0 0 0 12 0 0 0 -26 p/48/4-4cyli.dat
+2 24 9 10 34.5 9.684 10 31.053
+2 24 9.684 10 31.053 11.637 10 28.137
+2 24 11.637 10 28.137 14.553 10 26.184
+2 24 9 6 34.5 9.684 6 31.053
+2 24 9.684 6 31.053 11.637 6 28.137
+2 24 11.637 6 28.137 14.553 6 26.184
+2 24 -9 10 34.5 -9.684 10 31.053
+2 24 -9.684 10 31.053 -11.637 10 28.137
+2 24 -11.637 10 28.137 -14.553 10 26.184
+2 24 -9 6 34.5 -9.684 6 31.053
+2 24 -9.684 6 31.053 -11.637 6 28.137
+2 24 -11.637 6 28.137 -14.553 6 26.184
+0 BFC INVERTNEXT
+1 16 18 6 34.5 -3.44415 0 -8.31492 0 4 0 -8.31492 0 3.44415 p/1-8cyli.dat
+0 BFC INVERTNEXT
+1 16 18 6 34.5 -8.31492 0 -3.44415 0 4 0 -3.44415 0 8.31492 p/1-16cyli.dat
+1 16 18 6 34.5 -3.44415 0 -8.31492 0 1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 18 6 34.5 -6.36396 0 -6.36396 0 1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+1 16 18 10 34.5 -3.44415 0 -8.31492 0 -1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 18 10 34.5 -6.36396 0 -6.36396 0 -1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+0 BFC INVERTNEXT
+1 16 -18 10 34.5 3.44415 0 8.31492 0 -4 0 -8.31492 0 3.44415 p/1-8cyli.dat
+0 BFC INVERTNEXT
+1 16 -18 10 34.5 8.31492 0 3.44415 0 -4 0 -3.44415 0 8.31492 p/1-16cyli.dat
+1 16 -18 10 34.5 3.44415 0 8.31492 0 -1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 -18 10 34.5 6.36396 0 6.36396 0 -1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+1 16 -18 6 34.5 3.44415 0 8.31492 0 1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 -18 6 34.5 6.36396 0 6.36396 0 1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+2 24 9 6 28.558 9 6 34.5
+2 24 -9 6 28.558 -9 6 34.5
+1 16 15 0 28.23 -2.2961 0 -5.54328 0 1 0 -5.54328 0 2.2961 p/1-8ndis.dat
+1 16 -15 0 28.23 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8ndis.dat
+0 BFC INVERTNEXT
+1 16 15 0 28.23 -2.2961 0 -5.54328 0 6 0 -5.54328 0 2.2961 p/1-8cyli.dat
+0 BFC INVERTNEXT
+1 16 -15 6 28.23 2.2961 0 5.54328 0 -6 0 -5.54328 0 2.2961 p/1-8cyli.dat
+2 24 9 6 28.558 9.456 6 25.932
+4 16 9 0 28.558 9.456 0 25.932 9.456 6 25.932 9 6 28.558
+4 16 -9 6 28.558 -9.456 6 25.932 -9.456 0 25.932 -9 0 28.558
+2 24 9.456 6 25.932 10.758 6 23.988
+2 24 10.758 6 23.988 12.702 6 22.686
+2 24 9 0 28.558 9.456 0 25.932
+4 16 9.456 0 25.932 9 0 28.558 6.364 0 29.255 6.364 0 25.237
+4 16 -9 0 28.558 -9.456 0 25.932 -6.364 0 25.237 -6.364 0 29.255
+3 16 9.456 0 25.932 6.364 0 25.237 9.95 0 24.021
+3 16 -9.456 0 25.932 -9.95 0 24.021 -6.364 0 25.237
+2 24 9.456 0 25.932 10.758 0 23.988
+2 24 10.758 0 23.988 12.702 0 22.686
+2 24 -9 0 28.558 -9.456 0 25.932
+2 24 -9.456 0 25.932 -10.758 0 23.988
+2 24 -10.758 0 23.988 -12.702 0 22.686
+2 24 -9 6 28.558 -9.456 6 25.932
+2 24 -9.456 6 25.932 -10.758 6 23.988
+2 24 -10.758 6 23.988 -12.702 6 22.686
+2 24 6.729 0 25.113 6.364 0 25.237
+2 24 6.729 0 25.113 9.95 0 24.021
+2 24 12.702 0 22.686 9.95 0 24.021
+2 24 -6.729 0 25.113 -6.364 0 25.237
+2 24 -6.729 0 25.113 -9.95 0 24.021
+2 24 -12.702 0 22.686 -9.95 0 24.021
+1 16 0 -6 22.307 2.936 0 0 0 -1 0 0 0 1.2 p/2-4edge.dat
+1 16 5.773 -6 21.547 2.83596 0 0.310583 0 -1 0 -0.759893 0 1.15911 p/2-4edge.dat
+1 16 11.153 -6 19.319 2.54265 0 0.6 0 -1 0 -1.468 0 1.03923 p/2-4edge.dat
+1 16 15.773 -6 15.774 2.07607 0 0.848528 0 -1 0 -2.07607 0 0.848528 p/2-4edge.dat
+1 16 19.318 -6 11.154 1.468 0 1.03923 0 -1 0 -2.54265 0 0.6 p/2-4edge.dat
+1 16 21.547 -6 5.774 0.759893 0 1.15911 0 -1 0 -2.83596 0 0.310583 p/2-4edge.dat
+1 16 0 6 22.307 2.936 0 0 0 -1 0 0 0 1.2 p/2-4edge.dat
+1 16 5.773 6 21.547 2.83596 0 0.310583 0 -1 0 -0.759893 0 1.15911 p/2-4edge.dat
+1 16 11.153 6 19.319 2.54265 0 0.6 0 -1 0 -1.468 0 1.03923 p/2-4edge.dat
+1 16 15.773 6 15.774 2.07607 0 0.848528 0 -1 0 -2.07607 0 0.848528 p/2-4edge.dat
+1 16 19.318 6 11.154 1.468 0 1.03923 0 -1 0 -2.54265 0 0.6 p/2-4edge.dat
+1 16 21.547 6 5.774 0.759893 0 1.15911 0 -1 0 -2.83596 0 0.310583 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -6 22.307 2.936 0 0 0 12 0 0 0 1.2 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 5.773 -6 21.547 2.83596 0 0.310583 0 12 0 -0.759893 0 1.15911 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 11.153 -6 19.319 2.54265 0 0.6 0 12 0 -1.468 0 1.03923 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 15.773 -6 15.774 2.07607 0 0.848528 0 12 0 -2.07607 0 0.848528 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 19.318 -6 11.154 1.468 0 1.03923 0 12 0 -2.54265 0 0.6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 21.547 -6 5.774 0.759893 0 1.15911 0 12 0 -2.83596 0 0.310583 p/2-4cyli.dat
+1 16 0 -6 22.307 2.936 0 0 0 1 0 0 0 1.2 p/2-4ndis.dat
+1 16 5.773 -6 21.547 2.83596 0 0.310583 0 1 0 -0.759893 0 1.15911 p/2-4ndis.dat
+1 16 11.153 -6 19.319 2.54265 0 0.6 0 1 0 -1.468 0 1.03923 p/2-4ndis.dat
+1 16 15.773 -6 15.774 2.07607 0 0.848528 0 1 0 -2.07607 0 0.848528 p/2-4ndis.dat
+1 16 19.318 -6 11.154 1.468 0 1.03923 0 1 0 -2.54265 0 0.6 p/2-4ndis.dat
+1 16 21.547 -6 5.774 0.759893 0 1.15911 0 1 0 -2.83596 0 0.310583 p/2-4ndis.dat
+4 16 -2.936 -6 23.507 0 -6 23.507 0 -6 24 -3.132 -6 23.794
+4 16 0 -6 23.507 2.936 -6 23.507 3.132 -6 23.794 0 -6 24
+4 16 2.936 -6 22.307 3.248 -6 23.466 3.132 -6 23.794 2.936 -6 23.507
+4 16 3.2481 -6 23.466 6.084 -6 22.706 6.212 -6 23.182 3.133 -6 23.794
+4 16 6.084 -6 22.706 8.92 -6 21.946 9.184 -6 22.173 6.212 -6 23.182
+4 16 8.609 -6 20.787 9.211 -6 21.826 9.184 -6 22.173 8.92 -6 21.946
+4 16 9.211 -6 21.826 11.754 -6 20.358 12 -6 20.785 9.185 -6 22.172
+4 16 11.754 -6 20.358 14.296 -6 18.89 14.609 -6 19.04 12 -6 20.785
+4 16 13.696 -6 17.85 14.546 -6 18.698 14.609 -6 19.04 14.296 -6 18.89
+4 16 14.546 -6 18.698 16.622 -6 16.622 16.971 -6 16.971 14.61 -6 19.04
+4 16 16.622 -6 16.622 18.698 -6 14.546 19.04 -6 14.61 16.971 -6 16.971
+4 16 17.85 -6 13.697 18.89 -6 14.296 19.04 -6 14.61 18.698 -6 14.546
+4 16 18.89 -6 14.296 20.358 -6 11.754 20.785 -6 12 19.04 -6 14.609
+4 16 20.358 -6 11.754 21.826 -6 9.211 22.172 -6 9.185 20.785 -6 12
+4 16 20.786 -6 8.611 21.946 -6 8.92 22.172 -6 9.185 21.826 -6 9.211
+4 16 21.946 -6 8.92 22.706 -6 6.084 23.182 -6 6.212 22.173 -6 9.184
+4 16 22.706 -6 6.084 23.466 -6 3.248 23.794 -6 3.133 23.182 -6 6.212
+4 16 22.307 -6 2.938 23.507 -6 2.936 23.794 -6 3.133 23.466 -6 3.248
+1 16 22.307 -6 0 0 0 1.2 0 -1 0 -2.936 0 0 p/2-4edge.dat
+1 16 21.547 -6 -5.773 -0.759893 0 1.15911 0 -1 0 -2.83596 0 -0.310583 p/2-4edge.dat
+1 16 19.319 -6 -11.153 -1.468 0 1.03923 0 -1 0 -2.54265 0 -0.6 p/2-4edge.dat
+1 16 15.774 -6 -15.773 -2.07607 0 0.848528 0 -1 0 -2.07607 0 -0.848528 p/2-4edge.dat
+1 16 11.154 -6 -19.318 -2.54265 0 0.6 0 -1 0 -1.468 0 -1.03923 p/2-4edge.dat
+1 16 5.774 -6 -21.547 -2.83596 0 0.310583 0 -1 0 -0.759893 0 -1.15911 p/2-4edge.dat
+1 16 22.307 6 0 0 0 1.2 0 -1 0 -2.936 0 0 p/2-4edge.dat
+1 16 21.547 6 -5.773 -0.759893 0 1.15911 0 -1 0 -2.83596 0 -0.310583 p/2-4edge.dat
+1 16 19.319 6 -11.153 -1.468 0 1.03923 0 -1 0 -2.54265 0 -0.6 p/2-4edge.dat
+1 16 15.774 6 -15.773 -2.07607 0 0.848528 0 -1 0 -2.07607 0 -0.848528 p/2-4edge.dat
+1 16 11.154 6 -19.318 -2.54265 0 0.6 0 -1 0 -1.468 0 -1.03923 p/2-4edge.dat
+1 16 5.774 6 -21.547 -2.83596 0 0.310583 0 -1 0 -0.759893 0 -1.15911 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 22.307 -6 0 0 0 1.2 0 12 0 -2.936 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 21.547 -6 -5.773 -0.759893 0 1.15911 0 12 0 -2.83596 0 -0.310583 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 19.319 -6 -11.153 -1.468 0 1.03923 0 12 0 -2.54265 0 -0.6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 15.774 -6 -15.773 -2.07607 0 0.848528 0 12 0 -2.07607 0 -0.848528 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 11.154 -6 -19.318 -2.54265 0 0.6 0 12 0 -1.468 0 -1.03923 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 5.774 -6 -21.547 -2.83596 0 0.310583 0 12 0 -0.759893 0 -1.15911 p/2-4cyli.dat
+1 16 22.307 -6 0 0 0 1.2 0 1 0 -2.936 0 0 p/2-4ndis.dat
+1 16 21.547 -6 -5.773 -0.759893 0 1.15911 0 1 0 -2.83596 0 -0.310583 p/2-4ndis.dat
+1 16 19.319 -6 -11.153 -1.468 0 1.03923 0 1 0 -2.54265 0 -0.6 p/2-4ndis.dat
+1 16 15.774 -6 -15.773 -2.07607 0 0.848528 0 1 0 -2.07607 0 -0.848528 p/2-4ndis.dat
+1 16 11.154 -6 -19.318 -2.54265 0 0.6 0 1 0 -1.468 0 -1.03923 p/2-4ndis.dat
+1 16 5.774 -6 -21.547 -2.83596 0 0.310583 0 1 0 -0.759893 0 -1.15911 p/2-4ndis.dat
+4 16 23.507 -6 2.936 23.507 -6 0 24 -6 0 23.794 -6 3.132
+4 16 23.507 -6 0 23.507 -6 -2.936 23.794 -6 -3.132 24 -6 0
+4 16 22.307 -6 -2.936 23.466 -6 -3.248 23.794 -6 -3.132 23.507 -6 -2.936
+4 16 23.466 -6 -3.2481 22.706 -6 -6.084 23.182 -6 -6.212 23.794 -6 -3.133
+4 16 22.706 -6 -6.084 21.946 -6 -8.92 22.173 -6 -9.184 23.182 -6 -6.212
+4 16 20.787 -6 -8.609 21.826 -6 -9.211 22.173 -6 -9.184 21.946 -6 -8.92
+4 16 21.826 -6 -9.211 20.358 -6 -11.754 20.785 -6 -12 22.172 -6 -9.185
+4 16 20.358 -6 -11.754 18.89 -6 -14.296 19.04 -6 -14.609 20.785 -6 -12
+4 16 17.85 -6 -13.696 18.698 -6 -14.546 19.04 -6 -14.609 18.89 -6 -14.296
+4 16 18.698 -6 -14.546 16.622 -6 -16.622 16.971 -6 -16.971 19.04 -6 -14.61
+4 16 16.622 -6 -16.622 14.546 -6 -18.698 14.61 -6 -19.04 16.971 -6 -16.971
+4 16 13.697 -6 -17.85 14.296 -6 -18.89 14.61 -6 -19.04 14.546 -6 -18.698
+4 16 14.296 -6 -18.89 11.754 -6 -20.358 12 -6 -20.785 14.609 -6 -19.04
+4 16 11.754 -6 -20.358 9.211 -6 -21.826 9.185 -6 -22.172 12 -6 -20.785
+4 16 8.611 -6 -20.786 8.92 -6 -21.946 9.185 -6 -22.172 9.211 -6 -21.826
+4 16 8.92 -6 -21.946 6.084 -6 -22.706 6.212 -6 -23.182 9.184 -6 -22.173
+4 16 6.084 -6 -22.706 3.248 -6 -23.466 3.133 -6 -23.794 6.212 -6 -23.182
+4 16 2.938 -6 -22.307 2.936 -6 -23.507 3.133 -6 -23.794 3.248 -6 -23.466
+1 16 0 -6 -22.307 -2.936 0 0 0 -1 0 0 0 -1.2 p/2-4edge.dat
+1 16 -5.773 -6 -21.547 -2.83596 0 -0.310583 0 -1 0 0.759893 0 -1.15911 p/2-4edge.dat
+1 16 -11.153 -6 -19.319 -2.54265 0 -0.6 0 -1 0 1.468 0 -1.03923 p/2-4edge.dat
+1 16 -15.773 -6 -15.774 -2.07607 0 -0.848528 0 -1 0 2.07607 0 -0.848528 p/2-4edge.dat
+1 16 -19.318 -6 -11.154 -1.468 0 -1.03923 0 -1 0 2.54265 0 -0.6 p/2-4edge.dat
+1 16 -21.547 -6 -5.774 -0.759893 0 -1.15911 0 -1 0 2.83596 0 -0.310583 p/2-4edge.dat
+1 16 0 6 -22.307 -2.936 0 0 0 -1 0 0 0 -1.2 p/2-4edge.dat
+1 16 -5.773 6 -21.547 -2.83596 0 -0.310583 0 -1 0 0.759893 0 -1.15911 p/2-4edge.dat
+1 16 -11.153 6 -19.319 -2.54265 0 -0.6 0 -1 0 1.468 0 -1.03923 p/2-4edge.dat
+1 16 -15.773 6 -15.774 -2.07607 0 -0.848528 0 -1 0 2.07607 0 -0.848528 p/2-4edge.dat
+1 16 -19.318 6 -11.154 -1.468 0 -1.03923 0 -1 0 2.54265 0 -0.6 p/2-4edge.dat
+1 16 -21.547 6 -5.774 -0.759893 0 -1.15911 0 -1 0 2.83596 0 -0.310583 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -6 -22.307 -2.936 0 0 0 12 0 0 0 -1.2 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -5.773 -6 -21.547 -2.83596 0 -0.310583 0 12 0 0.759893 0 -1.15911 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -11.153 -6 -19.319 -2.54265 0 -0.6 0 12 0 1.468 0 -1.03923 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -15.773 -6 -15.774 -2.07607 0 -0.848528 0 12 0 2.07607 0 -0.848528 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -19.318 -6 -11.154 -1.468 0 -1.03923 0 12 0 2.54265 0 -0.6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -21.547 -6 -5.774 -0.759893 0 -1.15911 0 12 0 2.83596 0 -0.310583 p/2-4cyli.dat
+1 16 0 -6 -22.307 -2.936 0 0 0 1 0 0 0 -1.2 p/2-4ndis.dat
+1 16 -5.773 -6 -21.547 -2.83596 0 -0.310583 0 1 0 0.759893 0 -1.15911 p/2-4ndis.dat
+1 16 -11.153 -6 -19.319 -2.54265 0 -0.6 0 1 0 1.468 0 -1.03923 p/2-4ndis.dat
+1 16 -15.773 -6 -15.774 -2.07607 0 -0.848528 0 1 0 2.07607 0 -0.848528 p/2-4ndis.dat
+1 16 -19.318 -6 -11.154 -1.468 0 -1.03923 0 1 0 2.54265 0 -0.6 p/2-4ndis.dat
+1 16 -21.547 -6 -5.774 -0.759893 0 -1.15911 0 1 0 2.83596 0 -0.310583 p/2-4ndis.dat
+4 16 2.936 -6 -23.507 0 -6 -23.507 0 -6 -24 3.132 -6 -23.794
+4 16 0 -6 -23.507 -2.936 -6 -23.507 -3.132 -6 -23.794 0 -6 -24
+4 16 -2.936 -6 -22.307 -3.248 -6 -23.466 -3.132 -6 -23.794 -2.936 -6 -23.507
+4 16 -3.2481 -6 -23.466 -6.084 -6 -22.706 -6.212 -6 -23.182 -3.133 -6 -23.794
+4 16 -6.084 -6 -22.706 -8.92 -6 -21.946 -9.184 -6 -22.173 -6.212 -6 -23.182
+4 16 -8.609 -6 -20.787 -9.211 -6 -21.826 -9.184 -6 -22.173 -8.92 -6 -21.946
+4 16 -9.211 -6 -21.826 -11.754 -6 -20.358 -12 -6 -20.785 -9.185 -6 -22.172
+4 16 -11.754 -6 -20.358 -14.296 -6 -18.89 -14.609 -6 -19.04 -12 -6 -20.785
+4 16 -13.696 -6 -17.85 -14.546 -6 -18.698 -14.609 -6 -19.04 -14.296 -6 -18.89
+4 16 -14.546 -6 -18.698 -16.622 -6 -16.622 -16.971 -6 -16.971 -14.61 -6 -19.04
+4 16 -16.622 -6 -16.622 -18.698 -6 -14.546 -19.04 -6 -14.61 -16.971 -6 -16.971
+4 16 -17.85 -6 -13.697 -18.89 -6 -14.296 -19.04 -6 -14.61 -18.698 -6 -14.546
+4 16 -18.89 -6 -14.296 -20.358 -6 -11.754 -20.785 -6 -12 -19.04 -6 -14.609
+4 16 -20.358 -6 -11.754 -21.826 -6 -9.211 -22.172 -6 -9.185 -20.785 -6 -12
+4 16 -20.786 -6 -8.611 -21.946 -6 -8.92 -22.172 -6 -9.185 -21.826 -6 -9.211
+4 16 -21.946 -6 -8.92 -22.706 -6 -6.084 -23.182 -6 -6.212 -22.173 -6 -9.184
+4 16 -22.706 -6 -6.084 -23.466 -6 -3.248 -23.794 -6 -3.133 -23.182 -6 -6.212
+4 16 -22.307 -6 -2.938 -23.507 -6 -2.936 -23.794 -6 -3.133 -23.466 -6 -3.248
+1 16 -22.307 -6 0 0 0 -1.2 0 -1 0 2.936 0 0 p/2-4edge.dat
+1 16 -21.547 -6 5.773 0.759893 0 -1.15911 0 -1 0 2.83596 0 0.310583 p/2-4edge.dat
+1 16 -19.319 -6 11.153 1.468 0 -1.03923 0 -1 0 2.54265 0 0.6 p/2-4edge.dat
+1 16 -15.774 -6 15.773 2.07607 0 -0.848528 0 -1 0 2.07607 0 0.848528 p/2-4edge.dat
+1 16 -11.154 -6 19.318 2.54265 0 -0.6 0 -1 0 1.468 0 1.03923 p/2-4edge.dat
+1 16 -5.774 -6 21.547 2.83596 0 -0.310583 0 -1 0 0.759893 0 1.15911 p/2-4edge.dat
+1 16 -22.307 6 0 0 0 -1.2 0 -1 0 2.936 0 0 p/2-4edge.dat
+1 16 -21.547 6 5.773 0.759893 0 -1.15911 0 -1 0 2.83596 0 0.310583 p/2-4edge.dat
+1 16 -19.319 6 11.153 1.468 0 -1.03923 0 -1 0 2.54265 0 0.6 p/2-4edge.dat
+1 16 -15.774 6 15.773 2.07607 0 -0.848528 0 -1 0 2.07607 0 0.848528 p/2-4edge.dat
+1 16 -11.154 6 19.318 2.54265 0 -0.6 0 -1 0 1.468 0 1.03923 p/2-4edge.dat
+1 16 -5.774 6 21.547 2.83596 0 -0.310583 0 -1 0 0.759893 0 1.15911 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 -22.307 -6 0 0 0 -1.2 0 12 0 2.936 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -21.547 -6 5.773 0.759893 0 -1.15911 0 12 0 2.83596 0 0.310583 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -19.319 -6 11.153 1.468 0 -1.03923 0 12 0 2.54265 0 0.6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -15.774 -6 15.773 2.07607 0 -0.848528 0 12 0 2.07607 0 0.848528 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -11.154 -6 19.318 2.54265 0 -0.6 0 12 0 1.468 0 1.03923 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -5.774 -6 21.547 2.83596 0 -0.310583 0 12 0 0.759893 0 1.15911 p/2-4cyli.dat
+1 16 -22.307 -6 0 0 0 -1.2 0 1 0 2.936 0 0 p/2-4ndis.dat
+1 16 -21.547 -6 5.773 0.759893 0 -1.15911 0 1 0 2.83596 0 0.310583 p/2-4ndis.dat
+1 16 -19.319 -6 11.153 1.468 0 -1.03923 0 1 0 2.54265 0 0.6 p/2-4ndis.dat
+1 16 -15.774 -6 15.773 2.07607 0 -0.848528 0 1 0 2.07607 0 0.848528 p/2-4ndis.dat
+1 16 -11.154 -6 19.318 2.54265 0 -0.6 0 1 0 1.468 0 1.03923 p/2-4ndis.dat
+1 16 -5.774 -6 21.547 2.83596 0 -0.310583 0 1 0 0.759893 0 1.15911 p/2-4ndis.dat
+4 16 -23.507 -6 -2.936 -23.507 -6 0 -24 -6 0 -23.794 -6 -3.132
+4 16 -23.507 -6 0 -23.507 -6 2.936 -23.794 -6 3.132 -24 -6 0
+4 16 -22.307 -6 2.936 -23.466 -6 3.248 -23.794 -6 3.132 -23.507 -6 2.936
+4 16 -23.466 -6 3.2481 -22.706 -6 6.084 -23.182 -6 6.212 -23.794 -6 3.133
+4 16 -22.706 -6 6.084 -21.946 -6 8.92 -22.173 -6 9.184 -23.182 -6 6.212
+4 16 -20.787 -6 8.609 -21.826 -6 9.211 -22.173 -6 9.184 -21.946 -6 8.92
+4 16 -21.826 -6 9.211 -20.358 -6 11.754 -20.785 -6 12 -22.172 -6 9.185
+4 16 -20.358 -6 11.754 -18.89 -6 14.296 -19.04 -6 14.609 -20.785 -6 12
+4 16 -17.85 -6 13.696 -18.698 -6 14.546 -19.04 -6 14.609 -18.89 -6 14.296
+4 16 -18.698 -6 14.546 -16.622 -6 16.622 -16.971 -6 16.971 -19.04 -6 14.61
+4 16 -16.622 -6 16.622 -14.546 -6 18.698 -14.61 -6 19.04 -16.971 -6 16.971
+4 16 -13.697 -6 17.85 -14.296 -6 18.89 -14.61 -6 19.04 -14.546 -6 18.698
+4 16 -14.296 -6 18.89 -11.754 -6 20.358 -12 -6 20.785 -14.609 -6 19.04
+4 16 -11.754 -6 20.358 -9.211 -6 21.826 -9.185 -6 22.172 -12 -6 20.785
+4 16 -8.611 -6 20.786 -8.92 -6 21.946 -9.185 -6 22.172 -9.211 -6 21.826
+4 16 -8.92 -6 21.946 -6.084 -6 22.706 -6.212 -6 23.182 -9.184 -6 22.173
+4 16 -6.084 -6 22.706 -3.248 -6 23.466 -3.133 -6 23.794 -6.212 -6 23.182
+4 16 -2.938 -6 22.307 -2.936 -6 23.507 -3.133 -6 23.794 -3.248 -6 23.466
+1 16 0 10 0 0 0 8 0 -1 0 8 0 0 p/4-4ring1.dat
+1 16 0 10 0 0 0 15 0 -1 0 15 0 0 p/48/4-4ring1.dat
+1 16 0 6 0 0 0 12 0 1 0 12 0 0 p/4-4edge.dat
+1 16 0 4 0 0 0 12 0 1 0 12 0 0 p/4-4edge.dat
+1 16 0 4 0 0 0 8 0 1 0 8 0 0 p/4-4edge.dat
+1 16 0 4 0 0 0 4 0 1 0 4 0 0 p/4-4ring2.dat
+1 16 0 4 0 0 0 12 0 2 0 12 0 0 p/4-4cyli.dat
+1 16 0 -6 0 3.06147 0 7.39104 0 1 0 7.39104 0 -3.06147 p/3-8edge.dat
+1 16 0 -6 0 -3.06147 0 -7.39104 0 1 0 -7.39104 0 3.06147 p/3-8edge.dat
+1 16 0 -8 0 2.2961 0 5.54328 0 1 0 5.54328 0 -2.2961 p/3-8edge.dat
+1 16 0 -8 0 -2.2961 0 -5.54328 0 1 0 -5.54328 0 2.2961 p/3-8edge.dat
+1 16 0 -6 0 3.44415 0 8.31492 0 1 0 8.31492 0 -3.44415 p/3-8edge.dat
+1 16 0 -6 0 -3.44415 0 -8.31492 0 1 0 -8.31492 0 3.44415 p/3-8edge.dat
+1 16 0 -8 0 3.44415 0 8.31492 0 1 0 8.31492 0 -3.44415 p/3-8edge.dat
+1 16 0 -8 0 -3.44415 0 -8.31492 0 1 0 -8.31492 0 3.44415 p/3-8edge.dat
+1 16 0 -6 0 0.382683 0 0.92388 0 -1 0 0.92388 0 -0.382683 p/3-8ring8.dat
+1 16 0 -6 0 -0.382684 0 -0.92388 0 -1 0 -0.92388 0 0.382684 p/3-8ring8.dat
+1 16 0 -8 0 1.14805 0 2.77164 0 1 0 2.77164 0 -1.14805 p/3-8ring2.dat
+1 16 0 -8 0 -1.14805 0 -2.77164 0 1 0 -2.77164 0 1.14805 p/3-8ring2.dat
+1 16 0 -8 0 3.44415 0 8.31492 0 2 0 8.31492 0 -3.44415 p/3-8cyli.dat
+1 16 0 -8 0 -3.44415 0 -8.31492 0 2 0 -8.31492 0 3.44415 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8 0 -2.2961 0 -5.54328 0 8 0 -5.54328 0 2.2961 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8 0 2.2961 0 5.54328 0 8 0 5.54328 0 -2.2961 p/3-8cyli.dat
+1 16 0 0 0 0 0 8 0 4 0 8 0 0 p/4-4cyli.dat
+1 16 0 -6 0 3.06147 0 7.39104 0 6 0 7.39104 0 -3.06147 p/3-8cyli.dat
+1 16 0 -6 0 -3.06147 0 -7.39104 0 6 0 -7.39104 0 3.06147 p/3-8cyli.dat
+2 24 1.5 -8 5.702 1.5 -8 8.702
+4 16 1.5 -8 5.702 1.5 -8 8.702 1.5 -6 8.702 1.5 -6 7.702
+4 16 -1.5 -8 8.702 -1.5 -8 5.702 -1.5 -6 7.702 -1.5 -6 8.702
+4 16 -1.5 -8 -5.702 -1.5 -8 -8.702 -1.5 -6 -8.702 -1.5 -6 -7.702
+4 16 1.5 -8 -8.702 1.5 -8 -5.702 1.5 -6 -7.702 1.5 -6 -8.702
+4 16 1.5 -8 5.702 1.5 -6 7.702 1.5 -1.5 7.702 1.5 -1.5 5.702
+4 16 -1.5 -6 7.702 -1.5 -8 5.702 -1.5 -1.5 5.702 -1.5 -1.5 7.702
+4 16 -1.5 -8 -5.702 -1.5 -6 -7.702 -1.5 -1.5 -7.702 -1.5 -1.5 -5.702
+4 16 1.5 -6 -7.702 1.5 -8 -5.702 1.5 -1.5 -5.702 1.5 -1.5 -7.702
+2 24 -1.5 -8 5.702 -1.5 -8 8.702
+2 24 1.5 -8 -5.702 1.5 -8 -8.702
+2 24 -1.5 -8 -5.702 -1.5 -8 -8.702
+2 24 1.5 -8 8.702 1.5 -6 8.702
+2 24 -1.5 -8 8.702 -1.5 -6 8.702
+2 24 1.5 -8 -8.702 1.5 -6 -8.702
+2 24 -1.5 -8 -8.702 -1.5 -6 -8.702
+2 24 1.5 -8 5.702 1.5 -1.5 5.702
+2 24 -1.5 -8 5.702 -1.5 -1.5 5.702
+2 24 1.5 -8 -5.702 1.5 -1.5 -5.702
+2 24 -1.5 -8 -5.702 -1.5 -1.5 -5.702
+2 24 1.5 -6 7.702 1.5 -6 8.702
+2 24 -1.5 -6 7.702 -1.5 -6 8.702
+2 24 1.5 -6 -7.702 1.5 -6 -8.702
+2 24 -1.5 -6 -7.702 -1.5 -6 -8.702
+2 24 1.5 -6 7.702 1.5 -1.5 7.702
+2 24 -1.5 -6 7.702 -1.5 -1.5 7.702
+2 24 1.5 -6 -7.702 1.5 -1.5 -7.702
+2 24 -1.5 -6 -7.702 -1.5 -1.5 -7.702
+2 24 3.447 -8 8.316 1.5 -8 8.702
+4 16 3.064 -6 7.392 1.5 -6 7.702 1.5 -6 8.702 3.447 -6 8.316
+4 16 -1.5 -6 7.702 -3.064 -6 7.392 -3.447 -6 8.316 -1.5 -6 8.702
+4 16 -3.064 -6 -7.392 -1.5 -6 -7.702 -1.5 -6 -8.702 -3.447 -6 -8.316
+4 16 1.5 -6 -7.702 3.064 -6 -7.392 3.447 -6 -8.316 1.5 -6 -8.702
+4 16 3.447 -6 8.316 1.5 -6 8.702 1.5 -8 8.702 3.447 -8 8.316
+4 16 -3.447 -8 8.316 -1.5 -8 8.702 -1.5 -6 8.702 -3.447 -6 8.316
+4 16 -3.447 -6 -8.316 -1.5 -6 -8.702 -1.5 -8 -8.702 -3.447 -8 -8.316
+4 16 3.447 -8 -8.316 1.5 -8 -8.702 1.5 -6 -8.702 3.447 -6 -8.316
+2 24 3.447 -6 8.316 1.5 -6 8.702
+2 24 -3.447 -8 8.316 -1.5 -8 8.702
+2 24 -3.447 -6 8.316 -1.5 -6 8.702
+2 24 -3.447 -8 -8.316 -1.5 -8 -8.702
+2 24 -3.447 -6 -8.316 -1.5 -6 -8.702
+2 24 3.447 -8 -8.316 1.5 -8 -8.702
+2 24 3.447 -6 -8.316 1.5 -6 -8.702
+2 24 1.5 -8 5.702 2.298 -8 5.544
+4 16 3.447 -8 8.316 1.5 -8 8.702 1.5 -8 5.702 2.298 -8 5.544
+4 16 -1.5 -8 8.702 -3.447 -8 8.316 -2.298 -8 5.544 -1.5 -8 5.702
+4 16 -3.447 -8 -8.316 -1.5 -8 -8.702 -1.5 -8 -5.702 -2.298 -8 -5.544
+4 16 1.5 -8 -8.702 3.447 -8 -8.316 2.298 -8 -5.544 1.5 -8 -5.702
+4 16 1.5 0 5.702 2.298 0 5.544 2.298 -8 5.544 1.5 -8 5.702
+4 16 -1.5 -8 5.702 -2.298 -8 5.544 -2.298 0 5.544 -1.5 0 5.702
+4 16 -1.5 0 -5.702 -2.298 0 -5.544 -2.298 -8 -5.544 -1.5 -8 -5.702
+4 16 1.5 -8 -5.702 2.298 -8 -5.544 2.298 0 -5.544 1.5 0 -5.702
+2 24 -1.5 -8 5.702 -2.298 -8 5.544
+2 24 -1.5 -8 -5.702 -2.298 -8 -5.544
+2 24 1.5 -8 -5.702 2.298 -8 -5.544
+2 24 1.5 -6 7.702 3.064 -6 7.392
+4 16 1.5 -6 7.702 3.064 -6 7.392 3.064 0 7.392 1.5 0 7.702
+4 16 -1.5 0 7.702 -3.064 0 7.392 -3.064 -6 7.392 -1.5 -6 7.702
+4 16 -1.5 -6 -7.702 -3.064 -6 -7.392 -3.064 0 -7.392 -1.5 0 -7.702
+4 16 1.5 0 -7.702 3.064 0 -7.392 3.064 -6 -7.392 1.5 -6 -7.702
+2 24 -1.5 -6 7.702 -3.064 -6 7.392
+2 24 -1.5 -6 -7.702 -3.064 -6 -7.392
+2 24 1.5 -6 -7.702 3.064 -6 -7.392
+1 16 0 -1.5 6 0 0 1.5 1.5 0 0 0 -1 -0.298 p/1-4edge.dat
+1 16 0 -1.5 6 0 0 1.5 1.5 0 0 0 1 -0.298 p/1-4ndis.dat
+1 16 0 -1.5 8 0 0 1.5 1.5 0 0 0 -1 -0.298 p/1-4edge.dat
+1 16 0 -1.5 8 0 0 1.5 1.5 0 0 0 -1 -0.298 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 -1.5 8 0 0 1.5 1.5 0 0 0 -2 -0.298 p/1-4cyli.dat
+1 16 0 -1.5 6 0 0 -1.5 1.5 0 0 0 -1 -0.298 p/1-4edge.dat
+1 16 0 -1.5 6 0 0 -1.5 1.5 0 0 0 1 -0.298 p/1-4ndis.dat
+1 16 0 -1.5 8 0 0 -1.5 1.5 0 0 0 -1 -0.298 p/1-4edge.dat
+1 16 0 -1.5 8 0 0 -1.5 1.5 0 0 0 -1 -0.298 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 -1.5 8 0 0 -1.5 1.5 0 0 0 -2 -0.298 p/1-4cyli.dat
+1 16 0 -1.5 -6 0 0 -1.5 1.5 0 0 0 1 0.298 p/1-4edge.dat
+1 16 0 -1.5 -6 0 0 -1.5 1.5 0 0 0 -1 0.298 p/1-4ndis.dat
+1 16 0 -1.5 -8 0 0 -1.5 1.5 0 0 0 1 0.298 p/1-4edge.dat
+1 16 0 -1.5 -8 0 0 -1.5 1.5 0 0 0 1 0.298 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 -1.5 -8 0 0 -1.5 1.5 0 0 0 2 0.298 p/1-4cyli.dat
+1 16 0 -1.5 -6 0 0 1.5 1.5 0 0 0 1 0.298 p/1-4edge.dat
+1 16 0 -1.5 -6 0 0 1.5 1.5 0 0 0 -1 0.298 p/1-4ndis.dat
+1 16 0 -1.5 -8 0 0 1.5 1.5 0 0 0 1 0.298 p/1-4edge.dat
+1 16 0 -1.5 -8 0 0 1.5 1.5 0 0 0 1 0.298 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 -1.5 -8 0 0 1.5 1.5 0 0 0 2 0.298 p/1-4cyli.dat
+0
+
+0 FILE p/3-8ring8.dat
+0 Ring  8 x 0.375
+0 Name: 3-8ring8.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 8 0 0 9 0 0 8.3151 0 3.4443 7.3912 0 3.0616
+4 16 7.3912 0 3.0616 8.3151 0 3.4443 6.3639 0 6.3639 5.6568 0 5.6568
+4 16 5.6568 0 5.6568 6.3639 0 6.3639 3.4443 0 8.3151 3.0616 0 7.3912
+4 16 3.0616 0 7.3912 3.4443 0 8.3151 0 0 9 0 0 8
+4 16 0 0 8 0 0 9 -3.4443 0 8.3151 -3.0616 0 7.3912
+4 16 -3.0616 0 7.3912 -3.4443 0 8.3151 -6.3639 0 6.3639 -5.6568 0 5.6568
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4ring1.dat
+0 Hi-Res Ring  1 x 1.0
+0 Name: 48\4-4ring1.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 2 0 0 1.9828 0 0.261 0.9914 0 0.1305 1 0 0
+4 16 1.9828 0 0.261 1.9318 0 0.5176 0.9659 0 0.2588 0.9914 0 0.1305
+4 16 1.9318 0 0.5176 1.8478 0 0.7654 0.9239 0 0.3827 0.9659 0 0.2588
+4 16 1.8478 0 0.7654 1.732 0 1 0.866 0 0.5 0.9239 0 0.3827
+4 16 1.732 0 1 1.5868 0 1.2176 0.7934 0 0.6088 0.866 0 0.5
+4 16 1.5868 0 1.2176 1.4142 0 1.4142 0.7071 0 0.7071 0.7934 0 0.6088
+4 16 1.4142 0 1.4142 1.2176 0 1.5868 0.6088 0 0.7934 0.7071 0 0.7071
+4 16 1.2176 0 1.5868 1 0 1.732 0.5 0 0.866 0.6088 0 0.7934
+4 16 1 0 1.732 0.7654 0 1.8478 0.3827 0 0.9239 0.5 0 0.866
+4 16 0.7654 0 1.8478 0.5176 0 1.9318 0.2588 0 0.9659 0.3827 0 0.9239
+4 16 0.5176 0 1.9318 0.261 0 1.9828 0.1305 0 0.9914 0.2588 0 0.9659
+4 16 0.261 0 1.9828 0 0 2 0 0 1 0.1305 0 0.9914
+
+4 16 0 0 2 -0.261 0 1.9828 -0.1305 0 0.9914 0 0 1
+4 16 -0.261 0 1.9828 -0.5176 0 1.9318 -0.2588 0 0.9659 -0.1305 0 0.9914
+4 16 -0.5176 0 1.9318 -0.7654 0 1.8478 -0.3827 0 0.9239 -0.2588 0 0.9659
+4 16 -0.7654 0 1.8478 -1 0 1.732 -0.5 0 0.866 -0.3827 0 0.9239
+4 16 -1 0 1.732 -1.2176 0 1.5868 -0.6088 0 0.7934 -0.5 0 0.866
+4 16 -1.2176 0 1.5868 -1.4142 0 1.4142 -0.7071 0 0.7071 -0.6088 0 0.7934
+4 16 -1.4142 0 1.4142 -1.5868 0 1.2176 -0.7934 0 0.6088 -0.7071 0 0.7071
+4 16 -1.5868 0 1.2176 -1.732 0 1 -0.866 0 0.5 -0.7934 0 0.6088
+4 16 -1.732 0 1 -1.8478 0 0.7654 -0.9239 0 0.3827 -0.866 0 0.5
+4 16 -1.8478 0 0.7654 -1.9318 0 0.5176 -0.9659 0 0.2588 -0.9239 0 0.3827
+4 16 -1.9318 0 0.5176 -1.9828 0 0.261 -0.9914 0 0.1305 -0.9659 0 0.2588
+4 16 -1.9828 0 0.261 -2 0 0 -1 0 0 -0.9914 0 0.1305
+
+4 16 -2 0 0 -1.9828 0 -0.261 -0.9914 0 -0.1305 -1 0 0
+4 16 -1.9828 0 -0.261 -1.9318 0 -0.5176 -0.9659 0 -0.2588 -0.9914 0 -0.1305
+4 16 -1.9318 0 -0.5176 -1.8478 0 -0.7654 -0.9239 0 -0.3827 -0.9659 0 -0.2588
+4 16 -1.8478 0 -0.7654 -1.732 0 -1 -0.866 0 -0.5 -0.9239 0 -0.3827
+4 16 -1.732 0 -1 -1.5868 0 -1.2176 -0.7934 0 -0.6088 -0.866 0 -0.5
+4 16 -1.5868 0 -1.2176 -1.4142 0 -1.4142 -0.7071 0 -0.7071 -0.7934 0 -0.6088
+4 16 -1.4142 0 -1.4142 -1.2176 0 -1.5868 -0.6088 0 -0.7934 -0.7071 0 -0.7071
+4 16 -1.2176 0 -1.5868 -1 0 -1.732 -0.5 0 -0.866 -0.6088 0 -0.7934
+4 16 -1 0 -1.732 -0.7654 0 -1.8478 -0.3827 0 -0.9239 -0.5 0 -0.866
+4 16 -0.7654 0 -1.8478 -0.5176 0 -1.9318 -0.2588 0 -0.9659 -0.3827 0 -0.9239
+4 16 -0.5176 0 -1.9318 -0.261 0 -1.9828 -0.1305 0 -0.9914 -0.2588 0 -0.9659
+4 16 -0.261 0 -1.9828 0 0 -2 0 0 -1 -0.1305 0 -0.9914
+
+4 16 0 0 -2 0.261 0 -1.9828 0.1305 0 -0.9914 0 0 -1
+4 16 0.261 0 -1.9828 0.5176 0 -1.9318 0.2588 0 -0.9659 0.1305 0 -0.9914
+4 16 0.5176 0 -1.9318 0.7654 0 -1.8478 0.3827 0 -0.9239 0.2588 0 -0.9659
+4 16 0.7654 0 -1.8478 1 0 -1.732 0.5 0 -0.866 0.3827 0 -0.9239
+4 16 1 0 -1.732 1.2176 0 -1.5868 0.6088 0 -0.7934 0.5 0 -0.866
+4 16 1.2176 0 -1.5868 1.4142 0 -1.4142 0.7071 0 -0.7071 0.6088 0 -0.7934
+4 16 1.4142 0 -1.4142 1.5868 0 -1.2176 0.7934 0 -0.6088 0.7071 0 -0.7071
+4 16 1.5868 0 -1.2176 1.732 0 -1 0.866 0 -0.5 0.7934 0 -0.6088
+4 16 1.732 0 -1 1.8478 0 -0.7654 0.9239 0 -0.3827 0.866 0 -0.5
+4 16 1.8478 0 -0.7654 1.9318 0 -0.5176 0.9659 0 -0.2588 0.9239 0 -0.3827
+4 16 1.9318 0 -0.5176 1.9828 0 -0.261 0.9914 0 -0.1305 0.9659 0 -0.2588
+4 16 1.9828 0 -0.261 2 0 0 1 0 0 0.9914 0 -0.1305
+
+0 FILE p/48/4-4rin12.dat
+0 Hi-Res Ring 12 x 1.0
+0 Name: 48\4-4rin12.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 13 0 0 12.8882 0 1.6965 11.8968 0 1.566 12 0 0
+4 16 12.8882 0 1.6965 12.5567 0 3.3644 11.5908 0 3.1056 11.8968 0 1.566
+4 16 12.5567 0 3.3644 12.0107 0 4.9751 11.0868 0 4.5924 11.5908 0 3.1056
+4 16 12.0107 0 4.9751 11.258 0 6.5 10.392 0 6 11.0868 0 4.5924
+4 16 11.258 0 6.5 10.3142 0 7.9144 9.5208 0 7.3056 10.392 0 6
+4 16 10.3142 0 7.9144 9.1923 0 9.1923 8.4852 0 8.4852 9.5208 0 7.3056
+4 16 9.1923 0 9.1923 7.9144 0 10.3142 7.3056 0 9.5208 8.4852 0 8.4852
+4 16 7.9144 0 10.3142 6.5 0 11.258 6 0 10.392 7.3056 0 9.5208
+4 16 6.5 0 11.258 4.9751 0 12.0107 4.5924 0 11.0868 6 0 10.392
+4 16 4.9751 0 12.0107 3.3644 0 12.5567 3.1056 0 11.5908 4.5924 0 11.0868
+4 16 3.3644 0 12.5567 1.6965 0 12.8882 1.566 0 11.8968 3.1056 0 11.5908
+4 16 1.6965 0 12.8882 0 0 13 0 0 12 1.566 0 11.8968
+4 16 0 0 13 -1.6965 0 12.8882 -1.566 0 11.8968 0 0 12
+4 16 -1.6965 0 12.8882 -3.3644 0 12.5567 -3.1056 0 11.5908 -1.566 0 11.8968
+4 16 -3.3644 0 12.5567 -4.9751 0 12.0107 -4.5924 0 11.0868 -3.1056 0 11.5908
+4 16 -4.9751 0 12.0107 -6.5 0 11.258 -6 0 10.392 -4.5924 0 11.0868
+4 16 -6.5 0 11.258 -7.9144 0 10.3142 -7.3056 0 9.5208 -6 0 10.392
+4 16 -7.9144 0 10.3142 -9.1923 0 9.1923 -8.4852 0 8.4852 -7.3056 0 9.5208
+4 16 -9.1923 0 9.1923 -10.3142 0 7.9144 -9.5208 0 7.3056 -8.4852 0 8.4852
+4 16 -10.3142 0 7.9144 -11.258 0 6.5 -10.392 0 6 -9.5208 0 7.3056
+4 16 -11.258 0 6.5 -12.0107 0 4.9751 -11.0868 0 4.5924 -10.392 0 6
+4 16 -12.0107 0 4.9751 -12.5567 0 3.3644 -11.5908 0 3.1056 -11.0868 0 4.5924
+4 16 -12.5567 0 3.3644 -12.8882 0 1.6965 -11.8968 0 1.566 -11.5908 0 3.1056
+4 16 -12.8882 0 1.6965 -13 0 0 -12 0 0 -11.8968 0 1.566
+4 16 -13 0 0 -12.8882 0 -1.6965 -11.8968 0 -1.566 -12 0 0
+4 16 -12.8882 0 -1.6965 -12.5567 0 -3.3644 -11.5908 0 -3.1056 -11.8968 0 -1.566
+4 16 -12.5567 0 -3.3644 -12.0107 0 -4.9751 -11.0868 0 -4.5924 -11.5908 0 -3.1056
+4 16 -12.0107 0 -4.9751 -11.258 0 -6.5 -10.392 0 -6 -11.0868 0 -4.5924
+4 16 -11.258 0 -6.5 -10.3142 0 -7.9144 -9.5208 0 -7.3056 -10.392 0 -6
+4 16 -10.3142 0 -7.9144 -9.1923 0 -9.1923 -8.4852 0 -8.4852 -9.5208 0 -7.3056
+4 16 -9.1923 0 -9.1923 -7.9144 0 -10.3142 -7.3056 0 -9.5208 -8.4852 0 -8.4852
+4 16 -7.9144 0 -10.3142 -6.5 0 -11.258 -6 0 -10.392 -7.3056 0 -9.5208
+4 16 -6.5 0 -11.258 -4.9751 0 -12.0107 -4.5924 0 -11.0868 -6 0 -10.392
+4 16 -4.9751 0 -12.0107 -3.3644 0 -12.5567 -3.1056 0 -11.5908 -4.5924 0 -11.0868
+4 16 -3.3644 0 -12.5567 -1.6965 0 -12.8882 -1.566 0 -11.8968 -3.1056 0 -11.5908
+4 16 -1.6965 0 -12.8882 0 0 -13 0 0 -12 -1.566 0 -11.8968
+4 16 0 0 -13 1.6965 0 -12.8882 1.566 0 -11.8968 0 0 -12
+4 16 1.6965 0 -12.8882 3.3644 0 -12.5567 3.1056 0 -11.5908 1.566 0 -11.8968
+4 16 3.3644 0 -12.5567 4.9751 0 -12.0107 4.5924 0 -11.0868 3.1056 0 -11.5908
+4 16 4.9751 0 -12.0107 6.5 0 -11.258 6 0 -10.392 4.5924 0 -11.0868
+4 16 6.5 0 -11.258 7.9144 0 -10.3142 7.3056 0 -9.5208 6 0 -10.392
+4 16 7.9144 0 -10.3142 9.1923 0 -9.1923 8.4852 0 -8.4852 7.3056 0 -9.5208
+4 16 9.1923 0 -9.1923 10.3142 0 -7.9144 9.5208 0 -7.3056 8.4852 0 -8.4852
+4 16 10.3142 0 -7.9144 11.258 0 -6.5 10.392 0 -6 9.5208 0 -7.3056
+4 16 11.258 0 -6.5 12.0107 0 -4.9751 11.0868 0 -4.5924 10.392 0 -6
+4 16 12.0107 0 -4.9751 12.5567 0 -3.3644 11.5908 0 -3.1056 11.0868 0 -4.5924
+4 16 12.5567 0 -3.3644 12.8882 0 -1.6965 11.8968 0 -1.566 11.5908 0 -3.1056
+4 16 12.8882 0 -1.6965 13 0 0 12 0 0 11.8968 0 -1.566
+
+0 FILE parts/44224.dat
+0 Technic Beam  3 with Rotation Joint 3 Socket
+0 Name: 44224.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 -10 50 1 0 0 0 8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 50 1 0 0 0 -8 0 0 0 1 p/npeghol2.dat
+1 16 0 -10 70 1 0 0 0 8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 70 1 0 0 0 -8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 80 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -10 80 9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -10 80 9 0 0 0 20 0 0 0 9 p/2-4cyli.dat
+2 24 9 -10 28.558 9 -10 80
+2 24 -9 -10 28.558 -9 -10 80
+2 24 9 10 34.5 9 10 80
+2 24 -9 10 34.5 -9 10 80
+4 16 9 10 28.558 9 10 80 9 -10 80 9 -10 28.558
+4 16 -9 -10 28.558 -9 -10 80 -9 10 80 -9 10 28.558
+1 16 0 -10 80 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 80 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 80 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 80 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 80 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -10 60 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 60 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 60 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 60 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 60 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -10 40 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 40 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 40 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 40 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 40 1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 40 -9 0 0 0 -1 0 0 0 -9 p/2-4ndis.dat
+4 16 9 10 31 9 10 28.558 -9 10 28.578 -9 10 31
+1 16 0 -10 40 6.36396 0 -6.36396 0 1 0 -6.36396 0 -6.36396 p/1-4edge.dat
+1 16 0 6 40 6.36396 0 -6.36396 0 1 0 -6.36396 0 -6.36396 p/1-4edge.dat
+1 16 0 -10 40 6.36396 0 -6.36396 0 16 0 -6.36396 0 -6.36396 p/1-4cyli.dat
+2 24 6.364 -10 33.636 6.364 6 33.636
+2 24 -6.364 -10 33.636 -6.364 6 33.636
+2 24 9 -10 28.558 6.364 -10 29.255
+4 16 9 -10 28.558 6.364 -10 29.255 6.364 -6 29.255 9 -6 28.558
+4 16 -9 -6 28.558 -6.364 -6 29.255 -6.364 -10 29.255 -9 -10 28.558
+2 24 -9 -10 28.558 -6.364 -10 29.255
+2 24 -6.364 -10 33.636 -6.364 -10 29.255
+2 24 6.364 -10 33.636 6.364 -10 29.255
+4 16 6.364 6 25.237 6.364 6 33.636 0 6 31 0 6 26
+4 16 -6.364 6 33.636 -6.364 6 25.237 0 6 26 0 6 31
+4 16 6.364 -10 33.636 6.364 -10 29.255 9 -10 28.558 9 -10 40
+4 16 -6.364 -10 29.255 -6.364 -10 33.636 -9 -10 40 -9 -10 28.558
+4 16 6.364 6 33.636 6.364 6 29.255 6.364 -10 29.255 6.364 -10 33.636
+4 16 -6.364 -10 33.636 -6.364 -10 29.255 -6.364 6 29.255 -6.364 6 33.636
+2 24 9 -6 28.558 6.364 -6 29.255
+2 24 -9 -6 28.558 -6.364 -6 29.255
+2 24 9 -10 28.558 9 -6 28.558
+2 24 -9 -10 28.558 -9 -6 28.558
+2 24 6.364 -6 29.255 6.364 -10 29.255
+2 24 -6.364 -6 29.255 -6.364 -10 29.255
+2 24 -6.364 6 33.636 -6.364 6 25.237
+2 24 6.364 6 33.636 6.364 6 25.237
+2 24 -6.364 -6 29.255 -6.364 -6 25.237
+2 24 6.364 -6 29.255 6.364 -6 25.237
+4 16 6.364 -6 29.255 6.364 -6 25.237 6.729 -6 25.113 7.764 -6 28.977
+4 16 -6.364 -6 25.237 -6.364 -6 29.255 -7.764 -6 28.977 -6.729 -6 25.113
+2 24 6.364 -6 25.237 6.364 6 25.237
+2 24 -6.364 -6 25.237 -6.364 6 25.237
+4 16 6.364 6 29.255 6.364 6 25.237 6.364 -6 25.237 6.364 -6 29.255
+4 16 -6.364 -6 29.255 -6.364 -6 25.237 -6.364 6 25.237 -6.364 6 29.255
+2 24 1.5 -6 31.298 1.5 -6 26
+4 16 1.5 -6 31.298 1.5 -6 26 1.5 6 26 1.5 6 31.298
+4 16 -1.5 6 31.298 -1.5 6 26 -1.5 -6 26 -1.5 -6 31.298
+4 16 -1.5 -6 31.298 -1.5 -6 26 1.5 -6 26 1.5 -6 31.298
+2 24 -1.5 -6 31.298 -1.5 -6 26
+2 24 1.5 6 31.298 1.5 6 26
+2 24 -1.5 6 31.298 -1.5 6 26
+2 24 1.5 -6 31.298 1.5 6 31.298
+2 24 -1.5 -6 31.298 -1.5 6 31.298
+2 24 1.5 -6 26 1.5 6 26
+2 24 -1.5 -6 26 -1.5 6 26
+2 24 1.5 -6 31.298 0 -6 31
+2 24 -1.5 -6 31.298 0 -6 31
+2 24 -1.5 -6 26 1.5 -6 26
+2 24 -1.5 6 26 1.5 6 26
+4 16 -1.5 -6 26 -1.5 6 26 1.5 6 26 1.5 -6 26
+1 16 0 10 0 21.2132 0 21.2132 0 1 0 21.2132 0 -21.2132 p/48/3-4edge.dat
+1 16 0 0 0 21.2132 0 21.2132 0 1 0 21.2132 0 -21.2132 p/48/3-4edge.dat
+1 16 0 0 0 21.2132 0 21.2132 0 10 0 21.2132 0 -21.2132 p/48/3-4cyli.dat
+1 16 0 -6 0 7.76457 0 28.9778 0 16 0 28.9778 0 -7.76457 p/48/1-16cyli.dat
+1 16 0 10 0 -7.76457 0 -28.9778 0 -16 0 28.9778 0 -7.76457 p/48/1-16cyli.dat
+1 16 0 6 0 18.3848 0 18.3848 0 1 0 18.3848 0 -18.3848 p/48/3-4edge.dat
+1 16 0 0 0 18.3848 0 18.3848 0 1 0 18.3848 0 -18.3848 p/48/3-4edge.dat
+1 16 0 0 0 1.41421 0 1.41421 0 1 0 1.41421 0 -1.41421 p/48/3-4rin13.dat
+1 16 0 0 0 1.41421 0 1.41421 0 1 0 1.41421 0 -1.41421 p/48/3-4rin14.dat
+1 16 0 -6 0 0.517638 0 1.93185 0 1 0 1.93185 0 -0.517638 p/48/1-16ri14.dat
+1 16 0 -6 0 0.517638 0 1.93185 0 1 0 1.93185 0 -0.517638 p/48/1-16ri13.dat
+1 16 0 -6 0 -1.21752 0 1.5867 0 1 0 1.5867 0 1.21752 p/48/1-16ri14.dat
+1 16 0 -6 0 -1.21752 0 1.5867 0 1 0 1.5867 0 1.21752 p/48/1-16ri13.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 18.3848 0 18.3848 0 6 0 18.3848 0 -18.3848 p/48/3-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -6 0 6.7293 0 25.1141 0 12 0 25.1141 0 -6.7293 p/48/1-16cyli.dat
+0 BFC INVERTNEXT
+1 16 0 6 0 -6.7293 0 -25.1141 0 -12 0 25.1141 0 -6.7293 p/48/1-16cyli.dat
+1 16 0 -4 0 9 0 0 0 1 0 0 0 -9 p/48/4-4edge.dat
+1 16 0 -3 0 8 0 0 0 1 0 0 0 -8 p/48/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 1 0 0 0 1 0 0 0 -1 p/48/4-4con8.dat
+1 16 0 -4 0 1 0 0 0 1 0 0 0 -1 p/48/4-4ring9.dat
+1 16 0 -4 0 1 0 0 0 1 0 0 0 -1 p/48/4-4rin10.dat
+1 16 0 -4 0 7.77817 0 -7.77817 0 1 0 -7.77817 0 -7.77817 p/48/1-4edge.dat
+1 16 0 -4 0 -7.77817 0 7.77817 0 1 0 7.77817 0 7.77817 p/48/1-4edge.dat
+2 24 7.778 -4 7.778 8.727 -4 6.697
+2 24 8.727 -4 6.697 9.526 -4 5.5
+2 24 9.526 -4 5.5 10.02 -4 4.5
+2 24 -7.778 -4 7.778 -8.727 -4 6.697
+2 24 -8.727 -4 6.697 -9.526 -4 5.5
+2 24 -9.526 -4 5.5 -10.02 -4 4.5
+2 24 -7.778 -4 -7.778 -8.727 -4 -6.697
+2 24 -8.727 -4 -6.697 -9.526 -4 -5.5
+2 24 -9.526 -4 -5.5 -10.02 -4 -4.5
+2 24 7.778 -4 -7.778 8.727 -4 -6.697
+2 24 8.727 -4 -6.697 9.526 -4 -5.5
+2 24 9.526 -4 -5.5 10.02 -4 -4.5
+1 16 0 -4 0 11 0 0 0 10 0 0 0 -11 p/48/4-4cyli.dat
+1 16 0 6 0 11 0 0 0 1 0 0 0 -11 p/48/4-4edge.dat
+1 16 0 6 0 8 0 0 0 1 0 0 0 -8 p/48/4-4edge.dat
+1 16 0 6 0 1 0 0 0 -1 0 0 0 -1 p/48/4-4ring8.dat
+0 BFC INVERTNEXT
+1 16 0 -3 0 8 0 0 0 9 0 0 0 -8 p/48/4-4cyli.dat
+1 16 0 6 0 9 0 0 0 1 0 0 0 -9 p/48/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 6 0 9 0 0 0 4 0 0 0 -9 p/48/4-4cyli.dat
+1 16 0 10 0 9 0 0 0 1 0 0 0 -9 p/48/4-4edge.dat
+1 16 0 10 0 9 0 0 0 -1 0 0 0 -9 p/48/4-4ndis.dat
+1 16 0 6 0 11 0 0 0 1 0 0 0 -11 p/48/4-4ndis.dat
+2 24 9 10 34.5 9.684 10 31.053
+2 24 9.684 10 31.053 11.637 10 28.137
+2 24 11.637 10 28.137 14.553 10 26.184
+2 24 9 -6 34.5 9.684 -6 31.053
+2 24 9.684 -6 31.053 11.637 -6 28.137
+2 24 11.637 -6 28.137 14.553 -6 26.184
+2 24 -9 10 34.5 -9.684 10 31.053
+2 24 -9.684 10 31.053 -11.637 10 28.137
+2 24 -11.637 10 28.137 -14.553 10 26.184
+2 24 -9 -6 34.5 -9.684 -6 31.053
+2 24 -9.684 -6 31.053 -11.637 -6 28.137
+2 24 -11.637 -6 28.137 -14.553 -6 26.184
+0 BFC INVERTNEXT
+1 16 18 -6 34.5 -3.44415 0 -8.31492 0 16 0 -8.31492 0 3.44415 p/1-8cyli.dat
+0 BFC INVERTNEXT
+1 16 18 -6 34.5 -8.31492 0 -3.44415 0 16 0 -3.44415 0 8.31492 p/1-16cyli.dat
+1 16 18 -6 34.5 -3.44415 0 -8.31492 0 1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 18 -6 34.5 -6.36396 0 -6.36396 0 1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+1 16 18 10 34.5 -3.44415 0 -8.31492 0 -1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 18 10 34.5 -6.36396 0 -6.36396 0 -1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+0 BFC INVERTNEXT
+1 16 -18 10 34.5 3.44415 0 8.31492 0 -16 0 -8.31492 0 3.44415 p/1-8cyli.dat
+0 BFC INVERTNEXT
+1 16 -18 10 34.5 8.31492 0 3.44415 0 -16 0 -3.44415 0 8.31492 p/1-16cyli.dat
+1 16 -18 10 34.5 3.44415 0 8.31492 0 -1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 -18 10 34.5 6.36396 0 6.36396 0 -1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+1 16 -18 -6 34.5 3.44415 0 8.31492 0 1 0 -8.31492 0 3.44415 p/1-8ndis.dat
+1 16 -18 -6 34.5 6.36396 0 6.36396 0 1 0 -6.36396 0 6.36396 p/1-8ndis.dat
+2 24 9 -6 28.558 9 -6 34.5
+2 24 -9 -6 28.558 -9 -6 34.5
+2 24 21.213 10 21.213 18.264 10 23.802
+2 24 18.264 10 23.802 15 10 25.98
+2 24 15 10 25.98 14.553 10 26.184
+2 24 21.213 0 21.213 18.264 0 23.802
+4 16 21.213 10 21.213 18.264 10 23.802 18.264 0 23.802 21.213 0 21.213
+4 16 -21.213 0 21.213 -18.264 0 23.802 -18.264 10 23.802 -21.213 10 21.213
+2 24 18.264 -6 23.802 15 -6 25.98
+2 24 15 -6 25.98 14.553 -6 26.184
+2 24 -21.213 0 21.213 -18.264 0 23.802
+2 24 -18.264 -6 23.802 -15 -6 25.98
+2 24 -15 -6 25.98 -14.553 -6 26.184
+2 24 -21.213 10 21.213 -18.264 10 23.802
+2 24 -18.264 10 23.802 -15 10 25.98
+2 24 -15 10 25.98 -14.553 10 26.184
+2 24 18.264 0 23.802 18.264 -6 23.802
+2 24 -18.264 0 23.802 -18.264 -6 23.802
+2 24 15.829 0 20.628 15.829 -6 20.628
+2 24 -15.829 0 20.628 -15.829 -6 20.628
+2 24 15.829 -6 20.628 18.264 -6 23.802
+2 24 15.829 0 20.628 18.264 0 23.802
+2 24 -15.829 -6 20.628 -18.264 -6 23.802
+2 24 -15.829 0 20.628 -18.264 0 23.802
+4 16 15.829 0 20.628 18.264 0 23.802 18.264 -6 23.802 15.829 -6 20.628
+4 16 -15.829 -6 20.628 -18.264 -6 23.802 -18.264 0 23.802 -15.829 0 20.628
+2 24 18.365 6 18.365 15.829 6 20.628
+2 24 15.829 6 20.628 13 6 22.516
+2 24 13 6 22.516 9.95 6 24.021
+2 24 9.95 6 24.021 6.729 6 25.113
+2 24 6.729 6 25.113 6.364 6 25.237
+2 24 18.365 0 18.365 15.829 0 20.628
+4 16 21.213 0 21.213 18.264 0 23.802 15.829 0 20.628 18.365 0 18.365
+4 16 -18.264 0 23.802 -21.213 0 21.213 -18.365 0 18.365 -15.829 0 20.628
+4 16 18.365 0 18.365 15.829 0 20.628 15.829 6 20.628 18.365 6 18.365
+4 16 -18.365 6 18.365 -15.829 6 20.628 -15.829 0 20.628 -18.365 0 18.365
+2 24 15.829 -6 20.628 13 -6 22.516
+2 24 13 -6 22.516 9.95 -6 24.021
+2 24 9.95 -6 24.021 6.729 -6 25.113
+2 24 6.729 -6 25.113 6.364 -6 25.237
+4 16 6.729 -6 25.113 6.364 -6 25.237 6.364 6 25.237 6.729 6 25.113
+4 16 -6.729 6 25.113 -6.364 6 25.237 -6.364 -6 25.237 -6.729 -6 25.113
+2 24 -18.365 0 18.365 -15.829 0 20.628
+2 24 -15.829 -6 20.628 -13 -6 22.516
+2 24 -13 -6 22.516 -9.95 -6 24.021
+2 24 -9.95 -6 24.021 -6.729 -6 25.113
+2 24 -6.729 -6 25.113 -6.364 -6 25.237
+2 24 -18.365 6 18.365 -15.829 6 20.628
+2 24 -15.829 6 20.628 -13 6 22.516
+2 24 -13 6 22.516 -9.95 6 24.021
+2 24 -9.95 6 24.021 -6.729 6 25.113
+2 24 -6.729 6 25.113 -6.364 6 25.237
+1 16 0 10 0 0 0 2 0 -1 0 2 0 0 p/48/4-4rin14.dat
+1 16 0 10 0 0 0 2 0 -1 0 2 0 0 p/48/4-4rin13.dat
+1 16 15.773 -5 15.774 2.07607 0 0.848528 0 -1 0 -2.07607 0 0.848528 p/2-4edge.dat
+1 16 -15.774 -5 15.773 2.07607 0 -0.848528 0 -1 0 2.07607 0 0.848528 p/2-4edge.dat
+1 16 -15.773 -5 -15.774 -2.07607 0 -0.848528 0 -1 0 2.07607 0 -0.848528 p/2-4edge.dat
+1 16 15.774 -5 -15.773 -2.07607 0 0.848528 0 -1 0 -2.07607 0 -0.848528 p/2-4edge.dat
+1 16 15.773 6 15.774 2.07607 0 0.848528 0 -1 0 -2.07607 0 0.848528 p/2-4edge.dat
+1 16 -15.774 6 15.773 2.07607 0 -0.848528 0 -1 0 2.07607 0 0.848528 p/2-4edge.dat
+1 16 -15.773 6 -15.774 -2.07607 0 -0.848528 0 -1 0 2.07607 0 -0.848528 p/2-4edge.dat
+1 16 15.774 6 -15.773 -2.07607 0 0.848528 0 -1 0 -2.07607 0 -0.848528 p/2-4edge.dat
+2 24 13.696 -5 17.85 13.696 6 17.85
+2 24 17.85 -5 13.696 17.85 6 13.696
+2 24 -17.85 -5 13.696 -17.85 6 13.696
+2 24 -13.696 -5 17.85 -13.696 6 17.85
+2 24 -13.696 -5 -17.85 -13.696 6 -17.85
+2 24 -17.85 -5 -13.696 -17.85 6 -13.696
+2 24 17.85 -5 -13.696 17.85 6 -13.696
+2 24 13.696 -5 -17.85 13.696 6 -17.85
+1 16 15.773 6 15.774 2.07607 0 0.848528 0 -11 0 -2.07607 0 0.848528 p/2-4cyli.dat
+1 16 -15.774 6 15.773 2.07607 0 -0.848528 0 -11 0 2.07607 0 0.848528 p/2-4cyli.dat
+1 16 -15.773 6 -15.774 -2.07607 0 -0.848528 0 -11 0 2.07607 0 -0.848528 p/2-4cyli.dat
+1 16 15.774 6 -15.773 -2.07607 0 0.848528 0 -11 0 -2.07607 0 -0.848528 p/2-4cyli.dat
+1 16 15.773 -5 15.774 2.07607 0 0.848528 0 1 0 -2.07607 0 0.848528 p/2-4disc.dat
+1 16 -15.774 -5 15.773 2.07607 0 -0.848528 0 1 0 2.07607 0 0.848528 p/2-4disc.dat
+1 16 -15.773 -5 -15.774 -2.07607 0 -0.848528 0 1 0 2.07607 0 -0.848528 p/2-4disc.dat
+1 16 15.774 -5 -15.773 -2.07607 0 0.848528 0 1 0 -2.07607 0 -0.848528 p/2-4disc.dat
+1 16 -15.773 6 15.774 -2.07607 0 -0.848528 0 -1 0 -2.07607 0 0.848528 p/2-4disc.dat
+1 16 15.774 6 15.773 -2.07607 0 0.848528 0 -1 0 2.07607 0 0.848528 p/2-4disc.dat
+1 16 15.773 6 -15.774 2.07607 0 0.848528 0 -1 0 2.07607 0 -0.848528 p/2-4disc.dat
+1 16 -15.774 6 -15.773 2.07607 0 -0.848528 0 -1 0 -2.07607 0 -0.848528 p/2-4disc.dat
+2 24 10.892 6 1.5 22.401 6 1.5
+4 16 11 6 -1.5 22 6 -1.5 22 6 1.5 11 6 1.5
+2 24 10.892 6 -1.5 22.401 6 -1.5
+2 24 10.892 6 1.5 10.892 -4 1.5
+2 24 10.892 6 -1.5 10.892 -4 -1.5
+2 24 22.401 6 1.5 22.401 -5 1.5
+2 24 22.401 6 -1.5 22.401 -5 -1.5
+2 24 10.892 -4 1.5 12 -4 1.5
+2 24 10.892 -4 1.5 11 -4 0
+2 24 -10.892 -4 1.5 -11 -4 0
+2 24 -10.892 -4 -1.5 -11 -4 0
+2 24 10.892 -4 -1.5 11 -4 0
+2 24 10.892 -4 -1.5 12 -4 -1.5
+2 24 12 -4 1.5 13 -5 1.5
+2 24 12 -4 -1.5 13 -5 -1.5
+2 24 22.401 -5 1.5 13 -5 1.5
+4 16 22.401 -5 1.5 13 -5 1.5 12 -4 1.5 22.401 6 1.5
+4 16 13 -5 -1.5 22.401 -5 -1.5 22.401 6 -1.5 12 -4 -1.5
+4 16 10.892 -4 1.5 10.892 6 1.5 22.401 6 1.5 12 -4 1.5
+4 16 10.892 6 -1.5 10.892 -4 -1.5 12 -4 -1.5 22.401 6 -1.5
+2 24 22.401 6 1.5 22.307 6 2.936
+2 24 22.307 6 2.936 21.733 6 5.823
+2 24 21.733 6 5.823 20.788 6 8.611
+2 24 20.788 6 8.611 19.485 6 11.25
+2 24 19.485 6 11.25 17.852 6 13.698
+2 24 22.401 6 -1.5 22.307 6 -2.936
+2 24 22.307 6 -2.936 21.733 6 -5.823
+2 24 21.733 6 -5.823 20.788 6 -8.611
+2 24 20.788 6 -8.611 19.485 6 -11.25
+2 24 19.485 6 -11.25 17.852 6 -13.698
+2 24 22.401 -5 1.5 22.307 -5 2.936
+3 16 22.401 -5 1.5 22.307 -5 2.936 17.6 -5 4.5
+3 16 17.6 -5 -4.5 22.307 -5 -2.936 22.401 -5 -1.5
+4 16 22.401 6 1.5 22.307 6 2.936 22.307 -5 2.936 22.401 -5 1.5
+4 16 22.401 -5 -1.5 22.307 -5 -2.936 22.307 6 -2.936 22.401 6 -1.5
+2 24 22.307 -5 2.936 21.733 -5 5.823
+4 16 17.6 -5 4.5 22.307 -5 2.936 21.733 -5 5.823 17.6 -5 6.5
+4 16 22.307 6 2.936 17.6 6 4.5 17.6 6 6.5 21.733 6 5.823
+4 16 17.6 6 -4.5 22.307 6 -2.936 21.733 6 -5.823 17.6 6 -6.5
+4 16 22.307 -5 -2.936 17.6 -5 -4.5 17.6 -5 -6.5 21.733 -5 -5.823
+2 24 21.733 -5 5.823 20.788 -5 8.611
+4 16 17.092 -5 8.419 17.6 -5 6.5 21.733 -5 5.823 20.788 -5 8.611
+4 16 17.6 6 6.5 17.092 6 8.419 20.788 6 8.611 21.733 6 5.823
+4 16 17.092 6 -8.419 17.6 6 -6.5 21.733 6 -5.823 20.788 6 -8.611
+4 16 17.6 -5 -6.5 17.092 -5 -8.419 20.788 -5 -8.611 21.733 -5 -5.823
+2 24 20.788 -5 8.611 19.485 -5 11.25
+4 16 16.021 -5 11 17.092 -5 8.419 20.788 -5 8.611 19.485 -5 11.25
+4 16 17.092 6 8.419 16.021 6 11 19.485 6 11.25 20.788 6 8.611
+4 16 16.021 6 -11 17.092 6 -8.419 20.788 6 -8.611 19.485 6 -11.25
+4 16 17.092 -5 -8.419 16.021 -5 -11 19.485 -5 -11.25 20.788 -5 -8.611
+2 24 19.485 -5 11.25 17.852 -5 13.698
+4 16 14.678 -5 13.394 16.021 -5 11 19.485 -5 11.25 17.852 -5 13.698
+4 16 16.021 6 11 14.678 6 13.394 17.852 6 13.698 19.485 6 11.25
+4 16 14.678 6 -13.394 16.021 6 -11 19.485 6 -11.25 17.852 6 -13.698
+4 16 16.021 -5 -11 14.678 -5 -13.394 17.852 -5 -13.698 19.485 -5 -11.25
+4 16 13.081 -5 15.556 14.678 -5 13.394 17.852 -5 13.698 13.696 -5 17.85
+4 16 14.678 6 13.394 13.081 6 15.556 13.696 6 17.85 17.852 6 13.698
+4 16 13.081 6 -15.556 14.678 6 -13.394 17.852 6 -13.698 13.696 6 -17.85
+4 16 14.678 -5 -13.394 13.081 -5 -15.556 13.696 -5 -17.85 17.852 -5 -13.698
+2 24 22.401 -5 -1.5 22.307 -5 -2.936
+2 24 22.307 -5 -2.936 21.733 -5 -5.823
+2 24 21.733 -5 -5.823 20.788 -5 -8.611
+2 24 20.788 -5 -8.611 19.485 -5 -11.25
+2 24 19.485 -5 -11.25 17.852 -5 -13.698
+2 24 22.401 -5 -1.5 13 -5 -1.5
+1 16 0 -5 0 17.8505 0 13.6971 0 11 0 13.6971 0 -17.8505 p/48/1-12cyli.dat
+1 16 0 -5 0 -17.8505 0 -13.6971 0 11 0 -13.6971 0 17.8505 p/48/1-12cyli.dat
+2 24 12.48 -5 16.265 12.45 6 16.265
+2 24 13.696 6 17.85 12.45 6 16.265
+2 24 13.696 -5 17.85 12.45 -5 16.265
+4 16 13.696 6 17.85 12.45 6 16.265 12.45 -5 16.265 13.696 -5 17.85
+2 24 12.48 -5 -16.265 12.45 6 -16.265
+2 24 13.696 6 -17.85 12.45 6 -16.265
+2 24 13.696 -5 -17.85 12.45 -5 -16.265
+4 16 13.696 -5 -17.85 12.45 -5 -16.265 12.45 6 -16.265 13.696 6 -17.85
+2 24 10.02 6 4.5 15.6 6 4.5
+2 24 10.02 6 4.5 10.02 -4 4.5
+2 24 10.02 -4 4.5 12 -4 4.5
+4 16 10.02 -4 4.5 12 -4 4.5 15.6 6 4.5 10.02 6 4.5
+4 16 12 -4 -4.5 10.02 -4 -4.5 10.02 6 -4.5 15.6 6 -4.5
+4 16 12 -4 4.5 10.02 -4 4.5 10.892 -4 1.5 12 -4 1.5
+4 16 10.02 -4 -4.5 12 -4 -4.5 12 -4 -1.5 10.892 -4 -1.5
+2 24 13 -5 4.5 12 -4 4.5
+4 16 13 -5 4.5 12 -4 4.5 12 -4 1.5 13 -5 1.5
+4 16 13 -5 -1.5 12 -4 -1.5 12 -4 -4.5 13 -5 -4.5
+2 24 12 -4 4.5 12 -4 1.5
+2 24 13 -5 4.5 13 -5 1.5
+2 24 13 -5 4.5 15.6 -5 4.5
+4 16 13 -5 4.5 15.6 -5 4.5 15.6 6 4.5 12 -4 4.5
+4 16 15.6 -5 -4.5 13 -5 -4.5 12 -4 -4.5 15.6 6 -4.5
+4 16 17.6 -5 4.5 13 -5 4.5 13 -5 1.5 22.401 -5 1.5
+4 16 13 -5 -4.5 17.6 -5 -4.5 22.401 -5 -1.5 13 -5 -1.5
+1 16 15.6 6 6.5 2 0 0 0 1 0 0 0 -2 p/1-4edge.dat
+1 16 15.6 -5 6.5 2 0 0 0 1 0 0 0 -2 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 15.6 -5 6.5 2 0 0 0 11 0 0 0 -2 p/1-4cyli.dat
+1 16 15.6 -5 6.5 2 0 0 0 1 0 0 0 -2 p/1-4ndis.dat
+1 16 15.6 6 6.5 2 0 0 0 -1 0 0 0 -2 p/1-4ndis.dat
+2 24 10.02 6 -4.5 15.6 6 -4.5
+2 24 10.02 6 -4.5 10.02 -4 -4.5
+2 24 10.02 -4 -4.5 12 -4 -4.5
+2 24 13 -5 -4.5 12 -4 -4.5
+2 24 12 -4 -4.5 12 -4 -1.5
+2 24 13 -5 -4.5 13 -5 -1.5
+2 24 13 -5 -4.5 15.6 -5 -4.5
+1 16 15.6 6 -6.5 0 0 2 0 1 0 2 0 0 p/1-4edge.dat
+1 16 15.6 -5 -6.5 0 0 2 0 1 0 2 0 0 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 15.6 -5 -6.5 0 0 2 0 11 0 2 0 0 p/1-4cyli.dat
+1 16 15.6 -5 -6.5 0 0 2 0 1 0 2 0 0 p/1-4ndis.dat
+1 16 15.6 6 -6.5 0 0 2 0 -1 0 2 0 0 p/1-4ndis.dat
+2 24 12.45 6 16.265 13.081 6 15.556
+2 24 13.081 6 15.556 14.678 6 13.394
+2 24 14.678 6 13.394 16.021 6 11
+2 24 16.021 6 11 17.092 6 8.419
+2 24 17.092 6 8.419 17.6 6 6.5
+2 24 12.45 6 -16.265 13.081 6 -15.556
+2 24 13.081 6 -15.556 14.678 6 -13.394
+2 24 14.678 6 -13.394 16.021 6 -11
+2 24 16.021 6 -11 17.092 6 -8.419
+2 24 17.092 6 -8.419 17.6 6 -6.5
+2 24 12.45 -5 16.265 13.081 -5 15.556
+3 16 13.696 -5 17.85 12.45 -5 16.265 13.091 -5 15.556
+3 16 13.696 6 17.85 13.091 6 15.556 12.45 6 16.265
+3 16 13.696 6 -17.85 12.45 6 -16.265 13.091 6 -15.556
+3 16 13.696 -5 -17.85 13.091 -5 -15.556 12.45 -5 -16.265
+5 24 13.081 6 15.566 13.081 -5 15.566 12.45 6 16.265 14.678 6 13.394
+5 24 13.081 6 -15.566 13.081 -5 -15.566 12.45 6 -16.265 14.678 6 -13.394
+4 16 12.45 6 16.265 13.081 6 15.556 13.081 -5 15.556 12.45 -5 16.265
+4 16 12.45 -5 -16.265 13.081 -5 -15.556 13.081 6 -15.556 12.45 6 -16.265
+2 24 13.081 -5 15.556 14.678 -5 13.394
+5 24 14.678 6 13.394 14.678 -5 13.394 13.081 6 15.566 16.021 6 11
+5 24 14.678 6 -13.394 14.678 -5 -13.394 13.081 6 -15.566 16.021 6 -11
+4 16 13.081 6 15.556 14.678 6 13.394 14.678 -5 13.394 13.081 -5 15.556
+4 16 13.081 -5 -15.556 14.678 -5 -13.394 14.678 6 -13.394 13.081 6 -15.556
+2 24 14.678 -5 13.394 16.021 -5 11
+5 24 16.021 6 11 16.021 -5 11 14.678 6 13.394 17.092 6 8.419
+5 24 16.021 6 -11 16.021 -5 -11 14.678 6 -13.394 17.092 6 -8.419
+4 16 14.678 6 13.394 16.021 6 11 16.021 -5 11 14.678 -5 13.394
+4 16 14.678 -5 -13.394 16.021 -5 -11 16.021 6 -11 14.678 6 -13.394
+2 24 16.021 -5 11 17.092 -5 8.419
+5 24 17.092 6 8.419 17.092 -5 8.419 16.021 6 11 17.6 6 6.5
+5 24 17.092 6 -8.419 17.092 -5 -8.419 16.021 6 -11 17.6 6 -6.5
+4 16 16.021 6 11 17.092 6 8.419 17.092 -5 8.419 16.021 -5 11
+4 16 16.021 -5 -11 17.092 -5 -8.419 17.092 6 -8.419 16.021 6 -11
+2 24 17.092 -5 8.419 17.6 -5 6.5
+4 16 17.092 6 8.419 17.6 6 6.5 17.6 -5 6.5 17.092 -5 8.419
+4 16 17.092 -5 -8.419 17.6 -5 -6.5 17.6 6 -6.5 17.092 6 -8.419
+2 24 12.45 -5 -16.265 13.081 -5 -15.556
+2 24 13.081 -5 -15.556 14.678 -5 -13.394
+2 24 14.678 -5 -13.394 16.021 -5 -11
+2 24 16.021 -5 -11 17.092 -5 -8.419
+2 24 17.092 -5 -8.419 17.6 -5 -6.5
+2 24 -10.892 6 -1.5 -22.401 6 -1.5
+4 16 -11 6 1.5 -22 6 1.5 -22 6 -1.5 -11 6 -1.5
+2 24 -10.892 6 1.5 -22.401 6 1.5
+2 24 -10.892 6 -1.5 -10.892 -4 -1.5
+2 24 -10.892 6 1.5 -10.892 -4 1.5
+2 24 -22.401 6 -1.5 -22.401 -5 -1.5
+2 24 -22.401 6 1.5 -22.401 -5 1.5
+2 24 -10.892 -4 -1.5 -12 -4 -1.5
+2 24 -10.892 -4 1.5 -12 -4 1.5
+2 24 -12 -4 -1.5 -13 -5 -1.5
+2 24 -12 -4 1.5 -13 -5 1.5
+2 24 -22.401 -5 -1.5 -13 -5 -1.5
+4 16 -22.401 -5 -1.5 -13 -5 -1.5 -12 -4 -1.5 -22.401 6 -1.5
+4 16 -13 -5 1.5 -22.401 -5 1.5 -22.401 6 1.5 -12 -4 1.5
+4 16 -10.892 -4 -1.5 -10.892 6 -1.5 -22.401 6 -1.5 -12 -4 -1.5
+4 16 -10.892 6 1.5 -10.892 -4 1.5 -12 -4 1.5 -22.401 6 1.5
+2 24 -22.401 6 -1.5 -22.307 6 -2.936
+2 24 -22.307 6 -2.936 -21.733 6 -5.823
+2 24 -21.733 6 -5.823 -20.788 6 -8.611
+2 24 -20.788 6 -8.611 -19.485 6 -11.25
+2 24 -19.485 6 -11.25 -17.852 6 -13.698
+2 24 -22.401 6 1.5 -22.307 6 2.936
+2 24 -22.307 6 2.936 -21.733 6 5.823
+2 24 -21.733 6 5.823 -20.788 6 8.611
+2 24 -20.788 6 8.611 -19.485 6 11.25
+2 24 -19.485 6 11.25 -17.852 6 13.698
+2 24 -22.401 -5 -1.5 -22.307 -5 -2.936
+3 16 -22.401 -5 -1.5 -22.307 -5 -2.936 -17.6 -5 -4.5
+3 16 -17.6 -5 4.5 -22.307 -5 2.936 -22.401 -5 1.5
+4 16 -22.401 6 -1.5 -22.307 6 -2.936 -22.307 -5 -2.936 -22.401 -5 -1.5
+4 16 -22.401 -5 1.5 -22.307 -5 2.936 -22.307 6 2.936 -22.401 6 1.5
+2 24 -22.307 -5 -2.936 -21.733 -5 -5.823
+4 16 -17.6 -5 -4.5 -22.307 -5 -2.936 -21.733 -5 -5.823 -17.6 -5 -6.5
+4 16 -22.307 6 -2.936 -17.6 6 -4.5 -17.6 6 -6.5 -21.733 6 -5.823
+4 16 -17.6 6 4.5 -22.307 6 2.936 -21.733 6 5.823 -17.6 6 6.5
+4 16 -22.307 -5 2.936 -17.6 -5 4.5 -17.6 -5 6.5 -21.733 -5 5.823
+2 24 -21.733 -5 -5.823 -20.788 -5 -8.611
+4 16 -17.092 -5 -8.419 -17.6 -5 -6.5 -21.733 -5 -5.823 -20.788 -5 -8.611
+4 16 -17.6 6 -6.5 -17.092 6 -8.419 -20.788 6 -8.611 -21.733 6 -5.823
+4 16 -17.092 6 8.419 -17.6 6 6.5 -21.733 6 5.823 -20.788 6 8.611
+4 16 -17.6 -5 6.5 -17.092 -5 8.419 -20.788 -5 8.611 -21.733 -5 5.823
+2 24 -20.788 -5 -8.611 -19.485 -5 -11.25
+4 16 -16.021 -5 -11 -17.092 -5 -8.419 -20.788 -5 -8.611 -19.485 -5 -11.25
+4 16 -17.092 6 -8.419 -16.021 6 -11 -19.485 6 -11.25 -20.788 6 -8.611
+4 16 -16.021 6 11 -17.092 6 8.419 -20.788 6 8.611 -19.485 6 11.25
+4 16 -17.092 -5 8.419 -16.021 -5 11 -19.485 -5 11.25 -20.788 -5 8.611
+2 24 -19.485 -5 -11.25 -17.852 -5 -13.698
+4 16 -14.678 -5 -13.394 -16.021 -5 -11 -19.485 -5 -11.25 -17.852 -5 -13.698
+4 16 -16.021 6 -11 -14.678 6 -13.394 -17.852 6 -13.698 -19.485 6 -11.25
+4 16 -14.678 6 13.394 -16.021 6 11 -19.485 6 11.25 -17.852 6 13.698
+4 16 -16.021 -5 11 -14.678 -5 13.394 -17.852 -5 13.698 -19.485 -5 11.25
+4 16 -13.081 -5 -15.556 -14.678 -5 -13.394 -17.852 -5 -13.698 -13.696 -5 -17.85
+4 16 -14.678 6 -13.394 -13.081 6 -15.556 -13.696 6 -17.85 -17.852 6 -13.698
+4 16 -13.081 6 15.556 -14.678 6 13.394 -17.852 6 13.698 -13.696 6 17.85
+4 16 -14.678 -5 13.394 -13.081 -5 15.556 -13.696 -5 17.85 -17.852 -5 13.698
+2 24 -22.401 -5 1.5 -22.307 -5 2.936
+2 24 -22.307 -5 2.936 -21.733 -5 5.823
+2 24 -21.733 -5 5.823 -20.788 -5 8.611
+2 24 -20.788 -5 8.611 -19.485 -5 11.25
+2 24 -19.485 -5 11.25 -17.852 -5 13.698
+2 24 -22.401 -5 1.5 -13 -5 1.5
+1 16 0 -5 0 -22.3075 0 2.93684 0 11 0 2.93684 0 22.3075 p/48/1-12cyli.dat
+1 16 0 -5 0 22.3075 0 -2.93684 0 11 0 -2.93684 0 -22.3075 p/48/1-12cyli.dat
+2 24 -12.48 -5 -16.265 -12.45 6 -16.265
+2 24 -13.696 6 -17.85 -12.45 6 -16.265
+2 24 -13.696 -5 -17.85 -12.45 -5 -16.265
+4 16 -13.696 6 -17.85 -12.45 6 -16.265 -12.45 -5 -16.265 -13.696 -5 -17.85
+2 24 -12.48 -5 16.265 -12.45 6 16.265
+2 24 -13.696 6 17.85 -12.45 6 16.265
+2 24 -13.696 -5 17.85 -12.45 -5 16.265
+4 16 -13.696 -5 17.85 -12.45 -5 16.265 -12.45 6 16.265 -13.696 6 17.85
+2 24 -10.02 6 -4.5 -15.6 6 -4.5
+2 24 -10.02 6 -4.5 -10.02 -4 -4.5
+2 24 -10.02 -4 -4.5 -12 -4 -4.5
+4 16 -10.02 -4 -4.5 -12 -4 -4.5 -15.6 6 -4.5 -10.02 6 -4.5
+4 16 -12 -4 4.5 -10.02 -4 4.5 -10.02 6 4.5 -15.6 6 4.5
+4 16 -12 -4 -4.5 -10.02 -4 -4.5 -10.892 -4 -1.5 -12 -4 -1.5
+4 16 -10.02 -4 4.5 -12 -4 4.5 -12 -4 1.5 -10.892 -4 1.5
+2 24 -13 -5 -4.5 -12 -4 -4.5
+4 16 -13 -5 -4.5 -12 -4 -4.5 -12 -4 -1.5 -13 -5 -1.5
+4 16 -13 -5 1.5 -12 -4 1.5 -12 -4 4.5 -13 -5 4.5
+2 24 -12 -4 -4.5 -12 -4 -1.5
+2 24 -13 -5 -4.5 -13 -5 -1.5
+2 24 -13 -5 -4.5 -15.6 -5 -4.5
+4 16 -13 -5 -4.5 -15.6 -5 -4.5 -15.6 6 -4.5 -12 -4 -4.5
+4 16 -15.6 -5 4.5 -13 -5 4.5 -12 -4 4.5 -15.6 6 4.5
+4 16 -17.6 -5 -4.5 -13 -5 -4.5 -13 -5 -1.5 -22.401 -5 -1.5
+4 16 -13 -5 4.5 -17.6 -5 4.5 -22.401 -5 1.5 -13 -5 1.5
+1 16 -15.6 6 -6.5 -2 0 0 0 1 0 0 0 2 p/1-4edge.dat
+1 16 -15.6 -5 -6.5 -2 0 0 0 1 0 0 0 2 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 -15.6 -5 -6.5 -2 0 0 0 11 0 0 0 2 p/1-4cyli.dat
+1 16 -15.6 -5 -6.5 -2 0 0 0 1 0 0 0 2 p/1-4ndis.dat
+1 16 -15.6 6 -6.5 -2 0 0 0 -1 0 0 0 2 p/1-4ndis.dat
+2 24 -10.02 6 4.5 -15.6 6 4.5
+2 24 -10.02 6 4.5 -10.02 -4 4.5
+2 24 -10.02 -4 4.5 -12 -4 4.5
+2 24 -13 -5 4.5 -12 -4 4.5
+2 24 -12 -4 4.5 -12 -4 1.5
+2 24 -13 -5 4.5 -13 -5 1.5
+2 24 -13 -5 4.5 -15.6 -5 4.5
+1 16 -15.6 6 6.5 0 0 -2 0 1 0 -2 0 0 p/1-4edge.dat
+1 16 -15.6 -5 6.5 0 0 -2 0 1 0 -2 0 0 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 -15.6 -5 6.5 0 0 -2 0 11 0 -2 0 0 p/1-4cyli.dat
+1 16 -15.6 -5 6.5 0 0 -2 0 1 0 -2 0 0 p/1-4ndis.dat
+1 16 -15.6 6 6.5 0 0 -2 0 -1 0 -2 0 0 p/1-4ndis.dat
+2 24 -12.45 6 -16.265 -13.081 6 -15.556
+2 24 -13.081 6 -15.556 -14.678 6 -13.394
+2 24 -14.678 6 -13.394 -16.021 6 -11
+2 24 -16.021 6 -11 -17.092 6 -8.419
+2 24 -17.092 6 -8.419 -17.6 6 -6.5
+2 24 -12.45 6 16.265 -13.081 6 15.556
+2 24 -13.081 6 15.556 -14.678 6 13.394
+2 24 -14.678 6 13.394 -16.021 6 11
+2 24 -16.021 6 11 -17.092 6 8.419
+2 24 -17.092 6 8.419 -17.6 6 6.5
+2 24 -12.45 -5 -16.265 -13.081 -5 -15.556
+3 16 -13.696 -5 -17.85 -12.45 -5 -16.265 -13.091 -5 -15.556
+3 16 -13.696 6 -17.85 -13.091 6 -15.556 -12.45 6 -16.265
+3 16 -13.696 6 17.85 -12.45 6 16.265 -13.091 6 15.556
+3 16 -13.696 -5 17.85 -13.091 -5 15.556 -12.45 -5 16.265
+5 24 -13.081 6 -15.566 -13.081 -5 -15.566 -12.45 6 -16.265 -14.678 6 -13.394
+5 24 -13.081 6 15.566 -13.081 -5 15.566 -12.45 6 16.265 -14.678 6 13.394
+4 16 -12.45 6 -16.265 -13.081 6 -15.556 -13.081 -5 -15.556 -12.45 -5 -16.265
+4 16 -12.45 -5 16.265 -13.081 -5 15.556 -13.081 6 15.556 -12.45 6 16.265
+2 24 -13.081 -5 -15.556 -14.678 -5 -13.394
+5 24 -14.678 6 -13.394 -14.678 -5 -13.394 -13.081 6 -15.566 -16.021 6 -11
+5 24 -14.678 6 13.394 -14.678 -5 13.394 -13.081 6 15.566 -16.021 6 11
+4 16 -13.081 6 -15.556 -14.678 6 -13.394 -14.678 -5 -13.394 -13.081 -5 -15.556
+4 16 -13.081 -5 15.556 -14.678 -5 13.394 -14.678 6 13.394 -13.081 6 15.556
+2 24 -14.678 -5 -13.394 -16.021 -5 -11
+5 24 -16.021 6 -11 -16.021 -5 -11 -14.678 6 -13.394 -17.092 6 -8.419
+5 24 -16.021 6 11 -16.021 -5 11 -14.678 6 13.394 -17.092 6 8.419
+4 16 -14.678 6 -13.394 -16.021 6 -11 -16.021 -5 -11 -14.678 -5 -13.394
+4 16 -14.678 -5 13.394 -16.021 -5 11 -16.021 6 11 -14.678 6 13.394
+2 24 -16.021 -5 -11 -17.092 -5 -8.419
+5 24 -17.092 6 -8.419 -17.092 -5 -8.419 -16.021 6 -11 -17.6 6 -6.5
+5 24 -17.092 6 8.419 -17.092 -5 8.419 -16.021 6 11 -17.6 6 6.5
+4 16 -16.021 6 -11 -17.092 6 -8.419 -17.092 -5 -8.419 -16.021 -5 -11
+4 16 -16.021 -5 11 -17.092 -5 8.419 -17.092 6 8.419 -16.021 6 11
+2 24 -17.092 -5 -8.419 -17.6 -5 -6.5
+4 16 -17.092 6 -8.419 -17.6 6 -6.5 -17.6 -5 -6.5 -17.092 -5 -8.419
+4 16 -17.092 -5 8.419 -17.6 -5 6.5 -17.6 6 6.5 -17.092 6 8.419
+2 24 -12.45 -5 16.265 -13.081 -5 15.556
+2 24 -13.081 -5 15.556 -14.678 -5 13.394
+2 24 -14.678 -5 13.394 -16.021 -5 11
+2 24 -16.021 -5 11 -17.092 -5 8.419
+2 24 -17.092 -5 8.419 -17.6 -5 6.5
+2 24 15.6 6 4.5 23 6 4.5
+1 16 15.6 6 6.5 1 0 0 0 1 0 0 0 -1 p/1-4edge.dat
+1 16 15.6 6 5 0 0 -0.5 0 1 0 -0.5 0 0 p/2-4edge.dat
+2 24 12.728 6 18.385 13.539 6 18.766
+2 24 13.539 6 18.766 14.656 6 18.656
+5 24 13.539 6 18.766 13.539 10 18.766 12.728 6 18.385 14.656 6 18.656
+5 24 13.539 6 -18.766 13.539 10 -18.766 12.728 6 -18.385 14.656 6 -18.656
+5 24 -13.539 6 18.766 -13.539 10 18.766 -12.728 6 18.385 -14.656 6 18.656
+5 24 -13.539 6 -18.766 -13.539 10 -18.766 -12.728 6 -18.385 -14.656 6 -18.656
+3 16 13.539 6 18.766 14.656 6 18.656 15.829 6 20.628
+3 16 14.656 10 18.656 13.539 10 18.766 15.829 10 20.628
+3 16 13.539 10 -18.766 14.656 10 -18.656 15.829 10 -20.628
+3 16 14.656 6 -18.656 13.539 6 -18.766 15.829 6 -20.628
+3 16 -13.539 6 -18.766 -14.656 6 -18.656 -15.829 6 -20.628
+3 16 -14.656 10 -18.656 -13.539 10 -18.766 -15.829 10 -20.628
+3 16 -13.539 10 18.766 -14.656 10 18.656 -15.829 10 20.628
+3 16 -14.656 6 18.656 -13.539 6 18.766 -15.829 6 20.628
+2 24 14.656 6 18.656 15.911 6 18.077
+5 24 14.656 6 18.656 14.656 10 18.656 13.539 6 18.766 15.911 6 18.077
+5 24 14.656 6 -18.656 14.656 10 -18.656 13.539 6 -18.766 15.911 6 -18.077
+5 24 -14.656 6 18.656 -14.656 10 18.656 -13.539 6 18.766 -15.911 6 18.077
+5 24 -14.656 6 -18.656 -14.656 10 -18.656 -13.539 6 -18.766 -15.911 6 -18.077
+3 16 14.656 6 18.656 15.911 6 18.077 15.829 6 20.628
+3 16 15.911 10 18.077 14.656 10 18.656 15.829 10 20.628
+3 16 14.656 10 -18.656 15.911 10 -18.077 15.829 10 -20.628
+3 16 15.911 6 -18.077 14.656 6 -18.656 15.829 6 -20.628
+3 16 -14.656 6 -18.656 -15.911 6 -18.077 -15.829 6 -20.628
+3 16 -15.911 10 -18.077 -14.656 10 -18.656 -15.829 10 -20.628
+3 16 -14.656 10 18.656 -15.911 10 18.077 -15.829 10 20.628
+3 16 -15.911 6 18.077 -14.656 6 18.656 -15.829 6 20.628
+2 24 15.911 6 18.077 17.112 6 17.112
+5 24 15.911 6 18.077 15.911 10 18.077 14.656 6 18.656 17.112 6 17.112
+5 24 15.911 6 -18.077 15.911 10 -18.077 14.656 6 -18.656 17.112 6 -17.112
+5 24 -15.911 6 18.077 -15.911 10 18.077 -14.656 6 18.656 -17.112 6 17.112
+5 24 -15.911 6 -18.077 -15.911 10 -18.077 -14.656 6 -18.656 -17.112 6 -17.112
+4 16 15.911 6 18.077 17.112 6 17.112 18.385 6 18.385 15.829 6 20.628
+4 16 17.112 10 17.112 15.911 10 18.077 15.829 10 20.628 18.385 10 18.385
+4 16 15.911 10 -18.077 17.112 10 -17.112 18.385 10 -18.385 15.829 10 -20.628
+4 16 17.112 6 -17.112 15.911 6 -18.077 15.829 6 -20.628 18.385 6 -18.385
+4 16 -15.911 6 -18.077 -17.112 6 -17.112 -18.385 6 -18.385 -15.829 6 -20.628
+4 16 -17.112 10 -17.112 -15.911 10 -18.077 -15.829 10 -20.628 -18.385 10 -18.385
+4 16 -15.911 10 18.077 -17.112 10 17.112 -18.385 10 18.385 -15.829 10 20.628
+4 16 -17.112 6 17.112 -15.911 6 18.077 -15.829 6 20.628 -18.385 6 18.385
+2 24 18.077 6 15.911 17.112 6 17.112
+5 24 17.112 6 17.112 17.112 10 17.112 15.911 6 18.077 18.077 6 15.911
+5 24 17.112 6 -17.112 17.112 10 -17.112 15.911 6 -18.077 18.077 6 -15.911
+5 24 -17.112 6 17.112 -17.112 10 17.112 -15.911 6 18.077 -18.077 6 15.911
+5 24 -17.112 6 -17.112 -17.112 10 -17.112 -15.911 6 -18.077 -18.077 6 -15.911
+4 16 17.112 6 17.112 18.077 6 15.911 20.628 6 15.829 18.385 6 18.385
+4 16 18.077 10 15.911 17.112 10 17.112 18.385 10 18.385 20.628 10 15.829
+4 16 17.112 10 -17.112 18.077 10 -15.911 20.628 10 -15.829 18.385 10 -18.385
+4 16 18.077 6 -15.911 17.112 6 -17.112 18.385 6 -18.385 20.628 6 -15.829
+4 16 -17.112 6 -17.112 -18.077 6 -15.911 -20.628 6 -15.829 -18.385 6 -18.385
+4 16 -18.077 10 -15.911 -17.112 10 -17.112 -18.385 10 -18.385 -20.628 10 -15.829
+4 16 -17.112 10 17.112 -18.077 10 15.911 -20.628 10 15.829 -18.385 10 18.385
+4 16 -18.077 6 15.911 -17.112 6 17.112 -18.385 6 18.385 -20.628 6 15.829
+2 24 18.656 6 14.656 18.077 6 15.911
+5 24 18.077 6 15.911 18.077 10 15.911 17.112 6 17.112 18.656 6 14.656
+5 24 18.077 6 -15.911 18.077 10 -15.911 17.112 6 -17.112 18.656 6 -14.656
+5 24 -18.077 6 15.911 -18.077 10 15.911 -17.112 6 17.112 -18.656 6 14.656
+5 24 -18.077 6 -15.911 -18.077 10 -15.911 -17.112 6 -17.112 -18.656 6 -14.656
+3 16 18.077 6 15.911 18.656 6 14.656 20.628 6 15.829
+3 16 18.656 10 14.656 18.077 10 15.911 20.628 10 15.829
+3 16 18.077 10 -15.911 18.656 10 -14.656 20.628 10 -15.829
+3 16 18.656 6 -14.656 18.077 6 -15.911 20.628 6 -15.829
+3 16 -18.077 6 -15.911 -18.656 6 -14.656 -20.628 6 -15.829
+3 16 -18.656 10 -14.656 -18.077 10 -15.911 -20.628 10 -15.829
+3 16 -18.077 10 15.911 -18.656 10 14.656 -20.628 10 15.829
+3 16 -18.656 6 14.656 -18.077 6 15.911 -20.628 6 15.829
+2 24 18.852 6 13.698 18.656 6 14.656
+5 24 18.656 6 14.656 18.656 10 14.656 18.077 6 15.911 18.852 6 13.698
+5 24 18.656 6 -14.656 18.656 10 -14.656 18.077 6 -15.911 18.852 6 -13.698
+5 24 -18.656 6 14.656 -18.656 10 14.656 -18.077 6 15.911 -18.852 6 13.698
+5 24 -18.656 6 -14.656 -18.656 10 -14.656 -18.077 6 -15.911 -18.852 6 -13.698
+3 16 18.656 6 14.656 18.852 6 13.698 20.628 6 15.829
+3 16 18.852 10 13.698 18.656 10 14.656 20.628 10 15.829
+3 16 18.656 10 -14.656 18.852 10 -13.698 20.628 10 -15.829
+3 16 18.852 6 -13.698 18.656 6 -14.656 20.628 6 -15.829
+3 16 -18.656 6 -14.656 -18.852 6 -13.698 -20.628 6 -15.829
+3 16 -18.852 10 -13.698 -18.656 10 -14.656 -20.628 10 -15.829
+3 16 -18.656 10 14.656 -18.852 10 13.698 -20.628 10 15.829
+3 16 -18.852 6 13.698 -18.656 6 14.656 -20.628 6 15.829
+2 24 12.728 6 18.385 11.241 6 16.5
+2 24 11.241 6 16.5 12.081 6 15.556
+2 24 12.081 6 15.556 13.678 6 13.394
+5 24 12.081 6 15.556 12.081 10 15.556 11.241 6 16.5 13.678 6 13.394
+5 24 12.081 6 -15.556 12.081 10 -15.556 11.241 6 -16.5 13.678 6 -13.394
+5 24 -12.081 6 15.556 -12.081 10 15.556 -11.241 6 16.5 -13.678 6 13.394
+5 24 -12.081 6 -15.556 -12.081 10 -15.556 -11.241 6 -16.5 -13.678 6 -13.394
+2 24 13.678 6 13.394 15.021 6 11
+5 24 13.678 6 13.394 13.678 10 13.394 12.081 6 15.556 15.021 6 11
+5 24 13.678 6 -13.394 13.678 10 -13.394 12.081 6 -15.556 15.021 6 -11
+5 24 -13.678 6 13.394 -13.678 10 13.394 -12.081 6 15.556 -15.021 6 11
+5 24 -13.678 6 -13.394 -13.678 10 -13.394 -12.081 6 -15.556 -15.021 6 -11
+2 24 15.021 6 11 16.092 6 8.419
+5 24 15.021 6 11 15.021 10 11 16.092 6 8.419 13.678 6 13.394
+5 24 15.021 6 -11 15.021 10 -11 16.092 6 -8.419 13.678 6 -13.394
+5 24 -15.021 6 11 -15.021 10 11 -16.092 6 8.419 -13.678 6 13.394
+5 24 -15.021 6 -11 -15.021 10 -11 -16.092 6 -8.419 -13.678 6 -13.394
+2 24 16.092 6 8.419 16.6 6 6.5
+5 24 16.092 6 8.419 16.092 10 8.419 15.021 6 11 16.6 6 6.5
+5 24 16.092 6 -8.419 16.092 10 -8.419 15.021 6 -11 16.6 6 -6.5
+5 24 -16.092 6 8.419 -16.092 10 8.419 -15.021 6 11 -16.6 6 6.5
+5 24 -16.092 6 -8.419 -16.092 10 -8.419 -15.021 6 -11 -16.6 6 -6.5
+2 24 23 6 4.5 22.733 6 5.823
+5 24 22.733 6 5.823 22.733 10 5.823 21.788 6 8.611 23 6 4.5
+5 24 22.733 6 -5.823 22.733 10 -5.823 21.788 6 -8.611 23 6 -4.5
+5 24 -22.733 6 5.823 -22.733 10 5.823 -21.788 6 8.611 -23 6 4.5
+5 24 -22.733 6 -5.823 -22.733 10 -5.823 -21.788 6 -8.611 -23 6 -4.5
+4 16 22.733 6 5.823 23 6 4.5 25.776 6 3.393 25.113 6 6.729
+4 16 23 10 4.5 22.733 10 5.823 25.113 10 6.729 25.776 10 3.393
+4 16 22.733 10 -5.823 23 10 -4.5 25.776 10 -3.393 25.113 10 -6.729
+4 16 23 6 -4.5 22.733 6 -5.823 25.113 6 -6.729 25.776 6 -3.393
+4 16 -22.733 6 -5.823 -23 6 -4.5 -25.776 6 -3.393 -25.113 6 -6.729
+4 16 -23 10 -4.5 -22.733 10 -5.823 -25.113 10 -6.729 -25.776 10 -3.393
+4 16 -22.733 10 5.823 -23 10 4.5 -25.776 10 3.393 -25.113 10 6.729
+4 16 -23 6 4.5 -22.733 6 5.823 -25.113 6 6.729 -25.776 6 3.393
+2 24 22.733 6 5.823 21.788 6 8.611
+5 24 21.788 6 8.611 21.788 10 8.611 20.485 6 11.25 22.733 6 5.823
+5 24 21.788 6 -8.611 21.788 10 -8.611 20.485 6 -11.25 22.733 6 -5.823
+5 24 -21.788 6 8.611 -21.788 10 8.611 -20.485 6 11.25 -22.733 6 5.823
+5 24 -21.788 6 -8.611 -21.788 10 -8.611 -20.485 6 -11.25 -22.733 6 -5.823
+4 16 21.788 6 8.611 22.733 6 5.823 25.113 6 6.729 24.021 6 9.95
+4 16 22.733 10 5.823 21.788 10 8.611 24.021 10 9.95 25.113 10 6.729
+4 16 21.788 10 -8.611 22.733 10 -5.823 25.113 10 -6.729 24.021 10 -9.95
+4 16 22.733 6 -5.823 21.788 6 -8.611 24.021 6 -9.95 25.113 6 -6.729
+4 16 -21.788 6 -8.611 -22.733 6 -5.823 -25.113 6 -6.729 -24.021 6 -9.95
+4 16 -22.733 10 -5.823 -21.788 10 -8.611 -24.021 10 -9.95 -25.113 10 -6.729
+4 16 -21.788 10 8.611 -22.733 10 5.823 -25.113 10 6.729 -24.021 10 9.95
+4 16 -22.733 6 5.823 -21.788 6 8.611 -24.021 6 9.95 -25.113 6 6.729
+2 24 21.788 6 8.611 20.485 6 11.25
+5 24 20.485 6 11.25 20.485 10 11.25 18.852 6 13.698 21.788 6 8.611
+5 24 20.485 6 -11.25 20.485 10 -11.25 18.852 6 -13.698 21.788 6 -8.611
+5 24 -20.485 6 11.25 -20.485 10 11.25 -18.852 6 13.698 -21.788 6 8.611
+5 24 -20.485 6 -11.25 -20.485 10 -11.25 -18.852 6 -13.698 -21.788 6 -8.611
+4 16 20.485 6 11.25 21.788 6 8.611 24.021 6 9.95 22.516 6 13
+4 16 21.788 10 8.611 20.485 10 11.25 22.516 10 13 24.021 10 9.95
+4 16 20.485 10 -11.25 21.788 10 -8.611 24.021 10 -9.95 22.516 10 -13
+4 16 21.788 6 -8.611 20.485 6 -11.25 22.516 6 -13 24.021 6 -9.95
+4 16 -20.485 6 -11.25 -21.788 6 -8.611 -24.021 6 -9.95 -22.516 6 -13
+4 16 -21.788 10 -8.611 -20.485 10 -11.25 -22.516 10 -13 -24.021 10 -9.95
+4 16 -20.485 10 11.25 -21.788 10 8.611 -24.021 10 9.95 -22.516 10 13
+4 16 -21.788 6 8.611 -20.485 6 11.25 -22.516 6 13 -24.021 6 9.95
+2 24 20.485 6 11.25 18.852 6 13.698
+4 16 18.852 6 13.698 20.485 6 11.25 22.516 6 13 20.628 6 15.829
+4 16 20.485 10 11.25 18.852 10 13.698 20.628 10 15.829 22.516 10 13
+4 16 18.852 10 -13.698 20.485 10 -11.25 22.516 10 -13 20.628 10 -15.829
+4 16 20.485 6 -11.25 18.852 6 -13.698 20.628 6 -15.829 22.516 6 -13
+4 16 -18.852 6 -13.698 -20.485 6 -11.25 -22.516 6 -13 -20.628 6 -15.829
+4 16 -20.485 10 -11.25 -18.852 10 -13.698 -20.628 10 -15.829 -22.516 10 -13
+4 16 -18.852 10 13.698 -20.485 10 11.25 -22.516 10 13 -20.628 10 15.829
+4 16 -20.485 6 11.25 -18.852 6 13.698 -20.628 6 15.829 -22.516 6 13
+2 24 15.6 10 4.5 23 10 4.5
+1 16 15.6 10 6.5 1 0 0 0 1 0 0 0 -1 p/1-4edge.dat
+1 16 15.6 10 5 0 0 -0.5 0 1 0 -0.5 0 0 p/2-4edge.dat
+2 24 12.728 10 18.385 13.539 10 18.766
+2 24 13.539 10 18.766 14.656 10 18.656
+2 24 14.656 10 18.656 15.911 10 18.077
+2 24 15.911 10 18.077 17.112 10 17.112
+2 24 18.077 10 15.911 17.112 10 17.112
+2 24 18.656 10 14.656 18.077 10 15.911
+2 24 18.852 10 13.698 18.656 10 14.656
+2 24 12.728 10 18.385 11.241 10 16.5
+2 24 11.241 10 16.5 12.081 10 15.556
+2 24 12.081 10 15.556 13.678 10 13.394
+2 24 13.678 10 13.394 15.021 10 11
+2 24 15.021 10 11 16.092 10 8.419
+2 24 16.092 10 8.419 16.6 10 6.5
+2 24 23 10 4.5 22.733 10 5.823
+2 24 22.733 10 5.823 21.788 10 8.611
+2 24 21.788 10 8.611 20.485 10 11.25
+2 24 20.485 10 11.25 18.852 10 13.698
+2 24 15.6 10 -4.5 23 10 -4.5
+1 16 15.6 10 -6.5 1 0 0 0 -1 0 0 0 1 p/1-4edge.dat
+1 16 15.6 10 -5 0 0 -0.5 0 -1 0 0.5 0 0 p/2-4edge.dat
+2 24 12.728 10 -18.385 13.539 10 -18.766
+2 24 13.539 10 -18.766 14.656 10 -18.656
+2 24 14.656 10 -18.656 15.911 10 -18.077
+2 24 15.911 10 -18.077 17.112 10 -17.112
+2 24 18.077 10 -15.911 17.112 10 -17.112
+2 24 18.656 10 -14.656 18.077 10 -15.911
+2 24 18.852 10 -13.698 18.656 10 -14.656
+2 24 12.728 10 -18.385 11.241 10 -16.5
+2 24 11.241 10 -16.5 12.081 10 -15.556
+2 24 12.081 10 -15.556 13.678 10 -13.394
+2 24 13.678 10 -13.394 15.021 10 -11
+2 24 15.021 10 -11 16.092 10 -8.419
+2 24 16.092 10 -8.419 16.6 10 -6.5
+2 24 23 10 -4.5 22.733 10 -5.823
+2 24 22.733 10 -5.823 21.788 10 -8.611
+2 24 21.788 10 -8.611 20.485 10 -11.25
+2 24 20.485 10 -11.25 18.852 10 -13.698
+2 24 15.6 6 -4.5 23 6 -4.5
+1 16 15.6 6 -6.5 1 0 0 0 -1 0 0 0 1 p/1-4edge.dat
+1 16 15.6 6 -5 0 0 -0.5 0 -1 0 0.5 0 0 p/2-4edge.dat
+2 24 12.728 6 -18.385 13.539 6 -18.766
+2 24 13.539 6 -18.766 14.656 6 -18.656
+2 24 14.656 6 -18.656 15.911 6 -18.077
+2 24 15.911 6 -18.077 17.112 6 -17.112
+2 24 18.077 6 -15.911 17.112 6 -17.112
+2 24 18.656 6 -14.656 18.077 6 -15.911
+2 24 18.852 6 -13.698 18.656 6 -14.656
+2 24 12.728 6 -18.385 11.241 6 -16.5
+2 24 11.241 6 -16.5 12.081 6 -15.556
+2 24 12.081 6 -15.556 13.678 6 -13.394
+2 24 13.678 6 -13.394 15.021 6 -11
+2 24 15.021 6 -11 16.092 6 -8.419
+2 24 16.092 6 -8.419 16.6 6 -6.5
+2 24 23 6 -4.5 22.733 6 -5.823
+2 24 22.733 6 -5.823 21.788 6 -8.611
+2 24 21.788 6 -8.611 20.485 6 -11.25
+2 24 20.485 6 -11.25 18.852 6 -13.698
+2 24 -15.6 6 -4.5 -23 6 -4.5
+1 16 -15.6 6 -6.5 -1 0 0 0 1 0 0 0 1 p/1-4edge.dat
+1 16 -15.6 6 -5 0 0 0.5 0 1 0 0.5 0 0 p/2-4edge.dat
+2 24 -12.728 6 -18.385 -13.539 6 -18.766
+2 24 -13.539 6 -18.766 -14.656 6 -18.656
+2 24 -14.656 6 -18.656 -15.911 6 -18.077
+2 24 -15.911 6 -18.077 -17.112 6 -17.112
+2 24 -18.077 6 -15.911 -17.112 6 -17.112
+2 24 -18.656 6 -14.656 -18.077 6 -15.911
+2 24 -18.852 6 -13.698 -18.656 6 -14.656
+2 24 -12.728 6 -18.385 -11.241 6 -16.5
+2 24 -11.241 6 -16.5 -12.081 6 -15.556
+2 24 -12.081 6 -15.556 -13.678 6 -13.394
+2 24 -13.678 6 -13.394 -15.021 6 -11
+2 24 -15.021 6 -11 -16.092 6 -8.419
+2 24 -16.092 6 -8.419 -16.6 6 -6.5
+2 24 -23 6 -4.5 -22.733 6 -5.823
+2 24 -22.733 6 -5.823 -21.788 6 -8.611
+2 24 -21.788 6 -8.611 -20.485 6 -11.25
+2 24 -20.485 6 -11.25 -18.852 6 -13.698
+2 24 -15.6 10 -4.5 -23 10 -4.5
+1 16 -15.6 10 -6.5 -1 0 0 0 1 0 0 0 1 p/1-4edge.dat
+1 16 -15.6 10 -5 0 0 0.5 0 1 0 0.5 0 0 p/2-4edge.dat
+2 24 -12.728 10 -18.385 -13.539 10 -18.766
+2 24 -13.539 10 -18.766 -14.656 10 -18.656
+2 24 -14.656 10 -18.656 -15.911 10 -18.077
+2 24 -15.911 10 -18.077 -17.112 10 -17.112
+2 24 -18.077 10 -15.911 -17.112 10 -17.112
+2 24 -18.656 10 -14.656 -18.077 10 -15.911
+2 24 -18.852 10 -13.698 -18.656 10 -14.656
+2 24 -12.728 10 -18.385 -11.241 10 -16.5
+2 24 -11.241 10 -16.5 -12.081 10 -15.556
+2 24 -12.081 10 -15.556 -13.678 10 -13.394
+2 24 -13.678 10 -13.394 -15.021 10 -11
+2 24 -15.021 10 -11 -16.092 10 -8.419
+2 24 -16.092 10 -8.419 -16.6 10 -6.5
+2 24 -23 10 -4.5 -22.733 10 -5.823
+2 24 -22.733 10 -5.823 -21.788 10 -8.611
+2 24 -21.788 10 -8.611 -20.485 10 -11.25
+2 24 -20.485 10 -11.25 -18.852 10 -13.698
+2 24 -15.6 10 4.5 -23 10 4.5
+1 16 -15.6 10 6.5 -1 0 0 0 -1 0 0 0 -1 p/1-4edge.dat
+1 16 -15.6 10 5 0 0 0.5 0 -1 0 -0.5 0 0 p/2-4edge.dat
+2 24 -12.728 10 18.385 -13.539 10 18.766
+2 24 -13.539 10 18.766 -14.656 10 18.656
+2 24 -14.656 10 18.656 -15.911 10 18.077
+2 24 -15.911 10 18.077 -17.112 10 17.112
+2 24 -18.077 10 15.911 -17.112 10 17.112
+2 24 -18.656 10 14.656 -18.077 10 15.911
+2 24 -18.852 10 13.698 -18.656 10 14.656
+2 24 -12.728 10 18.385 -11.241 10 16.5
+2 24 -11.241 10 16.5 -12.081 10 15.556
+2 24 -12.081 10 15.556 -13.678 10 13.394
+2 24 -13.678 10 13.394 -15.021 10 11
+2 24 -15.021 10 11 -16.092 10 8.419
+2 24 -16.092 10 8.419 -16.6 10 6.5
+2 24 -23 10 4.5 -22.733 10 5.823
+2 24 -22.733 10 5.823 -21.788 10 8.611
+2 24 -21.788 10 8.611 -20.485 10 11.25
+2 24 -20.485 10 11.25 -18.852 10 13.698
+2 24 -15.6 6 4.5 -23 6 4.5
+1 16 -15.6 6 6.5 -1 0 0 0 -1 0 0 0 -1 p/1-4edge.dat
+1 16 -15.6 6 5 0 0 0.5 0 -1 0 -0.5 0 0 p/2-4edge.dat
+2 24 -12.728 6 18.385 -13.539 6 18.766
+2 24 -13.539 6 18.766 -14.656 6 18.656
+2 24 -14.656 6 18.656 -15.911 6 18.077
+2 24 -15.911 6 18.077 -17.112 6 17.112
+2 24 -18.077 6 15.911 -17.112 6 17.112
+2 24 -18.656 6 14.656 -18.077 6 15.911
+2 24 -18.852 6 13.698 -18.656 6 14.656
+2 24 -12.728 6 18.385 -11.241 6 16.5
+2 24 -11.241 6 16.5 -12.081 6 15.556
+2 24 -12.081 6 15.556 -13.678 6 13.394
+2 24 -13.678 6 13.394 -15.021 6 11
+2 24 -15.021 6 11 -16.092 6 8.419
+2 24 -16.092 6 8.419 -16.6 6 6.5
+2 24 -23 6 4.5 -22.733 6 5.823
+2 24 -22.733 6 5.823 -21.788 6 8.611
+2 24 -21.788 6 8.611 -20.485 6 11.25
+2 24 -20.485 6 11.25 -18.852 6 13.698
+2 24 23 6 4.5 23 10 4.5
+2 24 23 6 -4.5 23 10 -4.5
+2 24 -23 6 -4.5 -23 10 -4.5
+2 24 -23 6 4.5 -23 10 4.5
+2 24 18.852 6 13.698 18.852 10 13.698
+2 24 18.852 6 -13.698 18.852 10 -13.698
+2 24 -18.852 6 -13.698 -18.852 10 -13.698
+2 24 -18.852 6 13.698 -18.852 10 13.698
+2 24 12.728 6 18.385 12.728 10 18.385
+2 24 12.728 6 -18.385 12.728 10 -18.385
+2 24 -12.728 6 -18.385 -12.728 10 -18.385
+2 24 -12.728 6 18.385 -12.728 10 18.385
+2 24 11.241 6 16.5 11.241 10 16.5
+2 24 11.241 6 -16.5 11.241 10 -16.5
+2 24 -11.241 6 -16.5 -11.241 10 -16.5
+2 24 -11.241 6 16.5 -11.241 10 16.5
+4 16 15.6 6 4.5 23 6 4.5 23 10 4.5 15.6 10 4.5
+4 16 15.6 10 -4.5 23 10 -4.5 23 6 -4.5 15.6 6 -4.5
+4 16 -15.6 6 -4.5 -23 6 -4.5 -23 10 -4.5 -15.6 10 -4.5
+4 16 -15.6 10 4.5 -23 10 4.5 -23 6 4.5 -15.6 6 4.5
+0 BFC INVERTNEXT
+1 16 15.6 6 -5 0 0 -0.5 0 4 0 0.5 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 15.6 6 5 0 0 -0.5 0 4 0 0.5 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -15.6 6 5 0 0 0.5 0 4 0 -0.5 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -15.6 6 -5 0 0 0.5 0 4 0 -0.5 0 0 p/2-4cyli.dat
+1 16 15.6 10 -5 0 0 -0.5 0 -1 0 0.5 0 0 p/2-4ndis.dat
+1 16 15.6 6 -5 0 0 -0.5 0 1 0 0.5 0 0 p/2-4ndis.dat
+1 16 15.6 10 5 0 0 -0.5 0 -1 0 0.5 0 0 p/2-4ndis.dat
+1 16 15.6 6 5 0 0 -0.5 0 1 0 0.5 0 0 p/2-4ndis.dat
+1 16 -15.6 10 5 0 0 0.5 0 -1 0 -0.5 0 0 p/2-4ndis.dat
+1 16 -15.6 6 5 0 0 0.5 0 1 0 -0.5 0 0 p/2-4ndis.dat
+1 16 -15.6 10 -5 0 0 0.5 0 -1 0 -0.5 0 0 p/2-4ndis.dat
+1 16 -15.6 6 -5 0 0 0.5 0 1 0 -0.5 0 0 p/2-4ndis.dat
+1 16 15.6 10 -6.5 1 0 0 0 -4 0 0 0 1 p/1-4cyli.dat
+1 16 15.6 6 6.5 1 0 0 0 4 0 0 0 -1 p/1-4cyli.dat
+1 16 -15.6 10 6.5 -1 0 0 0 -4 0 0 0 -1 p/1-4cyli.dat
+1 16 -15.6 6 -6.5 -1 0 0 0 4 0 0 0 1 p/1-4cyli.dat
+1 16 15.6 10 -6.5 1 0 0 0 -1 0 0 0 1 p/1-4disc.dat
+1 16 15.6 6 -6.5 1 0 0 0 1 0 0 0 1 p/1-4disc.dat
+1 16 15.6 10 6.5 0 0 1 0 -1 0 -1 0 0 p/1-4disc.dat
+1 16 15.6 6 6.5 0 0 1 0 1 0 -1 0 0 p/1-4disc.dat
+1 16 -15.6 10 6.5 -1 0 0 0 -1 0 0 0 -1 p/1-4disc.dat
+1 16 -15.6 6 6.5 -1 0 0 0 1 0 0 0 -1 p/1-4disc.dat
+1 16 -15.6 10 -6.5 0 0 -1 0 -1 0 1 0 0 p/1-4disc.dat
+1 16 -15.6 6 -6.5 0 0 -1 0 1 0 1 0 0 p/1-4disc.dat
+4 16 12.728 10 -18.385 11.241 10 -16.5 11.241 6 -16.5 12.728 6 -18.385
+4 16 12.728 6 18.385 11.241 6 16.5 11.241 10 16.5 12.728 10 18.385
+4 16 -12.728 10 18.385 -11.241 10 16.5 -11.241 6 16.5 -12.728 6 18.385
+4 16 -12.728 6 -18.385 -11.241 6 -16.5 -11.241 10 -16.5 -12.728 10 -18.385
+4 16 11.241 10 -16.5 12.081 10 -15.556 12.081 6 -15.556 11.241 6 -16.5
+4 16 11.241 6 16.5 12.081 6 15.556 12.081 10 15.556 11.241 10 16.5
+4 16 -11.241 10 16.5 -12.081 10 15.556 -12.081 6 15.556 -11.241 6 16.5
+4 16 -11.241 6 -16.5 -12.081 6 -15.556 -12.081 10 -15.556 -11.241 10 -16.5
+4 16 12.081 10 -15.556 13.678 10 -13.394 13.678 6 -13.394 12.081 6 -15.556
+4 16 12.081 6 15.556 13.678 6 13.394 13.678 10 13.394 12.081 10 15.556
+4 16 -12.081 10 15.556 -13.678 10 13.394 -13.678 6 13.394 -12.081 6 15.556
+4 16 -12.081 6 -15.556 -13.678 6 -13.394 -13.678 10 -13.394 -12.081 10 -15.556
+4 16 13.678 10 -13.394 15.021 10 -11 15.021 6 -11 13.678 6 -13.394
+4 16 13.678 6 13.394 15.021 6 11 15.021 10 11 13.678 10 13.394
+4 16 -13.678 10 13.394 -15.021 10 11 -15.021 6 11 -13.678 6 13.394
+4 16 -13.678 6 -13.394 -15.021 6 -11 -15.021 10 -11 -13.678 10 -13.394
+4 16 15.021 10 -11 16.092 10 -8.419 16.092 6 -8.419 15.021 6 -11
+4 16 15.021 6 11 16.092 6 8.419 16.092 10 8.419 15.021 10 11
+4 16 -15.021 10 11 -16.092 10 8.419 -16.092 6 8.419 -15.021 6 11
+4 16 -15.021 6 -11 -16.092 6 -8.419 -16.092 10 -8.419 -15.021 10 -11
+4 16 16.092 10 -8.419 16.6 10 -6.5 16.6 6 -6.5 16.092 6 -8.419
+4 16 16.092 6 8.419 16.6 6 6.5 16.6 10 6.5 16.092 10 8.419
+4 16 -16.092 10 8.419 -16.6 10 6.5 -16.6 6 6.5 -16.092 6 8.419
+4 16 -16.092 6 -8.419 -16.6 6 -6.5 -16.6 10 -6.5 -16.092 10 -8.419
+4 16 20.485 10 -11.25 18.852 10 -13.698 18.852 6 -13.698 20.485 6 -11.25
+4 16 20.485 6 11.25 18.852 6 13.698 18.852 10 13.698 20.485 10 11.25
+4 16 -20.485 10 11.25 -18.852 10 13.698 -18.852 6 13.698 -20.485 6 11.25
+4 16 -20.485 6 -11.25 -18.852 6 -13.698 -18.852 10 -13.698 -20.485 10 -11.25
+4 16 21.788 10 -8.611 20.485 10 -11.25 20.485 6 -11.25 21.788 6 -8.611
+4 16 21.788 6 8.611 20.485 6 11.25 20.485 10 11.25 21.788 10 8.611
+4 16 -21.788 10 8.611 -20.485 10 11.25 -20.485 6 11.25 -21.788 6 8.611
+4 16 -21.788 6 -8.611 -20.485 6 -11.25 -20.485 10 -11.25 -21.788 10 -8.611
+4 16 22.733 10 -5.823 21.788 10 -8.611 21.788 6 -8.611 22.733 6 -5.823
+4 16 22.733 6 5.823 21.788 6 8.611 21.788 10 8.611 22.733 10 5.823
+4 16 -22.733 10 5.823 -21.788 10 8.611 -21.788 6 8.611 -22.733 6 5.823
+4 16 -22.733 6 -5.823 -21.788 6 -8.611 -21.788 10 -8.611 -22.733 10 -5.823
+4 16 23 10 -4.5 22.733 10 -5.823 22.733 6 -5.823 23 6 -4.5
+4 16 23 6 4.5 22.733 6 5.823 22.733 10 5.823 23 10 4.5
+4 16 -23 10 4.5 -22.733 10 5.823 -22.733 6 5.823 -23 6 4.5
+4 16 -23 6 -4.5 -22.733 6 -5.823 -22.733 10 -5.823 -23 10 -4.5
+4 16 12.728 6 -18.385 13.539 6 -18.766 13.539 10 -18.766 12.728 10 -18.385
+4 16 12.728 10 18.385 13.539 10 18.766 13.539 6 18.766 12.728 6 18.385
+4 16 -12.728 6 18.385 -13.539 6 18.766 -13.539 10 18.766 -12.728 10 18.385
+4 16 -12.728 10 -18.385 -13.539 10 -18.766 -13.539 6 -18.766 -12.728 6 -18.385
+4 16 13.539 6 -18.766 14.656 6 -18.656 14.656 10 -18.656 13.539 10 -18.766
+4 16 13.539 10 18.766 14.656 10 18.656 14.656 6 18.656 13.539 6 18.766
+4 16 -13.539 6 18.766 -14.656 6 18.656 -14.656 10 18.656 -13.539 10 18.766
+4 16 -13.539 10 -18.766 -14.656 10 -18.656 -14.656 6 -18.656 -13.539 6 -18.766
+4 16 14.656 6 -18.656 15.911 6 -18.077 15.911 10 -18.077 14.656 10 -18.656
+4 16 14.656 10 18.656 15.911 10 18.077 15.911 6 18.077 14.656 6 18.656
+4 16 -14.656 6 18.656 -15.911 6 18.077 -15.911 10 18.077 -14.656 10 18.656
+4 16 -14.656 10 -18.656 -15.911 10 -18.077 -15.911 6 -18.077 -14.656 6 -18.656
+4 16 15.911 6 -18.077 17.112 6 -17.112 17.112 10 -17.112 15.911 10 -18.077
+4 16 15.911 10 18.077 17.112 10 17.112 17.112 6 17.112 15.911 6 18.077
+4 16 -15.911 6 18.077 -17.112 6 17.112 -17.112 10 17.112 -15.911 10 18.077
+4 16 -15.911 10 -18.077 -17.112 10 -17.112 -17.112 6 -17.112 -15.911 6 -18.077
+4 16 18.077 10 -15.911 17.112 10 -17.112 17.112 6 -17.112 18.077 6 -15.911
+4 16 18.077 6 15.911 17.112 6 17.112 17.112 10 17.112 18.077 10 15.911
+4 16 -18.077 10 15.911 -17.112 10 17.112 -17.112 6 17.112 -18.077 6 15.911
+4 16 -18.077 6 -15.911 -17.112 6 -17.112 -17.112 10 -17.112 -18.077 10 -15.911
+4 16 18.656 10 -14.656 18.077 10 -15.911 18.077 6 -15.911 18.656 6 -14.656
+4 16 18.656 6 14.656 18.077 6 15.911 18.077 10 15.911 18.656 10 14.656
+4 16 -18.656 10 14.656 -18.077 10 15.911 -18.077 6 15.911 -18.656 6 14.656
+4 16 -18.656 6 -14.656 -18.077 6 -15.911 -18.077 10 -15.911 -18.656 10 -14.656
+4 16 18.852 10 -13.698 18.656 10 -14.656 18.656 6 -14.656 18.852 6 -13.698
+4 16 18.852 6 13.698 18.656 6 14.656 18.656 10 14.656 18.852 10 13.698
+4 16 -18.852 10 13.698 -18.656 10 14.656 -18.656 6 14.656 -18.852 6 13.698
+4 16 -18.852 6 -13.698 -18.656 6 -14.656 -18.656 10 -14.656 -18.852 10 -13.698
+4 16 11 6 11 11 6 4.5 15.1 6 4.5 15.1 6 5.5
+4 16 15.1 6 -5.5 15.1 6 -4.5 11 6 -4.5 11 6 -11
+4 16 -11 6 -11 -11 6 -4.5 -15.1 6 -4.5 -15.1 6 -5.5
+4 16 -15.1 6 5.5 -15.1 6 4.5 -11 6 4.5 -11 6 11
+4 16 11 6 11 15.1 6 5.5 15.6 6 5.5 15.6 6 6.5
+4 16 15.6 6 -6.5 15.6 6 -5.5 15.1 6 -5.5 11 6 -11
+4 16 -11 6 -11 -15.1 6 -5.5 -15.6 6 -5.5 -15.6 6 -6.5
+4 16 -15.6 6 6.5 -15.6 6 5.5 -15.1 6 5.5 -11 6 11
+4 16 16.6 6 6.5 16.092 6 8.419 11 6 11 15.6 6 6.5
+4 16 16.092 6 -8.419 16.6 6 -6.5 15.6 6 -6.5 11 6 -11
+4 16 -16.6 6 -6.5 -16.092 6 -8.419 -11 6 -11 -15.6 6 -6.5
+4 16 -16.092 6 8.419 -16.6 6 6.5 -15.6 6 6.5 -11 6 11
+4 16 16.092 6 8.419 15.021 6 11 13.678 6 13.394 11 6 11
+4 16 15.021 6 -11 16.092 6 -8.419 11 6 -11 13.678 6 -13.394
+4 16 -16.092 6 -8.419 -15.021 6 -11 -13.678 6 -13.394 -11 6 -11
+4 16 -15.021 6 11 -16.092 6 8.419 -11 6 11 -13.678 6 13.394
+4 16 13.678 6 13.394 12.081 6 15.556 11.241 6 16.5 11 6 11
+4 16 12.081 6 -15.556 13.678 6 -13.394 11 6 -11 11.241 6 -16.5
+4 16 -13.678 6 -13.394 -12.081 6 -15.556 -11.241 6 -16.5 -11 6 -11
+4 16 -12.081 6 15.556 -13.678 6 13.394 -11 6 11 -11.241 6 16.5
+4 16 11 6 11 11.241 6 16.5 -11.241 6 16.5 -11 6 11
+4 16 -11 6 -11 -11.241 6 -16.5 11.241 6 -16.5 11 6 -11
+4 16 11.241 6 16.5 12.728 6 18.385 -12.728 6 18.385 -11.241 6 16.5
+4 16 -11.241 6 -16.5 -12.728 6 -18.385 12.728 6 -18.385 11.241 6 -16.5
+4 16 12.728 6 18.385 13.539 6 18.766 -13.539 6 18.766 -12.728 6 18.385
+4 16 -12.728 6 -18.385 -13.539 6 -18.766 13.539 6 -18.766 12.728 6 -18.385
+4 16 11 10 -11 11 10 -4.5 15.1 10 -4.5 15.1 10 -5.5
+4 16 15.1 10 5.5 15.1 10 4.5 11 10 4.5 11 10 11
+4 16 -11 10 11 -11 10 4.5 -15.1 10 4.5 -15.1 10 5.5
+4 16 -15.1 10 -5.5 -15.1 10 -4.5 -11 10 -4.5 -11 10 -11
+4 16 11 10 -11 15.1 10 -5.5 15.6 10 -5.5 15.6 10 -6.5
+4 16 15.6 10 6.5 15.6 10 5.5 15.1 10 5.5 11 10 11
+4 16 -11 10 11 -15.1 10 5.5 -15.6 10 5.5 -15.6 10 6.5
+4 16 -15.6 10 -6.5 -15.6 10 -5.5 -15.1 10 -5.5 -11 10 -11
+4 16 16.6 10 -6.5 16.092 10 -8.419 11 10 -11 15.6 10 -6.5
+4 16 16.092 10 8.419 16.6 10 6.5 15.6 10 6.5 11 10 11
+4 16 -16.6 10 6.5 -16.092 10 8.419 -11 10 11 -15.6 10 6.5
+4 16 -16.092 10 -8.419 -16.6 10 -6.5 -15.6 10 -6.5 -11 10 -11
+4 16 16.092 10 -8.419 15.021 10 -11 13.678 10 -13.394 11 10 -11
+4 16 15.021 10 11 16.092 10 8.419 11 10 11 13.678 10 13.394
+4 16 -16.092 10 8.419 -15.021 10 11 -13.678 10 13.394 -11 10 11
+4 16 -15.021 10 -11 -16.092 10 -8.419 -11 10 -11 -13.678 10 -13.394
+4 16 13.678 10 -13.394 12.081 10 -15.556 11.241 10 -16.5 11 10 -11
+4 16 12.081 10 15.556 13.678 10 13.394 11 10 11 11.241 10 16.5
+4 16 -13.678 10 13.394 -12.081 10 15.556 -11.241 10 16.5 -11 10 11
+4 16 -12.081 10 -15.556 -13.678 10 -13.394 -11 10 -11 -11.241 10 -16.5
+4 16 11 10 -11 11.241 10 -16.5 -11.241 10 -16.5 -11 10 -11
+4 16 -11 10 11 -11.241 10 16.5 11.241 10 16.5 11 10 11
+4 16 11.241 10 -16.5 12.728 10 -18.385 -12.728 10 -18.385 -11.241 10 -16.5
+4 16 -11.241 10 16.5 -12.728 10 18.385 12.728 10 18.385 11.241 10 16.5
+4 16 12.728 10 -18.385 13.539 10 -18.766 -13.539 10 -18.766 -12.728 10 -18.385
+4 16 -12.728 10 18.385 -13.539 10 18.766 13.539 10 18.766 12.728 10 18.385
+4 16 11 10 11 9 10 9 -9 10 9 -11 10 11
+4 16 -11 10 11 -9 10 9 -9 10 -9 -11 10 -11
+4 16 -11 10 -11 -9 10 -9 9 10 -9 11 10 -11
+4 16 11 10 -11 9 10 -9 9 10 9 11 10 11
+4 16 23 10 -4.5 11 10 -4.5 11 10 4.5 23 10 4.5
+4 16 -23 10 4.5 -11 10 4.5 -11 10 -4.5 -23 10 -4.5
+4 16 22 6 -4.5 23 6 -4.5 23 6 4.5 22 6 4.5
+4 16 -22 6 4.5 -23 6 4.5 -23 6 -4.5 -22 6 -4.5
+4 16 23 10 -4.5 23 10 4.5 25.776 10 3.393 25.776 10 -3.393
+4 16 23 6 4.5 23 6 -4.5 25.776 6 -3.393 25.776 6 3.393
+4 16 -23 10 4.5 -23 10 -4.5 -25.776 10 -3.393 -25.776 10 3.393
+4 16 -23 6 -4.5 -23 6 4.5 -25.776 6 3.393 -25.776 6 -3.393
+3 16 25.776 6 -3.393 26 6 0 25.776 6 3.393
+3 16 25.776 10 3.393 26 10 0 25.776 10 -3.393
+3 16 -25.776 6 3.393 -26 6 0 -25.776 6 -3.393
+3 16 -25.776 10 -3.393 -26 10 0 -25.776 10 3.393
+4 16 13.539 6 18.766 15.829 6 20.628 -15.829 6 20.628 -13.539 6 18.766
+4 16 -13.539 10 18.766 -15.829 10 20.628 15.829 10 20.628 13.539 10 18.766
+4 16 -13.539 6 -18.766 -15.829 6 -20.628 15.829 6 -20.628 13.539 6 -18.766
+4 16 13.539 10 -18.766 15.829 10 -20.628 -15.829 10 -20.628 -13.539 10 -18.766
+4 16 15.829 6 20.628 13 6 22.516 -13 6 22.516 -15.829 6 20.628
+4 16 -15.829 10 20.628 -13 10 22.516 13 10 22.516 15.829 10 20.628
+4 16 -15.829 6 -20.628 -13 6 -22.516 13 6 -22.516 15.829 6 -20.628
+4 16 15.829 10 -20.628 13 10 -22.516 -13 10 -22.516 -15.829 10 -20.628
+4 16 13 6 22.516 9.95 6 24.021 -9.95 6 24.021 -13 6 22.516
+4 16 -13 10 22.516 -9.95 10 24.021 9.95 10 24.021 13 10 22.516
+4 16 -13 6 -22.516 -9.95 6 -24.021 9.95 6 -24.021 13 6 -22.516
+4 16 13 10 -22.516 9.95 10 -24.021 -9.95 10 -24.021 -13 10 -22.516
+4 16 9.95 6 24.021 6.729 6 25.113 -6.729 6 25.113 -9.95 6 24.021
+4 16 -9.95 10 24.021 -6.729 10 25.113 6.729 10 25.113 9.95 10 24.021
+4 16 -9.95 6 -24.021 -6.729 6 -25.113 6.729 6 -25.113 9.95 6 -24.021
+4 16 9.95 10 -24.021 6.729 10 -25.113 -6.729 10 -25.113 -9.95 10 -24.021
+4 16 6.729 6 25.113 3.393 6 25.776 -3.393 6 25.776 -6.729 6 25.113
+4 16 -6.729 10 25.113 -3.393 10 25.776 3.393 10 25.776 6.729 10 25.113
+4 16 -6.729 6 -25.113 -3.393 6 -25.776 3.393 6 -25.776 6.729 6 -25.113
+4 16 6.729 10 -25.113 3.393 10 -25.776 -3.393 10 -25.776 -6.729 10 -25.113
+3 16 3.393 6 25.776 0 6 26 -3.393 6 25.776
+3 16 -3.393 10 25.776 0 10 26 3.393 10 25.776
+3 16 -3.393 6 -25.776 0 6 -26 3.393 6 -25.776
+3 16 3.393 10 -25.776 0 10 -26 -3.393 10 -25.776
+0
+
+0 FILE p/48/1-12cyli.dat
+0 Hi-Res Cylinder 0.0833
+0 Name: 48\1-12cyli.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 1 1 0 .9914 1 .1305 .9914 0 .1305 1 0 0
+4 16 .9914 1 .1305 .9659 1 .2588 .9659 0 .2588 .9914 0 .1305
+4 16 .9659 1 .2588 .9239 1 .3827 .9239 0 .3827 .9659 0 .2588
+4 16 .9239 1 .3827 .866 1 .5 .866 0 .5 .9239 0 .3827
+5 24 1 1 0 1 0 0 1 1 -.1316 .9914 1 .1305
+5 24 .9914 1 .1305 .9914 0 .1305 1 1 0 .9659 1 .2588
+5 24 .9659 1 .2588 .9659 0 .2588 .9914 1 .1305 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 .9659 1 .2588 .866 1 .5
+5 24 .866 1 .5 .866 0 .5 .9239 1 .3827 .8002 1 .6141
+0
+
+0 FILE p/48/4-4rin13.dat
+0 Hi-Res Ring 13 x 1.0
+0 Name: 48\4-4rin13.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 14 0 0 13.8796 0 1.827 12.8882 0 1.6965 13 0 0
+4 16 13.8796 0 1.827 13.5226 0 3.6232 12.5567 0 3.3644 12.8882 0 1.6965
+4 16 13.5226 0 3.6232 12.9346 0 5.3578 12.0107 0 4.9751 12.5567 0 3.3644
+4 16 12.9346 0 5.3578 12.124 0 7 11.258 0 6.5 12.0107 0 4.9751
+4 16 12.124 0 7 11.1076 0 8.5232 10.3142 0 7.9144 11.258 0 6.5
+4 16 11.1076 0 8.5232 9.8994 0 9.8994 9.1923 0 9.1923 10.3142 0 7.9144
+4 16 9.8994 0 9.8994 8.5232 0 11.1076 7.9144 0 10.3142 9.1923 0 9.1923
+4 16 8.5232 0 11.1076 7 0 12.124 6.5 0 11.258 7.9144 0 10.3142
+4 16 7 0 12.124 5.3578 0 12.9346 4.9751 0 12.0107 6.5 0 11.258
+4 16 5.3578 0 12.9346 3.6232 0 13.5226 3.3644 0 12.5567 4.9751 0 12.0107
+4 16 3.6232 0 13.5226 1.827 0 13.8796 1.6965 0 12.8882 3.3644 0 12.5567
+4 16 1.827 0 13.8796 0 0 14 0 0 13 1.6965 0 12.8882
+4 16 0 0 14 -1.827 0 13.8796 -1.6965 0 12.8882 0 0 13
+4 16 -1.827 0 13.8796 -3.6232 0 13.5226 -3.3644 0 12.5567 -1.6965 0 12.8882
+4 16 -3.6232 0 13.5226 -5.3578 0 12.9346 -4.9751 0 12.0107 -3.3644 0 12.5567
+4 16 -5.3578 0 12.9346 -7 0 12.124 -6.5 0 11.258 -4.9751 0 12.0107
+4 16 -7 0 12.124 -8.5232 0 11.1076 -7.9144 0 10.3142 -6.5 0 11.258
+4 16 -8.5232 0 11.1076 -9.8994 0 9.8994 -9.1923 0 9.1923 -7.9144 0 10.3142
+4 16 -9.8994 0 9.8994 -11.1076 0 8.5232 -10.3142 0 7.9144 -9.1923 0 9.1923
+4 16 -11.1076 0 8.5232 -12.124 0 7 -11.258 0 6.5 -10.3142 0 7.9144
+4 16 -12.124 0 7 -12.9346 0 5.3578 -12.0107 0 4.9751 -11.258 0 6.5
+4 16 -12.9346 0 5.3578 -13.5226 0 3.6232 -12.5567 0 3.3644 -12.0107 0 4.9751
+4 16 -13.5226 0 3.6232 -13.8796 0 1.827 -12.8882 0 1.6965 -12.5567 0 3.3644
+4 16 -13.8796 0 1.827 -14 0 0 -13 0 0 -12.8882 0 1.6965
+4 16 -14 0 0 -13.8796 0 -1.827 -12.8882 0 -1.6965 -13 0 0
+4 16 -13.8796 0 -1.827 -13.5226 0 -3.6232 -12.5567 0 -3.3644 -12.8882 0 -1.6965
+4 16 -13.5226 0 -3.6232 -12.9346 0 -5.3578 -12.0107 0 -4.9751 -12.5567 0 -3.3644
+4 16 -12.9346 0 -5.3578 -12.124 0 -7 -11.258 0 -6.5 -12.0107 0 -4.9751
+4 16 -12.124 0 -7 -11.1076 0 -8.5232 -10.3142 0 -7.9144 -11.258 0 -6.5
+4 16 -11.1076 0 -8.5232 -9.8994 0 -9.8994 -9.1923 0 -9.1923 -10.3142 0 -7.9144
+4 16 -9.8994 0 -9.8994 -8.5232 0 -11.1076 -7.9144 0 -10.3142 -9.1923 0 -9.1923
+4 16 -8.5232 0 -11.1076 -7 0 -12.124 -6.5 0 -11.258 -7.9144 0 -10.3142
+4 16 -7 0 -12.124 -5.3578 0 -12.9346 -4.9751 0 -12.0107 -6.5 0 -11.258
+4 16 -5.3578 0 -12.9346 -3.6232 0 -13.5226 -3.3644 0 -12.5567 -4.9751 0 -12.0107
+4 16 -3.6232 0 -13.5226 -1.827 0 -13.8796 -1.6965 0 -12.8882 -3.3644 0 -12.5567
+4 16 -1.827 0 -13.8796 0 0 -14 0 0 -13 -1.6965 0 -12.8882
+4 16 0 0 -14 1.827 0 -13.8796 1.6965 0 -12.8882 0 0 -13
+4 16 1.827 0 -13.8796 3.6232 0 -13.5226 3.3644 0 -12.5567 1.6965 0 -12.8882
+4 16 3.6232 0 -13.5226 5.3578 0 -12.9346 4.9751 0 -12.0107 3.3644 0 -12.5567
+4 16 5.3578 0 -12.9346 7 0 -12.124 6.5 0 -11.258 4.9751 0 -12.0107
+4 16 7 0 -12.124 8.5232 0 -11.1076 7.9144 0 -10.3142 6.5 0 -11.258
+4 16 8.5232 0 -11.1076 9.8994 0 -9.8994 9.1923 0 -9.1923 7.9144 0 -10.3142
+4 16 9.8994 0 -9.8994 11.1076 0 -8.5232 10.3142 0 -7.9144 9.1923 0 -9.1923
+4 16 11.1076 0 -8.5232 12.124 0 -7 11.258 0 -6.5 10.3142 0 -7.9144
+4 16 12.124 0 -7 12.9346 0 -5.3578 12.0107 0 -4.9751 11.258 0 -6.5
+4 16 12.9346 0 -5.3578 13.5226 0 -3.6232 12.5567 0 -3.3644 12.0107 0 -4.9751
+4 16 13.5226 0 -3.6232 13.8796 0 -1.827 12.8882 0 -1.6965 12.5567 0 -3.3644
+4 16 13.8796 0 -1.827 14 0 0 13 0 0 12.8882 0 -1.6965
+
+0 FILE p/48/4-4rin14.dat
+0 Hi-Res Ring 14 x 1.0
+0 Name: 48\4-4rin14.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 14 0 0 15 0 0 14.871 0 1.9575 13.8796 0 1.827
+4 16 13.8796 0 1.827 14.871 0 1.9575 14.4885 0 3.882 13.5226 0 3.6232
+4 16 13.5226 0 3.6232 14.4885 0 3.882 13.8585 0 5.7405 12.9346 0 5.3578
+4 16 12.9346 0 5.3578 13.8585 0 5.7405 12.99 0 7.5 12.124 0 7
+4 16 12.124 0 7 12.99 0 7.5 11.901 0 9.132 11.1076 0 8.5232
+4 16 11.1076 0 8.5232 11.901 0 9.132 10.6065 0 10.6065 9.8994 0 9.8994
+4 16 9.8994 0 9.8994 10.6065 0 10.6065 9.132 0 11.901 8.5232 0 11.1076
+4 16 8.5232 0 11.1076 9.132 0 11.901 7.5 0 12.99 7 0 12.124
+4 16 7 0 12.124 7.5 0 12.99 5.7405 0 13.8585 5.3578 0 12.9346
+4 16 5.3578 0 12.9346 5.7405 0 13.8585 3.882 0 14.4885 3.6232 0 13.5226
+4 16 3.6232 0 13.5226 3.882 0 14.4885 1.9575 0 14.871 1.827 0 13.8796
+4 16 1.827 0 13.8796 1.9575 0 14.871 0 0 15 0 0 14
+4 16 0 0 14 0 0 15 -1.9575 0 14.871 -1.827 0 13.8796
+4 16 -1.827 0 13.8796 -1.9575 0 14.871 -3.882 0 14.4885 -3.6232 0 13.5226
+4 16 -3.6232 0 13.5226 -3.882 0 14.4885 -5.7405 0 13.8585 -5.3578 0 12.9346
+4 16 -5.3578 0 12.9346 -5.7405 0 13.8585 -7.5 0 12.99 -7 0 12.124
+4 16 -7 0 12.124 -7.5 0 12.99 -9.132 0 11.901 -8.5232 0 11.1076
+4 16 -8.5232 0 11.1076 -9.132 0 11.901 -10.6065 0 10.6065 -9.8994 0 9.8994
+4 16 -9.8994 0 9.8994 -10.6065 0 10.6065 -11.901 0 9.132 -11.1076 0 8.5232
+4 16 -11.1076 0 8.5232 -11.901 0 9.132 -12.99 0 7.5 -12.124 0 7
+4 16 -12.124 0 7 -12.99 0 7.5 -13.8585 0 5.7405 -12.9346 0 5.3578
+4 16 -12.9346 0 5.3578 -13.8585 0 5.7405 -14.4885 0 3.882 -13.5226 0 3.6232
+4 16 -13.5226 0 3.6232 -14.4885 0 3.882 -14.871 0 1.9575 -13.8796 0 1.827
+4 16 -13.8796 0 1.827 -14.871 0 1.9575 -15 0 0 -14 0 0
+4 16 -14 0 0 -15 0 0 -14.871 0 -1.9575 -13.8796 0 -1.827
+4 16 -13.8796 0 -1.827 -14.871 0 -1.9575 -14.4885 0 -3.882 -13.5226 0 -3.6232
+4 16 -13.5226 0 -3.6232 -14.4885 0 -3.882 -13.8585 0 -5.7405 -12.9346 0 -5.3578
+4 16 -12.9346 0 -5.3578 -13.8585 0 -5.7405 -12.99 0 -7.5 -12.124 0 -7
+4 16 -12.124 0 -7 -12.99 0 -7.5 -11.901 0 -9.132 -11.1076 0 -8.5232
+4 16 -11.1076 0 -8.5232 -11.901 0 -9.132 -10.6065 0 -10.6065 -9.8994 0 -9.8994
+4 16 -9.8994 0 -9.8994 -10.6065 0 -10.6065 -9.132 0 -11.901 -8.5232 0 -11.1076
+4 16 -8.5232 0 -11.1076 -9.132 0 -11.901 -7.5 0 -12.99 -7 0 -12.124
+4 16 -7 0 -12.124 -7.5 0 -12.99 -5.7405 0 -13.8585 -5.3578 0 -12.9346
+4 16 -5.3578 0 -12.9346 -5.7405 0 -13.8585 -3.882 0 -14.4885 -3.6232 0 -13.5226
+4 16 -3.6232 0 -13.5226 -3.882 0 -14.4885 -1.9575 0 -14.871 -1.827 0 -13.8796
+4 16 -1.827 0 -13.8796 -1.9575 0 -14.871 0 0 -15 0 0 -14
+4 16 0 0 -14 0 0 -15 1.9575 0 -14.871 1.827 0 -13.8796
+4 16 1.827 0 -13.8796 1.9575 0 -14.871 3.882 0 -14.4885 3.6232 0 -13.5226
+4 16 3.6232 0 -13.5226 3.882 0 -14.4885 5.7405 0 -13.8585 5.3578 0 -12.9346
+4 16 5.3578 0 -12.9346 5.7405 0 -13.8585 7.5 0 -12.99 7 0 -12.124
+4 16 7 0 -12.124 7.5 0 -12.99 9.132 0 -11.901 8.5232 0 -11.1076
+4 16 8.5232 0 -11.1076 9.132 0 -11.901 10.6065 0 -10.6065 9.8994 0 -9.8994
+4 16 9.8994 0 -9.8994 10.6065 0 -10.6065 11.901 0 -9.132 11.1076 0 -8.5232
+4 16 11.1076 0 -8.5232 11.901 0 -9.132 12.99 0 -7.5 12.124 0 -7
+4 16 12.124 0 -7 12.99 0 -7.5 13.8585 0 -5.7405 12.9346 0 -5.3578
+4 16 12.9346 0 -5.3578 13.8585 0 -5.7405 14.4885 0 -3.882 13.5226 0 -3.6232
+4 16 13.5226 0 -3.6232 14.4885 0 -3.882 14.871 0 -1.9575 13.8796 0 -1.827
+4 16 13.8796 0 -1.827 14.871 0 -1.9575 15 0 0 14 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4ndis.dat
+0 Hi-Res Disc Negative 1.0
+0 Name: 48\4-4ndis.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+3 16 0.9914 0 0.1305 1 0 0 1 0 1
+3 16 0.9659 0 0.2588 0.9914 0 0.1305 1 0 1
+3 16 0.9239 0 0.3827 0.9659 0 0.2588 1 0 1
+3 16 0.866 0 0.5 0.9239 0 0.3827 1 0 1
+3 16 0.7934 0 0.6088 0.866 0 0.5 1 0 1
+3 16 0.7071 0 0.7071 0.7934 0 0.6088 1 0 1
+3 16 0.6088 0 0.7934 0.7071 0 0.7071 1 0 1
+3 16 0.5 0 0.866 0.6088 0 0.7934 1 0 1
+3 16 0.3827 0 0.9239 0.5 0 0.866 1 0 1
+3 16 0.2588 0 0.9659 0.3827 0 0.9239 1 0 1
+3 16 0.1305 0 0.9914 0.2588 0 0.9659 1 0 1
+3 16 0 0 1 0.1305 0 0.9914 1 0 1
+3 16 -0.1305 0 0.9914 0 0 1 -1 0 1
+3 16 -0.2588 0 0.9659 -0.1305 0 0.9914 -1 0 1
+3 16 -0.3827 0 0.9239 -0.2588 0 0.9659 -1 0 1
+3 16 -0.5 0 0.866 -0.3827 0 0.9239 -1 0 1
+3 16 -0.6088 0 0.7934 -0.5 0 0.866 -1 0 1
+3 16 -0.7071 0 0.7071 -0.6088 0 0.7934 -1 0 1
+3 16 -0.7934 0 0.6088 -0.7071 0 0.7071 -1 0 1
+3 16 -0.866 0 0.5 -0.7934 0 0.6088 -1 0 1
+3 16 -0.9239 0 0.3827 -0.866 0 0.5 -1 0 1
+3 16 -0.9659 0 0.2588 -0.9239 0 0.3827 -1 0 1
+3 16 -0.9914 0 0.1305 -0.9659 0 0.2588 -1 0 1
+3 16 -1 0 0 -0.9914 0 0.1305 -1 0 1
+3 16 -0.9914 0 -0.1305 -1 0 0 -1 0 -1
+3 16 -0.9659 0 -0.2588 -0.9914 0 -0.1305 -1 0 -1
+3 16 -0.9239 0 -0.3827 -0.9659 0 -0.2588 -1 0 -1
+3 16 -0.866 0 -0.5 -0.9239 0 -0.3827 -1 0 -1
+3 16 -0.7934 0 -0.6088 -0.866 0 -0.5 -1 0 -1
+3 16 -0.7071 0 -0.7071 -0.7934 0 -0.6088 -1 0 -1
+3 16 -0.6088 0 -0.7934 -0.7071 0 -0.7071 -1 0 -1
+3 16 -0.5 0 -0.866 -0.6088 0 -0.7934 -1 0 -1
+3 16 -0.3827 0 -0.9239 -0.5 0 -0.866 -1 0 -1
+3 16 -0.2588 0 -0.9659 -0.3827 0 -0.9239 -1 0 -1
+3 16 -0.1305 0 -0.9914 -0.2588 0 -0.9659 -1 0 -1
+3 16 0 0 -1 -0.1305 0 -0.9914 -1 0 -1
+3 16 0.1305 0 -0.9914 0 0 -1 1 0 -1
+3 16 0.2588 0 -0.9659 0.1305 0 -0.9914 1 0 -1
+3 16 0.3827 0 -0.9239 0.2588 0 -0.9659 1 0 -1
+3 16 0.5 0 -0.866 0.3827 0 -0.9239 1 0 -1
+3 16 0.6088 0 -0.7934 0.5 0 -0.866 1 0 -1
+3 16 0.7071 0 -0.7071 0.6088 0 -0.7934 1 0 -1
+3 16 0.7934 0 -0.6088 0.7071 0 -0.7071 1 0 -1
+3 16 0.866 0 -0.5 0.7934 0 -0.6088 1 0 -1
+3 16 0.9239 0 -0.3827 0.866 0 -0.5 1 0 -1
+3 16 0.9659 0 -0.2588 0.9239 0 -0.3827 1 0 -1
+3 16 0.9914 0 -0.1305 0.9659 0 -0.2588 1 0 -1
+3 16 1 0 0 0.9914 0 -0.1305 1 0 -1
+
+0 FILE p/48/4-4ring8.dat
+0 Hi-Res Ring  8 x 1.0
+0 Name: 48\4-4ring8.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 8 0 0 9 0 0 8.9226 0 1.1745 7.9312 0 1.044
+4 16 7.9312 0 1.044 8.9226 0 1.1745 8.6931 0 2.3292 7.7272 0 2.0704
+4 16 7.7272 0 2.0704 8.6931 0 2.3292 8.3151 0 3.4443 7.3912 0 3.0616
+4 16 7.3912 0 3.0616 8.3151 0 3.4443 7.794 0 4.5 6.928 0 4
+4 16 6.928 0 4 7.794 0 4.5 7.1406 0 5.4792 6.3472 0 4.8704
+4 16 6.3472 0 4.8704 7.1406 0 5.4792 6.3639 0 6.3639 5.6568 0 5.6568
+4 16 5.6568 0 5.6568 6.3639 0 6.3639 5.4792 0 7.1406 4.8704 0 6.3472
+4 16 4.8704 0 6.3472 5.4792 0 7.1406 4.5 0 7.794 4 0 6.928
+4 16 4 0 6.928 4.5 0 7.794 3.4443 0 8.3151 3.0616 0 7.3912
+4 16 3.0616 0 7.3912 3.4443 0 8.3151 2.3292 0 8.6931 2.0704 0 7.7272
+4 16 2.0704 0 7.7272 2.3292 0 8.6931 1.1745 0 8.9226 1.044 0 7.9312
+4 16 1.044 0 7.9312 1.1745 0 8.9226 0 0 9 0 0 8
+4 16 0 0 8 0 0 9 -1.1745 0 8.9226 -1.044 0 7.9312
+4 16 -1.044 0 7.9312 -1.1745 0 8.9226 -2.3292 0 8.6931 -2.0704 0 7.7272
+4 16 -2.0704 0 7.7272 -2.3292 0 8.6931 -3.4443 0 8.3151 -3.0616 0 7.3912
+4 16 -3.0616 0 7.3912 -3.4443 0 8.3151 -4.5 0 7.794 -4 0 6.928
+4 16 -4 0 6.928 -4.5 0 7.794 -5.4792 0 7.1406 -4.8704 0 6.3472
+4 16 -4.8704 0 6.3472 -5.4792 0 7.1406 -6.3639 0 6.3639 -5.6568 0 5.6568
+4 16 -5.6568 0 5.6568 -6.3639 0 6.3639 -7.1406 0 5.4792 -6.3472 0 4.8704
+4 16 -6.3472 0 4.8704 -7.1406 0 5.4792 -7.794 0 4.5 -6.928 0 4
+4 16 -6.928 0 4 -7.794 0 4.5 -8.3151 0 3.4443 -7.3912 0 3.0616
+4 16 -7.3912 0 3.0616 -8.3151 0 3.4443 -8.6931 0 2.3292 -7.7272 0 2.0704
+4 16 -7.7272 0 2.0704 -8.6931 0 2.3292 -8.9226 0 1.1745 -7.9312 0 1.044
+4 16 -7.9312 0 1.044 -8.9226 0 1.1745 -9 0 0 -8 0 0
+4 16 -8 0 0 -9 0 0 -8.9226 0 -1.1745 -7.9312 0 -1.044
+4 16 -7.9312 0 -1.044 -8.9226 0 -1.1745 -8.6931 0 -2.3292 -7.7272 0 -2.0704
+4 16 -7.7272 0 -2.0704 -8.6931 0 -2.3292 -8.3151 0 -3.4443 -7.3912 0 -3.0616
+4 16 -7.3912 0 -3.0616 -8.3151 0 -3.4443 -7.794 0 -4.5 -6.928 0 -4
+4 16 -6.928 0 -4 -7.794 0 -4.5 -7.1406 0 -5.4792 -6.3472 0 -4.8704
+4 16 -6.3472 0 -4.8704 -7.1406 0 -5.4792 -6.3639 0 -6.3639 -5.6568 0 -5.6568
+4 16 -5.6568 0 -5.6568 -6.3639 0 -6.3639 -5.4792 0 -7.1406 -4.8704 0 -6.3472
+4 16 -4.8704 0 -6.3472 -5.4792 0 -7.1406 -4.5 0 -7.794 -4 0 -6.928
+4 16 -4 0 -6.928 -4.5 0 -7.794 -3.4443 0 -8.3151 -3.0616 0 -7.3912
+4 16 -3.0616 0 -7.3912 -3.4443 0 -8.3151 -2.3292 0 -8.6931 -2.0704 0 -7.7272
+4 16 -2.0704 0 -7.7272 -2.3292 0 -8.6931 -1.1745 0 -8.9226 -1.044 0 -7.9312
+4 16 -1.044 0 -7.9312 -1.1745 0 -8.9226 0 0 -9 0 0 -8
+4 16 0 0 -8 0 0 -9 1.1745 0 -8.9226 1.044 0 -7.9312
+4 16 1.044 0 -7.9312 1.1745 0 -8.9226 2.3292 0 -8.6931 2.0704 0 -7.7272
+4 16 2.0704 0 -7.7272 2.3292 0 -8.6931 3.4443 0 -8.3151 3.0616 0 -7.3912
+4 16 3.0616 0 -7.3912 3.4443 0 -8.3151 4.5 0 -7.794 4 0 -6.928
+4 16 4 0 -6.928 4.5 0 -7.794 5.4792 0 -7.1406 4.8704 0 -6.3472
+4 16 4.8704 0 -6.3472 5.4792 0 -7.1406 6.3639 0 -6.3639 5.6568 0 -5.6568
+4 16 5.6568 0 -5.6568 6.3639 0 -6.3639 7.1406 0 -5.4792 6.3472 0 -4.8704
+4 16 6.3472 0 -4.8704 7.1406 0 -5.4792 7.794 0 -4.5 6.928 0 -4
+4 16 6.928 0 -4 7.794 0 -4.5 8.3151 0 -3.4443 7.3912 0 -3.0616
+4 16 7.3912 0 -3.0616 8.3151 0 -3.4443 8.6931 0 -2.3292 7.7272 0 -2.0704
+4 16 7.7272 0 -2.0704 8.6931 0 -2.3292 8.9226 0 -1.1745 7.9312 0 -1.044
+4 16 7.9312 0 -1.044 8.9226 0 -1.1745 9 0 0 8 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4rin10.dat
+0 Hi-Res Ring 10 x 1.0
+0 Name: 48\4-4rin10.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 10 0 0 11 0 0 10.9054 0 1.4355 9.914 0 1.305
+4 16 9.914 0 1.305 10.9054 0 1.4355 10.6249 0 2.8468 9.659 0 2.588
+4 16 9.659 0 2.588 10.6249 0 2.8468 10.1629 0 4.2097 9.239 0 3.827
+4 16 9.239 0 3.827 10.1629 0 4.2097 9.526 0 5.5 8.66 0 5
+4 16 8.66 0 5 9.526 0 5.5 8.7274 0 6.6968 7.934 0 6.088
+4 16 7.934 0 6.088 8.7274 0 6.6968 7.7781 0 7.7781 7.071 0 7.071
+4 16 7.071 0 7.071 7.7781 0 7.7781 6.6968 0 8.7274 6.088 0 7.934
+4 16 6.088 0 7.934 6.6968 0 8.7274 5.5 0 9.526 5 0 8.66
+4 16 5 0 8.66 5.5 0 9.526 4.2097 0 10.1629 3.827 0 9.239
+4 16 3.827 0 9.239 4.2097 0 10.1629 2.8468 0 10.6249 2.588 0 9.659
+4 16 2.588 0 9.659 2.8468 0 10.6249 1.4355 0 10.9054 1.305 0 9.914
+4 16 1.305 0 9.914 1.4355 0 10.9054 0 0 11 0 0 10
+4 16 0 0 10 0 0 11 -1.4355 0 10.9054 -1.305 0 9.914
+4 16 -1.305 0 9.914 -1.4355 0 10.9054 -2.8468 0 10.6249 -2.588 0 9.659
+4 16 -2.588 0 9.659 -2.8468 0 10.6249 -4.2097 0 10.1629 -3.827 0 9.239
+4 16 -3.827 0 9.239 -4.2097 0 10.1629 -5.5 0 9.526 -5 0 8.66
+4 16 -5 0 8.66 -5.5 0 9.526 -6.6968 0 8.7274 -6.088 0 7.934
+4 16 -6.088 0 7.934 -6.6968 0 8.7274 -7.7781 0 7.7781 -7.071 0 7.071
+4 16 -7.071 0 7.071 -7.7781 0 7.7781 -8.7274 0 6.6968 -7.934 0 6.088
+4 16 -7.934 0 6.088 -8.7274 0 6.6968 -9.526 0 5.5 -8.66 0 5
+4 16 -8.66 0 5 -9.526 0 5.5 -10.1629 0 4.2097 -9.239 0 3.827
+4 16 -9.239 0 3.827 -10.1629 0 4.2097 -10.6249 0 2.8468 -9.659 0 2.588
+4 16 -9.659 0 2.588 -10.6249 0 2.8468 -10.9054 0 1.4355 -9.914 0 1.305
+4 16 -9.914 0 1.305 -10.9054 0 1.4355 -11 0 0 -10 0 0
+4 16 -10 0 0 -11 0 0 -10.9054 0 -1.4355 -9.914 0 -1.305
+4 16 -9.914 0 -1.305 -10.9054 0 -1.4355 -10.6249 0 -2.8468 -9.659 0 -2.588
+4 16 -9.659 0 -2.588 -10.6249 0 -2.8468 -10.1629 0 -4.2097 -9.239 0 -3.827
+4 16 -9.239 0 -3.827 -10.1629 0 -4.2097 -9.526 0 -5.5 -8.66 0 -5
+4 16 -8.66 0 -5 -9.526 0 -5.5 -8.7274 0 -6.6968 -7.934 0 -6.088
+4 16 -7.934 0 -6.088 -8.7274 0 -6.6968 -7.7781 0 -7.7781 -7.071 0 -7.071
+4 16 -7.071 0 -7.071 -7.7781 0 -7.7781 -6.6968 0 -8.7274 -6.088 0 -7.934
+4 16 -6.088 0 -7.934 -6.6968 0 -8.7274 -5.5 0 -9.526 -5 0 -8.66
+4 16 -5 0 -8.66 -5.5 0 -9.526 -4.2097 0 -10.1629 -3.827 0 -9.239
+4 16 -3.827 0 -9.239 -4.2097 0 -10.1629 -2.8468 0 -10.6249 -2.588 0 -9.659
+4 16 -2.588 0 -9.659 -2.8468 0 -10.6249 -1.4355 0 -10.9054 -1.305 0 -9.914
+4 16 -1.305 0 -9.914 -1.4355 0 -10.9054 0 0 -11 0 0 -10
+4 16 0 0 -10 0 0 -11 1.4355 0 -10.9054 1.305 0 -9.914
+4 16 1.305 0 -9.914 1.4355 0 -10.9054 2.8468 0 -10.6249 2.588 0 -9.659
+4 16 2.588 0 -9.659 2.8468 0 -10.6249 4.2097 0 -10.1629 3.827 0 -9.239
+4 16 3.827 0 -9.239 4.2097 0 -10.1629 5.5 0 -9.526 5 0 -8.66
+4 16 5 0 -8.66 5.5 0 -9.526 6.6968 0 -8.7274 6.088 0 -7.934
+4 16 6.088 0 -7.934 6.6968 0 -8.7274 7.7781 0 -7.7781 7.071 0 -7.071
+4 16 7.071 0 -7.071 7.7781 0 -7.7781 8.7274 0 -6.6968 7.934 0 -6.088
+4 16 7.934 0 -6.088 8.7274 0 -6.6968 9.526 0 -5.5 8.66 0 -5
+4 16 8.66 0 -5 9.526 0 -5.5 10.1629 0 -4.2097 9.239 0 -3.827
+4 16 9.239 0 -3.827 10.1629 0 -4.2097 10.6249 0 -2.8468 9.659 0 -2.588
+4 16 9.659 0 -2.588 10.6249 0 -2.8468 10.9054 0 -1.4355 9.914 0 -1.305
+4 16 9.914 0 -1.305 10.9054 0 -1.4355 11 0 0 10 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4ring9.dat
+0 Hi-Res Ring  9 x 1.0
+0 Name: 48\4-4ring9.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/1-4ring9.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 p/48/1-4ring9.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/48/1-4ring9.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/48/1-4ring9.dat
+
+0 FILE p/48/4-4con8.dat
+0 Hi-Res Cone  8 x 1.0
+0 Name: 48\4-4con8.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+4 16 8 1 0 7.9312 1 1.044 8.9226 0 1.1745 9 0 0
+4 16 7.9312 1 1.044 7.7272 1 2.0704 8.6931 0 2.3292 8.9226 0 1.1745
+4 16 7.7272 1 2.0704 7.3912 1 3.0616 8.3151 0 3.4443 8.6931 0 2.3292
+4 16 7.3912 1 3.0616 6.928 1 4 7.794 0 4.5 8.3151 0 3.4443
+4 16 6.928 1 4 6.3472 1 4.8704 7.1406 0 5.4792 7.794 0 4.5
+4 16 6.3472 1 4.8704 5.6568 1 5.6568 6.3639 0 6.3639 7.1406 0 5.4792
+4 16 5.6568 1 5.6568 4.8704 1 6.3472 5.4792 0 7.1406 6.3639 0 6.3639
+4 16 4.8704 1 6.3472 4 1 6.928 4.5 0 7.794 5.4792 0 7.1406
+4 16 4 1 6.928 3.0616 1 7.3912 3.4443 0 8.3151 4.5 0 7.794
+4 16 3.0616 1 7.3912 2.0704 1 7.7272 2.3292 0 8.6931 3.4443 0 8.3151
+4 16 2.0704 1 7.7272 1.044 1 7.9312 1.1745 0 8.9226 2.3292 0 8.6931
+4 16 1.044 1 7.9312 0 1 8 0 0 9 1.1745 0 8.9226
+4 16 0 1 8 -1.044 1 7.9312 -1.1745 0 8.9226 0 0 9
+4 16 -1.044 1 7.9312 -2.0704 1 7.7272 -2.3292 0 8.6931 -1.1745 0 8.9226
+4 16 -2.0704 1 7.7272 -3.0616 1 7.3912 -3.4443 0 8.3151 -2.3292 0 8.6931
+4 16 -3.0616 1 7.3912 -4 1 6.928 -4.5 0 7.794 -3.4443 0 8.3151
+4 16 -4 1 6.928 -4.8704 1 6.3472 -5.4792 0 7.1406 -4.5 0 7.794
+4 16 -4.8704 1 6.3472 -5.6568 1 5.6568 -6.3639 0 6.3639 -5.4792 0 7.1406
+4 16 -5.6568 1 5.6568 -6.3472 1 4.8704 -7.1406 0 5.4792 -6.3639 0 6.3639
+4 16 -6.3472 1 4.8704 -6.928 1 4 -7.794 0 4.5 -7.1406 0 5.4792
+4 16 -6.928 1 4 -7.3912 1 3.0616 -8.3151 0 3.4443 -7.794 0 4.5
+4 16 -7.3912 1 3.0616 -7.7272 1 2.0704 -8.6931 0 2.3292 -8.3151 0 3.4443
+4 16 -7.7272 1 2.0704 -7.9312 1 1.044 -8.9226 0 1.1745 -8.6931 0 2.3292
+4 16 -7.9312 1 1.044 -8 1 0 -9 0 0 -8.9226 0 1.1745
+4 16 -8 1 0 -7.9312 1 -1.044 -8.9226 0 -1.1745 -9 0 0
+4 16 -7.9312 1 -1.044 -7.7272 1 -2.0704 -8.6931 0 -2.3292 -8.9226 0 -1.1745
+4 16 -7.7272 1 -2.0704 -7.3912 1 -3.0616 -8.3151 0 -3.4443 -8.6931 0 -2.3292
+4 16 -7.3912 1 -3.0616 -6.928 1 -4 -7.794 0 -4.5 -8.3151 0 -3.4443
+4 16 -6.928 1 -4 -6.3472 1 -4.8704 -7.1406 0 -5.4792 -7.794 0 -4.5
+4 16 -6.3472 1 -4.8704 -5.6568 1 -5.6568 -6.3639 0 -6.3639 -7.1406 0 -5.4792
+4 16 -5.6568 1 -5.6568 -4.8704 1 -6.3472 -5.4792 0 -7.1406 -6.3639 0 -6.3639
+4 16 -4.8704 1 -6.3472 -4 1 -6.928 -4.5 0 -7.794 -5.4792 0 -7.1406
+4 16 -4 1 -6.928 -3.0616 1 -7.3912 -3.4443 0 -8.3151 -4.5 0 -7.794
+4 16 -3.0616 1 -7.3912 -2.0704 1 -7.7272 -2.3292 0 -8.6931 -3.4443 0 -8.3151
+4 16 -2.0704 1 -7.7272 -1.044 1 -7.9312 -1.1745 0 -8.9226 -2.3292 0 -8.6931
+4 16 -1.044 1 -7.9312 0 1 -8 0 0 -9 -1.1745 0 -8.9226
+4 16 0 1 -8 1.044 1 -7.9312 1.1745 0 -8.9226 0 0 -9
+4 16 1.044 1 -7.9312 2.0704 1 -7.7272 2.3292 0 -8.6931 1.1745 0 -8.9226
+4 16 2.0704 1 -7.7272 3.0616 1 -7.3912 3.4443 0 -8.3151 2.3292 0 -8.6931
+4 16 3.0616 1 -7.3912 4 1 -6.928 4.5 0 -7.794 3.4443 0 -8.3151
+4 16 4 1 -6.928 4.8704 1 -6.3472 5.4792 0 -7.1406 4.5 0 -7.794
+4 16 4.8704 1 -6.3472 5.6568 1 -5.6568 6.3639 0 -6.3639 5.4792 0 -7.1406
+4 16 5.6568 1 -5.6568 6.3472 1 -4.8704 7.1406 0 -5.4792 6.3639 0 -6.3639
+4 16 6.3472 1 -4.8704 6.928 1 -4 7.794 0 -4.5 7.1406 0 -5.4792
+4 16 6.928 1 -4 7.3912 1 -3.0616 8.3151 0 -3.4443 7.794 0 -4.5
+4 16 7.3912 1 -3.0616 7.7272 1 -2.0704 8.6931 0 -2.3292 8.3151 0 -3.4443
+4 16 7.7272 1 -2.0704 7.9312 1 -1.044 8.9226 0 -1.1745 8.6931 0 -2.3292
+4 16 7.9312 1 -1.044 8 1 0 9 0 0 8.9226 0 -1.1745
+
+0 conditional lines
+5 24 8 1 0 9 0 0 7.9312 1 -1.044 7.9312 1 1.044
+5 24 7.9312 1 1.044 8.9226 0 1.1745 8 1 0 7.7272 1 2.0704
+5 24 7.7272 1 2.0704 8.6931 0 2.3292 7.9312 1 1.044 7.3912 1 3.0616
+5 24 7.3912 1 3.0616 8.3151 0 3.4443 7.7272 1 2.0704 6.928 1 4
+5 24 6.928 1 4 7.794 0 4.5 7.3912 1 3.0616 6.3472 1 4.8704
+5 24 6.3472 1 4.8704 7.1406 0 5.4792 6.928 1 4 5.6568 1 5.6568
+5 24 5.6568 1 5.6568 6.3639 0 6.3639 6.3472 1 4.8704 4.8704 1 6.3472
+5 24 4.8704 1 6.3472 5.4792 0 7.1406 5.6568 1 5.6568 4 1 6.928
+5 24 4 1 6.928 4.5 0 7.794 4.8704 1 6.3472 3.0616 1 7.3912
+5 24 3.0616 1 7.3912 3.4443 0 8.3151 4 1 6.928 2.0704 1 7.7272
+5 24 2.0704 1 7.7272 2.3292 0 8.6931 3.0616 1 7.3912 1.044 1 7.9312
+5 24 1.044 1 7.9312 1.1745 0 8.9226 2.0704 1 7.7272 0 1 8
+5 24 0 1 8 0 0 9 1.044 1 7.9312 -1.044 1 7.9312
+5 24 -1.044 1 7.9312 -1.1745 0 8.9226 0 1 8 -2.0704 1 7.7272
+5 24 -2.0704 1 7.7272 -2.3292 0 8.6931 -1.044 1 7.9312 -3.0616 1 7.3912
+5 24 -3.0616 1 7.3912 -3.4443 0 8.3151 -2.0704 1 7.7272 -4 1 6.928
+5 24 -4 1 6.928 -4.5 0 7.794 -3.0616 1 7.3912 -4.8704 1 6.3472
+5 24 -4.8704 1 6.3472 -5.4792 0 7.1406 -4 1 6.928 -5.6568 1 5.6568
+5 24 -5.6568 1 5.6568 -6.3639 0 6.3639 -4.8704 1 6.3472 -6.3472 1 4.8704
+5 24 -6.3472 1 4.8704 -7.1406 0 5.4792 -5.6568 1 5.6568 -6.928 1 4
+5 24 -6.928 1 4 -7.794 0 4.5 -6.3472 1 4.8704 -7.3912 1 3.0616
+5 24 -7.3912 1 3.0616 -8.3151 0 3.4443 -6.928 1 4 -7.7272 1 2.0704
+5 24 -7.7272 1 2.0704 -8.6931 0 2.3292 -7.3912 1 3.0616 -7.9312 1 1.044
+5 24 -7.9312 1 1.044 -8.9226 0 1.1745 -7.7272 1 2.0704 -8 1 0
+5 24 -8 1 0 -9 0 0 -7.9312 1 1.044 -7.9312 1 -1.044
+5 24 -7.9312 1 -1.044 -8.9226 0 -1.1745 -8 1 0 -7.7272 1 -2.0704
+5 24 -7.7272 1 -2.0704 -8.6931 0 -2.3292 -7.9312 1 -1.044 -7.3912 1 -3.0616
+5 24 -7.3912 1 -3.0616 -8.3151 0 -3.4443 -7.7272 1 -2.0704 -6.928 1 -4
+5 24 -6.928 1 -4 -7.794 0 -4.5 -7.3912 1 -3.0616 -6.3472 1 -4.8704
+5 24 -6.3472 1 -4.8704 -7.1406 0 -5.4792 -6.928 1 -4 -5.6568 1 -5.6568
+5 24 -5.6568 1 -5.6568 -6.3639 0 -6.3639 -6.3472 1 -4.8704 -4.8704 1 -6.3472
+5 24 -4.8704 1 -6.3472 -5.4792 0 -7.1406 -5.6568 1 -5.6568 -4 1 -6.928
+5 24 -4 1 -6.928 -4.5 0 -7.794 -4.8704 1 -6.3472 -3.0616 1 -7.3912
+5 24 -3.0616 1 -7.3912 -3.4443 0 -8.3151 -4 1 -6.928 -2.0704 1 -7.7272
+5 24 -2.0704 1 -7.7272 -2.3292 0 -8.6931 -3.0616 1 -7.3912 -1.044 1 -7.9312
+5 24 -1.044 1 -7.9312 -1.1745 0 -8.9226 -2.0704 1 -7.7272 0 1 -8
+5 24 0 1 -8 0 0 -9 -1.044 1 -7.9312 1.044 1 -7.9312
+5 24 1.044 1 -7.9312 1.1745 0 -8.9226 0 1 -8 2.0704 1 -7.7272
+5 24 2.0704 1 -7.7272 2.3292 0 -8.6931 1.044 1 -7.9312 3.0616 1 -7.3912
+5 24 3.0616 1 -7.3912 3.4443 0 -8.3151 2.0704 1 -7.7272 4 1 -6.928
+5 24 4 1 -6.928 4.5 0 -7.794 3.0616 1 -7.3912 4.8704 1 -6.3472
+5 24 4.8704 1 -6.3472 5.4792 0 -7.1406 4 1 -6.928 5.6568 1 -5.6568
+5 24 5.6568 1 -5.6568 6.3639 0 -6.3639 4.8704 1 -6.3472 6.3472 1 -4.8704
+5 24 6.3472 1 -4.8704 7.1406 0 -5.4792 5.6568 1 -5.6568 6.928 1 -4
+5 24 6.928 1 -4 7.794 0 -4.5 6.3472 1 -4.8704 7.3912 1 -3.0616
+5 24 7.3912 1 -3.0616 8.3151 0 -3.4443 6.928 1 -4 7.7272 1 -2.0704
+5 24 7.7272 1 -2.0704 8.6931 0 -2.3292 7.3912 1 -3.0616 7.9312 1 -1.044
+5 24 7.9312 1 -1.044 8.9226 0 -1.1745 7.7272 1 -2.0704 8 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/1-16ri13.dat
+0 ~Moved to 48\1-16ring13
+0 Name: 48\1-16ri13.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG 48_Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+0 // Hi-Res Ring 13 x 0.0625
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/1-16ring13.dat
+
+0 FILE p/48/1-16ring13.dat
+0 Hi-Res Ring 13 x 0.0625
+0 Name: 48\1-16ring13.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+4 16 13 0 0 14 0 0 13.8796 0 1.827 12.8882 0 1.6965
+4 16 12.8882 0 1.6965 13.8796 0 1.827 13.5226 0 3.6232 12.5567 0 3.3644
+4 16 12.5567 0 3.3644 13.5226 0 3.6232 12.9346 0 5.3578 12.0107 0 4.9751
+
+0 end of file 
+
+
+
+0 FILE p/48/1-16ri14.dat
+0 ~Moved to 48\1-16ring14
+0 Name: 48\1-16ri14.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG 48_Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+0 // Hi-Res Ring 14 x 0.0625
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/1-16ring14.dat
+
+0 FILE p/48/1-16ring14.dat
+0 Hi-Res Ring 14 x 0.0625
+0 Name: 48\1-16ring14.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+4 16 14 0 0 15 0 0 14.871 0 1.9575 13.8796 0 1.827
+4 16 13.8796 0 1.827 14.871 0 1.9575 14.4885 0 3.882 13.5226 0 3.6232
+4 16 13.5226 0 3.6232 14.4885 0 3.882 13.8585 0 5.7405 12.9346 0 5.3578
+
+0 end of file 
+
+
+
+0 FILE p/48/3-4rin14.dat
+0 Hi-Res Ring 14 x 0.75
+0 Name: 48\3-4rin14.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 14 0 0 15 0 0 14.871 0 1.9575 13.8796 0 1.827
+4 16 13.8796 0 1.827 14.871 0 1.9575 14.4885 0 3.882 13.5226 0 3.6232
+4 16 13.5226 0 3.6232 14.4885 0 3.882 13.8585 0 5.7405 12.9346 0 5.3578
+4 16 12.9346 0 5.3578 13.8585 0 5.7405 12.99 0 7.5 12.124 0 7
+4 16 12.124 0 7 12.99 0 7.5 11.901 0 9.132 11.1076 0 8.5232
+4 16 11.1076 0 8.5232 11.901 0 9.132 10.6065 0 10.6065 9.8994 0 9.8994
+4 16 9.8994 0 9.8994 10.6065 0 10.6065 9.132 0 11.901 8.5232 0 11.1076
+4 16 8.5232 0 11.1076 9.132 0 11.901 7.5 0 12.99 7 0 12.124
+4 16 7 0 12.124 7.5 0 12.99 5.7405 0 13.8585 5.3578 0 12.9346
+4 16 5.3578 0 12.9346 5.7405 0 13.8585 3.882 0 14.4885 3.6232 0 13.5226
+4 16 3.6232 0 13.5226 3.882 0 14.4885 1.9575 0 14.871 1.827 0 13.8796
+4 16 1.827 0 13.8796 1.9575 0 14.871 0 0 15 0 0 14
+4 16 0 0 14 0 0 15 -1.9575 0 14.871 -1.827 0 13.8796
+4 16 -1.827 0 13.8796 -1.9575 0 14.871 -3.882 0 14.4885 -3.6232 0 13.5226
+4 16 -3.6232 0 13.5226 -3.882 0 14.4885 -5.7405 0 13.8585 -5.3578 0 12.9346
+4 16 -5.3578 0 12.9346 -5.7405 0 13.8585 -7.5 0 12.99 -7 0 12.124
+4 16 -7 0 12.124 -7.5 0 12.99 -9.132 0 11.901 -8.5232 0 11.1076
+4 16 -8.5232 0 11.1076 -9.132 0 11.901 -10.6065 0 10.6065 -9.8994 0 9.8994
+4 16 -9.8994 0 9.8994 -10.6065 0 10.6065 -11.901 0 9.132 -11.1076 0 8.5232
+4 16 -11.1076 0 8.5232 -11.901 0 9.132 -12.99 0 7.5 -12.124 0 7
+4 16 -12.124 0 7 -12.99 0 7.5 -13.8585 0 5.7405 -12.9346 0 5.3578
+4 16 -12.9346 0 5.3578 -13.8585 0 5.7405 -14.4885 0 3.882 -13.5226 0 3.6232
+4 16 -13.5226 0 3.6232 -14.4885 0 3.882 -14.871 0 1.9575 -13.8796 0 1.827
+4 16 -13.8796 0 1.827 -14.871 0 1.9575 -15 0 0 -14 0 0
+4 16 -14 0 0 -15 0 0 -14.871 0 -1.9575 -13.8796 0 -1.827
+4 16 -13.8796 0 -1.827 -14.871 0 -1.9575 -14.4885 0 -3.882 -13.5226 0 -3.6232
+4 16 -13.5226 0 -3.6232 -14.4885 0 -3.882 -13.8585 0 -5.7405 -12.9346 0 -5.3578
+4 16 -12.9346 0 -5.3578 -13.8585 0 -5.7405 -12.99 0 -7.5 -12.124 0 -7
+4 16 -12.124 0 -7 -12.99 0 -7.5 -11.901 0 -9.132 -11.1076 0 -8.5232
+4 16 -11.1076 0 -8.5232 -11.901 0 -9.132 -10.6065 0 -10.6065 -9.8994 0 -9.8994
+4 16 -9.8994 0 -9.8994 -10.6065 0 -10.6065 -9.132 0 -11.901 -8.5232 0 -11.1076
+4 16 -8.5232 0 -11.1076 -9.132 0 -11.901 -7.5 0 -12.99 -7 0 -12.124
+4 16 -7 0 -12.124 -7.5 0 -12.99 -5.7405 0 -13.8585 -5.3578 0 -12.9346
+4 16 -5.3578 0 -12.9346 -5.7405 0 -13.8585 -3.882 0 -14.4885 -3.6232 0 -13.5226
+4 16 -3.6232 0 -13.5226 -3.882 0 -14.4885 -1.9575 0 -14.871 -1.827 0 -13.8796
+4 16 -1.827 0 -13.8796 -1.9575 0 -14.871 0 0 -15 0 0 -14
+
+0 end of file 
+
+
+
+0 FILE p/48/3-4rin13.dat
+0 Hi-Res Ring 13 x 0.75
+0 Name: 48\3-4rin13.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+4 16 13 0 0 14 0 0 13.8796 0 1.827 12.8882 0 1.6965
+4 16 12.8882 0 1.6965 13.8796 0 1.827 13.5226 0 3.6232 12.5567 0 3.3644
+4 16 12.5567 0 3.3644 13.5226 0 3.6232 12.9346 0 5.3578 12.0107 0 4.9751
+4 16 12.0107 0 4.9751 12.9346 0 5.3578 12.124 0 7 11.258 0 6.5
+4 16 11.258 0 6.5 12.124 0 7 11.1076 0 8.5232 10.3142 0 7.9144
+4 16 10.3142 0 7.9144 11.1076 0 8.5232 9.8994 0 9.8994 9.1923 0 9.1923
+4 16 9.1923 0 9.1923 9.8994 0 9.8994 8.5232 0 11.1076 7.9144 0 10.3142
+4 16 7.9144 0 10.3142 8.5232 0 11.1076 7 0 12.124 6.5 0 11.258
+4 16 6.5 0 11.258 7 0 12.124 5.3578 0 12.9346 4.9751 0 12.0107
+4 16 4.9751 0 12.0107 5.3578 0 12.9346 3.6232 0 13.5226 3.3644 0 12.5567
+4 16 3.3644 0 12.5567 3.6232 0 13.5226 1.827 0 13.8796 1.6965 0 12.8882
+4 16 1.6965 0 12.8882 1.827 0 13.8796 0 0 14 0 0 13
+4 16 0 0 13 0 0 14 -1.827 0 13.8796 -1.6965 0 12.8882
+4 16 -1.6965 0 12.8882 -1.827 0 13.8796 -3.6232 0 13.5226 -3.3644 0 12.5567
+4 16 -3.3644 0 12.5567 -3.6232 0 13.5226 -5.3578 0 12.9346 -4.9751 0 12.0107
+4 16 -4.9751 0 12.0107 -5.3578 0 12.9346 -7 0 12.124 -6.5 0 11.258
+4 16 -6.5 0 11.258 -7 0 12.124 -8.5232 0 11.1076 -7.9144 0 10.3142
+4 16 -7.9144 0 10.3142 -8.5232 0 11.1076 -9.8994 0 9.8994 -9.1923 0 9.1923
+4 16 -9.1923 0 9.1923 -9.8994 0 9.8994 -11.1076 0 8.5232 -10.3142 0 7.9144
+4 16 -10.3142 0 7.9144 -11.1076 0 8.5232 -12.124 0 7 -11.258 0 6.5
+4 16 -11.258 0 6.5 -12.124 0 7 -12.9346 0 5.3578 -12.0107 0 4.9751
+4 16 -12.0107 0 4.9751 -12.9346 0 5.3578 -13.5226 0 3.6232 -12.5567 0 3.3644
+4 16 -12.5567 0 3.3644 -13.5226 0 3.6232 -13.8796 0 1.827 -12.8882 0 1.6965
+4 16 -12.8882 0 1.6965 -13.8796 0 1.827 -14 0 0 -13 0 0
+4 16 -13 0 0 -14 0 0 -13.8796 0 -1.827 -12.8882 0 -1.6965
+4 16 -12.8882 0 -1.6965 -13.8796 0 -1.827 -13.5226 0 -3.6232 -12.5567 0 -3.3644
+4 16 -12.5567 0 -3.3644 -13.5226 0 -3.6232 -12.9346 0 -5.3578 -12.0107 0 -4.9751
+4 16 -12.0107 0 -4.9751 -12.9346 0 -5.3578 -12.124 0 -7 -11.258 0 -6.5
+4 16 -11.258 0 -6.5 -12.124 0 -7 -11.1076 0 -8.5232 -10.3142 0 -7.9144
+4 16 -10.3142 0 -7.9144 -11.1076 0 -8.5232 -9.8994 0 -9.8994 -9.1923 0 -9.1923
+4 16 -9.1923 0 -9.1923 -9.8994 0 -9.8994 -8.5232 0 -11.1076 -7.9144 0 -10.3142
+4 16 -7.9144 0 -10.3142 -8.5232 0 -11.1076 -7 0 -12.124 -6.5 0 -11.258
+4 16 -6.5 0 -11.258 -7 0 -12.124 -5.3578 0 -12.9346 -4.9751 0 -12.0107
+4 16 -4.9751 0 -12.0107 -5.3578 0 -12.9346 -3.6232 0 -13.5226 -3.3644 0 -12.5567
+4 16 -3.3644 0 -12.5567 -3.6232 0 -13.5226 -1.827 0 -13.8796 -1.6965 0 -12.8882
+4 16 -1.6965 0 -12.8882 -1.827 0 -13.8796 0 0 -14 0 0 -13
+
+0 end of file 
+
+
+
+0 FILE p/48/1-16cyli.dat
+0 Hi-Res Cylinder 0.0625
+0 Name: 48\1-16cyli.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 0.9914 0 0.1305 1 0 0 1 1 0 0.9914 1 0.1305
+4 16 0.9659 0 0.2588 0.9914 0 0.1305 0.9914 1 0.1305 0.9659 1 0.2588
+4 16 0.9239 0 0.3827 0.9659 0 0.2588 0.9659 1 0.2588 0.9239 1 0.3827
+
+0 conditional lines
+5 24 1 1 0 1 0 0 0.9914 1 -0.1305 0.9914 1 0.1305
+5 24 0.9914 1 0.1305 0.9914 0 0.1305 1 1 0 0.9659 1 0.2588
+5 24 0.9659 1 0.2588 0.9659 0 0.2588 0.9914 1 0.1305 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 0.9239 0 0.3827 0.9659 1 0.2588 0.866 1 0.5
+
+0 end of file 
+
+
+
+0 FILE p/48/3-4cyli.dat
+0 Hi-Res Cylinder 0.75
+0 Name: 48\3-4cyli.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 0.9914 0 0.1305 1 0 0 1 1 0 0.9914 1 0.1305
+4 16 0.9659 0 0.2588 0.9914 0 0.1305 0.9914 1 0.1305 0.9659 1 0.2588
+4 16 0.9239 0 0.3827 0.9659 0 0.2588 0.9659 1 0.2588 0.9239 1 0.3827
+4 16 0.866 0 0.5 0.9239 0 0.3827 0.9239 1 0.3827 0.866 1 0.5
+4 16 0.7934 0 0.6088 0.866 0 0.5 0.866 1 0.5 0.7934 1 0.6088
+4 16 0.7071 0 0.7071 0.7934 0 0.6088 0.7934 1 0.6088 0.7071 1 0.7071
+4 16 0.6088 0 0.7934 0.7071 0 0.7071 0.7071 1 0.7071 0.6088 1 0.7934
+4 16 0.5 0 0.866 0.6088 0 0.7934 0.6088 1 0.7934 0.5 1 0.866
+4 16 0.3827 0 0.9239 0.5 0 0.866 0.5 1 0.866 0.3827 1 0.9239
+4 16 0.2588 0 0.9659 0.3827 0 0.9239 0.3827 1 0.9239 0.2588 1 0.9659
+4 16 0.1305 0 0.9914 0.2588 0 0.9659 0.2588 1 0.9659 0.1305 1 0.9914
+4 16 0 0 1 0.1305 0 0.9914 0.1305 1 0.9914 0 1 1
+4 16 -0.1305 0 0.9914 0 0 1 0 1 1 -0.1305 1 0.9914
+4 16 -0.2588 0 0.9659 -0.1305 0 0.9914 -0.1305 1 0.9914 -0.2588 1 0.9659
+4 16 -0.3827 0 0.9239 -0.2588 0 0.9659 -0.2588 1 0.9659 -0.3827 1 0.9239
+4 16 -0.5 0 0.866 -0.3827 0 0.9239 -0.3827 1 0.9239 -0.5 1 0.866
+4 16 -0.6088 0 0.7934 -0.5 0 0.866 -0.5 1 0.866 -0.6088 1 0.7934
+4 16 -0.7071 0 0.7071 -0.6088 0 0.7934 -0.6088 1 0.7934 -0.7071 1 0.7071
+4 16 -0.7934 0 0.6088 -0.7071 0 0.7071 -0.7071 1 0.7071 -0.7934 1 0.6088
+4 16 -0.866 0 0.5 -0.7934 0 0.6088 -0.7934 1 0.6088 -0.866 1 0.5
+4 16 -0.9239 0 0.3827 -0.866 0 0.5 -0.866 1 0.5 -0.9239 1 0.3827
+4 16 -0.9659 0 0.2588 -0.9239 0 0.3827 -0.9239 1 0.3827 -0.9659 1 0.2588
+4 16 -0.9914 0 0.1305 -0.9659 0 0.2588 -0.9659 1 0.2588 -0.9914 1 0.1305
+4 16 -1 0 0 -0.9914 0 0.1305 -0.9914 1 0.1305 -1 1 0
+4 16 -0.9914 0 -0.1305 -1 0 0 -1 1 0 -0.9914 1 -0.1305
+4 16 -0.9659 0 -0.2588 -0.9914 0 -0.1305 -0.9914 1 -0.1305 -0.9659 1 -0.2588
+4 16 -0.9239 0 -0.3827 -0.9659 0 -0.2588 -0.9659 1 -0.2588 -0.9239 1 -0.3827
+4 16 -0.866 0 -0.5 -0.9239 0 -0.3827 -0.9239 1 -0.3827 -0.866 1 -0.5
+4 16 -0.7934 0 -0.6088 -0.866 0 -0.5 -0.866 1 -0.5 -0.7934 1 -0.6088
+4 16 -0.7071 0 -0.7071 -0.7934 0 -0.6088 -0.7934 1 -0.6088 -0.7071 1 -0.7071
+4 16 -0.6088 0 -0.7934 -0.7071 0 -0.7071 -0.7071 1 -0.7071 -0.6088 1 -0.7934
+4 16 -0.5 0 -0.866 -0.6088 0 -0.7934 -0.6088 1 -0.7934 -0.5 1 -0.866
+4 16 -0.3827 0 -0.9239 -0.5 0 -0.866 -0.5 1 -0.866 -0.3827 1 -0.9239
+4 16 -0.2588 0 -0.9659 -0.3827 0 -0.9239 -0.3827 1 -0.9239 -0.2588 1 -0.9659
+4 16 -0.1305 0 -0.9914 -0.2588 0 -0.9659 -0.2588 1 -0.9659 -0.1305 1 -0.9914
+4 16 0 0 -1 -0.1305 0 -0.9914 -0.1305 1 -0.9914 0 1 -1
+
+0 conditional lines
+5 24 1 1 0 1 0 0 0.9914 1 -0.1305 0.9914 1 0.1305
+5 24 0.9914 1 0.1305 0.9914 0 0.1305 1 1 0 0.9659 1 0.2588
+5 24 0.9659 1 0.2588 0.9659 0 0.2588 0.9914 1 0.1305 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 0.9239 0 0.3827 0.9659 1 0.2588 0.866 1 0.5
+5 24 0.866 1 0.5 0.866 0 0.5 0.9239 1 0.3827 0.7934 1 0.6088
+5 24 0.7934 1 0.6088 0.7934 0 0.6088 0.866 1 0.5 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 0.7071 0 0.7071 0.7934 1 0.6088 0.6088 1 0.7934
+5 24 0.6088 1 0.7934 0.6088 0 0.7934 0.7071 1 0.7071 0.5 1 0.866
+5 24 0.5 1 0.866 0.5 0 0.866 0.6088 1 0.7934 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.3827 0 0.9239 0.5 1 0.866 0.2588 1 0.9659
+5 24 0.2588 1 0.9659 0.2588 0 0.9659 0.3827 1 0.9239 0.1305 1 0.9914
+5 24 0.1305 1 0.9914 0.1305 0 0.9914 0.2588 1 0.9659 0 1 1
+5 24 0 1 1 0 0 1 0.1305 1 0.9914 -0.1305 1 0.9914
+5 24 -0.1305 1 0.9914 -0.1305 0 0.9914 0 1 1 -0.2588 1 0.9659
+5 24 -0.2588 1 0.9659 -0.2588 0 0.9659 -0.1305 1 0.9914 -0.3827 1 0.9239
+5 24 -0.3827 1 0.9239 -0.3827 0 0.9239 -0.2588 1 0.9659 -0.5 1 0.866
+5 24 -0.5 1 0.866 -0.5 0 0.866 -0.3827 1 0.9239 -0.6088 1 0.7934
+5 24 -0.6088 1 0.7934 -0.6088 0 0.7934 -0.5 1 0.866 -0.7071 1 0.7071
+5 24 -0.7071 1 0.7071 -0.7071 0 0.7071 -0.6088 1 0.7934 -0.7934 1 0.6088
+5 24 -0.7934 1 0.6088 -0.7934 0 0.6088 -0.7071 1 0.7071 -0.866 1 0.5
+5 24 -0.866 1 0.5 -0.866 0 0.5 -0.7934 1 0.6088 -0.9239 1 0.3827
+5 24 -0.9239 1 0.3827 -0.9239 0 0.3827 -0.866 1 0.5 -0.9659 1 0.2588
+5 24 -0.9659 1 0.2588 -0.9659 0 0.2588 -0.9239 1 0.3827 -0.9914 1 0.1305
+5 24 -0.9914 1 0.1305 -0.9914 0 0.1305 -0.9659 1 0.2588 -1 1 0
+5 24 -1 1 0 -1 0 0 -0.9914 1 0.1305 -0.9914 1 -0.1305
+5 24 -0.9914 1 -0.1305 -0.9914 0 -0.1305 -1 1 0 -0.9659 1 -0.2588
+5 24 -0.9659 1 -0.2588 -0.9659 0 -0.2588 -0.9914 1 -0.1305 -0.9239 1 -0.3827
+5 24 -0.9239 1 -0.3827 -0.9239 0 -0.3827 -0.9659 1 -0.2588 -0.866 1 -0.5
+5 24 -0.866 1 -0.5 -0.866 0 -0.5 -0.9239 1 -0.3827 -0.7934 1 -0.6088
+5 24 -0.7934 1 -0.6088 -0.7934 0 -0.6088 -0.866 1 -0.5 -0.7071 1 -0.7071
+5 24 -0.7071 1 -0.7071 -0.7071 0 -0.7071 -0.7934 1 -0.6088 -0.6088 1 -0.7934
+5 24 -0.6088 1 -0.7934 -0.6088 0 -0.7934 -0.7071 1 -0.7071 -0.5 1 -0.866
+5 24 -0.5 1 -0.866 -0.5 0 -0.866 -0.6088 1 -0.7934 -0.3827 1 -0.9239
+5 24 -0.3827 1 -0.9239 -0.3827 0 -0.9239 -0.5 1 -0.866 -0.2588 1 -0.9659
+5 24 -0.2588 1 -0.9659 -0.2588 0 -0.9659 -0.3827 1 -0.9239 -0.1305 1 -0.9914
+5 24 -0.1305 1 -0.9914 -0.1305 0 -0.9914 -0.2588 1 -0.9659 0 1 -1
+5 24 0 1 -1 0 0 -1 -0.1305 1 -0.9914 0.1305 1 -0.9914
+
+0 end of file 
+
+
+
+0 FILE p/48/3-4edge.dat
+0 Hi-Res Circle 0.75
+0 Name: 48\3-4edge.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+2 24 1 0 0 0.9914 0 0.1305
+2 24 0.9914 0 0.1305 0.9659 0 0.2588
+2 24 0.9659 0 0.2588 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.866 0 0.5
+2 24 0.866 0 0.5 0.7934 0 0.6088
+2 24 0.7934 0 0.6088 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.6088 0 0.7934
+2 24 0.6088 0 0.7934 0.5 0 0.866
+2 24 0.5 0 0.866 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0.2588 0 0.9659
+2 24 0.2588 0 0.9659 0.1305 0 0.9914
+2 24 0.1305 0 0.9914 0 0 1
+2 24 0 0 1 -0.1305 0 0.9914
+2 24 -0.1305 0 0.9914 -0.2588 0 0.9659
+2 24 -0.2588 0 0.9659 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.5 0 0.866
+2 24 -0.5 0 0.866 -0.6088 0 0.7934
+2 24 -0.6088 0 0.7934 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -0.7934 0 0.6088
+2 24 -0.7934 0 0.6088 -0.866 0 0.5
+2 24 -0.866 0 0.5 -0.9239 0 0.3827
+2 24 -0.9239 0 0.3827 -0.9659 0 0.2588
+2 24 -0.9659 0 0.2588 -0.9914 0 0.1305
+2 24 -0.9914 0 0.1305 -1 0 0
+2 24 -1 0 0 -0.9914 0 -0.1305
+2 24 -0.9914 0 -0.1305 -0.9659 0 -0.2588
+2 24 -0.9659 0 -0.2588 -0.9239 0 -0.3827
+2 24 -0.9239 0 -0.3827 -0.866 0 -0.5
+2 24 -0.866 0 -0.5 -0.7934 0 -0.6088
+2 24 -0.7934 0 -0.6088 -0.7071 0 -0.7071
+2 24 -0.7071 0 -0.7071 -0.6088 0 -0.7934
+2 24 -0.6088 0 -0.7934 -0.5 0 -0.866
+2 24 -0.5 0 -0.866 -0.3827 0 -0.9239
+2 24 -0.3827 0 -0.9239 -0.2588 0 -0.9659
+2 24 -0.2588 0 -0.9659 -0.1305 0 -0.9914
+2 24 -0.1305 0 -0.9914 0 0 -1
+
+0 FILE parts/6134.dat
+0 Hinge  2 x  2 Top
+0 Name: 6134.dat
+0 Author: Lutz Uhlmann
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1997-09-29 [PTadmin] Official Update 1997-15
+0 !HISTORY 2004-11-16 [guyvivan] Made BFC Compliant
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-16 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 2 0 -4 0 0 0 13.5 0 0 0 2 p/box3u8p.dat
+1 16 5 2 0 -1 0 0 0 2 0 0 0 2 p/box3u8p.dat
+1 16 -5 2 0 -1 0 0 0 2 0 0 0 2 p/box3u8p.dat
+1 16 -10 2 0 -4 0 0 0 13.5 0 0 0 2 p/box3u8p.dat
+1 16 0 2 0 2 0 0 0 2 0 0 0 -2 p/box3u2p.dat
+1 16 6 9.75 0 0 1 0 5.75 0 0 0 0 2 p/rect.dat
+1 16 -6 9.75 0 0 -1 0 5.75 0 0 0 0 2 p/rect.dat
+1 16 20 10 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -20 10 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 16 10 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -16 10 0 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 16 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 -16 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 14 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 -14 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 4 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 -4 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 2 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+1 16 -2 10 0 0 1 0 0 0 6 6 0 0 p/2-4edge.dat
+2 24 14 2 2 14 15.5 2
+2 24 14 2 -2 14 15.5 -2
+2 24 14 15.5 -2 14 15.5 2
+2 24 -14 15.5 -2 -14 15.5 2
+2 24 4 4 2 4 2 2
+2 24 4 4 -2 4 2 -2
+2 24 4 4 -2 4 4 2
+2 24 -4 4 -2 -4 4 2
+2 24 -14 2 2 -14 15.5 2
+2 24 -14 2 -2 -14 15.5 -2
+2 24 -4 4 2 -4 2 2
+2 24 -4 4 -2 -4 2 -2
+1 16 0 1 10 20 0 0 0 1 0 0 0 20 p/box.dat
+1 16 20 10 0 0 -1 0 4 0 0 0 0 4 p/4-4disc.dat
+1 16 -20 10 0 0 1 0 4 0 0 0 0 4 p/4-4disc.dat
+1 16 16 10 0 0 -1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 -16 10 0 0 1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 14 10 0 0 1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 -14 10 0 0 -1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 4 10 0 0 -1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 -4 10 0 0 1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 2 10 0 0 1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 -2 10 0 0 -1 0 0 0 6 6 0 0 p/2-4disc.dat
+1 16 20 10 0 0 -4 0 4 0 0 0 0 4 p/4-4cyli.dat
+1 16 -20 10 0 0 4 0 4 0 0 0 0 4 p/4-4cyli.dat
+1 16 16 10 0 0 -2 0 0 0 6 6 0 0 p/2-4cyli.dat
+1 16 -16 10 0 0 2 0 0 0 6 6 0 0 p/2-4cyli.dat
+1 16 4 10 0 0 -2 0 0 0 6 6 0 0 p/2-4cyli.dat
+1 16 -4 10 0 0 2 0 0 0 6 6 0 0 p/2-4cyli.dat
+1 16 3 2 0 0 0 1 0 8 0 -6 0 0 p/box4o4a.dat
+1 16 -3 2 0 0 0 1 0 8 0 -6 0 0 p/box4o4a.dat
+1 16 -15 2 0 0 0 1 0 8 0 -6 0 0 p/box4o4a.dat
+1 16 15 2 0 0 0 1 0 8 0 -6 0 0 p/box4o4a.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 20 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 20 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE p/box4o4a.dat
+0 Box with 4 Faces (2 Parallel Pairs) without Bottom Edges
+0 Name: box4o4a.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 -1 0 -1 1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE parts/3937.dat
+0 Hinge  1 x  2 Base
+0 Name: 3937.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS tilt bearing, brick
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-10-12 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+0 BFC INVERTNEXT
+1 16 9 24 0 7 0 0 0 -4 0 0 0 6 p/box5.dat
+0 BFC INVERTNEXT
+1 16 -9 24 0 7 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 2 24 6 2 24 -6 -2 24 -6 -2 24 6
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+4 16 -20 24 -10 -16 24 -6 16 24 -6 20 24 -10
+4 16 20 24 -10 16 24 -6 16 24 6 20 24 10
+2 24 20 24 10 -20 24 10
+2 24 -20 24 10 -20 24 -10
+2 24 -20 24 -10 20 24 -10
+2 24 20 24 -10 20 24 10
+1 16 0 20 -9 20 0 0 0 1 0 0 0 1 p/rect.dat
+1 16 0 16 -1 16 0 0 0 1 0 0 0 7 p/rect.dat
+2 24 2 16 2 -2 16 2
+2 24 -2 16 2 -2 16 -2
+2 24 -2 16 -2 2 16 -2
+2 24 2 16 -2 2 16 2
+2 24 20 2 10 -20 2 10
+2 24 -20 2 10 -20 2 4
+2 24 -20 2 4 -16 2 4
+2 24 -16 2 4 -16 2 6
+2 24 -16 2 6 16 2 6
+2 24 16 2 6 16 2 4
+2 24 16 2 4 20 2 4
+2 24 20 2 4 20 2 10
+2 24 20 20 -8 20 10 -8
+1 16 20 10 0 0 1 0 0 0 -8 -8 0 0 p/1-8edge.dat
+1 16 -16 10 0 0 1 0 0 0 -8 -8 0 0 p/1-8edge.dat
+2 24 20 4.34 -5.66 20 3.24 -4
+2 24 20 3.24 -4 20 10 -4
+1 16 20 10 0 0 1 0 0 0 4 4 0 0 p/2-4edge.dat
+2 24 20 10 4 20 2 4
+2 24 16 16 -8 16 10 -8
+1 16 16 10 0 0 1 0 0 0 -8 -8 0 0 p/1-8edge.dat
+2 24 16 4.34 -5.66 16 3.24 -4
+2 24 16 3.24 -4 16 10 -4
+1 16 16 10 0 0 1 0 0 0 4 4 0 0 p/2-4edge.dat
+2 24 16 10 4 16 2 4
+2 24 -16 16 -8 -16 10 -8
+2 24 -16 4.34 -5.66 -16 3.24 -4
+2 24 -16 3.24 -4 -16 10 -4
+1 16 -16 10 0 0 1 0 0 0 4 4 0 0 p/2-4edge.dat
+2 24 -16 10 4 -16 2 4
+2 24 -20 20 -8 -20 10 -8
+1 16 -20 10 0 0 1 0 0 0 -8 -8 0 0 p/1-8edge.dat
+2 24 -20 4.34 -5.66 -20 3.24 -4
+2 24 -20 3.24 -4 -20 10 -4
+1 16 -20 10 0 0 1 0 0 0 4 4 0 0 p/2-4edge.dat
+2 24 -20 10 4 -20 2 4
+2 24 20 20 -10 20 24 -10
+2 24 -20 20 -10 -20 24 -10
+2 24 20 2 10 20 24 10
+2 24 -20 2 10 -20 24 10
+2 24 16 2 6 16 16 6
+2 24 -16 2 6 -16 16 6
+2 24 16 3.24 -4 20 3.24 -4
+2 24 -16 3.24 -4 -20 3.24 -4
+2 24 2 16 2 2 10 2
+2 24 -2 16 2 -2 10 2
+2 24 2 16 -2 2 10 -2
+2 24 -2 16 -2 -2 10 -2
+1 16 2 10 0 0 -1 0 0 0 -2 2 0 0 p/2-4edge.dat
+1 16 -2 10 0 0 -1 0 0 0 -2 2 0 0 p/2-4edge.dat
+4 16 -20 16 -8 -20 20 -8 20 20 -8 20 16 -8
+4 16 -20 20 -10 -20 24 -10 20 24 -10 20 20 -10
+4 16 -20 24 10 -20 2 10 20 2 10 20 24 10
+4 16 -20 2 10 -20 2 6 20 2 6 20 2 10
+4 16 -16 2 6 -16 16 6 16 16 6 16 2 6
+4 16 -2 16 2 -2 10 2 2 10 2 2 16 2
+1 16 2 10 0 0 -4 0 0 0 -2 2 0 0 p/2-4cyli.dat
+4 16 -2 10 -2 -2 16 -2 2 16 -2 2 10 -2
+4 16 16 2 6 16 2 4 20 2 4 20 2 6
+4 16 16 2 4 16 10 4 20 10 4 20 2 4
+0 BFC INVERTNEXT
+1 16 20 10 0 0 -4 0 0 0 4 4 0 0 p/2-4cyli.dat
+4 16 16 10 -4 16 3.24 -4 20 3.24 -4 20 10 -4
+4 16 20 3.24 -4 16 3.24 -4 16 4.34 -5.66 20 4.34 -5.66
+1 16 20 10 0 0 -4 0 0 0 -8 -8 0 0 p/1-8cyli.dat
+4 16 16 10 -8 16 16 -8 20 16 -8 20 10 -8
+4 16 -20 2 6 -20 2 4 -16 2 4 -16 2 6
+4 16 -20 2 4 -20 10 4 -16 10 4 -16 2 4
+0 BFC INVERTNEXT
+1 16 -20 10 0 0 4 0 0 0 4 4 0 0 p/2-4cyli.dat
+4 16 -20 10 -4 -20 3.24 -4 -16 3.24 -4 -16 10 -4
+4 16 -20 3.24 -4 -20 4.34 -5.66 -16 4.34 -5.66 -16 3.24 -4
+1 16 -20 10 0 0 4 0 0 0 -8 -8 0 0 p/1-8cyli.dat
+4 16 -20 10 -8 -20 16 -8 -16 16 -8 -16 10 -8
+1 16 20 10 0 0 -1 0 0 0 4 -4 0 0 p/2-4ndis.dat
+4 16 20 3.24 -4 20 4.34 -5.66 20 6.94 -7.39 20 10 -8
+4 16 20 3.24 -4 20 10 -8 20 20 -8 20 14 -4
+4 16 20 24 10 20 20 -8 20 20 -10 20 24 -10
+4 16 20 24 10 20 14 4 20 14 -4 20 20 -8
+4 16 20 24 10 20 2 10 20 2 4 20 14 4
+1 16 16 10 0 0 1 0 0 0 4 4 0 0 p/2-4ndis.dat
+4 16 16 3.24 -4 16 10 -8 16 6.94 -7.39 16 4.34 -5.66
+4 16 16 3.24 -4 16 14 -4 16 16 -8 16 10 -8
+4 16 16 16 6 16 16 -8 16 14 -4 16 14 4
+4 16 16 16 6 16 14 4 16 2 4 16 2 6
+4 16 2 16 2 2 10 2 2 10 -2 2 16 -2
+1 16 2 10 0 0 -1 0 0 0 -2 2 0 0 p/2-4disc.dat
+4 16 -2 16 -2 -2 10 -2 -2 10 2 -2 16 2
+1 16 -2 10 0 0 1 0 0 0 -2 -2 0 0 p/2-4disc.dat
+1 16 -16 10 0 0 -1 0 0 0 4 -4 0 0 p/2-4ndis.dat
+4 16 -16 3.24 -4 -16 4.34 -5.66 -16 6.94 -7.39 -16 10 -8
+4 16 -16 3.24 -4 -16 10 -8 -16 16 -8 -16 14 -4
+4 16 -16 16 6 -16 14 4 -16 14 -4 -16 16 -8
+4 16 -16 16 6 -16 2 6 -16 2 4 -16 14 4
+1 16 -20 10 0 0 1 0 0 0 4 4 0 0 p/2-4ndis.dat
+4 16 -20 3.24 -4 -20 10 -8 -20 6.94 -7.39 -20 4.34 -5.66
+4 16 -20 3.24 -4 -20 14 -4 -20 20 -8 -20 10 -8
+4 16 -20 24 10 -20 24 -10 -20 20 -10 -20 20 -8
+4 16 -20 24 10 -20 20 -8 -20 14 -4 -20 14 4
+4 16 -20 24 10 -20 14 4 -20 2 4 -20 2 10
+0
+
+0 FILE parts/42445.dat
+0 Bar 12L with Plate  1 x  2 with Solid Studs and Hollow Stud
+0 Name: 42445.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Part UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS Studios, bar, rod, rod system, pole, 10-foot pole
+0 !KEYWORDS stud, hollow stud, 1 x 2 plate
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-09-03 [cwdee] Align description with 99784
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+1 16 0  0 -100  0  0 -1  0  1  0  1  0  0  parts/3023.dat
+0
+1 16 0  4  -80  4  0  0  0  0  4  0 160  0  p/4-4cyli.dat
+1 16 0  4  100  4  0  0  0  0  4  0  20  0  p/4-4cyli.dat
+0
+1 16 0  4  120  4  0  0  0  0  4  0  -1  0  p/4-4disc.dat
+1 16 0  4  -80  4  0  0  0  0  4  0  1  0  p/4-4edge.dat
+1 16 0  4  120  4  0  0  0  0  4  0  1  0  p/4-4edge.dat
+0
+1 16 0  0   90 10  0  0  0  8  0  0  0 10  p/4-4cyli.dat
+1 16 0  0   90 10  0  0  0  1  0  0  0 10  p/4-4edge.dat
+1 16 0  8   90 10  0  0  0  1  0  0  0 10  p/4-4edge.dat
+0
+1 16 0  0   90 -2  0  0  0  1  0  0  0 -2  p/1-4ring3.dat
+1 16 0  0   90  2  0  0  0  1  0  0  0 -2  p/1-4ring3.dat
+1 16 0  0   90 -2  0  0  0  1  0  0  0  2  p/1-4ring3.dat
+1 16 0  0   90  2  0  0  0  1  0  0  0  2  p/1-4ring3.dat
+1 16 0  8   90 -2  0  0  0  -1  0  0  0 -2  p/1-4ring3.dat
+1 16 0  8   90  2  0  0  0  -1  0  0  0 -2  p/1-4ring3.dat
+1 16 0  8   90 -2  0  0  0  -1  0  0  0  2  p/1-4ring3.dat
+1 16 0  8   90  2  0  0  0  -1  0  0  0  2  p/1-4ring3.dat
+1 16 0  0   90 -2  0  0  0  1  0  0  0 -2  p/1-4ring4.dat
+1 16 0  0   90  2  0  0  0  1  0  0  0 -2  p/1-4ring4.dat
+1 16 0  0   90 -2  0  0  0  1  0  0  0  2  p/1-4ring4.dat
+1 16 0  0   90  2  0  0  0  1  0  0  0  2  p/1-4ring4.dat
+1 16 0  8   90 -2  0  0  0  -1  0  0  0 -2  p/1-4ring4.dat
+1 16 0  8   90  2  0  0  0  -1  0  0  0 -2  p/1-4ring4.dat
+1 16 0  8   90 -2  0  0  0  -1  0  0  0  2  p/1-4ring4.dat
+1 16 0  8   90  2  0  0  0  -1  0  0  0  2  p/1-4ring4.dat
+1 16 0  0   90  6  0  0  0  1  0  0  0  6  p/4-4edge.dat
+1 16 0  8   90  6  0  0  0  1  0  0  0  6  p/4-4edge.dat
+1 16 0 -4   90  6  0  0  0  4  0  0  0  6  p/4-4cyli.dat
+0
+0 BFC INVERTNEXT
+1 16 0  4   90  6  0  0  0  4  0  0  0  6  p/4-4cyli.dat
+0
+1 16 0 -4   90  6  0  0  0  1  0  0  0  6  p/4-4edge.dat
+1 16 0  4   90  6  0  0  0  1  0  0  0  6  p/4-4edge.dat
+1 16 0 -4   90 -2  0  0  0  1  0  0  0 -2  p/1-4ring2.dat
+1 16 0 -4   90  2  0  0  0  1  0  0  0 -2  p/1-4ring2.dat
+1 16 0 -4   90 -2  0  0  0  1  0  0  0  2  p/1-4ring2.dat
+1 16 0 -4   90  2  0  0  0  1  0  0  0  2  p/1-4ring2.dat
+1 16 0  4   90 -2  0  0  0  -1  0  0  0 -2  p/1-4ring2.dat
+1 16 0  4   90  2  0  0  0  -1  0  0  0 -2  p/1-4ring2.dat
+1 16 0  4   90 -2  0  0  0  -1  0  0  0  2  p/1-4ring2.dat
+1 16 0  4   90  2  0  0  0  -1  0  0  0  2  p/1-4ring2.dat
+1 16 0 -4   90  4  0  0  0  1  0  0  0  4  p/4-4edge.dat
+1 16 0  4   90  4  0  0  0  1  0  0  0  4  p/4-4edge.dat
+0
+0 BFC INVERTNEXT
+1 16 0 -4   90  4  0  0  0  8  0  0  0  4  p/4-4cyli.dat
+0
+1 16 0  4   80 -4  0  0  0  0 -4  0  0.75  0  p/1-4cyls2.dat
+1 16 0  4   80  4  0  0  0  0 -4  0  0.75  0  p/1-4cyls2.dat
+1 16 0  4   80 -4  0  0  0  0  4  0  0.75  0  p/1-4cyls2.dat
+1 16 0  4   80  4  0  0  0  0  4  0  0.75  0  p/1-4cyls2.dat
+1 16 0  4  100 -4  0  0  0  0 -4  0 -0.75  0  p/1-4cyls2.dat
+1 16 0  4  100  4  0  0  0  0 -4  0 -0.75  0  p/1-4cyls2.dat
+1 16 0  4  100 -4  0  0  0  0  4  0 -0.75  0  p/1-4cyls2.dat
+1 16 0  4  100  4  0  0  0  0  4  0 -0.75  0  p/1-4cyls2.dat
+0
+1 16 0  4   80 -4  2.828  0  0  0 -4  0.75  0.75  0  p/1-4disc.dat
+1 16 0  4   80  4 -2.828  0  0  0 -4  0.75  0.75  0  p/1-4disc.dat
+1 16 0  4   80 -4  2.828  0  0  0  4  0.75  0.75  0  p/1-4disc.dat
+1 16 0  4   80  4 -2.828  0  0  0  4  0.75  0.75  0  p/1-4disc.dat
+1 16 0  4  100 -4  2.828  0  0  0 -4 -0.75 -0.75  0  p/1-4disc.dat
+1 16 0  4  100  4 -2.828  0  0  0 -4 -0.75 -0.75  0  p/1-4disc.dat
+1 16 0  4  100 -4  2.828  0  0  0  4 -0.75 -0.75  0  p/1-4disc.dat
+1 16 0  4  100  4 -2.828  0  0  0  4 -0.75 -0.75  0  p/1-4disc.dat
+0
+1 16 0  4   80 -4  2.828  0  0  0 -4  0.75  0.75  0  p/1-4edge.dat
+1 16 0  4   80  4 -2.828  0  0  0 -4  0.75  0.75  0  p/1-4edge.dat
+1 16 0  4   80 -4  2.828  0  0  0  4  0.75  0.75  0  p/1-4edge.dat
+1 16 0  4   80  4 -2.828  0  0  0  4  0.75  0.75  0  p/1-4edge.dat
+1 16 0  4  100 -4  2.828  0  0  0 -4 -0.75 -0.75  0  p/1-4edge.dat
+1 16 0  4  100  4 -2.828  0  0  0 -4 -0.75 -0.75  0  p/1-4edge.dat
+1 16 0  4  100 -4  2.828  0  0  0  4 -0.75 -0.75  0  p/1-4edge.dat
+1 16 0  4  100  4 -2.828  0  0  0  4 -0.75 -0.75  0  p/1-4edge.dat
+0
+0 end of file
+
+0 FILE p/1-4ring4.dat
+0 Ring  4 x 0.25
+0 Name: 1-4ring4.dat
+0 Author: Bernd Broich [bbroich]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 5 0 0 4.6195 0 1.9135 3.6956 0 1.5308 4 0 0
+4 16 4.6195 0 1.9135 3.5355 0 3.5355 2.8284 0 2.8284 3.6956 0 1.5308
+4 16 3.5355 0 3.5355 1.9135 0 4.6195 1.5308 0 3.6956 2.8284 0 2.8284
+4 16 1.9135 0 4.6195 0 0 5 0 0 4 1.5308 0 3.6956
+
+0 FILE parts/2817.dat
+0 Plate  2 x  2 with Holes
+0 Name: 2817.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley]  BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2016-09-22 [MagFors] Made space for pin
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+2 24 -20 8 20 -20 8 10
+2 24 -20 8 10 -20 10 10
+2 24 -20 10 -10 -20 8 -10
+2 24 -20 8 -10 -20 8 -20
+2 24 20 8 -20 20 8 -10
+2 24 20 8 -10 20 10 -10
+2 24 20 10 10 20 8 10
+2 24 20 8 10 20 8 20
+2 24 -16 8 10 -20 8 10
+2 24 -20 8 -10 -16 8 -10
+2 24 16 8 -10 20 8 -10
+2 24 20 8 10 16 8 10
+2 24 2 3 10 2 10 10
+2 24 2 3 -10 2 10 -10
+2 24 -2 3 10 -2 10 10
+2 24 -2 3 -10 -2 10 -10
+1 16 -9 3 0 0 0 7 0 1 0 -10 0 0 p/recte3.dat
+1 16 9 3 0 0 0 -7 0 1 0 10 0 0 p/recte3.dat
+1 16 20 10 0 0 -1 0 1 0 0 0 0 1 p/peghole.dat
+1 16 2 10 0 0 1 0 6 0 0 0 0 6 p/4-4edge.dat
+1 16 -2 10 0 0 1 0 6 0 0 0 0 6 p/4-4edge.dat
+1 16 -20 10 0 0 1 0 1 0 0 0 0 1 p/peghole.dat
+1 16 20 10 0 0 1 0 0 0 10 10 0 0 p/2-4edge.dat
+1 16 2 10 0 0 1 0 0 0 10 10 0 0 p/2-4edge.dat
+1 16 -2 10 0 0 1 0 0 0 10 10 0 0 p/2-4edge.dat
+1 16 -20 10 0 0 1 0 0 0 10 10 0 0 p/2-4edge.dat
+1 16 20 10 0 0 -1 0 0 0 -8 8 0 0 p/2-4ndis.dat
+1 16 2 10 0 0 1 0 0 0 -6 6 0 0 p/2-4ndis.dat
+1 16 -2 10 0 0 -1 0 0 0 -6 6 0 0 p/2-4ndis.dat
+1 16 -20 10 0 0 1 0 0 0 -8 8 0 0 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 18 10 0 0 -16 0 6 0 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -18 10 0 0 16 0 6 0 0 0 0 6 p/4-4cyli.dat
+1 16 20 10 0 0 -18 0 0 0 10 10 0 0 p/2-4cyli.dat
+1 16 -20 10 0 0 18 0 0 0 10 10 0 0 p/2-4cyli.dat
+
+0 BFC INVERTNEXT
+1 16 0 5.5 10 0 0 -16 -2.5 0 0 0 6 0 p/box3u2p.dat
+0 BFC INVERTNEXT
+1 16 0 5.5 -10 0 0 16 -2.5 0 0 0 -6 0 p/box3u2p.dat
+
+4 16 20 8 10 16 8 10 16 8 16 20 8 20
+4 16 20 8 20 16 8 16 -16 8 16 -20 8 20
+4 16 -20 8 20 -16 8 16 -16 8 10 -20 8 10
+4 16 -20 8 -10 -16 8 -10 -16 8 -16 -20 8 -20
+4 16 -20 8 -20 -16 8 -16 16 8 -16 20 8 -20
+4 16 20 8 -20 16 8 -16 16 8 -10 20 8 -10
+4 16 16 3 16 16 3 -16 -16 3 -16 -16 3 16
+4 16 20 10 8 20 10 10 20 8 10 20 2 8
+4 16 20 10 -10 20 10 -8 20 2 -8 20 8 -10
+4 16 20 8 20 20 0 20 20 2 8 20 8 10
+4 16 20 8 -20 20 8 -10 20 2 -8 20 0 -20
+4 16 20 0 -20 20 2 -8 20 2 8 20 0 20
+4 16 2 10 6 2 4 6 2 3 10 2 10 10
+4 16 2 10 -10 2 3 -10 2 4 -6 2 10 -6
+4 16 -2 10 10 -2 3 10 -2 4 6 -2 10 6
+4 16 -2 10 -6 -2 4 -6 -2 3 -10 -2 10 -10
+4 16 -20 10 10 -20 10 8 -20 2 8 -20 8 10
+4 16 -20 10 -8 -20 10 -10 -20 8 -10 -20 2 -8
+4 16 -20 8 20 -20 8 10 -20 2 8 -20 0 20
+4 16 -20 8 -20 -20 0 -20 -20 2 -8 -20 8 -10
+4 16 -20 0 20 -20 2 8 -20 2 -8 -20 0 -20
+4 16 20 10 10 2 10 10 16 8 10 20 8 10
+4 16 16 8 10 2 10 10 2 3 10 16 3 10
+4 16 -20 10 10 -20 8 10 -16 8 10 -2 10 10
+4 16 -16 8 10 -16 3 10 -2 3 10 -2 10 10
+4 16 20 10 -10 20 8 -10 16 8 -10 2 10 -10
+4 16 16 8 -10 16 3 -10 2 3 -10 2 10 -10
+4 16 -20 10 -10 -2 10 -10 -16 8 -10 -20 8 -10
+4 16 -16 8 -10 -2 10 -10 -2 3 -10 -16 3 -10
+4 16 -2 4 -6 -2 4 6 -2 3 10 -2 3 -10
+4 16 2 4 6 2 4 -6 2 3 -10 2 3 10
+
+1 16 0 8 0 -20 0 0 0 -8 0 0 0 20 p/box3u2p.dat
+1 16 -20 10 0 0 1 0 0 0 2 2 0 0 p/2-4ring4.dat
+1 16 -2 10 0 0 -1 0 0 0 2 2 0 0 p/2-4ring3.dat
+1 16 -2 10 0 0 -1 0 0 0 2 2 0 0 p/2-4ring4.dat
+1 16 20 10 0 0 -1 0 0 0 2 -2 0 0 p/2-4ring4.dat
+1 16 2 10 0 0 1 0 0 0 2 -2 0 0 p/2-4ring3.dat
+1 16 2 10 0 0 1 0 0 0 2 -2 0 0 p/2-4ring4.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug2-2x2.dat
+
+0 FILE p/2-4ring4.dat
+0 Ring  4 x 0.5
+0 Name: 2-4ring4.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2003-06-11 [pneaster] Corrected Values
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 5 0 0 4.6195 0 1.9135 3.6956 0 1.5308 4 0 0
+4 16 4.6195 0 1.9135 3.5355 0 3.5355 2.8284 0 2.8284 3.6956 0 1.5308
+4 16 3.5355 0 3.5355 1.9135 0 4.6195 1.5308 0 3.6956 2.8284 0 2.8284
+4 16 1.9135 0 4.6195 0 0 5 0 0 4 1.5308 0 3.6956
+4 16 0 0 5 -1.9135 0 4.6195 -1.5308 0 3.6956 0 0 4
+4 16 -1.9135 0 4.6195 -3.5355 0 3.5355 -2.8284 0 2.8284 -1.5308 0 3.6956
+4 16 -3.5355 0 3.5355 -4.6195 0 1.9135 -3.6956 0 1.5308 -2.8284 0 2.8284
+4 16 -4.6195 0 1.9135 -5 0 0 -4 0 0 -3.6956 0 1.5308
+
+0 FILE p/recte3.dat
+0 Rectangle Empty with 3 Edges
+0 Name: recte3.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+2 24  1 0  1 -1 0  1
+2 24 -1 0  1 -1 0 -1
+2 24  1 0 -1  1 0  1
+
+0 FILE parts/3660.dat
+0 Slope Brick 45  2 x  2 Inverted
+0 Name: 3660.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2002-09-13 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-07-02 [OrionP] Moved guts to subpart
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3660s01.dat
+4 16  20 24 -10  20  4 -30 -20  4 -30 -20 24 -10
+
+
+0 FILE parts/s/3660s01.dat
+0 ~Slope Brick 45  2 x  2 Inverted Without Front Face
+0 Name: s\3660s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-08-31 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-10-09 [mkennedy] Made use of stud2s and more box and rect primitives.
+
+0 !HELP Uncomment for front face
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+0 // 4 16  20 24 -10  20  4 -30 -20  4 -30 -20 24 -10
+
+0 BFC INVERTNEXT
+1 16 0 24 0 16 0 0 0 -20 0 0 0 6 p/box5.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+4 16 -20 24 10 -16 24 6 16 24 6 20 24 10
+4 16 -20 24 -10 -16 24 -6 -16 24 6 -20 24 10
+4 16 20 24 -10 16 24 -6 -16 24 -6 -20 24 -10
+4 16 20 24 10 16 24 6 16 24 -6 20 24 -10
+2 24 20 24 -10 20 24 10
+2 24 20 24 -10 -20 24 -10
+2 24 -20 24 -10 -20 24 10
+2 24 20 4 -30 20 24 -10
+2 24 -20 4 -30 -20 24 -10
+2 24 20 0 -30 20 0 10
+2 24 -20 0 -30 -20 0 10
+2 24 -18 0 -10 -18 0 -26
+2 24 18 0 -26 18 0 -10
+0 BFC INVERTNEXT
+1 16 0 10 -18 18 0 0 0 2 -8 0 0 -8 p/box2-5.dat
+4 16 20 24 10 20 24 -10 20 4 -30 20 0 10
+3 16 20 0 10 20 4 -30 20 0 -30
+1 16 0 12 10 20 0 0 0 0 12 0 -1 0 p/rect.dat
+4 16 -20 24 10 -20 0 10 -20 4 -30 -20 24 -10
+3 16 -20 0 -30 -20 4 -30 -20 0 10
+1 16 0 2 -30 20 0 0 0 0 2 0 1 0 p/rect.dat
+4 16 18 4 -26 18 20 -10 18 0 -10 18 0 -26
+4 16 -18 4 -26 -18 0 -26 -18 0 -10 -18 20 -10
+1 16 0 10 -10 18 0 0 0 0 -10 0 1 0 p/rect3.dat
+4 16 -20 0 10 20 0 10 18 0 -10 -18 0 -10
+4 16 -20 0 -30 -20 0 10 -18 0 -10 -18 0 -26
+4 16 20 0 -30 -20 0 -30 -18 0 -26 18 0 -26
+4 16 20 0 10 20 0 -30 18 0 -26 18 0 -10
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 4 -20 1 0 0 0 2 0 0 0 1 p/stud2a.dat
+1 16 10 4 -20 0 0 1 0 6 0 -1 0 0 p/stud2s.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 4 -20 1 0 0 0 2 0 0 0 1 p/stud2a.dat
+1 16 -10 4 -20 0 0 1 0 6 0 -1 0 0 p/stud2s.dat
+0
+
+0 FILE parts/2540.dat
+0 Plate  1 x  2 with Handle
+0 Name: 2540.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-14 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 20 8 10 16 8 6 -16 8 6 -20 8 10
+4 16 -20 8 10 -16 8 6 -16 8 -6 -20 8 -10
+4 16 -20 8 -10 -16 8 -6 16 8 -6 20 8 -10
+4 16 20 8 -10 16 8 -6 16 8 6 20 8 10
+2 24 20 8 10 20 8 -10
+2 24 20 8 -10 12 8 -10
+2 24 6 8 -10 -6 8 -10
+2 24 -12 8 -10 -20 8 -10
+2 24 -20 8 -10 -20 8 10
+2 24 -20 8 10 20 8 10
+2 24 20 0 10 20 0 -10
+2 24 20 0 -10 12 0 -10
+2 24 6 0 -10 -6 0 -10
+2 24 -12 0 -10 -20 0 -10
+2 24 -20 0 -10 -20 0 10
+2 24 -20 0 10 20 0 10
+2 24 20 0 10 20 8 10
+2 24 -20 0 10 -20 8 10
+2 24 20 0 -10 20 8 -10
+2 24 -20 0 -10 -20 8 -10
+2 24 12 0 -10 12 8 -10
+2 24 -12 0 -10 -12 8 -10
+2 24 6 0 -10 6 8 -10
+2 24 -6 0 -10 -6 8 -10
+2 24 12 0 -14.39 6 0 -14.39
+2 24 -12 0 -14.39 -6 0 -14.39
+2 24 12 8 -10 12 8 -20
+1 16 12 2 -20 0 1 0 6 0 0 0 0 -6 p/2-4edge.dat
+1 16 12 2 -20 0 1 0 -6 0 0 0 0 6 p/1-8edge.dat
+2 24 12 -2.24 -15.76 12 0 -14.39
+2 24 12 0 -14.39 12 0 -10
+2 24 6 8 -10 6 8 -20
+1 16 6 2 -20 0 1 0 6 0 0 0 0 -6 p/2-4edge.dat
+1 16 6 2 -20 0 1 0 -6 0 0 0 0 6 p/1-8edge.dat
+2 24 6 -2.24 -15.76 6 0 -14.39
+2 24 6 0 -14.39 6 0 -10
+2 24 -6 8 -10 -6 8 -20
+1 16 -6 2 -20 0 1 0 6 0 0 0 0 -6 p/2-4edge.dat
+1 16 -6 2 -20 0 1 0 -6 0 0 0 0 6 p/1-8edge.dat
+2 24 -6 -2.24 -15.76 -6 0 -14.39
+2 24 -6 0 -14.39 -6 0 -10
+2 24 -12 8 -10 -12 8 -20
+1 16 -12 2 -20 0 1 0 6 0 0 0 0 -6 p/2-4edge.dat
+1 16 -12 2 -20 0 1 0 -6 0 0 0 0 6 p/1-8edge.dat
+2 24 -12 -2.24 -15.76 -12 0 -14.39
+2 24 -12 0 -14.39 -12 0 -10
+1 16 20 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 12 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 6 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -6 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -12 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 -20 2 -20 0 1 0 4 0 0 0 0 4 p/4-4edge.dat
+4 16 -20 8 10 -20 0 10 20 0 10 20 8 10
+4 16 20 8 10 20 0 10 20 0 -10 20 8 -10
+4 16 -20 8 -10 -20 0 -10 -20 0 10 -20 8 10
+4 16 20 8 -10 20 0 -10 12 0 -10 12 8 -10
+4 16 -12 8 -10 -12 0 -10 -20 0 -10 -20 8 -10
+4 16 6 8 -10 6 0 -10 -6 0 -10 -6 8 -10
+4 16 20 0 -10 20 0 10 -20 0 10 -20 0 -10
+1 16 20 2 -20 0 -1 0 4 0 0 0 0 -4 p/4-4disc.dat
+1 16 -20 2 -20 0 1 0 4 0 0 0 0 4 p/4-4disc.dat
+1 16 12 2 -20 0 -1 0 2 0 0 0 0 -2 p/ring2.dat
+1 16 6 2 -20 0 1 0 2 0 0 0 0 2 p/ring2.dat
+1 16 -6 2 -20 0 -1 0 2 0 0 0 0 -2 p/ring2.dat
+1 16 -12 2 -20 0 1 0 2 0 0 0 0 2 p/ring2.dat
+4 16 12 8 -10 12 0 -10 12 0 -20 12 8 -20
+4 16 6 8 -20 6 0 -20 6 0 -10 6 8 -10
+4 16 -6 8 -10 -6 0 -10 -6 0 -20 -6 8 -20
+4 16 -12 8 -20 -12 0 -20 -12 0 -10 -12 8 -10
+4 16 12 8 -10 12 8 -20 6 8 -20 6 8 -10
+1 16 12 2 -20 0 -6 0 6 0 0 0 0 -6 p/2-4cyli.dat
+1 16 12 2 -20 0 -6 0 -6 0 0 0 0 6 p/1-8cyli.dat
+4 16 12 -2.24 -15.76 12 0 -14.39 6 0 -14.39 6 -2.24 -15.76
+4 16 12 0 -14.39 12 0 -10 6 0 -10 6 0 -14.39
+4 16 -12 8 -20 -12 8 -10 -6 8 -10 -6 8 -20
+1 16 -12 2 -20 0 6 0 6 0 0 0 0 -6 p/2-4cyli.dat
+1 16 -12 2 -20 0 6 0 -6 0 0 0 0 6 p/1-8cyli.dat
+4 16 -12 -2.24 -15.76 -6 -2.24 -15.76 -6 0 -14.39 -12 0 -14.39
+4 16 -12 0 -10 -12 0 -14.39 -6 0 -14.39 -6 0 -10
+1 16 20 2 -20 0 -40 0 4 0 0 0 0 4 p/4-4cyli.dat
+1 16 10 0 0 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 0 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/2445.dat
+0 Plate  2 x 12
+0 Name: 2445.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-09 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-12 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 100 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -60 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -80 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -100 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 116 0 0 0 -4 0 0 0 16 p/box5.dat
+4 16 120 8 20 116 8 16 -116 8 16 -120 8 20
+4 16 120 8 -20 -120 8 -20 -116 8 -16 116 8 -16
+4 16 120 8 20 120 8 -20 116 8 -16 116 8 16
+4 16 -120 8 20 -116 8 16 -116 8 -16 -120 8 -20
+1 16 0 8 0 120 0 0 0 -8 0 0 0 20 p/box5.dat
+1 16 110 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 110 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -110 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+0 FILE parts/30244.dat
+0 =Tile  1 x  2 Grille with Groove
+0 Name: 30244.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Part Alias UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HELP Part 30244 is the counterpart of 2412b. Visually, the two parts seem
+0 !HELP identical. This file is provided to make it easier to locate part files
+0 !HELP when using the numbers from other sources.
+0 !HELP 2412b is used for moulding opaque parts, 30244 for transparent parts.
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2013-12-14 [cwdee] Add = prefix
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/2412b.dat
+0
+
+0 FILE parts/45677.dat
+0 Wedge  4 x  4 x  0.667 Curved
+0 Name: 45677.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-05-18 [cwdee] Title change 2/3 -> 0.667
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 -21 16 -61 -24 16 -60 -24 16 6 -21 16 6
+4 16 21 16 -30 21 8 -30 21 8 6 21 16 6
+4 16 21 8 -30 21 4 -30 21 4 -21 21 8 -21
+4 16 21 4 -9 21 8 -9 21 8 -19 21 4 -19
+4 16 21 8 -6 21 4 -6 21 4 -1 21 8 -1
+4 16 21 4 6 21 8 6 21 8 1 21 4 1
+4 16 -21 8 -30 -21 16 -30 -21 16 6 -21 8 6
+4 16 -21 4 -30 -21 8 -30 -21 8 -21 -21 4 -21
+4 16 -21 8 -9 -21 4 -9 -21 4 -19 -21 8 -19
+4 16 -21 4 -6 -21 8 -6 -21 8 -1 -21 4 -1
+4 16 -21 8 6 -21 4 6 -21 4 1 -21 8 1
+4 16 24 16 -60 21 16 -61 21 16 6 24 16 6
+4 16 -20 16 10 -20 16 6 -36 16 6 -40 16 10
+4 16 -20 8 6 -20 8 10 20 8 10 20 8 6
+4 16 -21 8 -9 -21 8 -6 21 8 -6 21 8 -9
+4 16 -20 8 10 -20 8 6 -20 16 6 -20 16 10
+4 16 20 16 10 20 16 6 20 8 6 20 8 10
+4 16 21 8 6 20 8 6 20 16 6 21 16 6
+4 16 -21 16 6 -20 16 6 -20 8 6 -21 8 6
+4 16 -21 4 6 -21 8 6 21 8 6 21 4 6
+4 16 -21 8 -6 -21 4 -6 21 4 -6 21 8 -6
+4 16 -21 4 -9 -21 8 -9 -11 8 -9 -11 4 -9
+4 16 -9 4 -9 -9 8 -9 9 8 -9 9 4 -9
+4 16 11 4 -9 11 8 -9 21 8 -9 21 4 -9
+4 16 21 4 6 21 4 -6 -21 4 -6 -21 4 6
+4 16 20 16 6 20 16 10 40 16 10 36 16 6
+4 16 -40 16 10 -36 16 6 -36 16 -62 -40 16 -60
+4 16 -20 16 -70 -20 16 -66 20 16 -66 20 16 -70
+4 16 -20 8 -70 -20 16 -70 20 16 -70 20 8 -70
+4 16 -20 16 -66 -20 10 -66 20 10 -66 20 16 -66
+4 16 -21 16 -54 -21 16 -51 21 16 -51 21 16 -54
+4 16 40 16 10 20 16 10 20 8 10 40 8 10
+4 16 -20 16 10 -40 16 10 -40 8 10 -20 8 10
+4 16 -30 0 10 30 0 10 40 8 10 -40 8 10
+4 16 -30 0 -30 30 0 -30 30 0 10 -30 0 10
+4 16 40 8 10 30 0 10 30 0 -30 40 8 -30
+5 24 30 0 -30 40 8 -30 30 0 -25 29.5 0.5 -35
+5 24 -30 0 -30 -40 8 -30 -30 0 -25 -29.5 0.5 -35
+4 16 -30 0 10 -40 8 10 -40 8 -30 -30 0 -30
+4 16 36 16 6 40 16 10 40 16 -60 36 16 -62
+4 16 -40 16 -60 -40 8 -60 -40 8 10 -40 16 10
+4 16 40 8 -60 40 16 -60 40 16 10 40 8 10
+1 16 -10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+2 24 -40 16 10 -20 16 10
+2 24 40 16 10 20 16 10
+2 24 30 0 10 -30 0 10
+2 24 -40 8 10 -40 16 10
+2 24 40 8 10 40 16 10
+2 24 -20 8 10 -20 16 10
+2 24 20 8 10 20 16 10
+2 24 20 8 6 20 16 6
+2 24 -20 8 6 -20 16 6
+2 24 20 16 6 21 16 6
+2 24 -20 16 6 -21 16 6
+2 24 20 8 10 -20 8 10
+2 24 20 8 6 -20 8 6
+2 24 20 8 10 20 8 6
+2 24 20 16 10 20 16 6
+2 24 -20 16 10 -20 16 6
+2 24 -20 8 10 -20 8 6
+2 24 40 8 10 30 0 10
+2 24 -40 8 10 -30 0 10
+2 24 40 16 10 40 16 -60
+2 24 40 8 10 40 8 -60
+2 24 40 8 -60 40 16 -60
+2 24 -40 16 10 -40 16 -60
+2 24 -40 8 10 -40 8 -60
+2 24 -40 8 -60 -40 16 -60
+2 24 -30 0 10 -30 0 -30
+2 24 30 0 10 30 0 -30
+2 24 30 4 6 30 4 -6
+2 24 30 4 -14 30 4 -26
+2 24 -30 4 6 -30 4 -6
+2 24 -30 4 -14 -30 4 -26
+2 24 -20 16 -70 20 16 -70
+2 24 -20 16 -66 20 16 -66
+2 24 -20 8 -70 20 8 -70
+2 24 -20 8 -70 -20 16 -70
+2 24 20 8 -70 20 16 -70
+2 24 20 8 -70 40 8 -60
+4 16 20 11.5 -70 40 11.5 -60 40 8 -60 20 8 -70
+4 16 -20 8 -70 -40 8 -60 -40 11.5 -60 -20 11.5 -70
+2 24 -20 8 -70 -40 8 -60
+2 24 36 11.5 -62 36 16 -62
+2 24 -36 11.5 -62 -36 16 -62
+2 24 40 16 -60 36 16 -62
+2 24 -40 16 -60 -36 16 -62
+4 16 40 16 -60 40 11.5 -60 36 11.5 -62 36 16 -62
+4 16 -40 11.5 -60 -40 16 -60 -36 16 -62 -36 11.5 -62
+2 24 24 16 -60 26.1 16 -67
+2 24 -24 16 -60 -26.1 16 -67
+2 24 20 16 -70 26.1 16 -67
+2 24 -20 16 -70 -26.1 16 -67
+2 24 26.1 16 -67 26.1 11.5 -67
+2 24 24 16 -60 24 10 -60
+2 24 21 16 -61 21 9.167 -61
+2 24 22.4 16 -64.8 22.4 9.8 -64.8
+2 24 20 16 -66 20 10 -66
+2 24 -20 16 -66 -20 10 -66
+2 24 -22.4 16 -64.8 -22.4 9.8 -64.8
+2 24 -21 16 -61 -21 9.167 -61
+2 24 -24 16 -60 -24 10 -60
+2 24 -26.1 16 -67 -26.1 11.5 -67
+2 24 36 11.5 -62 26.1 11.5 -67
+2 24 -36 11.5 -62 -26.1 11.5 -67
+4 16 20 16 -70 26.1 16 -67 26.1 11.5 -67 20 11.5 -70
+4 16 -20 11.5 -70 -26.1 11.5 -67 -26.1 16 -67 -20 16 -70
+2 24 21 16 -61 22.4 16 -64.8
+2 24 -21 16 -61 -22.4 16 -64.8
+2 24 20 16 -66 22.4 16 -64.8
+2 24 -20 16 -66 -22.4 16 -64.8
+2 24 25 11.5 -63.5 36 11.5 -58
+2 24 -25 11.5 -63.5 -36 11.5 -58
+2 24 25 11.5 -63.5 26.1 11.5 -67
+2 24 -25 11.5 -63.5 -26.1 11.5 -67
+2 24 36 8 6 36 8 -34
+2 24 -36 8 6 -36 8 -34
+2 24 36 8 -34 36 9 -40
+2 24 -36 8 -34 -36 9 -40
+2 24 36 9 -40 36 10.5 -50
+2 24 -36 9 -40 -36 10.5 -50
+2 24 36 10.5 -50 36 11.5 -58
+2 24 -36 10.5 -50 -36 11.5 -58
+2 24 36 16 6 36 16 -62
+2 24 -36 11.5 -58 -36 11.5 -62
+2 24 36 11.5 -58 36 11.5 -62
+2 24 -36 16 6 -36 16 -62
+4 16 26.1 11.5 -67 25 11.5 -63.5 36 11.5 -58 36 11.5 -62
+4 16 -25 11.5 -63.5 -26.1 11.5 -67 -36 11.5 -62 -36 11.5 -58
+4 16 21 16 -61 24 16 -60 26.1 16 -67 22.4 16 -64.8
+4 16 -24 16 -60 -21 16 -61 -22.4 16 -64.8 -26.1 16 -67
+4 16 20 16 -70 20 16 -66 22.4 16 -64.8 26.1 16 -67
+4 16 -20 16 -66 -20 16 -70 -26.1 16 -67 -22.4 16 -64.8
+2 24 20 10 -66 -20 10 -66
+2 24 20 10 -66 22.4 9.8 -64.8
+4 16 20 10 -66 22.4 9.8 -64.8 22.4 16 -64.8 20 16 -66
+4 16 -22.4 9.8 -64.8 -20 10 -66 -20 16 -66 -22.4 16 -64.8
+4 16 -20.2 10 -66 -22.4 9.8 -64.8 22.4 9.8 -64.8 20.2 10 -66
+2 24 -20 10 -66 -22.4 9.8 -64.8
+2 24 21 16 -54 21 16 -59
+2 24 -21 16 -54 -21 16 -59
+2 24 21 8 -54 21 8.83 -59
+4 16 21 8 -54 21 8.83 -59 -21 8.83 -59 -21 8 -54
+4 16 16 8.83 -59 16 9.16 -61 -16 9.16 -61 -16 8.83 -59
+4 16 21 8.83 -59 21 8 -54 21 16 -54 21 16 -59
+2 24 21 8.83 -59 21 16 -59
+2 24 -21 8.83 -59 -21 16 -59
+4 16 -21 8 -54 -21 8.83 -59 -21 16 -59 -21 16 -54
+2 24 -21 8 -54 -21 8.83 -59
+2 24 21 9.16 -61 22.4 9.8 -64.8
+4 16 21 9.16 -61 22.4 9.8 -64.8 -22.4 9.8 -64.8 -21 9.16 -61
+4 16 22.4 9.8 -64.8 21 9.16 -61 21 16 -61 22.4 16 -64.8
+4 16 -21 9.16 -61 -22.4 9.8 -64.8 -22.4 16 -64.8 -21 16 -61
+2 24 -21 9.16 -61 -22.4 9.8 -64.8
+2 24 21 16 -54 21 8 -54
+2 24 -21 16 -54 -21 8 -54
+2 24 21 16 -54 -21 16 -54
+2 24 21 16 -51 -21 16 -51
+2 24 21 16 -51 21 16 6
+2 24 -21 16 -51 -21 16 6
+2 24 24 16 -60 24 16 -57.5
+2 24 24 16 -52.5 24 16 6
+2 24 -24 16 -60 -24 16 -57.5
+2 24 -24 16 -52.5 -24 16 6
+2 24 24 16 6 36 16 6
+2 24 -24 16 6 -36 16 6
+2 24 21 16 6 21 4 6
+2 24 -21 16 6 -21 4 6
+2 24 21 4 6 21 4 1
+2 24 21 4 -1 21 4 -6
+2 24 -21 4 6 -21 4 1
+2 24 -21 4 -1 -21 4 -6
+2 24 21 4 6 -21 4 6
+2 24 21 4 -6 -21 4 -6
+2 24 21 4 -9 11 4 -9
+2 24 9 4 -9 -9 4 -9
+2 24 -11 4 -9 -21 4 -9
+2 24 21 8 -6 -21 8 -6
+2 24 -11 8 -9 -21 8 -9
+2 24 21 8 -9 11 8 -9
+2 24 9 8 -9 -9 8 -9
+2 24 21 4 -6 21 8 -6
+2 24 21 4 -9 21 8 -9
+2 24 -21 4 -6 -21 8 -6
+2 24 -21 4 -9 -21 8 -9
+2 24 21 8 -6 21 8 -9
+2 24 -21 8 -6 -21 8 -9
+2 24 21 4 -9 21 4 -19
+2 24 21 4 -21 21 4 -30
+2 24 -21 4 -9 -21 4 -19
+2 24 -21 4 -21 -21 4 -30
+4 16 -21 4 -9 21 4 -9 21 4 -30 -21 4 -30
+4 16 30 4 6 36 8 6 36 8 -34 30 4 -34
+4 16 -36 8 6 -30 4 6 -30 4 -34 -36 8 -34
+2 24 30 4 6 36 8 6
+2 24 -30 4 6 -36 8 6
+2 24 30 4 6 24 4 6
+2 24 -30 4 6 -24 4 6
+2 24 24 4 6 24 16 6
+2 24 36 8 6 36 16 6
+2 24 -36 8 6 -36 16 6
+2 24 -24 4 6 -24 16 6
+4 16 36 8 6 24 8 6 24 16 6 36 16 6
+4 16 -36 16 6 -24 16 6 -24 8 6 -36 8 6
+4 16 24 8 6 36 8 6 30 4 6 24 4 6
+4 16 -36 8 6 -24 8 6 -24 4 6 -30 4 6
+4 16 36 8 6 36 16 6 36 16 -34 36 8 -34
+4 16 -36 16 6 -36 8 6 -36 8 -34 -36 16 -34
+4 16 36 11.5 -58 36 16 -58 36 16 -62 36 11.5 -62
+4 16 -36 16 -58 -36 11.5 -58 -36 11.5 -62 -36 16 -62
+2 24 24 4 6 24 4 -34
+2 24 -24 4 6 -24 4 -34
+4 16 24 16 6 24 4 6 24 4 -34 24 16 -34
+4 16 -24 4 6 -24 16 6 -24 16 -34 -24 4 -34
+4 16 30 4 6 30 4 -34 24 4 -34 24 4 6
+4 16 -24 4 6 -24 4 -34 -30 4 -34 -30 4 6
+2 24 30 0 -30 29 1 -40
+3 16 30 0 -30 29.5 0.5 -35 40 8 -30
+5 24 29.5 0.5 -35 40 8 -30 30 0 -30 40 8 -35
+5 24 -29.5 0.5 -35 -40 8 -30 -30 0 -30 -40 8 -35
+3 16 -29.5 0.5 -35 -30 0 -30 -40 8 -30
+3 16 29.5 0.5 -35 40 8 -35 40 8 -30
+3 16 -40 8 -35 -29.5 0.5 -35 -40 8 -30
+3 16 40 8 -35 29.5 0.5 -35 29 1 -40
+5 24 40 8 -35 29 1 -40 29.5 0.5 -35 40 8 -40
+5 24 -40 8 -35 -29 1 -40 -29.5 0.5 -35 -40 8 -40
+3 16 -29.5 0.5 -35 -40 8 -35 -29 1 -40
+4 16 29 1 -40 30 0 -30 -30 0 -30 -29 1 -40
+2 24 29 1 -40 27 2.6 -50
+3 16 29 1 -40 28 1.8 -45 40 8 -40
+5 24 28 1.8 -45 40 8 -40 29 1 -40 40 8 -45
+5 24 -28 1.8 -45 -40 8 -40 -29 1 -40 -40 8 -45
+3 16 -28 1.8 -45 -29 1 -40 -40 8 -40
+3 16 28 1.8 -45 40 8 -45 40 8 -40
+3 16 -40 8 -45 -28 1.8 -45 -40 8 -40
+5 24 29.5 0.5 -35 40 8 -35 30 0 -30 29 1 -40
+5 24 -29.5 0.5 -35 -40 8 -35 -30 0 -30 -29 1 -40
+3 16 40 8 -45 28 1.8 -45 27 2.6 -50
+5 24 40 8 -45 27 2.6 -50 28 1.8 -45 40 8 -50
+5 24 -40 8 -45 -27 2.6 -50 -28 1.8 -45 -40 8 -50
+3 16 -28 1.8 -45 -40 8 -45 -27 2.6 -50
+3 16 29 1 -40 40 8 -40 40 8 -35
+3 16 -40 8 -40 -29 1 -40 -40 8 -35
+5 24 29 1 -40 40 8 -40 29.5 0.5 -35 28 1.8 -45
+5 24 -29 1 -40 -40 8 -40 -29.5 0.5 -35 -28 1.8 -45
+4 16 27 2.6 -50 29 1 -40 -29 1 -40 -27 2.6 -50
+2 24 27 2.6 -50 23.5 5 -60
+3 16 27 2.6 -50 25.25 3.8 -55 40 8 -50
+5 24 25.25 3.8 -55 40 8 -50 27 2.6 -50 40 8 -55
+5 24 -25.25 3.8 -55 -40 8 -50 -27 2.6 -50 -40 8 -55
+3 16 -25.25 3.8 -55 -27 2.6 -50 -40 8 -50
+3 16 25.25 3.8 -55 40 8 -55 40 8 -50
+3 16 -40 8 -55 -25.25 3.8 -55 -40 8 -50
+5 24 28 1.8 -45 40 8 -45 29 1 -40 27 2.6 -50
+5 24 -28 1.8 -45 -40 8 -45 -29 1 -40 -27 2.6 -50
+3 16 40 8 -55 25.25 3.8 -55 23.5 5 -60
+5 24 40 8 -55 23.5 5 -60 25.25 3.8 -55 40 8 -60
+5 24 -40 8 -55 -23.5 5 -60 -25.25 3.8 -55 -40 8 -60
+3 16 -25.25 3.8 -55 -40 8 -55 -23.5 5 -60
+3 16 23.5 5 -60 40 8 -60 40 8 -55
+3 16 -40 8 -60 -23.5 5 -60 -40 8 -55
+5 24 25.25 3.8 -55 40 8 -55 27 2.6 -50 23.5 5 -60
+5 24 -25.25 3.8 -55 -40 8 -55 -27 2.6 -50 -23.5 5 -60
+3 16 27 2.6 -50 40 8 -50 40 8 -45
+3 16 -40 8 -50 -27 2.6 -50 -40 8 -45
+5 24 27 2.6 -50 40 8 -50 28 1.8 -45 25.25 3.8 -55
+5 24 -27 2.6 -50 -40 8 -50 -28 1.8 -45 -25.25 3.8 -55
+4 16 23.5 5 -60 27 2.6 -50 -27 2.6 -50 -23.5 5 -60
+2 24 23.5 5 -60 20 8 -70
+4 16 20 8 -70 23.5 5 -60 -23.5 5 -60 -20 8 -70
+3 16 23.5 5 -60 20 8 -70 40 8 -60
+5 24 23.5 5 -60 40 8 -60 20 8 -70 25.25 3.8 -55
+5 24 -23.5 5 -60 -40 8 -60 -20 8 -70 -25.25 3.8 -55
+3 16 -20 8 -70 -23.5 5 -60 -40 8 -60
+2 24 -30 0 -30 -29 1 -40
+2 24 -29 1 -40 -27 2.6 -50
+2 24 -27 2.6 -50 -23.5 5 -60
+2 24 -23.5 5 -60 -20 8 -70
+4 16 36 9 -40 36 8 -34 36 16 -34 36 16 -40
+4 16 -36 8 -34 -36 9 -40 -36 16 -40 -36 16 -34
+4 16 24 4 -34 24 5.5 -40 24 16 -40 24 16 -34
+4 16 -24 5.5 -40 -24 4 -34 -24 16 -34 -24 16 -40
+2 24 30 4 -34 27 5.5 -40
+3 16 30 4 -34 36 9 -40 27 5.5 -40
+3 16 30 4 -34 36 8 -34 36 9 -40
+4 16 36 16 -40 36 16 -50 36 10.5 -50 36 9 -40
+4 16 -36 16 -50 -36 16 -40 -36 9 -40 -36 10.5 -50
+3 16 30 4 -34 27 5.5 -40 24 5.5 -40
+3 16 24 4 -34 30 4 -34 24 5.5 -40
+4 16 24 5.5 -40 24 7.4 -50 24 16 -50 24 16 -40
+4 16 -24 7.4 -50 -24 5.5 -40 -24 16 -40 -24 16 -50
+3 16 -30 4 -34 -24 5.5 -40 -27 5.5 -40
+3 16 -30 4 -34 -24 4 -34 -24 5.5 -40
+3 16 -30 4 -34 -27 5.5 -40 -36 9 -40
+3 16 -36 8 -34 -30 4 -34 -36 9 -40
+2 24 27 5.5 -40 24 7.4 -50
+3 16 27 5.5 -40 36 10.5 -50 24 7.4 -50
+3 16 27 5.5 -40 36 9 -40 36 10.5 -50
+3 16 36 10.5 -50 24 10 -60 24 7.4 -50
+3 16 36 10.5 -50 36 11.5 -58 24 10 -60
+3 16 -36 10.5 -50 -24 7.4 -50 -24 10 -60
+3 16 -36 11.5 -58 -36 10.5 -50 -24 10 -60
+4 16 36 16 -50 36 16 -58 36 11.5 -58 36 10.5 -50
+4 16 -36 16 -58 -36 16 -50 -36 10.5 -50 -36 11.5 -58
+3 16 27 5.5 -40 24 7.4 -50 24 5.5 -40
+4 16 24 7.4 -50 24 10 -60 24 16 -60 24 16 -50
+4 16 -24 10 -60 -24 7.4 -50 -24 16 -50 -24 16 -60
+3 16 -27 5.5 -40 -24 5.5 -40 -24 7.4 -50
+3 16 -27 5.5 -40 -24 7.4 -50 -36 10.5 -50
+3 16 -36 9 -40 -27 5.5 -40 -36 10.5 -50
+2 24 -30 4 -34 -27 5.5 -40
+2 24 -27 5.5 -40 -24 7.4 -50
+2 24 24 4 -34 24 5.5 -40
+2 24 24 5.5 -40 24 7.4 -50
+2 24 24 7.4 -50 24 10 -60
+2 24 24 10 -60 25 11.5 -63.5
+4 16 24 10 -60 25 11.5 -63.5 25 16 -63.5 24 16 -60
+4 16 25 11.5 -63.5 26.1 11.5 -67 26.1 16 -67 25 16 -63.5
+4 16 -26.1 11.5 -67 -25 11.5 -63.5 -25 16 -63.5 -26.1 16 -67
+4 16 -25 11.5 -63.5 -24 10 -60 -24 16 -60 -25 16 -63.5
+2 24 -24 4 -34 -24 5.5 -40
+2 24 -24 5.5 -40 -24 7.4 -50
+2 24 -24 7.4 -50 -24 10 -60
+2 24 -24 10 -60 -25 11.5 -63.5
+3 16 25 11.5 -63.5 24 10 -60 36 11.5 -58
+3 16 -24 10 -60 -25 11.5 -63.5 -36 11.5 -58
+2 24 21 4 -30 21 5.28 -39
+2 24 21 5.57 -41 21 7 -51
+2 24 -21 4 -30 -21 5.28 -39
+2 24 -21 5.57 -41 -21 7 -51
+4 16 21 7 -51 21 4 -30 21 16 -30 21 16 -51
+4 16 -21 4 -30 -21 7 -51 -21 16 -51 -21 16 -30
+4 16 16 6.28 -46 21 7 -51 11 7 -51 11 6.28 -46
+4 16 9 6.29 -46 9 7 -51 -9 7 -51 -9 6.29 -46
+4 16 -11 6.28 -46 -11 7 -51 -21 7 -51 -16 6.28 -46
+4 16 21 7 -51 21 16 -51 -21 16 -51 -21 7 -51
+4 16 21 16 -54 21 8 -54 -21 8 -54 -21 16 -54
+2 24 11 7 -51 21 7 -51
+2 24 -9 7 -51 9 7 -51
+2 24 -21 7 -51 -11 7 -51
+2 24 -21 8 -54 21 8 -54
+2 24 21 16 -51 21 7 -51
+2 24 -21 16 -51 -21 7 -51
+1 16 18.5 4 0 0 0 -2.5 0 4 0 1 0 0 p/box4-1.dat
+1 16 -18.5 4 0 0 0 2.5 0 4 0 -1 0 0 p/box4-1.dat
+1 16 18.5 4 -20 0 0 -2.5 0 4 0 1 0 0 p/box4-1.dat
+1 16 -18.5 4 -20 0 0 2.5 0 4 0 -1 0 0 p/box4-1.dat
+1 16 10 4 -11.5 -1 0 0 0 4 0 0 0 -2.5 p/box4-4a.dat
+1 16 -10 4 -11.5 -1 0 0 0 4 0 0 0 -2.5 p/box4-4a.dat
+2 24 11 4 -9 11 8 -9
+2 24 9 4 -9 9 8 -9
+2 24 -11 4 -9 -11 8 -9
+2 24 -9 4 -9 -9 8 -9
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 30 8 -50 1 0 0 0 -2 0 0 0 1 p/stud3a.dat
+2 24 30 7.95 -46 31.53 8.4 -46.3
+2 24 32.82 8.95 -47.17 31.53 8.4 -46.3
+2 24 32.82 8.95 -47.17 33.69 9.55 -48.46
+2 24 34 10 -50 33.69 9.55 -48.46
+2 24 34 10 -50 33.69 10.25 -51.53
+2 24 32.82 10.35 -52.82 33.69 10.25 -51.53
+2 24 32.82 10.35 -52.82 31.53 10.1 -53.69
+2 24 30 9.7 -54 31.53 10.1 -53.69
+2 24 30 7.95 -46 28.46 7.6 -46.3
+2 24 27.17 7.45 -47.17 28.46 7.6 -46.3
+2 24 27.17 7.45 -47.17 26.3 7.55 -48.46
+2 24 26 7.85 -50 26.3 7.55 -48.46
+2 24 26 7.85 -50 26.3 8.25 -51.53
+2 24 27.17 8.7 -52.82 26.3 8.25 -51.53
+2 24 27.17 8.7 -52.82 28.46 9.2 -53.69
+2 24 30 9.7 -54 28.46 9.2 -53.69
+1 16 -30 8 -50 1 0 0 0 -2 0 0 0 1 p/stud3a.dat
+2 24 -30 7.95 -46 -31.53 8.4 -46.3
+2 24 -32.82 8.95 -47.17 -31.53 8.4 -46.3
+2 24 -32.82 8.95 -47.17 -33.69 9.55 -48.46
+2 24 -34 10 -50 -33.69 9.55 -48.46
+2 24 -34 10 -50 -33.69 10.25 -51.53
+2 24 -32.82 10.35 -52.82 -33.69 10.25 -51.53
+2 24 -32.82 10.35 -52.82 -31.53 10.1 -53.69
+2 24 -30 9.7 -54 -31.53 10.1 -53.69
+2 24 -30 7.95 -46 -28.46 7.6 -46.3
+2 24 -27.17 7.45 -47.17 -28.46 7.6 -46.3
+2 24 -27.17 7.45 -47.17 -26.3 7.55 -48.46
+2 24 -26 7.85 -50 -26.3 7.55 -48.46
+2 24 -26 7.85 -50 -26.3 8.25 -51.53
+2 24 -27.17 8.7 -52.82 -26.3 8.25 -51.53
+2 24 -27.17 8.7 -52.82 -28.46 9.2 -53.69
+2 24 -30 9.7 -54 -28.46 9.2 -53.69
+2 24 16 4 -30 16 4 -40
+2 24 16 4 -30 16 5.57 -41
+2 24 4 4 -30 4 4 -40
+2 24 4 4 -30 4 5.42 -40
+2 24 16 5.28 -39 21 5.28 -39
+2 24 16 5.57 -41 21 5.57 -41
+2 24 11 6.28 -46 11 7 -51
+2 24 9 6.28 -46 9 7 -51
+3 16 16 4 -40 16 4 -30 16 5.42 -40
+3 16 4 4 -30 4 4 -40 4 5.42 -40
+4 16 9 6.28 -46 11 6.28 -46 11 8 -46 9 8 -46
+2 24 11 6.28 -46 11 8 -46
+2 24 9 6.28 -46 9 8 -46
+2 24 11 7 -51 11 8 -51
+2 24 9 7 -51 9 8 -51
+2 24 11 8 -51 9 8 -51
+2 24 11 8 -46 9 8 -46
+2 24 11 6.28 -46 9 6.28 -46
+2 24 -9 6.28 -46 -11 6.28 -46
+2 24 11 8 -46 11 8 -51
+2 24 9 8 -46 9 8 -51
+4 16 9 8 -51 9 8 -46 11 8 -46 11 8 -51
+4 16 11 6.28 -46 11 7 -51 11 8 -51 11 8 -46
+4 16 9 7 -51 9 6.28 -46 9 8 -46 9 8 -51
+2 24 -16 4 -30 -16 4 -40
+2 24 -16 4 -30 -16 5.57 -41
+2 24 -4 4 -30 -4 4 -40
+2 24 -4 4 -30 -4 5.42 -40
+2 24 -16 5.28 -39 -21 5.28 -39
+2 24 -16 5.57 -41 -21 5.57 -41
+2 24 -11 6.28 -46 -11 7 -51
+2 24 -9 6.28 -46 -9 7 -51
+3 16 -16 4 -30 -16 4 -40 -16 5.42 -40
+3 16 -4 4 -40 -4 4 -30 -4 5.42 -40
+4 16 -9 8 -46 -11 8 -46 -11 6.28 -46 -9 6.28 -46
+2 24 -11 6.28 -46 -11 8 -46
+2 24 -9 6.28 -46 -9 8 -46
+2 24 -11 7 -51 -11 8 -51
+2 24 -9 7 -51 -9 8 -51
+2 24 -11 8 -51 -9 8 -51
+2 24 -11 8 -46 -9 8 -46
+2 24 -11 8 -46 -11 8 -51
+2 24 -9 8 -46 -9 8 -51
+4 16 -9 8 -46 -9 8 -51 -11 8 -51 -11 8 -46
+4 16 -11 7 -51 -11 6.28 -46 -11 8 -46 -11 8 -51
+4 16 -9 6.28 -46 -9 7 -51 -9 8 -51 -9 8 -46
+4 16 16 5.28 -39 16 4 -30 21 4 -30 21 5.28 -39
+4 16 -16 4 -30 -16 5.28 -39 -21 5.28 -39 -21 4 -30
+4 16 4 4 -30 4 5.42 -40 -4 5.42 -40 -4 4 -30
+4 16 4 5.42 -40 4.48 5.75 -42.28 -4.48 5.75 -42.28 -4 5.42 -40
+4 16 4.48 5.75 -42.28 5.8 6.03 -44.2 -5.8 6.03 -44.2 -4.48 5.75 -42.28
+4 16 5.8 6.03 -44.2 7.72 6.22 -45.52 -7.72 6.22 -45.52 -5.8 6.03 -44.2
+4 16 7.72 6.22 -45.52 10 6.29 -46 -10 6.29 -46 -7.72 6.22 -45.52
+3 16 16 6.29 -46 15.52 5.75 -42.28 16 5.43 -40
+3 16 -16 5.43 -40 -15.52 5.75 -42.28 -16 6.29 -46
+3 16 16 6.29 -46 14.2 6.03 -44.2 15.52 5.75 -42.28
+3 16 -15.52 5.75 -42.28 -14.2 6.03 -44.2 -16 6.29 -46
+3 16 16 6.29 -46 12.28 6.22 -45.52 14.2 6.03 -44.2
+3 16 -14.2 6.03 -44.2 -12.28 6.22 -45.52 -16 6.29 -46
+3 16 16 6.29 -46 10 6.29 -46 12.28 6.22 -45.52
+3 16 -10 6.29 -46 -16 6.29 -46 -12.28 6.22 -45.52
+4 16 21 5.57 -41 21 7 -51 16 6.28 -46 16 5.57 -41
+4 16 -21 5.57 -41 -16 5.57 -41 -16 6.27 -46 -21 7 -51
+4 16 16 4 -30 16 4 -40 4 4 -40 4 4 -30
+1 16 10 4 -40 6 0 0 0 -1 0 0 0 -6 p/2-4disc.dat
+1 16 10 4 -40 6 0 0 0 1 0 0 0 -6 p/2-4edge.dat
+4 16 -4 4 -30 -4 4 -40 -16 4 -40 -16 4 -30
+1 16 -10 4 -40 6 0 0 0 -1 0 0 0 -6 p/2-4disc.dat
+1 16 -10 4 -40 6 0 0 0 1 0 0 0 -6 p/2-4edge.dat
+2 24 16 5.28 -39 16 8 -39
+2 24 21 5.28 -39 21 8 -39
+2 24 16 5.57 -41 16 8 -41
+2 24 21 5.57 -41 21 8 -41
+2 24 16 8 -39 21 8 -39
+2 24 16 8 -41 21 8 -41
+2 24 21 8 -39 21 8 -41
+2 24 16 8 -39 16 8 -41
+4 16 16 8 -39 16 8 -41 16 5.57 -41 16 5.28 -39
+4 16 21 8 -39 21 8 -41 16 8 -41 16 8 -39
+4 16 16 5.28 -39 21 5.28 -39 21 8 -39 16 8 -39
+4 16 16 8 -41 21 8 -41 21 5.57 -41 16 5.57 -41
+2 24 -16 5.28 -39 -16 8 -39
+2 24 -21 5.28 -39 -21 8 -39
+2 24 -16 5.57 -41 -16 8 -41
+2 24 -21 5.57 -41 -21 8 -41
+2 24 -16 8 -39 -21 8 -39
+2 24 -16 8 -41 -21 8 -41
+2 24 -21 8 -39 -21 8 -41
+2 24 -16 8 -39 -16 8 -41
+4 16 -16 5.28 -39 -16 5.57 -41 -16 8 -41 -16 8 -39
+4 16 -16 8 -39 -16 8 -41 -21 8 -41 -21 8 -39
+4 16 -16 8 -39 -21 8 -39 -21 5.28 -39 -16 5.28 -39
+4 16 -16 5.57 -41 -21 5.57 -41 -21 8 -41 -16 8 -41
+1 16 30 8 -10 1 0 0 0 -2 0 0 0 1 p/stud3a.dat
+1 16 30 8 -10 0 0 -4 0 -4 0 4 0 0 p/2-4cyli.dat
+1 16 30 4 -10 0 0 -4 0 -1 0 4 0 0 p/2-4edge.dat
+5 24 31.54 8 -13.7 31.54 5.02 -13.7 30 8 -14 32.81 8 -12.85
+5 24 32.84 8 -12.83 32.84 5.88 -12.83 31.54 8 -13.7 33.71 8 -11.55
+5 24 33.71 8 -11.53 33.71 6.46 -11.53 32.84 8 -12.83 34 8 -10
+5 24 34 8 -10 34 6.66 -10 33.71 8 -11.53 33.7 8 -8.47
+5 24 33.7 8 -8.47 33.7 6.46 -8.47 34 8 -10 32.85 8 -7.2
+5 24 32.83 8 -7.17 32.83 5.88 -7.17 33.7 8 -8.47 31.56 8 -6.32
+5 24 31.53 8 -6.3 31.53 5.02 -6.3 32.83 8 -7.17 30 8 -5.98
+2 24 30 4 -6 31.53 5.02 -6.3
+2 24 32.82 5.88 -7.17 31.53 5.02 -6.3
+2 24 32.82 5.88 -7.17 33.69 6.46 -8.46
+2 24 34 6.66 -10 33.69 6.46 -8.46
+2 24 34 6.66 -10 33.69 6.46 -11.53
+2 24 32.82 5.88 -12.82 33.69 6.46 -11.53
+2 24 32.82 5.88 -12.82 31.53 5.02 -13.69
+2 24 30 4 -14 31.53 5.02 -13.69
+4 16 31.53 8 -6.3 30 8 -6 30 4 -6 31.53 5.02 -6.3
+4 16 32.82 8 -7.17 31.53 8 -6.3 31.53 5.02 -6.3 32.82 5.88 -7.17
+4 16 33.69 8 -8.46 32.82 8 -7.17 32.82 5.88 -7.17 33.69 6.46 -8.46
+4 16 34 8 -10 33.69 8 -8.46 33.69 6.46 -8.46 34 6.66 -10
+4 16 33.69 8 -11.53 34 8 -10 34 6.66 -10 33.69 6.46 -11.53
+4 16 32.82 8 -12.82 33.69 8 -11.53 33.69 6.46 -11.53 32.82 5.88 -12.82
+4 16 31.53 8 -13.69 32.82 8 -12.82 32.82 5.88 -12.82 31.53 5.02 -13.69
+4 16 30 8 -14 31.53 8 -13.69 31.53 5.02 -13.69 30 4 -14
+1 16 -30 8 -10 -1 0 0 0 -2 0 0 0 -1 p/stud3a.dat
+1 16 -30 8 -10 0 0 4 0 -4 0 -4 0 0 p/2-4cyli.dat
+1 16 -30 4 -10 0 0 4 0 -1 0 -4 0 0 p/2-4edge.dat
+5 24 -31.54 8 -13.7 -31.54 5.02 -13.7 -30 8 -14 -32.81 8 -12.85
+5 24 -32.84 8 -12.83 -32.84 5.88 -12.83 -31.54 8 -13.7 -33.71 8 -11.55
+5 24 -33.71 8 -11.53 -33.71 6.46 -11.53 -32.84 8 -12.83 -34 8 -10
+5 24 -34 8 -10 -34 6.66 -10 -33.71 8 -11.53 -33.7 8 -8.47
+5 24 -33.7 8 -8.47 -33.7 6.46 -8.47 -34 8 -10 -32.85 8 -7.2
+5 24 -32.83 8 -7.17 -32.83 5.88 -7.17 -33.7 8 -8.47 -31.56 8 -6.32
+5 24 -31.53 8 -6.3 -31.53 5.02 -6.3 -32.83 8 -7.17 -30 8 -5.98
+2 24 -30 4 -14 -31.53 5.02 -13.7
+2 24 -32.82 5.88 -12.83 -31.53 5.02 -13.7
+2 24 -32.82 5.88 -12.83 -33.69 6.46 -11.54
+2 24 -34 6.66 -10 -33.69 6.46 -11.54
+2 24 -34 6.66 -10 -33.69 6.46 -8.47
+2 24 -32.82 5.88 -7.18 -33.69 6.46 -8.47
+2 24 -32.82 5.88 -7.18 -31.53 5.02 -6.31
+2 24 -30 4 -6 -31.53 5.02 -6.31
+4 16 -31.53 8 -13.7 -30 8 -14 -30 4 -14 -31.53 5.02 -13.7
+4 16 -32.82 8 -12.83 -31.53 8 -13.7 -31.53 5.02 -13.7 -32.82 5.88 -12.83
+4 16 -33.69 8 -11.54 -32.82 8 -12.83 -32.82 5.88 -12.83 -33.69 6.46 -11.54
+4 16 -34 8 -10 -33.69 8 -11.54 -33.69 6.46 -11.54 -34 6.66 -10
+4 16 -33.69 8 -8.47 -34 8 -10 -34 6.66 -10 -33.69 6.46 -8.47
+4 16 -32.82 8 -7.18 -33.69 8 -8.47 -33.69 6.46 -8.47 -32.82 5.88 -7.18
+4 16 -31.53 8 -6.31 -32.82 8 -7.18 -32.82 5.88 -7.18 -31.53 5.02 -6.31
+4 16 -30 8 -6 -31.53 8 -6.31 -31.53 5.02 -6.31 -30 4 -6
+1 16 30 8 -30 1 0 0 0 -2 0 0 0 1 p/stud3a.dat
+1 16 30 8 -30 0 0 -4 0 -4 0 4 0 0 p/2-4cyli.dat
+1 16 30 4 -30 0 0 -4 0 -1 0 4 0 0 p/2-4edge.dat
+5 24 31.54 8 -33.7 31.54 5.02 -33.7 30 8 -34 32.81 8 -32.85
+5 24 32.84 8 -32.83 32.84 5.88 -32.83 31.54 8 -33.7 33.71 8 -31.55
+5 24 33.71 8 -31.53 33.71 6.46 -31.53 32.84 8 -32.83 34 8 -30
+5 24 34 8 -30 34 6.66 -30 33.71 8 -31.53 33.7 8 -28.47
+5 24 33.7 8 -28.47 33.7 6.46 -28.47 34 8 -30 32.85 8 -27.2
+5 24 32.83 8 -27.17 32.83 5.88 -27.17 33.7 8 -28.47 31.56 8 -26.32
+5 24 31.53 8 -26.3 31.53 5.02 -26.3 32.83 8 -27.17 30 8 -25.98
+2 24 30 4 -26 31.53 5.02 -26.3
+2 24 32.82 5.88 -27.17 31.53 5.02 -26.3
+2 24 32.82 5.88 -27.17 33.69 6.46 -28.46
+2 24 34 6.66 -30 33.69 6.46 -28.46
+2 24 34 6.66 -30 33.69 6.46 -31.53
+2 24 32.82 5.88 -32.82 33.69 6.46 -31.53
+2 24 32.82 5.88 -32.82 31.53 5.02 -33.69
+2 24 30 4 -34 31.53 5.02 -33.69
+4 16 31.53 8 -26.3 30 8 -26 30 4 -26 31.53 5.02 -26.3
+4 16 32.82 8 -27.17 31.53 8 -26.3 31.53 5.02 -26.3 32.82 5.88 -27.17
+4 16 33.69 8 -28.46 32.82 8 -27.17 32.82 5.88 -27.17 33.69 6.46 -28.46
+4 16 34 8 -30 33.69 8 -28.46 33.69 6.46 -28.46 34 6.66 -30
+4 16 33.69 8 -31.53 34 8 -30 34 6.66 -30 33.69 6.46 -31.53
+4 16 32.82 8 -32.82 33.69 8 -31.53 33.69 6.46 -31.53 32.82 5.88 -32.82
+4 16 31.53 8 -33.69 32.82 8 -32.82 32.82 5.88 -32.82 31.53 5.02 -33.69
+4 16 30 8 -34 31.53 8 -33.69 31.53 5.02 -33.69 30 4 -34
+1 16 -30 8 -30 -1 0 0 0 -2 0 0 0 -1 p/stud3a.dat
+1 16 -30 8 -30 0 0 4 0 -4 0 -4 0 0 p/2-4cyli.dat
+1 16 -30 4 -30 0 0 4 0 -1 0 -4 0 0 p/2-4edge.dat
+5 24 -31.54 8 -33.7 -31.54 5.02 -33.7 -30 8 -34 -32.81 8 -32.85
+5 24 -32.84 8 -32.83 -32.84 5.88 -32.83 -31.54 8 -33.7 -33.71 8 -31.55
+5 24 -33.71 8 -31.53 -33.71 6.46 -31.53 -32.84 8 -32.83 -34 8 -30
+5 24 -34 8 -30 -34 6.66 -30 -33.71 8 -31.53 -33.7 8 -28.47
+5 24 -33.7 8 -28.47 -33.7 6.46 -28.47 -34 8 -30 -32.85 8 -27.2
+5 24 -32.83 8 -27.17 -32.83 5.88 -27.17 -33.7 8 -28.47 -31.56 8 -26.32
+5 24 -31.53 8 -26.3 -31.53 5.02 -26.3 -32.83 8 -27.17 -30 8 -25.98
+2 24 -30 4 -34 -31.53 5.02 -33.7
+2 24 -32.82 5.88 -32.83 -31.53 5.02 -33.7
+2 24 -32.82 5.88 -32.83 -33.69 6.46 -31.54
+2 24 -34 6.66 -30 -33.69 6.46 -31.54
+2 24 -34 6.66 -30 -33.69 6.46 -28.47
+2 24 -32.82 5.88 -27.18 -33.69 6.46 -28.47
+2 24 -32.82 5.88 -27.18 -31.53 5.02 -26.31
+2 24 -30 4 -26 -31.53 5.02 -26.31
+4 16 -31.53 8 -33.7 -30 8 -34 -30 4 -34 -31.53 5.02 -33.7
+4 16 -32.82 8 -32.83 -31.53 8 -33.7 -31.53 5.02 -33.7 -32.82 5.88 -32.83
+4 16 -33.69 8 -31.54 -32.82 8 -32.83 -32.82 5.88 -32.83 -33.69 6.46 -31.54
+4 16 -34 8 -30 -33.69 8 -31.54 -33.69 6.46 -31.54 -34 6.66 -30
+4 16 -33.69 8 -28.47 -34 8 -30 -34 6.66 -30 -33.69 6.46 -28.47
+4 16 -32.82 8 -27.18 -33.69 8 -28.47 -33.69 6.46 -28.47 -32.82 5.88 -27.18
+4 16 -31.53 8 -26.31 -32.82 8 -27.18 -32.82 5.88 -27.18 -31.53 5.02 -26.31
+4 16 -30 8 -26 -31.53 8 -26.31 -31.53 5.02 -26.31 -30 4 -26
+2 24 21 8.83 -59 16 8.83 -59
+2 24 21 9.16 -61 16 9.16 -61
+2 24 16 8.83 -59 16 9.16 -61
+2 24 21 16 -59 16 16 -59
+2 24 21 16 -61 16 16 -61
+2 24 16 16 -59 16 16 -61
+2 24 16 16 -59 16 8.83 -59
+2 24 16 16 -61 16 9.16 -61
+4 16 16 9.16 -61 16 8.83 -59 16 16 -59 16 16 -61
+4 16 16 8.83 -59 21 8.83 -59 21 16 -59 16 16 -59
+4 16 21 9.16 -61 16 9.16 -61 16 16 -61 21 16 -61
+4 16 21 16 -59 21 16 -61 16 16 -61 16 16 -59
+2 24 -21 8.83 -59 -16 8.83 -59
+2 24 -21 9.16 -61 -16 9.16 -61
+2 24 -16 8.83 -59 -16 9.16 -61
+2 24 -21 16 -59 -16 16 -59
+2 24 -21 16 -61 -16 16 -61
+2 24 -16 16 -59 -16 16 -61
+2 24 -16 16 -59 -16 8.83 -59
+2 24 -16 16 -61 -16 9.16 -61
+4 16 -16 8.83 -59 -16 9.16 -61 -16 16 -61 -16 16 -59
+4 16 -16 16 -59 -21 16 -59 -21 8.83 -59 -16 8.83 -59
+4 16 -21 16 -61 -16 16 -61 -16 9.16 -61 -21 9.16 -61
+4 16 -16 16 -59 -16 16 -61 -21 16 -61 -21 16 -59
+1 16 0 10 -60 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+2 24 0 8.33 -56 1.53 8.38 -56.3
+2 24 2.82 8.52 -57.17 1.53 8.38 -56.3
+2 24 2.82 8.52 -57.17 3.69 8.74 -58.46
+2 24 4 9 -60 3.69 8.74 -58.46
+2 24 4 9 -60 3.69 9.25 -61.53
+2 24 2.82 9.47 -62.82 3.69 9.25 -61.53
+2 24 2.82 9.47 -62.82 1.53 9.61 -63.69
+2 24 0 9.66 -64 1.53 9.61 -63.69
+2 24 0 8.33 -56 -1.53 8.38 -56.3
+2 24 -2.82 8.52 -57.17 -1.53 8.38 -56.3
+2 24 -2.82 8.52 -57.17 -3.69 8.74 -58.46
+2 24 -4 9 -60 -3.69 8.74 -58.46
+2 24 -4 9 -60 -3.69 9.25 -61.53
+2 24 -2.82 9.47 -62.82 -3.69 9.25 -61.53
+2 24 -2.82 9.47 -62.82 -1.53 9.61 -63.69
+2 24 0 9.66 -64 -1.53 9.61 -63.69
+4 16 1.53 10 -56.3 0 10 -56 0 8.33 -56 1.53 8.38 -56.3
+5 24 0 10 -56 0 8.33 -56 1.53 10 -56.3 -1.53 10 -56.3
+4 16 2.82 10 -57.17 1.53 10 -56.3 1.53 8.38 -56.3 2.82 8.52 -57.17
+5 24 1.53 10 -56.3 1.53 8.38 -56.3 2.82 10 -57.17 0 10 -56
+5 24 -1.53 10 -56.3 -1.53 8.38 -56.3 -2.82 10 -57.17 0 10 -56
+4 16 3.69 10 -58.46 2.82 10 -57.17 2.82 8.52 -57.17 3.69 8.74 -58.46
+5 24 2.82 10 -57.17 2.82 8.52 -57.17 3.69 10 -58.46 1.53 10 -56.3
+5 24 -2.82 10 -57.17 -2.82 8.52 -57.17 -3.69 10 -58.46 -1.53 10 -56.3
+4 16 4 10 -60 3.69 10 -58.46 3.69 8.74 -58.46 4 9 -60
+5 24 3.69 10 -58.46 3.69 8.74 -58.46 4 10 -60 2.82 10 -57.17
+5 24 -3.69 10 -58.46 -3.69 8.74 -58.46 -4 10 -60 -2.82 10 -57.17
+4 16 3.69 10 -61.53 4 10 -60 4 9 -60 3.69 9.25 -61.53
+5 24 4 10 -60 4 9 -60 3.69 10 -58.46 3.69 10 -61.53
+5 24 -4 10 -60 -4 9 -60 -3.69 10 -58.46 -3.69 10 -61.53
+4 16 2.82 10 -62.82 3.69 10 -61.53 3.69 9.25 -61.53 2.82 9.47 -62.82
+5 24 3.69 10 -61.53 3.69 9.25 -61.53 4 10 -60 2.82 10 -62.82
+5 24 -3.69 10 -61.53 -3.69 9.25 -61.53 -4 10 -60 -2.82 10 -62.82
+4 16 1.53 10 -63.69 2.82 10 -62.82 2.82 9.47 -62.82 1.53 9.61 -63.69
+5 24 2.82 10 -62.82 2.82 9.47 -62.82 1.53 10 -63.69 3.69 10 -61.53
+5 24 -2.82 10 -62.82 -2.82 9.47 -62.82 -1.53 10 -63.69 -3.69 10 -61.53
+4 16 0 10 -64 1.53 10 -63.69 1.53 9.61 -63.69 0 9.66 -64
+5 24 1.53 10 -63.69 1.53 9.61 -63.69 0 10 -64 2.82 10 -62.82
+5 24 -1.53 10 -63.69 -1.53 9.61 -63.69 0 10 -64 -2.82 10 -62.82
+4 16 0 10 -56 -1.53 10 -56.3 -1.53 8.38 -56.3 0 8.33 -56
+5 24 0 10 -64 0 9.66 -64 1.53 10 -63.69 -1.53 10 -63.69
+4 16 -1.53 10 -56.3 -2.82 10 -57.17 -2.82 8.52 -57.17 -1.53 8.38 -56.3
+4 16 -2.82 10 -57.17 -3.69 10 -58.46 -3.69 8.74 -58.46 -2.82 8.52 -57.17
+4 16 -3.69 10 -58.46 -4 10 -60 -4 9 -60 -3.69 8.74 -58.46
+4 16 -4 10 -60 -3.69 10 -61.53 -3.69 9.25 -61.53 -4 9 -60
+4 16 -3.69 10 -61.53 -2.82 10 -62.82 -2.82 9.47 -62.82 -3.69 9.25 -61.53
+4 16 -2.82 10 -62.82 -1.53 10 -63.69 -1.53 9.61 -63.69 -2.82 9.47 -62.82
+4 16 -1.53 10 -63.69 0 10 -64 0 9.66 -64 -1.53 9.61 -63.69
+2 24 -26.5 16 -55 -26.5 9.3 -55
+2 24 -24 16 -57.5 -24 9.3 -57.5
+2 24 -24 16 -52.5 -24 8.2 -52.5
+2 24 -26.5 16 -55 -24 16 -57.5
+2 24 -26.5 9.3 -55 -24 9.3 -57.5
+2 24 -26.5 16 -55 -24 16 -52.5
+2 24 -26.5 9.3 -55 -24 8.2 -52.5
+4 16 -26.5 9.3 -55 -26.5 16 -55 -24 16 -57.5 -24 9.3 -57.5
+4 16 -26.5 16 -55 -26.5 9.3 -55 -24 8.2 -52.5 -24 16 -52.5
+3 16 -26.5 16 -55 -24 16 -52.5 -24 16 -57.5
+2 24 26.5 16 -55 26.5 9.3 -55
+2 24 24 16 -57.5 24 9.3 -57.5
+2 24 24 16 -52.5 24 8.2 -52.5
+2 24 26.5 16 -55 24 16 -57.5
+2 24 26.5 9.3 -55 24 9.3 -57.5
+2 24 26.5 16 -55 24 16 -52.5
+2 24 26.5 9.3 -55 24 8.2 -52.5
+4 16 26.5 16 -55 26.5 9.3 -55 24 9.3 -57.5 24 16 -57.5
+4 16 26.5 9.3 -55 26.5 16 -55 24 16 -52.5 24 8.2 -52.5
+3 16 26.5 16 -55 24 16 -57.5 24 16 -52.5
+5 24 -30 0 -30 30 0 -30 0 0 -20 0 1 -40
+5 24 -29 1 -40 29 1 -40 0 0 -30 0 2.6 -50
+5 24 -27 2.6 -50 27 2.6 -50 0 1 -40 0 5 -60
+5 24 -23.5 5 -60 23.5 5 -60 0 2.6 -50 0 8 -70
+2 24 4 5.42 -40 4.48 5.75 -42.28
+2 24 4.48 5.75 -42.28 5.8 6.02 -44.2
+2 24 5.8 6.02 -44.2 7.72 6.21 -45.52
+2 24 7.72 6.21 -45.52 10 6.28 -46
+2 24 10 6.28 -46 12.28 6.21 -45.52
+2 24 12.28 6.21 -45.52 14.2 6.02 -44.2
+2 24 14.2 6.02 -44.2 15.52 5.75 -42.28
+2 24 15.52 5.75 -42.28 16 5.42 -40
+4 16 4.48 5.75 -42.28 4 5.42 -40 4 4 -40 4.48 4 -42.28
+4 16 5.8 6.02 -44.2 4.48 5.75 -42.28 4.48 4 -42.28 5.8 4 -44.2
+4 16 7.72 6.21 -45.52 5.8 6.02 -44.2 5.8 4 -44.2 7.72 4 -45.52
+4 16 10 6.28 -46 7.72 6.21 -45.52 7.72 4 -45.52 10 4 -46
+4 16 12.28 6.21 -45.52 10 6.28 -46 10 4 -46 12.28 4 -45.52
+4 16 14.2 6.02 -44.2 12.28 6.21 -45.52 12.28 4 -45.52 14.2 4 -44.2
+4 16 15.52 5.75 -42.28 14.2 6.02 -44.2 14.2 4 -44.2 15.52 4 -42.28
+4 16 16 5.42 -40 15.52 5.75 -42.28 15.52 4 -42.28 16 4 -40
+5 24 16 5.42 -40 16 4 -40 16 4 -30 15.52 4 -42.28
+5 24 -4 5.42 -40 -4 4 -40 -4 4 -30 -4.48 4 -42.28
+5 24 4.48 5.75 -42.28 4.48 4 -42.28 4 4 -40 5.8 4 -44.2
+5 24 5.8 6.02 -44.2 5.8 4 -44.2 4.48 4 -42.28 7.72 4 -45.52
+5 24 7.72 6.21 -45.52 7.72 4 -45.52 5.8 4 -44.2 10 4 -46
+5 24 10 6.28 -46 10 4 -46 7.72 4 -45.52 12.28 4 -45.52
+5 24 12.28 6.21 -45.52 12.28 4 -45.52 10 4 -46 14.2 4 -44.2
+5 24 14.2 6.02 -44.2 14.2 4 -44.2 12.28 4 -45.52 15.52 4 -42.28
+5 24 15.52 5.75 -42.28 15.52 4 -42.28 14.2 4 -44.2 16 4 -40
+2 24 -16 5.42 -40 -15.52 5.75 -42.28
+2 24 -15.52 5.75 -42.28 -14.2 6.02 -44.2
+2 24 -14.2 6.02 -44.2 -12.28 6.21 -45.52
+2 24 -12.28 6.21 -45.52 -10 6.28 -46
+2 24 -10 6.28 -46 -7.72 6.21 -45.52
+2 24 -7.72 6.21 -45.52 -5.8 6.02 -44.2
+2 24 -5.8 6.02 -44.2 -4.48 5.75 -42.28
+2 24 -4.48 5.75 -42.28 -4 5.42 -40
+4 16 -15.52 5.75 -42.28 -16 5.42 -40 -16 4 -40 -15.52 4 -42.28
+4 16 -14.2 6.02 -44.2 -15.52 5.75 -42.28 -15.52 4 -42.28 -14.2 4 -44.2
+4 16 -12.28 6.21 -45.52 -14.2 6.02 -44.2 -14.2 4 -44.2 -12.28 4 -45.52
+4 16 -10 6.28 -46 -12.28 6.21 -45.52 -12.28 4 -45.52 -10 4 -46
+4 16 -7.72 6.21 -45.52 -10 6.28 -46 -10 4 -46 -7.72 4 -45.52
+4 16 -5.8 6.02 -44.2 -7.72 6.21 -45.52 -7.72 4 -45.52 -5.8 4 -44.2
+4 16 -4.48 5.75 -42.28 -5.8 6.02 -44.2 -5.8 4 -44.2 -4.48 4 -42.28
+4 16 -4 5.42 -40 -4.48 5.75 -42.28 -4.48 4 -42.28 -4 4 -40
+5 24 -16 5.42 -40 -16 4 -40 -16 4 -30 -15.52 4 -42.28
+5 24 4 5.42 -40 4 4 -40 4 4 -30 4.48 4 -42.28
+5 24 -15.52 5.75 -42.28 -15.52 4 -42.28 -16 4 -40 -14.2 4 -44.2
+5 24 -14.2 6.02 -44.2 -14.2 4 -44.2 -15.52 4 -42.28 -12.28 4 -45.52
+5 24 -12.28 6.21 -45.52 -12.28 4 -45.52 -14.2 4 -44.2 -10 4 -46
+5 24 -10 6.28 -46 -10 4 -46 -12.28 4 -45.52 -7.72 4 -45.52
+5 24 -7.72 6.21 -45.52 -7.72 4 -45.52 -10 4 -46 -5.8 4 -44.2
+5 24 -5.8 6.02 -44.2 -5.8 4 -44.2 -7.72 4 -45.52 -4.48 4 -42.28
+5 24 -4.48 5.75 -42.28 -4.48 4 -42.28 -5.8 4 -44.2 -4 4 -40
+0
+
+0 FILE parts/30553.dat
+0 Hinge Arm Locking with Dual Finger and Axlehole
+0 Name: 30553.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Part UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !KEYWORDS click-hinge, Life on Mars, Studio, Technic, Star Wars
+
+0 !HISTORY 2003-07-02 [technog] added BFC
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2004-03-11 [cwdee] Correct title
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from 482
+0 !HISTORY 2012-10-05 [Philo] Corrected bleeding
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/480s02.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 parts/s/30552s01.dat
+1 16 0 0 0 2.12132 0 -2.12132 -2.12132 0 -2.12132 0 1 0 p/1-4ring2.dat
+1 16 0 0 0 -2.12132 0 2.12132 2.12132 0 2.12132 0 1 0 p/1-4ring2.dat
+3 16 6.364 -6.364 0 6.607 -6 0 6 -6 0
+3 16 -6 -6 0 -6.607 -6 0 -6.364 -6.364 0
+3 16 6 6 0 6.607 6 0 6.364 6.364 0
+3 16 -6.364 6.364 0 -6.607 6 0 -6 6 0
+
+0 FILE p/1-4ring2.dat
+0 Ring  2 x 0.25
+0 Name: 1-4ring2.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Primitive UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-12-31 [PTadmin] Official Update 2001-03
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+0 !HISTORY 2014-12-25 [MMR1988] Fixed a rounding issue
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+4 16 3 0 0 2.7717 0 1.1481 1.8478 0 0.7654 2 0 0
+4 16 2.7717 0 1.1481 2.1213 0 2.1213 1.4142 0 1.4142 1.8478 0 0.7654
+4 16 2.1213 0 2.1213 1.1481 0 2.7717 0.7654 0 1.8478 1.4142 0 1.4142
+4 16 1.1481 0 2.7717 0 0 3 0 0 2 0.7654 0 1.8478
+0 // Build by Primitive Generator 2
+
+0 FILE parts/s/30552s01.dat
+0 ~Hinge Arm Locking - Axlehole Body
+0 Name: s\30552s01.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Subpart UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-07-02 [technog] BFC'd, made use of more primitives, added missing lines
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-09-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-07-06 [PTadmin] Renamed from s/481s01
+0 !HISTORY 2012-10-05 [Philo] Closed gaps and corrected side bleeding
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+1 16 0 0 0 0 0 -1 1 0 0 0 -20 0 p/axlehol5.dat
+1 16 0 0 -2.875 2.25 0 0 0 0 2.25 0 1 0 p/4-4ring3.dat
+1 16 0 0 -17.125 2.25 0 0 0 0 2.25 0 -1 0 p/4-4ring3.dat
+1 16 0 0 -20 3 0 0 0 0 3 0 1 0 p/4-4ring2.dat
+1 16 0 0 0 9 0 0 0 0 9 0 -2.875 0 p/4-4cyli.dat
+1 16 0 0 -20 9 0 0 0 0 9 0 2.875 0 p/4-4cylo.dat
+1 16 0 0 -2.875 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 -1 -2.875 8 0 0 0 0 -7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 1 -2.875 8 0 0 0 0 7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 -1 -5.725 8.533 0 0 0 0 -8 0 -2.85 0 p/2-4cylo.dat
+1 16 0 1 -5.725 8.533 0 0 0 0 8 0 -2.85 0 p/2-4cylo.dat
+1 16 0 -1 -8.575 8 0 0 0 0 -7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 1 -8.575 8 0 0 0 0 7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 -1 -11.425 8.533 0 0 0 0 -8 0 -2.85 0 p/2-4cylo.dat
+1 16 0 1 -11.425 8.533 0 0 0 0 8 0 -2.85 0 p/2-4cylo.dat
+1 16 0 -1 -14.275 8 0 0 0 0 -7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 1 -14.275 8 0 0 0 0 7.5 0 -2.85 0 p/2-4cylo.dat
+1 16 0 -1 -5.725 -0.5335 0 0 0 0 -0.5 0 -1 0 p/2-4rin15.dat
+1 16 0 1 -5.725 -0.5335 0 0 0 0 0.5 0 -1 0 p/2-4rin15.dat
+1 16 0 -1 -8.575 -0.5335 0 0 0 0 -0.5 0 1 0 p/2-4rin15.dat
+1 16 0 1 -8.575 -0.5335 0 0 0 0 0.5 0 1 0 p/2-4rin15.dat
+1 16 0 -1 -11.425 -0.5335 0 0 0 0 -0.5 0 -1 0 p/2-4rin15.dat
+1 16 0 1 -11.425 -0.5335 0 0 0 0 0.5 0 -1 0 p/2-4rin15.dat
+1 16 0 -1 -14.275 -0.5335 0 0 0 0 -0.5 0 1 0 p/2-4rin15.dat
+1 16 0 1 -14.275 -0.5335 0 0 0 0 0.5 0 1 0 p/2-4rin15.dat
+0 // inside
+2 24 6 0 0 5.602 2 0
+2 24 -6 0 0 -5.602 2 0
+2 24 6 0 -20 5.602 2 -20
+2 24 -6 0 -20 -5.602 2 -20
+2 24 -6 0 0 -5.602 -2 0
+2 24 6 0 0 5.602 -2 0
+2 24 -6 0 -20 -5.602 -2 -20
+2 24 6 0 -20 5.602 -2 -20
+2 24 -5.602 -2 0 -5.602 -2 -20
+2 24 5.602 -2 0 5.602 -2 -20
+2 24 -5.602 2 0 -5.602 2 -20
+2 24 5.602 2 0 5.602 2 -20
+5 24 -6 0 -2.875 -6 0 0 -5.602 2 -2 -5.602 -2 -2
+5 24 6 0 -2.875 6 0 0 5.602 2 -2 5.602 -2 -2
+5 24 -6 0 -20 -6 0 -17.125 -5.602 2 -18 -5.602 -2 -18
+5 24 6 0 -20 6 0 -17.125 5.602 2 -18 5.602 -2 -18
+4 16 -5.801 -1 -2.875 -5.801 -1 -17.125 -5.602 -2 -20 -5.602 -2 0
+4 16 5.801 -1 -2.875 6.75 -1 -2.875 6.75 0 -2.875 6 0 -2.875
+4 16 6 0 -2.875 6.75 0 -2.875 6.75 1 -2.875 5.801 1 -2.875
+4 16 -6 0 -2.875 -6.75 0 -2.875 -6.75 -1 -2.875 -5.801 -1 -2.875
+4 16 -5.801 1 -2.875 -6.75 1 -2.875 -6.75 0 -2.875 -6 0 -2.875
+4 16 6 0 -17.125 6.75 0 -17.125 6.75 -1 -17.125 5.801 -1 -17.125
+4 16 5.801 1 -17.125 6.75 1 -17.125 6.75 0 -17.125 6 0 -17.125
+4 16 -5.801 -1 -17.125 -6.75 -1 -17.125 -6.75 0 -17.125 -6 0 -17.125
+4 16 -6 0 -17.125 -6.75 0 -17.125 -6.75 1 -17.125 -5.801 1 -17.125
+4 16 5.801 -1 -2.875 6 0 -2.875 6 0 0 5.602 -2 0
+4 16 5.602 2 0 6 0 0 6 0 -2.875 5.801 1 -2.875
+4 16 -5.602 -2 0 -6 0 0 -6 0 -2.875 -5.801 -1 -2.875
+4 16 -5.801 1 -2.875 -6 0 -2.875 -6 0 0 -5.602 2 0
+4 16 5.602 -2 -20 6 0 -20 6 0 -17.125 5.801 -1 -17.125
+4 16 5.801 1 -17.125 6 0 -17.125 6 0 -20 5.602 2 -20
+4 16 -5.801 -1 -17.125 -6 0 -17.125 -6 0 -20 -5.602 -2 -20
+4 16 -5.602 2 -20 -6 0 -20 -6 0 -17.125 -5.801 1 -17.125
+4 16 5.801 -1 -17.125 5.801 -1 -2.875 5.602 -2 0 5.602 -2 -20
+4 16 -5.801 1 -17.125 -5.801 1 -2.875 -5.602 2 0 -5.602 2 -20
+4 16 5.801 1 -2.875 5.801 1 -17.125 5.602 2 -20 5.602 2 0
+1 16 -6.9 -1 -10 0 0 1.099 0 -1 0 -7.125 0 0 p/rect3.dat
+1 16 6.9 -1 -10 0 0 -1.099 0 -1 0 -7.125 0 0 p/rect3.dat
+1 16 -6.9 1 -10 0 0 1.099 0 1 0 -7.125 0 0 p/rect3.dat
+1 16 6.9 1 -10 0 0 -1.099 0 1 0 -7.125 0 0 p/rect3.dat
+2 24 -6 0 -2.875 -5.801 -1 -2.875
+2 24 6 0 -2.875 5.801 -1 -2.875
+2 24 -6 0 -2.875 -5.801 1 -2.875
+2 24 6 0 -2.875 5.801 1 -2.875
+2 24 -6 0 -17.125 -5.801 -1 -17.125
+2 24 6 0 -17.125 5.801 -1 -17.125
+2 24 -6 0 -17.125 -5.801 1 -17.125
+2 24 6 0 -17.125 5.801 1 -17.125
+2 24 -8 -1 -2.875 -8 -1 -5.725
+2 24 8 -1 -2.875 8 -1 -5.725
+2 24 -8 1 -2.875 -8 1 -5.725
+2 24 8 1 -2.875 8 1 -5.725
+2 24 -8 -1 -8.575 -8 -1 -11.425
+2 24 8 -1 -8.575 8 -1 -11.425
+2 24 -8 1 -8.575 -8 1 -11.425
+2 24 8 1 -8.575 8 1 -11.425
+2 24 -8 -1 -14.275 -8 -1 -17.125
+2 24 8 -1 -14.275 8 -1 -17.125
+2 24 -8 1 -14.275 -8 1 -17.125
+2 24 8 1 -14.275 8 1 -17.125
+1 16 -8.266 -1 -7.15 0 0 -0.266 0 -1 0 -1.425 0 0 p/rect3.dat
+1 16 8.266 -1 -7.15 0 0 0.266 0 -1 0 -1.425 0 0 p/rect3.dat
+1 16 -8.266 1 -7.15 0 0 -0.266 0 1 0 -1.425 0 0 p/rect3.dat
+1 16 8.266 1 -7.15 0 0 0.266 0 1 0 -1.425 0 0 p/rect3.dat
+1 16 -8.266 -1 -12.85 0 0 -0.266 0 -1 0 -1.425 0 0 p/rect3.dat
+1 16 8.266 -1 -12.85 0 0 0.266 0 -1 0 -1.425 0 0 p/rect3.dat
+1 16 -8.266 1 -12.85 0 0 -0.266 0 1 0 -1.425 0 0 p/rect3.dat
+1 16 8.266 1 -12.85 0 0 0.266 0 1 0 -1.425 0 0 p/rect3.dat
+
+0 FILE p/2-4rin15.dat
+0 Ring 15 x 0.5
+0 Name: 2-4rin15.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+4 16 15 0 0 16 0 0 14.7824 0 6.1232 13.8585 0 5.7405
+4 16 13.8585 0 5.7405 14.7824 0 6.1232 11.3136 0 11.3136 10.6065 0 10.6065
+4 16 10.6065 0 10.6065 11.3136 0 11.3136 6.1232 0 14.7824 5.7405 0 13.8585
+4 16 5.7405 0 13.8585 6.1232 0 14.7824 0 0 16 0 0 15
+4 16 0 0 15 0 0 16 -6.1232 0 14.7824 -5.7405 0 13.8585
+4 16 -5.7405 0 13.8585 -6.1232 0 14.7824 -11.3136 0 11.3136 -10.6065 0 10.6065
+4 16 -10.6065 0 10.6065 -11.3136 0 11.3136 -14.7824 0 6.1232 -13.8585 0 5.7405
+4 16 -13.8585 0 5.7405 -14.7824 0 6.1232 -16 0 0 -15 0 0
+0
+
+0 FILE p/2-4cylo.dat
+0 Cylinder Open 0.5
+0 Name: 2-4cylo.dat
+0 Author: Max Martin Richter [MMR1988]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/2-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/2-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/2-4cyli.dat
+
+0 FILE parts/s/480s02.dat
+0 ~Hinge Arm Locking - Dual Finger End 
+0 Name: s\480s02.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Subpart UPDATE 2004-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-07-02 [technog] redone to use clh5.dat, added BFC
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-09-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 -1 0 0 0 -1 p/clh5.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/clh5.dat
+2 24 0 -9 0 -3.444 -8.315 0
+2 24 0 -9 0 3.444 -8.315 0
+2 24 0 9 0 -3.444 8.315 0
+2 24 0 9 0 3.444 8.315 0
+2 24 -3.444 -8.315 0 -6.364 -6.364 0
+2 24 3.444 -8.315 0 6.364 -6.364 0
+2 24 -3.444 8.315 0 -6.364 6.364 0
+2 24 3.444 8.315 0 6.364 6.364 0
+2 24 -6.364 -6.364 0 -6.607 -6 0
+2 24 6.364 -6.364 0 6.607 -6 0
+2 24 -6.364 6.364 0 -6.607 6 0
+2 24 6.364 6.364 0 6.607 6 0
+0
+
+0 FILE p/clh5.dat
+0 Click Lock Hinge Half Dual Finger for Arms
+0 Name: clh5.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 !HELP Requires 2 halves rotated 180 degrees apart on Z-axis.
+0 !HELP To use rotate pair accordingly and place on end of arm.
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 6.607 0 3.9 0 -2.607 0 0 0 6 -3.9 0 0 p/box3u8p.dat
+1 16 5.304 0 0 0 0 -1.304 6 0 0 0 1 0 p/rect3.dat
+4 16 4 -4.81 7.8 4 -5.25 10 4 5.25 10 4 4.81 7.8
+1 16 4 0 10 0 1 0 5.25 0 0 0 0 5.25 p/2-4disc.dat
+1 16 4 0 10 0 -1 0 4 0 0 0 0 4 p/4-4edge.dat
+1 16 4 0 10 0 -1 0 1 0 0 0 0 1 p/4-4con3.dat
+1 16 3 0 10 0 -1 0 3 0 0 0 0 3 p/4-4edge.dat
+1 16 3 0 10 0 1 0 3 0 0 0 0 3 p/4-4disc.dat
+1 16 5.304 5.73 7.903 -1.304 0 0 0 0 0.27 0 -1 -0.103 p/rect2a.dat
+4 16 4 4.8 7.8 4 4.88 8.18 4 5.46 8.006 4 6 7.8
+0 BFC INVERTNEXT
+1 16 4 5.64 8.88 0 2.7 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4cyli.dat
+1 16 4 5.64 8.88 0 1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4ndis.dat
+1 16 4 5.64 8.88 0 -1 0 -0.175 0 -0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 4 5.81 10 0 2.6 0 0 0 0.19 -0.25 0 0 p/2-4cyli.dat
+1 16 4 5.81 10 0 1 0 0 0 0.19 -0.25 0 0 p/2-4disc.dat
+1 16 4 5.81 10 0 -1 0 0 0 0.19 -0.25 0 0 p/2-4edge.dat
+4 16 4 5.22 9.867 4 5.22 10.133 4 5.82 10.25 4 5.82 9.75
+0 BFC INVERTNEXT
+1 16 4 5.64 11.12 0 2.7 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4cyli.dat
+1 16 4 5.64 11.12 0 1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4ndis.dat
+1 16 4 5.64 11.12 0 -1 0 0.175 0 -0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 4 5.368 12.224 0 2.9 0 0.097 0 0.175 -0.231 0 0.073 p/2-4cyli.dat
+1 16 4 5.368 12.224 0 1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 4 5.368 12.224 0 -1 0 0.097 0 0.175 -0.231 0 0.073 p/2-4edge.dat
+4 16 4 4.874 11.875 4 4.772 12.12 4 5.281 12.458 4 5.463 11.995
+0 BFC INVERTNEXT
+1 16 4 4.782 13.193 0 3 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4cyli.dat
+1 16 4 4.782 13.193 0 1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4ndis.dat
+1 16 4 4.782 13.193 0 -1 0 0.496 0 -0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 4 4.109 14.108 0 3.7 0 0.177 0 0.134 -0.177 0 0.134 p/2-4cyli.dat
+1 16 4 4.109 14.108 0 1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 4 4.109 14.108 0 -1 0 0.177 0 0.134 -0.177 0 0.134 p/2-4edge.dat
+4 16 4 3.785 13.597 4 3.597 13.785 4 3.938 14.292 4 4.284 13.934
+0 BFC INVERTNEXT
+1 16 4 3.196 14.78 0 3.9 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4cyli.dat
+1 16 8.364 3.193 14.782 0.148 -1 0.066 -0.741 0 -0.334 0.496 0 -0.5 p/1-4ndis.dat
+1 16 8.362 3.193 14.782 0.148 -1 0.066 -0.741 0 -0.334 0.496 0 -0.5 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 8.362 3.193 14.782 0.148 -0.63 0.066 -0.741 0 -0.334 0.496 0 -0.5 p/1-4cyli.dat
+1 16 4 3.196 14.78 0 1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4ndis.dat
+1 16 4 3.196 14.78 0 -1 0 0.742 0 -0.334 -0.495 0 -0.5 p/2-4edge.dat
+1 16 4 2.224 15.368 0 4.508 0 0.231 0 0.073 -0.097 0 0.175 p/2-4cyli.dat
+1 16 8.558 2.224 15.368 -0.046 -1 -0.014 0.231 0 0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 8.558 2.224 15.368 -0.046 -1 -0.014 0.231 0 0.073 -0.097 0 0.175 p/2-4edge.dat
+1 16 8.558 2.224 15.368 -0.046 -0.048 -0.014 0.231 0 0.073 -0.097 0 0.175 p/2-4cyls.dat
+1 16 4 2.224 15.368 0 1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 4 2.224 15.368 0 -1 0 0.231 0 0.073 -0.097 0 0.175 p/2-4edge.dat
+4 16 4 2.12 14.772 4 1.875 14.873 4 1.996 15.473 4 2.458 15.281
+4 16 8.627 1.875 14.873 8.58 2.12 14.772 8.511 2.458 15.281 8.603 1.996 15.473
+0 BFC INVERTNEXT
+1 16 4 1.12 15.64 0 4.608 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4cyli.dat
+1 16 8.778 1.12 15.64 -0.174 -1 0.023 0.875 0 -0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 8.778 1.12 15.64 -0.174 -1 0.023 0.8754 0 -0.1174 -0.175 0 -0.59 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 8.778 1.12 15.64 -0.174 -0.25 0.023 0.8754 0 -0.1174 -0.175 0 -0.59 p/2-4cyls.dat
+1 16 4 1.12 15.64 0 1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 4 1.12 15.64 0 -1 0 0.875 0 -0.117 -0.175 0 -0.59 p/2-4edge.dat
+1 16 4 0 15.81 0 4.95 0 0.25 0 0 0 0 0.19 p/2-4cyli.dat
+1 16 9 0 15.81 -0.05 -1 0 0.25 0 0 0 0 0.19 p/1-4disc.dat
+1 16 9 0 15.81 -0.05 -1 0 0.25 0 0 0 0 0.19 p/1-4edge.dat
+1 16 9 0 15.81 -0.05 -0.05 0 0.25 0 0 0 0 0.19 p/1-4cyls.dat
+1 16 4 0 15.81 0 1 0 0.25 0 0 0 0 0.19 p/2-4disc.dat
+1 16 4 0 15.81 0 -1 0 0.25 0 0 0 0 0.19 p/2-4edge.dat
+4 16 4 0.133 15.22 4 -0.133 15.22 4 -0.25 15.82 4 0.25 15.82
+4 16 9 0 15.26 8.973 0.133 15.22 8.95 0.25 15.82 9 0 15.82
+4 16 9 0 14.6 8.385 3.09 14.13 8.6 2.01 14.85 9 0 15.26
+4 16 9 0 0 8.315 3.444 0 8.315 3.444 14.082 9 0 14.6
+3 16 8.433 2.85 14.285 8.37 3.17 14.128 8.385 3.09 14.13
+4 16 8.37 3.17 14.128 7.9 3.17 14.128 7.9 2.85 14.285 8.433 2.85 14.285
+4 16 7.9 3.17 14.128 8.37 3.17 14.128 8.315 3.444 14.082 7.9 3.444 14.082
+2 24 8.433 2.85 14.285 8.37 3.17 14.128
+2 24 8.315 3.444 14.082 8.37 3.17 14.128
+4 16 7.341 4.9 0 8.284 3.49 14.075 8.315 3.444 14.082 8.315 3.444 0
+3 16 7.341 4.9 11.93 8.284 3.49 14.075 7.341 4.9 0
+3 16 7.108 5.25 10 7.341 4.9 11.8 7.341 4.9 8.2
+4 16 8.284 3.49 14.075 7.9 3.49 14.075 7.9 3.444 14.082 8.315 3.444 14.082
+2 24 8.315 3.444 14.082 8.284 3.49 14.075
+2 24 6.607 6 7.8 6.968 5.46 8.006
+3 16 6.607 5.46 8.006 6.968 5.46 8.006 6.607 6 7.8
+4 16 7.341 4.9 8.2 7.341 4.9 0 6.607 6 0 6.607 6 7.8
+1 16 6.848 5.64 8.88 0.118 -1 0.394 -0.175 0 -0.59 -0.875 0 0.117 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 6.848 5.64 8.88 0.118 -0.56 0.394 -0.175 0 -0.59 -0.875 0 0.117 p/2-4cyli.dat
+1 16 6.848 5.64 8.88 0.117 -1 0.394 -0.175 0 -0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 6.735 5.81 10 0 -1 -0.127 0 0 0.19 -0.25 0 0 p/2-4disc.dat
+1 16 6.735 5.81 10 0 -0.5 -0.127 0 0 0.19 -0.25 0 0 p/2-4cyli.dat
+1 16 6.735 5.81 10 0 1 -0.127 0 0 0.19 -0.25 0 0 p/2-4edge.dat
+4 16 7.129 5.22 10.133 7.129 5.22 9.867 6.728 5.82 9.75 6.728 5.82 10.25
+1 16 6.848 5.64 11.12 -0.118 -1 0.394 0.175 0 -0.59 -0.875 0 -0.117 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 6.848 5.64 11.12 -0.118 -0.56 0.394 0.175 0 -0.59 -0.875 0 -0.117 p/2-4cyli.dat
+1 16 6.848 5.64 11.12 -0.118 -1 0.394 0.175 0 -0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 7.031 5.368 12.224 -0.065 -1 -0.118 0.097 0 0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 7.031 5.368 12.224 -0.065 -0.2 -0.118 0.097 0 0.175 -0.231 0 0.073 p/2-4cyli.dat
+1 16 7.031 5.368 12.224 -0.065 -1 -0.118 0.097 0 0.175 -0.231 0 0.073 p/2-4edge.dat
+4 16 7.428 4.772 12.12 7.36 4.874 11.875 6.966 5.463 11.995 7.088 5.281 12.458
+1 16 7.421 4.782 13.193 -0.3313 -1 0.334 0.496 0 -0.5 -0.741 0 -0.334 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 7.421 4.782 13.193 -0.331 -0.9 0.334 0.496 0 -0.5 -0.741 0 -0.334 p/2-4cyli.dat
+1 16 7.421 4.782 13.193 -0.331 -1 0.334 0.496 -0.668 -0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 7.871 4.109 14.108 -0.119 -1 -0.09 0.177 0 0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 7.871 4.109 14.108 -0.119 -0.3 -0.09 0.177 0 0.134 -0.177 0 0.134 p/2-4cyli.dat
+1 16 7.871 4.109 14.108 -0.119 -1 -0.09 0.177 0 0.134 -0.177 0 0.134 p/2-4edge.dat
+4 16 8.213 3.597 13.785 8.088 3.785 13.597 7.753 4.284 13.934 7.985 3.938 14.292
+1 16 8.478 3.196 14.78 -0.496 -1 0.224 0.742 0 -0.334 -0.495 0 -0.5 p/1-8ndis.dat
+0 BFC INVERTNEXT
+1 16 8.478 3.196 14.78 -0.496 -0.38 0.222 0.742 0 -0.334 -0.495 0 -0.5 p/1-8cyli.dat
+1 16 8.478 3.196 14.78 -0.496 -10 0.222 0.742 0 -0.334 -0.495 0 -0.5 p/1-8edge.dat
+1 16 5.304 -5.73 7.903 -1.304 0 0 0 0 -0.27 0 -1 -0.103 p/rect2a.dat
+4 16 4 -4.88 8.18 4 -4.8 7.8 4 -6 7.8 4 -5.46 8.006
+0 BFC INVERTNEXT
+1 16 4 -5.64 8.88 0 2.7 0 0.175 0 0.59 -0.875 0 0.117 p/2-4cyli.dat
+1 16 4 -5.64 8.88 0 1 0 0.175 0 0.59 -0.875 0 0.117 p/2-4ndis.dat
+1 16 4 -5.64 8.88 0 -1 0 0.175 0 0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 4 -5.81 10 0 2.6 0 0 0 -0.19 -0.25 0 0 p/2-4cyli.dat
+1 16 4 -5.81 10 0 1 0 0 0 -0.19 -0.25 0 0 p/2-4disc.dat
+1 16 4 -5.81 10 0 -1 0 0 0 -0.19 -0.25 0 0 p/2-4edge.dat
+4 16 4 -5.22 10.133 4 -5.22 9.867 4 -5.82 9.75 4 -5.82 10.25
+0 BFC INVERTNEXT
+1 16 4 -5.64 11.12 0 2.7 0 -0.175 0 0.59 -0.875 0 -0.117 p/2-4cyli.dat
+1 16 4 -5.64 11.12 0 1 0 -0.175 0 0.59 -0.875 0 -0.117 p/2-4ndis.dat
+1 16 4 -5.64 11.12 0 -1 0 -0.175 0 0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 4 -5.368 12.224 0 2.9 0 -0.097 0 -0.175 -0.231 0 0.073 p/2-4cyli.dat
+1 16 4 -5.368 12.224 0 1 0 -0.097 0 -0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 4 -5.368 12.224 0 -1 0 -0.097 0 -0.175 -0.231 0 0.073 p/2-4edge.dat
+4 16 4 -4.772 12.12 4 -4.874 11.875 4 -5.463 11.995 4 -5.281 12.458
+0 BFC INVERTNEXT
+1 16 4 -4.782 13.193 0 3 0 -0.496 0 0.5 -0.741 0 -0.334 p/2-4cyli.dat
+1 16 4 -4.782 13.193 0 1 0 -0.496 0 0.5 -0.741 0 -0.334 p/2-4ndis.dat
+1 16 4 -4.782 13.193 0 -1 0 -0.496 0 0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 4 -4.109 14.108 0 3.7 0 -0.177 0 -0.134 -0.177 0 0.134 p/2-4cyli.dat
+1 16 4 -4.109 14.108 0 1 0 -0.177 0 -0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 4 -4.109 14.108 0 -1 0 -0.177 0 -0.134 -0.177 0 0.134 p/2-4edge.dat
+4 16 4 -3.597 13.785 4 -3.785 13.597 4 -4.284 13.934 4 -3.938 14.292
+0 BFC INVERTNEXT
+1 16 4 -3.196 14.78 0 3.9 0 -0.742 0 0.334 -0.495 0 -0.5 p/2-4cyli.dat
+1 16 8.364 -3.193 14.782 0.148 -1 0.066 0.741 0 0.334 0.496 0 -0.5 p/1-4ndis.dat
+1 16 8.362 -3.193 14.782 0.148 -1 0.066 0.741 0 0.334 0.496 0 -0.5 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 8.362 -3.193 14.782 0.148 -0.63 0.066 0.741 0 0.334 0.496 0 -0.5 p/1-4cyli.dat
+1 16 4 -3.196 14.78 0 1 0 -0.742 0 0.334 -0.495 0 -0.5 p/2-4ndis.dat
+1 16 4 -3.196 14.78 0 -1 0 -0.742 0 0.334 -0.495 0 -0.5 p/2-4edge.dat
+1 16 4 -2.224 15.368 0 4.508 0 -0.231 0 -0.073 -0.097 0 0.175 p/2-4cyli.dat
+1 16 8.558 -2.224 15.368 -0.046 -1 -0.014 -0.231 0 -0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 8.558 -2.224 15.368 -0.046 -1 -0.014 -0.231 0 -0.073 -0.097 0 0.175 p/2-4edge.dat
+1 16 8.558 -2.224 15.368 -0.046 -0.048 -0.014 -0.231 0 -0.073 -0.097 0 0.175 p/2-4cyls.dat
+1 16 4 -2.224 15.368 0 1 0 -0.231 0 -0.073 -0.097 0 0.175 p/2-4disc.dat
+1 16 4 -2.224 15.368 0 -1 0 -0.231 0 -0.073 -0.097 0 0.175 p/2-4edge.dat
+4 16 4 -1.875 14.873 4 -2.12 14.772 4 -2.458 15.281 4 -1.996 15.473
+4 16 8.58 -2.12 14.772 8.627 -1.875 14.873 8.603 -1.996 15.473 8.511 -2.458 15.281
+0 BFC INVERTNEXT
+1 16 4 -1.12 15.64 0 4.608 0 -0.875 0 0.117 -0.175 0 -0.59 p/2-4cyli.dat
+1 16 8.778 -1.12 15.64 -0.174 -1 0.023 -0.875 0 0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 8.778 -1.12 15.64 -0.174 -1 0.023 -0.8754 0 0.1174 -0.175 0 -0.59 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 8.778 -1.12 15.64 -0.174 -0.25 0.023 -0.8754 0 0.1174 -0.175 0 -0.59 p/2-4cyls.dat
+1 16 4 -1.12 15.64 0 1 0 -0.875 0 0.117 -0.175 0 -0.59 p/2-4ndis.dat
+1 16 4 -1.12 15.64 0 -1 0 -0.875 0 0.117 -0.175 0 -0.59 p/2-4edge.dat
+1 16 9 0 15.81 -0.05 -1 0 -0.25 0 0 0 0 0.19 p/1-4disc.dat
+1 16 9 0 15.81 -0.05 -1 0 -0.25 0 0 0 0 0.19 p/1-4edge.dat
+1 16 9 0 15.81 -0.05 -0.05 0 -0.25 0 0 0 0 0.19 p/1-4cyls.dat
+4 16 8.973 -0.133 15.22 9 0 15.26 9 0 15.82 8.95 -0.25 15.82
+4 16 8.6 -2.01 14.85 8.385 -3.09 14.13 9 0 14.6 9 0 15.26
+4 16 8.315 -3.444 0 9 0 0 9 0 14.6 8.315 -3.444 14.082
+3 16 8.433 -2.85 14.285 8.385 -3.09 14.13 8.37 -3.17 14.128
+4 16 7.9 -3.17 14.128 8.37 -3.17 14.128 8.433 -2.85 14.285 7.9 -2.85 14.285
+4 16 8.37 -3.17 14.128 7.9 -3.17 14.128 7.9 -3.444 14.082 8.315 -3.444 14.082
+2 24 8.433 -2.85 14.285 8.37 -3.17 14.128
+2 24 8.315 -3.444 14.082 8.37 -3.17 14.128
+4 16 8.284 -3.49 14.075 7.341 -4.9 0 8.315 -3.444 0 8.315 -3.444 14.082
+3 16 7.108 -5.25 10 7.341 -4.9 8.2 7.341 -4.9 11.8
+3 16 7.341 -4.9 11.93 7.341 -4.9 0 8.284 -3.49 14.075
+4 16 7.9 -3.491 14.075 8.283 -3.491 14.075 8.315 -3.444 14.082 7.9 -3.444 14.082
+2 24 8.315 -3.444 14.082 8.283 -3.491 14.075
+2 24 6.607 -6 7.8 6.968 -5.46 8.006
+3 16 6.968 -5.46 8.006 6.607 -5.46 8.006 6.607 -6 7.8
+4 16 7.341 -4.9 0 7.341 -4.9 8.2 6.607 -6 7.8 6.607 -6 0
+1 16 6.848 -5.64 8.88 0.118 -1 0.394 0.175 0 0.59 -0.875 0 0.117 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 6.848 -5.64 8.88 0.118 -0.56 0.394 0.175 0 0.59 -0.875 0 0.117 p/2-4cyli.dat
+1 16 6.848 -5.64 8.88 0.117 -1 0.394 0.175 0 0.59 -0.875 0 0.117 p/2-4edge.dat
+1 16 6.735 -5.81 10 0 -1 -0.127 0 0 -0.19 -0.25 0 0 p/2-4disc.dat
+1 16 6.735 -5.81 10 0 -0.5 -0.127 0 0 -0.19 -0.25 0 0 p/2-4cyli.dat
+1 16 6.735 -5.81 10 0 1 -0.127 0 0 -0.19 -0.25 0 0 p/2-4edge.dat
+4 16 7.129 -5.22 9.867 7.129 -5.22 10.133 6.728 -5.82 10.25 6.728 -5.82 9.75
+1 16 6.848 -5.64 11.12 -0.118 -1 0.394 -0.175 0 0.59 -0.875 0 -0.117 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 6.848 -5.64 11.12 -0.118 -0.56 0.394 -0.175 0 0.59 -0.875 0 -0.117 p/2-4cyli.dat
+1 16 6.848 -5.64 11.12 -0.118 -1 0.394 -0.175 0 0.59 -0.875 0 -0.117 p/2-4edge.dat
+1 16 7.031 -5.368 12.224 -0.065 -1 -0.118 -0.097 0 -0.175 -0.231 0 0.073 p/2-4disc.dat
+1 16 7.031 -5.368 12.224 -0.065 -0.2 -0.118 -0.097 0 -0.175 -0.231 0 0.073 p/2-4cyli.dat
+1 16 7.031 -5.368 12.224 -0.065 -1 -0.118 -0.097 0 -0.175 -0.231 0 0.073 p/2-4edge.dat
+4 16 7.36 -4.874 11.875 7.428 -4.772 12.12 7.088 -5.281 12.458 6.966 -5.463 11.995
+1 16 7.421 -4.782 13.193 -0.3313 -1 0.334 -0.496 0 0.5 -0.741 0 -0.334 p/2-4ndis.dat
+0 BFC INVERTNEXT
+1 16 7.421 -4.782 13.193 -0.331 -0.9 0.334 -0.496 0 0.5 -0.741 0 -0.334 p/2-4cyli.dat
+1 16 7.421 -4.782 13.193 -0.331 -1 0.334 -0.496 0 0.5 -0.741 0 -0.334 p/2-4edge.dat
+1 16 7.871 -4.109 14.108 -0.119 -1 -0.09 -0.177 0 -0.134 -0.177 0 0.134 p/2-4disc.dat
+1 16 7.871 -4.109 14.108 -0.119 -0.3 -0.09 -0.177 0 -0.134 -0.177 0 0.134 p/2-4cyli.dat
+1 16 7.871 -4.109 14.108 -0.119 -1 -0.09 -0.177 0 -0.134 -0.177 0 0.134 p/2-4edge.dat
+4 16 8.088 -3.785 13.597 8.213 -3.597 13.785 7.985 -3.938 14.292 7.753 -4.284 13.934
+1 16 8.478 -3.196 14.78 -0.496 -1 0.224 -0.742 0 0.334 -0.495 0 -0.5 p/1-8ndis.dat
+1 16 8.478 -3.196 14.78 -0.496 -10 0.222 -0.742 0 0.334 -0.495 0 -0.5 p/1-8edge.dat
+0 BFC INVERTNEXT
+1 16 8.478 -3.196 14.78 -0.496 -0.38 0.222 -0.742 0 0.334 -0.495 0 -0.5 p/1-8cyli.dat
+5 24 8.315 -3.444 0 8.315 -3.444 14.082 9 0 7 6.364 -6.364 7
+5 24 9 0 0 9 0 14.6 8.315 3.444 7 8.315 -3.444 7
+5 24 9 0 14.6 9 0 15.26 8.315 3.444 15 8.315 -3.444 15
+5 24 9 0 15.82 9 0 15.26 8.95 0.25 15.5 8.95 -0.25 15.5
+5 24 9 0 15.82 9 0 16 8.95 0.25 15.9 8.95 -0.25 15.9
+5 24 8.315 3.444 0 8.315 3.444 14.082 9 0 7 6.364 6.364 7
+
+0 FILE p/rect2a.dat
+0 Rectangle with 2 Adjacent Edges
+0 Name: rect2a.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-17 [mikeheide] changed winding to CCW
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 0 1 -1 0 1
+2 24 1 0 -1 1 0 1
+4 16 -1 0 1 -1 0 -1 1 0 -1 1 0 1
+0
+
+0 FILE parts/44567.dat
+0 Hinge Plate  1 x  2 Locking with Single Finger On Side Vertical
+0 Name: 44567.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 0 0 1 0 -1 0 -1 0 0 p/stud3.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 20 8 9 16 8 6 -16 8 6 -20 8 9
+4 16 -20 8 -10 -16 8 -6 16 8 -6 20 8 -10
+4 16 20 8 -10 16 8 -6 16 8 6 20 8 9
+4 16 -20 8 -10 -20 8 9 -16 8 6 -16 8 -6
+1 16 0 2 -10 1 0 0 0 1 0 0 0 1 p/clh6.dat
+1 16 0 7 0 -20 0 0 0 -7 0 0 0 10 p/box4-7a.dat
+0 BFC INVERTNEXT
+1 16 0 7.5 9.5 20 0 0 0 -0.5 0 0 0 -0.5 p/box2-5.dat
+1 16 20 7.5 -0.5 0 -1 0 0.5 0 0 0 0 9.5 p/rect1.dat
+1 16 -20 7.5 -0.5 0 1 0 0.5 0 0 0 0 -9.5 p/rect1.dat
+1 16 -14.5 4 -10 0 0 -5.5 -4 0 0 0 1 0 p/rect3.dat
+1 16 14.5 4 -10 0 0 5.5 4 0 0 0 1 0 p/rect3.dat
+1 16 -6.5 6.722 -10 0 0 2.5 1.278 0 0 0 1 0 p/rect1.dat
+1 16 6.5 6.722 -10 0 0 2.5 1.278 0 0 0 1 0 p/rect1.dat
+0
+
+0 FILE p/box4-7a.dat
+0 Box with 4 Faces without 7 Adjacent Edges
+0 Name: box4-7a.dat
+0 Author: Manfred Moolhuysen 
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-07-15 [PTadmin] Official Update 1998-07
+0 !HISTORY 2002-12-13 [hafhead] Made BFC compliant
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+4 16 1 1 -1 -1 1 -1 -1 1 1 1 1 1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE parts/30065.dat
+0 =Dish  4 x  4 Inverted
+0 Name: 30065.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part Alias UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS Space, Radar Dish, Round
+
+0 !HISTORY 2002-02-18 [PTadmin] Official Update 2002-01
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-10-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-05-09 [cwdee] Remove CATEGORY Round
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2013-12-14 [cwdee] Add = prefix
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Alias of 3960
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/3960.dat
+0
+
+0 FILE parts/3960.dat
+0 Dish  4 x  4 Inverted
+0 Name: 3960.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+0 !KEYWORDS Space, Radar Dish, Round
+
+0 !HISTORY 2003-06-27 [Steffen] re-created part using existing subfiles
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-05-09 [cwdee] Remove CATEGORY Round
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3960s03.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3960s01.dat
+0
+
+0 FILE parts/s/3960s01.dat
+0 ~Dish  4 x  4 Inverted without Top Face
+0 Name: s\3960s01.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Subpart UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2003-06-27 [Steffen] BFCed; added missing disc; re-worked file to use ring primitives
+0 !HISTORY 2003-06-28 [Steffen] re-worked part underside to use smooth subfile
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [Philo] Adjusted position of bottom tube to match bottom surface (2008-04-28)
+0 !HISTORY 2009-10-11 [cwdee] Corrected BFC INVERTNEXT syntax
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 0 4 0 -9 0 0 0 -0.9 0 0 0 9 p/48/1-4disc.dat
+1 16 0 4 0 0 0 9 0 -0.9 0 9 0 0 p/48/1-4disc.dat
+1 16 0 4 0 9 0 0 0 -0.9 0 0 0 -9 p/48/1-4disc.dat
+1 16 0 4 0 0 0 -9 0 -0.9 0 -9 0 0 p/48/1-4disc.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 0.9 0 0 0 0.9 0 0 0 0.9 parts/s/3960s03.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 4 0 1 0 0 0 8 0 0 0 1 p/axlehole.dat
+1 16 0 4 0 1 0 0 0 1 0 0 0 1 p/axlehol2.dat
+1 16 0 12 0 1 0 0 0 1 0 0 0 1 p/axlehol3.dat
+0 BFC INVERTNEXT
+1 16 0 12 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 16 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 16 0 2 0 0 0 -1 0 0 0 2 p/4-4ring3.dat
+1 16 0 11 0 8 0 0 0 5 0 0 0 8 p/4-4cyli.dat
+1 16 0 11 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 16 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 11 0 2 0 0 0 -1 0 0 0 2 p/4-4ring4.dat
+1 16 0 4.15 0 10 0 0 0 6.85 0 0 0 10 p/4-4cyli.dat
+1 16 0 4.15 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 11 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 0 0 -10 0 0 0 1 0 0 0 -10 p/48/1-4disc.dat
+1 16 0 0 0 10 0 0 0 1 0 0 0 -10 p/48/1-4disc.dat
+1 16 0 0 0 -10 0 0 0 1 0 0 0 10 p/48/1-4disc.dat
+1 16 0 0 0 10 0 0 0 1 0 0 0 10 p/48/1-4disc.dat
+0 BFC INVERTNEXT
+1 16 0 11 0 -36 0 0 0 5 0 0 0 -36 p/48/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 11 0 36 0 0 0 5 0 0 0 -36 p/48/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 11 0 -36 0 0 0 5 0 0 0 36 p/48/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 11 0 36 0 0 0 5 0 0 0 36 p/48/1-4cyli.dat
+1 16 0 11 0 -36 0 0 0 1 0 0 0 -36 p/48/1-4edge.dat
+1 16 0 11 0 36 0 0 0 1 0 0 0 -36 p/48/1-4edge.dat
+1 16 0 11 0 -36 0 0 0 1 0 0 0 36 p/48/1-4edge.dat
+1 16 0 11 0 36 0 0 0 1 0 0 0 36 p/48/1-4edge.dat
+1 16 0 16 0 -36 0 0 0 1 0 0 0 -36 p/48/1-4edge.dat
+1 16 0 16 0 36 0 0 0 1 0 0 0 -36 p/48/1-4edge.dat
+1 16 0 16 0 4 0 0 0 -4 0 0 0 -4 p/48/1-4ring9.dat
+1 16 0 16 0 0 0 -4 0 -4 0 -4 0 0 p/48/1-4ring9.dat
+1 16 0 16 0 -4 0 0 0 -4 0 0 0 4 p/48/1-4ring9.dat
+1 16 0 16 0 0 0 4 0 -4 0 4 0 0 p/48/1-4ring9.dat
+1 16 0 16 0 -36 0 0 0 1 0 0 0 36 p/48/1-4edge.dat
+1 16 0 16 0 36 0 0 0 1 0 0 0 36 p/48/1-4edge.dat
+1 16 0 8 0 -40 0 0 0 8 0 0 0 -40 p/48/1-4cyli.dat
+1 16 0 8 0 40 0 0 0 8 0 0 0 -40 p/48/1-4cyli.dat
+1 16 0 8 0 -40 0 0 0 8 0 0 0 40 p/48/1-4cyli.dat
+1 16 0 8 0 40 0 0 0 8 0 0 0 40 p/48/1-4cyli.dat
+1 16 0 8 0 -40 0 0 0 1 0 0 0 -40 p/48/1-4edge.dat
+1 16 0 8 0 40 0 0 0 1 0 0 0 -40 p/48/1-4edge.dat
+1 16 0 8 0 -40 0 0 0 1 0 0 0 40 p/48/1-4edge.dat
+1 16 0 8 0 40 0 0 0 1 0 0 0 40 p/48/1-4edge.dat
+1 16 0 16 0 -40 0 0 0 1 0 0 0 -40 p/48/1-4edge.dat
+1 16 0 16 0 40 0 0 0 1 0 0 0 -40 p/48/1-4edge.dat
+1 16 0 16 0 -40 0 0 0 1 0 0 0 40 p/48/1-4edge.dat
+1 16 0 16 0 40 0 0 0 1 0 0 0 40 p/48/1-4edge.dat
+0
+
+0 FILE p/48/1-4disc.dat
+0 Hi-Res Disc 0.25
+0 Name: 48\1-4disc.dat
+0 Author: Manfred Moolhuysen
+0 !LDRAW_ORG 48_Primitive UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-04-09 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 0 0 0 1 0 0 0.9914 0 0.1305 0.9659 0 0.2588
+4 16 0 0 0 0.9659 0 0.2588 0.9239 0 0.3827 0.8660 0 0.5000
+4 16 0 0 0 0.8660 0 0.5000 0.7934 0 0.6088 0.7071 0 0.7071
+4 16 0 0 0 0.7071 0 0.7071 0.6088 0 0.7934 0.5000 0 0.8660
+4 16 0 0 0 0.5000 0 0.8660 0.3827 0 0.9239 0.2588 0 0.9659
+4 16 0 0 0 0.2588 0 0.9659 0.1305 0 0.9914 0 0 1
+0
+
+0 FILE parts/s/3960s03.dat
+0 ~Dish  4 x  4 Inverted - Dish Surface
+0 Name: s\3960s03.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Subpart UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-06-27 [Steffen] 48ed, moved optional lines to 3960s02.dat
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 8 0 40 0 0 0 1 0 0 0 40 p/48/4-4edge.dat
+1 16 0 0 0 0.991445 0 -0.130526 0 1 0 0.130526 0 0.991445 parts/s/3960s02.dat
+1 16 0 0 0 0.92388 0 -0.382683 0 1 0 0.382683 0 0.92388 parts/s/3960s02.dat
+1 16 0 0 0 0.793353 0 -0.608761 0 1 0 0.608761 0 0.793353 parts/s/3960s02.dat
+1 16 0 0 0 0.608761 0 -0.793353 0 1 0 0.793353 0 0.608761 parts/s/3960s02.dat
+1 16 0 0 0 0.382683 0 -0.92388 0 1 0 0.92388 0 0.382683 parts/s/3960s02.dat
+1 16 0 0 0 0.130526 0 -0.991445 0 1 0 0.991445 0 0.130526 parts/s/3960s02.dat
+1 16 0 0 0 -0.130526 0 -0.991445 0 1 0 0.991445 0 -0.130526 parts/s/3960s02.dat
+1 16 0 0 0 -0.382683 0 -0.92388 0 1 0 0.92388 0 -0.382683 parts/s/3960s02.dat
+1 16 0 0 0 -0.608761 0 -0.793353 0 1 0 0.793353 0 -0.608761 parts/s/3960s02.dat
+1 16 0 0 0 -0.793353 0 -0.608761 0 1 0 0.608761 0 -0.793353 parts/s/3960s02.dat
+1 16 0 0 0 -0.92388 0 -0.382683 0 1 0 0.382683 0 -0.92388 parts/s/3960s02.dat
+1 16 0 0 0 -0.991445 0 -0.130526 0 1 0 0.130526 0 -0.991445 parts/s/3960s02.dat
+1 16 0 0 0 -0.991445 0 0.130526 0 1 0 -0.130526 0 -0.991445 parts/s/3960s02.dat
+1 16 0 0 0 -0.92388 0 0.382683 0 1 0 -0.382683 0 -0.92388 parts/s/3960s02.dat
+1 16 0 0 0 -0.793353 0 0.608761 0 1 0 -0.608761 0 -0.793353 parts/s/3960s02.dat
+1 16 0 0 0 -0.608761 0 0.793353 0 1 0 -0.793353 0 -0.608761 parts/s/3960s02.dat
+1 16 0 0 0 -0.382683 0 0.92388 0 1 0 -0.92388 0 -0.382683 parts/s/3960s02.dat
+1 16 0 0 0 -0.130526 0 0.991445 0 1 0 -0.991445 0 -0.130526 parts/s/3960s02.dat
+1 16 0 0 0 0.130526 0 0.991445 0 1 0 -0.991445 0 0.130526 parts/s/3960s02.dat
+1 16 0 0 0 0.382683 0 0.92388 0 1 0 -0.92388 0 0.382683 parts/s/3960s02.dat
+1 16 0 0 0 0.608761 0 0.793353 0 1 0 -0.793353 0 0.608761 parts/s/3960s02.dat
+1 16 0 0 0 0.793353 0 0.608761 0 1 0 -0.608761 0 0.793353 parts/s/3960s02.dat
+1 16 0 0 0 0.92388 0 0.382683 0 1 0 -0.382683 0 0.92388 parts/s/3960s02.dat
+1 16 0 0 0 0.991445 0 0.130526 0 1 0 -0.130526 0 0.991445 parts/s/3960s02.dat
+0
+
+0 FILE parts/s/3960s02.dat
+0 ~Dish  4 x  4 Slice 15 Degrees
+0 Name: s\3960s02.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Subpart UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-27-06 [Steffen] BFCed, added conditional lines
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [Philo] Added missing condlines on one edge, corrected condlines on top (2008-04-28)
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+0 !HISTORY 2014-09-03 [Philo] Increased precision to avoid tiny gaps
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+4 16 34.69963 6 -4.568262 34.9998 6 0 40 8 0 39.656 8 -5.22
+4 16 40 8 0 34.9998 6 0 34.699 6 4.568126 39.656 8 5.22
+4 16 29.2466 4 -3.850294 29.49982 4 0 34.9998 6 0 34.69963 6 -4.568262
+4 16 34.9998 6 0 29.49982 4 0 29.246 4 3.85018 34.699 6 4.568126
+4 16 21.81127 2 -2.871376 21.99991 2 0 29.49982 4 0 29.2466 4 -3.850294
+4 16 29.49982 4 0 21.99991 2 0 21.81094 2 2.871282 29.246 4 3.85018
+4 16 9.914 0 -1.305 10 0 0 21.99991 2 0 21.81127 2 -2.871376
+4 16 21.99991 2 0 10 0 0 9.914 0 1.305 21.81094 2 2.871282
+5 24 34.9998 6 0 40 8 0 39.656 8 -5.22 34.699 6 4.568126
+5 24 34.69963 6 -4.568262 34.9998 6 0 40 8 0 29.2466 4 -3.850294
+5 24 29.49982 4 0 34.9998 6 0 34.69963 6 -4.568262 29.246 4 3.85018
+5 24 34.9998 6 0 34.699 6 4.568126 39.656 8 5.22 29.49982 4 0
+5 24 29.2466 4 -3.850294 29.49982 4 0 34.9998 6 0 21.81127 2 -2.871376
+5 24 21.99991 2 0 29.49982 4 0 29.2466 4 -3.850294 21.81094 2 2.871282
+5 24 29.49982 4 0 29.246 4 3.85018 34.699 6 4.568126 21.99991 2 0
+5 24 21.81127 2 -2.871376 21.99991 2 0 29.49982 4 0 9.914 0 -1.305
+5 24 9.914 0 -1.305 10 0 0 21.99991 2 0 -3 0 2
+5 24 10 0 0 21.99991 2 0 21.81127 2 -2.871376 9.914 0 1.305
+5 24 21.99991 2 0 21.81094 2 2.871282 29.246 4 3.85018 10 0 0
+5 24 10 0 0 9.914 0 1.305 21.81094 2 2.871282 -3.189 0 3.871
+5 24 34.69963 6 -4.568262 39.656 8 -5.22 38.636 8 -10.352 34.9998 6 0
+5 24 29.2466 4 -3.850294 34.69963 6 -4.568262 33.806 6 -9.058 29.49982 4 0
+5 24 21.81127 2 -2.871376 29.2466 4 -3.850294 28.493 4 -7.634 21.99991 2 0
+5 24 9.914 0 -1.305 21.81127 2 -2.871376 21.25 2 -5.693 10 0 0
+
+0 FILE parts/6005.dat
+0 Arch  1 x  3 x  2 with Curved Top
+0 Name: 6005.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-10-06 [guyvivan] Made BFC Compliant and use more primitives
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 12 -8 2 0 0 0 4 0 0 0 2 p/box5.dat
+2 24 -10 48 -30 -10 48 -50
+2 24 10 48 -50 10 48 -30
+2 24 -6 48 -34 -6 48 -46
+2 24 6 48 -46 6 48 -34
+1 16 10 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+1 16 6 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+1 16 -6 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+1 16 -10 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4edge.dat
+1 16 0 16 -12 -6 0 0 0 -1 0 0 0 -2 p/rect3.dat
+1 16 0 10.195 -14 -6 0 0 0 0 -5.805 0 1 0 p/rect3.dat
+2 24 6 4.39 -14 6 4.69 -17.02
+2 24 6 4.69 -17.02 6 6.74 -23.78
+2 24 6 6.74 -23.78 6 10.07 -30
+2 24 6 13.34 -34 6 14.54 -35.46
+2 24 6 14.54 -35.46 6 20 -39.93
+2 24 6 20 -39.93 6 26.22 -43.26
+2 24 6 26.22 -43.26 6 32.98 -45.31
+2 24 6 32.98 -45.31 6 40 -46
+2 24 -6 4.39 -14 -6 4.69 -17.02
+2 24 -6 4.69 -17.02 -6 6.74 -23.78
+4 16 -6 4.39 -14 -6 4.69 -17.02 -6 6.74 -23.78 -6 16 -14
+4 16 6 4.69 -17.02 6 4.39 -14 6 16 -14 6 6.74 -23.78
+2 24 -6 6.74 -23.78 -6 10.07 -30
+4 16 -6 6.74 -23.78 -6 10.07 -30 -6 16 -30 -6 16 -14
+4 16 6 10.07 -30 6 6.74 -23.78 6 16 -14 6 16 -30
+2 24 -6 13.34 -34 -6 14.54 -35.46
+2 24 -6 14.54 -35.46 -6 20 -39.93
+4 16 -6 13.34 -34 -6 14.54 -35.46 -6 20 -39.93 -6 48 -34
+4 16 6 14.54 -35.46 6 13.34 -34 6 48 -34 6 20 -39.93
+2 24 -6 20 -39.93 -6 26.22 -43.26
+4 16 6 32.98 -45.31 6 26.22 -43.26 6 20 -39.93 6 48 -34
+4 16 -6 26.22 -43.26 -6 32.98 -45.31 -6 48 -34 -6 20 -39.93
+2 24 -6 26.22 -43.26 -6 32.98 -45.31
+2 24 -6 32.98 -45.31 -6 40 -46
+0 BFC INVERTNEXT
+1 16 0 16 -2 6 0 0 0 -4 0 0 0 8 p/box5.dat
+1 16 0 12 0 -10 0 0 0 -4 0 0 0 10 p/box2-5.dat
+4 16 10 48 -30 6 48 -34 -6 48 -34 -10 48 -30
+4 16 -10 48 -30 -6 48 -34 -6 48 -46 -10 48 -50
+4 16 -10 48 -50 -6 48 -46 6 48 -46 10 48 -50
+4 16 10 48 -50 6 48 -46 6 48 -34 10 48 -30
+4 16 10 16 -10 6 16 -10 6 16 6 10 16 10
+4 16 10 16 10 6 16 6 -6 16 6 -10 16 10
+4 16 -10 16 10 -6 16 6 -6 16 -10 -10 16 -10
+1 16 0 4 -10 -10 0 0 0 0 -4 0 -1 0 p/rect3.dat
+1 16 0 42 -30 10 0 0 0 0 6 0 -1 0 p/rect3.dat
+1 16 0 23.035 -30 -6 0 0 0 0 -12.965 0 -1 0 p/rect3.dat
+1 16 0 30.67 -34 6 0 0 0 0 -17.33 0 1 0 p/rect.dat
+1 16 0 44 -46 6 0 0 0 0 4 0 -1 0 p/rect3.dat
+1 16 0 44 -50 -10 0 0 0 0 4 0 1 0 p/rect3.dat
+0 BFC INVERTNEXT
+1 16 10 36 -10 0 -4 0 -20 0 0 0 0 -20 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 36 -10 0 4 0 -20 0 0 0 0 -20 p/1-4cyli.dat
+4 16 6 4.39 -14 6 4.69 -17.02 -6 4.69 -17.02 -6 4.39 -14
+4 16 6 4.69 -17.02 6 6.74 -23.78 -6 6.74 -23.78 -6 4.69 -17.02
+5 24 6 4.69 -17.02 -6 4.69 -17.02 6 6.74 -23.78 6 4 -10
+4 16 6 6.74 -23.78 6 10.07 -30 -6 10.07 -30 -6 6.74 -23.78
+5 24 6 6.74 -23.78 -6 6.74 -23.78 6 10.07 -30 6 4.69 -17.02
+4 16 6 13.34 -34 6 14.54 -35.46 -6 14.54 -35.46 -6 13.34 -34
+4 16 6 14.54 -35.46 6 20 -39.93 -6 20 -39.93 -6 14.54 -35.46
+5 24 6 14.54 -35.46 -6 14.54 -35.46 6 20 -39.93 6 10.07 -30
+4 16 6 20 -39.93 6 26.22 -43.26 -6 26.22 -43.26 -6 20 -39.93
+5 24 6 20 -39.93 -6 20 -39.93 6 26.22 -43.26 6 14.54 -35.46
+4 16 6 26.22 -43.26 6 32.98 -45.31 -6 32.98 -45.31 -6 26.22 -43.26
+5 24 6 26.22 -43.26 -6 26.22 -43.26 6 32.98 -45.31 6 20 -39.93
+4 16 6 32.98 -45.31 6 40 -46 -6 40 -46 -6 32.98 -45.31
+5 24 6 32.98 -45.31 -6 32.98 -45.31 6 40 -46 6 26.22 -43.26
+4 16 10 48 -30 10 40 -30 10 40 -50 10 48 -50
+4 16 6 32.98 -45.31 6 48 -34 6 48 -46 6 40 -46
+4 16 -6 48 -34 -6 32.98 -45.31 -6 40 -46 -6 48 -46
+1 16 10 12 0 0 -1 0 4 0 0 0 0 -10 p/rect1.dat
+1 16 -10 12 0 0 1 0 4 0 0 0 0 10 p/rect1.dat
+4 16 -10 40 -30 -10 48 -30 -10 48 -50 -10 40 -50
+1 16 0 8 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 36 -10 0 -1 0 -20 0 0 0 0 -20 p/1-4ndis.dat
+1 16 6 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4ndis.dat
+1 16 -6 36 -10 0 -1 0 -20 0 0 0 0 -20 p/1-4ndis.dat
+1 16 -10 36 -10 0 1 0 -20 0 0 0 0 -20 p/1-4ndis.dat
+1 16 -10 40 -10 0 1 0 -40 0 0 0 0 -40 p/48/1-4edge.dat
+1 16 10 40 -10 0 1 0 -40 0 0 0 0 -40 p/48/1-4edge.dat
+1 16 10 40 -10 0 -1 0 -4 0 0 0 0 -4 p/48/1-4ring9.dat
+1 16 -10 40 -10 0 1 0 -4 0 0 0 0 -4 p/48/1-4ring9.dat
+1 16 -10 40 -10 0 20 0 -40 0 0 0 0 -40 p/48/1-4cyli.dat
+4 16 10 4 -10 10 4.31 -14.698 10 16 -30 10 16 -10
+4 16 10 16 -30 10 4.31 -14.698 10 5.228 -19.317 10 6.74 -23.777
+4 16 10 16 -30 10 6.74 -23.777 10 8.824 -28 10 11.438 -31.917
+4 16 10 16 -30 10 11.438 -31.917 10 14.544 -35.456 10 18.083 -38.562
+4 16 10 16 -30 10 18.083 -38.562 10 22 -41.176 10 26.223 -43.26
+4 16 10 16 -30 10 26.223 -43.26 10 30.683 -44.772 10 35.302 -45.69
+4 16 10 16 -30 10 35.305 -45.69 10 40 -46 10 40 -30
+4 16 -10 4.31 -14.698 -10 4 -10 -10 16 -10 -10 16 -30
+4 16 -10 4.31 -14.698 -10 16 -30 -10 6.74 -23.777 -10 5.228 -19.317
+4 16 -10 6.74 -23.777 -10 16 -30 -10 11.438 -31.917 -10 8.824 -28
+4 16 -10 11.438 -31.917 -10 16 -30 -10 18.083 -38.562 -10 14.544 -35.456
+4 16 -10 18.083 -38.562 -10 16 -30 -10 26.223 -43.26 -10 22 -41.176
+4 16 -10 26.223 -43.26 -10 16 -30 -10 35.302 -45.69 -10 30.683 -44.772
+4 16 -10 35.305 -45.69 -10 16 -30 -10 40 -30 -10 40 -46
+0
+
+0 FILE p/48/1-4ring9.dat
+0 Hi-Res Ring  9 x 0.25
+0 Name: 48\1-4ring9.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+0 !HISTORY 2014-12-20 [MMR1988] Fixed a rounding issue
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+4 16 10 0 0 9.914 0 1.305 8.9226 0 1.1745 9 0 0
+4 16 9.914 0 1.305 9.659 0 2.588 8.6931 0 2.3292 8.9226 0 1.1745
+4 16 9.659 0 2.588 9.239 0 3.827 8.3151 0 3.4443 8.6931 0 2.3292
+4 16 9.239 0 3.827 8.66 0 5 7.794 0 4.5 8.3151 0 3.4443
+4 16 8.66 0 5 7.934 0 6.088 7.1406 0 5.4792 7.794 0 4.5
+4 16 7.934 0 6.088 7.071 0 7.071 6.3639 0 6.3639 7.1406 0 5.4792
+4 16 7.071 0 7.071 6.088 0 7.934 5.4792 0 7.1406 6.3639 0 6.3639
+4 16 6.088 0 7.934 5 0 8.66 4.5 0 7.794 5.4792 0 7.1406
+4 16 5 0 8.66 3.827 0 9.239 3.4443 0 8.3151 4.5 0 7.794
+4 16 3.827 0 9.239 2.588 0 9.659 2.3292 0 8.6931 3.4443 0 8.3151
+4 16 2.588 0 9.659 1.305 0 9.914 1.1745 0 8.9226 2.3292 0 8.6931
+4 16 1.305 0 9.914 0 0 10 0 0 9 1.1745 0 8.9226
+0 // Build by Primitive Generator 2
+
+0 FILE parts/3622.dat
+0 Brick  1 x  3
+0 Name: 3622.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-10-15 [westrate] Subfiled, BFC'd
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3622s01.dat
+4 16 30 0 -10 -30 0 -10 -30 24 -10 30 24 -10
+0
+
+0 FILE parts/s/3622s01.dat
+0 ~Brick  1 x  3 without Front Face
+0 Name: s\3622s01.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG Subpart UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-10-14 [westrate] Subfiled, BFC'd
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-08-31 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+0 // Uncomment the following for front face
+0 // 4 16 30 0 -10 -30 0 -10 -30 24 -10 30 24 -10
+1 16 10 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -10 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+
+0 BFC INVERTNEXT
+1 16 0 24 0 26 0 0 0 -20 0 0 0 6 p/box5.dat
+
+4 16 30 24 10 26 24 6 -26 24 6 -30 24 10
+4 16 -30 24 10 -26 24 6 -26 24 -6 -30 24 -10
+4 16 -30 24 -10 -26 24 -6 26 24 -6 30 24 -10
+4 16 30 24 -10 26 24 -6 26 24 6 30 24 10
+
+1 16 0 24 0 30 0 0 0 -24 0 0 0 10 p/box4t.dat
+
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3623.dat
+0 Plate  1 x  3
+0 Name: 3623.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-04-02 [Sirio] Introduced use of subpart
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3623s01.dat
+4 16 -30 8 -10 30 8 -10 30 0 -10 -30 0 -10
+
+0 FILE parts/s/3623s01.dat
+0 ~Plate  1 x  3 without Front Face
+0 Name: s\3623s01.dat
+0 Author: Massimo Maso [Sirio]
+0 !LDRAW_ORG Subpart UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+1 16 10 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -10 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 26 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 30 8 10 26 8 6 -26 8 6 -30 8 10
+4 16 -30 8 10 -26 8 6 -26 8 -6 -30 8 -10
+4 16 -30 8 -10 -26 8 -6 26 8 -6 30 8 -10
+4 16 30 8 -10 26 8 -6 26 8 6 30 8 10
+1 16 0 8 0 30 0 0 0 -8 0 0 0 10 p/box4t.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug-1x3.dat
+
+0 FILE p/stug-1x3.dat
+0 Stud Group  1 x  3
+0 Name: stug-1x3.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16   0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16  20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+0 FILE p/box4t.dat
+0 Box with 4 Adjacent Faces and All Edges
+0 Name: box4t.dat
+0 Author: Tore Eriksson [Tore_Eriksson]
+0 !LDRAW_ORG Primitive UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1997-09-29 [PTadmin] Official Update 1997-15
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 -1 0 -1 1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16  1 1  1  1 1 -1 -1 1 -1 -1 1  1
+4 16  1 1  1 -1 1  1 -1 0  1  1 0  1
+4 16 -1 1  1 -1 1 -1 -1 0 -1 -1 0  1
+0 4 16 -1 1 -1 -1 0 -1  1 0 -1  1 1 -1
+4 16  1 1 -1  1 1  1  1 0  1  1 0 -1
+0
+
+0 FILE parts/2555.dat
+0 Tile  1 x  1 with Clip
+0 Name: 2555.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-11-13 [sbliss] Updated 3070 reference to 3070a
+0 !HISTORY 2003-11-13 [Steffen] BFCed
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-14 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2013-12-15 [MagFors] Added edge lines inside the clip
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/3070a.dat
+
+2 24 10 0 4 -10 0 4
+2 24 10 0 -4 -10 0 -4
+4 16 -10 0 -4 -4 -2 -4 4 -2 -4 10 0 -4
+4 16 10 0 4 4 -2 4 -4 -2 4 -10 0 4
+1 16 0 -6 4 0 0 -4 4 0 0 0 -1 0 p/5-16ndis.dat
+1 16 0 -6 4 0 0 4 4 0 0 0 -1 0 p/5-16ndis.dat
+1 16 0 -6 -4 0 0 -4 4 0 0 0 1 0 p/5-16ndis.dat
+1 16 0 -6 -4 0 0 4 4 0 0 0 1 0 p/5-16ndis.dat
+0 BFC INVERTNEXT
+1 16 0 -6 4 0 0 -4 4 0 0 0 -8 0 p/5-16cylo.dat
+0 BFC INVERTNEXT
+1 16 0 -6 4 0 0 4 4 0 0 0 -8 0 p/5-16cylo.dat
+1 16 -3.8478 -8.7654 0 0 -1 -0.1522 0 0 -1.2346 -4 0 0 p/rect.dat
+1 16 3.8478 -8.7654 0 0 1 0.1522 0 0 -1.2346 4 0 0 p/rect.dat
+1 16 7 -5 0 0 2 -1 0 0 -5 -4 0 0 p/box2-7.dat
+1 16 -7 -5 0 0 -2 1 0 0 -5 4 0 0 p/box2-7.dat
+4 16 4 -2 -4 4 -6 -4 8 -10 -4 10 0 -4
+3 16 8 -10 -4 4 -6 -4 4 -10 -4
+4 16 -10 0 -4 -8 -10 -4 -4 -6 -4 -4 -2 -4
+3 16 -4 -10 -4 -4 -6 -4 -8 -10 -4
+4 16 10 0 4 8 -10 4 4 -6 4 4 -2 4
+3 16 4 -10 4 4 -6 4 8 -10 4
+4 16 -4 -2 4 -4 -6 4 -8 -10 4 -10 0 4
+3 16 -8 -10 4 -4 -6 4 -4 -10 4
+
+
+0 FILE p/5-16cylo.dat
+0 Cylinder Open 0.3125
+0 Name: 5-16cylo.dat
+0 Author: Max Martin Richter [MMR1988]
+0 !LDRAW_ORG Primitive UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/5-16cyli.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/5-16edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/5-16edge.dat
+
+0 FILE p/5-16edge.dat
+0 Circle 0.3125
+0 Name: 5-16edge.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+
+0 end of file
+
+
+
+0 FILE p/5-16cyli.dat
+0 Cylinder 0.3125
+0 Name: 5-16cyli.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+4 16 0.9239 0 0.3827 1 0 0 1 1 0 0.9239 1 0.3827
+4 16 0.7071 0 0.7071 0.9239 0 0.3827 0.9239 1 0.3827 0.7071 1 0.7071
+4 16 0.3827 0 0.9239 0.7071 0 0.7071 0.7071 1 0.7071 0.3827 1 0.9239
+4 16 0 0 1 0.3827 0 0.9239 0.3827 1 0.9239 0 1 1
+4 16 -0.3827 0 0.9239 0 0 1 0 1 1 -0.3827 1 0.9239
+
+0 conditional lines
+5 24 1 1 0 1 0 0 1 1 -0.4142 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 0.9239 0 0.3827 1 1 0 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 0.7071 0 0.7071 0.9239 1 0.3827 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.3827 0 0.9239 0.7071 1 0.7071 0 1 1
+5 24 0 1 1 0 0 1 0.3827 1 0.9239 -0.3827 1 0.9239
+5 24 -0.3827 1 0.9239 -0.3827 0 0.9239 0 1 1 -0.7654 1 0.7654
+
+0 end of file
+
+
+
+0 FILE p/5-16ndis.dat
+0 Disc Negative 0.3125
+0 Name: 5-16ndis.dat
+0 Author: Max Martin Richter [MMR1988]
+0 !LDRAW_ORG Primitive UPDATE 2013-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-07-21 [PTadmin] Official Update 2013-01
+
+3 16 1 0 1 0.9239 0 0.3827 1 0 0
+3 16 1 0 1 0.7071 0 0.7071 0.9239 0 0.3827
+3 16 1 0 1 0.3827 0 0.9239 0.7071 0 0.7071
+3 16 1 0 1 0 0 1 0.3827 0 0.9239
+3 16 -1 0 1 -0.3827 0 0.9239 0 0 1
+0 // Build by Primitive Generator 2
+
+0 FILE parts/3070a.dat
+0 Tile  1 x  1 without Groove
+0 Name: 3070a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-07-01 [Steffen] BFCed
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-10-13 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 8 0 10 0 0 0 -8 0 0 0 10 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 6 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 -10 8 10 -6 8 6 6 8 6 10 8 10
+4 16 -10 8 -10 -6 8 -6 -6 8 6 -10 8 10
+4 16 10 8 -10 6 8 -6 -6 8 -6 -10 8 -10
+4 16 10 8 10 6 8 6 6 8 -6 10 8 -10
+4 16 -10 0 10 10 0 10 10 0 -10 -10 0 -10
+0
+
+0 FILE parts/47905.dat
+0 Brick  1 x  1 with Studs on Two Opposite Sides
+0 Name: 47905.dat
+0 Author: Sven Moritz Hein [smhltec]
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-03-30 [mkennedy] Made BFC compliant
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 6 24 6 -6 24 6 
+2 24 -6 24 -6 6 24 -6 
+2 24 6 4 6 -6 4 6 
+2 24 -6 4 -6 6 4 -6 
+2 24 10 24 10 -10 24 10 
+2 24 -10 24 -10 10 24 -10 
+2 24 10 0 10 -10 0 10 
+2 24 -10 0 -10 10 0 -10 
+0
+0 BFC INVERTNEXT
+1 16 0 10 10 0 0 4 4 0 0 0 -4 0 p/4-4cyli.dat
+1 16 0 10 6 0 0 4 4 0 0 0 1 0 p/4-4edge.dat
+1 16 0 10 10 0 0 6 6 0 0 0 1 0 p/4-4edge.dat
+1 16 0 10 6 0 0 4 4 0 0 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 0 0 6 6 0 0 0 -1 0 p/4-4ndis.dat
+0 BFC INVERTNEXT
+1 16 0 10 -10 0 0 4 4 0 0 0 4 0 p/4-4cyli.dat
+1 16 0 10 -6 0 0 4 4 0 0 0 1 0 p/4-4edge.dat
+1 16 0 10 -10 0 0 6 6 0 0 0 1 0 p/4-4edge.dat
+1 16 0 10 -6 0 0 4 4 0 0 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 0 0 6 6 0 0 0 1 0 p/4-4ndis.dat
+0
+4 16 6 24 6 6 24 -6 10 24 -10 10 24 10
+4 16 -6 24 6 6 24 6 10 24 10 -10 24 10
+4 16 -6 24 -6 -6 24 6 -10 24 10 -10 24 -10
+4 16 6 24 -6 -6 24 -6 -10 24 -10 10 24 -10
+0
+4 16 -6 16 -10 6 16 -10 10 24 -10 -10 24 -10
+4 16 -6 4 -10 -6 16 -10 -10 24 -10 -10 0 -10
+4 16 6 4 -10 -6 4 -10 -10 0 -10 10 0 -10
+4 16 6 16 -10 6 4 -10 10 0 -10 10 24 -10
+0
+4 16 6 24 -6 4 14 -6 -4 14 -6 -6 24 -6
+4 16 -6 24 -6 -4 14 -6 -4 6 -6 -6 4 -6 
+4 16 -6 4 -6 -4 6 -6 4 6 -6 6 4 -6 
+4 16 6 4 -6 4 6 -6 4 14 -6 6 24 -6 
+0
+4 16 -4 14 6 4 14 6 6 24 6 -6 24 6
+4 16 -4 6 6 -4 14 6 -6 24 6 -6 4 6
+4 16 4 6 6 -4 6 6 -6 4 6 6 4 6
+4 16 4 14 6 4 6 6 6 4 6 6 24 6
+0
+4 16 10 24 10 6 16 10 -6 16 10 -10 24 10
+4 16 -10 24 10 -6 16 10 -6 4 10 -10 0 10 
+4 16 -10 0 10 -6 4 10 6 4 10 10 0 10 
+4 16 10 0 10 6 4 10 6 16 10 10 24 10 
+0 BFC INVERTNEXT
+1 16 0 24 0 0 0 6 0 -20 0 6 0 0 p/box3u2p.dat
+1 16 0 24 0 0 0 10 0 -24 0 10 0 0 p/box3u2p.dat
+0
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 10 -10 0 0 1 1 0 0 0 1 0 p/stud2a.dat
+1 16 0 10 10 0 0 1 1 0 0 0 -1 0 p/stud2a.dat
+0
+
+0 FILE parts/3707.dat
+0 Technic Axle  8
+0 Name: 3707.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-11 [guyvivan] BFC'ed
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 80 0 0 0 -160 0 1 0 0 0 0 1 p/axle.dat
+0
+
+
+0 FILE parts/30413.dat
+0 Panel  1 x  4 x  1 with Rounded Corners
+0 Name: 30413.dat
+0 Author: R. M. Rodinsky [dublar]
+0 !LDRAW_ORG Part UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [mikeheide] BFC'd (2007-08-15)
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+0 !HISTORY 2012-06-03 [C3POwen] Complete rewrite; added rounded corners
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 20 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 20 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 20 20 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 24 0 36 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 40 24 10 36 24 6 -36 24 6 -40 24 10
+4 16 -40 24 10 -36 24 6 -36 24 -6 -40 24 -10
+4 16 -40 24 -10 -36 24 -6 36 24 -6 40 24 -10
+4 16 40 24 -10 36 24 -6 36 24 6 40 24 10
+2 24 40 24 10 -40 24 10
+2 24 -40 24 10 -40 24 -10
+2 24 40 24 -10 40 24 10
+2 24 40 2 6 40 16 6
+2 24 -40 2 6 -40 16 6
+2 24 40 2 10 40 24 10
+2 24 -40 2 10 -40 24 10
+2 24 38 0 10 -38 0 10
+2 24 -38 0 6 38 0 6
+4 16 -40 24 10 -40 24 -10 -40 16 -10 -40 16 6
+4 16 40 24 -10 40 24 10 40 16 6 40 16 -10
+4 16 -40 24 10 -40 16 6 -40 2 6 -40 2 10
+4 16 40 16 6 40 24 10 40 2 10 40 2 6
+4 16 40 24 10 -40 24 10 -38 2 10 38 2 10
+4 16 38 2 10 -38 2 10 -38 0 10 38 0 10
+3 16 40 24 10 38 2 10 40 2 10
+3 16 -40 24 10 -40 2 10 -38 2 10
+4 16 -40 16 6 40 16 6 38 2 6 -38 2 6
+4 16 -38 2 6 38 2 6 38 0 6 -38 0 6
+3 16 40 16 6 40 2 6 38 2 6
+3 16 -40 16 6 -38 2 6 -40 2 6
+4 16 38 0 6 38 0 10 -38 0 10 -38 0 6
+1 16 38 2 6 2 0 0 0 0 -2 0 2 0 p/1-4disc.dat
+1 16 38 2 10 2 0 0 0 0 -2 0 -2 0 p/1-4disc.dat
+1 16 -38 2 10 -2 0 0 0 0 -2 0 -2 0 p/1-4disc.dat
+1 16 -38 2 6 -2 0 0 0 0 -2 0 2 0 p/1-4disc.dat
+1 16 38 2 6 2 0 0 0 0 -2 0 4 0 p/1-4cylo.dat
+1 16 -38 2 10 -2 0 0 0 0 -2 0 -4 0 p/1-4cylo.dat
+1 16 0 20 -2 -40 0 0 0 -4 0 0 0 -8 p/box2-5.dat
+
+0 FILE parts/4095.dat
+0 Bar  6.6L with Stop
+0 Name: 4095.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS town, umbrella, stand, small, rod, pole
+
+0 !HISTORY 2010-10-21 [westrate] CA rewrite; use cylc, cylo, and ring primitives
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 12 0 4 0 0 0 -12 0 0 0 4 p/4-4cylc.dat
+1 16 0 -120 0 4 0 0 0 116 0 0 0 4 p/4-4cylc.dat
+1 16 0 0 0 6 0 0 0 -4 0 0 0 6 p/4-4cylo.dat
+1 16 0 0 0 2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring2.dat
+0
+
+0 FILE parts/6215.dat
+0 Brick  2 x  3 with Curved Top
+0 Name: 6215.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2016-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-12-20 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2014-11-21 [roland]  Auto-corrected with libfix version of LDCad 1.4
+0 !HISTORY 2015-01-30 [Steffen] BFCed, closed gaps
+0 !HISTORY 2016-06-02 [Holly-Wood] Closed gap, fixed overlap
+0 !HISTORY 2016-12-31 [PTadmin] Official Update 2016-01
+
+1 16 20 4 0 0 0 -6 0 1 0 6 0 0 p/2-4edge.dat
+1 16 20 4 0 0 0 -8 0 1 0 8 0 0 p/2-4edge.dat
+
+1 16 20 20 20 20 0 0 0 0 -20 0 1 0 p/1-4edge.dat
+1 16 20 20 -20 20 0 0 0 0 -20 0 1 0 p/1-4edge.dat
+1 16 20 20 16 16 0 0 0 0 -16 0 1 0 p/1-4edge.dat
+1 16 20 20 -16 16 0 0 0 0 -16 0 1 0 p/1-4edge.dat
+
+2 24 40 24 20 -20 24 20
+2 24 -20 24 20 -20 24 -20
+2 24 -20 24 -20 40 24 -20
+2 24 40 24 -20 40 24 20
+2 24 36 24 16 -16 24 16
+2 24 -16 24 16 -16 24 -16
+2 24 -16 24 -16 36 24 -16
+2 24 36 24 -16 36 24 16
+2 24 40 20 20 40 24 20
+2 24 -20 0 20 -20 24 20
+2 24 -20 0 -20 -20 24 -20
+2 24 40 20 -20 40 24 -20
+2 24 36 20 16 36 24 16
+2 24 -16 4 16 -16 24 16
+2 24 -16 4 -16 -16 24 -16
+2 24 36 20 -16 36 24 -16
+2 24 20 0 20 -20 0 20
+2 24 -20 0 20 -20 0 -20
+2 24 20 0 -20 -20 0 -20
+2 24 20 4 16 -16 4 16
+2 24 -16 4 16 -16 4 -16
+2 24 20 4 -16 -16 4 -16
+
+2 24 22.296 4.457 5.543 20 4 6
+2 24 22.296 4.457 5.543 24.243 4.844 4.243
+2 24 24.243 4.844 4.243 25.543 5.102 2.296
+2 24 25.543 5.102 2.296 26 5.193 0
+2 24 25.543 5.102 -2.296 26 5.193 0
+2 24 24.243 4.844 -4.243 25.543 5.102 -2.296
+2 24 24.243 4.844 -4.243 22.296 4.457 -5.543
+2 24 22.296 4.457 -5.543 20 4 -6
+
+2 24 23.062 4.609 7.391 20 4 8
+2 24 25.657 5.125 5.657 23.062 4.609 7.391
+2 24 25.657 5.125 5.657 26.123 5.218 4.959
+2 24 27.391 6.065 3.062 26.123 5.218 4.959
+2 24 28 6.472 0 27.391 6.065 3.062
+2 24 28 6.472 0 27.391 6.065 -3.062
+2 24 27.391 6.065 -3.062 26.123 5.218 -4.959
+2 24 25.657 5.125 -5.657 26.123 5.218 -4.959
+2 24 23.062 4.609 -7.391 25.657 5.125 -5.657
+2 24 20 4 -8 23.062 4.609 -7.391
+4 16 40 24 20 36 24 16 -16 24 16 -20 24 20
+4 16 -20 24 20 -16 24 16 -16 24 -16 -20 24 -20
+4 16 -20 24 -20 -16 24 -16 36 24 -16 40 24 -20
+4 16 40 24 -20 36 24 -16 36 24 16 40 24 20
+4 16 -16 24 16 -16 4 16 -16 4 -16 -16 24 -16
+4 16 36 24 16 36 20 16 20 20 16 -16 24 16
+4 16 20 20 16 20 4 16 -16 4 16 -16 24 16
+4 16 36 20 16 36 24 16 36 24 -16 36 20 -16
+4 16 -16 24 -16 20 20 -16 36 20 -16 36 24 -16
+4 16 -16 24 -16 -16 4 -16 20 4 -16 20 20 -16
+1 16 20 20 16 16 0 0 0 0 -16 0 1 0 p/1-4disc.dat
+1 16 20 20 -16 16 0 0 0 0 -16 0 -1 0 p/1-4disc.dat
+4 16 -20 24 -20 -20 0 -20 -20 0 20 -20 24 20
+4 16 -20 24 20 20 20 20 40 20 20 40 24 20
+4 16 -20 24 20 -20 0 20 20 0 20 20 20 20
+4 16 40 24 20 40 20 20 40 20 -20 40 24 -20
+4 16 40 24 -20 40 20 -20 20 20 -20 -20 24 -20
+4 16 20 20 -20 20 0 -20 -20 0 -20 -20 24 -20
+1 16 20 20 20 20 0 0 0 0 -20 0 -1 0 p/1-4disc.dat
+1 16 20 20 -20 20 0 0 0 0 -20 0 1 0 p/1-4disc.dat
+
+4 16 20 4 6 20 6.472 6 22.296 6.472 5.543 22.296 4.457 5.543
+4 16 22.296 4.457 5.543 22.296 6.472 5.543 24.243 6.472 4.243 24.243 4.844 4.243
+4 16 24.243 4.844 4.243 24.243 6.472 4.243 25.543 6.472 2.296 25.543 5.102 2.296
+4 16 25.543 5.102 2.296 25.543 6.472 2.296 26 6.472 0 26 5.193 0
+4 16 26 5.193 0 26 6.472 0 25.543 6.472 -2.296 25.543 5.102 -2.296
+4 16 25.543 5.102 -2.296 25.543 6.472 -2.296 24.243 6.472 -4.243 24.243 4.844 -4.243
+4 16 24.243 4.844 -4.243 24.243 6.472 -4.243 22.296 6.472 -5.543 22.296 4.457 -5.543
+4 16 22.296 4.457 -5.543 22.296 6.472 -5.543 20 6.472 -6 20 4 -6
+4 16 23.062 6.472 7.391 20 6.472 8 20 4 8 23.062 4.609 7.391
+4 16 25.657 6.472 5.657 23.062 6.472 7.391 23.062 4.609 7.391 25.657 5.125 5.657
+3 16 26.123 5.218 4.959 25.657 6.472 5.657 25.657 5.125 5.657
+4 16 27.391 6.472 3.062 25.657 6.472 5.657 26.123 5.218 4.959 27.391 6.065 3.062
+3 16 28 6.472 0 27.391 6.472 3.062 27.391 6.065 3.062
+3 16 27.391 6.472 -3.062 28 6.472 0 27.391 6.065 -3.062
+4 16 27.391 6.065 -3.062 26.123 5.218 -4.959 25.657 6.472 -5.657 27.391 6.472 -3.062
+3 16 25.657 6.472 -5.657 26.123 5.218 -4.959 25.657 5.125 -5.657
+4 16 25.657 6.472 -5.657 25.657 5.125 -5.657 23.062 4.609 -7.391 23.062 6.472 -7.391
+4 16 20 4 -8 20 6.472 -8 23.062 6.472 -7.391 23.062 4.609 -7.391
+0 BFC INVERTNEXT
+1 16 20 4 0 0 0 -6 0 2.472 0 6 0 0 p/2-4cyli.dat
+1 16 20 4 0 0 0 -8 0 2.472 0 8 0 0 p/2-4cyli.dat
+4 16 20 4 -16 -16 4 -16 -16 4 16 20 4 16
+0 BFC INVERTNEXT
+1 16 20 20 16 16 0 0 0 0 -16 0 -32 0 p/1-4cyli.dat
+4 16 20 0 20 -20 0 20 -20 0 -20 20 0 -20
+1 16 20 20 20 20 0 0 0 0 -20 0 -40 0 p/1-4cyli.dat
+
+5 24 25.657 5.125 -5.657 25.657 6.472 -5.657 23.062 4.609 -7.391 26.123 5.218 -4.959
+5 24 24.243 4.844 4.243 24.243 6.472 4.243 22.296 4.457 5.543 25.543 6.472 2.296
+5 24 22.296 4.457 5.543 22.296 6.472 5.543 20 4 6 24.243 6.472 4.243
+5 24 27.391 6.065 -3.062 27.391 6.472 -3.062 28 6.472 0 25.657 6.472 -5.657
+5 24 25.543 5.102 -2.296 25.543 6.472 -2.296 24.243 6.472 -4.243 26 5.193 0
+5 24 26 6.472 0 26 5.193 0 25.543 6.472 -2.296 25.543 5.102 2.296
+5 24 27.391 6.472 3.062 27.391 6.065 3.062 26.123 5.218 4.959 28 6.472 0
+5 24 22.296 6.472 -5.543 22.296 4.457 -5.543 20 6.472 -6 24.243 4.844 -4.243
+5 24 25.657 6.472 5.657 25.657 5.125 5.657 23.062 4.609 7.391 26.123 5.218 4.959
+5 24 23.062 6.472 -7.391 23.062 4.609 -7.391 25.657 6.472 -5.657 20 4 -8
+5 24 25.543 6.472 2.296 25.543 5.102 2.296 26 6.472 0 24.243 4.844 4.243
+5 24 23.062 4.609 7.391 23.062 6.472 7.391 25.657 6.472 5.657 20 4 8
+5 24 24.243 6.472 -4.243 24.243 4.844 -4.243 22.296 6.472 -5.543 25.543 5.102 -2.296
+
+0 // Studs
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug-2x2.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud4.dat
+1 16 20 6.472 0 1 0 0 0 -4.382 0 0 0 1 p/stud4a.dat
+
+0 FILE parts/30363.dat
+0 Slope Brick 18  4 x  2
+0 Name: 30363.dat
+0 Author: John Van Zwieten [jvan]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-12-31 [PTadmin] Official Update 1999-06
+0 !HISTORY 2003-07-22 [jriley] Subfiled most of part
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/30363s01.dat
+4 16 20 0 -10 -20 0 -10 -20 20 -70  20 20 -70
+0
+
+0 FILE parts/s/30363s01.dat
+0 ~Slope Brick 18  4 x  2 without Top Face
+0 Name: s\30363s01.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG Subpart UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-06-30 [jriley] Separated subpart out for use with patterned pieces
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-08-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-09-24 [mkennedy] Used stud4s primitives, boxes, and rects
+0 !HISTORY 2008-11-28 [tchang] Add 2 lines
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 0 6.667 -10 1 0 0 0 -4.333 0 0 0 1 p/stud4a.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6 p/2-4edge.dat
+1 16 0 4 -10 6 0 0 0 1 2 0 0 -6 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 2.667 0 0 -8 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 6 -10 0 0 6 0 -2 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 6 -10 0 0 -6 0 -2 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 2 0 0 0 6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 6 -10 6 0 0 0 .667 0 0 0 6 p/4-4cyli.dat
+1 16 0 6.667 -10 0 0 8 0 -2.667 0 -8 0 0 p/1-4cyls.dat
+1 16 0 6.667 -10 0 0 -8 0 -2.667 0 -8 0 0 p/1-4cyls.dat
+1 16 0 4 -10 8 0 0 0 2.667 0 0 0 8 p/2-4cyli.dat
+1 16 0 13.334 -30 0 0 1 0 2.667 0 -1 0 0 p/stud4s.dat
+1 16 0 13.344 -30 1 0 0 0 -2.656 0 0 0 1 p/stud4a.dat
+1 16 0 20 -50 0 0 1 0 2.667 0 -1 0 0 p/stud4s.dat
+1 16 0 20 -50 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+2 24 -16 24 6 -16 24 -66
+2 24 16 24 -66 16 24 6
+2 24 -20 24 10 -20 24 -70
+2 24 20 24 -70 20 24 10
+4 16 -20 24 10 -16 24 6 16 24 6 20 24 10
+4 16 -20 24 -70 -16 24 -66 -16 24 6 -20 24 10
+4 16 20 24 -70 16 24 -66 -16 24 -66 -20 24 -70
+4 16 20 24 10 16 24 6 16 24 -66 20 24 -70
+1 16 0 12 0 20 0 0 0 -12 0 0 0 10 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 0 14 -2 16 0 0 0 -10 0 0 0 8 p/box2-5.dat
+1 16 0 22 -70 20 0 0 0 0 2 0 1 0 p/rect.dat
+4 16 20 24 -70 20 20 -70 20 0 10 20 24 10
+3 16 20 20 -70 20 0 -10 20 0 10
+4 16 -20 0 10 -20 20 -70 -20 24 -70 -20 24 10
+3 16 -20 0 -10 -20 20 -70 -20 0 10
+4 16 16 4 6 16 4 -10 16 20 -58 16 24 6
+4 16 16 20 -66 16 24 -66 16 24 6 16 20 -58
+4 16 -16 24 6 -16 20 -58 -16 4 -10 -16 4 6
+4 16 -16 20 -58 -16 24 6 -16 24 -66 -16 20 -66
+0 BFC INVERTNEXT
+1 16 0 22 -66 16 0 0 0 0 2 0 1 0 p/rect.dat
+1 16 0 12 -38 16 0 0 0 8 0 0 -24 4 p/box2-7.dat
+1 16 -10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+0
+2 24 20 0 -10 20 20 -70
+2 24 -20 0 -10 -20 20 -70
+0
+
+0 FILE parts/32064a.dat
+0 Technic Brick  1 x  2 with Axlehole Type 1
+0 Name: 32064a.dat
+0 Author: Lutz Uhlmann
+0 !LDRAW_ORG Part UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-02-12 [PTadmin] Official Update 1998-02
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-11-25 [sbliss] Cleaned up axlehole
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-07-22 [PTadmin] renamed from 32064
+0 !HISTORY 2009-08-31 [arezey] Eliminated bottom overlaps, added missing edges
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 0 10 10 1 0 0 0 0 1 0 -20 0 p/axlehole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -20 0 p/axlehol2.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 -20 0 p/axlehol2.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 1 0 p/2-4edge.dat
+1 16 0 10 10 6 0 0 0 0 6 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 6 0 0 0 0 6 0 1 0 p/4-4ndis.dat
+2 24 8 10 6 8 4 6
+2 24 8 10 -6 8 4 -6
+2 24 -8 10 6 -8 4 6
+2 24 -8 10 -6 -8 4 -6
+2 24 16 24 6 16 4 6
+2 24 16 24 -6 16 4 -6
+2 24 -16 24 6 -16 4 6
+2 24 -16 24 -6 -16 4 -6
+2 24 16 24 6 4 24 6
+2 24 2 24 6 -2 24 6
+2 24 -4 24 6 -16 24 6
+2 24 16 24 -6 4 24 -6
+2 24 2 24 -6 -2 24 -6
+2 24 -4 24 -6 -16 24 -6
+2 24 16 24 6 16 24 -6
+2 24 -16 24 6 -16 24 -6
+2 24 20 24 10 20 0 10
+2 24 20 24 -10 20 0 -10
+2 24 -20 24 10 -20 0 10
+2 24 -20 24 -10 -20 0 -10
+2 24 20 24 10 -20 24 10
+2 24 20 24 -10 -20 24 -10
+2 24 20 24 10 20 24 -10
+2 24 -20 24 10 -20 24 -10
+2 24 20 0 10 -20 0 10
+2 24 20 0 -10 -20 0 -10
+2 24 20 0 10 20 0 -10
+2 24 -20 0 10 -20 0 -10
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 12 4 0 4 0 0 0 -1 0 0 0 6 p/rect.dat
+1 16 -12 4 0 4 0 0 0 -1 0 0 0 6 p/rect.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 3 24 5 1 0 0 0 -1 0 0 0 -1 p/rect3.dat
+1 16 -3 24 5 1 0 0 0 -1 0 0 0 -1 p/rect3.dat
+1 16 3 24 -5 1 0 0 0 -1 0 0 0 1 p/rect3.dat
+1 16 -3 24 -5 1 0 0 0 -1 0 0 0 1 p/rect3.dat
+4 16 3.062 17.391 6 4 16.764 6 4 24 6 2 24 6
+3 16 2 24 6 2 17.602 6 3.062 17.391 6
+1 16 2 20.801 5 0 1.066 0 0 0 -3.199 1 0 0 p/rect3.dat
+4 16 3.062 17.391 4 2 17.602 4 2 24 4 4 24 4
+3 16 4 24 4 4 16.764 4 3.062 17.391 4
+1 16 4 20.382 5 0 -1 0 0 0 -3.618 -1 0 0 p/rect3.dat
+4 16 -3.062 17.391 6 -2 17.602 6 -2 24 6 -4 24 6
+3 16 -4 24 6 -4 16.764 6 -3.062 17.391 6
+1 16 -4 20.382 5 0 1.034 0 0 0 -3.618 1 0 0 p/rect3.dat
+4 16 -3.062 17.391 4 -4 16.764 4 -4 24 4 -2 24 4
+3 16 -2 24 4 -2 17.602 4 -3.062 17.391 4
+1 16 -2 20.801 5 0 -1 0 0 0 -3.199 -1 0 0 p/rect3.dat
+4 16 3.062 17.391 -4 4 16.764 -4 4 24 -4 2 24 -4
+3 16 2 24 -4 2 17.602 -4 3.062 17.391 -4
+1 16 2 20.801 -5 0 1.066 0 0 0 -3.199 1 0 0 p/rect3.dat
+4 16 3.062 17.391 -6 2 17.602 -6 2 24 -6 4 24 -6
+3 16 4 24 -6 4 16.764 -6 3.062 17.391 -6
+1 16 4 20.382 -5 0 -1 0 0 0 -3.618 -1 0 0 p/rect3.dat
+4 16 -3.062 17.391 -4 -2 17.602 -4 -2 24 -4 -4 24 -4
+3 16 -4 24 -4 -4 16.764 -4 -3.062 17.391 -4
+1 16 -4 20.382 -5 0 1.034 0 0 0 -3.618 1 0 0 p/rect3.dat
+4 16 -3.062 17.391 -6 -4 16.764 -6 -4 24 -6 -2 24 -6
+3 16 -2 24 -6 -2 17.602 -6 -3.062 17.391 -6
+1 16 -2 20.801 -5 0 -1 0 0 0 -3.199 -1 0 0 p/rect3.dat
+2 24 3.062 17.391 6 4 16.764 6
+2 24 2 17.602 6 3.062 17.391 6
+2 24 3.062 17.391 4 4 16.764 4
+2 24 2 17.602 4 3.062 17.391 4
+2 24 -3.062 17.391 6 -2 17.602 6
+2 24 -4 16.764 6 -3.062 17.391 6
+2 24 -3.062 17.391 4 -2 17.602 4
+2 24 -4 16.764 4 -3.062 17.391 4
+2 24 3.062 17.391 -4 4 16.764 -4
+2 24 2 17.602 -4 3.062 17.391 -4
+2 24 3.062 17.391 -6 4 16.764 -6
+2 24 2 17.602 -6 3.062 17.391 -6
+2 24 -3.062 17.391 -4 -2 17.602 -4
+2 24 -4 16.764 -4 -3.062 17.391 -4
+2 24 -3.062 17.391 -6 -2 17.602 -6
+2 24 -4 16.764 -6 -3.062 17.391 -6
+4 16 8 10 6 8 4 6 8 4 -6 8 10 -6
+4 16 -8 10 6 -8 10 -6 -8 4 -6 -8 4 6
+4 16 16 24 6 16 24 -6 16 4 -6 16 4 6
+4 16 -16 24 6 -16 4 7 -16 4 -6 -16 24 -6
+4 16 16 24 6 16 4 6 8 4 6 8 18 6
+4 16 16 24 -6 8 18 -6 8 4 -6 16 4 -6
+4 16 -8 18 6 -8 4 6 -16 4 6 -16 24 6
+4 16 -8 18 -6 -16 24 -6 -16 4 -6 -8 4 -6
+4 16 16 24 6 8 18 6 -8 18 6 -16 24 6
+4 16 16 24 -6 -16 24 -6 -8 18 -6 8 18 -6
+4 16 20 24 10 16 24 6 -16 24 6 -20 24 10
+4 16 20 24 -10 -20 24 -10 -16 24 -6 16 24 -6
+4 16 20 24 10 20 24 -10 16 24 -6 16 24 6
+4 16 -20 24 10 -16 24 6 -16 24 -6 -20 24 -10
+4 16 20 24 10 20 0 10 20 0 -10 20 24 -10
+4 16 -20 24 10 -20 24 -10 -20 0 -10 -20 0 10
+4 16 20 0 10 -20 0 10 -20 0 -10 20 0 -10
+4 16 20 24 10 -20 24 10 -6 16 10 6 16 10
+4 16 20 24 -10 6 16 -10 -6 16 -10 -20 24 -10
+4 16 20 0 10 6 4 10 -6 4 10 -20 0 10
+4 16 20 0 -10 -20 0 -10 -6 4 -10 6 4 -10
+4 16 20 24 10 6 16 10 6 4 10 20 0 10
+4 16 20 24 -10 20 0 -10 6 4 -10 6 16 -10
+4 16 -20 24 10 -20 0 10 -6 4 10 -6 16 10
+4 16 -20 24 -10 -6 16 -10 -6 4 -10 -20 0 -10
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE p/axlehole.dat
+0 Technic Axle Hole Closed
+0 Name: axlehole.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-04-23 [sbliss] Added conditional edges along outermost diameters
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-05-08 [OrionP] Made BFC compliant
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2005-05-15 [guyvivan] Use 1-8chrd.dat primitive and made BFC'ed CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 6 0 0 6 1 0 5.602 0 2 5.602 0 -2
+5 24 0 0 6 0 1 6 2 0 5.602 -2 0 5.602
+5 24 -6 0 0 -6 1 0 -5.602 0 -2 -5.602 0 2
+5 24 0 0 -6 0 1 -6 -2 0 -5.602 2 0 -5.602
+2 24 5.602 0 2 2 0 2
+2 24 2 0 2 2 0 5.602
+2 24 -5.602 0 2 -2 0 2
+2 24 -2 0 2 -2 0 5.602
+2 24 5.602 0 -2 2 0 -2
+2 24 2 0 -2 2 0 -5.602
+2 24 -5.602 0 -2 -2 0 -2
+2 24 -2 0 -2 -2 0 -5.602
+2 24 5.602 1 2 2 1 2
+2 24 2 1 2 2 1 5.602
+2 24 -5.602 1 2 -2 1 2
+2 24 -2 1 2 -2 1 5.602
+2 24 5.602 1 -2 2 1 -2
+2 24 2 1 -2 2 1 -5.602
+2 24 -5.602 1 -2 -2 1 -2
+2 24 -2 1 -2 -2 1 -5.602
+2 24 5.602 0 2 5.602 1 2
+2 24 2 0 2 2 1 2
+2 24 2 0 5.602 2 1 5.602
+2 24 -5.602 0 2 -5.602 1 2
+2 24 -2 0 2 -2 1 2
+2 24 -2 0 5.602 -2 1 5.602
+2 24 5.602 0 -2 5.602 1 -2
+2 24 2 0 -2 2 1 -2
+2 24 2 0 -5.602 2 1 -5.602
+2 24 -5.602 0 -2 -5.602 1 -2
+2 24 -2 0 -2 -2 1 -2
+2 24 -2 0 -5.602 -2 1 -5.602
+4 16 5.602 0 2 5.602 1 2 6 1 0 6 0 0
+4 16 2 0 2 2 1 2 5.602 1 2 5.602 0 2
+4 16 2 0 5.602 2 1 5.602 2 1 2 2 0 2
+4 16 0 0 6 0 1 6 2 1 5.602 2 0 5.602
+4 16 -6 1 0 -5.602 1 2 -5.602 0 2 -6 0 0
+4 16 -5.602 1 2 -2 1 2 -2 0 2 -5.602 0 2
+4 16 -2 1 2 -2 1 5.602 -2 0 5.602 -2 0 2
+4 16 -2 1 5.602 0 1 6 0 0 6 -2 0 5.602
+4 16 6 1 0 5.602 1 -2 5.602 0 -2 6 0 0
+4 16 5.602 1 -2 2 1 -2 2 0 -2 5.602 0 -2
+4 16 2 1 -2 2 1 -5.602 2 0 -5.602 2 0 -2
+4 16 2 1 -5.602 0 1 -6 0 0 -6 2 0 -5.602
+4 16 -5.602 0 -2 -5.602 1 -2 -6 1 0 -6 0 0
+4 16 -2 0 -2 -2 1 -2 -5.602 1 -2 -5.602 0 -2
+4 16 -2 0 -5.602 -2 1 -5.602 -2 1 -2 -2 0 -2
+4 16 0 0 -6 0 1 -6 -2 1 -5.602 -2 0 -5.602
+3 16 2 0 -2 5.543 0 -2.296 5.602 0 -2
+3 16 2 0 -2 2 0 -5.602 2.296 0 -5.543
+3 16 -5.602 0 -2 -5.543 0 -2.296 -2 0 -2
+3 16 -2.296 0 -5.543 -2 0 -5.602 -2 0 -2
+3 16 5.602 0 2 5.543 0 2.296 2 0 2
+3 16 2.296 0 5.543 2 0 5.602 2 0 2
+3 16 -2 0 2 -5.543 0 2.296 -5.602 0 2
+3 16 -2 0 2 -2 0 5.602 -2.296 0 5.543
+3 16 5.602 1 -2 5.543 1 -2.296 2 1 -2
+3 16 2.296 1 -5.543 2 1 -5.602 2 1 -2
+3 16 -2 1 -2 -5.543 1 -2.296 -5.602 1 -2
+3 16 -2 1 -2 -2 1 -5.602 -2.296 1 -5.543
+3 16 2 1 2 5.543 1 2.296 5.602 1 2
+3 16 2 1 2 2 1 5.602 2.296 1 5.543
+3 16 -5.602 1 2 -5.543 1 2.296 -2 1 2
+3 16 -2.296 1 5.543 -2 1 5.602 -2 1 2
+3 16 2 0 -2 2.296 0 -5.543 5.543 0 -2.296
+1 16 0 0 0 5.54328 0 -2.2961 0 1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 -2 0 -2 -5.543 0 -2.296 -2.296 0 -5.543
+1 16 0 0 0 -2.2961 0 -5.54328 0 1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+3 16 -2 0 2 -2.296 0 5.543 -5.543 0 2.296
+1 16 0 0 0 -5.54328 0 2.2961 0 1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 2 0 2 5.543 0 2.296 2.296 0 5.543
+1 16 0 0 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 2 1 2 2.296 1 5.543 5.543 1 2.296
+1 16 0 1 0 5.54328 0 -2.2961 0 -1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 -2 1 2 -5.543 1 2.296 -2.296 1 5.543
+1 16 0 1 0 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 -2 1 -2 -2.296 1 -5.543 -5.543 1 -2.296
+1 16 0 1 0 -5.54328 0 2.2961 0 -1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 2 1 -2 5.543 1 -2.296 2.296 1 -5.543
+1 16 0 1 0 2.2961 0 5.54328 0 -1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+0
+
+0 FILE parts/6587.dat
+0 Technic Axle  3 with Stud
+0 Name: 6587.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-10 [guyvivan] Made BFC Compliant
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 28 0 0 0 1 0 8 0 0 0 0 8 p/4-4edge.dat
+1 16 30 0 0 0 1 0 8 0 0 0 0 8 p/4-4edge.dat
+1 16 28 0 0 0 -58 0 1 0 0 0 0 1 p/axle.dat
+1 16 30 0 0 0 -1 0 1 0 0 0 0 1 p/stud2.dat
+1 16 28 0 0 0 1 0 8 0 0 0 0 8 p/4-4disc.dat
+1 16 30 0 0 0 -1 0 8 0 0 0 0 8 p/4-4disc.dat
+1 16 30 0 0 0 -2 0 8 0 0 0 0 8 p/4-4cyli.dat
+0
+
+0 FILE parts/6629.dat
+0 Technic Beam  4 x  6 Liftarm Bent 53.13
+0 Name: 6629.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2007-07-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC compliant, used more primitives (2004-07-06)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2010-01-23 [MagFors] Corrected one beamhole and changed name to 53.13
+0 !HISTORY 2010-01-23 [arezey] Used more primitives
+0 !HISTORY 2010-01-30 [MagFors] Reworked
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 -10 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 10 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -10 0 9 0 0 0 20 0 0 0 -9 p/2-4cyli.dat
+1 16 0 -10 0 1 0 0 0 20 0 0 0 1 p/axlehol4.dat
+1 16 0 -10 0 -3 0 0 0 1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 10 0 -3 0 0 0 -1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 -10 10 1 0 0 0 20 0 0 0 1 p/npeghol4.dat
+1 16 0 0 20 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 40 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 60 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 80 1 0 0 0 1 0 0 0 1 p/connhole.dat
+1 16 0 -10 90 1 0 0 0 8 0 0 0 1 p/npeghole.dat
+1 16 0 10 90 1 0 0 0 -8 0 0 0 1 p/npeghole.dat
+4 16 6.36 -10 86.36 9 -10 80 9 -10 95.5 6.36 -10 93.64
+4 16 -9 -10 80 -6.36 -10 86.36 -6.36 -10 93.64 -9 -10 100
+4 16 9 10 80 6.36 10 86.36 6.36 10 93.64 9 10 95.5
+4 16 -9 10 100 -6.36 10 93.64 -6.36 10 86.36 -9 10 80
+1 16 9 0 47.75 0 -1 0 10 0 0 0 0 47.75 p/rect3.dat
+1 16 -9 0 50 0 1 0 0 0 -10 50 0 0 p/rect2p.dat
+1 16 0 -10 100 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 -10 100 -0.3536 0 0.3536 0 1 0 0.3536 0 0.3536 p/2-4rin16.dat
+1 16 0 -10 100 -0.9239 0 -0.3827 0 1 0 0.3827 0 -0.9239 p/2-4ring8.dat
+1 16 0 -10 100 -0.3827 0 -0.9239 0 1 0 0.9239 0 -0.3827 p/1-8ring8.dat
+1 16 0 -10 100 0.5957 0 0.3527 0 1 0 -0.3527 0 0.5957 p/3-8rin12.dat
+0 BFC INVERTNEXT
+1 16 0 -8 100 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 10 100 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+1 16 0 10 100 -0.3536 0 0.3536 0 -1 0 0.3536 0 0.3536 p/2-4rin16.dat
+1 16 0 10 100 -0.9239 0 -0.3827 0 -1 0 0.3827 0 -0.9239 p/2-4ring8.dat
+1 16 0 10 100 -0.3827 0 -0.9239 0 -1 0 0.9239 0 -0.3827 p/1-8ring8.dat
+1 16 0 10 100 0.5957 0 0.3527 0 -1 0 -0.3527 0 0.5957 p/3-8rin12.dat
+1 16 8 -10 106 0.6 0 -0.8 0 8 0 -0.8 0 -0.6 p/npeghole.dat
+1 16 8 10 106 0.6 0 -0.8 0 -8 0 -0.8 0 -0.6 p/npeghole.dat
+4 16 8.9 -10 98.73 9 -10 95.5 21.4 -10 104.8 14.73 -10 103.1
+3 16 8.9 -10 98.73 6.36 -10 93.64 9 -10 95.5
+3 16 9 10 95.5 6.36 10 93.64 8.9 10 98.73
+4 16 -6.363 -10 106.363 1.27 -10 108.9 7.1 -10 113.27 10.6 -10 119.2
+4 16 9 10 95.5 8.9 10 98.73 14.73 10 103.1 21.4 10 104.8
+4 16 1.27 10 108.9 -6.363 10 106.363 10.6 10 119.2 7.1 10 113.27
+1 16 0 -10 100 -9 0 0 0 -1 0 0 0 9 p/1-8edge.dat
+1 16 0 10 100 -9 0 0 0 -1 0 0 0 9 p/1-8edge.dat
+1 16 0 10 100 -9 0 0 0 -20 0 0 0 9 p/1-8cyli.dat
+1 16 16 0 112 0.6 0 0.8 0 1 0 -0.8 0 0.6 p/connhole.dat
+1 16 32 0 124 -0.6 0 -0.8 0 1 0 0.8 0 -0.6 p/beamhole.dat
+1 16 48 -10 136 5.4 0 7.2 0 1 0 -7.2 0 5.4 p/2-4edge.dat
+1 16 48 10 136 5.4 0 7.2 0 1 0 -7.2 0 5.4 p/2-4edge.dat
+1 16 48 -10 136 5.4 0 7.2 0 20 0 -7.2 0 5.4 p/2-4cyli.dat
+1 16 48 -10 136 0.6 0 -0.8 0 20 0 -0.8 0 -0.6 p/axlehol4.dat
+1 16 48 -10 136 -1.8 0 2.4 0 1 0 2.4 0 1.8 p/2-4ring2.dat
+1 16 48 10 136 -1.8 0 2.4 0 -1 0 2.4 0 1.8 p/2-4ring2.dat
+1 16 40 -10 130 0.6 0 -0.8 0 20 0 -0.8 0 -0.6 p/npeghol4.dat
+1 16 31.2 0 112.15 -22.2 -0.6 0 0 0 10 -16.65 0.8 0 p/rect2p.dat
+1 16 18.118 0 124.782 -24.482 0.6 0 0 0 -10 -18.418 -0.8 0 p/rect2p.dat
+
+0 FILE parts/3895.dat
+0 Technic Brick  1 x 12 with Holes
+0 Name: 3895.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -80 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -80 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -100 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -100 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 80 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 80 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 100 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 100 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 80 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 80 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 100 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 100 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -80 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -80 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -100 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -100 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 116 24 6 -116 24 6
+2 24 116 24 -6 -116 24 -6
+2 24 120 24 10 -120 24 10
+2 24 120 24 -10 -120 24 -10
+0 BFC INVERTNEXT
+1 16 10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 70 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 90 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -70 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -90 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 112 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -112 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 80 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 100 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -100 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 108 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -108 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 80 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 100 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 100 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -100 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -100 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 12 18 6 12 10 6 8 10 6 8 18 6
+4 16 12 18 -6 8 18 -6 8 10 -6 12 10 -6
+4 16 32 18 6 32 10 6 28 10 6 28 18 6
+4 16 32 18 -6 28 18 -6 28 10 -6 32 10 -6
+4 16 52 18 6 52 10 6 48 10 6 48 18 6
+4 16 52 18 -6 48 18 -6 48 10 -6 52 10 -6
+4 16 72 18 6 72 10 6 68 10 6 68 18 6
+4 16 72 18 -6 68 18 -6 68 10 -6 72 10 -6
+4 16 92 18 6 92 10 6 88 10 6 88 18 6
+4 16 92 18 -6 88 18 -6 88 10 -6 92 10 -6
+4 16 -8 18 6 -8 10 6 -12 10 6 -12 18 6
+4 16 -8 18 -6 -12 18 -6 -12 10 -6 -8 10 -6
+4 16 -28 18 6 -28 10 6 -32 10 6 -32 18 6
+4 16 -28 18 -6 -32 18 -6 -32 10 -6 -28 10 -6
+4 16 -48 18 6 -48 10 6 -52 10 6 -52 18 6
+4 16 -48 18 -6 -52 18 -6 -52 10 -6 -48 10 -6
+4 16 -68 18 6 -68 10 6 -72 10 6 -72 18 6
+4 16 -68 18 -6 -72 18 -6 -72 10 -6 -68 10 -6
+4 16 -88 18 6 -88 10 6 -92 10 6 -92 18 6
+4 16 -88 18 -6 -92 18 -6 -92 10 -6 -88 10 -6
+4 16 116 24 6 116 4 6 108 4 6 108 18 6
+4 16 116 24 -6 108 18 -6 108 4 -6 116 4 -6
+4 16 -108 18 6 -108 4 6 -116 4 6 -116 24 6
+4 16 -108 18 -6 -116 24 -6 -116 4 -6 -108 4 -6
+4 16 116 24 6 108 18 6 -108 18 6 -116 24 6
+4 16 116 24 -6 -116 24 -6 -108 18 -6 108 18 -6
+4 16 120 24 10 116 24 6 -116 24 6 -120 24 10
+4 16 120 24 -10 -120 24 -10 -116 24 -6 116 24 -6
+4 16 120 24 10 120 24 -10 116 24 -6 116 24 6
+4 16 -120 24 10 -116 24 6 -116 24 -6 -120 24 -10
+0 BFC INVERTNEXT
+1 16 20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 80 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 100 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -80 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -100 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 80 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 100 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 100 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -100 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -100 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -120 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 80 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 80 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 100 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 100 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -80 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -80 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -100 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -100 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 12 18 10 8 18 10 8 2 10 12 2 10
+4 16 12 18 -10 12 2 -10 8 2 -10 8 18 -10
+4 16 32 18 10 28 18 10 28 2 10 32 2 10
+4 16 32 18 -10 32 2 -10 28 2 -10 28 18 -10
+4 16 52 18 10 48 18 10 48 2 10 52 2 10
+4 16 52 18 -10 52 2 -10 48 2 -10 48 18 -10
+4 16 72 18 10 68 18 10 68 2 10 72 2 10
+4 16 72 18 -10 72 2 -10 68 2 -10 68 18 -10
+4 16 92 18 10 88 18 10 88 2 10 92 2 10
+4 16 92 18 -10 92 2 -10 88 2 -10 88 18 -10
+4 16 -8 18 10 -12 18 10 -12 2 10 -8 2 10
+4 16 -8 18 -10 -8 2 -10 -12 2 -10 -12 18 -10
+4 16 -28 18 10 -32 18 10 -32 2 10 -28 2 10
+4 16 -28 18 -10 -28 2 -10 -32 2 -10 -32 18 -10
+4 16 -48 18 10 -52 18 10 -52 2 10 -48 2 10
+4 16 -48 18 -10 -48 2 -10 -52 2 -10 -52 18 -10
+4 16 -68 18 10 -72 18 10 -72 2 10 -68 2 10
+4 16 -68 18 -10 -68 2 -10 -72 2 -10 -72 18 -10
+4 16 -88 18 10 -92 18 10 -92 2 10 -88 2 10
+4 16 -88 18 -10 -88 2 -10 -92 2 -10 -92 18 -10
+4 16 120 24 10 -120 24 10 -108 18 10 108 18 10
+4 16 120 24 -10 108 18 -10 -108 18 -10 -120 24 -10
+4 16 120 0 10 108 2 10 -108 2 10 -120 0 10
+4 16 120 0 -10 -120 0 -10 -108 2 -10 108 2 -10
+4 16 120 24 10 108 18 10 108 2 10 120 0 10
+4 16 120 24 -10 120 0 -10 108 2 -10 108 18 -10
+4 16 -120 24 10 -120 0 10 -108 2 10 -108 18 10
+4 16 -120 24 -10 -108 18 -10 -108 2 -10 -120 0 -10
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 90 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 110 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -90 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -110 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/3749.dat
+0 Technic Axle Pin
+0 Name: 3749.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-05-09 [guyvivan] Made BFC compliant
+0 !HISTORY 2005-12-12 [guyvivan] Insert ex connect1.dat in part
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2015-01-08 [C3POwen] Updated with connect8.dat primitive
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+1 16 0 0 0 0 1 0 0 0 -1 -1 0 0 p/connect8.dat
+1 16 0 0 0 0 1 0 8 0 0 0 0 8 p/4-4edge.dat
+1 16 0 0 0 0 -1 0 8 0 0 0 0 8 p/4-4disc.dat
+1 16 20 0 0 0 -20 0 1 0 0 0 0 1 p/axle.dat
+
+0 FILE p/connect8.dat
+0 Technic Pin 1.0 with Base Collar and Blind Hole
+0 Name: connect8.dat
+0 Author: Owen Burgoyne [C3POwen]
+0 !LDRAW_ORG Primitive UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+1 16 0 -2 0 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+1 16 0 -2 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -11.5 0 4 0 0 0 9.5 0 0 0 4 p/4-4cyli.dat
+1 16 0 -2 0 8 0 0 0 2 0 0 0 8 p/4-4cyli.dat
+1 16 0 -2 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 -2 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+1 16 0 -2 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -2 0 6 0 0 0 -9.5 0 0 0 6 p/4-4cyli.dat
+1 16 6 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 5.672 -14.75 1.648 0 -1 -0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 0 -18 0 5.543 0 -2.296 0 6.5 0 2.296 0 5.543 p/3-8cyli.dat
+1 16 0 -18 0 5.543 0 -2.296 0 1 0 2.296 0 5.543 p/3-8edge.dat
+1 16 -5.672 -14.75 1.648 0 1 0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -5.672 -14.75 -1.648 0 1 0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 0 -18 0 -5.543 0 2.296 0 6.5 0 -2.296 0 -5.543 p/3-8cyli.dat
+1 16 0 -18 0 -5.543 0 2.296 0 1 0 -2.296 0 -5.543 p/3-8edge.dat
+1 16 5.672 -14.75 -1.648 0 -1 -0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+2 24 6.301 -18 -1 5.801 -18 -1
+4 16 6.301 -18 -1 6.005 -18 -2.488 5.543 -18 -2.296 5.801 -18 -1
+4 16 6.005 -18 -2.488 4.596 -18 -4.596 4.243 -18 -4.243 5.543 -18 -2.296
+4 16 4.596 -18 -4.596 2.488 -18 -6.005 2.296 -18 -5.543 4.243 -18 -4.243
+4 16 2.488 -18 -6.005 0 -18 -6.5 0 -18 -6 2.296 -18 -5.543
+4 16 0 -18 -6.5 -2.488 -18 -6.005 -2.296 -18 -5.543 0 -18 -6
+4 16 -2.488 -18 -6.005 -4.596 -18 -4.596 -4.243 -18 -4.243 -2.296 -18 -5.543
+4 16 -4.596 -18 -4.596 -6.005 -18 -2.488 -5.543 -18 -2.296 -4.243 -18 -4.243
+4 16 -6.005 -18 -2.488 -6.301 -18 -1 -5.801 -18 -1 -5.543 -18 -2.296
+2 24 -6.301 -18 -1 -5.801 -18 -1
+2 24 -6.301 -18 1 -5.801 -18 1
+4 16 -6.301 -18 1 -6.005 -18 2.488 -5.543 -18 2.296 -5.801 -18 1
+4 16 -6.005 -18 2.488 -4.596 -18 4.596 -4.243 -18 4.243 -5.543 -18 2.296
+4 16 -4.596 -18 4.596 -2.488 -18 6.005 -2.296 -18 5.543 -4.243 -18 4.243
+4 16 -2.488 -18 6.005 0 -18 6.5 0 -18 6 -2.296 -18 5.543
+4 16 0 -18 6.5 2.488 -18 6.005 2.296 -18 5.543 0 -18 6
+4 16 2.488 -18 6.005 4.596 -18 4.596 4.243 -18 4.243 2.296 -18 5.543
+4 16 4.596 -18 4.596 6.005 -18 2.488 5.543 -18 2.296 4.243 -18 4.243
+4 16 6.005 -18 2.488 6.301 -18 1 5.801 -18 1 5.543 -18 2.296
+2 24 6.301 -18 1 5.801 -18 1
+1 16 6.153 -19 1.744 -0.148 -1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 6.005 0 -2.488 0 1 0 2.488 0 6.005 p/3-8edge.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8cyli.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8edge.dat
+1 16 -6.153 -19 1.744 0.148 1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 -6.153 -19 -1.744 0.148 1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 -6.005 0 2.488 0 1 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8cyli.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 6.153 -19 -1.744 -0.148 -1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 1 p/1-4cyli.dat
+1 16 4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+1 16 5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+4 16 3.696 -20 1.531 3.801 -20 1 6.301 -20 1 6.005 -20 2.488
+4 16 2.828 -20 2.828 3.696 -20 1.531 6.005 -20 2.488 4.596 -20 4.596
+4 16 1.531 -20 3.696 2.828 -20 2.828 4.596 -20 4.596 2.488 -20 6.005
+4 16 0 -20 4 1.531 -20 3.696 2.488 -20 6.005 0 -20 6.5
+4 16 -1.531 -20 3.696 0 -20 4 0 -20 6.5 -2.488 -20 6.005
+4 16 -2.828 -20 2.828 -1.531 -20 3.696 -2.488 -20 6.005 -4.596 -20 4.596
+4 16 -3.696 -20 1.531 -2.828 -20 2.828 -4.596 -20 4.596 -6.005 -20 2.488
+4 16 -3.801 -20 1 -3.696 -20 1.531 -6.005 -20 2.488 -6.301 -20 1
+1 16 -5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+1 16 -4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 -4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+1 16 -5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+4 16 -3.696 -20 -1.531 -3.801 -20 -1 -6.301 -20 -1 -6.005 -20 -2.488
+4 16 -2.828 -20 -2.828 -3.696 -20 -1.531 -6.005 -20 -2.488 -4.596 -20 -4.596
+4 16 -1.531 -20 -3.696 -2.828 -20 -2.828 -4.596 -20 -4.596 -2.488 -20 -6.005
+4 16 0 -20 -4 -1.531 -20 -3.696 -2.488 -20 -6.005 0 -20 -6.5
+4 16 1.531 -20 -3.696 0 -20 -4 0 -20 -6.5 2.488 -20 -6.005
+4 16 2.828 -20 -2.828 1.531 -20 -3.696 2.488 -20 -6.005 4.596 -20 -4.596
+4 16 3.696 -20 -1.531 2.828 -20 -2.828 4.596 -20 -4.596 6.005 -20 -2.488
+4 16 3.801 -20 -1 3.696 -20 -1.531 6.005 -20 -2.488 6.301 -20 -1
+1 16 5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+1 16 4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 3.748 -15.75 1.265 0 1 -0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 3.695 0 -1.531 0 8.5 0 1.531 0 3.695 p/3-8cyli.dat
+1 16 0 -20 0 3.695 0 -1.531 0 1 0 1.531 0 3.695 p/3-8edge.dat
+1 16 -3.748 -15.75 1.265 0 -1 0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -4 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -3.748 -15.75 -1.265 0 -1 0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 -3.695 0 1.531 0 8.5 0 -1.531 0 -3.695 p/3-8cyli.dat
+1 16 0 -20 0 -3.695 0 1.531 0 1 0 -1.531 0 -3.695 p/3-8edge.dat
+1 16 3.748 -15.75 -1.265 0 1 -0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 4 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+
+0 FILE parts/44375a.dat
+0 Dish  6 x  6 Inverted with Hollow Studs
+0 Name: 44375a.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG Part UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Space, Radar Dish, Round
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2012-02-21 [Philo] Added missing condlines between cones, moved studs in main part
+0 !HISTORY 2012-02-22 [PTadmin] Renamed from 44375
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/44375s01.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug2-2x2.dat
+1 16 0 3 0 20 0 0 0 -3 0 0 0 20 p/48/4-4con1.dat
+1 16 0 6 0 10 0 0 0 -3 0 0 0 10 p/48/4-4con4.dat
+1 16 0 11 0 10 0 0 0 -5 0 0 0 10 p/48/4-4con5.dat
+5 24 20 0 0 19.828 0 2.61 0 0 0 39.656 3 5.22
+5 24 19.828 0 2.61 19.318 0 5.176 0 0 0 38.636 3 10.352
+5 24 19.318 0 5.176 18.478 0 7.654 0 0 0 36.956 3 15.308
+5 24 18.478 0 7.654 17.32 0 10 0 0 0 34.64 3 20
+5 24 17.32 0 10 15.868 0 12.176 0 0 0 31.736 3 24.352
+5 24 15.868 0 12.176 14.142 0 14.142 0 0 0 28.284 3 28.284
+5 24 14.142 0 14.142 12.176 0 15.868 0 0 0 24.352 3 31.736
+5 24 12.176 0 15.868 10 0 17.32 0 0 0 20 3 34.64
+5 24 10 0 17.32 7.654 0 18.478 0 0 0 15.308 3 36.956
+5 24 7.654 0 18.478 5.176 0 19.318 0 0 0 10.352 3 38.636
+5 24 5.176 0 19.318 2.61 0 19.828 0 0 0 5.22 3 39.656
+5 24 2.61 0 19.828 0 0 20 0 0 0 0 3 40
+5 24 0 0 20 -2.61 0 19.828 0 0 0 -5.22 3 39.656
+5 24 -2.61 0 19.828 -5.176 0 19.318 0 0 0 -10.352 3 38.636
+5 24 -5.176 0 19.318 -7.654 0 18.478 0 0 0 -15.308 3 36.956
+5 24 -7.654 0 18.478 -10 0 17.32 0 0 0 -20 3 34.64
+5 24 -10 0 17.32 -12.176 0 15.868 0 0 0 -24.352 3 31.736
+5 24 -12.176 0 15.868 -14.142 0 14.142 0 0 0 -28.284 3 28.284
+5 24 -14.142 0 14.142 -15.868 0 12.176 0 0 0 -31.736 3 24.352
+5 24 -15.868 0 12.176 -17.32 0 10 0 0 0 -34.64 3 20
+5 24 -17.32 0 10 -18.478 0 7.654 0 0 0 -36.956 3 15.308
+5 24 -18.478 0 7.654 -19.318 0 5.176 0 0 0 -38.636 3 10.352
+5 24 -19.318 0 5.176 -19.828 0 2.61 0 0 0 -39.656 3 5.22
+5 24 -19.828 0 2.61 -20 0 0 0 0 0 -40 3 0
+5 24 -20 0 0 -19.828 0 -2.61 0 0 0 -39.656 3 -5.22
+5 24 -19.828 0 -2.61 -19.318 0 -5.176 0 0 0 -38.636 3 -10.352
+5 24 -19.318 0 -5.176 -18.478 0 -7.654 0 0 0 -36.956 3 -15.308
+5 24 -18.478 0 -7.654 -17.32 0 -10 0 0 0 -34.64 3 -20
+5 24 -17.32 0 -10 -15.868 0 -12.176 0 0 0 -31.736 3 -24.352
+5 24 -15.868 0 -12.176 -14.142 0 -14.142 0 0 0 -28.284 3 -28.284
+5 24 -14.142 0 -14.142 -12.176 0 -15.868 0 0 0 -24.352 3 -31.736
+5 24 -12.176 0 -15.868 -10 0 -17.32 0 0 0 -20 3 -34.64
+5 24 -10 0 -17.32 -7.654 0 -18.478 0 0 0 -15.308 3 -36.956
+5 24 -7.654 0 -18.478 -5.176 0 -19.318 0 0 0 -10.352 3 -38.636
+5 24 -5.176 0 -19.318 -2.61 0 -19.828 0 0 0 -5.22 3 -39.656
+5 24 -2.61 0 -19.828 0 0 -20 0 0 0 0 3 -40
+5 24 0 0 -20 2.61 0 -19.828 0 0 0 5.22 3 -39.656
+5 24 2.61 0 -19.828 5.176 0 -19.318 0 0 0 10.352 3 -38.636
+5 24 5.176 0 -19.318 7.654 0 -18.478 0 0 0 15.308 3 -36.956
+5 24 7.654 0 -18.478 10 0 -17.32 0 0 0 20 3 -34.64
+5 24 10 0 -17.32 12.176 0 -15.868 0 0 0 24.352 3 -31.736
+5 24 12.176 0 -15.868 14.142 0 -14.142 0 0 0 28.284 3 -28.284
+5 24 14.142 0 -14.142 15.868 0 -12.176 0 0 0 31.736 3 -24.352
+5 24 15.868 0 -12.176 17.32 0 -10 0 0 0 34.64 3 -20
+5 24 17.32 0 -10 18.478 0 -7.654 0 0 0 36.956 3 -15.308
+5 24 18.478 0 -7.654 19.318 0 -5.176 0 0 0 38.636 3 -10.352
+5 24 19.318 0 -5.176 19.828 0 -2.61 0 0 0 39.656 3 -5.22
+5 24 19.828 0 -2.61 20 0 0 0 0 0 40 3 0
+5 24 39.656 3 5.22 40 3 0 20 0 0 49.57 6 6.525
+5 24 38.636 3 10.352 39.656 3 5.22 19.828 0 2.61 48.295 6 12.94
+5 24 36.956 3 15.308 38.636 3 10.352 19.318 0 5.176 46.195 6 19.135
+5 24 34.64 3 20 36.956 3 15.308 18.478 0 7.654 43.3 6 25
+5 24 31.736 3 24.352 34.64 3 20 17.32 0 10 39.67 6 30.44
+5 24 28.284 3 28.284 31.736 3 24.352 15.868 0 12.176 35.355 6 35.355
+5 24 24.352 3 31.736 28.284 3 28.284 14.142 0 14.142 30.44 6 39.67
+5 24 20 3 34.64 24.352 3 31.736 12.176 0 15.868 25 6 43.3
+5 24 15.308 3 36.956 20 3 34.64 10 0 17.32 19.135 6 46.195
+5 24 10.352 3 38.636 15.308 3 36.956 7.654 0 18.478 12.94 6 48.295
+5 24 5.22 3 39.656 10.352 3 38.636 5.176 0 19.318 6.525 6 49.57
+5 24 0 3 40 5.22 3 39.656 2.61 0 19.828 0 6 50
+5 24 -5.22 3 39.656 0 3 40 0 0 20 -6.525 6 49.57
+5 24 -10.352 3 38.636 -5.22 3 39.656 -2.61 0 19.828 -12.94 6 48.295
+5 24 -15.308 3 36.956 -10.352 3 38.636 -5.176 0 19.318 -19.135 6 46.195
+5 24 -20 3 34.64 -15.308 3 36.956 -7.654 0 18.478 -25 6 43.3
+5 24 -24.352 3 31.736 -20 3 34.64 -10 0 17.32 -30.44 6 39.67
+5 24 -28.284 3 28.284 -24.352 3 31.736 -12.176 0 15.868 -35.355 6 35.355
+5 24 -31.736 3 24.352 -28.284 3 28.284 -14.142 0 14.142 -39.67 6 30.44
+5 24 -34.64 3 20 -31.736 3 24.352 -15.868 0 12.176 -43.3 6 25
+5 24 -36.956 3 15.308 -34.64 3 20 -17.32 0 10 -46.195 6 19.135
+5 24 -38.636 3 10.352 -36.956 3 15.308 -18.478 0 7.654 -48.295 6 12.94
+5 24 -39.656 3 5.22 -38.636 3 10.352 -19.318 0 5.176 -49.57 6 6.525
+5 24 -40 3 0 -39.656 3 5.22 -19.828 0 2.61 -50 6 0
+5 24 -39.656 3 -5.22 -40 3 0 -20 0 0 -49.57 6 -6.525
+5 24 -38.636 3 -10.352 -39.656 3 -5.22 -19.828 0 -2.61 -48.295 6 -12.94
+5 24 -36.956 3 -15.308 -38.636 3 -10.352 -19.318 0 -5.176 -46.195 6 -19.135
+5 24 -34.64 3 -20 -36.956 3 -15.308 -18.478 0 -7.654 -43.3 6 -25
+5 24 -31.736 3 -24.352 -34.64 3 -20 -17.32 0 -10 -39.67 6 -30.44
+5 24 -28.284 3 -28.284 -31.736 3 -24.352 -15.868 0 -12.176 -35.355 6 -35.355
+5 24 -24.352 3 -31.736 -28.284 3 -28.284 -14.142 0 -14.142 -30.44 6 -39.67
+5 24 -20 3 -34.64 -24.352 3 -31.736 -12.176 0 -15.868 -25 6 -43.3
+5 24 -15.308 3 -36.956 -20 3 -34.64 -10 0 -17.32 -19.135 6 -46.195
+5 24 -10.352 3 -38.636 -15.308 3 -36.956 -7.654 0 -18.478 -12.94 6 -48.295
+5 24 -5.22 3 -39.656 -10.352 3 -38.636 -5.176 0 -19.318 -6.525 6 -49.57
+5 24 0 3 -40 -5.22 3 -39.656 -2.61 0 -19.828 0 6 -50
+5 24 5.22 3 -39.656 0 3 -40 0 0 -20 6.525 6 -49.57
+5 24 10.352 3 -38.636 5.22 3 -39.656 2.61 0 -19.828 12.94 6 -48.295
+5 24 15.308 3 -36.956 10.352 3 -38.636 5.176 0 -19.318 19.135 6 -46.195
+5 24 20 3 -34.64 15.308 3 -36.956 7.654 0 -18.478 25 6 -43.3
+5 24 24.352 3 -31.736 20 3 -34.64 10 0 -17.32 30.44 6 -39.67
+5 24 28.284 3 -28.284 24.352 3 -31.736 12.176 0 -15.868 35.355 6 -35.355
+5 24 31.736 3 -24.352 28.284 3 -28.284 14.142 0 -14.142 39.67 6 -30.44
+5 24 34.64 3 -20 31.736 3 -24.352 15.868 0 -12.176 43.3 6 -25
+5 24 36.956 3 -15.308 34.64 3 -20 17.32 0 -10 46.195 6 -19.135
+5 24 38.636 3 -10.352 36.956 3 -15.308 18.478 0 -7.654 48.295 6 -12.94
+5 24 39.656 3 -5.22 38.636 3 -10.352 19.318 0 -5.176 49.57 6 -6.525
+5 24 40 3 0 39.656 3 -5.22 19.828 0 -2.61 50 6 0
+5 24 50 6 0 49.57 6 6.525 39.656 3 5.22 59.484 11 7.83
+5 24 49.57 6 6.525 48.295 6 12.94 38.636 3 10.352 57.954 11 15.528
+5 24 48.295 6 12.94 46.195 6 19.135 36.956 3 15.308 55.434 11 22.962
+5 24 46.195 6 19.135 43.3 6 25 34.64 3 20 51.96 11 30
+5 24 43.3 6 25 39.67 6 30.44 31.736 3 24.352 47.604 11 36.528
+5 24 39.67 6 30.44 35.355 6 35.355 28.284 3 28.284 42.426 11 42.426
+5 24 35.355 6 35.355 30.44 6 39.67 24.352 3 31.736 36.528 11 47.604
+5 24 30.44 6 39.67 25 6 43.3 20 3 34.64 30 11 51.96
+5 24 25 6 43.3 19.135 6 46.195 15.308 3 36.956 22.962 11 55.434
+5 24 19.135 6 46.195 12.94 6 48.295 10.352 3 38.636 15.528 11 57.954
+5 24 12.94 6 48.295 6.525 6 49.57 5.22 3 39.656 7.83 11 59.484
+5 24 6.525 6 49.57 0 6 50 0 3 40 0 11 60
+5 24 0 6 50 -6.525 6 49.57 -5.22 3 39.656 -7.83 11 59.484
+5 24 -6.525 6 49.57 -12.94 6 48.295 -10.352 3 38.636 -15.528 11 57.954
+5 24 -12.94 6 48.295 -19.135 6 46.195 -15.308 3 36.956 -22.962 11 55.434
+5 24 -19.135 6 46.195 -25 6 43.3 -20 3 34.64 -30 11 51.96
+5 24 -25 6 43.3 -30.44 6 39.67 -24.352 3 31.736 -36.528 11 47.604
+5 24 -30.44 6 39.67 -35.355 6 35.355 -28.284 3 28.284 -42.426 11 42.426
+5 24 -35.355 6 35.355 -39.67 6 30.44 -31.736 3 24.352 -47.604 11 36.528
+5 24 -39.67 6 30.44 -43.3 6 25 -34.64 3 20 -51.96 11 30
+5 24 -43.3 6 25 -46.195 6 19.135 -36.956 3 15.308 -55.434 11 22.962
+5 24 -46.195 6 19.135 -48.295 6 12.94 -38.636 3 10.352 -57.954 11 15.528
+5 24 -48.295 6 12.94 -49.57 6 6.525 -39.656 3 5.22 -59.484 11 7.83
+5 24 -49.57 6 6.525 -50 6 0 -40 3 0 -60 11 0
+5 24 -50 6 0 -49.57 6 -6.525 -39.656 3 -5.22 -59.484 11 -7.83
+5 24 -49.57 6 -6.525 -48.295 6 -12.94 -38.636 3 -10.352 -57.954 11 -15.528
+5 24 -48.295 6 -12.94 -46.195 6 -19.135 -36.956 3 -15.308 -55.434 11 -22.962
+5 24 -46.195 6 -19.135 -43.3 6 -25 -34.64 3 -20 -51.96 11 -30
+5 24 -43.3 6 -25 -39.67 6 -30.44 -31.736 3 -24.352 -47.604 11 -36.528
+5 24 -39.67 6 -30.44 -35.355 6 -35.355 -28.284 3 -28.284 -42.426 11 -42.426
+5 24 -35.355 6 -35.355 -30.44 6 -39.67 -24.352 3 -31.736 -36.528 11 -47.604
+5 24 -30.44 6 -39.67 -25 6 -43.3 -20 3 -34.64 -30 11 -51.96
+5 24 -25 6 -43.3 -19.135 6 -46.195 -15.308 3 -36.956 -22.962 11 -55.434
+5 24 -19.135 6 -46.195 -12.94 6 -48.295 -10.352 3 -38.636 -15.528 11 -57.954
+5 24 -12.94 6 -48.295 -6.525 6 -49.57 -5.22 3 -39.656 -7.83 11 -59.484
+5 24 -6.525 6 -49.57 0 6 -50 0 3 -40 0 11 -60
+5 24 0 6 -50 6.525 6 -49.57 5.22 3 -39.656 7.83 11 -59.484
+5 24 6.525 6 -49.57 12.94 6 -48.295 10.352 3 -38.636 15.528 11 -57.954
+5 24 12.94 6 -48.295 19.135 6 -46.195 15.308 3 -36.956 22.962 11 -55.434
+5 24 19.135 6 -46.195 25 6 -43.3 20 3 -34.64 30 11 -51.96
+5 24 25 6 -43.3 30.44 6 -39.67 24.352 3 -31.736 36.528 11 -47.604
+5 24 30.44 6 -39.67 35.355 6 -35.355 28.284 3 -28.284 42.426 11 -42.426
+5 24 35.355 6 -35.355 39.67 6 -30.44 31.736 3 -24.352 47.604 11 -36.528
+5 24 39.67 6 -30.44 43.3 6 -25 34.64 3 -20 51.96 11 -30
+5 24 43.3 6 -25 46.195 6 -19.135 36.956 3 -15.308 55.434 11 -22.962
+5 24 46.195 6 -19.135 48.295 6 -12.94 38.636 3 -10.352 57.954 11 -15.528
+5 24 48.295 6 -12.94 49.57 6 -6.525 39.656 3 -5.22 59.484 11 -7.83
+5 24 49.57 6 -6.525 50 6 0 40 3 0 60 11 0
+
+0 FILE p/48/4-4con4.dat
+0 Hi-Res Cone  4 x 1.0
+0 Name: 48\4-4con4.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+4 16 4 1 0 3.9656 1 0.522 4.957 0 0.6525 5 0 0
+4 16 3.9656 1 0.522 3.8636 1 1.0352 4.8295 0 1.294 4.957 0 0.6525
+4 16 3.8636 1 1.0352 3.6956 1 1.5308 4.6195 0 1.9135 4.8295 0 1.294
+4 16 3.6956 1 1.5308 3.464 1 2 4.33 0 2.5 4.6195 0 1.9135
+4 16 3.464 1 2 3.1736 1 2.4352 3.967 0 3.044 4.33 0 2.5
+4 16 3.1736 1 2.4352 2.8284 1 2.8284 3.5355 0 3.5355 3.967 0 3.044
+4 16 2.8284 1 2.8284 2.4352 1 3.1736 3.044 0 3.967 3.5355 0 3.5355
+4 16 2.4352 1 3.1736 2 1 3.464 2.5 0 4.33 3.044 0 3.967
+4 16 2 1 3.464 1.5308 1 3.6956 1.9135 0 4.6195 2.5 0 4.33
+4 16 1.5308 1 3.6956 1.0352 1 3.8636 1.294 0 4.8295 1.9135 0 4.6195
+4 16 1.0352 1 3.8636 0.522 1 3.9656 0.6525 0 4.957 1.294 0 4.8295
+4 16 0.522 1 3.9656 0 1 4 0 0 5 0.6525 0 4.957
+4 16 0 1 4 -0.522 1 3.9656 -0.6525 0 4.957 0 0 5
+4 16 -0.522 1 3.9656 -1.0352 1 3.8636 -1.294 0 4.8295 -0.6525 0 4.957
+4 16 -1.0352 1 3.8636 -1.5308 1 3.6956 -1.9135 0 4.6195 -1.294 0 4.8295
+4 16 -1.5308 1 3.6956 -2 1 3.464 -2.5 0 4.33 -1.9135 0 4.6195
+4 16 -2 1 3.464 -2.4352 1 3.1736 -3.044 0 3.967 -2.5 0 4.33
+4 16 -2.4352 1 3.1736 -2.8284 1 2.8284 -3.5355 0 3.5355 -3.044 0 3.967
+4 16 -2.8284 1 2.8284 -3.1736 1 2.4352 -3.967 0 3.044 -3.5355 0 3.5355
+4 16 -3.1736 1 2.4352 -3.464 1 2 -4.33 0 2.5 -3.967 0 3.044
+4 16 -3.464 1 2 -3.6956 1 1.5308 -4.6195 0 1.9135 -4.33 0 2.5
+4 16 -3.6956 1 1.5308 -3.8636 1 1.0352 -4.8295 0 1.294 -4.6195 0 1.9135
+4 16 -3.8636 1 1.0352 -3.9656 1 0.522 -4.957 0 0.6525 -4.8295 0 1.294
+4 16 -3.9656 1 0.522 -4 1 0 -5 0 0 -4.957 0 0.6525
+4 16 -4 1 0 -3.9656 1 -0.522 -4.957 0 -0.6525 -5 0 0
+4 16 -3.9656 1 -0.522 -3.8636 1 -1.0352 -4.8295 0 -1.294 -4.957 0 -0.6525
+4 16 -3.8636 1 -1.0352 -3.6956 1 -1.5308 -4.6195 0 -1.9135 -4.8295 0 -1.294
+4 16 -3.6956 1 -1.5308 -3.464 1 -2 -4.33 0 -2.5 -4.6195 0 -1.9135
+4 16 -3.464 1 -2 -3.1736 1 -2.4352 -3.967 0 -3.044 -4.33 0 -2.5
+4 16 -3.1736 1 -2.4352 -2.8284 1 -2.8284 -3.5355 0 -3.5355 -3.967 0 -3.044
+4 16 -2.8284 1 -2.8284 -2.4352 1 -3.1736 -3.044 0 -3.967 -3.5355 0 -3.5355
+4 16 -2.4352 1 -3.1736 -2 1 -3.464 -2.5 0 -4.33 -3.044 0 -3.967
+4 16 -2 1 -3.464 -1.5308 1 -3.6956 -1.9135 0 -4.6195 -2.5 0 -4.33
+4 16 -1.5308 1 -3.6956 -1.0352 1 -3.8636 -1.294 0 -4.8295 -1.9135 0 -4.6195
+4 16 -1.0352 1 -3.8636 -0.522 1 -3.9656 -0.6525 0 -4.957 -1.294 0 -4.8295
+4 16 -0.522 1 -3.9656 0 1 -4 0 0 -5 -0.6525 0 -4.957
+4 16 0 1 -4 0.522 1 -3.9656 0.6525 0 -4.957 0 0 -5
+4 16 0.522 1 -3.9656 1.0352 1 -3.8636 1.294 0 -4.8295 0.6525 0 -4.957
+4 16 1.0352 1 -3.8636 1.5308 1 -3.6956 1.9135 0 -4.6195 1.294 0 -4.8295
+4 16 1.5308 1 -3.6956 2 1 -3.464 2.5 0 -4.33 1.9135 0 -4.6195
+4 16 2 1 -3.464 2.4352 1 -3.1736 3.044 0 -3.967 2.5 0 -4.33
+4 16 2.4352 1 -3.1736 2.8284 1 -2.8284 3.5355 0 -3.5355 3.044 0 -3.967
+4 16 2.8284 1 -2.8284 3.1736 1 -2.4352 3.967 0 -3.044 3.5355 0 -3.5355
+4 16 3.1736 1 -2.4352 3.464 1 -2 4.33 0 -2.5 3.967 0 -3.044
+4 16 3.464 1 -2 3.6956 1 -1.5308 4.6195 0 -1.9135 4.33 0 -2.5
+4 16 3.6956 1 -1.5308 3.8636 1 -1.0352 4.8295 0 -1.294 4.6195 0 -1.9135
+4 16 3.8636 1 -1.0352 3.9656 1 -0.522 4.957 0 -0.6525 4.8295 0 -1.294
+4 16 3.9656 1 -0.522 4 1 0 5 0 0 4.957 0 -0.6525
+
+0 conditional lines
+5 24 4 1 0 5 0 0 3.9656 1 -0.522 3.9656 1 0.522
+5 24 3.9656 1 0.522 4.957 0 0.6525 4 1 0 3.8636 1 1.0352
+5 24 3.8636 1 1.0352 4.8295 0 1.294 3.9656 1 0.522 3.6956 1 1.5308
+5 24 3.6956 1 1.5308 4.6195 0 1.9135 3.8636 1 1.0352 3.464 1 2
+5 24 3.464 1 2 4.33 0 2.5 3.6956 1 1.5308 3.1736 1 2.4352
+5 24 3.1736 1 2.4352 3.967 0 3.044 3.464 1 2 2.8284 1 2.8284
+5 24 2.8284 1 2.8284 3.5355 0 3.5355 3.1736 1 2.4352 2.4352 1 3.1736
+5 24 2.4352 1 3.1736 3.044 0 3.967 2.8284 1 2.8284 2 1 3.464
+5 24 2 1 3.464 2.5 0 4.33 2.4352 1 3.1736 1.5308 1 3.6956
+5 24 1.5308 1 3.6956 1.9135 0 4.6195 2 1 3.464 1.0352 1 3.8636
+5 24 1.0352 1 3.8636 1.294 0 4.8295 1.5308 1 3.6956 0.522 1 3.9656
+5 24 0.522 1 3.9656 0.6525 0 4.957 1.0352 1 3.8636 0 1 4
+5 24 0 1 4 0 0 5 0.522 1 3.9656 -0.522 1 3.9656
+5 24 -0.522 1 3.9656 -0.6525 0 4.957 0 1 4 -1.0352 1 3.8636
+5 24 -1.0352 1 3.8636 -1.294 0 4.8295 -0.522 1 3.9656 -1.5308 1 3.6956
+5 24 -1.5308 1 3.6956 -1.9135 0 4.6195 -1.0352 1 3.8636 -2 1 3.464
+5 24 -2 1 3.464 -2.5 0 4.33 -1.5308 1 3.6956 -2.4352 1 3.1736
+5 24 -2.4352 1 3.1736 -3.044 0 3.967 -2 1 3.464 -2.8284 1 2.8284
+5 24 -2.8284 1 2.8284 -3.5355 0 3.5355 -2.4352 1 3.1736 -3.1736 1 2.4352
+5 24 -3.1736 1 2.4352 -3.967 0 3.044 -2.8284 1 2.8284 -3.464 1 2
+5 24 -3.464 1 2 -4.33 0 2.5 -3.1736 1 2.4352 -3.6956 1 1.5308
+5 24 -3.6956 1 1.5308 -4.6195 0 1.9135 -3.464 1 2 -3.8636 1 1.0352
+5 24 -3.8636 1 1.0352 -4.8295 0 1.294 -3.6956 1 1.5308 -3.9656 1 0.522
+5 24 -3.9656 1 0.522 -4.957 0 0.6525 -3.8636 1 1.0352 -4 1 0
+5 24 -4 1 0 -5 0 0 -3.9656 1 0.522 -3.9656 1 -0.522
+5 24 -3.9656 1 -0.522 -4.957 0 -0.6525 -4 1 0 -3.8636 1 -1.0352
+5 24 -3.8636 1 -1.0352 -4.8295 0 -1.294 -3.9656 1 -0.522 -3.6956 1 -1.5308
+5 24 -3.6956 1 -1.5308 -4.6195 0 -1.9135 -3.8636 1 -1.0352 -3.464 1 -2
+5 24 -3.464 1 -2 -4.33 0 -2.5 -3.6956 1 -1.5308 -3.1736 1 -2.4352
+5 24 -3.1736 1 -2.4352 -3.967 0 -3.044 -3.464 1 -2 -2.8284 1 -2.8284
+5 24 -2.8284 1 -2.8284 -3.5355 0 -3.5355 -3.1736 1 -2.4352 -2.4352 1 -3.1736
+5 24 -2.4352 1 -3.1736 -3.044 0 -3.967 -2.8284 1 -2.8284 -2 1 -3.464
+5 24 -2 1 -3.464 -2.5 0 -4.33 -2.4352 1 -3.1736 -1.5308 1 -3.6956
+5 24 -1.5308 1 -3.6956 -1.9135 0 -4.6195 -2 1 -3.464 -1.0352 1 -3.8636
+5 24 -1.0352 1 -3.8636 -1.294 0 -4.8295 -1.5308 1 -3.6956 -0.522 1 -3.9656
+5 24 -0.522 1 -3.9656 -0.6525 0 -4.957 -1.0352 1 -3.8636 0 1 -4
+5 24 0 1 -4 0 0 -5 -0.522 1 -3.9656 0.522 1 -3.9656
+5 24 0.522 1 -3.9656 0.6525 0 -4.957 0 1 -4 1.0352 1 -3.8636
+5 24 1.0352 1 -3.8636 1.294 0 -4.8295 0.522 1 -3.9656 1.5308 1 -3.6956
+5 24 1.5308 1 -3.6956 1.9135 0 -4.6195 1.0352 1 -3.8636 2 1 -3.464
+5 24 2 1 -3.464 2.5 0 -4.33 1.5308 1 -3.6956 2.4352 1 -3.1736
+5 24 2.4352 1 -3.1736 3.044 0 -3.967 2 1 -3.464 2.8284 1 -2.8284
+5 24 2.8284 1 -2.8284 3.5355 0 -3.5355 2.4352 1 -3.1736 3.1736 1 -2.4352
+5 24 3.1736 1 -2.4352 3.967 0 -3.044 2.8284 1 -2.8284 3.464 1 -2
+5 24 3.464 1 -2 4.33 0 -2.5 3.1736 1 -2.4352 3.6956 1 -1.5308
+5 24 3.6956 1 -1.5308 4.6195 0 -1.9135 3.464 1 -2 3.8636 1 -1.0352
+5 24 3.8636 1 -1.0352 4.8295 0 -1.294 3.6956 1 -1.5308 3.9656 1 -0.522
+5 24 3.9656 1 -0.522 4.957 0 -0.6525 3.8636 1 -1.0352 4 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4con1.dat
+0 Hi-Res Cone  1 x 1.0
+0 Name: 48\4-4con1.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 0.9914 1 0.1305 1.9828 0 0.261 2 0 0 1 1 0
+4 16 0.9659 1 0.2588 1.9318 0 0.5176 1.9828 0 0.261 0.9914 1 0.1305
+4 16 0.9239 1 0.3827 1.8478 0 0.7654 1.9318 0 0.5176 0.9659 1 0.2588
+4 16 0.866 1 0.5 1.732 0 1 1.8478 0 0.7654 0.9239 1 0.3827
+4 16 0.7934 1 0.6088 1.5868 0 1.2176 1.732 0 1 0.866 1 0.5
+4 16 0.7071 1 0.7071 1.4142 0 1.4142 1.5868 0 1.2176 0.7934 1 0.6088
+4 16 0.6088 1 0.7934 1.2176 0 1.5868 1.4142 0 1.4142 0.7071 1 0.7071
+4 16 0.5 1 0.866 1 0 1.732 1.2176 0 1.5868 0.6088 1 0.7934
+4 16 0.3827 1 0.9239 0.7654 0 1.8478 1 0 1.732 0.5 1 0.866
+4 16 0.2588 1 0.9659 0.5176 0 1.9318 0.7654 0 1.8478 0.3827 1 0.9239
+4 16 0.1305 1 0.9914 0.261 0 1.9828 0.5176 0 1.9318 0.2588 1 0.9659
+4 16 0 1 1 0 0 2 0.261 0 1.9828 0.1305 1 0.9914
+4 16 -0.1305 1 0.9914 -0.261 0 1.9828 0 0 2 0 1 1
+4 16 -0.2588 1 0.9659 -0.5176 0 1.9318 -0.261 0 1.9828 -0.1305 1 0.9914
+4 16 -0.3827 1 0.9239 -0.7654 0 1.8478 -0.5176 0 1.9318 -0.2588 1 0.9659
+4 16 -0.5 1 0.866 -1 0 1.732 -0.7654 0 1.8478 -0.3827 1 0.9239
+4 16 -0.6088 1 0.7934 -1.2176 0 1.5868 -1 0 1.732 -0.5 1 0.866
+4 16 -0.7071 1 0.7071 -1.4142 0 1.4142 -1.2176 0 1.5868 -0.6088 1 0.7934
+4 16 -0.7934 1 0.6088 -1.5868 0 1.2176 -1.4142 0 1.4142 -0.7071 1 0.7071
+4 16 -0.866 1 0.5 -1.732 0 1 -1.5868 0 1.2176 -0.7934 1 0.6088
+4 16 -0.9239 1 0.3827 -1.8478 0 0.7654 -1.732 0 1 -0.866 1 0.5
+4 16 -0.9659 1 0.2588 -1.9318 0 0.5176 -1.8478 0 0.7654 -0.9239 1 0.3827
+4 16 -0.9914 1 0.1305 -1.9828 0 0.261 -1.9318 0 0.5176 -0.9659 1 0.2588
+4 16 -1 1 0 -2 0 0 -1.9828 0 0.261 -0.9914 1 0.1305
+4 16 -0.9914 1 -0.1305 -1.9828 0 -0.261 -2 0 0 -1 1 0
+4 16 -0.9659 1 -0.2588 -1.9318 0 -0.5176 -1.9828 0 -0.261 -0.9914 1 -0.1305
+4 16 -0.9239 1 -0.3827 -1.8478 0 -0.7654 -1.9318 0 -0.5176 -0.9659 1 -0.2588
+4 16 -0.866 1 -0.5 -1.732 0 -1 -1.8478 0 -0.7654 -0.9239 1 -0.3827
+4 16 -0.7934 1 -0.6088 -1.5868 0 -1.2176 -1.732 0 -1 -0.866 1 -0.5
+4 16 -0.7071 1 -0.7071 -1.4142 0 -1.4142 -1.5868 0 -1.2176 -0.7934 1 -0.6088
+4 16 -0.6088 1 -0.7934 -1.2176 0 -1.5868 -1.4142 0 -1.4142 -0.7071 1 -0.7071
+4 16 -0.5 1 -0.866 -1 0 -1.732 -1.2176 0 -1.5868 -0.6088 1 -0.7934
+4 16 -0.3827 1 -0.9239 -0.7654 0 -1.8478 -1 0 -1.732 -0.5 1 -0.866
+4 16 -0.2588 1 -0.9659 -0.5176 0 -1.9318 -0.7654 0 -1.8478 -0.3827 1 -0.9239
+4 16 -0.1305 1 -0.9914 -0.261 0 -1.9828 -0.5176 0 -1.9318 -0.2588 1 -0.9659
+4 16 0 1 -1 0 0 -2 -0.261 0 -1.9828 -0.1305 1 -0.9914
+4 16 0.1305 1 -0.9914 0.261 0 -1.9828 0 0 -2 0 1 -1
+4 16 0.2588 1 -0.9659 0.5176 0 -1.9318 0.261 0 -1.9828 0.1305 1 -0.9914
+4 16 0.3827 1 -0.9239 0.7654 0 -1.8478 0.5176 0 -1.9318 0.2588 1 -0.9659
+4 16 0.5 1 -0.866 1 0 -1.732 0.7654 0 -1.8478 0.3827 1 -0.9239
+4 16 0.6088 1 -0.7934 1.2176 0 -1.5868 1 0 -1.732 0.5 1 -0.866
+4 16 0.7071 1 -0.7071 1.4142 0 -1.4142 1.2176 0 -1.5868 0.6088 1 -0.7934
+4 16 0.7934 1 -0.6088 1.5868 0 -1.2176 1.4142 0 -1.4142 0.7071 1 -0.7071
+4 16 0.866 1 -0.5 1.732 0 -1 1.5868 0 -1.2176 0.7934 1 -0.6088
+4 16 0.9239 1 -0.3827 1.8478 0 -0.7654 1.732 0 -1 0.866 1 -0.5
+4 16 0.9659 1 -0.2588 1.9318 0 -0.5176 1.8478 0 -0.7654 0.9239 1 -0.3827
+4 16 0.9914 1 -0.1305 1.9828 0 -0.261 1.9318 0 -0.5176 0.9659 1 -0.2588
+4 16 1 1 0 2 0 0 1.9828 0 -0.261 0.9914 1 -0.1305
+
+0 conditional lines
+5 24 1 1 0 2 0 0 0.9914 1 -0.1305 0.9914 1 0.1305
+5 24 0.9914 1 0.1305 1.9828 0 0.261 1 1 0 0.9659 1 0.2588
+5 24 0.9659 1 0.2588 1.9318 0 0.5176 0.9914 1 0.1305 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 1.8478 0 0.7654 0.9659 1 0.2588 0.866 1 0.5
+5 24 0.866 1 0.5 1.732 0 1 0.9239 1 0.3827 0.7934 1 0.6088
+5 24 0.7934 1 0.6088 1.5868 0 1.2176 0.866 1 0.5 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 1.4142 0 1.4142 0.7934 1 0.6088 0.6088 1 0.7934
+5 24 0.6088 1 0.7934 1.2176 0 1.5868 0.7071 1 0.7071 0.5 1 0.866
+5 24 0.5 1 0.866 1 0 1.732 0.6088 1 0.7934 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.7654 0 1.8478 0.5 1 0.866 0.2588 1 0.9659
+5 24 0.2588 1 0.9659 0.5176 0 1.9318 0.3827 1 0.9239 0.1305 1 0.9914
+5 24 0.1305 1 0.9914 0.261 0 1.9828 0.2588 1 0.9659 0 1 1
+5 24 0 1 1 0 0 2 0.1305 1 0.9914 -0.1305 1 0.9914
+5 24 -0.1305 1 0.9914 -0.261 0 1.9828 0 1 1 -0.2588 1 0.9659
+5 24 -0.2588 1 0.9659 -0.5176 0 1.9318 -0.1305 1 0.9914 -0.3827 1 0.9239
+5 24 -0.3827 1 0.9239 -0.7654 0 1.8478 -0.2588 1 0.9659 -0.5 1 0.866
+5 24 -0.5 1 0.866 -1 0 1.732 -0.3827 1 0.9239 -0.6088 1 0.7934
+5 24 -0.6088 1 0.7934 -1.2176 0 1.5868 -0.5 1 0.866 -0.7071 1 0.7071
+5 24 -0.7071 1 0.7071 -1.4142 0 1.4142 -0.6088 1 0.7934 -0.7934 1 0.6088
+5 24 -0.7934 1 0.6088 -1.5868 0 1.2176 -0.7071 1 0.7071 -0.866 1 0.5
+5 24 -0.866 1 0.5 -1.732 0 1 -0.7934 1 0.6088 -0.9239 1 0.3827
+5 24 -0.9239 1 0.3827 -1.8478 0 0.7654 -0.866 1 0.5 -0.9659 1 0.2588
+5 24 -0.9659 1 0.2588 -1.9318 0 0.5176 -0.9239 1 0.3827 -0.9914 1 0.1305
+5 24 -0.9914 1 0.1305 -1.9828 0 0.261 -0.9659 1 0.2588 -1 1 0
+5 24 -1 1 0 -2 0 0 -0.9914 1 0.1305 -0.9914 1 -0.1305
+5 24 -0.9914 1 -0.1305 -1.9828 0 -0.261 -1 1 0 -0.9659 1 -0.2588
+5 24 -0.9659 1 -0.2588 -1.9318 0 -0.5176 -0.9914 1 -0.1305 -0.9239 1 -0.3827
+5 24 -0.9239 1 -0.3827 -1.8478 0 -0.7654 -0.9659 1 -0.2588 -0.866 1 -0.5
+5 24 -0.866 1 -0.5 -1.732 0 -1 -0.9239 1 -0.3827 -0.7934 1 -0.6088
+5 24 -0.7934 1 -0.6088 -1.5868 0 -1.2176 -0.866 1 -0.5 -0.7071 1 -0.7071
+5 24 -0.7071 1 -0.7071 -1.4142 0 -1.4142 -0.7934 1 -0.6088 -0.6088 1 -0.7934
+5 24 -0.6088 1 -0.7934 -1.2176 0 -1.5868 -0.7071 1 -0.7071 -0.5 1 -0.866
+5 24 -0.5 1 -0.866 -1 0 -1.732 -0.6088 1 -0.7934 -0.3827 1 -0.9239
+5 24 -0.3827 1 -0.9239 -0.7654 0 -1.8478 -0.5 1 -0.866 -0.2588 1 -0.9659
+5 24 -0.2588 1 -0.9659 -0.5176 0 -1.9318 -0.3827 1 -0.9239 -0.1305 1 -0.9914
+5 24 -0.1305 1 -0.9914 -0.261 0 -1.9828 -0.2588 1 -0.9659 0 1 -1
+5 24 0 1 -1 0 0 -2 -0.1305 1 -0.9914 0.1305 1 -0.9914
+5 24 0.1305 1 -0.9914 0.261 0 -1.9828 0 1 -1 0.2588 1 -0.9659
+5 24 0.2588 1 -0.9659 0.5176 0 -1.9318 0.1305 1 -0.9914 0.3827 1 -0.9239
+5 24 0.3827 1 -0.9239 0.7654 0 -1.8478 0.2588 1 -0.9659 0.5 1 -0.866
+5 24 0.5 1 -0.866 1 0 -1.732 0.3827 1 -0.9239 0.6088 1 -0.7934
+5 24 0.6088 1 -0.7934 1.2176 0 -1.5868 0.5 1 -0.866 0.7071 1 -0.7071
+5 24 0.7071 1 -0.7071 1.4142 0 -1.4142 0.6088 1 -0.7934 0.7934 1 -0.6088
+5 24 0.7934 1 -0.6088 1.5868 0 -1.2176 0.7071 1 -0.7071 0.866 1 -0.5
+5 24 0.866 1 -0.5 1.732 0 -1 0.7934 1 -0.6088 0.9239 1 -0.3827
+5 24 0.9239 1 -0.3827 1.8478 0 -0.7654 0.866 1 -0.5 0.9659 1 -0.2588
+5 24 0.9659 1 -0.2588 1.9318 0 -0.5176 0.9239 1 -0.3827 0.9914 1 -0.1305
+5 24 0.9914 1 -0.1305 1.9828 0 -0.261 0.9659 1 -0.2588 1 1 0
+
+0 FILE p/stug2-2x2.dat
+0 Stud Open Group  2 x  2
+0 Name: stug2-2x2.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2011-06-30 [PTadmin] Renamed from stug2a
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud2.dat
+
+0 FILE parts/s/44375s01.dat
+0 ~Dish  6 x  6 Inverted without Top Faces (Needs Work)
+0 Name: s\44375s01.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG Subpart UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2012-02-21 [Philo] Condlines added between cones, minor improvements, moved studs to main part.
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+0 // Needs work: Edge stud cavities not modeled
+
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ring1.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4ring3.dat
+1 16 0 0 0 16 0 0 0 1 0 0 0 16 p/48/4-4aring.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/48/4-4ring4.dat
+0 // middle hole
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4h.dat
+0 // outer ring
+1 16 0 11 0 60 0 0 0 5 0 0 0 60 p/48/4-4cylo.dat
+1 16 0 16 0 3 0 0 0 -1 0 0 0 3 p/48/4-4rin19.dat
+0 BFC INVERTNEXT
+1 16 0 12 0 57 0 0 0 4 0 0 0 57 p/48/4-4cylo.dat
+0 // inner face
+1 16 0 4 0 20 0 20 0 -1 0 -20 0 20 p/48/1-4chrd.dat
+1 16 0 4 0 -20 0 20 0 -1 0 -20 0 -20 p/48/1-4chrd.dat
+1 16 0 4 0 -20 0 -20 0 -1 0 20 0 -20 p/48/1-4chrd.dat
+1 16 0 4 0 20 0 -20 0 -1 0 20 0 20 p/48/1-4chrd.dat
+1 16 0 4 0 0.76444 0 0 0 -1 0 0 0 0.76444 p/48/4-4rin37.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/48/4-4rin29.dat
+0 BFC INVERTNEXT
+1 16 0 7 0 15 0 0 0 -3 0 0 0 15 p/48/4-4con2.dat
+0 BFC INVERTNEXT
+1 16 0 10.5 0 9 0 0 0 -3.5 0 0 0 9 p/48/4-4con5.dat
+0 BFC INVERTNEXT
+1 16 0 12 0 3 0 0 0 -1.5 0 0 0 3 p/48/4-4con18.dat
+0 // inner square
+1 16 0 4 0 20 0 0 0 4 0 0 0 20 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 16 0 0 0 4 0 0 0 16 p/box4.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+4 16 8 4 -8 8 4 8 16 4 16 16 4 -16
+4 16 16 8 -16 16 8 16 20 8 20 20 8 -20
+4 16 -8 4 -8 8 4 -8 16 4 -16 -16 4 -16
+4 16 -16 8 -16 16 8 -16 20 8 -20 -20 8 -20
+4 16 -8 4 8 -8 4 -8 -16 4 -16 -16 4 16
+4 16 -16 8 16 -16 8 -16 -20 8 -20 -20 8 20
+4 16 8 4 8 -8 4 8 -16 4 16 16 4 16
+4 16 16 8 16 -16 8 16 -20 8 20 20 8 20
+5 24 29.742 4 3.915 30 4 0 29 4 0 45 7 0
+5 24 28.977 4 7.764 29.742 4 3.915 28.751 4 3.785 44.613 7 5.873
+5 24 27.717 4 11.481 28.977 4 7.764 28.011 4 7.505 43.466 7 11.646
+5 24 25.98 4 15 27.717 4 11.481 26.793 4 11.098 41.576 7 17.222
+5 24 23.802 4 18.264 25.98 4 15 25.114 4 14.5 38.97 7 22.5
+5 24 21.213 4 21.213 23.802 4 18.264 23.009 4 17.655 35.703 7 27.396
+5 24 18.264 4 23.802 21.213 4 21.213 20.506 4 20.506 31.82 7 31.82
+5 24 15 4 25.98 18.264 4 23.802 17.655 4 23.009 27.396 7 35.703
+5 24 11.481 4 27.717 15 4 25.98 14.5 4 25.114 22.5 7 38.97
+5 24 7.764 4 28.977 11.481 4 27.717 11.098 4 26.793 17.222 7 41.576
+5 24 3.915 4 29.742 7.764 4 28.977 7.505 4 28.011 11.646 7 43.466
+5 24 0 4 30 3.915 4 29.742 3.785 4 28.751 5.873 7 44.613
+5 24 -3.915 4 29.742 0 4 30 0 4 29 0 7 45
+5 24 -7.764 4 28.977 -3.915 4 29.742 -3.785 4 28.751 -5.873 7 44.613
+5 24 -11.481 4 27.717 -7.764 4 28.977 -7.505 4 28.011 -11.646 7 43.466
+5 24 -15 4 25.98 -11.481 4 27.717 -11.098 4 26.793 -17.222 7 41.576
+5 24 -18.264 4 23.802 -15 4 25.98 -14.5 4 25.114 -22.5 7 38.97
+5 24 -21.213 4 21.213 -18.264 4 23.802 -17.655 4 23.009 -27.396 7 35.703
+5 24 -23.802 4 18.264 -21.213 4 21.213 -20.506 4 20.506 -31.82 7 31.82
+5 24 -25.98 4 15 -23.802 4 18.264 -23.009 4 17.655 -35.703 7 27.396
+5 24 -27.717 4 11.481 -25.98 4 15 -25.114 4 14.5 -38.97 7 22.5
+5 24 -28.977 4 7.764 -27.717 4 11.481 -26.793 4 11.098 -41.576 7 17.222
+5 24 -29.742 4 3.915 -28.977 4 7.764 -28.011 4 7.505 -43.466 7 11.646
+5 24 -30 4 0 -29.742 4 3.915 -28.751 4 3.785 -44.613 7 5.873
+5 24 -29.742 4 -3.915 -30 4 0 -29 4 0 -45 7 0
+5 24 -28.977 4 -7.764 -29.742 4 -3.915 -28.751 4 -3.785 -44.613 7 -5.873
+5 24 -27.717 4 -11.481 -28.977 4 -7.764 -28.011 4 -7.505 -43.466 7 -11.646
+5 24 -25.98 4 -15 -27.717 4 -11.481 -26.793 4 -11.098 -41.576 7 -17.222
+5 24 -23.802 4 -18.264 -25.98 4 -15 -25.114 4 -14.5 -38.97 7 -22.5
+5 24 -21.213 4 -21.213 -23.802 4 -18.264 -23.009 4 -17.655 -35.703 7 -27.396
+5 24 -18.264 4 -23.802 -21.213 4 -21.213 -20.506 4 -20.506 -31.82 7 -31.82
+5 24 -15 4 -25.98 -18.264 4 -23.802 -17.655 4 -23.009 -27.396 7 -35.703
+5 24 -11.481 4 -27.717 -15 4 -25.98 -14.5 4 -25.114 -22.5 7 -38.97
+5 24 -7.764 4 -28.977 -11.481 4 -27.717 -11.098 4 -26.793 -17.222 7 -41.576
+5 24 -3.915 4 -29.742 -7.764 4 -28.977 -7.505 4 -28.011 -11.646 7 -43.466
+5 24 0 4 -30 -3.915 4 -29.742 -3.785 4 -28.751 -5.873 7 -44.613
+5 24 3.915 4 -29.742 0 4 -30 0 4 -29 0 7 -45
+5 24 7.764 4 -28.977 3.915 4 -29.742 3.785 4 -28.751 5.873 7 -44.613
+5 24 11.481 4 -27.717 7.764 4 -28.977 7.505 4 -28.011 11.646 7 -43.466
+5 24 15 4 -25.98 11.481 4 -27.717 11.098 4 -26.793 17.222 7 -41.576
+5 24 18.264 4 -23.802 15 4 -25.98 14.5 4 -25.114 22.5 7 -38.97
+5 24 21.213 4 -21.213 18.264 4 -23.802 17.655 4 -23.009 27.396 7 -35.703
+5 24 23.802 4 -18.264 21.213 4 -21.213 20.506 4 -20.506 31.82 7 -31.82
+5 24 25.98 4 -15 23.802 4 -18.264 23.009 4 -17.655 35.703 7 -27.396
+5 24 27.717 4 -11.481 25.98 4 -15 25.114 4 -14.5 38.97 7 -22.5
+5 24 28.977 4 -7.764 27.717 4 -11.481 26.793 4 -11.098 41.576 7 -17.222
+5 24 29.742 4 -3.915 28.977 4 -7.764 28.011 4 -7.505 43.466 7 -11.646
+5 24 30 4 0 29.742 4 -3.915 28.751 4 -3.785 44.613 7 -5.873
+5 24 45 7 0 44.613 7 5.873 30 4 0 53.536 10.5 7.047
+5 24 44.613 7 5.873 43.466 7 11.646 29.742 4 3.915 52.159 10.5 13.975
+5 24 43.466 7 11.646 41.576 7 17.222 28.977 4 7.764 49.891 10.5 20.666
+5 24 41.576 7 17.222 38.97 7 22.5 27.717 4 11.481 46.764 10.5 27
+5 24 38.97 7 22.5 35.703 7 27.396 25.98 4 15 42.844 10.5 32.875
+5 24 35.703 7 27.396 31.82 7 31.82 23.802 4 18.264 38.183 10.5 38.183
+5 24 31.82 7 31.82 27.396 7 35.703 21.213 4 21.213 32.875 10.5 42.844
+5 24 27.396 7 35.703 22.5 7 38.97 18.264 4 23.802 27 10.5 46.764
+5 24 22.5 7 38.97 17.222 7 41.576 15 4 25.98 20.666 10.5 49.891
+5 24 17.222 7 41.576 11.646 7 43.466 11.481 4 27.717 13.975 10.5 52.159
+5 24 11.646 7 43.466 5.873 7 44.613 7.764 4 28.977 7.047 10.5 53.536
+5 24 5.873 7 44.613 0 7 45 3.915 4 29.742 0 10.5 54
+5 24 0 7 45 -5.873 7 44.613 0 4 30 -7.047 10.5 53.536
+5 24 -5.873 7 44.613 -11.646 7 43.466 -3.915 4 29.742 -13.975 10.5 52.159
+5 24 -11.646 7 43.466 -17.222 7 41.576 -7.764 4 28.977 -20.666 10.5 49.891
+5 24 -17.222 7 41.576 -22.5 7 38.97 -11.481 4 27.717 -27 10.5 46.764
+5 24 -22.5 7 38.97 -27.396 7 35.703 -15 4 25.98 -32.875 10.5 42.844
+5 24 -27.396 7 35.703 -31.82 7 31.82 -18.264 4 23.802 -38.183 10.5 38.183
+5 24 -31.82 7 31.82 -35.703 7 27.396 -21.213 4 21.213 -42.844 10.5 32.875
+5 24 -35.703 7 27.396 -38.97 7 22.5 -23.802 4 18.264 -46.764 10.5 27
+5 24 -38.97 7 22.5 -41.576 7 17.222 -25.98 4 15 -49.891 10.5 20.666
+5 24 -41.576 7 17.222 -43.466 7 11.646 -27.717 4 11.481 -52.159 10.5 13.975
+5 24 -43.466 7 11.646 -44.613 7 5.873 -28.977 4 7.764 -53.536 10.5 7.047
+5 24 -44.613 7 5.873 -45 7 0 -29.742 4 3.915 -54 10.5 0
+5 24 -45 7 0 -44.613 7 -5.873 -30 4 0 -53.536 10.5 -7.047
+5 24 -44.613 7 -5.873 -43.466 7 -11.646 -29.742 4 -3.915 -52.159 10.5 -13.975
+5 24 -43.466 7 -11.646 -41.576 7 -17.222 -28.977 4 -7.764 -49.891 10.5 -20.666
+5 24 -41.576 7 -17.222 -38.97 7 -22.5 -27.717 4 -11.481 -46.764 10.5 -27
+5 24 -38.97 7 -22.5 -35.703 7 -27.396 -25.98 4 -15 -42.844 10.5 -32.875
+5 24 -35.703 7 -27.396 -31.82 7 -31.82 -23.802 4 -18.264 -38.183 10.5 -38.183
+5 24 -31.82 7 -31.82 -27.396 7 -35.703 -21.213 4 -21.213 -32.875 10.5 -42.844
+5 24 -27.396 7 -35.703 -22.5 7 -38.97 -18.264 4 -23.802 -27 10.5 -46.764
+5 24 -22.5 7 -38.97 -17.222 7 -41.576 -15 4 -25.98 -20.666 10.5 -49.891
+5 24 -17.222 7 -41.576 -11.646 7 -43.466 -11.481 4 -27.717 -13.975 10.5 -52.159
+5 24 -11.646 7 -43.466 -5.873 7 -44.613 -7.764 4 -28.977 -7.047 10.5 -53.536
+5 24 -5.873 7 -44.613 0 7 -45 -3.915 4 -29.742 0 10.5 -54
+5 24 0 7 -45 5.873 7 -44.613 0 4 -30 7.047 10.5 -53.536
+5 24 5.873 7 -44.613 11.646 7 -43.466 3.915 4 -29.742 13.975 10.5 -52.159
+5 24 11.646 7 -43.466 17.222 7 -41.576 7.764 4 -28.977 20.666 10.5 -49.891
+5 24 17.222 7 -41.576 22.5 7 -38.97 11.481 4 -27.717 27 10.5 -46.764
+5 24 22.5 7 -38.97 27.396 7 -35.703 15 4 -25.98 32.875 10.5 -42.844
+5 24 27.396 7 -35.703 31.82 7 -31.82 18.264 4 -23.802 38.183 10.5 -38.183
+5 24 31.82 7 -31.82 35.703 7 -27.396 21.213 4 -21.213 42.844 10.5 -32.875
+5 24 35.703 7 -27.396 38.97 7 -22.5 23.802 4 -18.264 46.764 10.5 -27
+5 24 38.97 7 -22.5 41.576 7 -17.222 25.98 4 -15 49.891 10.5 -20.666
+5 24 41.576 7 -17.222 43.466 7 -11.646 27.717 4 -11.481 52.159 10.5 -13.975
+5 24 43.466 7 -11.646 44.613 7 -5.873 28.977 4 -7.764 53.536 10.5 -7.047
+5 24 44.613 7 -5.873 45 7 0 29.742 4 -3.915 54 10.5 0
+5 24 53.536 10.5 7.047 54 10.5 0 45 7 0 56.51 12 7.439
+5 24 52.159 10.5 13.975 53.536 10.5 7.047 44.613 7 5.873 55.056 12 14.752
+5 24 49.891 10.5 20.666 52.159 10.5 13.975 43.466 7 11.646 52.662 12 21.814
+5 24 46.764 10.5 27 49.891 10.5 20.666 41.576 7 17.222 49.362 12 28.5
+5 24 42.844 10.5 32.875 46.764 10.5 27 38.97 7 22.5 45.224 12 34.702
+5 24 38.183 10.5 38.183 42.844 10.5 32.875 35.703 7 27.396 40.305 12 40.305
+5 24 32.875 10.5 42.844 38.183 10.5 38.183 31.82 7 31.82 34.702 12 45.224
+5 24 27 10.5 46.764 32.875 10.5 42.844 27.396 7 35.703 28.5 12 49.362
+5 24 20.666 10.5 49.891 27 10.5 46.764 22.5 7 38.97 21.814 12 52.662
+5 24 13.975 10.5 52.159 20.666 10.5 49.891 17.222 7 41.576 14.752 12 55.056
+5 24 7.047 10.5 53.536 13.975 10.5 52.159 11.646 7 43.466 7.439 12 56.51
+5 24 0 10.5 54 7.047 10.5 53.536 5.873 7 44.613 0 12 57
+5 24 -7.047 10.5 53.536 0 10.5 54 0 7 45 -7.439 12 56.51
+5 24 -13.975 10.5 52.159 -7.047 10.5 53.536 -5.873 7 44.613 -14.752 12 55.056
+5 24 -20.666 10.5 49.891 -13.975 10.5 52.159 -11.646 7 43.466 -21.814 12 52.662
+5 24 -27 10.5 46.764 -20.666 10.5 49.891 -17.222 7 41.576 -28.5 12 49.362
+5 24 -32.875 10.5 42.844 -27 10.5 46.764 -22.5 7 38.97 -34.702 12 45.224
+5 24 -38.183 10.5 38.183 -32.875 10.5 42.844 -27.396 7 35.703 -40.305 12 40.305
+5 24 -42.844 10.5 32.875 -38.183 10.5 38.183 -31.82 7 31.82 -45.224 12 34.702
+5 24 -46.764 10.5 27 -42.844 10.5 32.875 -35.703 7 27.396 -49.362 12 28.5
+5 24 -49.891 10.5 20.666 -46.764 10.5 27 -38.97 7 22.5 -52.662 12 21.814
+5 24 -52.159 10.5 13.975 -49.891 10.5 20.666 -41.576 7 17.222 -55.056 12 14.752
+5 24 -53.536 10.5 7.047 -52.159 10.5 13.975 -43.466 7 11.646 -56.51 12 7.439
+5 24 -54 10.5 0 -53.536 10.5 7.047 -44.613 7 5.873 -57 12 0
+5 24 -53.536 10.5 -7.047 -54 10.5 0 -45 7 0 -56.51 12 -7.439
+5 24 -52.159 10.5 -13.975 -53.536 10.5 -7.047 -44.613 7 -5.873 -55.056 12 -14.752
+5 24 -49.891 10.5 -20.666 -52.159 10.5 -13.975 -43.466 7 -11.646 -52.662 12 -21.814
+5 24 -46.764 10.5 -27 -49.891 10.5 -20.666 -41.576 7 -17.222 -49.362 12 -28.5
+5 24 -42.844 10.5 -32.875 -46.764 10.5 -27 -38.97 7 -22.5 -45.224 12 -34.702
+5 24 -38.183 10.5 -38.183 -42.844 10.5 -32.875 -35.703 7 -27.396 -40.305 12 -40.305
+5 24 -32.875 10.5 -42.844 -38.183 10.5 -38.183 -31.82 7 -31.82 -34.702 12 -45.224
+5 24 -27 10.5 -46.764 -32.875 10.5 -42.844 -27.396 7 -35.703 -28.5 12 -49.362
+5 24 -20.666 10.5 -49.891 -27 10.5 -46.764 -22.5 7 -38.97 -21.814 12 -52.662
+5 24 -13.975 10.5 -52.159 -20.666 10.5 -49.891 -17.222 7 -41.576 -14.752 12 -55.056
+5 24 -7.047 10.5 -53.536 -13.975 10.5 -52.159 -11.646 7 -43.466 -7.439 12 -56.51
+5 24 0 10.5 -54 -7.047 10.5 -53.536 -5.873 7 -44.613 0 12 -57
+5 24 7.047 10.5 -53.536 0 10.5 -54 0 7 -45 7.439 12 -56.51
+5 24 13.975 10.5 -52.159 7.047 10.5 -53.536 5.873 7 -44.613 14.752 12 -55.056
+5 24 20.666 10.5 -49.891 13.975 10.5 -52.159 11.646 7 -43.466 21.814 12 -52.662
+5 24 27 10.5 -46.764 20.666 10.5 -49.891 17.222 7 -41.576 28.5 12 -49.362
+5 24 32.875 10.5 -42.844 27 10.5 -46.764 22.5 7 -38.97 34.702 12 -45.224
+5 24 38.183 10.5 -38.183 32.875 10.5 -42.844 27.396 7 -35.703 40.305 12 -40.305
+5 24 42.844 10.5 -32.875 38.183 10.5 -38.183 31.82 7 -31.82 45.224 12 -34.702
+5 24 46.764 10.5 -27 42.844 10.5 -32.875 35.703 7 -27.396 49.362 12 -28.5
+5 24 49.891 10.5 -20.666 46.764 10.5 -27 38.97 7 -22.5 52.662 12 -21.814
+5 24 52.159 10.5 -13.975 49.891 10.5 -20.666 41.576 7 -17.222 55.056 12 -14.752
+5 24 53.536 10.5 -7.047 52.159 10.5 -13.975 43.466 7 -11.646 56.51 12 -7.439
+5 24 54 10.5 0 53.536 10.5 -7.047 44.613 7 -5.873 57 12 0
+
+0 FILE p/48/4-4con18.dat
+0 Hi-Res Cone 18 x 1.0
+0 Name: 48\4-4con18.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 18 1 0 17.8452 1 2.349 18.8366 0 2.4795 19 0 0
+4 16 17.8452 1 2.349 17.3862 1 4.6584 18.3521 0 4.9172 18.8366 0 2.4795
+4 16 17.3862 1 4.6584 16.6302 1 6.8886 17.5541 0 7.2713 18.3521 0 4.9172
+4 16 16.6302 1 6.8886 15.588 1 9 16.454 0 9.5 17.5541 0 7.2713
+4 16 15.588 1 9 14.2812 1 10.9584 15.0746 0 11.5672 16.454 0 9.5
+4 16 14.2812 1 10.9584 12.7278 1 12.7278 13.4349 0 13.4349 15.0746 0 11.5672
+4 16 12.7278 1 12.7278 10.9584 1 14.2812 11.5672 0 15.0746 13.4349 0 13.4349
+4 16 10.9584 1 14.2812 9 1 15.588 9.5 0 16.454 11.5672 0 15.0746
+4 16 9 1 15.588 6.8886 1 16.6302 7.2713 0 17.5541 9.5 0 16.454
+4 16 6.8886 1 16.6302 4.6584 1 17.3862 4.9172 0 18.3521 7.2713 0 17.5541
+4 16 4.6584 1 17.3862 2.349 1 17.8452 2.4795 0 18.8366 4.9172 0 18.3521
+4 16 2.349 1 17.8452 0 1 18 0 0 19 2.4795 0 18.8366
+4 16 0 1 18 -2.349 1 17.8452 -2.4795 0 18.8366 0 0 19
+4 16 -2.349 1 17.8452 -4.6584 1 17.3862 -4.9172 0 18.3521 -2.4795 0 18.8366
+4 16 -4.6584 1 17.3862 -6.8886 1 16.6302 -7.2713 0 17.5541 -4.9172 0 18.3521
+4 16 -6.8886 1 16.6302 -9 1 15.588 -9.5 0 16.454 -7.2713 0 17.5541
+4 16 -9 1 15.588 -10.9584 1 14.2812 -11.5672 0 15.0746 -9.5 0 16.454
+4 16 -10.9584 1 14.2812 -12.7278 1 12.7278 -13.4349 0 13.4349 -11.5672 0 15.0746
+4 16 -12.7278 1 12.7278 -14.2812 1 10.9584 -15.0746 0 11.5672 -13.4349 0 13.4349
+4 16 -14.2812 1 10.9584 -15.588 1 9 -16.454 0 9.5 -15.0746 0 11.5672
+4 16 -15.588 1 9 -16.6302 1 6.8886 -17.5541 0 7.2713 -16.454 0 9.5
+4 16 -16.6302 1 6.8886 -17.3862 1 4.6584 -18.3521 0 4.9172 -17.5541 0 7.2713
+4 16 -17.3862 1 4.6584 -17.8452 1 2.349 -18.8366 0 2.4795 -18.3521 0 4.9172
+4 16 -17.8452 1 2.349 -18 1 0 -19 0 0 -18.8366 0 2.4795
+4 16 -18 1 0 -17.8452 1 -2.349 -18.8366 0 -2.4795 -19 0 0
+4 16 -17.8452 1 -2.349 -17.3862 1 -4.6584 -18.3521 0 -4.9172 -18.8366 0 -2.4795
+4 16 -17.3862 1 -4.6584 -16.6302 1 -6.8886 -17.5541 0 -7.2713 -18.3521 0 -4.9172
+4 16 -16.6302 1 -6.8886 -15.588 1 -9 -16.454 0 -9.5 -17.5541 0 -7.2713
+4 16 -15.588 1 -9 -14.2812 1 -10.9584 -15.0746 0 -11.5672 -16.454 0 -9.5
+4 16 -14.2812 1 -10.9584 -12.7278 1 -12.7278 -13.4349 0 -13.4349 -15.0746 0 -11.5672
+4 16 -12.7278 1 -12.7278 -10.9584 1 -14.2812 -11.5672 0 -15.0746 -13.4349 0 -13.4349
+4 16 -10.9584 1 -14.2812 -9 1 -15.588 -9.5 0 -16.454 -11.5672 0 -15.0746
+4 16 -9 1 -15.588 -6.8886 1 -16.6302 -7.2713 0 -17.5541 -9.5 0 -16.454
+4 16 -6.8886 1 -16.6302 -4.6584 1 -17.3862 -4.9172 0 -18.3521 -7.2713 0 -17.5541
+4 16 -4.6584 1 -17.3862 -2.349 1 -17.8452 -2.4795 0 -18.8366 -4.9172 0 -18.3521
+4 16 -2.349 1 -17.8452 0 1 -18 0 0 -19 -2.4795 0 -18.8366
+4 16 0 1 -18 2.349 1 -17.8452 2.4795 0 -18.8366 0 0 -19
+4 16 2.349 1 -17.8452 4.6584 1 -17.3862 4.9172 0 -18.3521 2.4795 0 -18.8366
+4 16 4.6584 1 -17.3862 6.8886 1 -16.6302 7.2713 0 -17.5541 4.9172 0 -18.3521
+4 16 6.8886 1 -16.6302 9 1 -15.588 9.5 0 -16.454 7.2713 0 -17.5541
+4 16 9 1 -15.588 10.9584 1 -14.2812 11.5672 0 -15.0746 9.5 0 -16.454
+4 16 10.9584 1 -14.2812 12.7278 1 -12.7278 13.4349 0 -13.4349 11.5672 0 -15.0746
+4 16 12.7278 1 -12.7278 14.2812 1 -10.9584 15.0746 0 -11.5672 13.4349 0 -13.4349
+4 16 14.2812 1 -10.9584 15.588 1 -9 16.454 0 -9.5 15.0746 0 -11.5672
+4 16 15.588 1 -9 16.6302 1 -6.8886 17.5541 0 -7.2713 16.454 0 -9.5
+4 16 16.6302 1 -6.8886 17.3862 1 -4.6584 18.3521 0 -4.9172 17.5541 0 -7.2713
+4 16 17.3862 1 -4.6584 17.8452 1 -2.349 18.8366 0 -2.4795 18.3521 0 -4.9172
+4 16 17.8452 1 -2.349 18 1 0 19 0 0 18.8366 0 -2.4795
+
+0 conditional lines
+5 24 18 1 0 19 0 0 17.8452 1 -2.349 17.8452 1 2.349
+5 24 17.8452 1 2.349 18.8366 0 2.4795 18 1 0 17.3862 1 4.6584
+5 24 17.3862 1 4.6584 18.3521 0 4.9172 17.8452 1 2.349 16.6302 1 6.8886
+5 24 16.6302 1 6.8886 17.5541 0 7.2713 17.3862 1 4.6584 15.588 1 9
+5 24 15.588 1 9 16.454 0 9.5 16.6302 1 6.8886 14.2812 1 10.9584
+5 24 14.2812 1 10.9584 15.0746 0 11.5672 15.588 1 9 12.7278 1 12.7278
+5 24 12.7278 1 12.7278 13.4349 0 13.4349 14.2812 1 10.9584 10.9584 1 14.2812
+5 24 10.9584 1 14.2812 11.5672 0 15.0746 12.7278 1 12.7278 9 1 15.588
+5 24 9 1 15.588 9.5 0 16.454 10.9584 1 14.2812 6.8886 1 16.6302
+5 24 6.8886 1 16.6302 7.2713 0 17.5541 9 1 15.588 4.6584 1 17.3862
+5 24 4.6584 1 17.3862 4.9172 0 18.3521 6.8886 1 16.6302 2.349 1 17.8452
+5 24 2.349 1 17.8452 2.4795 0 18.8366 4.6584 1 17.3862 0 1 18
+5 24 0 1 18 0 0 19 2.349 1 17.8452 -2.349 1 17.8452
+5 24 -2.349 1 17.8452 -2.4795 0 18.8366 0 1 18 -4.6584 1 17.3862
+5 24 -4.6584 1 17.3862 -4.9172 0 18.3521 -2.349 1 17.8452 -6.8886 1 16.6302
+5 24 -6.8886 1 16.6302 -7.2713 0 17.5541 -4.6584 1 17.3862 -9 1 15.588
+5 24 -9 1 15.588 -9.5 0 16.454 -6.8886 1 16.6302 -10.9584 1 14.2812
+5 24 -10.9584 1 14.2812 -11.5672 0 15.0746 -9 1 15.588 -12.7278 1 12.7278
+5 24 -12.7278 1 12.7278 -13.4349 0 13.4349 -10.9584 1 14.2812 -14.2812 1 10.9584
+5 24 -14.2812 1 10.9584 -15.0746 0 11.5672 -12.7278 1 12.7278 -15.588 1 9
+5 24 -15.588 1 9 -16.454 0 9.5 -14.2812 1 10.9584 -16.6302 1 6.8886
+5 24 -16.6302 1 6.8886 -17.5541 0 7.2713 -15.588 1 9 -17.3862 1 4.6584
+5 24 -17.3862 1 4.6584 -18.3521 0 4.9172 -16.6302 1 6.8886 -17.8452 1 2.349
+5 24 -17.8452 1 2.349 -18.8366 0 2.4795 -17.3862 1 4.6584 -18 1 0
+5 24 -18 1 0 -19 0 0 -17.8452 1 2.349 -17.8452 1 -2.349
+5 24 -17.8452 1 -2.349 -18.8366 0 -2.4795 -18 1 0 -17.3862 1 -4.6584
+5 24 -17.3862 1 -4.6584 -18.3521 0 -4.9172 -17.8452 1 -2.349 -16.6302 1 -6.8886
+5 24 -16.6302 1 -6.8886 -17.5541 0 -7.2713 -17.3862 1 -4.6584 -15.588 1 -9
+5 24 -15.588 1 -9 -16.454 0 -9.5 -16.6302 1 -6.8886 -14.2812 1 -10.9584
+5 24 -14.2812 1 -10.9584 -15.0746 0 -11.5672 -15.588 1 -9 -12.7278 1 -12.7278
+5 24 -12.7278 1 -12.7278 -13.4349 0 -13.4349 -14.2812 1 -10.9584 -10.9584 1 -14.2812
+5 24 -10.9584 1 -14.2812 -11.5672 0 -15.0746 -12.7278 1 -12.7278 -9 1 -15.588
+5 24 -9 1 -15.588 -9.5 0 -16.454 -10.9584 1 -14.2812 -6.8886 1 -16.6302
+5 24 -6.8886 1 -16.6302 -7.2713 0 -17.5541 -9 1 -15.588 -4.6584 1 -17.3862
+5 24 -4.6584 1 -17.3862 -4.9172 0 -18.3521 -6.8886 1 -16.6302 -2.349 1 -17.8452
+5 24 -2.349 1 -17.8452 -2.4795 0 -18.8366 -4.6584 1 -17.3862 0 1 -18
+5 24 0 1 -18 0 0 -19 -2.349 1 -17.8452 2.349 1 -17.8452
+5 24 2.349 1 -17.8452 2.4795 0 -18.8366 0 1 -18 4.6584 1 -17.3862
+5 24 4.6584 1 -17.3862 4.9172 0 -18.3521 2.349 1 -17.8452 6.8886 1 -16.6302
+5 24 6.8886 1 -16.6302 7.2713 0 -17.5541 4.6584 1 -17.3862 9 1 -15.588
+5 24 9 1 -15.588 9.5 0 -16.454 6.8886 1 -16.6302 10.9584 1 -14.2812
+5 24 10.9584 1 -14.2812 11.5672 0 -15.0746 9 1 -15.588 12.7278 1 -12.7278
+5 24 12.7278 1 -12.7278 13.4349 0 -13.4349 10.9584 1 -14.2812 14.2812 1 -10.9584
+5 24 14.2812 1 -10.9584 15.0746 0 -11.5672 12.7278 1 -12.7278 15.588 1 -9
+5 24 15.588 1 -9 16.454 0 -9.5 14.2812 1 -10.9584 16.6302 1 -6.8886
+5 24 16.6302 1 -6.8886 17.5541 0 -7.2713 15.588 1 -9 17.3862 1 -4.6584
+5 24 17.3862 1 -4.6584 18.3521 0 -4.9172 16.6302 1 -6.8886 17.8452 1 -2.349
+5 24 17.8452 1 -2.349 18.8366 0 -2.4795 17.3862 1 -4.6584 18 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4con5.dat
+0 Hi-Res Cone  5 x 1.0
+0 Name: 48\4-4con5.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+4 16 5 1 0 4.957 1 0.6525 5.9484 0 0.783 6 0 0
+4 16 4.957 1 0.6525 4.8295 1 1.294 5.7954 0 1.5528 5.9484 0 0.783
+4 16 4.8295 1 1.294 4.6195 1 1.9135 5.5434 0 2.2962 5.7954 0 1.5528
+4 16 4.6195 1 1.9135 4.33 1 2.5 5.196 0 3 5.5434 0 2.2962
+4 16 4.33 1 2.5 3.967 1 3.044 4.7604 0 3.6528 5.196 0 3
+4 16 3.967 1 3.044 3.5355 1 3.5355 4.2426 0 4.2426 4.7604 0 3.6528
+4 16 3.5355 1 3.5355 3.044 1 3.967 3.6528 0 4.7604 4.2426 0 4.2426
+4 16 3.044 1 3.967 2.5 1 4.33 3 0 5.196 3.6528 0 4.7604
+4 16 2.5 1 4.33 1.9135 1 4.6195 2.2962 0 5.5434 3 0 5.196
+4 16 1.9135 1 4.6195 1.294 1 4.8295 1.5528 0 5.7954 2.2962 0 5.5434
+4 16 1.294 1 4.8295 0.6525 1 4.957 0.783 0 5.9484 1.5528 0 5.7954
+4 16 0.6525 1 4.957 0 1 5 0 0 6 0.783 0 5.9484
+4 16 0 1 5 -0.6525 1 4.957 -0.783 0 5.9484 0 0 6
+4 16 -0.6525 1 4.957 -1.294 1 4.8295 -1.5528 0 5.7954 -0.783 0 5.9484
+4 16 -1.294 1 4.8295 -1.9135 1 4.6195 -2.2962 0 5.5434 -1.5528 0 5.7954
+4 16 -1.9135 1 4.6195 -2.5 1 4.33 -3 0 5.196 -2.2962 0 5.5434
+4 16 -2.5 1 4.33 -3.044 1 3.967 -3.6528 0 4.7604 -3 0 5.196
+4 16 -3.044 1 3.967 -3.5355 1 3.5355 -4.2426 0 4.2426 -3.6528 0 4.7604
+4 16 -3.5355 1 3.5355 -3.967 1 3.044 -4.7604 0 3.6528 -4.2426 0 4.2426
+4 16 -3.967 1 3.044 -4.33 1 2.5 -5.196 0 3 -4.7604 0 3.6528
+4 16 -4.33 1 2.5 -4.6195 1 1.9135 -5.5434 0 2.2962 -5.196 0 3
+4 16 -4.6195 1 1.9135 -4.8295 1 1.294 -5.7954 0 1.5528 -5.5434 0 2.2962
+4 16 -4.8295 1 1.294 -4.957 1 0.6525 -5.9484 0 0.783 -5.7954 0 1.5528
+4 16 -4.957 1 0.6525 -5 1 0 -6 0 0 -5.9484 0 0.783
+4 16 -5 1 0 -4.957 1 -0.6525 -5.9484 0 -0.783 -6 0 0
+4 16 -4.957 1 -0.6525 -4.8295 1 -1.294 -5.7954 0 -1.5528 -5.9484 0 -0.783
+4 16 -4.8295 1 -1.294 -4.6195 1 -1.9135 -5.5434 0 -2.2962 -5.7954 0 -1.5528
+4 16 -4.6195 1 -1.9135 -4.33 1 -2.5 -5.196 0 -3 -5.5434 0 -2.2962
+4 16 -4.33 1 -2.5 -3.967 1 -3.044 -4.7604 0 -3.6528 -5.196 0 -3
+4 16 -3.967 1 -3.044 -3.5355 1 -3.5355 -4.2426 0 -4.2426 -4.7604 0 -3.6528
+4 16 -3.5355 1 -3.5355 -3.044 1 -3.967 -3.6528 0 -4.7604 -4.2426 0 -4.2426
+4 16 -3.044 1 -3.967 -2.5 1 -4.33 -3 0 -5.196 -3.6528 0 -4.7604
+4 16 -2.5 1 -4.33 -1.9135 1 -4.6195 -2.2962 0 -5.5434 -3 0 -5.196
+4 16 -1.9135 1 -4.6195 -1.294 1 -4.8295 -1.5528 0 -5.7954 -2.2962 0 -5.5434
+4 16 -1.294 1 -4.8295 -0.6525 1 -4.957 -0.783 0 -5.9484 -1.5528 0 -5.7954
+4 16 -0.6525 1 -4.957 0 1 -5 0 0 -6 -0.783 0 -5.9484
+4 16 0 1 -5 0.6525 1 -4.957 0.783 0 -5.9484 0 0 -6
+4 16 0.6525 1 -4.957 1.294 1 -4.8295 1.5528 0 -5.7954 0.783 0 -5.9484
+4 16 1.294 1 -4.8295 1.9135 1 -4.6195 2.2962 0 -5.5434 1.5528 0 -5.7954
+4 16 1.9135 1 -4.6195 2.5 1 -4.33 3 0 -5.196 2.2962 0 -5.5434
+4 16 2.5 1 -4.33 3.044 1 -3.967 3.6528 0 -4.7604 3 0 -5.196
+4 16 3.044 1 -3.967 3.5355 1 -3.5355 4.2426 0 -4.2426 3.6528 0 -4.7604
+4 16 3.5355 1 -3.5355 3.967 1 -3.044 4.7604 0 -3.6528 4.2426 0 -4.2426
+4 16 3.967 1 -3.044 4.33 1 -2.5 5.196 0 -3 4.7604 0 -3.6528
+4 16 4.33 1 -2.5 4.6195 1 -1.9135 5.5434 0 -2.2962 5.196 0 -3
+4 16 4.6195 1 -1.9135 4.8295 1 -1.294 5.7954 0 -1.5528 5.5434 0 -2.2962
+4 16 4.8295 1 -1.294 4.957 1 -0.6525 5.9484 0 -0.783 5.7954 0 -1.5528
+4 16 4.957 1 -0.6525 5 1 0 6 0 0 5.9484 0 -0.783
+
+0 conditional lines
+5 24 5 1 0 6 0 0 4.957 1 -0.6525 4.957 1 0.6525
+5 24 4.957 1 0.6525 5.9484 0 0.783 5 1 0 4.8295 1 1.294
+5 24 4.8295 1 1.294 5.7954 0 1.5528 4.957 1 0.6525 4.6195 1 1.9135
+5 24 4.6195 1 1.9135 5.5434 0 2.2962 4.8295 1 1.294 4.33 1 2.5
+5 24 4.33 1 2.5 5.196 0 3 4.6195 1 1.9135 3.967 1 3.044
+5 24 3.967 1 3.044 4.7604 0 3.6528 4.33 1 2.5 3.5355 1 3.5355
+5 24 3.5355 1 3.5355 4.2426 0 4.2426 3.967 1 3.044 3.044 1 3.967
+5 24 3.044 1 3.967 3.6528 0 4.7604 3.5355 1 3.5355 2.5 1 4.33
+5 24 2.5 1 4.33 3 0 5.196 3.044 1 3.967 1.9135 1 4.6195
+5 24 1.9135 1 4.6195 2.2962 0 5.5434 2.5 1 4.33 1.294 1 4.8295
+5 24 1.294 1 4.8295 1.5528 0 5.7954 1.9135 1 4.6195 0.6525 1 4.957
+5 24 0.6525 1 4.957 0.783 0 5.9484 1.294 1 4.8295 0 1 5
+5 24 0 1 5 0 0 6 0.6525 1 4.957 -0.6525 1 4.957
+5 24 -0.6525 1 4.957 -0.783 0 5.9484 0 1 5 -1.294 1 4.8295
+5 24 -1.294 1 4.8295 -1.5528 0 5.7954 -0.6525 1 4.957 -1.9135 1 4.6195
+5 24 -1.9135 1 4.6195 -2.2962 0 5.5434 -1.294 1 4.8295 -2.5 1 4.33
+5 24 -2.5 1 4.33 -3 0 5.196 -1.9135 1 4.6195 -3.044 1 3.967
+5 24 -3.044 1 3.967 -3.6528 0 4.7604 -2.5 1 4.33 -3.5355 1 3.5355
+5 24 -3.5355 1 3.5355 -4.2426 0 4.2426 -3.044 1 3.967 -3.967 1 3.044
+5 24 -3.967 1 3.044 -4.7604 0 3.6528 -3.5355 1 3.5355 -4.33 1 2.5
+5 24 -4.33 1 2.5 -5.196 0 3 -3.967 1 3.044 -4.6195 1 1.9135
+5 24 -4.6195 1 1.9135 -5.5434 0 2.2962 -4.33 1 2.5 -4.8295 1 1.294
+5 24 -4.8295 1 1.294 -5.7954 0 1.5528 -4.6195 1 1.9135 -4.957 1 0.6525
+5 24 -4.957 1 0.6525 -5.9484 0 0.783 -4.8295 1 1.294 -5 1 0
+5 24 -5 1 0 -6 0 0 -4.957 1 0.6525 -4.957 1 -0.6525
+5 24 -4.957 1 -0.6525 -5.9484 0 -0.783 -5 1 0 -4.8295 1 -1.294
+5 24 -4.8295 1 -1.294 -5.7954 0 -1.5528 -4.957 1 -0.6525 -4.6195 1 -1.9135
+5 24 -4.6195 1 -1.9135 -5.5434 0 -2.2962 -4.8295 1 -1.294 -4.33 1 -2.5
+5 24 -4.33 1 -2.5 -5.196 0 -3 -4.6195 1 -1.9135 -3.967 1 -3.044
+5 24 -3.967 1 -3.044 -4.7604 0 -3.6528 -4.33 1 -2.5 -3.5355 1 -3.5355
+5 24 -3.5355 1 -3.5355 -4.2426 0 -4.2426 -3.967 1 -3.044 -3.044 1 -3.967
+5 24 -3.044 1 -3.967 -3.6528 0 -4.7604 -3.5355 1 -3.5355 -2.5 1 -4.33
+5 24 -2.5 1 -4.33 -3 0 -5.196 -3.044 1 -3.967 -1.9135 1 -4.6195
+5 24 -1.9135 1 -4.6195 -2.2962 0 -5.5434 -2.5 1 -4.33 -1.294 1 -4.8295
+5 24 -1.294 1 -4.8295 -1.5528 0 -5.7954 -1.9135 1 -4.6195 -0.6525 1 -4.957
+5 24 -0.6525 1 -4.957 -0.783 0 -5.9484 -1.294 1 -4.8295 0 1 -5
+5 24 0 1 -5 0 0 -6 -0.6525 1 -4.957 0.6525 1 -4.957
+5 24 0.6525 1 -4.957 0.783 0 -5.9484 0 1 -5 1.294 1 -4.8295
+5 24 1.294 1 -4.8295 1.5528 0 -5.7954 0.6525 1 -4.957 1.9135 1 -4.6195
+5 24 1.9135 1 -4.6195 2.2962 0 -5.5434 1.294 1 -4.8295 2.5 1 -4.33
+5 24 2.5 1 -4.33 3 0 -5.196 1.9135 1 -4.6195 3.044 1 -3.967
+5 24 3.044 1 -3.967 3.6528 0 -4.7604 2.5 1 -4.33 3.5355 1 -3.5355
+5 24 3.5355 1 -3.5355 4.2426 0 -4.2426 3.044 1 -3.967 3.967 1 -3.044
+5 24 3.967 1 -3.044 4.7604 0 -3.6528 3.5355 1 -3.5355 4.33 1 -2.5
+5 24 4.33 1 -2.5 5.196 0 -3 3.967 1 -3.044 4.6195 1 -1.9135
+5 24 4.6195 1 -1.9135 5.5434 0 -2.2962 4.33 1 -2.5 4.8295 1 -1.294
+5 24 4.8295 1 -1.294 5.7954 0 -1.5528 4.6195 1 -1.9135 4.957 1 -0.6525
+5 24 4.957 1 -0.6525 5.9484 0 -0.783 4.8295 1 -1.294 5 1 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4con2.dat
+0 Hi-Res Cone  2 x 1.0
+0 Name: 48\4-4con2.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 1.9828 1 0.261 2.9742 0 0.3915 3 0 0 2 1 0
+4 16 1.9318 1 0.5176 2.8977 0 0.7764 2.9742 0 0.3915 1.9828 1 0.261
+4 16 1.8478 1 0.7654 2.7717 0 1.1481 2.8977 0 0.7764 1.9318 1 0.5176
+4 16 1.732 1 1 2.598 0 1.5 2.7717 0 1.1481 1.8478 1 0.7654
+4 16 1.5868 1 1.2176 2.3802 0 1.8264 2.598 0 1.5 1.732 1 1
+4 16 1.4142 1 1.4142 2.1213 0 2.1213 2.3802 0 1.8264 1.5868 1 1.2176
+4 16 1.2176 1 1.5868 1.8264 0 2.3802 2.1213 0 2.1213 1.4142 1 1.4142
+4 16 1 1 1.732 1.5 0 2.598 1.8264 0 2.3802 1.2176 1 1.5868
+4 16 0.7654 1 1.8478 1.1481 0 2.7717 1.5 0 2.598 1 1 1.732
+4 16 0.5176 1 1.9318 0.7764 0 2.8977 1.1481 0 2.7717 0.7654 1 1.8478
+4 16 0.261 1 1.9828 0.3915 0 2.9742 0.7764 0 2.8977 0.5176 1 1.9318
+4 16 0 1 2 0 0 3 0.3915 0 2.9742 0.261 1 1.9828
+4 16 -0.261 1 1.9828 -0.3915 0 2.9742 0 0 3 0 1 2
+4 16 -0.5176 1 1.9318 -0.7764 0 2.8977 -0.3915 0 2.9742 -0.261 1 1.9828
+4 16 -0.7654 1 1.8478 -1.1481 0 2.7717 -0.7764 0 2.8977 -0.5176 1 1.9318
+4 16 -1 1 1.732 -1.5 0 2.598 -1.1481 0 2.7717 -0.7654 1 1.8478
+4 16 -1.2176 1 1.5868 -1.8264 0 2.3802 -1.5 0 2.598 -1 1 1.732
+4 16 -1.4142 1 1.4142 -2.1213 0 2.1213 -1.8264 0 2.3802 -1.2176 1 1.5868
+4 16 -1.5868 1 1.2176 -2.3802 0 1.8264 -2.1213 0 2.1213 -1.4142 1 1.4142
+4 16 -1.732 1 1 -2.598 0 1.5 -2.3802 0 1.8264 -1.5868 1 1.2176
+4 16 -1.8478 1 0.7654 -2.7717 0 1.1481 -2.598 0 1.5 -1.732 1 1
+4 16 -1.9318 1 0.5176 -2.8977 0 0.7764 -2.7717 0 1.1481 -1.8478 1 0.7654
+4 16 -1.9828 1 0.261 -2.9742 0 0.3915 -2.8977 0 0.7764 -1.9318 1 0.5176
+4 16 -2 1 0 -3 0 0 -2.9742 0 0.3915 -1.9828 1 0.261
+4 16 -1.9828 1 -0.261 -2.9742 0 -0.3915 -3 0 0 -2 1 0
+4 16 -1.9318 1 -0.5176 -2.8977 0 -0.7764 -2.9742 0 -0.3915 -1.9828 1 -0.261
+4 16 -1.8478 1 -0.7654 -2.7717 0 -1.1481 -2.8977 0 -0.7764 -1.9318 1 -0.5176
+4 16 -1.732 1 -1 -2.598 0 -1.5 -2.7717 0 -1.1481 -1.8478 1 -0.7654
+4 16 -1.5868 1 -1.2176 -2.3802 0 -1.8264 -2.598 0 -1.5 -1.732 1 -1
+4 16 -1.4142 1 -1.4142 -2.1213 0 -2.1213 -2.3802 0 -1.8264 -1.5868 1 -1.2176
+4 16 -1.2176 1 -1.5868 -1.8264 0 -2.3802 -2.1213 0 -2.1213 -1.4142 1 -1.4142
+4 16 -1 1 -1.732 -1.5 0 -2.598 -1.8264 0 -2.3802 -1.2176 1 -1.5868
+4 16 -0.7654 1 -1.8478 -1.1481 0 -2.7717 -1.5 0 -2.598 -1 1 -1.732
+4 16 -0.5176 1 -1.9318 -0.7764 0 -2.8977 -1.1481 0 -2.7717 -0.7654 1 -1.8478
+4 16 -0.261 1 -1.9828 -0.3915 0 -2.9742 -0.7764 0 -2.8977 -0.5176 1 -1.9318
+4 16 0 1 -2 0 0 -3 -0.3915 0 -2.9742 -0.261 1 -1.9828
+4 16 0.261 1 -1.9828 0.3915 0 -2.9742 0 0 -3 0 1 -2
+4 16 0.5176 1 -1.9318 0.7764 0 -2.8977 0.3915 0 -2.9742 0.261 1 -1.9828
+4 16 0.7654 1 -1.8478 1.1481 0 -2.7717 0.7764 0 -2.8977 0.5176 1 -1.9318
+4 16 1 1 -1.732 1.5 0 -2.598 1.1481 0 -2.7717 0.7654 1 -1.8478
+4 16 1.2176 1 -1.5868 1.8264 0 -2.3802 1.5 0 -2.598 1 1 -1.732
+4 16 1.4142 1 -1.4142 2.1213 0 -2.1213 1.8264 0 -2.3802 1.2176 1 -1.5868
+4 16 1.5868 1 -1.2176 2.3802 0 -1.8264 2.1213 0 -2.1213 1.4142 1 -1.4142
+4 16 1.732 1 -1 2.598 0 -1.5 2.3802 0 -1.8264 1.5868 1 -1.2176
+4 16 1.8478 1 -0.7654 2.7717 0 -1.1481 2.598 0 -1.5 1.732 1 -1
+4 16 1.9318 1 -0.5176 2.8977 0 -0.7764 2.7717 0 -1.1481 1.8478 1 -0.7654
+4 16 1.9828 1 -0.261 2.9742 0 -0.3915 2.8977 0 -0.7764 1.9318 1 -0.5176
+4 16 2 1 0 3 0 0 2.9742 0 -0.3915 1.9828 1 -0.261
+
+0 conditional lines
+5 24 2 1 0 3 0 0 1.9828 1 -0.261 1.9828 1 0.261
+5 24 1.9828 1 0.261 2.9742 0 0.3915 2 1 0 1.9318 1 0.5176
+5 24 1.9318 1 0.5176 2.8977 0 0.7764 1.9828 1 0.261 1.8478 1 0.7654
+5 24 1.8478 1 0.7654 2.7717 0 1.1481 1.9318 1 0.5176 1.732 1 1
+5 24 1.732 1 1 2.598 0 1.5 1.8478 1 0.7654 1.5868 1 1.2176
+5 24 1.5868 1 1.2176 2.3802 0 1.8264 1.732 1 1 1.4142 1 1.4142
+5 24 1.4142 1 1.4142 2.1213 0 2.1213 1.5868 1 1.2176 1.2176 1 1.5868
+5 24 1.2176 1 1.5868 1.8264 0 2.3802 1.4142 1 1.4142 1 1 1.732
+5 24 1 1 1.732 1.5 0 2.598 1.2176 1 1.5868 0.7654 1 1.8478
+5 24 0.7654 1 1.8478 1.1481 0 2.7717 1 1 1.732 0.5176 1 1.9318
+5 24 0.5176 1 1.9318 0.7764 0 2.8977 0.7654 1 1.8478 0.261 1 1.9828
+5 24 0.261 1 1.9828 0.3915 0 2.9742 0.5176 1 1.9318 0 1 2
+5 24 0 1 2 0 0 3 0.261 1 1.9828 -0.261 1 1.9828
+5 24 -0.261 1 1.9828 -0.3915 0 2.9742 0 1 2 -0.5176 1 1.9318
+5 24 -0.5176 1 1.9318 -0.7764 0 2.8977 -0.261 1 1.9828 -0.7654 1 1.8478
+5 24 -0.7654 1 1.8478 -1.1481 0 2.7717 -0.5176 1 1.9318 -1 1 1.732
+5 24 -1 1 1.732 -1.5 0 2.598 -0.7654 1 1.8478 -1.2176 1 1.5868
+5 24 -1.2176 1 1.5868 -1.8264 0 2.3802 -1 1 1.732 -1.4142 1 1.4142
+5 24 -1.4142 1 1.4142 -2.1213 0 2.1213 -1.2176 1 1.5868 -1.5868 1 1.2176
+5 24 -1.5868 1 1.2176 -2.3802 0 1.8264 -1.4142 1 1.4142 -1.732 1 1
+5 24 -1.732 1 1 -2.598 0 1.5 -1.5868 1 1.2176 -1.8478 1 0.7654
+5 24 -1.8478 1 0.7654 -2.7717 0 1.1481 -1.732 1 1 -1.9318 1 0.5176
+5 24 -1.9318 1 0.5176 -2.8977 0 0.7764 -1.8478 1 0.7654 -1.9828 1 0.261
+5 24 -1.9828 1 0.261 -2.9742 0 0.3915 -1.9318 1 0.5176 -2 1 0
+5 24 -2 1 0 -3 0 0 -1.9828 1 0.261 -1.9828 1 -0.261
+5 24 -1.9828 1 -0.261 -2.9742 0 -0.3915 -2 1 0 -1.9318 1 -0.5176
+5 24 -1.9318 1 -0.5176 -2.8977 0 -0.7764 -1.9828 1 -0.261 -1.8478 1 -0.7654
+5 24 -1.8478 1 -0.7654 -2.7717 0 -1.1481 -1.9318 1 -0.5176 -1.732 1 -1
+5 24 -1.732 1 -1 -2.598 0 -1.5 -1.8478 1 -0.7654 -1.5868 1 -1.2176
+5 24 -1.5868 1 -1.2176 -2.3802 0 -1.8264 -1.732 1 -1 -1.4142 1 -1.4142
+5 24 -1.4142 1 -1.4142 -2.1213 0 -2.1213 -1.5868 1 -1.2176 -1.2176 1 -1.5868
+5 24 -1.2176 1 -1.5868 -1.8264 0 -2.3802 -1.4142 1 -1.4142 -1 1 -1.732
+5 24 -1 1 -1.732 -1.5 0 -2.598 -1.2176 1 -1.5868 -0.7654 1 -1.8478
+5 24 -0.7654 1 -1.8478 -1.1481 0 -2.7717 -1 1 -1.732 -0.5176 1 -1.9318
+5 24 -0.5176 1 -1.9318 -0.7764 0 -2.8977 -0.7654 1 -1.8478 -0.261 1 -1.9828
+5 24 -0.261 1 -1.9828 -0.3915 0 -2.9742 -0.5176 1 -1.9318 0 1 -2
+5 24 0 1 -2 0 0 -3 -0.261 1 -1.9828 0.261 1 -1.9828
+5 24 0.261 1 -1.9828 0.3915 0 -2.9742 0 1 -2 0.5176 1 -1.9318
+5 24 0.5176 1 -1.9318 0.7764 0 -2.8977 0.261 1 -1.9828 0.7654 1 -1.8478
+5 24 0.7654 1 -1.8478 1.1481 0 -2.7717 0.5176 1 -1.9318 1 1 -1.732
+5 24 1 1 -1.732 1.5 0 -2.598 0.7654 1 -1.8478 1.2176 1 -1.5868
+5 24 1.2176 1 -1.5868 1.8264 0 -2.3802 1 1 -1.732 1.4142 1 -1.4142
+5 24 1.4142 1 -1.4142 2.1213 0 -2.1213 1.2176 1 -1.5868 1.5868 1 -1.2176
+5 24 1.5868 1 -1.2176 2.3802 0 -1.8264 1.4142 1 -1.4142 1.732 1 -1
+5 24 1.732 1 -1 2.598 0 -1.5 1.5868 1 -1.2176 1.8478 1 -0.7654
+5 24 1.8478 1 -0.7654 2.7717 0 -1.1481 1.732 1 -1 1.9318 1 -0.5176
+5 24 1.9318 1 -0.5176 2.8977 0 -0.7764 1.8478 1 -0.7654 1.9828 1 -0.261
+5 24 1.9828 1 -0.261 2.9742 0 -0.3915 1.9318 1 -0.5176 2 1 0
+
+0 FILE p/48/4-4rin29.dat
+0 Hi-Res Ring 29 x 1.0
+0 Name: 48\4-4rin29.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 29 0 0 30 0 0 29.742 0 3.915 28.7506 0 3.7845
+4 16 28.7506 0 3.7845 29.742 0 3.915 28.977 0 7.764 28.0111 0 7.5052
+4 16 28.0111 0 7.5052 28.977 0 7.764 27.717 0 11.481 26.7931 0 11.0983
+4 16 26.7931 0 11.0983 27.717 0 11.481 25.98 0 15 25.114 0 14.5
+4 16 25.114 0 14.5 25.98 0 15 23.802 0 18.264 23.0086 0 17.6552
+4 16 23.0086 0 17.6552 23.802 0 18.264 21.213 0 21.213 20.5059 0 20.5059
+4 16 20.5059 0 20.5059 21.213 0 21.213 18.264 0 23.802 17.6552 0 23.0086
+4 16 17.6552 0 23.0086 18.264 0 23.802 15 0 25.98 14.5 0 25.114
+4 16 14.5 0 25.114 15 0 25.98 11.481 0 27.717 11.0983 0 26.7931
+4 16 11.0983 0 26.7931 11.481 0 27.717 7.764 0 28.977 7.5052 0 28.0111
+4 16 7.5052 0 28.0111 7.764 0 28.977 3.915 0 29.742 3.7845 0 28.7506
+4 16 3.7845 0 28.7506 3.915 0 29.742 0 0 30 0 0 29
+4 16 0 0 29 0 0 30 -3.915 0 29.742 -3.7845 0 28.7506
+4 16 -3.7845 0 28.7506 -3.915 0 29.742 -7.764 0 28.977 -7.5052 0 28.0111
+4 16 -7.5052 0 28.0111 -7.764 0 28.977 -11.481 0 27.717 -11.0983 0 26.7931
+4 16 -11.0983 0 26.7931 -11.481 0 27.717 -15 0 25.98 -14.5 0 25.114
+4 16 -14.5 0 25.114 -15 0 25.98 -18.264 0 23.802 -17.6552 0 23.0086
+4 16 -17.6552 0 23.0086 -18.264 0 23.802 -21.213 0 21.213 -20.5059 0 20.5059
+4 16 -20.5059 0 20.5059 -21.213 0 21.213 -23.802 0 18.264 -23.0086 0 17.6552
+4 16 -23.0086 0 17.6552 -23.802 0 18.264 -25.98 0 15 -25.114 0 14.5
+4 16 -25.114 0 14.5 -25.98 0 15 -27.717 0 11.481 -26.7931 0 11.0983
+4 16 -26.7931 0 11.0983 -27.717 0 11.481 -28.977 0 7.764 -28.0111 0 7.5052
+4 16 -28.0111 0 7.5052 -28.977 0 7.764 -29.742 0 3.915 -28.7506 0 3.7845
+4 16 -28.7506 0 3.7845 -29.742 0 3.915 -30 0 0 -29 0 0
+4 16 -29 0 0 -30 0 0 -29.742 0 -3.915 -28.7506 0 -3.7845
+4 16 -28.7506 0 -3.7845 -29.742 0 -3.915 -28.977 0 -7.764 -28.0111 0 -7.5052
+4 16 -28.0111 0 -7.5052 -28.977 0 -7.764 -27.717 0 -11.481 -26.7931 0 -11.0983
+4 16 -26.7931 0 -11.0983 -27.717 0 -11.481 -25.98 0 -15 -25.114 0 -14.5
+4 16 -25.114 0 -14.5 -25.98 0 -15 -23.802 0 -18.264 -23.0086 0 -17.6552
+4 16 -23.0086 0 -17.6552 -23.802 0 -18.264 -21.213 0 -21.213 -20.5059 0 -20.5059
+4 16 -20.5059 0 -20.5059 -21.213 0 -21.213 -18.264 0 -23.802 -17.6552 0 -23.0086
+4 16 -17.6552 0 -23.0086 -18.264 0 -23.802 -15 0 -25.98 -14.5 0 -25.114
+4 16 -14.5 0 -25.114 -15 0 -25.98 -11.481 0 -27.717 -11.0983 0 -26.7931
+4 16 -11.0983 0 -26.7931 -11.481 0 -27.717 -7.764 0 -28.977 -7.5052 0 -28.0111
+4 16 -7.5052 0 -28.0111 -7.764 0 -28.977 -3.915 0 -29.742 -3.7845 0 -28.7506
+4 16 -3.7845 0 -28.7506 -3.915 0 -29.742 0 0 -30 0 0 -29
+4 16 0 0 -29 0 0 -30 3.915 0 -29.742 3.7845 0 -28.7506
+4 16 3.7845 0 -28.7506 3.915 0 -29.742 7.764 0 -28.977 7.5052 0 -28.0111
+4 16 7.5052 0 -28.0111 7.764 0 -28.977 11.481 0 -27.717 11.0983 0 -26.7931
+4 16 11.0983 0 -26.7931 11.481 0 -27.717 15 0 -25.98 14.5 0 -25.114
+4 16 14.5 0 -25.114 15 0 -25.98 18.264 0 -23.802 17.6552 0 -23.0086
+4 16 17.6552 0 -23.0086 18.264 0 -23.802 21.213 0 -21.213 20.5059 0 -20.5059
+4 16 20.5059 0 -20.5059 21.213 0 -21.213 23.802 0 -18.264 23.0086 0 -17.6552
+4 16 23.0086 0 -17.6552 23.802 0 -18.264 25.98 0 -15 25.114 0 -14.5
+4 16 25.114 0 -14.5 25.98 0 -15 27.717 0 -11.481 26.7931 0 -11.0983
+4 16 26.7931 0 -11.0983 27.717 0 -11.481 28.977 0 -7.764 28.0111 0 -7.5052
+4 16 28.0111 0 -7.5052 28.977 0 -7.764 29.742 0 -3.915 28.7506 0 -3.7845
+4 16 28.7506 0 -3.7845 29.742 0 -3.915 30 0 0 29 0 0
+
+0 end of file 
+
+
+
+0 FILE p/48/4-4rin37.dat
+0 Hi-Res Ring 37 x 1.0
+0 Name: 48\4-4rin37.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 38 0 0 37.6732 0 4.959 36.6818 0 4.8285 37 0 0
+4 16 37.6732 0 4.959 36.7042 0 9.8344 35.7383 0 9.5756 36.6818 0 4.8285
+4 16 36.7042 0 9.8344 35.1082 0 14.5426 34.1843 0 14.1599 35.7383 0 9.5756
+4 16 35.1082 0 14.5426 32.908 0 19 32.042 0 18.5 34.1843 0 14.1599
+4 16 32.908 0 19 30.1492 0 23.1344 29.3558 0 22.5256 32.042 0 18.5
+4 16 30.1492 0 23.1344 26.8698 0 26.8698 26.1627 0 26.1627 29.3558 0 22.5256
+4 16 26.8698 0 26.8698 23.1344 0 30.1492 22.5256 0 29.3558 26.1627 0 26.1627
+4 16 23.1344 0 30.1492 19 0 32.908 18.5 0 32.042 22.5256 0 29.3558
+4 16 19 0 32.908 14.5426 0 35.1082 14.1599 0 34.1843 18.5 0 32.042
+4 16 14.5426 0 35.1082 9.8344 0 36.7042 9.5756 0 35.7383 14.1599 0 34.1843
+4 16 9.8344 0 36.7042 4.959 0 37.6732 4.8285 0 36.6818 9.5756 0 35.7383
+4 16 4.959 0 37.6732 0 0 38 0 0 37 4.8285 0 36.6818
+4 16 0 0 38 -4.959 0 37.6732 -4.8285 0 36.6818 0 0 37
+4 16 -4.959 0 37.6732 -9.8344 0 36.7042 -9.5756 0 35.7383 -4.8285 0 36.6818
+4 16 -9.8344 0 36.7042 -14.5426 0 35.1082 -14.1599 0 34.1843 -9.5756 0 35.7383
+4 16 -14.5426 0 35.1082 -19 0 32.908 -18.5 0 32.042 -14.1599 0 34.1843
+4 16 -19 0 32.908 -23.1344 0 30.1492 -22.5256 0 29.3558 -18.5 0 32.042
+4 16 -23.1344 0 30.1492 -26.8698 0 26.8698 -26.1627 0 26.1627 -22.5256 0 29.3558
+4 16 -26.8698 0 26.8698 -30.1492 0 23.1344 -29.3558 0 22.5256 -26.1627 0 26.1627
+4 16 -30.1492 0 23.1344 -32.908 0 19 -32.042 0 18.5 -29.3558 0 22.5256
+4 16 -32.908 0 19 -35.1082 0 14.5426 -34.1843 0 14.1599 -32.042 0 18.5
+4 16 -35.1082 0 14.5426 -36.7042 0 9.8344 -35.7383 0 9.5756 -34.1843 0 14.1599
+4 16 -36.7042 0 9.8344 -37.6732 0 4.959 -36.6818 0 4.8285 -35.7383 0 9.5756
+4 16 -37.6732 0 4.959 -38 0 0 -37 0 0 -36.6818 0 4.8285
+4 16 -38 0 0 -37.6732 0 -4.959 -36.6818 0 -4.8285 -37 0 0
+4 16 -37.6732 0 -4.959 -36.7042 0 -9.8344 -35.7383 0 -9.5756 -36.6818 0 -4.8285
+4 16 -36.7042 0 -9.8344 -35.1082 0 -14.5426 -34.1843 0 -14.1599 -35.7383 0 -9.5756
+4 16 -35.1082 0 -14.5426 -32.908 0 -19 -32.042 0 -18.5 -34.1843 0 -14.1599
+4 16 -32.908 0 -19 -30.1492 0 -23.1344 -29.3558 0 -22.5256 -32.042 0 -18.5
+4 16 -30.1492 0 -23.1344 -26.8698 0 -26.8698 -26.1627 0 -26.1627 -29.3558 0 -22.5256
+4 16 -26.8698 0 -26.8698 -23.1344 0 -30.1492 -22.5256 0 -29.3558 -26.1627 0 -26.1627
+4 16 -23.1344 0 -30.1492 -19 0 -32.908 -18.5 0 -32.042 -22.5256 0 -29.3558
+4 16 -19 0 -32.908 -14.5426 0 -35.1082 -14.1599 0 -34.1843 -18.5 0 -32.042
+4 16 -14.5426 0 -35.1082 -9.8344 0 -36.7042 -9.5756 0 -35.7383 -14.1599 0 -34.1843
+4 16 -9.8344 0 -36.7042 -4.959 0 -37.6732 -4.8285 0 -36.6818 -9.5756 0 -35.7383
+4 16 -4.959 0 -37.6732 0 0 -38 0 0 -37 -4.8285 0 -36.6818
+4 16 0 0 -38 4.959 0 -37.6732 4.8285 0 -36.6818 0 0 -37
+4 16 4.959 0 -37.6732 9.8344 0 -36.7042 9.5756 0 -35.7383 4.8285 0 -36.6818
+4 16 9.8344 0 -36.7042 14.5426 0 -35.1082 14.1599 0 -34.1843 9.5756 0 -35.7383
+4 16 14.5426 0 -35.1082 19 0 -32.908 18.5 0 -32.042 14.1599 0 -34.1843
+4 16 19 0 -32.908 23.1344 0 -30.1492 22.5256 0 -29.3558 18.5 0 -32.042
+4 16 23.1344 0 -30.1492 26.8698 0 -26.8698 26.1627 0 -26.1627 22.5256 0 -29.3558
+4 16 26.8698 0 -26.8698 30.1492 0 -23.1344 29.3558 0 -22.5256 26.1627 0 -26.1627
+4 16 30.1492 0 -23.1344 32.908 0 -19 32.042 0 -18.5 29.3558 0 -22.5256
+4 16 32.908 0 -19 35.1082 0 -14.5426 34.1843 0 -14.1599 32.042 0 -18.5
+4 16 35.1082 0 -14.5426 36.7042 0 -9.8344 35.7383 0 -9.5756 34.1843 0 -14.1599
+4 16 36.7042 0 -9.8344 37.6732 0 -4.959 36.6818 0 -4.8285 35.7383 0 -9.5756
+4 16 37.6732 0 -4.959 38 0 0 37 0 0 36.6818 0 -4.8285
+
+0 FILE p/48/1-4chrd.dat
+0 Hi-Res Chord 0.25
+0 Name: 48\1-4chrd.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-08-02 [MMR1988] Re-creation with PrimGen2 and Rectifier
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 0.9914 0 0.1305 0.1305 0 0.9914 0 0 1 1 0 0
+4 16 0.9659 0 0.2588 0.2588 0 0.9659 0.1305 0 0.9914 0.9914 0 0.1305
+4 16 0.9239 0 0.3827 0.3827 0 0.9239 0.2588 0 0.9659 0.9659 0 0.2588
+4 16 0.866 0 0.5 0.5 0 0.866 0.3827 0 0.9239 0.9239 0 0.3827
+4 16 0.7934 0 0.6088 0.6088 0 0.7934 0.5 0 0.866 0.866 0 0.5
+3 16 0.7071 0 0.7071 0.6088 0 0.7934 0.7934 0 0.6088 
+
+0 FILE p/48/4-4rin19.dat
+0 Hi-Res Ring 19 x 1.0
+0 Name: 48\4-4rin19.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 20 0 0 19.828 0 2.61 18.8366 0 2.4795 19 0 0
+4 16 19.828 0 2.61 19.318 0 5.176 18.3521 0 4.9172 18.8366 0 2.4795
+4 16 19.318 0 5.176 18.478 0 7.654 17.5541 0 7.2713 18.3521 0 4.9172
+4 16 18.478 0 7.654 17.32 0 10 16.454 0 9.5 17.5541 0 7.2713
+4 16 17.32 0 10 15.868 0 12.176 15.0746 0 11.5672 16.454 0 9.5
+4 16 15.868 0 12.176 14.142 0 14.142 13.4349 0 13.4349 15.0746 0 11.5672
+4 16 14.142 0 14.142 12.176 0 15.868 11.5672 0 15.0746 13.4349 0 13.4349
+4 16 12.176 0 15.868 10 0 17.32 9.5 0 16.454 11.5672 0 15.0746
+4 16 10 0 17.32 7.654 0 18.478 7.2713 0 17.5541 9.5 0 16.454
+4 16 7.654 0 18.478 5.176 0 19.318 4.9172 0 18.3521 7.2713 0 17.5541
+4 16 5.176 0 19.318 2.61 0 19.828 2.4795 0 18.8366 4.9172 0 18.3521
+4 16 2.61 0 19.828 0 0 20 0 0 19 2.4795 0 18.8366
+4 16 0 0 20 -2.61 0 19.828 -2.4795 0 18.8366 0 0 19
+4 16 -2.61 0 19.828 -5.176 0 19.318 -4.9172 0 18.3521 -2.4795 0 18.8366
+4 16 -5.176 0 19.318 -7.654 0 18.478 -7.2713 0 17.5541 -4.9172 0 18.3521
+4 16 -7.654 0 18.478 -10 0 17.32 -9.5 0 16.454 -7.2713 0 17.5541
+4 16 -10 0 17.32 -12.176 0 15.868 -11.5672 0 15.0746 -9.5 0 16.454
+4 16 -12.176 0 15.868 -14.142 0 14.142 -13.4349 0 13.4349 -11.5672 0 15.0746
+4 16 -14.142 0 14.142 -15.868 0 12.176 -15.0746 0 11.5672 -13.4349 0 13.4349
+4 16 -15.868 0 12.176 -17.32 0 10 -16.454 0 9.5 -15.0746 0 11.5672
+4 16 -17.32 0 10 -18.478 0 7.654 -17.5541 0 7.2713 -16.454 0 9.5
+4 16 -18.478 0 7.654 -19.318 0 5.176 -18.3521 0 4.9172 -17.5541 0 7.2713
+4 16 -19.318 0 5.176 -19.828 0 2.61 -18.8366 0 2.4795 -18.3521 0 4.9172
+4 16 -19.828 0 2.61 -20 0 0 -19 0 0 -18.8366 0 2.4795
+4 16 -20 0 0 -19.828 0 -2.61 -18.8366 0 -2.4795 -19 0 0
+4 16 -19.828 0 -2.61 -19.318 0 -5.176 -18.3521 0 -4.9172 -18.8366 0 -2.4795
+4 16 -19.318 0 -5.176 -18.478 0 -7.654 -17.5541 0 -7.2713 -18.3521 0 -4.9172
+4 16 -18.478 0 -7.654 -17.32 0 -10 -16.454 0 -9.5 -17.5541 0 -7.2713
+4 16 -17.32 0 -10 -15.868 0 -12.176 -15.0746 0 -11.5672 -16.454 0 -9.5
+4 16 -15.868 0 -12.176 -14.142 0 -14.142 -13.4349 0 -13.4349 -15.0746 0 -11.5672
+4 16 -14.142 0 -14.142 -12.176 0 -15.868 -11.5672 0 -15.0746 -13.4349 0 -13.4349
+4 16 -12.176 0 -15.868 -10 0 -17.32 -9.5 0 -16.454 -11.5672 0 -15.0746
+4 16 -10 0 -17.32 -7.654 0 -18.478 -7.2713 0 -17.5541 -9.5 0 -16.454
+4 16 -7.654 0 -18.478 -5.176 0 -19.318 -4.9172 0 -18.3521 -7.2713 0 -17.5541
+4 16 -5.176 0 -19.318 -2.61 0 -19.828 -2.4795 0 -18.8366 -4.9172 0 -18.3521
+4 16 -2.61 0 -19.828 0 0 -20 0 0 -19 -2.4795 0 -18.8366
+4 16 0 0 -20 2.61 0 -19.828 2.4795 0 -18.8366 0 0 -19
+4 16 2.61 0 -19.828 5.176 0 -19.318 4.9172 0 -18.3521 2.4795 0 -18.8366
+4 16 5.176 0 -19.318 7.654 0 -18.478 7.2713 0 -17.5541 4.9172 0 -18.3521
+4 16 7.654 0 -18.478 10 0 -17.32 9.5 0 -16.454 7.2713 0 -17.5541
+4 16 10 0 -17.32 12.176 0 -15.868 11.5672 0 -15.0746 9.5 0 -16.454
+4 16 12.176 0 -15.868 14.142 0 -14.142 13.4349 0 -13.4349 11.5672 0 -15.0746
+4 16 14.142 0 -14.142 15.868 0 -12.176 15.0746 0 -11.5672 13.4349 0 -13.4349
+4 16 15.868 0 -12.176 17.32 0 -10 16.454 0 -9.5 15.0746 0 -11.5672
+4 16 17.32 0 -10 18.478 0 -7.654 17.5541 0 -7.2713 16.454 0 -9.5
+4 16 18.478 0 -7.654 19.318 0 -5.176 18.3521 0 -4.9172 17.5541 0 -7.2713
+4 16 19.318 0 -5.176 19.828 0 -2.61 18.8366 0 -2.4795 18.3521 0 -4.9172
+4 16 19.828 0 -2.61 20 0 0 19 0 0 18.8366 0 -2.4795
+
+0 FILE p/48/4-4cylo.dat
+0 Hi-Res Cylinder Open 1.0
+0 Name: 48\4-4cylo.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG 48_Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/4-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/48/4-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/4-4cyli.dat
+
+0 FILE p/48/4-4cyli.dat
+0 Hi-Res Cylinder 1.0
+0 Name: 48\4-4cyli.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/1-4cyli.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 p/48/1-4cyli.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/48/1-4cyli.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/48/1-4cyli.dat
+
+0 FILE p/48/1-4cyli.dat
+0 Hi-Res Cylinder 0.25
+0 Name: 48\1-4cyli.dat
+0 Author: Manfred Moolhuysen
+0 !LDRAW_ORG 48_Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-02-28 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC'ed CCW (2005-12-06)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 0.9914 0 0.1305 1 0 0 1 1 0 0.9914 1 0.1305
+4 16 0.9659 0 0.2588 0.9914 0 0.1305 0.9914 1 0.1305 0.9659 1 0.2588
+4 16 0.9239 0 0.3827 0.9659 0 0.2588 0.9659 1 0.2588 0.9239 1 0.3827
+4 16 0.866 0 0.5 0.9239 0 0.3827 0.9239 1 0.3827 0.866 1 0.5
+4 16 0.7934 0 0.6088 0.866 0 0.5 0.866 1 0.5 0.7934 1 0.6088
+4 16 0.7071 0 0.7071 0.7934 0 0.6088 0.7934 1 0.6088 0.7071 1 0.7071
+4 16 0.6088 0 0.7934 0.7071 0 0.7071 0.7071 1 0.7071 0.6088 1 0.7934
+4 16 0.5 0 0.866 0.6088 0 0.7934 0.6088 1 0.7934 0.5 1 0.866
+4 16 0.3827 0 0.9239 0.5 0 0.866 0.5 1 0.866 0.3827 1 0.9239
+4 16 0.2588 0 0.9659 0.3827 0 0.9239 0.3827 1 0.9239 0.2588 1 0.9659
+4 16 0.1305 0 0.9914 0.2588 0 0.9659 0.2588 1 0.9659 0.1305 1 0.9914
+4 16 0 0 1 0.1305 0 0.9914 0.1305 1 0.9914 0 1 1
+
+0 conditional lines
+5 24 1 1 0 1 0 0 1 1 -1 0.9914 1 0.1305
+5 24 0.9914 1 0.1305 0.9914 0 0.1305 1 1 0 0.9659 1 0.2588
+5 24 0.9659 1 0.2588 0.9659 0 0.2588 0.9914 1 0.1305 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 0.9239 0 0.3827 0.9659 1 0.2588 0.866 1 0.5
+5 24 0.866 1 0.5 0.866 0 0.5 0.9239 1 0.3827 0.7934 1 0.6088
+5 24 0.7934 1 0.6088 0.7934 0 0.6088 0.866 1 0.5 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 0.7071 0 0.7071 0.7934 1 0.6088 0.6088 1 0.7934
+5 24 0.6088 1 0.7934 0.6088 0 0.7934 0.7071 1 0.7071 0.5 1 0.866
+5 24 0.5 1 0.866 0.5 0 0.866 0.6088 1 0.7934 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.3827 0 0.9239 0.5 1 0.866 0.2588 1 0.9659
+5 24 0.2588 1 0.9659 0.2588 0 0.9659 0.3827 1 0.9239 0.1305 1 0.9914
+5 24 0.1305 1 0.9914 0.1305 0 0.9914 0.2588 1 0.9659 0 1 1
+5 24 0 1 1 0 0 1 0.1305 1 0.9914 -1 1 1
+
+0 end of file
+0 FILE p/48/4-4edge.dat
+0 Hi-Res Circle 1.0
+0 Name: 48\4-4edge.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-01-15 [MagFors] BFC'ed, title changed from Edge to Circle
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/48/1-4edge.dat
+1 16 0 0 0 0 0 -1 0 1 0 1 0 0 p/48/1-4edge.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/48/1-4edge.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/48/1-4edge.dat
+
+
+0 FILE p/48/1-4edge.dat
+0 Hi-Res Circle 0.25
+0 Name: 48\1-4edge.dat
+0 Author: Manfred Moolhuysen
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-03-17 [MagFors] Updated description
+0 !HISTORY 2010-05-21 [mikeheide] BFC'ed and compacted numbers (saved 10% filesize)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+2 24 1 0 0 0.9914 0 0.1305
+2 24 0.9914 0 0.1305 0.9659 0 0.2588
+2 24 0.9659 0 0.2588 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.866 0 0.5
+2 24 0.866 0 0.5 0.7934 0 0.6088
+2 24 0.7934 0 0.6088 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.6088 0 0.7934
+2 24 0.6088 0 0.7934 0.5 0 0.866
+2 24 0.5 0 0.866 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0.2588 0 0.9659
+2 24 0.2588 0 0.9659 0.1305 0 0.9914
+2 24 0.1305 0 0.9914 0 0 1
+0 //
+
+0 FILE p/stud4h.dat
+0 Stud Tube Open with Extended Hole
+0 Name: stud4h.dat
+0 Author: Tim Gould [timgould]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-02-07 [timgould] Modified from stud4.dat
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 6 0 0 0 8 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 8 0 0 0 4 0 0 0 8 p/4-4cyli.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+0 
+
+0 FILE p/48/4-4ring4.dat
+0 Hi-Res Ring  4 x 1.0
+0 Name: 48\4-4ring4.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG 48_Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-27 [Philo] Changed to CCW
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 5 0 0 4.957 0 0.6525 3.9656 0 0.522 4 0 0
+4 16 4.957 0 0.6525 4.8295 0 1.294 3.8636 0 1.0352 3.9656 0 0.522
+4 16 4.8295 0 1.294 4.6195 0 1.9135 3.6956 0 1.5308 3.8636 0 1.0352
+4 16 4.6195 0 1.9135 4.33 0 2.5 3.464 0 2 3.6956 0 1.5308
+4 16 4.33 0 2.5 3.967 0 3.044 3.1736 0 2.4352 3.464 0 2
+4 16 3.967 0 3.044 3.5355 0 3.5355 2.8284 0 2.8284 3.1736 0 2.4352
+4 16 3.5355 0 3.5355 3.044 0 3.967 2.4352 0 3.1736 2.8284 0 2.8284
+4 16 3.044 0 3.967 2.5 0 4.33 2 0 3.464 2.4352 0 3.1736
+4 16 2.5 0 4.33 1.9135 0 4.6195 1.5308 0 3.6956 2 0 3.464
+4 16 1.9135 0 4.6195 1.294 0 4.8295 1.0352 0 3.8636 1.5308 0 3.6956
+4 16 1.294 0 4.8295 0.6525 0 4.957 0.522 0 3.9656 1.0352 0 3.8636
+4 16 0.6525 0 4.957 0 0 5 0 0 4 0.522 0 3.9656
+4 16 0 0 5 -0.6525 0 4.957 -0.522 0 3.9656 0 0 4
+4 16 -0.6525 0 4.957 -1.294 0 4.8295 -1.0352 0 3.8636 -0.522 0 3.9656
+4 16 -1.294 0 4.8295 -1.9135 0 4.6195 -1.5308 0 3.6956 -1.0352 0 3.8636
+4 16 -1.9135 0 4.6195 -2.5 0 4.33 -2 0 3.464 -1.5308 0 3.6956
+4 16 -2.5 0 4.33 -3.044 0 3.967 -2.4352 0 3.1736 -2 0 3.464
+4 16 -3.044 0 3.967 -3.5355 0 3.5355 -2.8284 0 2.8284 -2.4352 0 3.1736
+4 16 -3.5355 0 3.5355 -3.967 0 3.044 -3.1736 0 2.4352 -2.8284 0 2.8284
+4 16 -3.967 0 3.044 -4.33 0 2.5 -3.464 0 2 -3.1736 0 2.4352
+4 16 -4.33 0 2.5 -4.6195 0 1.9135 -3.6956 0 1.5308 -3.464 0 2
+4 16 -4.6195 0 1.9135 -4.8295 0 1.294 -3.8636 0 1.0352 -3.6956 0 1.5308
+4 16 -4.8295 0 1.294 -4.957 0 0.6525 -3.9656 0 0.522 -3.8636 0 1.0352
+4 16 -4.957 0 0.6525 -5 0 0 -4 0 0 -3.9656 0 0.522
+4 16 -5 0 0 -4.957 0 -0.6525 -3.9656 0 -0.522 -4 0 0
+4 16 -4.957 0 -0.6525 -4.8295 0 -1.294 -3.8636 0 -1.0352 -3.9656 0 -0.522
+4 16 -4.8295 0 -1.294 -4.6195 0 -1.9135 -3.6956 0 -1.5308 -3.8636 0 -1.0352
+4 16 -4.6195 0 -1.9135 -4.33 0 -2.5 -3.464 0 -2 -3.6956 0 -1.5308
+4 16 -4.33 0 -2.5 -3.967 0 -3.044 -3.1736 0 -2.4352 -3.464 0 -2
+4 16 -3.967 0 -3.044 -3.5355 0 -3.5355 -2.8284 0 -2.8284 -3.1736 0 -2.4352
+4 16 -3.5355 0 -3.5355 -3.044 0 -3.967 -2.4352 0 -3.1736 -2.8284 0 -2.8284
+4 16 -3.044 0 -3.967 -2.5 0 -4.33 -2 0 -3.464 -2.4352 0 -3.1736
+4 16 -2.5 0 -4.33 -1.9135 0 -4.6195 -1.5308 0 -3.6956 -2 0 -3.464
+4 16 -1.9135 0 -4.6195 -1.294 0 -4.8295 -1.0352 0 -3.8636 -1.5308 0 -3.6956
+4 16 -1.294 0 -4.8295 -0.6525 0 -4.957 -0.522 0 -3.9656 -1.0352 0 -3.8636
+4 16 -0.6525 0 -4.957 0 0 -5 0 0 -4 -0.522 0 -3.9656
+4 16 0 0 -5 0.6525 0 -4.957 0.522 0 -3.9656 0 0 -4
+4 16 0.6525 0 -4.957 1.294 0 -4.8295 1.0352 0 -3.8636 0.522 0 -3.9656
+4 16 1.294 0 -4.8295 1.9135 0 -4.6195 1.5308 0 -3.6956 1.0352 0 -3.8636
+4 16 1.9135 0 -4.6195 2.5 0 -4.33 2 0 -3.464 1.5308 0 -3.6956
+4 16 2.5 0 -4.33 3.044 0 -3.967 2.4352 0 -3.1736 2 0 -3.464
+4 16 3.044 0 -3.967 3.5355 0 -3.5355 2.8284 0 -2.8284 2.4352 0 -3.1736
+4 16 3.5355 0 -3.5355 3.967 0 -3.044 3.1736 0 -2.4352 2.8284 0 -2.8284
+4 16 3.967 0 -3.044 4.33 0 -2.5 3.464 0 -2 3.1736 0 -2.4352
+4 16 4.33 0 -2.5 4.6195 0 -1.9135 3.6956 0 -1.5308 3.464 0 -2
+4 16 4.6195 0 -1.9135 4.8295 0 -1.294 3.8636 0 -1.0352 3.6956 0 -1.5308
+4 16 4.8295 0 -1.294 4.957 0 -0.6525 3.9656 0 -0.522 3.8636 0 -1.0352
+4 16 4.957 0 -0.6525 5 0 0 4 0 0 3.9656 0 -0.522
+
+0 FILE p/48/4-4aring.dat
+0 Adapter Ring Hi-Res to Normal 1.0
+0 Name: 48\4-4aring.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG 48_Primitive UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+4 16 0.9239 0 0.3827 1 0 0 0.9914 0 0.1305 0.9659 0 0.2588
+4 16 0.7071 0 0.7071 0.9239 0 0.3827 0.866 0 0.5 0.7934 0 0.6088
+4 16 0.3827 0 0.9239 0.7071 0 0.7071 0.6088 0 0.7934 0.5 0 0.866
+4 16 0 0 1 0.3827 0 0.9239 0.2588 0 0.9659 0.1305 0 0.9914
+4 16 -0.3827 0 0.9239 0 0 1 -0.1305 0 0.9914 -0.2588 0 0.9659
+4 16 -0.7071 0 0.7071 -0.3827 0 0.9239 -0.5 0 0.866 -0.6088 0 0.7934
+4 16 -0.9239 0 0.3827 -0.7071 0 0.7071 -0.7934 0 0.6088 -0.866 0 0.5
+4 16 -1 0 0 -0.9239 0 0.3827 -0.9659 0 0.2588 -0.9914 0 0.1305
+4 16 -0.9239 0 -0.3827 -1 0 0 -0.9914 0 -0.1305 -0.9659 0 -0.2588
+4 16 -0.7071 0 -0.7071 -0.9239 0 -0.3827 -0.866 0 -0.5 -0.7934 0 -0.6088
+4 16 -0.3827 0 -0.9239 -0.7071 0 -0.7071 -0.6088 0 -0.7934 -0.5 0 -0.866
+4 16 0 0 -1 -0.3827 0 -0.9239 -0.2588 0 -0.9659 -0.1305 0 -0.9914
+4 16 0.3827 0 -0.9239 0 0 -1 0.1305 0 -0.9914 0.2588 0 -0.9659
+4 16 0.7071 0 -0.7071 0.3827 0 -0.9239 0.5 0 -0.866 0.6088 0 -0.7934
+4 16 0.9239 0 -0.3827 0.7071 0 -0.7071 0.7934 0 -0.6088 0.866 0 -0.5
+4 16 1 0 0 0.9239 0 -0.3827 0.9659 0 -0.2588 0.9914 0 -0.1305
+0 //
+
+0 FILE parts/6111.dat
+0 Brick  1 x 10
+0 Name: 6111.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-12-20 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-04-02 [tchang] Add BFC, DOS format
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 80 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 60 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 40 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -60 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+1 16 -80 4 0 1 0 0 0 -5 0 0 0 1 p/stud3.dat
+
+0 BFC INVERTNEXT
+1 16 0 24 0 96 0 0 0 -20 0 0 0 6 p/box5.dat
+
+4 16 100 24 10 96 24 6 -96 24 6 -100 24 10
+4 16 -100 24 10 -96 24 6 -96 24 -6 -100 24 -10
+4 16 -100 24 -10 -96 24 -6 96 24 -6 100 24 -10
+4 16 100 24 -10 96 24 -6 96 24 6 100 24 10
+
+1 16 0 24 0 100 0 0 0 -24 0 0 0 10 p/box5.dat
+
+1 16 90 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -90 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 //
+
+0 FILE parts/3666.dat
+0 Plate  1 x  6
+0 Name: 3666.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-25 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 56 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 60 8 10 56 8 6 -56 8 6 -60 8 10
+4 16 -60 8 10 -56 8 6 -56 8 -6 -60 8 -10
+4 16 -60 8 -10 -56 8 -6 56 8 -6 60 8 -10
+4 16 60 8 -10 56 8 -6 56 8 6 60 8 10
+1 16 0 8 0 60 0 0 0 -8 0 0 0 10 p/box5.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+
+0 FILE parts/4287.dat
+0 ~Moved to 4287a
+0 Name: 4287.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Part UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+0 // Slope Brick 33  3 x  1 Inverted with Notch and Thick Front
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/4287a.dat
+
+0 FILE parts/4287a.dat
+0 Slope Brick 33  3 x  1 Inverted with Notch and Thick Front
+0 Name: 4287a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2002-09-13 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-07-17 [PTadmin] Renamesd from 4287
+0 !HISTORY 2017-09-16 [Sirio] Renamed and redrew for the notch
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+0 // Studs without blocker
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 12 -20 1 0 0 0 4 0 0 0 1 p/stud2a.dat
+1 16 0 2 -40 1 0 0 0 1.5 0 0 0 1 p/stud2a.dat
+1 16 0 12 -20 0 0 -1 0 3 0 -1 0 0 p/stud2s.dat
+1 16 0 2 -40 0 0 -1 0 3 0 -1 0 0 p/stud2s.dat
+0 // Underside box
+1 16 0 13.375 6 6 0 0 0 0 -10.625 0 1 0 p/rect2p.dat
+1 16 -6 13.375 -0.375 0 -1 0 10.625 0 0 0 0 6.375 p/rect3.dat
+1 16 -3.625 13.375 -6.75 0 0 -2.375 10.625 0 0 0 -1 0 p/rect3.dat
+1 16 0 13.375 -6.75 1.25 0 0 0 0 10.625 0 0.75 0 p/box4-2p.dat
+1 16 3.625 13.375 -6.75 0 0 2.375 -10.625 0 0 0 -1 0 p/rect3.dat
+1 16 6 13.375 -0.375 0 1 0 -10.625 0 0 0 0 6.375 p/rect3.dat
+4 16 -6 2.75 6 -1.25 2.75 -6 -1.25 2.75 -6.75 -6 2.75 -6.75
+4 16 1.25 2.75 -6 -1.25 2.75 -6 -6 2.75 6 6 2.75 6
+4 16 6 2.75 -6.75 1.25 2.75 -6.75 1.25 2.75 -6 6 2.75 6
+0 // Underside surface
+4 16 10 24 10 6 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -6.75 -10 24 -10
+3 16 -6 24 -6.75 -1.25 24 -6.75 -10 24 -10
+4 16 -10 24 -10 -1.25 24 -6.75 1.25 24 -6.75 10 24 -10
+3 16 1.25 24 -6.75 6 24 -6.75 10 24 -10
+4 16 10 24 -10 6 24 -6.75 6 24 6 10 24 10
+2 24 -10 24 -10 -10 24 10
+2 24 10 24 -10 -10 24 -10
+2 24 10 24 -10 10 24 10
+0 // Internal surface
+1 16 0 10 -10 8 0 0 0 0 -10 0 1 0 p/rect3.dat
+1 16 0 11 -28 8 0 0 0 18 9 0 -9 18 p/rect.dat
+1 16 0 1 -46 -8 0 0 0 0 -1 0 -1 0 p/rect3.dat
+4 16 -8 20 -10 -8 0 -10 -8 0 -46 -8 2 -46
+4 16 8 20 -10 8 2 -46 8 0 -46 8 0 -10
+0 // Upper surface
+4 16 10 0 10 -10 0 10 -8 0 -10 8 0 -10
+4 16 -10 0 10 -10 0 -50 -8 0 -46 -8 0 -10
+4 16 -10 0 -50 10 0 -50 8 0 -46 -8 0 -46
+4 16 10 0 -50 10 0 10 8 0 -10 8 0 -46
+0 // Lateral surface
+1 16 0 12 10 -10 0 0 0 0 -12 0 -1 0 p/rect.dat
+4 16 -10 24 -10 -10 4 -50 -10 0 10 -10 24 10
+4 16 10 24 -10 10 24 10 10 0 10 10 4 -50
+3 16 -10 0 -50 -10 0 10 -10 4 -50
+1 16 0 2 -50 -10 0 0 0 0 2 0 1 0 p/rect.dat
+3 16 10 0 -50 10 4 -50 10 0 10
+2 24 -10 4 -50 -10 24 -10
+2 24 10 4 -50 10 24 -10
+2 24 -10 0 -50 -10 0 10
+2 24 10 0 -50 10 0 10
+2 24 -8 0 -10 -8 0 -46
+2 24 8 0 -46 8 0 -10
+0 // Sloped surface and Notch
+4 16 -10 24 -10 10 24 -10 0 22 -14 -2.2962 21.772 -14.4566
+3 16 -10 24 -10 -2.2962 21.772 -14.4566 -4.2426 21.121 -15.7574
+3 16 -10 24 -10 -4.2426 21.121 -15.7574 -5.5434 20.148 -17.7038
+3 16 -10 24 -10 -5.5434 20.148 -17.7038 -5.602 20 -18
+3 16 10 24 -10 2.2962 21.772 -14.4566 0 22 -14
+3 16 10 24 -10 4.2426 21.121 -15.7574 2.2962 21.772 -14.4566
+3 16 10 24 -10 5.5434 20.148 -17.7038 4.2426 21.121 -15.7574
+3 16 10 24 -10 5.602 20 -18 5.5434 20.148 -17.7038
+3 16 -5.5434 20.148 -17.7038 -5.5434 20 -17.7038 -5.602 20 -18
+4 16 -4.2426 21.121 -15.7574 -4.2426 20 -15.7574 -5.5434 20 -17.7038 -5.5434 20.148 -17.7038
+4 16 -2.2962 21.772 -14.4566 -2.2962 20 -14.4566 -4.2426 20 -15.7574 -4.2426 21.121 -15.7574
+4 16 0 22 -14 0 20 -14 -2.2962 20 -14.4566 -2.2962 21.772 -14.4566
+4 16 2.2962 21.772 -14.4566 2.2962 20 -14.4566 0 20 -14 0 22 -14
+4 16 4.2426 21.121 -15.7574 4.2426 20 -15.7574 2.2962 20 -14.4566 2.2962 21.772 -14.4566
+4 16 5.5434 20.148 -17.7038 5.5434 20 -17.7038 4.2426 20 -15.7574 4.2426 21.121 -15.7574
+3 16 5.602 20 -18 5.5434 20 -17.7038 5.5434 20.148 -17.7038
+3 16 0 20 -14 2.2962 20 -14.4566 -2.2962 20 -14.4566
+4 16 -4.2426 20 -15.7574 -2.2962 20 -14.4566 2.2962 20 -14.4566 4.2426 20 -15.7574
+4 16 5.5434 20 -17.7038 -5.5434 20 -17.7038 -4.2426 20 -15.7574 4.2426 20 -15.7574
+4 16 5.602 20 -18 -5.602 20 -18 -5.5434 20 -17.7038 5.5434 20 -17.7038
+3 16 -10 24 -10 -5.602 20 -18 -10 4 -50
+3 16 10 24 -10 10 4 -50 5.602 20 -18
+4 16 -5.602 20 -18 5.602 20 -18 10 4 -50 -10 4 -50
+2 24 -5.602 20 -18 -5.5434 20.148 -17.7038
+2 24 -5.5434 20.148 -17.7038 -4.2426 21.121 -15.7574
+2 24 -4.2426 21.121 -15.7574 -2.2962 21.772 -14.4566
+2 24 -2.2962 21.772 -14.4566 0 22 -14
+2 24 0 22 -14 2.2962 21.772 -14.4566
+2 24 2.2962 21.772 -14.4566 4.2426 21.121 -15.7574
+2 24 4.2426 21.121 -15.7574 5.5434 20.148 -17.7038
+2 24 5.5434 20.148 -17.7038 5.602 20 -18
+2 24 5.602 20 -18 -5.602 20 -18
+2 24 -5.602 20 -18 -5.5434 20 -17.7038
+2 24 -5.5434 20 -17.7038 -4.2426 20 -15.7574
+2 24 -4.2426 20 -15.7574 -2.2962 20 -14.4566
+2 24 -2.2962 20 -14.4566 0 20 -14
+2 24 0 20 -14 2.2962 20 -14.4566
+2 24 2.2962 20 -14.4566 4.2426 20 -15.7574
+2 24 4.2426 20 -15.7574 5.5434 20 -17.7038
+2 24 5.5434 20 -17.7038 5.602 20 -18
+5 24 -5.5434 20 -17.7038 -5.5434 20.148 -17.7038 -6 20 -20 -4.2426 20 -15.7574
+5 24 -4.2426 20 -15.7574 -4.2426 21.121 -15.7574 -5.5434 20 -17.7038 -2.2962 20 -14.4566
+5 24 -2.2962 20 -14.4566 -2.2962 21.772 -14.4566 -4.2426 20 -15.7574 0 20 -14
+5 24 0 20 -14 0 22 -14 -2.2962 20 -14.4566 2.2962 20 -14.4566
+5 24 2.2962 20 -14.4566 2.2962 21.772 -14.4566 0 20 -14 4.2426 20 -15.7574
+5 24 4.2426 20 -15.7574 4.2426 21.121 -15.7574 2.2962 20 -14.4566 5.5434 20 -17.7038
+5 24 5.5434 20 -17.7038 5.5434 20.148 -17.7038 4.2426 20 -15.7574 6 20 -20
+
+0 FILE parts/3665.dat
+0 ~Moved to 3665a
+0 Name: 3665.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Part UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+0 // Slope Brick 45  2 x  1 Inverted
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/3665a.dat
+
+0 FILE parts/3665a.dat
+0 Slope Brick 45  2 x  1 Inverted without Inner Stopper Ring
+0 Name: 3665a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-01-21 [sbliss] Completed header; BFC'ed
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-05-17 [mikeheide] Used subpart
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2016-01-11 [PTadmin] Renamed from 3665
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3665as01.dat
+4 16 10 24 -10 10 4 -30 -10 4 -30 -10 24 -10
+
+0 FILE parts/s/3665as01.dat
+0 ~Slope Brick 45  2 x  1 Inverted without Inner Stopper Ring and Front Face
+0 Name: s\3665as01.dat
+0 Author: Michael Heidemann [mikeheide]
+0 !LDRAW_ORG Subpart UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2008-07-11 [mkennedy] Made use of stud2s and more box and rect primitives.
+0 !HISTORY 2010-05-18 [Steffen] corrected stud orientation
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2016-01-11 [PTadmin] Renamed from s/3665s01
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+0 BFC INVERTNEXT
+1 16 0 24 0 6 0 0 0 -20 0 0 0 6 p/box5.dat
+4 16 -10 24 10 -6 24 6 6 24 6 10 24 10
+4 16 -10 24 -10 -6 24 -6 -6 24 6 -10 24 10
+4 16 10 24 -10 6 24 -6 -6 24 -6 -10 24 -10
+4 16 10 24 10 6 24 6 6 24 -6 10 24 -10
+2 24 10 24 -10 10 24 10
+2 24 10 24 -10 -10 24 -10
+2 24 -10 24 -10 -10 24 10
+2 24 10 4 -30 10 24 -10
+2 24 -10 4 -30 -10 24 -10
+2 24 10 0 -30 10 0 10
+2 24 -10 0 -30 -10 0 10
+2 24 -8 0 -10 -8 0 -26
+2 24 8 0 -26 8 0 -10
+0 BFC INVERTNEXT
+1 16 0 10 -18 8 0 0 0 2 -8 0 0 -8 p/box2-5.dat
+4 16 10 24 10 10 24 -10 10 4 -30 10 0 10
+3 16 10 0 10 10 4 -30 10 0 -30
+1 16 0 12 10 10 0 0 0 0 12 0 -1 0 p/rect.dat
+4 16 -10 24 10 -10 0 10 -10 4 -30 -10 24 -10
+3 16 -10 0 -30 -10 4 -30 -10 0 10
+1 16 0 2 -30 10 0 0 0 0 2 0 1 0 p/rect.dat
+4 16 8 4 -26 8 20 -10 8 0 -10 8 0 -26
+4 16 -8 4 -26 -8 0 -26 -8 0 -10 -8 20 -10
+1 16 0 10 -10 8 0 0 0 0 -10 0 1 0 p/rect3.dat
+4 16 -10 0 10 10 0 10 8 0 -10 -8 0 -10
+4 16 -10 0 -30 -10 0 10 -8 0 -10 -8 0 -26
+4 16 10 0 -30 -10 0 -30 -8 0 -26 8 0 -26
+4 16 10 0 10 10 0 -30 8 0 -26 8 0 -10
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 4 -20 1 0 0 0 2 0 0 0 1 p/stud2a.dat
+1 16 0 4 -20 0 0 1 0 6 0 -1 0 0 p/stud2s.dat
+
+0 FILE p/stud2s.dat
+0 Stud Tube Open Sliced
+0 Name: stud2s.dat
+0 Author: Dee Earley [DeannaEarley]
+0 !LDRAW_ORG Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2006-02-20 [guyvivan] Adjust precision
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 0.333 0 4 0 0 0 0.667 0 0 0 4 p/4-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 0.333 0 0 0 4 p/4-4cyli.dat
+1 16 0 1 0 4 0 0 -0.667 1 0 0 0 4 p/4-4edge.dat
+1 16 0 1 0 6 0 0 -1 1 0 0 0 6 p/4-4edge.dat
+
+0 FILE parts/3040b.dat
+0 Slope Brick 45  2 x  1
+0 Name: 3040b.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-09-13 [izanette] modified with WINDZ for BFC compliance
+0 !HISTORY 2003-07-11 [Steffen] made use of existing subfile
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3040s01.dat
+4 16 10 20 -30 10 0 -10 -10 0 -10 -10 20 -30
+0
+
+0 FILE parts/s/3040s01.dat
+0 ~Slope Brick 45  2 x  1 without Front Face
+0 Name: s\3040s01.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Subpart UPDATE 2004-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-07-02 [Steffen] BFCed; removed matrix all zero "errors"
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-08-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+0 // Uncomment for front face
+0 // 4 16 10 20 -30 10 0 -10 -10 0 -10 -10 20 -30
+
+1 16 0 20 -10 1 0 0 0 -1 0 0 0 1 p/stud3a.dat
+1 16 0 4 -10 4 0 0 0 4 0 0 0 4 p/2-4edge.dat
+1 16 0 4 -10 4 0 0 0 99 4 0 0 -4 p/2-4edge.dat
+1 16 0 8 -10 0 0 4 0 -4 0 -4 0 0 p/1-4cyls.dat
+1 16 0 8 -10 0 0 -4 0 -4 0 -4 0 0 p/1-4cyls.dat
+1 16 0 4 -10 4 0 0 0 16 0 0 0 4 p/2-4cyli.dat
+1 16 0 8 -10 4 0 0 0 12 0 0 0 -4 p/2-4cyli.dat
+2 24 6 24 6 -6 24 6
+2 24 -6 24 6 -6 24 -26
+2 24 -6 24 -26 6 24 -26
+2 24 6 24 -26 6 24 6
+2 24 10 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -30
+2 24 -10 24 -30 10 24 -30
+2 24 10 24 -30 10 24 10
+2 24 6 24 6 6 4 6
+2 24 -6 24 6 -6 4 6
+2 24 6 24 -26 6 20 -26
+2 24 -6 24 -26 -6 20 -26
+2 24 6 4 6 -6 4 6
+2 24 6 4 -10 -6 4 -10
+2 24 6 20 -26 -6 20 -26
+2 24 6 4 6 6 4 -10
+2 24 -6 4 6 -6 4 -10
+2 24 6 20 -26 6 4 -10
+2 24 -6 20 -26 -6 4 -10
+2 24 10 24 10 10 0 10
+2 24 -10 24 10 -10 0 10
+2 24 10 24 -30 10 20 -30
+2 24 -10 24 -30 -10 20 -30
+2 24 10 0 10 -10 0 10
+2 24 10 0 -10 -10 0 -10
+2 24 10 20 -30 -10 20 -30
+2 24 10 0 10 10 0 -10
+2 24 -10 0 10 -10 0 -10
+2 24 10 20 -30 10 0 -10
+2 24 -10 20 -30 -10 0 -10
+4 16 10 24 10 6 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -26 -10 24 -30
+4 16 -10 24 -30 -6 24 -26 6 24 -26 10 24 -30
+4 16 10 24 -30 6 24 -26 6 24 6 10 24 10
+4 16 6 4 6 6 4 -10 -6 4 -10 -6 4 6
+4 16 10 0 -10 10 0 10 -10 0 10 -10 0 -10
+4 16 -10 24 10 -10 0 10 10 0 10 10 24 10
+4 16 6 24 6 6 4 6 -6 4 6 -6 24 6
+4 16 6 20 -26 6 24 -26 -6 24 -26 -6 20 -26
+4 16 10 24 -30 10 20 -30 -10 20 -30 -10 24 -30
+4 16 10 24 10 10 0 10 10 20 -30 10 24 -30
+3 16 10 0 10 10 0 -10 10 20 -30
+4 16 6 20 -26 6 4 6 6 24 6 6 24 -26
+3 16 6 20 -26 6 4 -10 6 4 6
+4 16 -6 24 6 -6 4 6 -6 20 -26 -6 24 -26
+3 16 -6 4 6 -6 4 -10 -6 20 -26
+4 16 -10 20 -30 -10 0 10 -10 24 10 -10 24 -30
+3 16 -10 20 -30 -10 0 -10 -10 0 10
+4 16 -6 4 -10 6 4 -10 6 20 -26 -6 20 -26
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/4162.dat
+0 Tile  1 x  8
+0 Name: 4162.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-02-15 [BrickCaster] groove
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2004-07-27 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-01 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-01-26 [Philo] Subparted for patterns
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 -80 0 -10 80 0 -10 80 0 10 -80 0 10
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/4162s01.dat
+
+0 FILE parts/s/4162s01.dat
+0 ~Tile  1 x  8 without Top Face
+0 Name: s\4162s01.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Subpart UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 7 0 80 0 0 0 -7 0 0 0 10 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 76 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 79 8 9 76 8 6 -76 8 6 -79 8 9
+4 16 -79 8 9 -76 8 6 -76 8 -6 -79 8 -9
+4 16 -79 8 -9 -76 8 -6 76 8 -6 79 8 -9
+4 16 79 8 -9 76 8 -6 76 8 6 79 8 9
+1 16 0 8 0 79 0 0 0 -1 0 0 0 9 p/box4.dat
+4 16 80 7 10 79 7 9 -79 7 9 -80 7 10
+4 16 -80 7 10 -79 7 9 -79 7 -9 -80 7 -10
+4 16 -80 7 -10 -79 7 -9 79 7 -9 80 7 -10
+4 16 80 7 -10 79 7 -9 79 7 9 80 7 10
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stug3-1x7.dat
+
+0 FILE p/stug3-1x7.dat
+0 Stud Tube Solid Group  1 x  7
+0 Name: stug3-1x7.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 -60 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 -40 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 -20 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 40 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+1 16 60 0 0 1 0 0 0 1 0 0 0 1 p/stud3.dat
+
+0 FILE parts/2730.dat
+0 Technic Brick  1 x 10 with Holes
+0 Name: 2730.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-05-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -80 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -80 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 80 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 80 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 80 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 80 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -80 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -80 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 96 24 6 -96 24 6
+2 24 96 24 -6 -96 24 -6
+2 24 100 24 10 -100 24 10
+2 24 100 24 -10 -100 24 -10
+0 BFC INVERTNEXT
+1 16 10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 70 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -70 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 92 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -92 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 80 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 88 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -88 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 80 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 12 18 6 12 10 6 8 10 6 8 18 6
+4 16 12 18 -6 8 18 -6 8 10 -6 12 10 -6
+4 16 32 18 6 32 10 6 28 10 6 28 18 6
+4 16 32 18 -6 28 18 -6 28 10 -6 32 10 -6
+4 16 52 18 6 52 10 6 48 10 6 48 18 6
+4 16 52 18 -6 48 18 -6 48 10 -6 52 10 -6
+4 16 72 18 6 72 10 6 68 10 6 68 18 6
+4 16 72 18 -6 68 18 -6 68 10 -6 72 10 -6
+4 16 -8 18 6 -8 10 6 -12 10 6 -12 18 6
+4 16 -8 18 -6 -12 18 -6 -12 10 -6 -8 10 -6
+4 16 -28 18 6 -28 10 6 -32 10 6 -32 18 6
+4 16 -28 18 -6 -32 18 -6 -32 10 -6 -28 10 -6
+4 16 -48 18 6 -48 10 6 -52 10 6 -52 18 6
+4 16 -48 18 -6 -52 18 -6 -52 10 -6 -48 10 -6
+4 16 -68 18 6 -68 10 6 -72 10 6 -72 18 6
+4 16 -68 18 -6 -72 18 -6 -72 10 -6 -68 10 -6
+4 16 96 24 6 96 4 6 88 4 6 88 18 6
+4 16 96 24 -6 88 18 -6 88 4 -6 96 4 -6
+4 16 -88 18 6 -88 4 6 -96 4 6 -96 24 6
+4 16 -88 18 -6 -96 24 -6 -96 4 -6 -88 4 -6
+4 16 96 24 6 88 18 6 -88 18 6 -96 24 6
+4 16 96 24 -6 -96 24 -6 -88 18 -6 88 18 -6
+4 16 100 24 10 96 24 6 -96 24 6 -100 24 10
+4 16 100 24 -10 -100 24 -10 -96 24 -6 96 24 -6
+4 16 100 24 10 100 24 -10 96 24 -6 96 24 6
+4 16 -100 24 10 -96 24 6 -96 24 -6 -100 24 -10
+0 BFC INVERTNEXT
+1 16 20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 80 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -80 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 80 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -80 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -80 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -100 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 80 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 80 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -80 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -80 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 12 18 10 8 18 10 8 2 10 12 2 10
+4 16 12 18 -10 12 2 -10 8 2 -10 8 18 -10
+4 16 32 18 10 28 18 10 28 2 10 32 2 10
+4 16 32 18 -10 32 2 -10 28 2 -10 28 18 -10
+4 16 52 18 10 48 18 10 48 2 10 52 2 10
+4 16 52 18 -10 52 2 -10 48 2 -10 48 18 -10
+4 16 72 18 10 68 18 10 68 2 10 72 2 10
+4 16 72 18 -10 72 2 -10 68 2 -10 68 18 -10
+4 16 -8 18 10 -12 18 10 -12 2 10 -8 2 10
+4 16 -8 18 -10 -8 2 -10 -12 2 -10 -12 18 -10
+4 16 -28 18 10 -32 18 10 -32 2 10 -28 2 10
+4 16 -28 18 -10 -28 2 -10 -32 2 -10 -32 18 -10
+4 16 -48 18 10 -52 18 10 -52 2 10 -48 2 10
+4 16 -48 18 -10 -48 2 -10 -52 2 -10 -52 18 -10
+4 16 -68 18 10 -72 18 10 -72 2 10 -68 2 10
+4 16 -68 18 -10 -68 2 -10 -72 2 -10 -72 18 -10
+4 16 100 24 10 -100 24 10 -88 18 10 88 18 10
+4 16 100 24 -10 88 18 -10 -88 18 -10 -100 24 -10
+4 16 100 0 10 88 2 10 -88 2 10 -100 0 10
+4 16 100 0 -10 -100 0 -10 -88 2 -10 88 2 -10
+4 16 100 24 10 88 18 10 88 2 10 100 0 10
+4 16 100 24 -10 100 0 -10 88 2 -10 88 18 -10
+4 16 -100 24 10 -100 0 10 -88 2 10 -88 18 10
+4 16 -100 24 -10 -88 18 -10 -88 2 -10 -100 0 -10
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 90 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -90 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/4740.dat
+0 Dish  2 x  2 Inverted
+0 Name: 4740.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Space, Radar Dish, Round
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-06-08 [jriley] BFC compliant, cone & ring substitutions
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-05-09 [cwdee] Remove CATEGORY Round
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+0 !HISTORY 2014-09-03 [Philo] Improved part shape, subparted for patterns
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/4740s01.dat
+1 16 0 1.7 0 6 0 0 0 -1.7 0 0 0 6 p/4-4con1.dat
+1 16 0 3.3 0 4 0 0 0 -1.6 0 0 0 4 p/4-4con3.dat
+1 16 0 5.6 0 4 0 0 0 -2.3 0 0 0 4 p/4-4con4.dat
+5 24 12 1.7 0 11.0868 1.7 4.5924 5.5434 0 2.2962 14.7824 3.3 6.1232
+5 24 11.0868 1.7 4.5924 8.4852 1.7 8.4852 4.2426 0 4.2426 11.3136 3.3 11.3136
+5 24 8.4852 1.7 8.4852 4.5924 1.7 11.0868 2.2962 0 5.5434 6.1232 3.3 14.7824
+5 24 4.5924 1.7 11.0868 0 1.7 12 0 0 6 0 3.3 16
+5 24 0 1.7 12 -4.5924 1.7 11.0868 -2.2962 0 5.5434 -6.1232 3.3 14.7824
+5 24 -4.5924 1.7 11.0868 -8.4852 1.7 8.4852 -4.2426 0 4.2426 -11.3136 3.3 11.3136
+5 24 -8.4852 1.7 8.4852 -11.0868 1.7 4.5924 -5.5434 0 2.2962 -14.7824 3.3 6.1232
+5 24 -11.0868 1.7 4.5924 -12 1.7 0 -6 0 0 -16 3.3 0
+5 24 -12 1.7 0 -11.0868 1.7 -4.5924 -5.5434 0 -2.2962 -14.7824 3.3 -6.1232
+5 24 -11.0868 1.7 -4.5924 -8.4852 1.7 -8.4852 -4.2426 0 -4.2426 -11.3136 3.3 -11.3136
+5 24 -8.4852 1.7 -8.4852 -4.5924 1.7 -11.0868 -2.2962 0 -5.5434 -6.1232 3.3 -14.7824
+5 24 -4.5924 1.7 -11.0868 0 1.7 -12 0 0 -6 0 3.3 -16
+5 24 0 1.7 -12 4.5924 1.7 -11.0868 2.2962 0 -5.5434 6.1232 3.3 -14.7824
+5 24 4.5924 1.7 -11.0868 8.4852 1.7 -8.4852 4.2426 0 -4.2426 11.3136 3.3 -11.3136
+5 24 8.4852 1.7 -8.4852 11.0868 1.7 -4.5924 5.5434 0 -2.2962 14.7824 3.3 -6.1232
+5 24 11.0868 1.7 -4.5924 12 1.7 0 6 0 0 16 3.3 0
+5 24 16 3.3 0 14.7824 3.3 6.1232 11.0868 1.7 4.5924 20 5.6 0
+5 24 14.7824 3.3 6.1232 11.3136 3.3 11.3136 8.4852 1.7 8.4852 18.478 5.6 7.654
+5 24 11.3136 3.3 11.3136 6.1232 3.3 14.7824 4.5924 1.7 11.0868 14.142 5.6 14.142
+5 24 6.1232 3.3 14.7824 0 3.3 16 0 1.7 12 7.654 5.6 18.478
+5 24 0 3.3 16 -6.1232 3.3 14.7824 -4.5924 1.7 11.0868 0 5.6 20
+5 24 -6.1232 3.3 14.7824 -11.3136 3.3 11.3136 -8.4852 1.7 8.4852 -7.654 5.6 18.478
+5 24 -11.3136 3.3 11.3136 -14.7824 3.3 6.1232 -11.0868 1.7 4.5924 -14.142 5.6 14.142
+5 24 -14.7824 3.3 6.1232 -16 3.3 0 -12 1.7 0 -18.478 5.6 7.654
+5 24 -16 3.3 0 -14.7824 3.3 -6.1232 -11.0868 1.7 -4.5924 -20 5.6 0
+5 24 -14.7824 3.3 -6.1232 -11.3136 3.3 -11.3136 -8.4852 1.7 -8.4852 -18.478 5.6 -7.654
+5 24 -11.3136 3.3 -11.3136 -6.1232 3.3 -14.7824 -4.5924 1.7 -11.0868 -14.142 5.6 -14.142
+5 24 -6.1232 3.3 -14.7824 0 3.3 -16 0 1.7 -12 -7.654 5.6 -18.478
+5 24 0 3.3 -16 6.1232 3.3 -14.7824 4.5924 1.7 -11.0868 0 5.6 -20
+5 24 6.1232 3.3 -14.7824 11.3136 3.3 -11.3136 8.4852 1.7 -8.4852 7.654 5.6 -18.478
+5 24 11.3136 3.3 -11.3136 14.7824 3.3 -6.1232 11.0868 1.7 -4.5924 14.142 5.6 -14.142
+5 24 14.7824 3.3 -6.1232 16 3.3 0 12 1.7 0 18.478 5.6 -7.654
+
+0 FILE parts/s/4740s01.dat
+0 ~Dish  2 x  2 Inverted without Convex Surface
+0 Name: s\4740s01.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Subpart UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 5.6 0 20 0 0 0 2.4 0 0 0 20 p/4-4cylo.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 2.7 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 6 0 0 0 -1.3 0 0 0 6 p/4-4cyli.dat
+1 16 0 4 0 8 0 0 0 -1.3 0 0 0 8 p/4-4cyli.dat
+1 16 0 2.7 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 2.7 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 2.7 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 2.7 0 2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+0 BFC INVERTNEXT
+1 16 0 5.8 0 8 0 0 0 -3.1 0 0 0 8 p/4-4con1.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 4 0 0 0 -2.2 0 0 0 4 p/4-4con4.dat
+5 24 14.7824 5.8 6.1232 16 5.8 0 8 2.7 0 18.478 8 7.654
+5 24 11.3136 5.8 11.3136 14.7824 5.8 6.1232 7.3912 2.7 3.0616 14.142 8 14.142
+5 24 6.1232 5.8 14.7824 11.3136 5.8 11.3136 5.6568 2.7 5.6568 7.654 8 18.478
+5 24 0 5.8 16 6.1232 5.8 14.7824 3.0616 2.7 7.3912 0 8 20
+5 24 -6.1232 5.8 14.7824 0 5.8 16 0 2.7 8 -7.654 8 18.478
+5 24 -11.3136 5.8 11.3136 -6.1232 5.8 14.7824 -3.0616 2.7 7.3912 -14.142 8 14.142
+5 24 -14.7824 5.8 6.1232 -11.3136 5.8 11.3136 -5.6568 2.7 5.6568 -18.478 8 7.654
+5 24 -16 5.8 0 -14.7824 5.8 6.1232 -7.3912 2.7 3.0616 -20 8 0
+5 24 -14.7824 5.8 -6.1232 -16 5.8 0 -8 2.7 0 -18.478 8 -7.654
+5 24 -11.3136 5.8 -11.3136 -14.7824 5.8 -6.1232 -7.3912 2.7 -3.0616 -14.142 8 -14.142
+5 24 -6.1232 5.8 -14.7824 -11.3136 5.8 -11.3136 -5.6568 2.7 -5.6568 -7.654 8 -18.478
+5 24 0 5.8 -16 -6.1232 5.8 -14.7824 -3.0616 2.7 -7.3912 0 8 -20
+5 24 6.1232 5.8 -14.7824 0 5.8 -16 0 2.7 -8 7.654 8 -18.478
+5 24 11.3136 5.8 -11.3136 6.1232 5.8 -14.7824 3.0616 2.7 -7.3912 14.142 8 -14.142
+5 24 14.7824 5.8 -6.1232 11.3136 5.8 -11.3136 5.6568 2.7 -5.6568 18.478 8 -7.654
+5 24 16 5.8 0 14.7824 5.8 -6.1232 7.3912 2.7 -3.0616 20 8 0
+
+0 FILE p/4-4con4.dat
+0 Cone  4 x 1.0
+0 Name: 4-4con4.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 3.6956 1 1.5308 4.6195 0 1.9135 5 0 0 4 1 0
+4 16 2.8284 1 2.8284 3.5355 0 3.5355 4.6195 0 1.9135 3.6956 1 1.5308
+4 16 1.5308 1 3.6956 1.9135 0 4.6195 3.5355 0 3.5355 2.8284 1 2.8284
+4 16 0 1 4 0 0 5 1.9135 0 4.6195 1.5308 1 3.6956
+4 16 -1.5308 1 3.6956 -1.9135 0 4.6195 0 0 5 0 1 4
+4 16 -2.8284 1 2.8284 -3.5355 0 3.5355 -1.9135 0 4.6195 -1.5308 1 3.6956
+4 16 -3.6956 1 1.5308 -4.6195 0 1.9135 -3.5355 0 3.5355 -2.8284 1 2.8284
+4 16 -4 1 0 -5 0 0 -4.6195 0 1.9135 -3.6956 1 1.5308
+4 16 -3.6956 1 -1.5308 -4.6195 0 -1.9135 -5 0 0 -4 1 0
+4 16 -2.8284 1 -2.8284 -3.5355 0 -3.5355 -4.6195 0 -1.9135 -3.6956 1 -1.5308
+4 16 -1.5308 1 -3.6956 -1.9135 0 -4.6195 -3.5355 0 -3.5355 -2.8284 1 -2.8284
+4 16 0 1 -4 0 0 -5 -1.9135 0 -4.6195 -1.5308 1 -3.6956
+4 16 1.5308 1 -3.6956 1.9135 0 -4.6195 0 0 -5 0 1 -4
+4 16 2.8284 1 -2.8284 3.5355 0 -3.5355 1.9135 0 -4.6195 1.5308 1 -3.6956
+4 16 3.6956 1 -1.5308 4.6195 0 -1.9135 3.5355 0 -3.5355 2.8284 1 -2.8284
+4 16 4 1 0 5 0 0 4.6195 0 -1.9135 3.6956 1 -1.5308
+
+5 24 4 1 0 5 0 0 3.6956 1 -1.5308 3.6956 1 1.5308
+5 24 3.6956 1 1.5308 4.6195 0 1.9135 4 1 0 2.8284 1 2.8284
+5 24 2.8284 1 2.8284 3.5355 0 3.5355 3.6956 1 1.5308 1.5308 1 3.6956
+5 24 1.5308 1 3.6956 1.9135 0 4.6195 2.8284 1 2.8284 0 1 4
+5 24 0 1 4 0 0 5 1.5308 1 3.6956 -1.5308 1 3.6956
+5 24 -1.5308 1 3.6956 -1.9135 0 4.6195 0 1 4 -2.8284 1 2.8284
+5 24 -2.8284 1 2.8284 -3.5355 0 3.5355 -1.5308 1 3.6956 -3.6956 1 1.5308
+5 24 -3.6956 1 1.5308 -4.6195 0 1.9135 -2.8284 1 2.8284 -4 1 0
+5 24 -4 1 0 -5 0 0 -3.6956 1 1.5308 -3.6956 1 -1.5308
+5 24 -3.6956 1 -1.5308 -4.6195 0 -1.9135 -4 1 0 -2.8284 1 -2.8284
+5 24 -2.8284 1 -2.8284 -3.5355 0 -3.5355 -3.6956 1 -1.5308 -1.5308 1 -3.6956
+5 24 -1.5308 1 -3.6956 -1.9135 0 -4.6195 -2.8284 1 -2.8284 0 1 -4
+5 24 0 1 -4 0 0 -5 -1.5308 1 -3.6956 1.5308 1 -3.6956
+5 24 1.5308 1 -3.6956 1.9135 0 -4.6195 0 1 -4 2.8284 1 -2.8284
+5 24 2.8284 1 -2.8284 3.5355 0 -3.5355 1.5308 1 -3.6956 3.6956 1 -1.5308
+5 24 3.6956 1 -1.5308 4.6195 0 -1.9135 2.8284 1 -2.8284 4 1 0
+
+0 FILE p/4-4con1.dat
+0 Cone  1 x 1.0
+0 Name: 4-4con1.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-08-19 [sbliss] Renamed 4-4con12.dat to 4-4con1.dat, Moved all conditional lines before quads
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-12-11 [cwdee] Standardised title and made BFC compliant
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW, reordered
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+5 24 1 1 0 2 0 0 0.9239 1 -0.3827 0.9239 1 0.3827
+5 24 0.9239 1 0.3827 1.8478 0 0.7654 1 1 0 0.7071 1 0.7071
+5 24 0.7071 1 0.7071 1.4142 0 1.4142 0.9239 1 0.3827 0.3827 1 0.9239
+5 24 0.3827 1 0.9239 0.7654 0 1.8478 0.7071 1 0.7071 0 1 1
+5 24 0 1 1 0 0 2 0.3827 1 0.9239 -0.3827 1 0.9239
+5 24 -0.3827 1 0.9239 -0.7654 0 1.8478 0 1 1 -0.7071 1 0.7071
+5 24 -0.7071 1 0.7071 -1.4142 0 1.4142 -0.3827 1 0.9239 -0.9239 1 0.3827
+5 24 -0.9239 1 0.3827 -1.8478 0 0.7654 -0.7071 1 0.7071 -1 1 0
+5 24 -1 1 0 -2 0 0 -0.9239 1 0.3827 -0.9239 1 -0.3827
+5 24 -0.9239 1 -0.3827 -1.8478 0 -0.7654 -1 1 0 -0.7071 1 -0.7071
+5 24 -0.7071 1 -0.7071 -1.4142 0 -1.4142 -0.9239 1 -0.3827 -0.3827 1 -0.9239
+5 24 -0.3827 1 -0.9239 -0.7654 0 -1.8478 -0.7071 1 -0.7071 0 1 -1
+5 24 0 1 -1 0 0 -2 -0.3827 1 -0.9239 0.3827 1 -0.9239
+5 24 0.3827 1 -0.9239 0.7654 0 -1.8478 0 1 -1 0.7071 1 -0.7071
+5 24 0.7071 1 -0.7071 1.4142 0 -1.4142 0.3827 1 -0.9239 0.9239 1 -0.3827
+5 24 0.9239 1 -0.3827 1.8478 0 -0.7654 0.7071 1 -0.7071 1 1 0
+
+4 16 2 0 0 1 1 0 0.9239 1 0.3827 1.8478 0 0.7654
+4 16 1.8478 0 0.7654 0.9239 1 0.3827 0.7071 1 0.7071 1.4142 0 1.4142
+4 16 1.4142 0 1.4142 0.7071 1 0.7071 0.3827 1 0.9239 0.7654 0 1.8478
+4 16 0.7654 0 1.8478 0.3827 1 0.9239 0 1 1 0 0 2
+4 16 0 0 2 0 1 1 -0.3827 1 0.9239 -0.7654 0 1.8478
+4 16 -0.7654 0 1.8478 -0.3827 1 0.9239 -0.7071 1 0.7071 -1.4142 0 1.4142
+4 16 -1.4142 0 1.4142 -0.7071 1 0.7071 -0.9239 1 0.3827 -1.8478 0 0.7654
+4 16 -1.8478 0 0.7654 -0.9239 1 0.3827 -1 1 0 -2 0 0
+4 16 -2 0 0 -1 1 0 -0.9239 1 -0.3827 -1.8478 0 -0.7654
+4 16 -1.8478 0 -0.7654 -0.9239 1 -0.3827 -0.7071 1 -0.7071 -1.4142 0 -1.4142
+4 16 -1.4142 0 -1.4142 -0.7071 1 -0.7071 -0.3827 1 -0.9239 -0.7654 0 -1.8478
+4 16 -0.7654 0 -1.8478 -0.3827 1 -0.9239 0 1 -1 0 0 -2
+4 16 0 0 -2 0 1 -1 0.3827 1 -0.9239 0.7654 0 -1.8478
+4 16 0.7654 0 -1.8478 0.3827 1 -0.9239 0.7071 1 -0.7071 1.4142 0 -1.4142
+4 16 1.4142 0 -1.4142 0.7071 1 -0.7071 0.9239 1 -0.3827 1.8478 0 -0.7654
+4 16 1.8478 0 -0.7654 0.9239 1 -0.3827 1 1 0 2 0 0
+
+0 FILE parts/3068b.dat
+0 Tile  2 x  2 with Groove
+0 Name: 3068b.dat
+0 Author: Damien Guichard [BrickCaster]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2004-07-26 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-13 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3068bs01.dat
+4 16 -20 0 -20 20 0 -20 20 0 20 -20 0 20
+0
+
+
+0 FILE parts/s/3068bs01.dat
+0 ~Tile  2 x  2 with Groove without Face
+0 Name: s\3068bs01.dat
+0 Author: Damien Guichard [BrickCaster]
+0 !LDRAW_ORG Subpart UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-02 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-08-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 16 p/box5.dat
+4 16 19 8 19 16 8 16 -16 8 16 -19 8 19
+4 16 -19 8 19 -16 8 16 -16 8 -16 -19 8 -19
+4 16 -19 8 -19 -16 8 -16 16 8 -16 19 8 -19
+4 16 19 8 -19 16 8 -16 16 8 16 19 8 19
+1 16 0 8 0 19 0 0 0 -1 0 0 0 19 p/box4.dat
+4 16 20 7 20 19 7 19 -19 7 19 -20 7 20
+4 16 -20 7 20 -19 7 19 -19 7 -19 -20 7 -20
+4 16 -20 7 -20 -19 7 -19 19 7 -19 20 7 -20
+4 16 20 7 -20 19 7 -19 19 7 19 20 7 20
+1 16 0 7 0 20 0 0 0 -7 0 0 0 20 p/box4.dat
+0
+
+0 FILE parts/44728.dat
+0 Bracket  1 x  2 -  2 x  2
+0 Name: 44728.dat
+0 Author: Brent Jackson [bjackson]
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 -10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 -2 20 0 0 0 1 0 0 0 12 p/rect.dat
+1 16 0 4 10 20 0 0 0 0 4 0 -1 0 p/rect.dat
+4 16 -20 0 10 -20 0 -14 -20 8 -14 -20 8 10
+4 16 20 0 10 20 8 10 20 8 -14 20 0 -14
+4 16 -20 8 -10 -20 36 -10 20 36 -10 20 8 -10
+4 16 -20 8 -10 -20 8 -14 -20 36 -14 -20 36 -10
+4 16 20 8 -14 20 8 -10 20 36 -10 20 36 -14
+1 16 0 18 -14 20 0 0 0 0 -18 0 1 0 p/rect3.dat
+4 16 -20 8 6 -20 8 -10 -16 8 -10 -16 8 6
+4 16 16 8 6 16 8 -10 20 8 -10 20 8 6
+4 16 -20 8 10 -20 8 6 20 8 6 20 8 10
+1 16 0 6 -10 -16 0 0 0 0 -2 0 -1 0 p/rect3.dat
+1 16 -16 36 -14 0 0 -4 4 0 0 0 -1 0 p/1-4edge.dat
+1 16 -16 36 -10 0 0 -4 4 0 0 0 -1 0 p/1-4edge.dat
+1 16 -16 36 -10 0 0 -4 4 0 0 0 -4 0 p/1-4cyli.dat
+1 16 -16 36 -14 -4 0 0 0 0 4 0 1 0 p/1-4disc.dat
+1 16 16 36 -14 0 0 4 4 0 0 0 1 0 p/1-4disc.dat
+4 16 -16 36 -14 16 36 -14 16 40 -14 -16 40 -14
+1 16 -16 36 -10 0 0 -4 4 0 0 0 -1 0 p/1-4disc.dat
+1 16 16 36 -10 4 0 0 0 0 4 0 -1 0 p/1-4disc.dat
+1 16 16 36 -10 0 0 4 4 0 0 0 1 0 p/1-4edge.dat
+1 16 16 36 -14 0 0 4 4 0 0 0 1 0 p/1-4edge.dat
+1 16 16 36 -14 0 0 4 4 0 0 0 4 0 p/1-4cyli.dat
+4 16 16 36 -10 -16 36 -10 -16 40 -10 16 40 -10
+4 16 -16 40 -10 -16 40 -14 16 40 -14 16 40 -10
+2 24 -16 40 -14 16 40 -14
+2 24 -16 40 -10 16 40 -10
+2 24 -20 36 -10 -20 8 -10
+2 24 20 36 -10 20 8 -10
+2 24 -20 8 -10 -20 8 10
+2 24 20 8 -10 20 8 10
+2 24 -20 8 -10 -16 8 -10
+2 24 20 8 -10 16 8 -10
+1 16 -10 6 -8 0 0 2 2 0 0 0 2 0 p/box.dat
+1 16 10 6 -8 0 0 2 2 0 0 0 2 0 p/box.dat
+1 16 10 10 -14 0 0 1 1 0 0 0 1 0 p/stud2.dat
+1 16 -10 10 -14 0 0 1 1 0 0 0 1 0 p/stud2.dat
+1 16 -10 30 -14 0 0 1 1 0 0 0 1 0 p/stud2.dat
+1 16 10 30 -14 0 0 1 1 0 0 0 1 0 p/stud2.dat
+1 16 0 4 0 -1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 -2 -16 0 0 0 -4 0 0 0 8 p/box4-1.dat
+0
+
+0 FILE p/box4-1.dat
+0 Box with 4 Faces without 1 Edge
+0 Name: box4-1.dat
+0 Author: Tore Eriksson [Tore_Eriksson]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-07-15 [PTadmin] Official Update 1998-07
+0 !HISTORY 2002-04-05 [hafhead] Made BFC compliant
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 -1 1 1 1 1 1 1 1 -1 -1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE parts/2412b.dat
+0 Tile  1 x  2 Grille with Groove
+0 Name: 2412b.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 -16 4 2 16 4 2
+2 24 -16 4 -2 16 4 -2
+2 24 -16 4 6 -16 4 -6
+2 24 16 4 -6 16 4 6
+2 24 16 8 6 -16 8 6
+2 24 -16 8 6 -16 8 -6
+2 24 -16 8 -6 16 8 -6
+2 24 16 8 -6 16 8 6
+2 24 16 8 6 16 4 6
+2 24 -16 8 6 -16 4 6
+2 24 16 8 -6 16 4 -6
+2 24 -16 8 -6 -16 4 -6
+4 16 16 8 6 16 4 6 -16 4 6 -16 8 6
+4 16 -16 8 6 -16 4 6 -16 4 -6 -16 8 -6
+4 16 -16 8 -6 -16 4 -6 16 4 -6 16 8 -6
+4 16 16 8 -6 16 4 -6 16 4 6 16 8 6
+4 16 16 4 -2 -16 4 -2 -16 4 2 16 4 2
+1 16 3 8 0 0 0 1 0 1 0 1 0 0 p/2-4edge.dat
+2 24 3 8 1 -3 8 1
+1 16 -3 8 0 0 0 -1 0 1 0 1 0 0 p/2-4edge.dat
+2 24 3 8 -1 -3 8 -1
+1 16 3 8 0 0 0 1 0 -1 0 1 0 0 p/2-4disc.dat
+4 16 3 8 1 3 8 -1 -3 8 -1 -3 8 1
+1 16 -3 8 0 0 0 -1 0 -1 0 1 0 0 p/2-4disc.dat
+1 16 3 4 0 0 0 1 0 4 0 1 0 0 p/2-4cyli.dat
+4 16 3 4 1 3 8 1 -3 8 1 -3 4 1
+1 16 -3 4 0 0 0 -1 0 4 0 1 0 0 p/2-4cyli.dat
+4 16 3 8 -1 3 4 -1 -3 4 -1 -3 8 -1
+1 16 3 4 0 0 0 1 0 1 0 1 0 0 p/2-4edge.dat
+2 24 3 4 1 -3 4 1
+1 16 -3 4 0 0 0 -1 0 1 0 1 0 0 p/2-4edge.dat
+2 24 3 4 -1 -3 4 -1
+4 16 19 8 -9 -19 8 -9 -16 8 -6 16 8 -6
+4 16 -19 8 -9 -19 8 9 -16 8 6 -16 8 -6
+4 16 -19 8 9 19 8 9 16 8 6 -16 8 6
+4 16 19 8 9 19 8 -9 16 8 -6 16 8 6
+1 16 0 8 0 19 0 0 0 -1 0 0 0 9 p/box4.dat
+4 16 20 7 -10 -20 7 -10 -19 7 -9 19 7 -9
+4 16 -20 7 -10 -20 7 10 -19 7 9 -19 7 -9
+4 16 -20 7 10 20 7 10 19 7 9 -19 7 9
+4 16 20 7 10 20 7 -10 19 7 -9 19 7 9
+1 16 0 3.5 10 20 0 0 0 0 3.5 0 -1 0 p/rect.dat
+2 24 -20 7 10 -20 7 -10
+2 24 -20 0 10 -20 0 6
+2 24 -20 0 6 -20 4 6
+2 24 -20 0 2 -20 4 2
+2 24 -20 0 -2 -20 4 -2
+2 24 -20 0 -6 -20 4 -6
+2 24 -20 0 -6 -20 0 -10
+4 16 -20 4 10 -20 7 10 -20 7 -10 -20 4 -10
+4 16 -20 0 10 -20 4 10 -20 4 6 -20 0 6
+4 16 -20 0 2 -20 4 2 -20 4 -2 -20 0 -2
+4 16 -20 0 -6 -20 4 -6 -20 4 -10 -20 0 -10
+1 16 0 3.5 -10 20 0 0 0 0 3.5 0 1 0 p/rect.dat
+2 24 20 7 -10 20 7 10
+2 24 20 0 -10 20 0 -6
+2 24 20 0 -6 20 4 -6
+2 24 20 0 -2 20 4 -2
+2 24 20 0 2 20 4 2
+2 24 20 0 6 20 4 6
+2 24 20 0 6 20 0 10
+4 16 20 7 10 20 4 10 20 4 -10 20 7 -10
+4 16 20 4 -6 20 0 -6 20 0 -10 20 4 -10
+4 16 20 4 2 20 0 2 20 0 -2 20 4 -2
+4 16 20 4 10 20 0 10 20 0 6 20 4 6
+4 16 20 0 10 -20 0 10 -20 0 6 20 0 6
+2 24 -20 0 6 20 0 6
+4 16 20 4 6 20 0 6 -20 0 6 -20 4 6
+1 16 -18 4 4 2 0 0 0 1 0 0 0 2 p/rect.dat
+1 16 18 4 4 2 0 0 0 1 0 0 0 2 p/rect.dat
+4 16 20 0 2 20 4 2 -20 4 2 -20 0 2
+1 16 0 0 0 20 0 0 0 1 0 0 0 2 p/rect.dat
+4 16 20 4 -2 20 0 -2 -20 0 -2 -20 4 -2
+1 16 -18 4 -4 2 0 0 0 1 0 0 0 2 p/rect.dat
+1 16 18 4 -4 2 0 0 0 1 0 0 0 2 p/rect.dat
+4 16 20 0 -6 20 4 -6 -20 4 -6 -20 0 -6
+2 24 20 0 -6 -20 0 -6
+4 16 20 0 -6 -20 0 -6 -20 0 -10 20 0 -10
+0
+
+0 FILE parts/43723.dat
+0 Wing  2 x  3 Left
+0 Name: 43723.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+0 !KEYWORDS wedge plate
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 -10 0 20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 0 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 -20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/43722s01.dat
+0
+
+0 FILE parts/43722.dat
+0 Wing  2 x  3 Right
+0 Name: 43722.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+0 !KEYWORDS wedge plate
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 0 20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 0 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 -20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/43722s01.dat
+0
+
+0 FILE parts/s/43722s01.dat
+0 ~Wing  2 x  3 Right without Studs
+0 Name: s\43722s01.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Subpart UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 8 0 0 0 10 0 -8 0 30 0 0 p/box4-4a.dat
+1 16 -10 4 30 -10 0 0 0 0 4 0 -1 0 p/rect2p.dat
+1 16 -10 2 0 -10 1 0 0 0 -2 30 0 0 p/rect3.dat
+3 16 0 0 -30 -20 0 30 0 0 30
+0 BFC INVERTNEXT
+1 16 9.25 8 0 0 0 6.75 0 -4 0 26 0 0 p/box4-4a.dat
+1 16 -6.15 6 26 -8.65 0 0 0 0 2 0 1 0 p/rect2p.dat
+3 16 2.5 4 -26 2.5 4 26 -14.83 4 26
+0 BFC INVERTNEXT
+1 16 0 4 10 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 4 10 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 8 10 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 4 10 0 0 8 0 4 0 -8 0 0 p/3-4cyli.dat
+1 16 0 4 10 0 0 -8 0 4 0 -8 0 0 p/3-16cyli.dat
+1 16 0 4 10 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 0 8 10 0 0 -8 0 1 0 -8 0 0 p/3-16edge.dat
+1 16 0 4 10 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 0 8 10 0 0 8 0 1 0 -8 0 0 p/3-4edge.dat
+1 16 0 8 10 2 0 0 0 -1 0 0 0 2 p/ring3.dat
+1 16 0 4 -10 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 0 4 -10 0 0 8 0 4 0 8 0 0 p/2-4cyli.dat
+1 16 0 8 -10 0 0 8 0 1 0 8 0 0 p/2-4edge.dat
+1 16 0 4 -10 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 0 4 -10 0 0 -8 0 4 0 8 0 0 p/3-16cyli.dat
+1 16 0 8 -10 0 0 -8 0 1 0 8 0 0 p/3-16edge.dat
+1 16 0 8 -10 0 0 2 0 -1 0 2 0 0 p/2-4ring3.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 4 0 0 0 -6 p/1-4cyli.dat
+1 16 0 8 -10 6 0 0 0 1 0 0 0 -6 p/1-4edge.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 4 0 0 0 6 p/3-8cyli.dat
+1 16 0 8 -10 6 0 0 0 1 0 0 0 6 p/3-8edge.dat
+1 16 -14.55 6 25.18 0 -1 -0.28 2 0 0 0 0 0.81 p/rect.dat
+0 BFC INVERTNEXT
+1 16 -14.27 8 18.6 1.72 0 1.73 0 -4 0 0.57 0 -5.2 p/box3u8p.dat
+1 16 -10.1 6 11.8 0 -1 -0.73 -2 0 0 0 0 2.18 p/rect.dat
+1 16 1.16 6 -21.98 -1.34 -1 0 0 0 2 4 0 0 p/rect.dat
+1 16 -2.55 6 -10.75 -1.67 -1 0 0 0 2 5 0 0 p/rect.dat
+1 16 -13.08 6 9.25 1.19 1 0 0 0 2 -3.57 0 0 p/rect3.dat
+1 16 -9.64 6 6.31 0 0 2.25 -2 0 0 0 1 0.63 p/rect3.dat
+1 16 -8.69 6 9.81 0 0 0.69 -2 0 0 0 -1 0.19 p/rect3.dat
+1 16 -7.53 6 -6.96 0 0 0.12 -2 0 0 0 -1 0.04 p/rect3.dat
+1 16 -18.865 6 26.61 1.128 1 0 0 0 2 -3.38 0 0 p/rect3.dat
+1 16 -3.833 6 -18.5 3.833 1 0 0 0 2 -11.5 0 0 p/rect3.dat
+1 16 -0.45 6 -15.87 -0.45 0 0 0 0 2 0.13 -1 0 p/rect2p.dat
+1 16 -0.08 6 -17.985 -0.08 0 0 0 0 2 0.015 1 0 p/rect2p.dat
+4 16 0 8 -30 20 8 -30 16 8 -26 2.5 8 -26
+4 16 20 8 30 16 8 26 16 8 -26 20 8 -30
+4 16 -20 8 30 -14.83 8 26 16 8 26 20 8 30
+4 16 -17.73 8 23.23 -14.27 8 24.37 -14.83 8 26 -20 8 30
+4 16 -9.38 8 9.62 -10.83 8 13.98 -14.27 8 12.83 -11.89 8 5.68
+4 16 -9.38 8 9.62 -11.89 8 5.68 -7.39 8 6.94 -8 8 10
+4 16 -7.68 8 -7 0 8 -30 2.5 8 -26 -7.4 8 -6.95
+4 16 -7.4 8 -6.95 2.5 8 -26 -4.243 8 -5.757 -5.657 8 -4.343
+4 16 -5.657 8 -4.343 -4.243 8 -5.757 -2.269 8 -4.457 -3.061 8 -2.609
+4 16 -3.061 8 -2.609 -2.296 8 -4.457 0 8 -4 0 8 -2
+4 16 -0.93 8 -15.74 -0.19 8 -17.97 0 8 -18 0 8 -16
+4 16 -11.89 4 5.68 -5.657 4 -4.343 -4.87 4 -3.83 -8.38 4 6.65
+4 16 -7.68 4 -7 -7.4 4 -7 -5.657 4 -4.343 -11.9 4 5.7
+2 24 -11.89 4 5.68 -7.68 4 -7
+2 24 -17.73 4 23.23 -14.27 4 12.83
+0
+
+0 FILE parts/2780.dat
+0 Technic Pin with Friction and Slots
+0 Name: 2780.dat
+0 Author: Guy Vivan [guyvivan] 
+0 !LDRAW_ORG Part UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2008-08-01 [technog] Changed connnect5.dat to confric5.dat (2004-05-16)
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 0 1 0 0 0 1 1 0 0 p/confric5.dat
+1 16 0 0 0 0 -1 0 0 0 1 1 0 0 p/confric5.dat
+0
+
+0 FILE parts/3702.dat
+0 Technic Brick  1 x  8 with Holes
+0 Name: 3702.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 -60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 40 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 40 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 60 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 60 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -40 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -40 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -60 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -60 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 76 24 6 -76 24 6
+2 24 76 24 -6 -76 24 -6
+2 24 80 24 10 -80 24 10
+2 24 80 24 -10 -80 24 -10
+0 BFC INVERTNEXT
+1 16 10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -30 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -50 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 72 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -72 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 68 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -68 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 12 18 6 12 10 6 8 10 6 8 18 6
+4 16 12 18 -6 8 18 -6 8 10 -6 12 10 -6
+4 16 32 18 6 32 10 6 28 10 6 28 18 6
+4 16 32 18 -6 28 18 -6 28 10 -6 32 10 -6
+4 16 52 18 6 52 10 6 48 10 6 48 18 6
+4 16 52 18 -6 48 18 -6 48 10 -6 52 10 -6
+4 16 -8 18 6 -8 10 6 -12 10 6 -12 18 6
+4 16 -8 18 -6 -12 18 -6 -12 10 -6 -8 10 -6
+4 16 -28 18 6 -28 10 6 -32 10 6 -32 18 6
+4 16 -28 18 -6 -32 18 -6 -32 10 -6 -28 10 -6
+4 16 -48 18 6 -48 10 6 -52 10 6 -52 18 6
+4 16 -48 18 -6 -52 18 -6 -52 10 -6 -48 10 -6
+4 16 76 24 6 76 4 6 68 4 6 68 18 6
+4 16 76 24 -6 68 18 -6 68 4 -6 76 4 -6
+4 16 -68 18 6 -68 4 6 -76 4 6 -76 24 6
+4 16 -68 18 -6 -76 24 -6 -76 4 -6 -68 4 -6
+4 16 76 24 6 68 18 6 -68 18 6 -76 24 6
+4 16 76 24 -6 -76 24 -6 -68 18 -6 68 18 -6
+4 16 80 24 10 76 24 6 -76 24 6 -80 24 10
+4 16 80 24 -10 -80 24 -10 -76 24 -6 76 24 -6
+4 16 80 24 10 80 24 -10 76 24 -6 76 24 6
+4 16 -80 24 10 -76 24 6 -76 24 -6 -80 24 -10
+0 BFC INVERTNEXT
+1 16 20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -40 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -60 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -40 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -60 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -80 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -40 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -40 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -60 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -60 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 12 18 10 8 18 10 8 2 10 12 2 10
+4 16 12 18 -10 12 2 -10 8 2 -10 8 18 -10
+4 16 32 18 10 28 18 10 28 2 10 32 2 10
+4 16 32 18 -10 32 2 -10 28 2 -10 28 18 -10
+4 16 52 18 10 48 18 10 48 2 10 52 2 10
+4 16 52 18 -10 52 2 -10 48 2 -10 48 18 -10
+4 16 -8 18 10 -12 18 10 -12 2 10 -8 2 10
+4 16 -8 18 -10 -8 2 -10 -12 2 -10 -12 18 -10
+4 16 -28 18 10 -32 18 10 -32 2 10 -28 2 10
+4 16 -28 18 -10 -28 2 -10 -32 2 -10 -32 18 -10
+4 16 -48 18 10 -52 18 10 -52 2 10 -48 2 10
+4 16 -48 18 -10 -48 2 -10 -52 2 -10 -52 18 -10
+4 16 80 24 10 -80 24 10 -68 18 10 68 18 10
+4 16 80 24 -10 68 18 -10 -68 18 -10 -80 24 -10
+4 16 80 0 10 68 2 10 -68 2 10 -80 0 10
+4 16 80 0 -10 -80 0 -10 -68 2 -10 68 2 -10
+4 16 80 24 10 68 18 10 68 2 10 80 0 10
+4 16 80 24 -10 80 0 -10 68 2 -10 68 18 -10
+4 16 -80 24 10 -80 0 10 -68 2 10 -68 18 10
+4 16 -80 24 -10 -68 18 -10 -68 2 -10 -80 0 -10
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -50 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -70 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE parts/32062.dat
+0 Technic Axle  2 Notched
+0 Name: 32062.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS cross-axle, bar, cut, slot
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2004-07-10 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 -8 0 0 0 16 0 -1 0 0 0 0 1 p/axlehol8.dat
+1 16 11 0 0 0 9 0 -1 0 0 0 0 1 p/axlehol8.dat
+1 16 -20 0 0 0 9 0 -1 0 0 0 0 1 p/axlehol8.dat
+1 16 -20 0 0 0 1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 -8 0 0 0 1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 11 0 0 0 1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 -20 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 -11 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 -8 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 8 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 11 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 -20 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol9.dat
+1 16 20 0 0 0 -1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 8 0 0 0 -1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 -11 0 0 0 -1 0 -1 0 0 0 0 1 p/axleend.dat
+1 16 20 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol2.dat
+1 16 20 0 0 0 1 0 -1 0 0 0 0 1 p/axlehol9.dat
+2 24 -11 -5.58 2 -11 -3.58 2
+2 24 -11 -3.58 2 -8 -3.58 2
+2 24 -8 -3.58 2 -8 -5.58 2
+2 24 8 -5.58 2 8 -3.58 2
+2 24 8 -3.58 2 11 -3.58 2
+2 24 11 -3.58 2 11 -5.58 2
+2 24 -11 -3.58 2 -11 -4 0
+2 24 -8 -3.58 2 -8 -4 0
+2 24 8 -3.58 2 8 -4 0
+2 24 11 -3.58 2 11 -4 0
+5 24 -11 -4 0 -8 -4 0 -11 -3.58 2 -11 -3.58 -2
+5 24 8 -4 0 11 -4 0 8 -3.58 2 8 -3.58 -2
+2 24 -11 -3.58 -2 -11 -4 0
+2 24 -8 -3.58 -2 -8 -4 0
+2 24 8 -3.58 -2 8 -4 0
+2 24 11 -3.58 -2 11 -4 0
+2 24 -11 -5.58 -2 -11 -3.58 -2
+2 24 -11 -3.58 -2 -8 -3.58 -2
+2 24 -8 -3.58 -2 -8 -5.58 -2
+2 24 8 -5.58 -2 8 -3.58 -2
+2 24 8 -3.58 -2 11 -3.58 -2
+2 24 11 -3.58 -2 11 -5.58 -2
+4 16 -8 -2 2 -11 -2 2 -11 -3.58 2 -8 -3.58 2
+4 16 11 -2 2 8 -2 2 8 -3.58 2 11 -3.58 2
+4 16 -11 -3.58 2 -11 -4 0 -8 -4 0 -8 -3.58 2
+4 16 8 -3.58 2 8 -4 0 11 -4 0 11 -3.58 2
+4 16 -8 -3.58 -2 -8 -4 0 -11 -4 0 -11 -3.58 -2
+4 16 11 -3.58 -2 11 -4 0 8 -4 0 8 -3.58 -2
+4 16 -11 -2 -2 -8 -2 -2 -8 -3.58 -2 -11 -3.58 -2
+4 16 8 -2 -2 11 -2 -2 11 -3.58 -2 8 -3.58 -2
+2 24 -11 -2 -5.58 -11 -2 -3.58
+2 24 -11 -2 -3.58 -8 -2 -3.58
+2 24 -8 -2 -3.58 -8 -2 -5.58
+2 24 8 -2 -5.58 8 -2 -3.58
+2 24 8 -2 -3.58 11 -2 -3.58
+2 24 11 -2 -3.58 11 -2 -5.58
+2 24 -11 -2 -3.58 -11 0 -4
+2 24 -8 -2 -3.58 -8 0 -4
+2 24 8 -2 -3.58 8 0 -4
+2 24 11 -2 -3.58 11 0 -4
+5 24 -11 0 -4 -8 0 -4 -11 -2 -3.58 -11 2 -3.58
+5 24 8 0 -4 11 0 -4 8 -2 -3.58 8 2 -3.58
+2 24 -11 2 -3.58 -11 0 -4
+2 24 -8 2 -3.58 -8 0 -4
+2 24 8 2 -3.58 8 0 -4
+2 24 11 2 -3.58 11 0 -4
+2 24 -11 2 -5.58 -11 2 -3.58
+2 24 -11 2 -3.58 -8 2 -3.58
+2 24 -8 2 -3.58 -8 2 -5.58
+2 24 8 2 -5.58 8 2 -3.58
+2 24 8 2 -3.58 11 2 -3.58
+2 24 11 2 -3.58 11 2 -5.58
+4 16 -8 -2 -2 -11 -2 -2 -11 -2 -3.58 -8 -2 -3.58
+4 16 11 -2 -2 8 -2 -2 8 -2 -3.58 11 -2 -3.58
+4 16 -11 -2 -3.58 -11 0 -4 -8 0 -4 -8 -2 -3.58
+4 16 8 -2 -3.58 8 0 -4 11 0 -4 11 -2 -3.58
+4 16 -8 2 -3.58 -8 0 -4 -11 0 -4 -11 2 -3.58
+4 16 11 2 -3.58 11 0 -4 8 0 -4 8 2 -3.58
+4 16 -11 2 -2 -8 2 -2 -8 2 -3.58 -11 2 -3.58
+4 16 8 2 -2 11 2 -2 11 2 -3.58 8 2 -3.58
+2 24 -11 5.58 -2 -11 3.58 -2
+2 24 -11 3.58 -2 -8 3.58 -2
+2 24 -8 3.58 -2 -8 5.58 -2
+2 24 8 5.58 -2 8 3.58 -2
+2 24 8 3.58 -2 11 3.58 -2
+2 24 11 3.58 -2 11 5.58 -2
+2 24 -11 3.58 -2 -11 4 0
+2 24 -8 3.58 -2 -8 4 0
+2 24 8 3.58 -2 8 4 0
+2 24 11 3.58 -2 11 4 0
+5 24 -11 4 0 -8 4 0 -11 3.58 -2 -11 3.58 2
+5 24 8 4 0 11 4 0 8 3.58 -2 8 3.58 2
+2 24 -11 3.58 2 -11 4 0
+2 24 -8 3.58 2 -8 4 0
+2 24 8 3.58 2 8 4 0
+2 24 11 3.58 2 11 4 0
+2 24 -11 5.58 2 -11 3.58 2
+2 24 -11 3.58 2 -8 3.58 2
+2 24 -8 3.58 2 -8 5.58 2
+2 24 8 5.58 2 8 3.58 2
+2 24 8 3.58 2 11 3.58 2
+2 24 11 3.58 2 11 5.58 2
+4 16 -8 2 -2 -11 2 -2 -11 3.58 -2 -8 3.58 -2
+4 16 11 2 -2 8 2 -2 8 3.58 -2 11 3.58 -2
+4 16 -11 3.58 -2 -11 4 0 -8 4 0 -8 3.58 -2
+4 16 8 3.58 -2 8 4 0 11 4 0 11 3.58 -2
+4 16 -8 3.58 2 -8 4 0 -11 4 0 -11 3.58 2
+4 16 11 3.58 2 11 4 0 8 4 0 8 3.58 2
+4 16 -11 2 2 -8 2 2 -8 3.58 2 -11 3.58 2
+4 16 8 2 2 11 2 2 11 3.58 2 8 3.58 2
+2 24 -11 2 5.58 -11 2 3.58
+2 24 -11 2 3.58 -8 2 3.58
+2 24 -8 2 3.58 -8 2 5.58
+2 24 8 2 5.58 8 2 3.58
+2 24 8 2 3.58 11 2 3.58
+2 24 11 2 3.58 11 2 5.58
+2 24 -11 2 3.58 -11 0 4
+2 24 -8 2 3.58 -8 0 4
+2 24 8 2 3.58 8 0 4
+2 24 11 2 3.58 11 0 4
+5 24 -11 0 4 -8 0 4 -11 2 3.58 -11 -2 3.58
+5 24 8 0 4 11 0 4 8 2 3.58 8 -2 3.58
+2 24 -11 -2 3.58 -11 0 4
+2 24 -8 -2 3.58 -8 0 4
+2 24 8 -2 3.58 8 0 4
+2 24 11 -2 3.58 11 0 4
+2 24 -11 -2 5.58 -11 -2 3.58
+2 24 -11 -2 3.58 -8 -2 3.58
+2 24 -8 -2 3.58 -8 -2 5.58
+2 24 8 -2 5.58 8 -2 3.58
+2 24 8 -2 3.58 11 -2 3.58
+2 24 11 -2 3.58 11 -2 5.58
+4 16 -8 2 2 -11 2 2 -11 2 3.58 -8 2 3.58
+4 16 11 2 2 8 2 2 8 2 3.58 11 2 3.58
+4 16 -11 2 3.58 -11 0 4 -8 0 4 -8 2 3.58
+4 16 8 2 3.58 8 0 4 11 0 4 11 2 3.58
+4 16 -8 -2 3.58 -8 0 4 -11 0 4 -11 -2 3.58
+4 16 11 -2 3.58 11 0 4 8 0 4 8 -2 3.58
+4 16 -11 -2 2 -8 -2 2 -8 -2 3.58 -11 -2 3.58
+4 16 8 -2 2 11 -2 2 11 -2 3.58 8 -2 3.58
+2 24 -11 2 2 -8 2 2
+2 24 -11 2 -2 -8 2 -2
+2 24 -11 -2 2 -8 -2 2
+2 24 -11 -2 -2 -8 -2 -2
+2 24 8 2 2 11 2 2
+2 24 8 2 -2 11 2 -2
+2 24 8 -2 2 11 -2 2
+2 24 8 -2 -2 11 -2 -2
+0
+
+0 FILE p/axleend.dat
+0 Axle End Surface
+0 Name: axleend.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 6 0 0 5.602 0 2 2 0 2 0 0 0
+4 16 -6 0 0 0 0 0 -2 0 2 -5.602 0 2
+4 16 6 0 0 0 0 0 2 0 -2 5.602 0 -2
+4 16 -6 0 0 -5.602 0 -2 -2 0 -2 0 0 0
+4 16 0 0 6 0 0 0 2 0 2 2 0 5.602
+4 16 0 0 6 -2 0 5.602 -2 0 2 0 0 0
+4 16 0 0 -6 2 0 -5.602 2 0 -2 0 0 0
+4 16 0 0 -6 0 0 0 -2 0 -2 -2 0 -5.602
+0
+
+0 FILE parts/2431.dat
+0 Tile  1 x  4 with Groove
+0 Name: 2431.dat
+0 Author: Santeri Piippo [arezey]
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/2431s01.dat
+4 16 40 0 -10 40 0 10 -40 0 10 -40 0 -10
+0 //
+
+0 FILE parts/s/2431s01.dat
+0 ~Tile  1 x  4 with Groove without Top Face
+0 Name: s\2431s01.dat
+0 Author: Santeri Piippo [arezey]
+0 !LDRAW_ORG Subpart UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 40 0 0 0 7 0 0 0 10 p/box4.dat
+1 16 0 7 0 39 0 0 0 1 0 0 0 9 p/box4.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 36 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 -39 8 9 -36 8 6 -36 8 -6 -39 8 -9
+4 16 39 8 -9 36 8 -6 36 8 6 39 8 9
+4 16 39 8 9 36 8 6 -36 8 6 -39 8 9
+4 16 -39 8 -9 -36 8 -6 36 8 -6 39 8 -9
+4 16 -40 7 10 -39 7 9 -39 7 -9 -40 7 -10
+4 16 40 7 -10 39 7 -9 39 7 9 40 7 10
+4 16 40 7 10 39 7 9 -39 7 9 -40 7 10
+4 16 -40 7 -10 -39 7 -9 39 7 -9 40 7 -10
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 //
+
+0 FILE p/box4.dat
+0 Box with 4 Faces (2 Parallel Pairs) and All Edges
+0 Name: box4.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-03 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 -1 0 -1 1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE parts/4274.dat
+0 Technic Pin 1/2
+0 Name: 4274.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-06-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 0 -1 0 6 0 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 0 -1 0 8 0 0 0 0 8 p/4-4edge.dat
+1 16 0 0 0 0 1 0 0 0 1 1 0 0 p/connect.dat
+1 16 0 0 0 0 -1 0 0 0 1 1 0 0 p/stud2a.dat
+1 16 0 0 0 0 -1 0 0 0 2 2 0 0 p/ring3.dat
+0
+
+0 FILE p/connect.dat
+0 Technic Pin 1.0 with Base Collar
+0 Name: connect.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-06-30 [OrionP] Applied lip code from connect5.dat
+0 !HISTORY 2002-07-03 [sbliss] Made BFC compliant, replaced quads with ring3
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2004-12-18 [guyvivan] Improve holes and use more primitives
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-15 [cwdee] Update ring3 to 4-4ring3
+0 !HISTORY 2010-02-19 [Philo] Added condlines
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 5.801 -18 1 5.543 -18 2.296
+2 24 -5.543 -18 2.296 -5.801 -18 1
+2 24 -5.801 -18 -1 -5.543 -18 -2.296
+2 24 5.543 -18 -2.296 5.801 -18 -1
+2 24 6.301 -18 1 6.005 -18 2.488
+2 24 -6.005 -18 2.488 -6.301 -18 1
+2 24 -6.301 -18 -1 -6.005 -18 -2.488
+2 24 6.005 -18 -2.488 6.301 -18 -1
+2 24 6.301 -20 1 6.005 -20 2.488
+2 24 -6.005 -20 2.488 -6.301 -20 1
+2 24 -6.301 -20 -1 -6.005 -20 -2.488
+2 24 6.005 -20 -2.488 6.301 -20 -1
+2 24 3.801 -20 1 3.696 -20 1.531
+2 24 -3.696 -20 1.531 -3.801 -20 1
+2 24 -3.801 -20 -1 -3.696 -20 -1.531
+2 24 3.696 -20 -1.531 3.801 -20 -1
+2 24 5.801 -12.5 1 5.801 -18 1
+2 24 5.801 -18 1 6.301 -18 1
+2 24 6.301 -18 1 6.301 -20 1
+2 24 6.301 -20 1 3.801 -20 1
+2 24 3.801 -20 1 3.801 -12.5 1
+2 24 5.801 -12.5 -1 5.801 -18 -1
+2 24 5.801 -18 -1 6.301 -18 -1
+2 24 6.301 -18 -1 6.301 -20 -1
+2 24 6.301 -20 -1 3.801 -20 -1
+2 24 3.801 -20 -1 3.801 -12.5 -1
+2 24 -5.801 -12.5 1 -5.801 -18 1
+2 24 -5.801 -18 1 -6.301 -18 1
+2 24 -6.301 -18 1 -6.301 -20 1
+2 24 -6.301 -20 1 -3.801 -20 1
+2 24 -3.801 -20 1 -3.801 -12.5 1
+2 24 -5.801 -12.5 -1 -5.801 -18 -1
+2 24 -5.801 -18 -1 -6.301 -18 -1
+2 24 -6.301 -18 -1 -6.301 -20 -1
+2 24 -6.301 -20 -1 -3.801 -20 -1
+2 24 -3.801 -20 -1 -3.801 -12.5 -1
+4 16 5.801 -11.5 1 5.543 -11.5 2.296 5.543 -18 2.296 5.801 -18 1
+4 16 -5.543 -11.5 2.296 -5.801 -11.5 1 -5.801 -18 1 -5.543 -18 2.296
+4 16 -5.801 -11.5 -1 -5.543 -11.5 -2.296 -5.543 -18 -2.296 -5.801 -18 -1
+4 16 5.543 -11.5 -2.296 5.801 -11.5 -1 5.801 -18 -1 5.543 -18 -2.296
+4 16 5.801 -18 1 5.543 -18 2.296 6.005 -18 2.488 6.301 -18 1
+4 16 -5.543 -18 2.296 -5.801 -18 1 -6.301 -18 1 -6.005 -18 2.488
+4 16 -5.801 -18 -1 -5.543 -18 -2.296 -6.005 -18 -2.488 -6.301 -18 -1
+4 16 5.543 -18 -2.296 5.801 -18 -1 6.301 -18 -1 6.005 -18 -2.488
+4 16 6.301 -18 1 6.005 -18 2.488 6.005 -20 2.488 6.301 -20 1
+4 16 -6.005 -18 2.488 -6.301 -18 1 -6.301 -20 1 -6.005 -20 2.488
+4 16 -6.301 -18 -1 -6.005 -18 -2.488 -6.005 -20 -2.488 -6.301 -20 -1
+4 16 6.005 -18 -2.488 6.301 -18 -1 6.301 -20 -1 6.005 -20 -2.488
+4 16 5.801 -12.5 1 5.801 -18 1 3.801 -18 1 3.801 -12.5 1
+4 16 3.801 -18 1 6.301 -18 1 6.301 -20 1 3.801 -20 1
+4 16 6.301 -20 1 6.005 -20 2.488 3.696 -20 1.531 3.801 -20 1
+4 16 -6.005 -20 2.488 -6.301 -20 1 -3.801 -20 1 -3.696 -20 1.531
+4 16 -3.801 -20 1 -6.301 -20 1 -6.301 -18 1 -3.801 -18 1
+4 16 -3.801 -18 1 -5.801 -18 1 -5.801 -12.5 1 -3.801 -12.5 1
+4 16 -5.801 -12.5 -1 -5.801 -18 -1 -3.801 -18 -1 -3.801 -12.5 -1
+4 16 -6.301 -18 -1 -6.301 -20 -1 -3.801 -20 -1 -3.801 -18 -1
+4 16 -6.301 -20 -1 -6.005 -20 -2.488 -3.696 -20 -1.531 -3.801 -20 -1
+4 16 6.005 -20 -2.488 6.301 -20 -1 3.801 -20 -1 3.696 -20 -1.531
+4 16 6.301 -20 -1 6.301 -18 -1 3.801 -18 -1 3.801 -20 -1
+4 16 3.801 -18 -1 5.801 -18 -1 5.801 -12.5 -1 3.801 -12.5 -1
+4 16 3.801 -20 1 3.696 -20 1.531 3.696 -11.5 1.531 3.801 -11.5 1
+4 16 -3.696 -20 1.531 -3.801 -20 1 -3.801 -11.5 1 -3.696 -11.5 1.531
+4 16 -3.801 -20 -1 -3.696 -20 -1.531 -3.696 -11.5 -1.531 -3.801 -11.5 -1
+4 16 3.696 -20 -1.531 3.801 -20 -1 3.801 -11.5 -1 3.696 -11.5 -1.531
+1 16 0 -11.5 0 6 0 0 0 9.5 0 0 0 6 p/4-4cyli.dat
+1 16 0 -18 0 -5.54328 0 2.2961 0 6.5 0 -2.2961 0 -5.54328 p/3-8cyli.dat
+1 16 0 -18 0 5.54328 0 -2.2961 0 6.5 0 2.2961 0 5.54328 p/3-8cyli.dat
+1 16 0 -20 0 6.00522 0 -2.48744 0 2 0 2.48744 0 6.00522 p/3-8cyli.dat
+1 16 0 -20 0 -6.00522 0 2.48744 0 2 0 -2.48744 0 -6.00522 p/3-8cyli.dat
+1 16 0 -2 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 -2 0 8 0 0 0 2 0 0 0 8 p/4-4cyli.dat
+1 16 0 -2 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -11.5 0 4 0 0 0 11.5 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 3.69552 0 -1.53073 0 8.5 0 1.53073 0 3.69552 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 -3.69552 0 1.53073 0 8.5 0 -1.53073 0 -3.69552 p/3-8cyli.dat
+1 16 0 -2 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+1 16 0 -20 0 1.84776 0 -0.76537 0 1 0 0.76537 0 1.84776 p/3-8ring2.dat
+1 16 0 -20 0 -1.84776 0 0.76537 0 1 0 -0.76537 0 -1.84776 p/3-8ring2.dat
+1 16 0 -18 0 0.46194 0 -0.19134 0 -1 0 0.19134 0 0.46194 p/3-8rin12.dat
+1 16 0 -18 0 -0.46194 0 0.19134 0 -1 0 -0.19134 0 -0.46194 p/3-8rin12.dat
+1 16 0 -20 0 0.46194 0 -0.19134 0 1 0 0.19134 0 0.46194 p/3-8rin12.dat
+1 16 0 -20 0 -0.46194 0 0.19134 0 1 0 -0.19134 0 -0.46194 p/3-8rin12.dat
+1 16 0 -18 0 5.54328 0 -2.2961 0 1 0 -2.2961 0 -5.54328 p/3-8edge.dat
+1 16 0 -18 0 -5.54328 0 2.2961 0 1 0 2.2961 0 5.54328 p/3-8edge.dat
+1 16 0 -18 0 -6.00522 0 2.48744 0 1 0 2.48744 0 6.00522 p/3-8edge.dat
+1 16 0 -18 0 6.00522 0 -2.48744 0 1 0 -2.48744 0 -6.00522 p/3-8edge.dat
+1 16 0 -20 0 -6.00522 0 2.48744 0 1 0 2.48744 0 6.00522 p/3-8edge.dat
+1 16 0 -20 0 6.00522 0 -2.48744 0 1 0 -2.48744 0 -6.00522 p/3-8edge.dat
+1 16 0 -20 0 3.69552 0 -1.53073 0 1 0 -1.53073 0 -3.69552 p/3-8edge.dat
+1 16 0 -20 0 -3.69552 0 1.53073 0 1 0 1.53073 0 3.69552 p/3-8edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 4.001 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 4.001 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 6 -12.5 0 0 -2 -0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 6 -12.5 0 0 -2 -0.199 1 0 0 0 0 1 p/1-4cyli.dat
+5 24 -5.543 -18 2.296 -5.543 -11.5 2.296 -5.801 -11.5 1 -4.243 -18 4.243
+5 24 -6.005 -20 2.488 -6.005 -18 2.488 -6.301 -18 1 -4.596 -20 4.596
+5 24 5.543 -18 2.296 5.543 -11.5 2.296 5.801 -11.5 1 4.243 -18 4.243
+5 24 6.005 -20 2.488 6.005 -18 2.488 6.301 -18 1 4.596 -20 4.596
+5 24 -5.543 -18 -2.296 -5.543 -11.5 -2.296 -5.801 -11.5 -1 -4.243 -18 -4.243
+5 24 -6.005 -20 -2.488 -6.005 -18 -2.488 -6.301 -18 -1 -4.596 -20 -4.596
+5 24 5.543 -18 -2.296 5.543 -11.5 -2.296 5.801 -11.5 -1 4.243 -18 -4.243
+5 24 6.005 -20 -2.488 6.005 -18 -2.488 6.301 -18 -1 4.596 -20 -4.596
+0 //
+
+0 FILE p/3-8ring2.dat
+0 Ring  2 x 0.375
+0 Name: 3-8ring2.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 2 0 0 3 0 0 2.7717 0 1.1481 1.8478 0 0.7654
+4 16 1.8478 0 0.7654 2.7717 0 1.1481 2.1213 0 2.1213 1.4142 0 1.4142
+4 16 1.4142 0 1.4142 2.1213 0 2.1213 1.1481 0 2.7717 0.7654 0 1.8478
+4 16 0.7654 0 1.8478 1.1481 0 2.7717 0 0 3 0 0 2
+4 16 0 0 2 0 0 3 -1.1481 0 2.7717 -0.7654 0 1.8478
+4 16 -0.7654 0 1.8478 -1.1481 0 2.7717 -2.1213 0 2.1213 -1.4142 0 1.4142
+
+0 end of file 
+
+
+
+0 FILE parts/32123a.dat
+0 Technic Bush 1/2 Smooth with Axle Hole Reduced
+0 Name: 32123a.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS small pulley, half-bushing, ring, round
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2004-05-10 [guyvivan] Made BFC compliant, replace center by axl2hole.dat
+0 !HISTORY 2004-06-20 [guyvivan] Use Torus primitive
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from 4265c (2005-07-07)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2010-02-09 [arezey] Corrected axl2hole.dat reference
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 -5 1 0 0 0 0 1 0 10 0 p/axl2hole.dat
+1 16 0 0 -5 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 0 -2.5 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 0 2.5 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 0 5 9 0 0 0 0 9 0 1 0 p/4-4edge.dat
+1 16 0 0 -5 9 0 0 0 0 9 0 2.5 0 p/4-4cyli.dat
+1 16 0 0 2.5 9 0 0 0 0 9 0 2.5 0 p/4-4cyli.dat
+1 16 0 0 -5 3 0 0 0 0 3 0 1 0 p/ring2.dat
+1 16 0 0 5 3 0 0 0 0 3 0 -1 0 p/ring2.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 9 0 0 0 0 -9 0 10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 0 0 -9 -9 0 0 0 10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 -9 0 0 0 0 9 0 10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 0 0 9 9 0 0 0 10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 -9 0 0 0 0 -9 0 -10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 0 0 9 -9 0 0 0 -10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 9 0 0 0 0 9 0 -10 0 p/t04i2500.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 0 0 -9 9 0 0 0 -10 0 p/t04i2500.dat
+0
+
+0 FILE p/t04i2500.dat
+0 Torus Inside  1 x 0.2500 x 0.25
+0 Name: t04i2500.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-12-20 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-22 [Philo] Rebuilt CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+0 // Major Radius: 4
+0 // Tube(Minor) Radius: 1
+0 // Segments(Sweep): 4/16 = 0.25
+0 // 1  9  0 0 0  1 0 0  0 1 0  0 0 1 4-4edge.dat
+0 // 1  12  1 0 0 0.2500 0 0  0 0 0.2500  0 1 0  4-4edge.dat
+
+4 16 0.75 0 0 0.6929 0 0.287 0.7105 0.0957 0.2943 0.769 0.0957 0
+4 16 0.769 0.0957 0 0.7105 0.0957 0.2943 0.7606 0.1768 0.315 0.8232 0.1768 0
+4 16 0.8232 0.1768 0 0.7606 0.1768 0.315 0.8355 0.231 0.3461 0.9043 0.231 0
+4 16 0.9043 0.231 0 0.8355 0.231 0.3461 0.9239 0.25 0.3827 1 0.25 0
+4 16 0.6929 0 0.287 0.5303 0 0.5303 0.5438 0.0957 0.5438 0.7105 0.0957 0.2943
+4 16 0.7105 0.0957 0.2943 0.5438 0.0957 0.5438 0.5821 0.1768 0.5821 0.7606 0.1768 0.315
+4 16 0.7606 0.1768 0.315 0.5821 0.1768 0.5821 0.6394 0.231 0.6394 0.8355 0.231 0.3461
+4 16 0.8355 0.231 0.3461 0.6394 0.231 0.6394 0.7071 0.25 0.7071 0.9239 0.25 0.3827
+4 16 0.5303 0 0.5303 0.287 0 0.6929 0.2943 0.0957 0.7105 0.5438 0.0957 0.5438
+4 16 0.5438 0.0957 0.5438 0.2943 0.0957 0.7105 0.315 0.1768 0.7606 0.5821 0.1768 0.5821
+4 16 0.5821 0.1768 0.5821 0.315 0.1768 0.7606 0.3461 0.231 0.8355 0.6394 0.231 0.6394
+4 16 0.6394 0.231 0.6394 0.3461 0.231 0.8355 0.3827 0.25 0.9239 0.7071 0.25 0.7071
+4 16 0.287 0 0.6929 0 0 0.75 0 0.0957 0.769 0.2943 0.0957 0.7105
+4 16 0.2943 0.0957 0.7105 0 0.0957 0.769 0 0.1768 0.8232 0.315 0.1768 0.7606
+4 16 0.315 0.1768 0.7606 0 0.1768 0.8232 0 0.231 0.9043 0.3461 0.231 0.8355
+4 16 0.3461 0.231 0.8355 0 0.231 0.9043 0 0.25 1 0.3827 0.25 0.9239
+
+0 // conditional lines
+5 24 0.75 0 0 0.6929 0 0.287 0.769 0.0957 0 0.75 -0.1036 0
+5 24 0.75 0 0 0.769 0.0957 0 0.6929 0 0.287 0.75 0 -0.3107
+5 24 0.769 0.0957 0 0.7105 0.0957 0.2943 0.8232 0.1768 0 0.75 0 0
+5 24 0.769 0.0957 0 0.8232 0.1768 0 0.7105 0.0957 0.2943 0.769 0.0957 -0.3185
+5 24 0.8232 0.1768 0 0.7606 0.1768 0.315 0.9043 0.231 0 0.769 0.0957 0
+5 24 0.8232 0.1768 0 0.9043 0.231 0 0.7606 0.1768 0.315 0.8232 0.1768 -0.341
+5 24 0.9043 0.231 0 0.8355 0.231 0.3461 1 0.25 0 0.8232 0.1768 0
+5 24 0.9043 0.231 0 1 0.25 0 0.8355 0.231 0.3461 0.9043 0.231 -0.3746
+5 24 1 0.25 0 0.9239 0.25 0.3827 1.1036 0.25 0 0.9043 0.231 0
+5 24 0.6929 0 0.287 0.5303 0 0.5303 0.7105 0.0957 0.2943 0.6929 -0.1036 0.287
+5 24 0.6929 0 0.287 0.7105 0.0957 0.2943 0.5303 0 0.5303 0.75 0 0
+5 24 0.7105 0.0957 0.2943 0.5438 0.0957 0.5438 0.7606 0.1768 0.315 0.6929 0 0.287
+5 24 0.7105 0.0957 0.2943 0.7606 0.1768 0.315 0.5438 0.0957 0.5438 0.769 0.0957 0
+5 24 0.7606 0.1768 0.315 0.5821 0.1768 0.5821 0.8355 0.231 0.3461 0.7105 0.0957 0.2943
+5 24 0.7606 0.1768 0.315 0.8355 0.231 0.3461 0.5821 0.1768 0.5821 0.8232 0.1768 0
+5 24 0.8355 0.231 0.3461 0.6394 0.231 0.6394 0.9239 0.25 0.3827 0.7606 0.1768 0.315
+5 24 0.8355 0.231 0.3461 0.9239 0.25 0.3827 0.6394 0.231 0.6394 0.9043 0.231 0
+5 24 0.9239 0.25 0.3827 0.7071 0.25 0.7071 1.0196 0.25 0.4223 0.8355 0.231 0.3461
+5 24 0.5303 0 0.5303 0.287 0 0.6929 0.5438 0.0957 0.5438 0.5303 -0.1036 0.5303
+5 24 0.5303 0 0.5303 0.5438 0.0957 0.5438 0.287 0 0.6929 0.6929 0 0.287
+5 24 0.5438 0.0957 0.5438 0.2943 0.0957 0.7105 0.5821 0.1768 0.5821 0.5303 0 0.5303
+5 24 0.5438 0.0957 0.5438 0.5821 0.1768 0.5821 0.2943 0.0957 0.7105 0.7105 0.0957 0.2943
+5 24 0.5821 0.1768 0.5821 0.315 0.1768 0.7606 0.6394 0.231 0.6394 0.5438 0.0957 0.5438
+5 24 0.5821 0.1768 0.5821 0.6394 0.231 0.6394 0.315 0.1768 0.7606 0.7606 0.1768 0.315
+5 24 0.6394 0.231 0.6394 0.3461 0.231 0.8355 0.7071 0.25 0.7071 0.5821 0.1768 0.5821
+5 24 0.6394 0.231 0.6394 0.7071 0.25 0.7071 0.3461 0.231 0.8355 0.8355 0.231 0.3461
+5 24 0.7071 0.25 0.7071 0.3827 0.25 0.9239 0.7803 0.25 0.7803 0.6394 0.231 0.6394
+5 24 0.287 0 0.6929 0 0 0.75 0.2943 0.0957 0.7105 0.287 -0.1036 0.6929
+5 24 0.287 0 0.6929 0.2943 0.0957 0.7105 0 0 0.75 0.5303 0 0.5303
+5 24 0.2943 0.0957 0.7105 0 0.0957 0.769 0.315 0.1768 0.7606 0.287 0 0.6929
+5 24 0.2943 0.0957 0.7105 0.315 0.1768 0.7606 0 0.0957 0.769 0.5438 0.0957 0.5438
+5 24 0.315 0.1768 0.7606 0 0.1768 0.8232 0.3461 0.231 0.8355 0.2943 0.0957 0.7105
+5 24 0.315 0.1768 0.7606 0.3461 0.231 0.8355 0 0.1768 0.8232 0.5821 0.1768 0.5821
+5 24 0.3461 0.231 0.8355 0 0.231 0.9043 0.3827 0.25 0.9239 0.315 0.1768 0.7606
+5 24 0.3461 0.231 0.8355 0.3827 0.25 0.9239 0 0.231 0.9043 0.6394 0.231 0.6394
+5 24 0.3827 0.25 0.9239 0 0.25 1 0.4223 0.25 1.0196 0.3461 0.231 0.8355
+5 24 0 0 0.75 0 0.0957 0.769 -0.3107 0 0.75 0.287 0 0.6929
+5 24 0 0.0957 0.769 0 0.1768 0.8232 -0.3185 0.0957 0.769 0.2943 0.0957 0.7105
+5 24 0 0.1768 0.8232 0 0.231 0.9043 -0.341 0.1768 0.8232 0.315 0.1768 0.7606
+5 24 0 0.231 0.9043 0 0.25 1 -0.3746 0.231 0.9043 0.3461 0.231 0.8355
+0 // Build by Primitive Generator 2
+
+0 FILE p/ring2.dat
+0 ~Moved to 4-4ring2
+0 Name: ring2.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Ring  2 x 1.0
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4ring2.dat
+
+0 FILE p/axl2hole.dat
+0 Technic Axle Hole Reduced Closed
+0 Name: axl2hole.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from axleho11.dat (2004-11-03)
+0 !HISTORY 2008-07-08 [guyvivan] Reworked (2004-11-04)
+0 !HISTORY 2009-08-31 [mikeheide] Added missing conditional lines
+0 !HISTORY 2009-12-28 [arezey] Re-added lost top/bottom edges
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 5.602 1 2 4 1 2
+2 24 4 1 2 2.5 1 2.5
+2 24 2.5 1 2.5 2 1 4
+2 24 2 1 4 2 1 5.602
+2 24 5.602 0 2 4 0 2
+2 24 4 0 2 2.5 0 2.5
+2 24 2.5 0 2.5 2 0 4
+2 24 2 0 4 2 0 5.602
+5 24 6 1 0 6 0 0 6 1 -6 5.602 1 2
+2 24 5.602 1 2 5.602 0 2
+5 24 2.5 1 2.5 2.5 0 2.5 4 1 2 2 1 4
+2 24 2 1 5.602 2 0 5.602
+5 24 0 1 6 0 0 6 2 1 5.602 -6 1 6
+4 16 6 1 0 6 0 0 5.602 0 2 5.602 1 2
+4 16 4 1 2 5.602 1 2 5.602 0 2 4 0 2
+4 16 4 1 2 4 0 2 2.5 0 2.5 2.5 1 2.5
+4 16 2.5 1 2.5 2.5 0 2.5 2 0 4 2 1 4
+4 16 2 1 4 2 0 4 2 0 5.602 2 1 5.602
+5 24 2 1 4 2 0 4 2 0 5.602 2.5 0 2.5
+5 24 4 1 2 4 0 2 5.602 0 2 2.5 0 2.5
+5 24 -2 1 -4 -2 0 -4 -2 0 -5.602 -2.5 0 -2.5
+5 24 -4 1 -2 -4 0 -2 -5.602 0 -2 -2.5 0 -2.5
+4 16 2 0 5.602 0 0 6 0 1 6 2 1 5.602
+4 16 5.543 1 2.296 5.602 1 2 4 1 2 4.243 1 4.243
+4 16 2 1 4 4.243 1 4.243 4 1 2 2.5 1 2.5
+4 16 2 1 5.602 2.296 1 5.543 4.243 1 4.243 2 1 4
+4 16 5.602 0 2 5.543 0 2.296 4.243 0 4.243 4 0 2
+4 16 4 0 2 4.243 0 4.243 2 0 4 2.5 0 2.5
+4 16 2.296 0 5.543 2 0 5.602 2 0 4 4.243 0 4.243
+2 24 -3.743 1 4.577 -2.5 1 2.5
+2 24 -2.5 1 2.5 -4.577 1 3.743
+2 24 -3.743 0 4.577 -2.5 0 2.5
+2 24 -2.5 0 2.5 -4.577 0 3.743
+2 24 -3.743 1 4.577 -3.743 0 4.577
+2 24 -2.5 1 2.5 -2.5 0 2.5
+2 24 -4.577 1 3.743 -4.577 0 3.743
+5 24 0 1 6 0 0 6 -2.296 1 5.543 6 1 6
+5 24 -2.296 1 5.543 -2.296 0 5.543 -4.243 1 4.243 0 1 6
+5 24 -5.543 1 2.296 -5.543 0 2.296 -6 1 0 -4.243 1 4.243
+5 24 -6 1 0 -6 0 0 -5.543 1 2.296 -6 1 -6
+4 16 0 1 6 0 0 6 -2.296 0 5.543 -2.296 1 5.543
+4 16 -2.296 1 5.543 -2.296 0 5.543 -3.743 0 4.577 -3.743 1 4.577
+4 16 -3.743 1 4.577 -3.743 0 4.577 -2.5 0 2.5 -2.5 1 2.5
+4 16 -2.5 1 2.5 -2.5 0 2.5 -4.577 0 3.743 -4.577 1 3.743
+4 16 -4.577 1 3.743 -4.577 0 3.743 -5.543 0 2.296 -5.543 1 2.296
+4 16 -5.543 1 2.296 -5.543 0 2.296 -6 0 0 -6 1 0
+2 24 3.743 1 -4.577 2.5 1 -2.5
+2 24 2.5 1 -2.5 4.577 1 -3.743
+2 24 3.743 0 -4.577 2.5 0 -2.5
+2 24 2.5 0 -2.5 4.577 0 -3.743
+2 24 3.743 1 -4.577 3.743 0 -4.577
+2 24 2.5 1 -2.5 2.5 0 -2.5
+2 24 4.577 1 -3.743 4.577 0 -3.743
+5 24 0 1 -6 0 0 -6 2.296 1 -5.543 -6 1 -6
+5 24 2.296 1 -5.543 2.296 0 -5.543 4.243 1 -4.243 0 1 -6
+5 24 5.543 1 -2.296 5.543 0 -2.296 6 1 0 4.243 1 -4.243
+5 24 6 1 0 6 0 0 5.543 1 -2.296 6 1 6
+4 16 0 1 -6 0 0 -6 2.296 0 -5.543 2.296 1 -5.543
+4 16 2.296 1 -5.543 2.296 0 -5.543 3.743 0 -4.577 3.743 1 -4.577
+4 16 3.743 1 -4.577 3.743 0 -4.577 2.5 0 -2.5 2.5 1 -2.5
+4 16 2.5 1 -2.5 2.5 0 -2.5 4.577 0 -3.743 4.577 1 -3.743
+4 16 4.577 1 -3.743 4.577 0 -3.743 5.543 0 -2.296 5.543 1 -2.296
+4 16 5.543 1 -2.296 5.543 0 -2.296 6 0 0 6 1 0
+2 24 -5.602 1 -2 -4 1 -2
+2 24 -4 1 -2 -2.5 1 -2.5
+2 24 -2.5 1 -2.5 -2 1 -4
+2 24 -2 1 -4 -2 1 -5.602
+2 24 -5.602 0 -2 -4 0 -2
+2 24 -4 0 -2 -2.5 0 -2.5
+2 24 -2.5 0 -2.5 -2 0 -4
+2 24 -2 0 -4 -2 0 -5.602
+5 24 -6 1 0 -6 0 0 -6 1 6 -5.602 1 -2
+2 24 -5.602 1 -2 -5.602 0 -2
+5 24 -2.5 1 -2.5 -2.5 0 -2.5 -4 1 -2 -2 1 -4
+2 24 -2 1 -5.602 -2 0 -5.602
+5 24 0 1 -6 0 0 -6 -2 1 -5.602 6 1 -6
+4 16 -6 1 0 -6 0 0 -5.602 0 -2 -5.602 1 -2
+4 16 -5.602 1 -2 -5.602 0 -2 -4 0 -2 -4 1 -2
+4 16 -4 1 -2 -4 0 -2 -2.5 0 -2.5 -2.5 1 -2.5
+4 16 -2.5 1 -2.5 -2.5 0 -2.5 -2 0 -4 -2 1 -4
+4 16 -2 1 -4 -2 0 -4 -2 0 -5.602 -2 1 -5.602
+4 16 -2 0 -5.602 0 0 -6 0 1 -6 -2 1 -5.602
+4 16 -5.543 1 -2.296 -5.602 1 -2 -4 1 -2 -4.243 1 -4.243
+4 16 -2 1 -4 -4.243 1 -4.243 -4 1 -2 -2.5 1 -2.5
+4 16 -2 1 -5.602 -2.296 1 -5.543 -4.243 1 -4.243 -2 1 -4
+4 16 -5.602 0 -2 -5.543 0 -2.296 -4.243 0 -4.243 -4 0 -2
+4 16 -4 0 -2 -4.243 0 -4.243 -2 0 -4 -2.5 0 -2.5
+4 16 -2.296 0 -5.543 -2 0 -5.602 -2 0 -4 -4.243 0 -4.243
+4 16 3.743 0 -4.577 4.243 0 -4.243 4.577 0 -3.743 2.5 0 -2.5
+4 16 4.577 1 -3.743 4.243 1 -4.243 3.743 1 -4.577 2.5 1 -2.5
+4 16 -4.577 1 3.743 -4.243 1 4.243 -3.743 1 4.577 -2.5 1 2.5
+4 16 -3.743 0 4.577 -4.243 0 4.243 -4.577 0 3.743 -2.5 0 2.5
+2 24 6 0 0 5.602 0 2
+2 24 5.602 1 2 6 1 0
+2 24 2 0 5.602 0 0 6
+2 24 0 1 6 2 1 5.602
+2 24 0 0 6 -2.296 0 5.543
+2 24 -2.296 1 5.543 0 1 6
+2 24 -2.296 0 5.543 -3.743 0 4.577
+2 24 -3.743 1 4.577 -2.296 1 5.543
+2 24 -4.577 0 3.743 -5.543 0 2.296
+2 24 -5.543 1 2.296 -4.577 1 3.743
+2 24 -5.543 0 2.296 -6 0 0
+2 24 -6 1 0 -5.543 1 2.296
+2 24 0 0 -6 2.296 0 -5.543
+2 24 2.296 1 -5.543 0 1 -6
+2 24 2.296 0 -5.543 3.743 0 -4.577
+2 24 3.743 1 -4.577 2.296 1 -5.543
+2 24 4.577 0 -3.743 5.543 0 -2.296
+2 24 5.543 1 -2.296 4.577 1 -3.743
+2 24 5.543 0 -2.296 6 0 0
+2 24 6 1 0 5.543 1 -2.296
+2 24 -6 0 0 -5.602 0 -2
+2 24 -5.602 1 -2 -6 1 0
+2 24 -2 0 -5.602 0 0 -6
+2 24 0 1 -6 -2 1 -5.602
+0 //
+
+
+0 FILE parts/32271.dat
+0 Technic Beam  3 x  7 Liftarm Bent 53.13
+0 Name: 32271.dat
+0 Author: Ishino Keiichiro
+0 !LDRAW_ORG Part UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2007-05-13 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC compliant, use more primitives (2004-07-06)
+0 !HISTORY 2008-07-08 [PTadmin] Renamed from 152.dat (2006-04-13)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2010-01-23 [MagFors] Changed name to 53.13
+0 !HISTORY 2010-01-23 [arezey] Used more primitives
+0 !HISTORY 2010-01-30 [MagFors] Reworked
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 -10 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 10 0 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -10 0 9 0 0 0 20 0 0 0 -9 p/2-4cyli.dat
+1 16 0 -10 0 1 0 0 0 20 0 0 0 1 p/axlehol4.dat
+1 16 0 -10 0 -3 0 0 0 1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 10 0 -3 0 0 0 -1 0 0 0 -3 p/2-4ring2.dat
+1 16 0 -10 10 1 0 0 0 20 0 0 0 1 p/npeghol4.dat
+1 16 0 0 20 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 40 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 60 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 80 1 0 0 0 1 0 0 0 1 p/beamhole.dat
+1 16 0 0 100 1 0 0 0 1 0 0 0 1 p/connhole.dat
+1 16 0 -10 110 1 0 0 0 8 0 0 0 1 p/npeghole.dat
+1 16 0 10 110 1 0 0 0 -8 0 0 0 1 p/npeghole.dat
+4 16 -9 -10 100 -6.36 -10 106.36 -6.36 -10 113.64 -9 -10 120
+4 16 9 -10 115.605 6.36 -10 113.64 6.36 -10 106.36 9 -10 100
+4 16 -9 10 120 -6.36 10 113.64 -6.36 10 106.36 -9 10 100
+4 16 9 10 100 6.36 10 106.36 6.36 10 113.64 9 10 115.605
+1 16 9 0 57.75 0 -1 0 10 0 0 0 0 57.75 p/rect3.dat
+1 16 -9 0 60 0 1 0 0 0 -10 60 0 0 p/rect2p.dat
+1 16 0 -10 120 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 -10 120 -0.3536 0 0.3536 0 1 0 0.3536 0 0.3536 p/2-4rin16.dat
+1 16 0 -10 120 -0.9239 0 -0.3827 0 1 0 0.3827 0 -0.9239 p/2-4ring8.dat
+1 16 0 -10 120 -0.3827 0 -0.9239 0 1 0 0.9239 0 -0.3827 p/1-8ring8.dat
+1 16 0 -10 120 0.5957 0 0.3527 0 1 0 -0.3527 0 0.5957 p/3-8rin12.dat
+0 BFC INVERTNEXT
+1 16 0 -8 120 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 10 120 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+1 16 0 10 120 -0.3536 0 0.3536 0 -1 0 0.3536 0 0.3536 p/2-4rin16.dat
+1 16 0 10 120 -0.9239 0 -0.3827 0 -1 0 0.3827 0 -0.9239 p/2-4ring8.dat
+1 16 0 10 120 -0.3827 0 -0.9239 0 -1 0 0.9239 0 -0.3827 p/1-8ring8.dat
+1 16 0 10 120 0.5957 0 0.3527 0 -1 0 -0.3527 0 0.5957 p/3-8rin12.dat
+1 16 0 -10 120 -9 0 0 0 -1 0 0 0 9 p/1-8edge.dat
+1 16 0 10 120 -9 0 0 0 -1 0 0 0 9 p/1-8edge.dat
+1 16 0 10 120 -9 0 0 0 -20 0 0 0 9 p/1-8cyli.dat
+1 16 8 -10 126 0.6 0 -0.8 0 8 0 -0.8 0 -0.6 p/npeghole.dat
+1 16 8 10 126 0.6 0 -0.8 0 -8 0 -0.8 0 -0.6 p/npeghole.dat
+1 16 16 0 132 0.6 0 0.8 0 1 0 -0.8 0 0.6 p/connhole.dat
+4 16 8.9 -10 118.73 9 -10 115.5 21.4 -10 124.8 14.73 -10 123.1
+3 16 8.9 -10 118.73 6.36 -10 113.64 9 -10 115.5
+3 16 9 10 115.5 6.36 10 113.64 8.9 10 118.73
+4 16 -6.363 -10 126.363 1.27 -10 128.9 7.1 -10 133.27 10.6 -10 139.2
+4 16 9 10 115.5 8.9 10 118.73 14.73 10 123.1 21.4 10 124.8
+4 16 1.27 10 128.9 -6.363 10 126.363 10.6 10 139.2 7.1 10 133.27
+1 16 32 -10 144 5.4 0 7.2 0 1 0 -7.2 0 5.4 p/2-4edge.dat
+1 16 32 10 144 5.4 0 7.2 0 1 0 -7.2 0 5.4 p/2-4edge.dat
+1 16 32 -10 144 5.4 0 7.2 0 20 0 -7.2 0 5.4 p/2-4cyli.dat
+1 16 32 -10 144 0.6 0 -0.8 0 20 0 -0.8 0 -0.6 p/axlehol4.dat
+1 16 32 -10 144 -1.8 0 2.4 0 1 0 2.4 0 1.8 p/2-4ring2.dat
+1 16 32 10 144 -1.8 0 2.4 0 -1 0 2.4 0 1.8 p/2-4ring2.dat
+1 16 24 -10 138 0.6 0 -0.8 0 20 0 -0.8 0 -0.6 p/npeghol4.dat
+1 16 23.2 0 126.15 -14.2 -0.6 0 0 0 10 -10.65 0.8 0 p/rect2p.dat
+1 16 10.118 0 138.782 -16.4815 0.6 0 0 0 -10 -12.418 -0.8 0 p/rect2p.dat
+
+0 FILE p/3-8rin12.dat
+0 Ring 12 x 0.375
+0 Name: 3-8rin12.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 13 0 0 12.0107 0 4.9751 11.0868 0 4.5924 12 0 0
+4 16 12.0107 0 4.9751 9.1923 0 9.1923 8.4852 0 8.4852 11.0868 0 4.5924
+4 16 9.1923 0 9.1923 4.9751 0 12.0107 4.5924 0 11.0868 8.4852 0 8.4852
+4 16 4.9751 0 12.0107 0 0 13 0 0 12 4.5924 0 11.0868
+4 16 0 0 13 -4.9751 0 12.0107 -4.5924 0 11.0868 0 0 12
+4 16 -4.9751 0 12.0107 -9.1923 0 9.1923 -8.4852 0 8.4852 -4.5924 0 11.0868
+
+0 FILE p/1-8ring8.dat
+0 Ring  8 x 0.125
+0 Name: 1-8ring8.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 9 0 0 8.3151 0 3.4443 7.3912 0 3.0616 8 0 0
+4 16 8.3151 0 3.4443 6.3639 0 6.3639 5.6568 0 5.6568 7.3912 0 3.0616
+
+0 FILE p/2-4ring8.dat
+0 Ring  8 x 0.5
+0 Name: 2-4ring8.dat
+0 Author: John Riley [jriley]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 8 0 0 9 0 0 8.3151 0 3.4443 7.3912 0 3.0616
+4 16 7.3912 0 3.0616 8.3151 0 3.4443 6.3639 0 6.3639 5.6568 0 5.6568
+4 16 5.6568 0 5.6568 6.3639 0 6.3639 3.4443 0 8.3151 3.0616 0 7.3912
+4 16 3.0616 0 7.3912 3.4443 0 8.3151 0 0 9 0 0 8
+4 16 0 0 8 0 0 9 -3.4443 0 8.3151 -3.0616 0 7.3912
+4 16 -3.0616 0 7.3912 -3.4443 0 8.3151 -6.3639 0 6.3639 -5.6568 0 5.6568
+4 16 -5.6568 0 5.6568 -6.3639 0 6.3639 -8.3151 0 3.4443 -7.3912 0 3.0616
+4 16 -7.3912 0 3.0616 -8.3151 0 3.4443 -9 0 0 -8 0 0
+0
+
+
+0 FILE p/2-4rin16.dat
+0 Ring 16 x 0.5
+0 Name: 2-4rin16.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 16 0 0 17 0 0 15.7063 0 6.5059 14.7824 0 6.1232
+4 16 14.7824 0 6.1232 15.7063 0 6.5059 12.0207 0 12.0207 11.3136 0 11.3136
+4 16 11.3136 0 11.3136 12.0207 0 12.0207 6.5059 0 15.7063 6.1232 0 14.7824
+4 16 6.1232 0 14.7824 6.5059 0 15.7063 0 0 17 0 0 16
+4 16 0 0 16 0 0 17 -6.5059 0 15.7063 -6.1232 0 14.7824
+4 16 -6.1232 0 14.7824 -6.5059 0 15.7063 -12.0207 0 12.0207 -11.3136 0 11.3136
+4 16 -11.3136 0 11.3136 -12.0207 0 12.0207 -15.7063 0 6.5059 -14.7824 0 6.1232
+4 16 -14.7824 0 6.1232 -15.7063 0 6.5059 -17 0 0 -16 0 0
+
+0 FILE p/npeghole.dat
+0 Technic Peg Hole Negative without Top Surface Extensions
+0 Name: npeghole.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4edge.dat
+1 16 0 1 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4edge.dat
+1 16 0 0 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4cyli.dat
+1 16 0 0 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4edge.dat
+1 16 0 1 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4edge.dat
+1 16 0 0 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4cyli.dat
+4 16 6.36 1 -3.64 6.36 1 3.64 3.442 1 1.69 3.442 1 -1.69
+4 16 3.442 1 -1.69 3.442 1 1.69 0 1 1.0057 0 1 -1.0057
+4 16 0 1 -1.0057 0 1 1.0057 -3.442 1 1.69 -3.442 1 -1.69
+4 16 -3.442 1 -1.69 -3.442 1 1.69 -6.36 1 3.64 -6.36 1 -3.64
+1 16 6.36 0.5 0 0 1 0 0.5 0 0 0 0 3.64 p/rect.dat
+1 16 -6.36 0.5 0 0 -1 0 0.5 0 0 0 0 3.64 p/rect.dat
+
+0 FILE p/connhole.dat
+0 Technic Connector Hole Long
+0 Name: connhole.dat
+0 Author: Thomas Woelk [t.woelk]
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-07-09 [mikeheide] use 4-4ring8 primitive
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 -10 0 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 0 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+0 BFC INVERTNEXT
+1 16 0 -8 0 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 0 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 0 1 0 0 0 -1 0 0 0 -1 p/4-4ring8.dat
+0
+
+0 FILE p/npeghol4.dat
+0 Technic Peg Hole / Axle Hole Negative with Top Surface Extension
+0 Name: npeghol4.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2014-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+0 !HISTORY 2014-03-02 [KROACH] Fixed overlap on extensions
+0 !HISTORY 2014-03-03 [Philo] Used more primitives
+0 !HISTORY 2014-03-03 [MMR1988] Fixed some rounding errors
+0 !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
+
+0 // for insert between cylinder and axlehol4.dat or axlehol5.dat
+
+1 16 0 0 10 6.36396 0 -6.36396 0 1 0 -6.36396 0 -6.36396 p/1-4cylo.dat
+5 24 3.4443 1 -1.6849 3.4443 0 -1.6849 6.3639 1 -3.6361 2 1 -1.397
+5 24 -3.4443 1 -1.6849 -3.4443 0 -1.6849 -6.3639 1 -3.6361 -2 1 -1.397
+1 16 6.3639 0.5 0 0 1 0 0.5 0 0 0 0 3.6361 p/rect.dat
+1 16 -6.3639 0.5 0 0 -1 0 0.5 0 0 0 0 3.6361 p/rect.dat
+4 16 -9 0 1 -9 0 -1 -6.3639 0 -3.6361 -6.3639 0 3.6361
+4 16 -6.3639 1 3.6361 -6.3639 1 -3.6361 -9 1 -1 -9 1 1
+4 16 6.3639 0 3.6361 6.3639 0 -3.6361 9 0 -1 9 0 1
+4 16 9 1 1 9 1 -1 6.3639 1 -3.6361 6.3639 1 3.6361
+1 16 0 0 -10 -3 0 0 0 1 0 0 0 3 p/3-16rin2.dat
+1 16 0 1 -10 -3 0 0 0 -1 0 0 0 3 p/3-16rin2.dat
+1 16 0 0 -10 3 0 0 0 1 0 0 0 3 p/3-16rin2.dat
+1 16 0 1 -10 3 0 0 0 -1 0 0 0 3 p/3-16rin2.dat
+1 16 0 0 -10 -9 0 0 0 1 0 0 0 9 p/1-8ndis.dat
+1 16 0 1 -10 -9 0 0 0 -1 0 0 0 9 p/1-8ndis.dat
+1 16 0 0 -10 9 0 0 0 1 0 0 0 9 p/1-8ndis.dat
+1 16 0 1 -10 9 0 0 0 -1 0 0 0 9 p/1-8ndis.dat
+1 16 0 0 10 -9 0 0 0 1 0 0 0 -9 p/1-8ndis.dat
+1 16 0 1 10 -9 0 0 0 -1 0 0 0 -9 p/1-8ndis.dat
+1 16 0 0 10 9 0 0 0 1 0 0 0 -9 p/1-8ndis.dat
+1 16 0 1 10 9 0 0 0 -1 0 0 0 -9 p/1-8ndis.dat
+1 16 0 0 -10 -6.36396 0 6.36396 0 1 0 6.36396 0 6.36396 p/1-16edge.dat
+1 16 0 0 -10 -6.36396 0 6.36396 0 1 0 6.36396 0 6.36396 p/1-16cyli.dat
+1 16 0 1 -10 -6.36396 0 6.36396 0 1 0 6.36396 0 6.36396 p/1-16edge.dat
+1 16 0 0 -10 6.36396 0 -6.36396 0 1 0 6.36396 0 6.36396 p/1-16edge.dat
+1 16 0 0 -10 6.36396 0 -6.36396 0 1 0 6.36396 0 6.36396 p/1-16cyli.dat
+1 16 0 1 -10 6.36396 0 -6.36396 0 1 0 6.36396 0 6.36396 p/1-16edge.dat
+4 16 2 0 -4.397 2.2962 0 -4.4566 3.4443 0 -1.6849 2 0 -1.397
+4 16 -2.2962 0 -4.4566 -2 0 -4.397 -2 0 -1.397 -3.4443 0 -1.6849
+4 16 -2 1 -4.397 -2.2962 1 -4.4566 -3.4443 1 -1.6849 -2 1 -1.397
+4 16 2.2962 1 -4.4566 2 1 -4.397 2 1 -1.397 3.4443 1 -1.6849
+1 16 -2.7222 0.5 -3.041 0 0.72215 0 0.5 0 0 0 0.14395 1.5 p/box2-7.dat
+1 16 2.722 0.5 -3.041 0 -0.72215 0 0.5 0 0 0 0.14395 1.5 p/box2-7.dat
+
+0 FILE p/1-16cyli.dat
+0 Cylinder 0.0625
+0 Name: 1-16cyli.dat
+0 Author: Marc Klein [marckl]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7654 1 .7654
+0
+
+0 FILE p/1-16edge.dat
+0 Circle 0.0625
+0 Name: 1-16edge.dat
+0 Author: Marc Klein [marckl]
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+
+0 FILE p/3-16rin2.dat
+0 Ring  2 x 0.1875
+0 Name: 3-16rin2.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2009-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
+
+4 16 2 0 0 3 0 0 2.7717 0 1.1481 1.8478 0 0.7654
+4 16 1.8478 0 0.7654 2.7717 0 1.1481 2.1213 0 2.1213 1.4142 0 1.4142
+4 16 1.4142 0 1.4142 2.1213 0 2.1213 1.1481 0 2.7717 0.7654 0 1.8478
+
+0 // end of file
+
+
+
+0 FILE p/2-4ring2.dat
+0 Ring  2 x 0.5
+0 Name: 2-4ring2.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 3 0 0 2.7717 0 1.1481 1.8478 0 0.7654 2 0 0
+4 16 2.7717 0 1.1481 2.1213 0 2.1213 1.4142 0 1.4142 1.8478 0 0.7654
+4 16 2.1213 0 2.1213 1.1481 0 2.7717 0.7654 0 1.8478 1.4142 0 1.4142
+4 16 1.1481 0 2.7717 0 0 3 0 0 2 0.7654 0 1.8478
+4 16 0 0 3 -1.1481 0 2.7717 -0.7654 0 1.8478 0 0 2
+4 16 -1.1481 0 2.7717 -2.1213 0 2.1213 -1.4142 0 1.4142 -0.7654 0 1.8478
+4 16 -2.1213 0 2.1213 -2.7717 0 1.1481 -1.8478 0 0.7654 -1.4142 0 1.4142
+4 16 -2.7717 0 1.1481 -3 0 0 -2 0 0 -1.8478 0 0.7654
+
+0 FILE p/axlehol4.dat
+0 Technic Axle Hole Open One Side
+0 Name: axlehol4.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2005-05-15 [guyvivan] Use 1-8chrd.dat primitive
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 6 0 0 6 1 0 5.602 0 2 5.602 0 -2
+5 24 -6 0 0 -6 1 0 -5.602 0 -2 -5.602 0 2
+5 24 0 0 -6 0 1 -6 -2 0 -5.602 2 0 -5.602
+0 2 24 6    0 0    5.543 0 2.296
+0 2 24 5.543 0 2.296 4.243 0 4.243
+0 2 24 4.243 0 4.243 2.296 0 5.543
+0 2 24 2.296 0 5.543 0    0 6
+2 24 6 0 0 5.602 0 2
+2 24 5.602 0 2 2 0 2
+2 24 2 0 2 2 0 5.602
+0 2 24 2    0 5.602 0    0 6
+2 24 -6 0 0 -5.602 0 2
+2 24 -5.602 0 2 -2 0 2
+2 24 -2 0 2 -2 0 5.602
+0 2 24 -2    0 5.602 -0    0 6
+2 24 6 0 0 5.602 0 -2
+2 24 5.602 0 -2 2 0 -2
+2 24 2 0 -2 2 0 -5.602
+2 24 2 0 -5.602 0 0 -6
+2 24 -6 0 0 -5.602 0 -2
+2 24 -5.602 0 -2 -2 0 -2
+2 24 -2 0 -2 -2 0 -5.602
+2 24 -2 0 -5.602 0 0 -6
+2 24 6 1 0 5.602 1 2
+2 24 5.602 1 2 2 1 2
+2 24 2 1 2 2 1 5.602
+0 2 24 2    1 5.602 0    1 6
+2 24 -6 1 0 -5.602 1 2
+2 24 -5.602 1 2 -2 1 2
+2 24 -2 1 2 -2 1 5.602
+0 2 24 -2    1 5.602 -0    1 6
+2 24 6 1 0 5.602 1 -2
+2 24 5.602 1 -2 2 1 -2
+2 24 2 1 -2 2 1 -5.602
+2 24 2 1 -5.602 0 1 -6
+2 24 -6 1 0 -5.602 1 -2
+2 24 -5.602 1 -2 -2 1 -2
+2 24 -2 1 -2 -2 1 -5.602
+2 24 -2 1 -5.602 0 1 -6
+2 24 5.602 0 2 5.602 1 2
+2 24 2 0 2 2 1 2
+0 2 24 2    0 5.602 2    1 5.602
+2 24 -5.602 0 2 -5.602 1 2
+2 24 -2 0 2 -2 1 2
+0 2 24 -2    0 5.602 -2    1 5.602
+2 24 5.602 0 -2 5.602 1 -2
+2 24 2 0 -2 2 1 -2
+2 24 2 0 -5.602 2 1 -5.602
+2 24 -5.602 0 -2 -5.602 1 -2
+2 24 -2 0 -2 -2 1 -2
+2 24 -2 0 -5.602 -2 1 -5.602
+4 16 6 0 0 5.602 0 2 5.602 1 2 6 1 0
+4 16 5.602 0 2 2 0 2 2 1 2 5.602 1 2
+4 16 2 0 2 2 0 5.602 2 1 5.602 2 1 2
+0 4 16 2    0 5.602 0    0 6    0    1 6    2    1 5.602
+4 16 -5.602 1 2 -5.602 0 2 -6 0 0 -6 1 0
+4 16 -2 1 2 -2 0 2 -5.602 0 2 -5.602 1 2
+4 16 -2 1 5.602 -2 0 5.602 -2 0 2 -2 1 2
+0 4 16 -2    0 5.602 -0    0 6    -0    1 6    -2    1 5.602
+4 16 5.602 1 -2 5.602 0 -2 6 0 0 6 1 0
+4 16 2 1 -2 2 0 -2 5.602 0 -2 5.602 1 -2
+4 16 2 1 -5.602 2 0 -5.602 2 0 -2 2 1 -2
+4 16 0 1 -6 0 0 -6 2 0 -5.602 2 1 -5.602
+4 16 -6 0 0 -5.602 0 -2 -5.602 1 -2 -6 1 0
+4 16 -5.602 0 -2 -2 0 -2 -2 1 -2 -5.602 1 -2
+4 16 -2 0 -2 -2 0 -5.602 -2 1 -5.602 -2 1 -2
+4 16 -2 0 -5.602 0 0 -6 0 1 -6 -2 1 -5.602
+3 16 5.602 0 2 5.543 0 2.296 2 0 2
+3 16 2.296 0 5.543 2 0 5.602 2 0 2
+3 16 -2 0 2 -5.543 0 2.296 -5.602 0 2
+3 16 -2 0 2 -2 0 5.602 -2.296 0 5.543
+3 16 2 0 -2 5.543 0 -2.296 5.602 0 -2
+3 16 2 0 -2 2 0 -5.602 2.296 0 -5.543
+3 16 -5.602 0 -2 -5.543 0 -2.296 -2 0 -2
+3 16 -2.296 0 -5.543 -2 0 -5.602 -2 0 -2
+3 16 2 1 2 5.543 1 2.296 5.602 1 2
+3 16 2 1 2 2 1 5.602 2.296 1 5.543
+3 16 -5.602 1 2 -5.543 1 2.296 -2 1 2
+3 16 -2.296 1 5.543 -2 1 5.602 -2 1 2
+3 16 5.602 1 -2 5.543 1 -2.296 2 1 -2
+3 16 2.296 1 -5.543 2 1 -5.602 2 1 -2
+3 16 -2 1 -2 -5.543 1 -2.296 -5.602 1 -2
+3 16 -2 1 -2 -2 1 -5.602 -2.296 1 -5.543
+3 16 5.543 0 2.296 2.296 0 5.543 2 0 2
+1 16 0 0 0 5.54328 0 -2.2961 0 1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 -2.296 0 5.543 -5.543 0 2.296 -2 0 2
+1 16 0 0 0 -2.2961 0 -5.54328 0 1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+3 16 -5.543 0 -2.296 -2.296 0 -5.543 -2 0 -2
+1 16 0 0 0 -5.54328 0 2.2961 0 1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 2.296 0 -5.543 5.543 0 -2.296 2 0 -2
+1 16 0 0 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 5.543 1 -2.296 2.296 1 -5.543 2 1 -2
+1 16 0 1 0 5.54328 0 -2.2961 0 -1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 -2.296 1 -5.543 -5.543 1 -2.296 -2 1 -2
+1 16 0 1 0 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 -5.543 1 2.296 -2.296 1 5.543 -2 1 2
+1 16 0 1 0 -5.54328 0 2.2961 0 -1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 2.296 1 5.543 5.543 1 2.296 2 1 2
+1 16 0 1 0 2.2961 0 5.54328 0 -1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+0
+
+0 FILE parts/6558.dat
+0 Technic Pin Long with Friction and Slot
+0 Name: 6558.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-07-18 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Added slot; BFCd (2004-05-17)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 -10 0 0 0 1 0 0 0 1 1 0 0 p/confric5.dat
+1 16 10 0 0 0 -1 0 0 0 1 1 0 0 p/confric6.dat
+1 16 -10 0 0 0 -1 0 0 0 1 1 0 0 p/confric8.dat
+0
+
+0 FILE p/confric8.dat
+0 Technic Friction Pin Middle Slotted with Split Base Collar
+0 Name: confric8.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 -12.5 6 0 0 -1 1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -12.5 6 0 0 -1 1 0 0 0 -1 -0.199 p/1-4ndis.dat
+4 16 -2.296 -11.5 5.543 -2.296 -20 5.543 -1 -20 5.801 -1 -11.5 5.801
+1 16 0 -20 0 -2.296 0 -5.543 0 8.5 0 5.543 0 -2.296 p/3-8cyli.dat
+4 16 -2.296 -20 -5.543 -2.296 -11.5 -5.543 -1 -11.5 -5.801 -1 -20 -5.801
+1 16 0 -12.5 -6 0 0 -1 1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 0 -12.5 -6 0 0 -1 1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -12.5 -6 0 0 1 1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -12.5 -6 0 0 1 1 0 0 0 1 0.199 p/1-4ndis.dat
+4 16 2.296 -11.5 -5.543 2.296 -20 -5.543 1 -20 -5.801 1 -11.5 -5.801
+1 16 0 -20 0 2.296 0 5.543 0 8.5 0 -5.543 0 2.296 p/3-8cyli.dat
+4 16 2.296 -20 5.543 2.296 -11.5 5.543 1 -11.5 5.801 1 -20 5.801
+1 16 0 -12.5 6 0 0 1 1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 0 -12.5 6 0 0 1 1 0 0 0 -1 -0.199 p/1-4edge.dat
+1 16 0 -11.501 0 6 0 0 0 3 0 0 0 -6 p/4-4cyli.dat
+1 16 0 -7.5 6 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -7.5 6 0 0 1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 1.648 -5.25 5.672 0 0 0.648 3.25 0 0 0 -1 -0.129 p/rect1.dat
+1 16 0 -2 0 2.296 0 5.543 0 -6.5 0 5.543 0 -2.296 p/3-8cyli.dat
+1 16 0 -2 0 2.296 0 5.543 0 -1 0 5.543 0 -2.296 p/3-8edge.dat
+1 16 1.648 -5.25 -5.672 0 0 0.648 3.25 0 0 0 1 0.129 p/rect1.dat
+1 16 0 -7.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 0 -7.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -7.5 -6 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -7.5 -6 0 0 -1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 -1.648 -5.25 -5.672 0 0 -0.648 3.25 0 0 0 1 0.129 p/rect1.dat
+1 16 0 -2 0 -2.296 0 -5.543 0 -6.5 0 -5.543 0 2.296 p/3-8cyli.dat
+1 16 0 -2 0 -2.296 0 -5.543 0 -1 0 -5.543 0 2.296 p/3-8edge.dat
+1 16 -1.648 -5.25 5.672 0 0 -0.648 3.25 0 0 0 -1 -0.129 p/rect1.dat
+1 16 0 -7.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 0 -7.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+2 24 -1 -2 7.801 -1 -2 5.801
+4 16 -1 -2 7.801 -3.061 -2 7.391 -2.296 -2 5.543 -1 -2 5.801
+1 16 0 -2 0 -0.765 0 -1.848 0 1 0 1.848 0 -0.765 p/1-8ring3.dat
+1 16 0 -2 0 -1.848 0 -0.765 0 1 0 0.765 0 -1.848 p/1-4ring3.dat
+4 16 -3.061 -2 -7.391 -1 -2 -7.801 -1 -2 -5.801 -2.296 -2 -5.543
+2 24 -1 -2 -7.801 -1 -2 -5.801
+2 24 1 -2 -7.801 1 -2 -5.801
+4 16 1 -2 -7.801 3.061 -2 -7.391 2.296 -2 -5.543 1 -2 -5.801
+1 16 0 -2 0 0.765 0 1.848 0 1 0 -1.848 0 0.765 p/1-8ring3.dat
+1 16 0 -2 0 1.848 0 0.765 0 1 0 -0.765 0 1.848 p/1-4ring3.dat
+4 16 3.061 -2 7.391 1 -2 7.801 1 -2 5.801 2.296 -2 5.543
+2 24 1 -2 7.801 1 -2 5.801
+1 16 2.031 -1 7.596 0 0 -1.031 -1 0 0 0 -1 0.205 p/rect1.dat
+1 16 0 -2 0 3.061 0 7.391 0 -1 0 7.391 0 -3.061 p/3-8edge.dat
+1 16 0 0 0 3.061 0 7.391 0 -2 0 7.391 0 -3.061 p/3-8cyli.dat
+1 16 2.031 -1 -7.596 0 0 1.031 -1 0 0 0 1 0.205 p/rect1.dat
+1 16 -2.031 -1 -7.596 0 0 -1.031 -1 0 0 0 1 0.205 p/rect1.dat
+1 16 0 -2 0 -3.061 0 -7.391 0 -1 0 -7.391 0 3.061 p/3-8edge.dat
+1 16 0 0 0 -3.061 0 -7.391 0 -2 0 -7.391 0 3.061 p/3-8cyli.dat
+1 16 -2.031 -1 7.596 0 0 -1.031 -1 0 0 0 -1 -0.205 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -7.5 4 0 0 1 -1 0 0 0 2 -0.199 p/1-4cyli.dat
+1 16 1 -4.751 4.801 0 1 0 -2.75 0 0 0 0 1 p/rect2p.dat
+1 16 1 -1 5.801 0 1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 1 -4.751 -4.801 0 1 0 -2.75 0 0 0 0 1 p/rect2p.dat
+1 16 1 -1 -5.801 0 1 0 1 0 0 0 0 2 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -7.5 -6 0 0 1 -1 0 0 0 2 0.199 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -7.5 -6 0 0 -1 -1 0 0 0 2 0.199 p/1-4cyli.dat
+1 16 -1 -4.751 -4.801 0 -1 0 -2.75 0 0 0 0 1 p/rect2p.dat
+1 16 -1 -1 -5.801 0 -1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 -1 -4.751 4.801 0 -1 0 -2.75 0 0 0 0 1 p/rect2p.dat
+1 16 -1 -1 5.801 0 -1 0 1 0 0 0 0 2 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -7.5 4 0 0 -1 -1 0 0 0 2 -0.199 p/1-4cyli.dat
+1 16 0 -7.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -7.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+4 16 1.531 -8.5 3.695 1 -8.5 3.801 1 0 3.801 1.531 0 3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 1.531 0 3.695 0 -8.5 0 3.695 0 -1.531 p/3-8cyli.dat
+4 16 1.531 0 -3.695 1 0 -3.801 1 -8.5 -3.801 1.531 -8.5 -3.695
+1 16 0 -7.5 -4 0 0 1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+1 16 0 -7.5 -4 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -7.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -7.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+4 16 -1.531 -8.5 -3.695 -1 -8.5 -3.801 -1 0 -3.801 -1.531 0 -3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 -1.531 0 -3.695 0 -8.5 0 -3.695 0 1.531 p/3-8cyli.dat
+4 16 -1.531 0 3.695 -1 0 3.801 -1 -8.5 3.801 -1.531 -8.5 3.695
+1 16 0 -7.5 4 0 0 -1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+1 16 0 -7.5 4 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -11.501 0 4 0 0 0 3 0 0 0 -4 p/4-4cyli.dat
+1 16 0 -12.5 4 0 0 -1 1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -12.5 4 0 0 -1 1 0 0 0 1 -0.199 p/1-4ndis.dat
+4 16 -1.531 -11.5 3.695 -1 -11.5 3.801 -1 -20 3.801 -1.531 -20 3.695
+0 BFC INVERTNEXT
+1 16 0 -20 0 -1.531 0 -3.695 0 8.5 0 3.695 0 -1.531 p/3-8cyli.dat
+4 16 -1.531 -20 -3.695 -1 -20 -3.801 -1 -11.5 -3.801 -1.531 -11.5 -3.695
+1 16 0 -12.5 -4 0 0 -1 1 0 0 0 -1 0.199 p/1-4ndis.dat
+1 16 0 -12.5 -4 0 0 -1 1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -12.5 -4 0 0 1 1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -12.5 -4 0 0 1 1 0 0 0 -1 0.199 p/1-4ndis.dat
+4 16 1.531 -11.5 -3.695 1 -11.5 -3.801 1 -20 -3.801 1.531 -20 -3.695
+0 BFC INVERTNEXT
+1 16 0 -20 0 1.531 0 3.695 0 8.5 0 -3.695 0 1.531 p/3-8cyli.dat
+4 16 1.531 -20 3.695 1 -20 3.801 1 -11.5 3.801 1.531 -11.5 3.695
+1 16 0 -12.5 4 0 0 1 1 0 0 0 1 -0.199 p/1-4ndis.dat
+1 16 0 -12.5 4 0 0 1 1 0 0 0 -1 -0.199 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -12.5 4 0 0 -1 1 0 0 0 2 -0.199 p/1-4cyli.dat
+1 16 -1 -16.25 4.801 0 -1 0 3.75 0 0 0 0 1 p/rect2p.dat
+1 16 -1 -16.25 -4.801 0 -1 0 3.75 0 0 0 0 1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -12.5 -6 0 0 -1 1 0 0 0 2 0.199 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -12.5 -6 0 0 1 1 0 0 0 2 0.199 p/1-4cyli.dat
+1 16 1 -16.25 -4.801 0 1 0 3.75 0 0 0 0 1 p/rect2p.dat
+1 16 1 -16.25 4.801 0 1 0 3.75 0 0 0 0 1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -12.5 4 0 0 1 1 0 0 0 2 -0.199 p/1-4cyli.dat
+0 Friction
+1 16 4.243 -6 -4.243 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 -0.848 0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 -4.243 0.566 0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 -4.419 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 -0.848 -1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -6 -4.419 0.566 -1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -4 -4.897 0.088 1 0 0 0 2 -0.088 0 0 p/rect3.dat
+1 16 4.897 -4 -3.483 0.088 -1 0 0 0 2 -0.088 0 0 p/rect3.dat
+4 16 4.419 -7 -4.419 3.572 -6 -4.986 3.572 -2 -4.986 4.419 -2 -4.419
+4 16 4.419 -2 -4.419 4.986 -2 -3.572 4.986 -6 -3.572 4.419 -7 -4.419
+2 24 4.419 -2 -4.419 3.572 -2 -4.986
+2 24 4.419 -2 -4.419 4.986 -2 -3.572
+5 24 4.419 -7 -4.419 4.419 -2 -4.419 3.572 -4 -4.986 4.986 -4 -3.572
+1 16 -4.243 -6 -4.243 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 -0.566 -0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 -4.243 0.848 -0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -4 -3.483 -0.088 1 0 0 0 2 -0.088 0 0 p/rect3.dat
+1 16 -3.483 -4 -4.897 -0.088 -1 0 0 0 2 -0.088 0 0 p/rect3.dat
+4 16 -4.419 -7 -4.419 -4.986 -6 -3.572 -4.986 -2 -3.572 -4.419 -2 -4.419
+4 16 -4.419 -2 -4.419 -3.572 -2 -4.986 -3.572 -6 -4.986 -4.419 -7 -4.419
+2 24 -4.419 -2 -4.419 -4.986 -2 -3.572
+2 24 -4.419 -2 -4.419 -3.572 -2 -4.986
+5 24 -4.419 -7 -4.419 -4.419 -2 -4.419 -4.986 -4 -3.572 -3.572 -4 -4.986
+1 16 -4.243 -6 4.243 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 0.848 -0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 4.243 -0.566 -0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -4 4.897 -0.088 -1 0 0 0 2 0.088 0 0 p/rect3.dat
+1 16 -4.897 -4 3.483 -0.088 1 0 0 0 2 0.088 0 0 p/rect3.dat
+4 16 -4.419 -7 4.419 -3.572 -6 4.986 -3.572 -2 4.986 -4.419 -2 4.419
+4 16 -4.419 -2 4.419 -4.986 -2 3.572 -4.986 -6 3.572 -4.419 -7 4.419
+2 24 -4.419 -2 4.419 -3.572 -2 4.986
+2 24 -4.419 -2 4.419 -4.986 -2 3.572
+5 24 -4.419 -7 4.419 -4.419 -2 4.419 -3.572 -4 4.986 -4.986 -4 3.572
+1 16 4.243 -6 4.243 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 0.566 0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 4.243 -0.848 0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 4.419 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 0.566 -1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -6 4.419 -0.848 -1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -4 3.483 0.088 -1 0 0 0 2 0.088 0 0 p/rect3.dat
+1 16 3.483 -4 4.897 0.088 1 0 0 0 2 0.088 0 0 p/rect3.dat
+4 16 4.419 -7 4.419 4.986 -6 3.572 4.986 -2 3.572 4.419 -2 4.419
+4 16 4.419 -2 4.419 3.572 -2 4.986 3.572 -6 4.986 4.419 -7 4.419
+2 24 4.419 -2 4.419 4.986 -2 3.572
+2 24 4.419 -2 4.419 3.572 -2 4.986
+5 24 4.419 -7 4.419 4.419 -2 4.419 4.986 -4 3.572 3.572 -4 4.986
+1 16 4.243 -14 4.243 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 -0.848 0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 4.243 0.566 0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 4.419 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 -0.848 -1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -14 4.419 0.566 -1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -17 4.897 0 1 -0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+1 16 4.897 -17 3.483 0 -1 -0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+4 16 4.419 -13 4.419 3.572 -14 4.986 3.572 -20 4.986 4.419 -20 4.419
+4 16 4.419 -20 4.419 4.986 -20 3.572 4.986 -14 3.572 4.419 -13 4.419
+5 24 4.419 -13 4.419 4.419 -20 4.419 3.572 -16 4.986 4.986 -16 3.572
+1 16 -4.243 -14 4.243 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 -0.566 -0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 4.243 0.848 -0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -17 3.483 0 1 0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+1 16 -3.483 -17 4.897 0 -1 0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+4 16 -4.419 -13 4.419 -4.986 -14 3.572 -4.986 -20 3.572 -4.419 -20 4.419
+4 16 -4.419 -20 4.419 -3.572 -20 4.986 -3.572 -14 4.986 -4.419 -13 4.419
+5 24 -4.419 -13 4.419 -4.419 -20 4.419 -4.986 -16 3.572 -3.572 -16 4.986
+1 16 -4.243 -14 -4.243 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 0.848 -0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 -4.243 -0.566 -0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -17 -4.897 0 -1 -0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+1 16 -4.897 -17 -3.483 0 1 -0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+4 16 -4.419 -13 -4.419 -3.572 -14 -4.986 -3.572 -20 -4.986 -4.419 -20 -4.419
+4 16 -4.419 -20 -4.419 -4.986 -20 -3.572 -4.986 -14 -3.572 -4.419 -13 -4.419
+5 24 -4.419 -13 -4.419 -4.419 -20 -4.419 -3.572 -16 -4.986 -4.986 -16 -3.572
+1 16 4.243 -14 -4.243 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 0.566 0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 -4.243 -0.848 0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 -4.419 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 0.566 -1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -14 -4.419 -0.848 -1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -17 -3.483 0 -1 0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+1 16 3.483 -17 -4.897 0 1 0.088 -3 0 0 0 0 -0.088 p/rect2p.dat
+4 16 4.419 -13 -4.419 4.986 -14 -3.572 4.986 -20 -3.572 4.419 -20 -4.419
+4 16 4.419 -20 -4.419 3.572 -20 -4.986 3.572 -14 -4.986 4.419 -13 -4.419
+5 24 4.419 -13 -4.419 4.419 -20 -4.419 4.986 -16 -3.572 3.572 -16 -4.986
+0 Friction lip
+4 16 5.728 -18.9 2.373 4.95 -18.9 3.537 4.986 -20 3.572 5.774 -20 2.392
+4 16 6.2 -18.9 0 5.728 -18.9 2.373 5.774 -20 2.392 6.25 -20 0
+4 16 5.728 -18.9 -2.373 6.2 -18.9 0 6.25 -20 0 5.774 -20 -2.392
+4 16 4.95 -18.9 -3.537 5.728 -18.9 -2.373 5.774 -20 -2.392 4.986 -20 -3.572
+4 16 5.543 -18 2.296 4.809 -18 3.395 4.95 -18.9 3.537 5.728 -18.9 2.373
+4 16 6 -18 0 5.543 -18 2.296 5.728 -18.9 2.373 6.2 -18.9 0
+4 16 5.543 -18 -2.296 6 -18 0 6.2 -18.9 0 5.728 -18.9 -2.373
+4 16 4.809 -18 -3.395 5.543 -18 -2.296 5.728 -18.9 -2.373 4.95 -18.9 -3.537
+2 24 4.986 -20 3.572 4.95 -18.9 3.537
+2 24 4.809 -18 3.396 4.95 -18.9 3.537
+2 24 5.543 -18 2.296 4.809 -18 3.396
+2 24 5.543 -18 2.296 6 -18 0
+2 24 6 -18 0 5.543 -18 -2.296
+2 24 5.543 -18 -2.296 4.809 -18 -3.396
+2 24 4.809 -18 -3.396 4.95 -18.9 -3.537
+2 24 4.986 -20 -3.572 4.95 -18.9 -3.537
+5 24 5.774 -20 2.392 4.986 -20 3.572 4.384 -18.9 4.384 5.728 -21.1 2.373
+5 24 5.774 -20 2.392 5.728 -18.9 2.373 6.25 -20 0 4.419 -20 4.419
+5 24 6.25 -20 0 5.774 -20 2.392 5.728 -18.9 2.373 6.2 -21.1 0
+5 24 6.25 -20 0 6.2 -18.9 0 5.774 -20 -2.392 5.774 -20 2.392
+5 24 6.25 -20 0 5.774 -20 -2.392 5.728 -18.9 -2.373 6.2 -21.1 0
+5 24 5.774 -20 -2.392 5.728 -18.9 -2.373 4.419 -20 -4.419 6.25 -20 0
+5 24 5.774 -20 -2.392 4.986 -20 -3.572 4.384 -18.9 -4.384 5.728 -21.1 -2.373
+5 24 4.95 -18.9 3.537 5.728 -18.9 2.373 4.242 -18 4.242 5.774 -20 2.392
+5 24 5.543 -18 2.296 5.728 -18.9 2.373 6.2 -18.9 0 4.384 -18.9 4.384
+5 24 5.728 -18.9 2.373 6.2 -18.9 0 5.543 -18 2.296 6.25 -20 0
+5 24 6 -18 0 6.2 -18.9 0 5.728 -18.9 -2.373 5.728 -18.9 2.373
+5 24 5.728 -18.9 -2.373 6.2 -18.9 0 5.543 -18 -2.296 6.25 -20 0
+5 24 5.543 -18 -2.296 5.728 -18.9 -2.373 4.384 -18.9 -4.384 6.2 -18.9 0
+5 24 4.95 -18.9 -3.537 5.728 -18.9 -2.373 4.242 -18 -4.242 5.774 -20 -2.393
+4 16 -5.728 -18.9 -2.373 -4.95 -18.9 -3.537 -4.986 -20 -3.572 -5.774 -20 -2.392
+4 16 -6.2 -18.9 0 -5.728 -18.9 -2.373 -5.774 -20 -2.392 -6.25 -20 0
+4 16 -5.728 -18.9 2.373 -6.2 -18.9 0 -6.25 -20 0 -5.774 -20 2.392
+4 16 -4.95 -18.9 3.537 -5.728 -18.9 2.373 -5.774 -20 2.392 -4.986 -20 3.572
+4 16 -5.543 -18 -2.296 -4.809 -18 -3.395 -4.95 -18.9 -3.537 -5.728 -18.9 -2.373
+4 16 -6 -18 0 -5.543 -18 -2.296 -5.728 -18.9 -2.373 -6.2 -18.9 0
+4 16 -5.543 -18 2.296 -6 -18 0 -6.2 -18.9 0 -5.728 -18.9 2.373
+4 16 -4.809 -18 3.395 -5.543 -18 2.296 -5.728 -18.9 2.373 -4.95 -18.9 3.537
+2 24 -4.986 -20 -3.572 -4.95 -18.9 -3.537
+2 24 -4.809 -18 -3.396 -4.95 -18.9 -3.537
+2 24 -5.543 -18 -2.296 -4.809 -18 -3.396
+2 24 -5.543 -18 -2.296 -6 -18 0
+2 24 -6 -18 0 -5.543 -18 2.296
+2 24 -5.543 -18 2.296 -4.809 -18 3.396
+2 24 -4.809 -18 3.396 -4.95 -18.9 3.537
+2 24 -4.986 -20 3.572 -4.95 -18.9 3.537
+5 24 -5.774 -20 -2.392 -4.986 -20 -3.572 -4.384 -18.9 -4.384 -5.728 -21.1 -2.373
+5 24 -5.774 -20 -2.392 -5.728 -18.9 -2.373 -6.25 -20 0 -4.419 -20 -4.419
+5 24 -6.25 -20 0 -5.774 -20 -2.392 -5.728 -18.9 -2.373 -6.2 -21.1 0
+5 24 -6.25 -20 0 -6.2 -18.9 0 -5.774 -20 2.392 -5.774 -20 -2.392
+5 24 -6.25 -20 0 -5.774 -20 2.392 -5.728 -18.9 2.373 -6.2 -21.1 0
+5 24 -5.774 -20 2.392 -5.728 -18.9 2.373 -4.419 -20 4.419 -6.25 -20 0
+5 24 -5.774 -20 2.392 -4.986 -20 3.572 -4.384 -18.9 4.384 -5.728 -21.1 2.373
+5 24 -4.95 -18.9 -3.537 -5.728 -18.9 -2.373 -4.242 -18 -4.242 -5.774 -20 -2.392
+5 24 -5.543 -18 -2.296 -5.728 -18.9 -2.373 -6.2 -18.9 0 -4.384 -18.9 -4.384
+5 24 -5.728 -18.9 -2.373 -6.2 -18.9 0 -5.543 -18 -2.296 -6.25 -20 0
+5 24 -6 -18 0 -6.2 -18.9 0 -5.728 -18.9 2.373 -5.728 -18.9 -2.373
+5 24 -5.728 -18.9 2.373 -6.2 -18.9 0 -5.543 -18 2.296 -6.25 -20 0
+5 24 -5.543 -18 2.296 -5.728 -18.9 2.373 -4.384 -18.9 4.384 -6.2 -18.9 0
+5 24 -4.95 -18.9 3.537 -5.728 -18.9 2.373 -4.242 -18 4.242 -5.774 -20 2.393
+0 
+
+0 FILE p/confric6.dat
+0 Technic Friction Pin 1.0 Slotted without Base Collar
+0 Name: confric6.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 -8.5 -6 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -8.5 -6 0 0 -1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+4 16 -2.296 -9.5 -5.543 -2.296 0 -5.543 -1 0 -5.801 -1 -9.5 -5.801
+1 16 0 0 0 -2.296 0 -5.543 0 -9.5 0 -5.543 0 2.296 p/3-8cyli.dat
+4 16 -2.296 0 5.543 -2.296 -9.5 5.543 -1 -9.5 5.801 -1 0 5.801
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+4 16 2.296 -9.5 5.543 2.296 0 5.543 1 0 5.801 1 -9.5 5.801
+1 16 0 0 0 2.296 0 5.543 0 -9.5 0 5.543 0 -2.296 p/3-8cyli.dat
+4 16 2.296 0 -5.543 2.296 -9.5 -5.543 1 -9.5 -5.801 1 0 -5.801
+1 16 0 -8.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 0 -8.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -9.5 0 6 0 0 0 -2 0 0 0 6 p/4-4cyli.dat
+1 16 6 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 5.672 -14.75 1.648 0 -1 -0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 0 -18 0 5.543 0 -2.296 0 6.5 0 2.296 0 5.543 p/3-8cyli.dat
+1 16 0 -18 0 5.543 0 -2.296 0 1 0 2.296 0 5.543 p/3-8edge.dat
+1 16 -5.672 -14.75 1.648 0 1 0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -5.672 -14.75 -1.648 0 1 0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 0 -18 0 -5.543 0 2.296 0 6.5 0 -2.296 0 -5.543 p/3-8cyli.dat
+1 16 0 -18 0 -5.543 0 2.296 0 1 0 -2.296 0 -5.543 p/3-8edge.dat
+1 16 5.672 -14.75 -1.648 0 -1 -0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+2 24 6.301 -18 -1 5.801 -18 -1
+4 16 6.301 -18 -1 6.005 -18 -2.488 5.543 -18 -2.296 5.801 -18 -1
+4 16 6.005 -18 -2.488 4.596 -18 -4.596 4.243 -18 -4.243 5.543 -18 -2.296
+4 16 4.596 -18 -4.596 2.488 -18 -6.005 2.296 -18 -5.543 4.243 -18 -4.243
+4 16 2.488 -18 -6.005 0 -18 -6.5 0 -18 -6 2.296 -18 -5.543
+4 16 0 -18 -6.5 -2.488 -18 -6.005 -2.296 -18 -5.543 0 -18 -6
+4 16 -2.488 -18 -6.005 -4.596 -18 -4.596 -4.243 -18 -4.243 -2.296 -18 -5.543
+4 16 -4.596 -18 -4.596 -6.005 -18 -2.488 -5.543 -18 -2.296 -4.243 -18 -4.243
+4 16 -6.005 -18 -2.488 -6.301 -18 -1 -5.801 -18 -1 -5.543 -18 -2.296
+2 24 -6.301 -18 -1 -5.801 -18 -1
+2 24 -6.301 -18 1 -5.801 -18 1
+4 16 -6.301 -18 1 -6.005 -18 2.488 -5.543 -18 2.296 -5.801 -18 1
+4 16 -6.005 -18 2.488 -4.596 -18 4.596 -4.243 -18 4.243 -5.543 -18 2.296
+4 16 -4.596 -18 4.596 -2.488 -18 6.005 -2.296 -18 5.543 -4.243 -18 4.243
+4 16 -2.488 -18 6.005 0 -18 6.5 0 -18 6 -2.296 -18 5.543
+4 16 0 -18 6.5 2.488 -18 6.005 2.296 -18 5.543 0 -18 6
+4 16 2.488 -18 6.005 4.596 -18 4.596 4.243 -18 4.243 2.296 -18 5.543
+4 16 4.596 -18 4.596 6.005 -18 2.488 5.543 -18 2.296 4.243 -18 4.243
+4 16 6.005 -18 2.488 6.301 -18 1 5.801 -18 1 5.543 -18 2.296
+2 24 6.301 -18 1 5.801 -18 1
+1 16 6.153 -19 1.744 -0.148 -1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 6.005 0 -2.488 0 1 0 2.488 0 6.005 p/3-8edge.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8cyli.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8edge.dat
+1 16 -6.153 -19 1.744 0.148 1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 -6.153 -19 -1.744 0.148 1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 -6.005 0 2.488 0 1 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8cyli.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 6.153 -19 -1.744 -0.148 -1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 1 p/1-4cyli.dat
+1 16 4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+1 16 5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+4 16 3.696 -20 1.531 3.801 -20 1 6.301 -20 1 6.005 -20 2.488
+4 16 2.828 -20 2.828 3.696 -20 1.531 6.005 -20 2.488 4.596 -20 4.596
+4 16 1.531 -20 3.696 2.828 -20 2.828 4.596 -20 4.596 2.488 -20 6.005
+4 16 0 -20 4 1.531 -20 3.696 2.488 -20 6.005 0 -20 6.5
+4 16 -1.531 -20 3.696 0 -20 4 0 -20 6.5 -2.488 -20 6.005
+4 16 -2.828 -20 2.828 -1.531 -20 3.696 -2.488 -20 6.005 -4.596 -20 4.596
+4 16 -3.696 -20 1.531 -2.828 -20 2.828 -4.596 -20 4.596 -6.005 -20 2.488
+4 16 -3.801 -20 1 -3.696 -20 1.531 -6.005 -20 2.488 -6.301 -20 1
+1 16 -5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+1 16 -4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 -4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+1 16 -5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+4 16 -3.696 -20 -1.531 -3.801 -20 -1 -6.301 -20 -1 -6.005 -20 -2.488
+4 16 -2.828 -20 -2.828 -3.696 -20 -1.531 -6.005 -20 -2.488 -4.596 -20 -4.596
+4 16 -1.531 -20 -3.696 -2.828 -20 -2.828 -4.596 -20 -4.596 -2.488 -20 -6.005
+4 16 0 -20 -4 -1.531 -20 -3.696 -2.488 -20 -6.005 0 -20 -6.5
+4 16 1.531 -20 -3.696 0 -20 -4 0 -20 -6.5 2.488 -20 -6.005
+4 16 2.828 -20 -2.828 1.531 -20 -3.696 2.488 -20 -6.005 4.596 -20 -4.596
+4 16 3.696 -20 -1.531 2.828 -20 -2.828 4.596 -20 -4.596 6.005 -20 -2.488
+4 16 3.801 -20 -1 3.696 -20 -1.531 6.005 -20 -2.488 6.301 -20 -1
+1 16 5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+1 16 4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 3.748 -15.75 1.265 0 1 -0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 3.695 0 -1.531 0 8.5 0 1.531 0 3.695 p/3-8cyli.dat
+1 16 0 -20 0 3.695 0 -1.531 0 1 0 1.531 0 3.695 p/3-8edge.dat
+1 16 -3.748 -15.75 1.265 0 -1 0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -4 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -3.748 -15.75 -1.265 0 -1 0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 -3.695 0 1.531 0 8.5 0 -1.531 0 -3.695 p/3-8cyli.dat
+1 16 0 -20 0 -3.695 0 1.531 0 1 0 -1.531 0 -3.695 p/3-8edge.dat
+1 16 3.748 -15.75 -1.265 0 1 -0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 4 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -9.5 0 4 0 0 0 -2 0 0 0 4 p/4-4cyli.dat
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+4 16 -1.531 -9.5 -3.695 -1 -9.5 -3.801 -1 0 -3.801 -1.531 0 -3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 -1.531 0 -3.695 0 -9.5 0 -3.695 0 1.531 p/3-8cyli.dat
+4 16 -1.531 0 3.695 -1 0 3.801 -1 -9.5 3.801 -1.531 -9.5 3.695
+1 16 0 -8.5 4 0 0 -1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+1 16 0 -8.5 4 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+4 16 1.531 -9.5 3.695 1 -9.5 3.801 1 0 3.801 1.531 0 3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 1.531 0 3.695 0 -9.5 0 3.695 0 -1.531 p/3-8cyli.dat
+4 16 1.531 0 -3.695 1 0 -3.801 1 -9.5 -3.801 1.531 -9.5 -3.695
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -2 0.199 p/1-4cyli.dat
+1 16 -1 -4.25 -4.801 0 -1 0 -4.25 0 0 0 0 -1 p/rect2p.dat
+1 16 -1 -4.25 4.801 0 -1 0 -4.25 0 0 0 0 -1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -2 -0.199 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 -2 -0.199 p/1-4cyli.dat
+1 16 1 -4.25 4.801 0 1 0 -4.25 0 0 0 0 -1 p/rect2p.dat
+1 16 1 -4.25 -4.801 0 1 0 -4.25 0 0 0 0 -1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 -2 0.199 p/1-4cyli.dat
+0 Friction
+1 16 4.243 -14 4.243 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 -0.848 0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 4.243 0.566 0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 4.419 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 -0.848 -1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -14 4.419 0.566 -1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -16 4.897 0.088 1 0 0 0 -2 0.088 0 0 p/rect3.dat
+1 16 4.897 -16 3.483 0.088 -1 0 0 0 -2 0.088 0 0 p/rect3.dat
+4 16 4.419 -13 4.419 3.572 -14 4.986 3.572 -18 4.986 4.419 -18 4.419
+4 16 4.419 -18 4.419 4.986 -18 3.572 4.986 -14 3.572 4.419 -13 4.419
+2 24 4.419 -18 4.419 3.572 -18 4.986
+2 24 4.419 -18 4.419 4.986 -18 3.572
+5 24 4.419 -13 4.419 4.419 -18 4.419 3.572 -16 4.986 4.986 -16 3.572
+1 16 -4.243 -14 4.243 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 -0.566 -0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 4.243 0.848 -0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -16 3.483 -0.088 1 0 0 0 -2 0.088 0 0 p/rect3.dat
+1 16 -3.483 -16 4.897 -0.088 -1 0 0 0 -2 0.088 0 0 p/rect3.dat
+4 16 -4.419 -13 4.419 -4.986 -14 3.572 -4.986 -18 3.572 -4.419 -18 4.419
+4 16 -4.419 -18 4.419 -3.572 -18 4.986 -3.572 -14 4.986 -4.419 -13 4.419
+2 24 -4.419 -18 4.419 -4.986 -18 3.572
+2 24 -4.419 -18 4.419 -3.572 -18 4.986
+5 24 -4.419 -13 4.419 -4.419 -18 4.419 -4.986 -16 3.572 -3.572 -16 4.986
+1 16 -4.243 -14 -4.243 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 0.848 -0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 -4.243 -0.566 -0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -16 -4.897 -0.088 -1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+1 16 -4.897 -16 -3.483 -0.088 1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+4 16 -4.419 -13 -4.419 -3.572 -14 -4.986 -3.572 -18 -4.986 -4.419 -18 -4.419
+4 16 -4.419 -18 -4.419 -4.986 -18 -3.572 -4.986 -14 -3.572 -4.419 -13 -4.419
+2 24 -4.419 -18 -4.419 -3.572 -18 -4.986
+2 24 -4.419 -18 -4.419 -4.986 -18 -3.572
+5 24 -4.419 -13 -4.419 -4.419 -18 -4.419 -3.572 -16 -4.986 -4.986 -16 -3.572
+1 16 4.243 -14 -4.243 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 0.566 0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 -4.243 -0.848 0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 -4.419 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 0.566 -1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -14 -4.419 -0.848 -1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -16 -3.483 0.088 -1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+1 16 3.483 -16 -4.897 0.088 1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+4 16 4.419 -13 -4.419 4.986 -14 -3.572 4.986 -18 -3.572 4.419 -18 -4.419
+4 16 4.419 -18 -4.419 3.572 -18 -4.986 3.572 -14 -4.986 4.419 -13 -4.419
+2 24 4.419 -18 -4.419 4.986 -18 -3.572
+2 24 4.419 -18 -4.419 3.572 -18 -4.986
+5 24 4.419 -13 -4.419 4.419 -18 -4.419 4.986 -16 -3.572 3.572 -16 -4.986
+1 16 4.243 -6 -4.243 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 -0.848 0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 -4.243 0.566 0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 -4.419 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 -0.848 -1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -6 -4.419 0.566 -1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -3 -4.897 0 1 -0.088 3 0 0 0 0 0.088 p/rect2p.dat
+1 16 4.897 -3 -3.483 0 -1 -0.088 3 0 0 0 0 0.088 p/rect2p.dat
+4 16 4.419 -7 -4.419 3.572 -6 -4.986 3.572 0 -4.986 4.419 0 -4.419
+4 16 4.419 0 -4.419 4.986 0 -3.572 4.986 -6 -3.572 4.419 -7 -4.419
+5 24 4.419 -7 -4.419 4.419 0 -4.419 3.572 -4 -4.986 4.986 -4 -3.572
+1 16 -4.243 -6 -4.243 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 -0.566 -0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 -4.243 0.848 -0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -3 -3.483 0 1 0.088 3 0 0 0 0 0.088 p/rect2p.dat
+1 16 -3.483 -3 -4.897 0 -1 0.088 3 0 0 0 0 0.088 p/rect2p.dat
+4 16 -4.419 -7 -4.419 -4.986 -6 -3.572 -4.986 0 -3.572 -4.419 0 -4.419
+4 16 -4.419 0 -4.419 -3.572 0 -4.986 -3.572 -6 -4.986 -4.419 -7 -4.419
+5 24 -4.419 -7 -4.419 -4.419 0 -4.419 -4.986 -4 -3.572 -3.572 -4 -4.986
+1 16 -4.243 -6 4.243 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 0.848 -0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 4.243 -0.566 -0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -3 4.897 0 -1 -0.088 3 0 0 0 0 0.088 p/rect2p.dat
+1 16 -4.897 -3 3.483 0 1 -0.088 3 0 0 0 0 0.088 p/rect2p.dat
+4 16 -4.419 -7 4.419 -3.572 -6 4.986 -3.572 0 4.986 -4.419 0 4.419
+4 16 -4.419 0 4.419 -4.986 0 3.572 -4.986 -6 3.572 -4.419 -7 4.419
+5 24 -4.419 -7 4.419 -4.419 0 4.419 -3.572 -4 4.986 -4.986 -4 3.572
+1 16 4.243 -6 4.243 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 0.566 0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 4.243 -0.848 0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 4.419 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 0.566 -1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -6 4.419 -0.848 -1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -3 3.483 0 -1 0.088 3 0 0 0 0 0.088 p/rect2p.dat
+1 16 3.483 -3 4.897 0 1 0.088 3 0 0 0 0 0.088 p/rect2p.dat
+4 16 4.419 -7 4.419 4.986 -6 3.572 4.986 0 3.572 4.419 0 4.419
+4 16 4.419 0 4.419 3.572 0 4.986 3.572 -6 4.986 4.419 -7 4.419
+5 24 4.419 -7 4.419 4.419 0 4.419 4.986 -4 3.572 3.572 -4 4.986
+0 Friction lip
+4 16 5.728 -1.1 -2.373 4.95 -1.1 -3.537 4.986 0 -3.572 5.774 0 -2.392
+4 16 6.2 -1.1 0 5.728 -1.1 -2.373 5.774 0 -2.392 6.25 0 0
+4 16 5.728 -1.1 2.373 6.2 -1.1 0 6.25 0 0 5.774 0 2.392
+4 16 4.95 -1.1 3.537 5.728 -1.1 2.373 5.774 0 2.392 4.986 0 3.572
+4 16 5.543 -2 -2.296 4.809 -2 -3.395 4.95 -1.1 -3.537 5.728 -1.1 -2.373
+4 16 6 -2 0 5.543 -2 -2.296 5.728 -1.1 -2.373 6.2 -1.1 0
+4 16 5.543 -2 2.296 6 -2 0 6.2 -1.1 0 5.728 -1.1 2.373
+4 16 4.809 -2 3.395 5.543 -2 2.296 5.728 -1.1 2.373 4.95 -1.1 3.537
+2 24 4.986 0 -3.572 4.95 -1.1 -3.537
+2 24 4.809 -2 -3.396 4.95 -1.1 -3.537
+2 24 5.543 -2 -2.296 4.809 -2 -3.396
+2 24 5.543 -2 -2.296 6 -2 0
+2 24 6 -2 0 5.543 -2 2.296
+2 24 5.543 -2 2.296 4.809 -2 3.396
+2 24 4.809 -2 3.396 4.95 -1.1 3.537
+2 24 4.986 0 3.572 4.95 -1.1 3.537
+5 24 5.774 0 -2.392 4.986 0 -3.572 4.384 -1.1 -4.384 5.728 1.1 -2.373
+5 24 5.774 0 -2.392 5.728 -1.1 -2.373 6.25 0 0 4.419 0 -4.419
+5 24 6.25 0 0 5.774 0 -2.392 5.728 -1.1 -2.373 6.2 1.1 0
+5 24 6.25 0 0 6.2 -1.1 0 5.774 0 2.392 5.774 0 -2.392
+5 24 6.25 0 0 5.774 0 2.392 5.728 -1.1 2.373 6.2 1.1 0
+5 24 5.774 0 2.392 5.728 -1.1 2.373 4.419 0 4.419 6.25 0 0
+5 24 5.774 0 2.392 4.986 0 3.572 4.384 -1.1 4.384 5.728 1.1 2.373
+5 24 4.95 -1.1 -3.537 5.728 -1.1 -2.373 4.242 -2 -4.242 5.774 0 -2.392
+5 24 5.543 -2 -2.296 5.728 -1.1 -2.373 6.2 -1.1 0 4.384 -1.1 -4.384
+5 24 5.728 -1.1 -2.373 6.2 -1.1 0 5.543 -2 -2.296 6.25 0 0
+5 24 6 -2 0 6.2 -1.1 0 5.728 -1.1 2.373 5.728 -1.1 -2.373
+5 24 5.728 -1.1 2.373 6.2 -1.1 0 5.543 -2 2.296 6.25 0 0
+5 24 5.543 -2 2.296 5.728 -1.1 2.373 4.384 -1.1 4.384 6.2 -1.1 0
+5 24 4.95 -1.1 3.537 5.728 -1.1 2.373 4.242 -2 4.242 5.774 0 2.393
+4 16 -5.728 -1.1 2.373 -4.95 -1.1 3.537 -4.986 0 3.572 -5.774 0 2.392
+4 16 -6.2 -1.1 0 -5.728 -1.1 2.373 -5.774 0 2.392 -6.25 0 0
+4 16 -5.728 -1.1 -2.373 -6.2 -1.1 0 -6.25 0 0 -5.774 0 -2.392
+4 16 -4.95 -1.1 -3.537 -5.728 -1.1 -2.373 -5.774 0 -2.392 -4.986 0 -3.572
+4 16 -5.543 -2 2.296 -4.809 -2 3.395 -4.95 -1.1 3.537 -5.728 -1.1 2.373
+4 16 -6 -2 0 -5.543 -2 2.296 -5.728 -1.1 2.373 -6.2 -1.1 0
+4 16 -5.543 -2 -2.296 -6 -2 0 -6.2 -1.1 0 -5.728 -1.1 -2.373
+4 16 -4.809 -2 -3.395 -5.543 -2 -2.296 -5.728 -1.1 -2.373 -4.95 -1.1 -3.537
+2 24 -4.986 0 3.572 -4.95 -1.1 3.537
+2 24 -4.809 -2 3.396 -4.95 -1.1 3.537
+2 24 -5.543 -2 2.296 -4.809 -2 3.396
+2 24 -5.543 -2 2.296 -6 -2 0
+2 24 -6 -2 0 -5.543 -2 -2.296
+2 24 -5.543 -2 -2.296 -4.809 -2 -3.396
+2 24 -4.809 -2 -3.396 -4.95 -1.1 -3.537
+2 24 -4.986 0 -3.572 -4.95 -1.1 -3.537
+5 24 -5.774 0 2.392 -4.986 0 3.572 -4.384 -1.1 4.384 -5.728 1.1 2.373
+5 24 -5.774 0 2.392 -5.728 -1.1 2.373 -6.25 0 0 -4.419 0 4.419
+5 24 -6.25 0 0 -5.774 0 2.392 -5.728 -1.1 2.373 -6.2 1.1 0
+5 24 -6.25 0 0 -6.2 -1.1 0 -5.774 0 -2.392 -5.774 0 2.392
+5 24 -6.25 0 0 -5.774 0 -2.392 -5.728 -1.1 -2.373 -6.2 1.1 0
+5 24 -5.774 0 -2.392 -5.728 -1.1 -2.373 -4.419 0 -4.419 -6.25 0 0
+5 24 -5.774 0 -2.392 -4.986 0 -3.572 -4.384 -1.1 -4.384 -5.728 1.1 -2.373
+5 24 -4.95 -1.1 3.537 -5.728 -1.1 2.373 -4.242 -2 4.242 -5.774 0 2.392
+5 24 -5.543 -2 2.296 -5.728 -1.1 2.373 -6.2 -1.1 0 -4.384 -1.1 4.384
+5 24 -5.728 -1.1 2.373 -6.2 -1.1 0 -5.543 -2 2.296 -6.25 0 0
+5 24 -6 -2 0 -6.2 -1.1 0 -5.728 -1.1 -2.373 -5.728 -1.1 2.373
+5 24 -5.728 -1.1 -2.373 -6.2 -1.1 0 -5.543 -2 -2.296 -6.25 0 0
+5 24 -5.543 -2 -2.296 -5.728 -1.1 -2.373 -4.384 -1.1 -4.384 -6.2 -1.1 0
+5 24 -4.95 -1.1 -3.537 -5.728 -1.1 -2.373 -4.242 -2 -4.242 -5.774 0 -2.393
+0 
+
+0 FILE p/confric5.dat
+0 Technic Friction Pin 1.0 Slotted with Split Base Collar
+0 Name: confric5.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 2.031 -1 -7.596 0 0 -1.031 -1 0 0 0 1 -0.205 p/rect1.dat
+1 16 0 -2 0 3.061 0 7.391 0 2 0 -7.391 0 3.061 p/3-8cyli.dat
+1 16 0 -2 0 3.061 0 7.391 0 1 0 -7.391 0 3.061 p/3-8edge.dat
+1 16 2.031 -1 7.596 0 0 -1.031 -1 0 0 0 -1 0.205 p/rect1.dat
+1 16 -2.031 -1 7.596 0 0 1.031 -1 0 0 0 -1 0.205 p/rect1.dat
+1 16 0 -2 0 -3.061 0 -7.391 0 2 0 7.391 0 -3.061 p/3-8cyli.dat
+1 16 0 -2 0 -3.061 0 -7.391 0 1 0 7.391 0 -3.061 p/3-8edge.dat
+1 16 -2.031 -1 -7.596 0 0 1.031 -1 0 0 0 1 -0.205 p/rect1.dat
+2 24 1 -2 -5.801 1 -2 -7.801
+4 16 3.061 -2 -7.391 2.296 -2 -5.543 1 -2 -5.801 1 -2 -7.801
+1 16 0 -2 0 0.765 0 1.848 0 1 0 -1.848 0 0.765 p/1-8ring3.dat
+1 16 0 -2 0 1.848 0 0.765 0 1 0 -0.765 0 1.848 p/1-4ring3.dat
+4 16 2.296 -2 5.543 3.061 -2 7.391 1 -2 7.801 1 -2 5.801
+2 24 1 -2 5.801 1 -2 7.801
+2 24 -1 -2 5.801 -1 -2 7.801
+4 16 -3.061 -2 7.391 -2.296 -2 5.543 -1 -2 5.801 -1 -2 7.801
+1 16 0 -2 0 -0.765 0 -1.848 0 1 0 1.848 0 -0.765 p/1-8ring3.dat
+1 16 0 -2 0 -1.848 0 -0.765 0 1 0 0.765 0 -1.848 p/1-4ring3.dat
+4 16 -2.296 -2 -5.543 -3.061 -2 -7.391 -1 -2 -7.801 -1 -2 -5.801
+2 24 -1 -2 -5.801 -1 -2 -7.801
+1 16 0 -8.5 -6 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -8.5 -6 0 0 -1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 -1.648 -5.75 -5.672 0 0 -0.648 3.75 0 0 0 1 0.129 p/rect1.dat
+1 16 0 -2 0 -2.296 0 -5.543 0 -7.5 0 -5.543 0 2.296 p/3-8cyli.dat
+1 16 0 -2 0 -2.296 0 -5.543 0 -1 0 -5.543 0 2.296 p/3-8edge.dat
+1 16 -1.648 -5.75 5.672 0 0 -0.648 3.75 0 0 0 -1 -0.129 p/rect1.dat
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 -1 -0.199 p/1-4ndis.dat
+1 16 1.648 -5.75 5.672 0 0 0.648 3.75 0 0 0 -1 -0.129 p/rect1.dat
+1 16 0 -2 0 2.296 0 5.543 0 -7.5 0 5.543 0 -2.296 p/3-8cyli.dat
+1 16 0 -2 0 2.296 0 5.543 0 -1 0 5.543 0 -2.296 p/3-8edge.dat
+1 16 1.648 -5.75 -5.672 0 0 0.648 3.75 0 0 0 1 0.129 p/rect1.dat
+1 16 0 -8.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4ndis.dat
+1 16 0 -8.5 -6 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+1 16 0 -9.5 0 6 0 0 0 -2 0 0 0 6 p/4-4cyli.dat
+1 16 6 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 5.672 -14.75 1.648 0 -1 -0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 0 -18 0 5.543 0 -2.296 0 6.5 0 2.296 0 5.543 p/3-8cyli.dat
+1 16 0 -18 0 5.543 0 -2.296 0 1 0 2.296 0 5.543 p/3-8edge.dat
+1 16 -5.672 -14.75 1.648 0 1 0.129 -3.25 0 0 0 0 0.648 p/rect1.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -6 -12.5 0 0 1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -5.672 -14.75 -1.648 0 1 0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 0 -18 0 -5.543 0 2.296 0 6.5 0 -2.296 0 -5.543 p/3-8cyli.dat
+1 16 0 -18 0 -5.543 0 2.296 0 1 0 -2.296 0 -5.543 p/3-8edge.dat
+1 16 5.672 -14.75 -1.648 0 -1 -0.129 -3.25 0 0 0 0 -0.648 p/rect1.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 6 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+2 24 6.301 -18 -1 5.801 -18 -1
+4 16 6.301 -18 -1 6.005 -18 -2.488 5.543 -18 -2.296 5.801 -18 -1
+4 16 6.005 -18 -2.488 4.596 -18 -4.596 4.243 -18 -4.243 5.543 -18 -2.296
+4 16 4.596 -18 -4.596 2.488 -18 -6.005 2.296 -18 -5.543 4.243 -18 -4.243
+4 16 2.488 -18 -6.005 0 -18 -6.5 0 -18 -6 2.296 -18 -5.543
+4 16 0 -18 -6.5 -2.488 -18 -6.005 -2.296 -18 -5.543 0 -18 -6
+4 16 -2.488 -18 -6.005 -4.596 -18 -4.596 -4.243 -18 -4.243 -2.296 -18 -5.543
+4 16 -4.596 -18 -4.596 -6.005 -18 -2.488 -5.543 -18 -2.296 -4.243 -18 -4.243
+4 16 -6.005 -18 -2.488 -6.301 -18 -1 -5.801 -18 -1 -5.543 -18 -2.296
+2 24 -6.301 -18 -1 -5.801 -18 -1
+2 24 -6.301 -18 1 -5.801 -18 1
+4 16 -6.301 -18 1 -6.005 -18 2.488 -5.543 -18 2.296 -5.801 -18 1
+4 16 -6.005 -18 2.488 -4.596 -18 4.596 -4.243 -18 4.243 -5.543 -18 2.296
+4 16 -4.596 -18 4.596 -2.488 -18 6.005 -2.296 -18 5.543 -4.243 -18 4.243
+4 16 -2.488 -18 6.005 0 -18 6.5 0 -18 6 -2.296 -18 5.543
+4 16 0 -18 6.5 2.488 -18 6.005 2.296 -18 5.543 0 -18 6
+4 16 2.488 -18 6.005 4.596 -18 4.596 4.243 -18 4.243 2.296 -18 5.543
+4 16 4.596 -18 4.596 6.005 -18 2.488 5.543 -18 2.296 4.243 -18 4.243
+4 16 6.005 -18 2.488 6.301 -18 1 5.801 -18 1 5.543 -18 2.296
+2 24 6.301 -18 1 5.801 -18 1
+1 16 6.153 -19 1.744 -0.148 -1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 6.005 0 -2.488 0 1 0 2.488 0 6.005 p/3-8edge.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8cyli.dat
+1 16 0 -20 0 6.005 0 -2.488 0 2 0 2.488 0 6.005 p/3-8edge.dat
+1 16 -6.153 -19 1.744 0.148 1 0 0 0 1 0.744 0 0 p/rect2p.dat
+1 16 -6.153 -19 -1.744 0.148 1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+1 16 0 -18 0 -6.005 0 2.488 0 1 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8cyli.dat
+1 16 0 -20 0 -6.005 0 2.488 0 2 0 -2.488 0 -6.005 p/3-8edge.dat
+1 16 6.153 -19 -1.744 -0.148 -1 0 0 0 1 -0.744 0 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 1 p/1-4cyli.dat
+1 16 4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+1 16 5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+4 16 3.696 -20 1.531 3.801 -20 1 6.301 -20 1 6.005 -20 2.488
+4 16 2.828 -20 2.828 3.696 -20 1.531 6.005 -20 2.488 4.596 -20 4.596
+4 16 1.531 -20 3.696 2.828 -20 2.828 4.596 -20 4.596 2.488 -20 6.005
+4 16 0 -20 4 1.531 -20 3.696 2.488 -20 6.005 0 -20 6.5
+4 16 -1.531 -20 3.696 0 -20 4 0 -20 6.5 -2.488 -20 6.005
+4 16 -2.828 -20 2.828 -1.531 -20 3.696 -2.488 -20 6.005 -4.596 -20 4.596
+4 16 -3.696 -20 1.531 -2.828 -20 2.828 -4.596 -20 4.596 -6.005 -20 2.488
+4 16 -3.801 -20 1 -3.696 -20 1.531 -6.005 -20 2.488 -6.301 -20 1
+1 16 -5.051 -19 1 1.25 0 0 0 0 -1 0 1 0 p/rect3.dat
+1 16 -4.801 -15.25 1 0 0 1 2.75 0 0 0 1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 1 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -6 -12.5 0 0 2 0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 -4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+1 16 -5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+4 16 -3.696 -20 -1.531 -3.801 -20 -1 -6.301 -20 -1 -6.005 -20 -2.488
+4 16 -2.828 -20 -2.828 -3.696 -20 -1.531 -6.005 -20 -2.488 -4.596 -20 -4.596
+4 16 -1.531 -20 -3.696 -2.828 -20 -2.828 -4.596 -20 -4.596 -2.488 -20 -6.005
+4 16 0 -20 -4 -1.531 -20 -3.696 -2.488 -20 -6.005 0 -20 -6.5
+4 16 1.531 -20 -3.696 0 -20 -4 0 -20 -6.5 2.488 -20 -6.005
+4 16 2.828 -20 -2.828 1.531 -20 -3.696 2.488 -20 -6.005 4.596 -20 -4.596
+4 16 3.696 -20 -1.531 2.828 -20 -2.828 4.596 -20 -4.596 6.005 -20 -2.488
+4 16 3.801 -20 -1 3.696 -20 -1.531 6.005 -20 -2.488 6.301 -20 -1
+1 16 5.051 -19 -1 1.25 0 0 0 0 -1 0 -1 0 p/rect3.dat
+1 16 4.801 -15.25 -1 0 0 1 2.75 0 0 0 -1 0 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 4 -12.5 0 0 2 -0.199 1 0 0 0 0 -1 p/1-4cyli.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 3.748 -15.75 1.265 0 1 -0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 3.695 0 -1.531 0 8.5 0 1.531 0 3.695 p/3-8cyli.dat
+1 16 0 -20 0 3.695 0 -1.531 0 1 0 1.531 0 3.695 p/3-8edge.dat
+1 16 -3.748 -15.75 1.265 0 -1 0.053 -4.25 0 0 0 0 0.265 p/rect1.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 1 p/1-4ndis.dat
+1 16 -4 -12.5 0 0 1 0.199 1 0 0 0 0 1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4edge.dat
+1 16 -4 -12.5 0 0 -1 0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 -3.748 -15.75 -1.265 0 -1 0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+0 BFC INVERTNEXT
+1 16 0 -20 0 -3.695 0 1.531 0 8.5 0 -1.531 0 -3.695 p/3-8cyli.dat
+1 16 0 -20 0 -3.695 0 1.531 0 1 0 -1.531 0 -3.695 p/3-8edge.dat
+1 16 3.748 -15.75 -1.265 0 1 -0.053 -4.25 0 0 0 0 -0.265 p/rect1.dat
+1 16 4 -12.5 0 0 1 -0.199 1 0 0 0 0 -1 p/1-4ndis.dat
+1 16 4 -12.5 0 0 -1 -0.199 1 0 0 0 0 -1 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -9.5 0 4 0 0 0 -2 0 0 0 4 p/4-4cyli.dat
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4edge.dat
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+4 16 -1.531 -9.5 -3.695 -1 -9.5 -3.801 -1 0 -3.801 -1.531 0 -3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 -1.531 0 -3.695 0 -9.5 0 -3.695 0 1.531 p/3-8cyli.dat
+4 16 -1.531 0 3.695 -1 0 3.801 -1 -9.5 3.801 -1.531 -9.5 3.695
+1 16 0 -8.5 4 0 0 -1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+1 16 0 -8.5 4 0 0 -1 -1 0 0 0 -1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4edge.dat
+1 16 0 -8.5 4 0 0 1 -1 0 0 0 1 -0.199 p/1-4ndis.dat
+4 16 1.531 -9.5 3.695 1 -9.5 3.801 1 0 3.801 1.531 0 3.695
+0 BFC INVERTNEXT
+1 16 0 0 0 1.531 0 3.695 0 -9.5 0 3.695 0 -1.531 p/3-8cyli.dat
+4 16 1.531 0 -3.695 1 0 -3.801 1 -9.5 -3.801 1.531 -9.5 -3.695
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 -1 0.199 p/1-4ndis.dat
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 1 0.199 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 -4 0 0 -1 -1 0 0 0 -2 0.199 p/1-4cyli.dat
+1 16 -1 -5.25 -4.801 0 -1 0 -3.25 0 0 0 0 -1 p/rect2p.dat
+1 16 -1 -1 -5.801 0 -1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 -1 -1 5.801 0 -1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 -1 -5.25 4.801 0 -1 0 -3.25 0 0 0 0 -1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 6 0 0 -1 -1 0 0 0 -2 -0.199 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 6 0 0 1 -1 0 0 0 -2 -0.199 p/1-4cyli.dat
+1 16 1 -5.25 4.801 0 1 0 -3.25 0 0 0 0 -1 p/rect2p.dat
+1 16 1 -1 5.801 0 1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 1 -1 -5.801 0 1 0 1 0 0 0 0 2 p/rect2p.dat
+1 16 1 -5.25 -4.801 0 1 0 -3.25 0 0 0 0 -1 p/rect2p.dat
+0 BFC INVERTNEXT
+1 16 0 -8.5 -4 0 0 1 -1 0 0 0 -2 0.199 p/1-4cyli.dat
+0 Friction
+1 16 4.243 -14 4.243 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 4.243 -0.848 0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 4.243 0.566 0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 4.419 -0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 4.419 -0.848 -1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -14 4.419 0.566 -1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -16 4.897 0.088 1 0 0 0 -2 0.088 0 0 p/rect3.dat
+1 16 4.897 -16 3.483 0.088 -1 0 0 0 -2 0.088 0 0 p/rect3.dat
+4 16 4.419 -13 4.419 3.572 -14 4.986 3.572 -18 4.986 4.419 -18 4.419
+4 16 4.419 -18 4.419 4.986 -18 3.572 4.986 -14 3.572 4.419 -13 4.419
+2 24 4.419 -18 4.419 3.572 -18 4.986
+2 24 4.419 -18 4.419 4.986 -18 3.572
+5 24 4.419 -13 4.419 4.419 -18 4.419 3.572 -16 4.986 4.986 -16 3.572
+1 16 -4.243 -14 4.243 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 4.243 -0.566 -0.177 0 0 0 1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 4.243 0.848 -0.177 0 0 0 1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 4.419 -0.566 1 0 0 0 1 -0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 4.419 0.848 1 0 0 0 1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -16 3.483 -0.088 1 0 0 0 -2 0.088 0 0 p/rect3.dat
+1 16 -3.483 -16 4.897 -0.088 -1 0 0 0 -2 0.088 0 0 p/rect3.dat
+4 16 -4.419 -13 4.419 -4.986 -14 3.572 -4.986 -18 3.572 -4.419 -18 4.419
+4 16 -4.419 -18 4.419 -3.572 -18 4.986 -3.572 -14 4.986 -4.419 -13 4.419
+2 24 -4.419 -18 4.419 -4.986 -18 3.572
+2 24 -4.419 -18 4.419 -3.572 -18 4.986
+5 24 -4.419 -13 4.419 -4.419 -18 4.419 -4.986 -16 3.572 -3.572 -16 4.986
+1 16 -4.243 -14 -4.243 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -14 -4.243 0.848 -0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -14 -4.243 -0.566 -0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -14 -4.419 0.848 1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -14 -4.419 -0.566 1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -16 -4.897 -0.088 -1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+1 16 -4.897 -16 -3.483 -0.088 1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+4 16 -4.419 -13 -4.419 -3.572 -14 -4.986 -3.572 -18 -4.986 -4.419 -18 -4.419
+4 16 -4.419 -18 -4.419 -4.986 -18 -3.572 -4.986 -14 -3.572 -4.419 -13 -4.419
+2 24 -4.419 -18 -4.419 -3.572 -18 -4.986
+2 24 -4.419 -18 -4.419 -4.986 -18 -3.572
+5 24 -4.419 -13 -4.419 -4.419 -18 -4.419 -3.572 -16 -4.986 -4.986 -16 -3.572
+1 16 4.243 -14 -4.243 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -14 -4.243 0.566 0.177 0 0 0 1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -14 -4.243 -0.848 0.177 0 0 0 1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -14 -4.419 0.566 1 0 0 0 1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 -0.848 1 0 0 0 1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -14 -4.419 0.566 -1 0 0 0 1 0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -14 -4.419 -0.848 -1 0 0 0 1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -16 -3.483 0.088 -1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+1 16 3.483 -16 -4.897 0.088 1 0 0 0 -2 -0.088 0 0 p/rect3.dat
+4 16 4.419 -13 -4.419 4.986 -14 -3.572 4.986 -18 -3.572 4.419 -18 -4.419
+4 16 4.419 -18 -4.419 3.572 -18 -4.986 3.572 -14 -4.986 4.419 -13 -4.419
+2 24 4.419 -18 -4.419 4.986 -18 -3.572
+2 24 4.419 -18 -4.419 3.572 -18 -4.986
+5 24 4.419 -13 -4.419 4.419 -18 -4.419 4.986 -16 -3.572 3.572 -16 -4.986
+1 16 4.243 -6 -4.243 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 -4.243 -0.848 0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 -4.243 0.566 0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 -4.419 -0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 -4.419 -0.848 -1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 4.419 -6 -4.419 0.566 -1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 3.483 -4 -4.897 0.088 1 0 0 0 2 -0.088 0 0 p/rect3.dat
+1 16 4.897 -4 -3.483 0.088 -1 0 0 0 2 -0.088 0 0 p/rect3.dat
+4 16 4.419 -7 -4.419 3.572 -6 -4.986 3.572 -2 -4.986 4.419 -2 -4.419
+4 16 4.419 -2 -4.419 4.986 -2 -3.572 4.986 -6 -3.572 4.419 -7 -4.419
+2 24 4.419 -2 -4.419 3.572 -2 -4.986
+2 24 4.419 -2 -4.419 4.986 -2 -3.572
+5 24 4.419 -7 -4.419 4.419 -2 -4.419 3.572 -4 -4.986 4.986 -4 -3.572
+1 16 -4.243 -6 -4.243 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 -4.243 -0.566 -0.177 0 0 0 -1 0.848 -0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 -4.243 0.848 -0.177 0 0 0 -1 -0.566 -0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 -4.419 -0.566 1 0 0 0 -1 0.848 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 -4.419 0.848 1 0 0 0 -1 -0.566 0 0 p/1-4chrd.dat
+1 16 -4.897 -4 -3.483 -0.088 1 0 0 0 2 -0.088 0 0 p/rect3.dat
+1 16 -3.483 -4 -4.897 -0.088 -1 0 0 0 2 -0.088 0 0 p/rect3.dat
+4 16 -4.419 -7 -4.419 -4.986 -6 -3.572 -4.986 -2 -3.572 -4.419 -2 -4.419
+4 16 -4.419 -2 -4.419 -3.572 -2 -4.986 -3.572 -6 -4.986 -4.419 -7 -4.419
+2 24 -4.419 -2 -4.419 -4.986 -2 -3.572
+2 24 -4.419 -2 -4.419 -3.572 -2 -4.986
+5 24 -4.419 -7 -4.419 -4.419 -2 -4.419 -4.986 -4 -3.572 -3.572 -4 -4.986
+1 16 -4.243 -6 4.243 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.243 -6 4.243 0.848 -0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 -4.243 -6 4.243 -0.566 -0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 -4.419 -6 4.419 0.848 1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 -4.419 -6 4.419 -0.566 1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 -3.483 -4 4.897 -0.088 -1 0 0 0 2 0.088 0 0 p/rect3.dat
+1 16 -4.897 -4 3.483 -0.088 1 0 0 0 2 0.088 0 0 p/rect3.dat
+4 16 -4.419 -7 4.419 -3.572 -6 4.986 -3.572 -2 4.986 -4.419 -2 4.419
+4 16 -4.419 -2 4.419 -4.986 -2 3.572 -4.986 -6 3.572 -4.419 -7 4.419
+2 24 -4.419 -2 4.419 -3.572 -2 4.986
+2 24 -4.419 -2 4.419 -4.986 -2 3.572
+5 24 -4.419 -7 4.419 -4.419 -2 4.419 -3.572 -4 4.986 -4.986 -4 3.572
+1 16 4.243 -6 4.243 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.243 -6 4.243 0.566 0.177 0 0 0 -1 -0.848 0.177 0 p/1-4cyli.dat
+1 16 4.243 -6 4.243 -0.848 0.177 0 0 0 -1 0.566 0.177 0 p/1-4cyli.dat
+1 16 4.419 -6 4.419 0.566 1 0 0 0 -1 -0.848 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 -0.848 1 0 0 0 -1 0.566 0 0 p/1-4edge.dat
+1 16 4.419 -6 4.419 0.566 -1 0 0 0 -1 -0.848 0 0 p/1-4chrd.dat
+1 16 4.419 -6 4.419 -0.848 -1 0 0 0 -1 0.566 0 0 p/1-4chrd.dat
+1 16 4.897 -4 3.483 0.088 -1 0 0 0 2 0.088 0 0 p/rect3.dat
+1 16 3.483 -4 4.897 0.088 1 0 0 0 2 0.088 0 0 p/rect3.dat
+4 16 4.419 -7 4.419 4.986 -6 3.572 4.986 -2 3.572 4.419 -2 4.419
+4 16 4.419 -2 4.419 3.572 -2 4.986 3.572 -6 4.986 4.419 -7 4.419
+2 24 4.419 -2 4.419 4.986 -2 3.572
+2 24 4.419 -2 4.419 3.572 -2 4.986
+5 24 4.419 -7 4.419 4.419 -2 4.419 4.986 -4 3.572 3.572 -4 4.986
+0 
+
+0 FILE p/1-4chrd.dat
+0 Chord 0.25
+0 Name: 1-4chrd.dat
+0 Author: Tony Hafner [hafhead]
+0 !LDRAW_ORG Primitive UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-10-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-08-02 [MMR1988] Re-creation with PrimGen2 and Rectifier
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+4 16 0.9239 0 0.3827 0.3827 0 0.9239 0 0 1 1 0 0
+3 16 0.7071 0 0.7071 0.3827 0 0.9239 0.9239 0 0.3827 
+
+0 FILE p/1-8ring3.dat
+0 Ring  3 x 0.125
+0 Name: 1-8ring3.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 4 0 0 3.6955 0 1.5307 2.7716 0 1.1481 3 0 0
+4 16 3.6955 0 1.5307 2.8284 0 2.8284 2.1213 0 2.1213 2.7716 0 1.1481
+
+0 FILE parts/41239.dat
+0 Technic Beam 13
+0 Name: 41239.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 0 -10 -120 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 10 -120 9 0 0 0 1 0 0 0 -9 p/2-4edge.dat
+1 16 0 -10 -120 9 0 0 0 20 0 0 0 -9 p/2-4cyli.dat
+1 16 9 0 0 0 -1 0 0 0 10 120 0 0 p/rect2p.dat
+1 16 -9 0 0 0 1 0 0 0 10 -120 0 0 p/rect2p.dat
+1 16 0 -10 120 -9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 10 120 -9 0 0 0 1 0 0 0 9 p/2-4edge.dat
+1 16 0 -10 120 -9 0 0 0 20 0 0 0 9 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 -8 120 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 120 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 120 -1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+1 16 0 -10 120 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 120 1 0 0 0 -1 0 0 0 1 p/peghole.dat
+1 16 0 0 100 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 80 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 60 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 40 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 20 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 0 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -20 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -40 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -60 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -80 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -100 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+1 16 0 0 -120 1 0 0 0 -1 0 0 0 1 p/beamhole.dat
+0
+
+0 FILE p/beamhole.dat
+0 Technic Beam Hole 1.0 with Adjacent Hole Negative
+0 Name: beamhole.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 -10 10 1 0 0 0 8 0 0 0 1 p/npeghol2.dat
+1 16 0 10 10 -1 0 0 0 -8 0 0 0 1 p/npeghol2.dat
+0 BFC INVERTNEXT
+1 16 0 -8 0 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 -10 0 1 0 0 0 1 0 0 0 1 p/peghole.dat
+1 16 0 10 0 -1 0 0 0 -1 0 0 0 1 p/peghole.dat
+1 16 0 -10 0 1 0 0 0 1 0 0 0 1 p/4-4ring8.dat
+1 16 0 10 0 -1 0 0 0 -1 0 0 0 1 p/4-4ring8.dat
+0
+
+0 FILE p/npeghol2.dat
+0 Technic Peg Hole Negative with Top Surface Extensions
+0 Name: npeghol2.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-03-14 [Philo] Changed to CCW, used 1-8ndis to avoid overlaps
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4edge.dat
+1 16 0 1 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4edge.dat
+1 16 0 0 -10 6.36 0 -6.36 0 1 0 6.36 0 6.36 p/1-4cyli.dat
+1 16 0 0 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4edge.dat
+1 16 0 1 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4edge.dat
+1 16 0 0 10 6.36 0 -6.36 0 1 0 -6.36 0 -6.36 p/1-4cyli.dat
+4 16 6.36 1 -3.64 6.36 1 3.64 3.442 1 1.69 3.442 1 -1.69
+4 16 3.442 1 -1.69 3.442 1 1.69 0 1 1.0057 0 1 -1.0057
+4 16 0 1 -1.0057 0 1 1.0057 -3.442 1 1.69 -3.442 1 -1.69
+4 16 -3.442 1 -1.69 -3.442 1 1.69 -6.36 1 3.64 -6.36 1 -3.64
+1 16 6.36 0.5 0 0 1 0 0.5 0 0 0 0 3.64 p/rect.dat
+1 16 -6.36 0.5 0 0 -1 0 0.5 0 0 0 0 3.64 p/rect.dat
+4 16 9 0 1 6.36 0 3.64 6.36 0 -3.64 9 0 -1
+1 16 0 0 -10 9 0 0 0 1 0 0 0 9 p/1-8ndis.dat
+1 16 0 0 10 9 0 0 0 1 0 0 0 -9 p/1-8ndis.dat
+4 16 -9 0 -1 -6.36 0 -3.64 -6.36 0 3.64 -9 0 1
+1 16 0 0 10 -9 0 0 0 1 0 0 0 -9 p/1-8ndis.dat
+1 16 0 0 -10 -9 0 0 0 1 0 0 0 9 p/1-8ndis.dat
+
+0 FILE p/4-4ring8.dat
+0 Ring  8 x 1.0
+0 Name: 4-4ring8.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 9 0 0 8.3151 0 3.4443 7.3912 0 3.0616 8 0 0
+4 16 8.3151 0 3.4443 6.3639 0 6.3639 5.6568 0 5.6568 7.3912 0 3.0616
+4 16 6.3639 0 6.3639 3.4443 0 8.3151 3.0616 0 7.3912 5.6568 0 5.6568
+4 16 3.4443 0 8.3151 0 0 9 0 0 8 3.0616 0 7.3912
+4 16 0 0 9 -3.4443 0 8.3151 -3.0616 0 7.3912 0 0 8
+4 16 -3.4443 0 8.3151 -6.3639 0 6.3639 -5.6568 0 5.6568 -3.0616 0 7.3912
+4 16 -6.3639 0 6.3639 -8.3151 0 3.4443 -7.3912 0 3.0616 -5.6568 0 5.6568
+4 16 -8.3151 0 3.4443 -9 0 0 -8 0 0 -7.3912 0 3.0616
+4 16 -9 0 0 -8.3151 0 -3.4443 -7.3912 0 -3.0616 -8 0 0
+4 16 -8.3151 0 -3.4443 -6.3639 0 -6.3639 -5.6568 0 -5.6568 -7.3912 0 -3.0616
+4 16 -6.3639 0 -6.3639 -3.4443 0 -8.3151 -3.0616 0 -7.3912 -5.6568 0 -5.6568
+4 16 -3.4443 0 -8.3151 0 0 -9 0 0 -8 -3.0616 0 -7.3912
+4 16 0 0 -9 3.4443 0 -8.3151 3.0616 0 -7.3912 0 0 -8
+4 16 3.4443 0 -8.3151 6.3639 0 -6.3639 5.6568 0 -5.6568 3.0616 0 -7.3912
+4 16 6.3639 0 -6.3639 8.3151 0 -3.4443 7.3912 0 -3.0616 5.6568 0 -5.6568
+4 16 8.3151 0 -3.4443 9 0 0 8 0 0 7.3912 0 -3.0616
+
+0 FILE parts/3020.dat
+0 Plate  2 x  4
+0 Name: 3020.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 36 0 0 0 -4 0 0 0 16 p/box5.dat
+
+4 16 40 8 20 36 8 16 -36 8 16 -40 8 20
+0 Next Line was 4 16 40 8 -20 36 8 -16 -36 8 -16 -40 8 -20
+4 16 -40 8 -20 -36 8 -16 36 8 -16 40 8 -20
+0 Next Line was 4 16 40 8 20 36 8 16 36 8 -16 40 8 -20
+4 16 40 8 -20 36 8 -16 36 8 16 40 8 20
+4 16 -40 8 20 -36 8 16 -36 8 -16 -40 8 -20
+
+1 16 0 8 0 40 0 0 0 -8 0 0 0 20 p/box5.dat
+
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3713.dat
+0 Technic Bush with Two Flanges
+0 Name: 3713.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2012-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-10-12 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Made BFC compliant; added missing lines and optional lines; used primitives (2004-05-21)
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-05-18 [cwdee] Extend title
+0 !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/bush.dat
+1 16 0 0 -10 0 0 3 3 0 0 0 1 0 p/4-4ring2.dat
+1 16 0 0 -10 0 0 9 9 0 0 0 1 0 p/4-4edge.dat
+1 16 0 0 -7 0 0 9 9 0 0 0 1 0 p/4-4edge.dat
+1 16 0 0 -6 0 0 7 7 0 0 0 1 0 p/4-4edge.dat
+1 16 0 0 -10 0 0 9 9 0 0 0 3 0 p/4-4cyli.dat
+1 16 0 0 -6.5 0 0 1 1 0 0 0 0.5 0 p/4-4con7.dat
+1 16 0 0 -7 0 0 1 1 0 0 0 0.5 0 p/4-4con8.dat
+0
+
+0 FILE p/4-4con8.dat
+0 Cone  8 x 1.0
+0 Name: 4-4con8.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2002-12-11 [cwdee] Standardised title
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+5 24 8 1 0 9 0 0 7.3912 1 -3.0616 7.3912 1 3.0616
+5 24 7.3912 1 3.0616 8.3151 0 3.4443 8 1 0 5.6568 1 5.6568
+5 24 5.6568 1 5.6568 6.3639 0 6.3639 7.3912 1 3.0616 3.0616 1 7.3912
+5 24 3.0616 1 7.3912 3.4443 0 8.3151 5.6568 1 5.6568 0 1 8
+5 24 0 1 8 0 0 9 3.0616 1 7.3912 -3.0616 1 7.3912
+5 24 -3.0616 1 7.3912 -3.4443 0 8.3151 0 1 8 -5.6568 1 5.6568
+5 24 -5.6568 1 5.6568 -6.3639 0 6.3639 -3.0616 1 7.3912 -7.3912 1 3.0616
+5 24 -7.3912 1 3.0616 -8.3151 0 3.4443 -5.6568 1 5.6568 -8 1 0
+5 24 -8 1 0 -9 0 0 -7.3912 1 3.0616 -7.3912 1 -3.0616
+5 24 -7.3912 1 -3.0616 -8.3151 0 -3.4443 -8 1 0 -5.6568 1 -5.6568
+5 24 -5.6568 1 -5.6568 -6.3639 0 -6.3639 -7.3912 1 -3.0616 -3.0616 1 -7.3912
+5 24 -3.0616 1 -7.3912 -3.4443 0 -8.3151 -5.6568 1 -5.6568 0 1 -8
+5 24 0 1 -8 0 0 -9 -3.0616 1 -7.3912 3.0616 1 -7.3912
+5 24 3.0616 1 -7.3912 3.4443 0 -8.3151 0 1 -8 5.6568 1 -5.6568
+5 24 5.6568 1 -5.6568 6.3639 0 -6.3639 3.0616 1 -7.3912 7.3912 1 -3.0616
+5 24 7.3912 1 -3.0616 8.3151 0 -3.4443 5.6568 1 -5.6568 8 1 0
+
+4 16 7.3912 1 3.0616 8.3151 0 3.4443 9 0 0 8 1 0
+4 16 5.6568 1 5.6568 6.3639 0 6.3639 8.3151 0 3.4443 7.3912 1 3.0616
+4 16 3.0616 1 7.3912 3.4443 0 8.3151 6.3639 0 6.3639 5.6568 1 5.6568
+4 16 0 1 8 0 0 9 3.4443 0 8.3151 3.0616 1 7.3912
+4 16 -3.0616 1 7.3912 -3.4443 0 8.3151 0 0 9 0 1 8
+4 16 -5.6568 1 5.6568 -6.3639 0 6.3639 -3.4443 0 8.3151 -3.0616 1 7.3912
+4 16 -7.3912 1 3.0616 -8.3151 0 3.4443 -6.3639 0 6.3639 -5.6568 1 5.6568
+4 16 -8 1 0 -9 0 0 -8.3151 0 3.4443 -7.3912 1 3.0616
+4 16 -7.3912 1 -3.0616 -8.3151 0 -3.4443 -9 0 0 -8 1 0
+4 16 -5.6568 1 -5.6568 -6.3639 0 -6.3639 -8.3151 0 -3.4443 -7.3912 1 -3.0616
+4 16 -3.0616 1 -7.3912 -3.4443 0 -8.3151 -6.3639 0 -6.3639 -5.6568 1 -5.6568
+4 16 0 1 -8 0 0 -9 -3.4443 0 -8.3151 -3.0616 1 -7.3912
+4 16 3.0616 1 -7.3912 3.4443 0 -8.3151 0 0 -9 0 1 -8
+4 16 5.6568 1 -5.6568 6.3639 0 -6.3639 3.4443 0 -8.3151 3.0616 1 -7.3912
+4 16 7.3912 1 -3.0616 8.3151 0 -3.4443 6.3639 0 -6.3639 5.6568 1 -5.6568
+4 16 8 1 0 9 0 0 8.3151 0 -3.4443 7.3912 1 -3.0616
+
+0 FILE p/4-4con7.dat
+0 Cone  7 x 1.0
+0 Name: 4-4con7.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 7 1 0 8 0 0 6.4673 1 2.6789 6.4673 1 -2.6789
+5 24 6.4673 1 2.6789 7.3912 0 3.0616 4.9497 1 4.9497 7 1 0
+5 24 4.9497 1 4.9497 5.6568 0 5.6568 2.6789 1 6.4673 6.4673 1 2.6789
+5 24 2.6789 1 6.4673 3.0616 0 7.3912 0 1 7 4.9497 1 4.9497
+5 24 0 1 7 0 0 8 -2.6789 1 6.4673 2.6789 1 6.4673
+5 24 -2.6789 1 6.4673 -3.0616 0 7.3912 -4.9497 1 4.9497 0 1 7
+5 24 -4.9497 1 4.9497 -5.6568 0 5.6568 -6.4673 1 2.6789 -2.6789 1 6.4673
+5 24 -6.4673 1 2.6789 -7.3912 0 3.0616 -7 1 0 -4.9497 1 4.9497
+5 24 -7 1 0 -8 0 0 -6.4673 1 -2.6789 -6.4673 1 2.6789
+5 24 -6.4673 1 -2.6789 -7.3912 0 -3.0616 -4.9497 1 -4.9497 -7 1 0
+5 24 -4.9497 1 -4.9497 -5.6568 0 -5.6568 -2.6789 1 -6.4673 -6.4673 1 -2.6789
+5 24 -2.6789 1 -6.4673 -3.0616 0 -7.3912 0 1 -7 -4.9497 1 -4.9497
+5 24 0 1 -7 0 0 -8 2.6789 1 -6.4673 -2.6789 1 -6.4673
+5 24 2.6789 1 -6.4673 3.0616 0 -7.3912 4.9497 1 -4.9497 0 1 -7
+5 24 4.9497 1 -4.9497 5.6568 0 -5.6568 6.4673 1 -2.6789 2.6789 1 -6.4673
+5 24 6.4673 1 -2.6789 7.3912 0 -3.0616 7 1 0 4.9497 1 -4.9497
+
+4 16 7 1 0 6.4673 1 2.6789 7.3912 0 3.0616 8 0 0
+4 16 6.4673 1 2.6789 4.9497 1 4.9497 5.6568 0 5.6568 7.3912 0 3.0616
+4 16 4.9497 1 4.9497 2.6789 1 6.4673 3.0616 0 7.3912 5.6568 0 5.6568
+4 16 2.6789 1 6.4673 0 1 7 0 0 8 3.0616 0 7.3912
+4 16 0 1 7 -2.6789 1 6.4673 -3.0616 0 7.3912 0 0 8
+4 16 -2.6789 1 6.4673 -4.9497 1 4.9497 -5.6568 0 5.6568 -3.0616 0 7.3912
+4 16 -4.9497 1 4.9497 -6.4673 1 2.6789 -7.3912 0 3.0616 -5.6568 0 5.6568
+4 16 -6.4673 1 2.6789 -7 1 0 -8 0 0 -7.3912 0 3.0616
+4 16 -7 1 0 -6.4673 1 -2.6789 -7.3912 0 -3.0616 -8 0 0
+4 16 -6.4673 1 -2.6789 -4.9497 1 -4.9497 -5.6568 0 -5.6568 -7.3912 0 -3.0616
+4 16 -4.9497 1 -4.9497 -2.6789 1 -6.4673 -3.0616 0 -7.3912 -5.6568 0 -5.6568
+4 16 -2.6789 1 -6.4673 0 1 -7 0 0 -8 -3.0616 0 -7.3912
+4 16 0 1 -7 2.6789 1 -6.4673 3.0616 0 -7.3912 0 0 -8
+4 16 2.6789 1 -6.4673 4.9497 1 -4.9497 5.6568 0 -5.6568 3.0616 0 -7.3912
+4 16 4.9497 1 -4.9497 6.4673 1 -2.6789 7.3912 0 -3.0616 5.6568 0 -5.6568
+4 16 6.4673 1 -2.6789 7 1 0 8 0 0 7.3912 0 -3.0616
+
+0
+
+
+0 FILE p/bush.dat
+0 Technic Bush without Base Collar
+0 Name: bush.dat
+0 Author: Guy Vivan [guyvivan] 
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Based on 3651.dat by James Jessiman
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/bush0.dat
+1 16 0 0 10 1 0 0 0 1 0 0 0 1 p/bush1.dat
+1 16 0 0 10 0 1 0 -1 0 0 0 0 1 p/bush1.dat
+1 16 0 0 10 -1 0 0 0 -1 0 0 0 1 p/bush1.dat
+1 16 0 0 10 0 -1 0 1 0 0 0 0 1 p/bush1.dat
+0
+
+0 FILE p/bush1.dat
+0 Technic Bush Collar 0.25
+0 Name: bush1.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-05-26 [guyvivan] Made BFC compliant
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 9 0 0 8.31 3.44 0
+2 24 8.31 3.44 0 7.57 4.55 0
+2 24 7.57 4.55 0 5.76 5.76 0
+2 24 5.76 5.76 0 4.55 7.57 0
+2 24 4.55 7.57 0 3.44 8.31 0
+2 24 3.44 8.31 0 0 9 0
+2 24 7.57 4.55 0 7.57 4.55 -3
+2 24 4.55 7.57 0 4.55 7.57 -3
+2 24 9 0 -3 8.31 3.44 -3
+2 24 8.31 3.44 -3 7.57 4.55 -3
+5 24 8.31 3.44 0 8.31 3.44 -3 7.57 4.55 0 9 0 0
+2 24 7.57 4.55 -3 5.76 5.76 -3.43
+2 24 5.76 5.76 -3.43 4.55 7.57 -3
+5 24 5.76 5.76 0 5.76 5.76 -3.43 4.55 7.57 0 7.57 4.55 0
+2 24 4.55 7.57 -3 3.44 8.31 -3
+5 24 3.44 8.31 0 3.44 8.31 -3 4.55 7.57 0 0 9 0
+2 24 3.44 8.31 -3 0 9 -3
+5 24 0 9 0 0 9 -3 3.44 8.31 0 -3.44 8.31 0
+4 16 3.44 8.31 0 0 9 0 0 6 0 2.3 5.54 0
+4 16 4.24 4.24 0 4.55 7.57 0 3.44 8.31 0 2.3 5.54 0
+3 16 4.24 4.24 0 5.76 5.76 0 4.55 7.57 0
+3 16 4.24 4.24 0 7.57 4.55 0 5.76 5.76 0
+4 16 7.57 4.55 0 4.24 4.24 0 5.54 2.3 0 8.31 3.44 0
+4 16 9 0 0 8.31 3.44 0 5.54 2.3 0 6 0 0
+4 16 8.31 3.44 -3 9 0 -3 7 0 -4 6.47 2.68 -4
+4 16 4.95 4.95 -4 7.57 4.55 -3 8.31 3.44 -3 6.47 2.68 -4
+3 16 4.95 4.95 -4 5.76 5.76 -3.43 7.57 4.55 -3
+3 16 4.95 4.95 -4 4.55 7.57 -3 5.76 5.76 -3.43
+4 16 4.55 7.57 -3 4.95 4.95 -4 2.68 6.47 -4 3.44 8.31 -3
+4 16 0 9 -3 3.44 8.31 -3 2.68 6.47 -4 0 7 -4
+4 16 9 0 -3 8.31 3.44 -3 8.31 3.44 0 9 0 0
+4 16 8.31 3.44 -3 7.57 4.55 -3 7.57 4.55 0 8.31 3.44 0
+4 16 7.57 4.55 -3 5.76 5.76 -3.43 5.76 5.76 0 7.57 4.55 0
+4 16 5.76 5.76 -3.43 4.55 7.57 -3 4.55 7.57 0 5.76 5.76 0
+4 16 4.55 7.57 -3 3.44 8.31 -3 3.44 8.31 0 4.55 7.57 0
+4 16 3.44 8.31 -3 0 9 -3 0 9 0 3.44 8.31 0
+5 24 0 7 -4 0 9 -3 2.68 6.47 -4 -2.68 6.47 -4
+5 24 2.68 6.47 -4 3.44 8.31 -3 4.95 4.95 -4 0 7 -4
+5 24 4.95 4.95 -4 5.76 5.76 -3.43 6.47 2.68 -4 2.68 6.47 -4
+5 24 6.47 2.68 -4 8.31 3.44 -3 7 0 -4 4.95 4.95 -4
+
+0 FILE p/bush0.dat
+0 Technic Bush without Collars
+0 Name: bush0.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2013-11-24 [MagFors] Closed gaps
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+1 16 0 0 -10 0 0 -1 -1 0 0 0 20 0 p/axlehol5.dat
+2 24 -5.602 -2 10 -5.602 -2 -10
+2 24 -5.602 2 10 -5.602 2 -10
+2 24 5.602 -2 10 5.602 -2 -10
+2 24 5.602 2 10 5.602 2 -10
+2 24 -5.602 -2 -10 -6 0 -10
+2 24 -5.602 -2 10 -6 0 10
+2 24 -5.602 2 -10 -6 0 -10
+2 24 -5.602 2 10 -6 0 10
+2 24 5.602 -2 -10 6 0 -10
+2 24 5.602 -2 10 6 0 10
+2 24 5.602 2 -10 6 0 -10
+2 24 5.602 2 10 6 0 10
+4 16 -5.602 -2 -10 -6 0 -10 -6 0 -5 -5.801 -1 -5
+4 16 -6 0 10 -5.602 -2 10 -5.801 -1 5 -6 0 5
+4 16 -6 0 -10 -5.602 2 -10 -5.801 1 -5 -6 0 -5
+4 16 -5.602 2 10 -6 0 10 -6 0 5 -5.801 1 5
+4 16 6 0 -10 5.602 -2 -10 5.801 -1 -5 6 0 -5
+4 16 5.602 -2 10 6 0 10 6 0 5 5.801 -1 5
+4 16 5.602 2 -10 6 0 -10 6 0 -5 5.801 1 -5
+4 16 6 0 10 5.602 2 10 5.801 1 5 6 0 5
+4 16 -5.602 -2 -10 -5.801 -1 -5 -5.801 -1 5 -5.602 -2 10
+4 16 -5.602 2 10 -5.801 1 5 -5.801 1 -5 -5.602 2 -10
+4 16 5.602 -2 10 5.801 -1 5 5.801 -1 -5 5.602 -2 -10
+4 16 5.602 2 -10 5.801 1 -5 5.801 1 5 5.602 2 10
+5 24 -6 0 10 -6 0 5 -5.602 -2 10 -5.602 2 10
+5 24 6 0 10 6 0 5 5.602 -2 10 5.602 2 10
+5 24 -6 0 -10 -6 0 -5 -5.602 -2 -10 -5.602 2 -10
+5 24 6 0 -10 6 0 -5 5.602 -2 -10 5.602 2 -10
+
+
+1 16 -6.301 1 0 0 0 0.5 0 1 0 -4 0 0 p/rect2p.dat
+1 16 -6.301 -1 0 0 0 0.5 0 -1 0 4 0 0 p/rect2p.dat
+1 16 6.301 -1 0 0 0 -0.5 0 -1 0 -4 0 0 p/rect2p.dat
+1 16 6.301 1 0 0 0 -0.5 0 1 0 4 0 0 p/rect2p.dat
+
+0 BFC INVERTNEXT
+1 16 6 0 -4 0 1 -0.199 0 0 1 -1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 6 0 -4 0 1 -0.199 0 0 -1 -1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 6 0 4 0 1 -0.199 0 0 -1 1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 6 0 4 0 1 -0.199 0 0 1 1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -6 0 -4 0 -1 0.199 0 0 -1 -1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -6 0 -4 0 -1 0.199 0 0 1 -1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -6 0 4 0 -1 0.199 0 0 1 1 0 0 p/1-4cylo.dat
+0 BFC INVERTNEXT
+1 16 -6 0 4 0 -1 0.199 0 0 -1 1 0 0 p/1-4cylo.dat
+
+1 16 7 0 -4 0 -1 -0.199 0 0 1 -1 0 0 p/1-4ndis.dat
+1 16 7 0 -4 0 -1 -0.199 0 0 -1 -1 0 0 p/1-4ndis.dat
+1 16 7 0 4 0 -1 -0.199 0 0 -1 1 0 0 p/1-4ndis.dat
+1 16 7 0 4 0 -1 -0.199 0 0 1 1 0 0 p/1-4ndis.dat
+1 16 -7 0 -4 0 1 0.199 0 0 -1 -1 0 0 p/1-4ndis.dat
+1 16 -7 0 -4 0 1 0.199 0 0 1 -1 0 0 p/1-4ndis.dat
+1 16 -7 0 4 0 1 0.199 0 0 1 1 0 0 p/1-4ndis.dat
+1 16 -7 0 4 0 1 0.199 0 0 -1 1 0 0 p/1-4ndis.dat
+
+1 16 6 0 -4 0 1 -0.199 0 0 1 -1 0 0 p/1-4ndis.dat
+1 16 6 0 -4 0 1 -0.199 0 0 -1 -1 0 0 p/1-4ndis.dat
+1 16 6 0 4 0 1 -0.199 0 0 -1 1 0 0 p/1-4ndis.dat
+1 16 6 0 4 0 1 -0.199 0 0 1 1 0 0 p/1-4ndis.dat
+1 16 -6 0 -4 0 -1 0.199 0 0 -1 -1 0 0 p/1-4ndis.dat
+1 16 -6 0 -4 0 -1 0.199 0 0 1 -1 0 0 p/1-4ndis.dat
+1 16 -6 0 4 0 -1 0.199 0 0 1 1 0 0 p/1-4ndis.dat
+1 16 -6 0 4 0 -1 0.199 0 0 -1 1 0 0 p/1-4ndis.dat
+
+1 16 0 0 6 -6.46716 0 2.67878 2.67878 0 6.46716 0 -12 0 p/3-8cyli.dat
+1 16 0 0 6 -6.46716 0 2.67878 -2.67878 0 -6.46716 0 -12 0 p/3-8cyli.dat
+1 16 0 0 6 7 0 0 0 0 7 0 1 0 p/4-4edge.dat
+1 16 0 0 -6 7 0 0 0 0 7 0 1 0 p/4-4edge.dat
+5 24 -6.4673 2.6789 -5 -6.4673 2.6789 5 -4.95 4.95 -5 -7 0 -5
+5 24 6.4673 2.6789 -5 6.4673 2.6789 5 7 0 -5 4.95 4.95 -5
+5 24 6.4673 -2.6789 -5 6.4673 -2.6789 5 4.95 -4.95 -5 7 0 -5
+5 24 -6.4673 -2.6789 -5 -6.4673 -2.6789 5 -7 0 -5 -4.95 -4.95 -5
+
+5 24 6.4673 -2.6789 6 6.4673 -2.6789 -6 6.801 -1 -5 4.9499 -4.9498 6
+5 24 6.4673 2.6789 -6 6.4673 2.6789 6 6.801 1 5 4.9499 4.9498 6
+5 24 7 0 -5 7 0 -6 6.4673 2.6789 -6 6.801 -1 -5
+5 24 7 0 6 7 0 5 6.801 1 5 6.4673 -2.6789 6
+4 16 6.4673 -2.6789 -6 6.801 -1 -5 6.801 -1 5 6.4673 -2.6789 6
+4 16 6.4673 2.6789 6 6.801 1 5 6.801 1 -5 6.4673 2.6789 -6
+4 16 6.4673 2.6789 -6 6.801 1 -5 7 0 -5 7 0 -6
+4 16 7 0 -6 7 0 -5 6.801 -1 -5 6.4673 -2.6789 -6
+4 16 7 0 6 7 0 5 6.801 1 5 6.4673 2.6789 6
+4 16 6.4673 -2.6789 6 6.801 -1 5 7 0 5 7 0 6
+
+5 24 -6.4673 -2.6789 6 -6.4673 -2.6789 -6 -6.801 -1 -5 -4.9499 -4.9498 6
+5 24 -6.4673 2.6789 -6 -6.4673 2.6789 6 -6.801 1 5 -4.9499 4.9498 6
+5 24 -7 0 -5 -7 0 -6 -6.4673 2.6789 -6 -6.801 -1 -5
+5 24 -7 0 6 -7 0 5 -6.801 1 5 -6.4673 -2.6789 6
+4 16 -6.4673 -2.6789 6 -6.801 -1 5 -6.801 -1 -5 -6.4673 -2.6789 -6
+4 16 -6.4673 2.6789 -6 -6.801 1 -5 -6.801 1 5 -6.4673 2.6789 6
+4 16 -7 0 -6 -7 0 -5 -6.801 1 -5 -6.4673 2.6789 -6
+4 16 -6.4673 -2.6789 -6 -6.801 -1 -5 -7 0 -5 -7 0 -6
+4 16 -6.4673 2.6789 6 -6.801 1 5 -7 0 5 -7 0 6
+4 16 -7 0 6 -7 0 5 -6.801 -1 5 -6.4673 -2.6789 6
+
+0 FILE p/1-4ndis.dat
+0 Disc Negative 0.25
+0 Name: 1-4ndis.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC Statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0 0.3827 1 0 0 1 0 1
+3 16 0.7071 0 0.7071 0.9239 0 0.3827 1 0 1
+3 16 0.3827 0 0.9239 0.7071 0 0.7071 1 0 1
+3 16 0 0 1 0.3827 0 0.9239 1 0 1
+
+0 FILE p/1-4cylo.dat
+0 Cylinder Open 0.25
+0 Name: 1-4cylo.dat
+0 Author: Max Martin Richter [MMR1988]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/1-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/1-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/1-4cyli.dat
+
+0 FILE p/axlehol5.dat
+0 Technic Axle Hole Open Two Opposite Sides
+0 Name: axlehol5.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-04-23 [sbliss] Added conditional edges along outermost diameters
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2005-05-15 [guyvivan] Use 1-8chrd.dat primitive and made BFC'ed CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 6 0 0 6 1 0 5.602 0 2 5.602 0 -2
+5 24 -6 0 0 -6 1 0 -5.602 0 -2 -5.602 0 2
+0 2 24 6    0 0    5.543 0 2.296
+0 2 24 5.543 0 2.296 4.243 0 4.243
+0 2 24 4.243 0 4.243 2.296 0 5.543
+0 2 24 2.296 0 5.543 0    0 6
+2 24 6 0 0 5.602 0 2
+2 24 5.602 0 2 2 0 2
+2 24 2 0 2 2 0 5.602
+0 2 24 2    0 5.602 0    0 6
+2 24 -6 0 0 -5.602 0 2
+2 24 -5.602 0 2 -2 0 2
+2 24 -2 0 2 -2 0 5.602
+0 2 24 -2    0 5.602 -0    0 6
+2 24 6 0 0 5.602 0 -2
+2 24 5.602 0 -2 2 0 -2
+2 24 2 0 -2 2 0 -5.602
+0 2 24 2    0 -5.602 0    0 -6
+2 24 -6 0 0 -5.602 0 -2
+2 24 -5.602 0 -2 -2 0 -2
+2 24 -2 0 -2 -2 0 -5.602
+0 2 24 -2    0 -5.602 -0    0 -6
+2 24 6 1 0 5.602 1 2
+2 24 5.602 1 2 2 1 2
+2 24 2 1 2 2 1 5.602
+0 2 24 2    1 5.602 0    1 6
+2 24 -6 1 0 -5.602 1 2
+2 24 -5.602 1 2 -2 1 2
+2 24 -2 1 2 -2 1 5.602
+0 2 24 -2    1 5.602 -0    1 6
+2 24 6 1 0 5.602 1 -2
+2 24 5.602 1 -2 2 1 -2
+2 24 2 1 -2 2 1 -5.602
+0 2 24 2    1 -5.602 0    1 -6
+2 24 -6 1 0 -5.602 1 -2
+2 24 -5.602 1 -2 -2 1 -2
+2 24 -2 1 -2 -2 1 -5.602
+0 2 24 -2    1 -5.602 -0    1 -6
+2 24 5.602 0 2 5.602 1 2
+2 24 2 0 2 2 1 2
+0 2 24 2    0 5.602 2    1 5.602
+2 24 -5.602 0 2 -5.602 1 2
+2 24 -2 0 2 -2 1 2
+0 2 24 -2    0 5.602 -2    1 5.602
+2 24 5.602 0 -2 5.602 1 -2
+2 24 2 0 -2 2 1 -2
+0 2 24 2    0 -5.602 2    1 -5.602
+2 24 -5.602 0 -2 -5.602 1 -2
+2 24 -2 0 -2 -2 1 -2
+0 2 24 -2    0 -5.602 -2    1 -5.602
+4 16 6 1 0 6 0 0 5.602 0 2 5.602 1 2
+4 16 5.602 1 2 5.602 0 2 2 0 2 2 1 2
+4 16 2 1 2 2 0 2 2 0 5.602 2 1 5.602
+0 4 16 2    0 5.602 0    0 6    0    1 6    2    1 5.602
+4 16 -6 1 0 -5.602 1 2 -5.602 0 2 -6 0 0
+4 16 -5.602 1 2 -2 1 2 -2 0 2 -5.602 0 2
+4 16 -2 1 2 -2 1 5.602 -2 0 5.602 -2 0 2
+0 4 16 -2    0 5.602 -0    0 6    -0    1 6    -2    1 5.602
+4 16 6 1 0 5.602 1 -2 5.602 0 -2 6 0 0
+4 16 5.602 1 -2 2 1 -2 2 0 -2 5.602 0 -2
+4 16 2 1 -2 2 1 -5.602 2 0 -5.602 2 0 -2
+0 4 16 2    0 -5.602 0    0 -6    0    1 -6    2    1 -5.602
+4 16 -6 1 0 -6 0 0 -5.602 0 -2 -5.602 1 -2
+4 16 -5.602 1 -2 -5.602 0 -2 -2 0 -2 -2 1 -2
+4 16 -2 1 -2 -2 0 -2 -2 0 -5.602 -2 1 -5.602
+0 4 16 -2    0 -5.602 -0    0 -6    -0    1 -6    -2    1 -5.602
+3 16 5.602 0 -2 2 0 -2 5.543 0 -2.296
+3 16 2.296 0 -5.543 2 0 -2 2 0 -5.602
+3 16 -5.602 0 -2 -5.543 0 -2.296 -2 0 -2
+3 16 -2.296 0 -5.543 -2 0 -5.602 -2 0 -2
+3 16 5.602 0 2 5.543 0 2.296 2 0 2
+3 16 2.296 0 5.543 2 0 5.602 2 0 2
+3 16 -5.602 0 2 -2 0 2 -5.543 0 2.296
+3 16 -2.296 0 5.543 -2 0 2 -2 0 5.602
+3 16 5.602 1 -2 5.543 1 -2.296 2 1 -2
+3 16 2.296 1 -5.543 2 1 -5.602 2 1 -2
+3 16 -5.602 1 -2 -2 1 -2 -5.543 1 -2.296
+3 16 -2.296 1 -5.543 -2 1 -2 -2 1 -5.602
+3 16 5.602 1 2 2 1 2 5.543 1 2.296
+3 16 2.296 1 5.543 2 1 2 2 1 5.602
+3 16 -5.602 1 2 -5.543 1 2.296 -2 1 2
+3 16 -2.296 1 5.543 -2 1 5.602 -2 1 2
+3 16 5.543 0 -2.296 2 0 -2 2.296 0 -5.543
+1 16 0 0 0 5.54328 0 -2.2961 0 1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 -2.296 0 -5.543 -2 0 -2 -5.543 0 -2.296
+1 16 0 0 0 -2.2961 0 -5.54328 0 1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+3 16 -5.543 0 2.296 -2 0 2 -2.296 0 5.543
+1 16 0 0 0 -5.54328 0 2.2961 0 1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 2.296 0 5.543 2 0 2 5.543 0 2.296
+1 16 0 0 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 5.543 1 2.296 2 1 2 2.296 1 5.543
+1 16 0 1 0 5.54328 0 -2.2961 0 -1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 -2.296 1 5.543 -2 1 2 -5.543 1 2.296
+1 16 0 1 0 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+3 16 -5.543 1 -2.296 -2 1 -2 -2.296 1 -5.543
+1 16 0 1 0 -5.54328 0 2.2961 0 -1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 2.296 1 -5.543 2 1 -2 5.543 1 -2.296
+1 16 0 1 0 2.2961 0 5.54328 0 -1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+0
+
+0 FILE parts/4032a.dat
+0 Plate  2 x  2 Round with Axlehole Type 1
+0 Name: 4032a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-25 [westrate] Added stud10, replaced quads with primitives, BFCed
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-30 [mikeheide] optimized axlehole
+0 !HISTORY 2010-01-31 [PTadmin] Renamed from 4032
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+2 24 18.4776 8 7.6537 16 8 11.36
+2 24 16 8 11.36 16 4 11.36
+2 24 16 4 11.36 14.14 4 14.14
+2 24 14.14 4 14.14 11.36 4 16
+2 24 11.36 4 16 11.36 8 16
+2 24 11.36 8 16 7.6537 8 18.48
+2 24 -18.4776 8 7.6537 -16 8 11.36
+2 24 -16 8 11.36 -16 4 11.36
+2 24 -16 4 11.36 -14.14 4 14.14
+2 24 -14.14 4 14.14 -11.36 4 16
+2 24 -11.36 4 16 -11.36 8 16
+2 24 -11.36 8 16 -7.6537 8 18.48
+2 24 18.4776 8 -7.6537 16 8 -11.36
+2 24 16 8 -11.36 16 4 -11.36
+2 24 16 4 -11.36 14.14 4 -14.14
+2 24 14.14 4 -14.14 11.36 4 -16
+2 24 11.36 4 -16 11.36 8 -16
+2 24 11.36 8 -16 7.6537 8 -18.48
+2 24 -18.4776 8 -7.6537 -16 8 -11.36
+2 24 -16 8 -11.36 -16 4 -11.36
+2 24 -16 4 -11.36 -14.14 4 -14.14
+2 24 -14.14 4 -14.14 -11.36 4 -16
+2 24 -11.36 4 -16 -11.36 8 -16
+2 24 -11.36 8 -16 -7.6537 8 -18.48
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+1 16 0 4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 0 8 0 0 0 -1 0 0 0 8 p/4-4ndis.dat
+1 16 0 4 0 1 0 0 0 1 0 0 0 1 p/axlehol3.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 1 0 0 0 4 0 0 0 1 p/axlehol8.dat
+1 16 0 0 0 1 0 0 0 4 0 0 0 1 p/axleho10.dat
+1 16 0 4 0 0 0 1 0 -4 0 1 0 0 p/axleho10.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/axlehol2.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/axlehol9.dat
+1 16 0 4 0 1 0 0 0 1 0 0 0 1 p/axlehol9.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4ring1.dat
+1 16 0 0 0 10 0 0 0 1 0 0 0 10 p/4-4ring1.dat
+1 16 0 0 0 20 0 0 0 4 0 0 0 20 p/4-4cyli.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud10.dat
+1 16 -10 0 10 0 0 -1 0 1 0 1 0 0 p/stud10.dat
+1 16 10 0 -10 0 0 1 0 1 0 -1 0 0 p/stud10.dat
+1 16 -10 0 -10 -1 0 0 0 1 0 0 0 -1 p/stud10.dat
+4 16 8 4 -8 11.36 4 -16 -11.36 4 -16 -8 4 -8
+5 24 7.6537 4 -18.4776 7.6537 8 -18.4776 14.14 4 -14.14 0 4 -20
+4 16 -11.36 4 -16 -14.14 4 -14.14 -16 4 -11.36 -8 4 -8
+1 16 0 6 -16 11.36 0 0 0 0 -2 0 -1 0 p/rect.dat
+4 16 7.6537 8 -18.4776 -7.6537 8 -18.4776 -11.36 8 -16 11.36 8 -16
+1 16 0 8 0 -7.6537 0 18.4776 0 -1 0 -18.4776 0 -7.6537 p/1-8chrd.dat
+1 16 0 4 0 -7.6537 0 18.4776 0 4 0 -18.4776 0 -7.6537 p/1-8cyli.dat
+1 16 0 8 0 -7.6537 0 18.4776 0 1 0 -18.4776 0 -7.6537 p/1-8edge.dat
+1 16 0 0 0 -7.6537 0 18.4776 0 1 0 -18.4776 0 -7.6537 p/1-8edge.dat
+4 16 7.6537 4 -18.4776 7.6537 8 -18.4776 11.36 8 -16 11.36 4 -16
+4 16 -7.6537 8 -18.4776 -7.6537 4 -18.4776 -11.36 4 -16 -11.36 8 -16
+2 24 -18.4776 0 -7.6537 -15.6145 0 -11.9397
+2 24 -7.6537 0 -18.4776 -11.9397 0 -15.6145
+4 16 8 4 8 16 4 11.36 16 4 -11.36 8 4 -8
+5 24 18.4776 4 7.6537 18.4776 8 7.6537 14.14 4 14.14 20 4 0
+4 16 16 4 -11.36 14.14 4 -14.14 11.36 4 -16 8 4 -8
+1 16 16 6 0 0 1 0 0 0 -2 11.36 0 0 p/rect.dat
+4 16 18.4776 8 7.6537 18.4776 8 -7.6537 16 8 -11.36 16 8 11.36
+1 16 0 8 0 18.4776 0 7.6537 0 -1 0 -7.6537 0 18.4776 p/1-8chrd.dat
+1 16 0 4 0 18.4776 0 7.6537 0 4 0 -7.6537 0 18.4776 p/1-8cyli.dat
+1 16 0 8 0 18.4776 0 7.6537 0 1 0 -7.6537 0 18.4776 p/1-8edge.dat
+1 16 0 0 0 18.4776 0 7.6537 0 1 0 -7.6537 0 18.4776 p/1-8edge.dat
+4 16 18.4776 4 7.6537 18.4776 8 7.6537 16 8 11.36 16 4 11.36
+4 16 18.4776 8 -7.6537 18.4776 4 -7.6537 16 4 -11.36 16 8 -11.36
+2 24 7.6537 0 -18.4776 11.9397 0 -15.6145
+2 24 18.4776 0 -7.6537 15.6145 0 -11.9397
+4 16 -8 4 8 -11.36 4 16 11.36 4 16 8 4 8
+5 24 -7.6537 4 18.4776 -7.6537 8 18.4776 -14.14 4 14.14 0 4 20
+4 16 11.36 4 16 14.14 4 14.14 16 4 11.36 8 4 8
+1 16 0 6 16 -11.36 0 0 0 0 -2 0 1 0 p/rect.dat
+4 16 -7.6537 8 18.4776 7.6537 8 18.4776 11.36 8 16 -11.36 8 16
+1 16 0 8 0 7.6537 0 -18.4776 0 -1 0 18.4776 0 7.6537 p/1-8chrd.dat
+1 16 0 4 0 7.6537 0 -18.4776 0 4 0 18.4776 0 7.6537 p/1-8cyli.dat
+1 16 0 8 0 7.6537 0 -18.4776 0 1 0 18.4776 0 7.6537 p/1-8edge.dat
+1 16 0 0 0 7.6537 0 -18.4776 0 1 0 18.4776 0 7.6537 p/1-8edge.dat
+4 16 -7.6537 4 18.4776 -7.6537 8 18.4776 -11.36 8 16 -11.36 4 16
+4 16 7.6537 8 18.4776 7.6537 4 18.4776 11.36 4 16 11.36 8 16
+2 24 18.4776 0 7.6537 15.6145 0 11.9397
+2 24 7.6537 0 18.4776 11.9397 0 15.6145
+4 16 -8 4 -8 -16 4 -11.36 -16 4 11.36 -8 4 8
+5 24 -18.4776 4 -7.6537 -18.4776 8 -7.6537 -14.14 4 -14.14 -20 4 0
+4 16 -16 4 11.36 -14.14 4 14.14 -11.36 4 16 -8 4 8
+1 16 -16 6 0 0 -1 0 0 0 -2 -11.36 0 0 p/rect.dat
+4 16 -18.4776 8 -7.6537 -18.4776 8 7.6537 -16 8 11.36 -16 8 -11.36
+1 16 0 8 0 -18.4776 0 -7.6537 0 -1 0 7.6537 0 -18.4776 p/1-8chrd.dat
+1 16 0 4 0 -18.4776 0 -7.6537 0 4 0 7.6537 0 -18.4776 p/1-8cyli.dat
+1 16 0 8 0 -18.4776 0 -7.6537 0 1 0 7.6537 0 -18.4776 p/1-8edge.dat
+1 16 0 0 0 -18.4776 0 -7.6537 0 1 0 7.6537 0 -18.4776 p/1-8edge.dat
+4 16 -18.4776 4 -7.6537 -18.4776 8 -7.6537 -16 8 -11.36 -16 4 -11.36
+4 16 -18.4776 8 7.6537 -18.4776 4 7.6537 -16 4 11.36 -16 8 11.36
+2 24 -7.6537 0 18.4776 -11.9397 0 15.6145
+2 24 -18.4776 0 7.6537 -15.6145 0 11.9397
+0 //
+
+0 FILE p/stud10.dat
+0 Stud For Round   2 x  2 Parts
+0 Name: stud10.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-01-06 [Steffen] Fixed Header
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 6 0 0 5.6145 0 1.9397
+2 24 1.9387 0 5.6145 0 0 6
+2 24 5.6145 -4 1.9397 5.6145 0 1.9397
+2 24 6 -4 0 5.6145 -4 1.9397
+2 24 5.6145 -4 1.9397 4.142 -4 4.142
+2 24 4.142 -4 4.142 1.9387 -4 5.6145
+2 24 1.9387 -4 5.6145 0 -4 6
+2 24 1.9387 -4 5.6145 1.9387 0 5.6145
+5 24 4.142 -4 4.142 4.142 0 4.142 2.2962 -4 5.5434 5.5434 -4 2.2962
+
+1 16 0 -4 0 0 0 -6 0 4 0 6 0 0 p/3-4cyli.dat
+1 16 0 0 0 0 0 -6 0 1 0 6 0 0 p/3-4edge.dat
+1 16 0 -4 0 0 0 -6 0 1 0 6 0 0 p/3-4edge.dat
+1 16 0 -4 0 0 0 -6 0 1 0 6 0 0 p/3-4disc.dat
+3 16 6 -4 0 5.615 -4 1.94 0 -4 0
+3 16 5.615 -4 1.94 4.142 -4 4.142 0 -4 0
+3 16 4.142 -4 4.142 1.94 -4 5.615 0 -4 0
+3 16 1.94 -4 5.615 0 -4 6 0 -4 0
+4 16 6 0 0 5.6145 0 1.9397 5.6145 -4 1.9397 6 -4 0
+4 16 5.6145 0 1.9397 4.142 0 4.142 4.142 -4 4.142 5.6145 -4 1.9397
+4 16 4.142 0 4.142 1.9387 0 5.6145 1.9387 -4 5.6145 4.142 -4 4.142
+4 16 1.9387 0 5.6145 0 0 6 0 -4 6 1.9387 -4 5.6145
+
+0 FILE p/3-4disc.dat
+0 Disc 0.75
+0 Name: 3-4disc.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16  0  0  0 1 0 0 0.9239 0 0.3827
+3 16  0  0  0 0.9239 0 0.3827 0.7071 0 0.7071
+3 16  0  0  0 0.7071 0 0.7071 0.3827 0 0.9239
+3 16  0  0  0 0.3827 0 0.9239 0 0 1
+3 16  0  0  0 0 0 1 -0.3827 0 0.9239
+3 16  0  0  0 -0.3827 0 0.9239 -0.7071 0 0.7071
+3 16  0  0  0 -0.7071 0 0.7071 -0.9239 0 0.3827
+3 16  0  0  0 -0.9239 0 0.3827 -1 0 0
+3 16  0  0  0 -1 0 0 -0.9239 0 -0.3827
+3 16  0  0  0 -0.9239 0 -0.3827 -0.7071 0 -0.7071
+3 16  0  0  0 -0.7071 0 -0.7071 -0.3827 0 -0.9239
+3 16  0  0  0 -0.3827 0 -0.9239 0 0 -1
+0
+
+0 FILE p/3-4cyli.dat
+0 Cylinder 0.75
+0 Name: 3-4cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; compacted code
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+4 16 .3827 1 .9239 .3827 0 .9239 .7071 0 .7071 .7071 1 .7071
+4 16 0 1 1 0 0 1 .3827 0 .9239 .3827 1 .9239
+4 16 -.3827 1 .9239 -.3827 0 .9239 0 0 1 0 1 1
+4 16 -.7071 1 .7071 -.7071 0 .7071 -.3827 0 .9239 -.3827 1 .9239
+4 16 -.9239 1 .3827 -.9239 0 .3827 -.7071 0 .7071 -.7071 1 .7071
+4 16 -1 1 0 -1 0 0 -.9239 0 .3827 -.9239 1 .3827
+4 16 -.9239 1 -.3827 -.9239 0 -.3827 -1 0 0 -1 1 0
+4 16 -.7071 1 -.7071 -.7071 0 -.7071 -.9239 0 -.3827 -.9239 1 -.3827
+4 16 -.3827 1 -.9239 -.3827 0 -.9239 -.7071 0 -.7071 -.7071 1 -.7071
+4 16 0 1 -1 0 0 -1 -.3827 0 -.9239 -.3827 1 -.9239
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .3827 1 .9239
+5 24 .3827 1 .9239 .3827 0 .9239 .7071 1 .7071 0 1 1
+5 24 0 1 1 0 0 1 .3827 1 .9239 -.3827 1 .9239
+5 24 -.3827 1 .9239 -.3827 0 .9239 0 1 1 -.7071 1 .7071
+5 24 -.7071 1 .7071 -.7071 0 .7071 -.3827 1 .9239 -.9239 1 .3827
+5 24 -.9239 1 .3827 -.9239 0 .3827 -.7071 1 .7071 -1 1 0
+5 24 -1 1 0 -1 0 0 -.9239 1 .3827 -.9239 1 -.3827
+5 24 -.9239 1 -.3827 -.9239 0 -.3827 -1 1 0 -.7071 1 -.7071
+5 24 -.7071 1 -.7071 -.7071 0 -.7071 -.9239 1 -.3827 -.3827 1 -.9239
+5 24 -.3827 1 -.9239 -.3827 0 -.9239 -.7071 1 -.7071 0 1 -1
+5 24 0 1 -1 0 0 -1 -.3827 1 -.9239 .4142 1 -1
+0
+
+0 FILE p/axlehol9.dat
+0 Technic Axle Hole Tooth Inner Edges
+0 Name: axlehol9.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 5.602 0 2 2 0 2
+2 24 2 0 2 2 0 5.602
+2 24 -5.602 0 2 -2 0 2
+2 24 -2 0 2 -2 0 5.602
+2 24 5.602 0 -2 2 0 -2
+2 24 2 0 -2 2 0 -5.602
+2 24 -5.602 0 -2 -2 0 -2
+2 24 -2 0 -2 -2 0 -5.602
+0
+
+0 FILE p/axlehol2.dat
+0 Technic Axle Hole Side Edges
+0 Name: axlehol2.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 6  0 0      5.602 0 2
+2 24 2  0 5.602  0    0 6
+2 24 -6 0 0      -5.602 0 2
+2 24 -2 0 5.602  -0    0 6
+2 24 6  0 -0     5.602 0 -2
+2 24 2  0 -5.602 0    0 -6
+2 24 -6 0 -0     -5.602 0 -2
+2 24 -2 0 -5.602 -0    0 -6
+0
+
+0 FILE p/axleho10.dat
+0 Technic Axle Hole Tooth Surface
+0 Name: axleho10.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2005-05-15 [guyvivan] Use 1-8chrd.dat primitive
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 5.543 0 2.296 2 0 2 5.602 0 2
+3 16 2 0 5.602 2 0 2 2.296 0 5.543
+3 16 -2 0 2 -5.543 0 2.296 -5.602 0 2
+3 16 -2 0 2 -2 0 5.602 -2.296 0 5.543
+3 16 2 0 -2 5.543 0 -2.296 5.602 0 -2
+3 16 2 0 -2 2 0 -5.602 2.296 0 -5.543
+3 16 -5.543 0 -2.296 -2 0 -2 -5.602 0 -2
+3 16 -2 0 -5.602 -2 0 -2 -2.296 0 -5.543
+3 16 2.296 0 5.543 2 0 2 5.543 0 2.296
+1 16 0 0 0 5.54328 0 -2.2961 0 1 0 2.2961 0 5.54328 p/1-8chrd.dat
+3 16 -5.543 0 2.296 -2 0 2 -2.296 0 5.543
+1 16 0 0 0 -2.2961 0 -5.54328 0 1 0 5.54328 0 -2.2961 p/1-8chrd.dat
+3 16 -2.296 0 -5.543 -2 0 -2 -5.543 0 -2.296
+1 16 0 0 0 -5.54328 0 2.2961 0 1 0 -2.2961 0 -5.54328 p/1-8chrd.dat
+3 16 5.543 0 -2.296 2 0 -2 2.296 0 -5.543
+1 16 0 0 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/1-8chrd.dat
+0
+
+0 FILE p/1-8chrd.dat
+0 Chord 0.125
+0 Name: 1-8chrd.dat
+0 Author: Andy Westrate [westrate]
+0 !LDRAW_ORG Primitive UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 0.7071 0 0.7071 1 0 0 0.9239 0 0.3827
+
+0
+
+0 FILE p/axlehol8.dat
+0 Technic Axle Hole Perimeter
+0 Name: axlehol8.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 -5.602 0 2 -5.602 1 2
+2 24 -2 0 2 -2 1 2
+2 24 -2 0 5.602 -2 1 5.602
+2 24 5.602 0 2 5.602 1 2
+2 24 2 0 2 2 1 2
+2 24 2 0 5.602 2 1 5.602
+2 24 -5.602 0 -2 -5.602 1 -2
+2 24 -2 0 -2 -2 1 -2
+2 24 -2 0 -5.602 -2 1 -5.602
+2 24 5.602 0 -2 5.602 1 -2
+2 24 2 0 -2 2 1 -2
+2 24 2 0 -5.602 2 1 -5.602
+5 24 6 0 0 6 1 0 5.602 0 2 5.602 0 -2
+5 24 0 0 -6 0 1 -6 2 0 -5.602 -2 0 -5.602
+5 24 -6 0 0 -6 1 0 -5.602 0 -2 -5.602 0 2
+5 24 0 0 6 0 1 6 -2 0 5.602 2 0 5.602
+
+4 16 -6 0 0 -5.602 0 2 -5.602 1 2 -6 1 0
+4 16 -5.602 0 2 -2 0 2 -2 1 2 -5.602 1 2
+4 16 -2 0 2 -2 0 5.602 -2 1 5.602 -2 1 2
+4 16 -2 0 5.602 0 0 6 0 1 6 -2 1 5.602
+4 16 6 0 0 6 1 0 5.602 1 2 5.602 0 2
+4 16 5.602 0 2 5.602 1 2 2 1 2 2 0 2
+4 16 2 0 2 2 1 2 2 1 5.602 2 0 5.602
+4 16 2 0 5.602 2 1 5.602 0 1 6 0 0 6
+4 16 -6 0 0 -6 1 0 -5.602 1 -2 -5.602 0 -2
+4 16 -5.602 0 -2 -5.602 1 -2 -2 1 -2 -2 0 -2
+4 16 -2 0 -2 -2 1 -2 -2 1 -5.602 -2 0 -5.602
+4 16 -2 0 -5.602 -2 1 -5.602 0 1 -6 0 0 -6
+4 16 6 0 0 5.602 0 -2 5.602 1 -2 6 1 0
+4 16 5.602 0 -2 2 0 -2 2 1 -2 5.602 1 -2
+4 16 2 0 -2 2 0 -5.602 2 1 -5.602 2 1 -2
+4 16 2 0 -5.602 0 0 -6 0 1 -6 2 1 -5.602
+0
+
+0 FILE p/axlehol3.dat
+0 Technic Axle Hole Tooth Outer Edges
+0 Name: axlehol3.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 5.602 0 2    5.543 0 2.296
+2 24 5.543 0 2.296 4.243 0 4.243
+2 24 4.243 0 4.243 2.296 0 5.543
+2 24 2.296 0 5.543 2    0 5.602
+2 24 -5.602 0 2    -5.543 0 2.296
+2 24 -5.543 0 2.296 -4.243 0 4.243
+2 24 -4.243 0 4.243 -2.296 0 5.543
+2 24 -2.296 0 5.543 -2    0 5.602
+2 24 5.602 0 -2    5.543 0 -2.296
+2 24 5.543 0 -2.296 4.243 0 -4.243
+2 24 4.243 0 -4.243 2.296 0 -5.543
+2 24 2.296 0 -5.543 2    0 -5.602
+2 24 -5.602 0 -2    -5.543 0 -2.296
+2 24 -5.543 0 -2.296 -4.243 0 -4.243
+2 24 -4.243 0 -4.243 -2.296 0 -5.543
+2 24 -2.296 0 -5.543 -2    0 -5.602
+0
+
+0 FILE parts/4599a.dat
+0 Tap  1 x  1 with Hole in Spout
+0 Name: 4599a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2018-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS valve, water, faucet, hydrant, pipe, plug, sink
+0 !KEYWORDS kitchen, bathroom, lavatory, restroom, sauna, shower,
+0 !KEYWORDS shower room, spa, toilet, washroom
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 2003-07-03 [technog] corrected errors, added primitives and BFC
+0 !HISTORY 2005-11-01 [Holly-Wood] added hole, fixed errors, added keywords
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-12-06 [C3POwen] updated with more primitives
+0 !HISTORY 2012-12-07 [PTadmin] Renamed from 4599
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+0 !HISTORY 2018-03-26 [cwdee] Replace t04ounit with identical r04o1000
+0 !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
+
+1 16 0 20 0 1 0 0 0 -1 0 0 0 -1 p/stud4o.dat
+1 16 0 24 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 24 0 8 0 0 0 -4 0 0 0 -8 p/4-4cyli.dat
+
+1 16 0 20 0 -4 0 0 0 -4 0 0 0 -4 p/r04o1000.dat
+1 16 0 20 0 0 0 -4 0 -4 0 4 0 0 p/r04o1000.dat
+1 16 0 20 0 4 0 0 0 -4 0 0 0 4 p/r04o1000.dat
+1 16 0 20 0 0 0 4 0 -4 0 -4 0 0 p/r04o1000.dat
+1 16 0 16 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 0 4 0 0 0 16 0 0 0 4 p/4-4cyli.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 0 2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+1 16 0 0 0 0 0 1 0 1 0 -1 0 0 p/stud.dat
+
+1 16 0 4 4 0 0 -4 4 0 0 0 -4 0 p/1-4cyls.dat
+1 16 0 4 4 0 0 -4 -4 0 0 0 -4 0 p/1-4cyls.dat
+1 16 0 4 4 0 0 4 -4 0 0 0 -4 0 p/1-4cyls.dat
+1 16 0 4 4 0 0 4 4 0 0 0 -4 0 p/1-4cyls.dat
+1 16 0 4 0 4 0 0 0 1 4 0 0 4 p/2-4edge.dat
+1 16 0 4 0 4 0 0 0 1 -4 0 0 4 p/2-4edge.dat
+1 16 0 4 4 4 0 0 0 0 4 0 6 0 p/4-4cyli.dat
+1 16 0 4 10 4 0 0 0 0 4 0 6 0 p/4-4edge.dat
+
+1 16 0 4 10 0 0 1 1 0 0 0 6 0 p/4-4con3.dat
+1 16 0 4 16 3 0 0 0 0 3 0 1 0 p/4-4edge.dat
+1 16 0 4 16 4 0 0 0 0 -4 0 4 0 p/4-4cylc.dat
+1 16 0 4 20 0 0 2 2 0 0 0 -1 0 p/4-4ring1.dat
+0 BFC INVERTNEXT
+1 16 0 4 17 2 0 0 0 0 -2 0 3 0 p/4-4cylc.dat
+
+0 FILE p/4-4ring1.dat
+0 Ring  1 x 1.0
+0 Name: 4-4ring1.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-04-08 [BrickCaster] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-08-26 [cwdee] Switch polygon winding and rename
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 -0.7654 0 1.8478 -0.3827 0 0.9239 0 0 1 0 0 2
+4 16 -1.4142 0 1.4142 -0.7071 0 0.7071 -0.3827 0 0.9239 -0.7654 0 1.8478
+4 16 -1.8478 0 0.7654 -0.9239 0 0.3827 -0.7071 0 0.7071 -1.4142 0 1.41420
+4 16 -2 0 0 -1 0 0 -0.9239 0 0.3827 -1.8478 0 0.7654
+4 16 -1.8478 0 -0.7654 -0.9239 0 -0.3827 -1 0 0 -2 0 0
+4 16 -1.4142 0 -1.4142 -0.7071 0 -0.7071 -0.9239 0 -0.3827 -1.8478 0 -0.7654
+4 16 -0.7654 0 -1.8478 -0.3827 0 -0.9239 -0.7071 0 -0.7071 -1.4142 0 -1.4142
+4 16 0 0 -2 0 0 -1 -0.3827 0 -0.9239 -0.7654 0 -1.8478
+4 16 0.7654 0 -1.8478 0.3827 0 -0.9239 0 0 -1 0 0 -2
+4 16 1.4142 0 -1.4142 0.7071 0 -0.7071 0.3827 0 -0.9239 0.7654 0 -1.8478
+4 16 1.8478 0 -0.7654 0.9239 0 -0.3827 0.7071 0 -0.7071 1.4142 0 -1.4142
+4 16 2 0 0 1 0 0 0.9239 0 -0.3827 1.8478 0 -0.7654
+4 16 1.8478 0 0.7654 0.9239 0 0.3827 1 0 0 2 0 0
+4 16 1.4142 0 1.4142 0.7071 0 0.7071 0.9239 0 0.3827 1.8478 0 0.7654
+4 16 0.7654 0 1.8478 0.3827 0 0.9239 0.7071 0 0.7071 1.4142 0 1.4142
+4 16 0 0 2 0 0 1 0.3827 0 0.9239 0.7654 0 1.8478
+0
+
+0 FILE p/r04o1000.dat
+0 Torus Outside  1 x 1.0000 x 0.25
+0 Name: r04o1000.dat
+0 Author: Philippe Hurbain [Philo]
+0 !LDRAW_ORG Primitive UPDATE 2013-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
+
+0 // Major Radius: 1
+0 // Tube(Minor) Radius: 1
+0 // Segments(Sweep): 4/16 = 0.25
+0 // 1  9  0 0 0  1 0 0  0 1 0  0 0 1 4-4edge.dat
+0 // 1  12  1 0 0 1.0000 0 0  0 0 1.0000  0 1 0  4-4edge.dat
+
+4 16 1 1 0 0.9239 1 0.3827 1.2775 0.9239 0.5292 1.3827 0.9239 0
+4 16 1.3827 0.9239 0 1.2775 0.9239 0.5292 1.5772 0.7071 0.6533 1.7071 0.7071 0
+4 16 1.7071 0.7071 0 1.5772 0.7071 0.6533 1.7775 0.3827 0.7363 1.9239 0.3827 0
+4 16 1.9239 0.3827 0 1.7775 0.3827 0.7363 1.8478 0 0.7654 2 0 0
+4 16 0.9239 1 0.3827 0.7071 1 0.7071 0.9777 0.9239 0.9777 1.2775 0.9239 0.5292
+4 16 1.2775 0.9239 0.5292 0.9777 0.9239 0.9777 1.2071 0.7071 1.2071 1.5772 0.7071 0.6533
+4 16 1.5772 0.7071 0.6533 1.2071 0.7071 1.2071 1.3604 0.3827 1.3604 1.7775 0.3827 0.7363
+4 16 1.7775 0.3827 0.7363 1.3604 0.3827 1.3604 1.4142 0 1.4142 1.8478 0 0.7654
+4 16 0.7071 1 0.7071 0.3827 1 0.9239 0.5292 0.9239 1.2775 0.9777 0.9239 0.9777
+4 16 0.9777 0.9239 0.9777 0.5292 0.9239 1.2775 0.6533 0.7071 1.5772 1.2071 0.7071 1.2071
+4 16 1.2071 0.7071 1.2071 0.6533 0.7071 1.5772 0.7363 0.3827 1.7775 1.3604 0.3827 1.3604
+4 16 1.3604 0.3827 1.3604 0.7363 0.3827 1.7775 0.7654 0 1.8478 1.4142 0 1.4142
+4 16 0.3827 1 0.9239 0 1 1 0 0.9239 1.3827 0.5292 0.9239 1.2775
+4 16 0.5292 0.9239 1.2775 0 0.9239 1.3827 0 0.7071 1.7071 0.6533 0.7071 1.5772
+4 16 0.6533 0.7071 1.5772 0 0.7071 1.7071 0 0.3827 1.9239 0.7363 0.3827 1.7775
+4 16 0.7363 0.3827 1.7775 0 0.3827 1.9239 0 0 2 0.7654 0 1.8478
+
+0 // conditional lines
+5 24 1 1 0 0.9239 1 0.3827 1.3827 0.9239 0 0.5858 1 0
+5 24 1 1 0 1.3827 0.9239 0 0.9239 1 0.3827 1 1 -0.4142
+5 24 1.3827 0.9239 0 1.2775 0.9239 0.5292 1.7071 0.7071 0 1 1 0
+5 24 1.3827 0.9239 0 1.7071 0.7071 0 1.2775 0.9239 0.5292 1.3827 0.9239 -0.5727
+5 24 1.7071 0.7071 0 1.5772 0.7071 0.6533 1.9239 0.3827 0 1.3827 0.9239 0
+5 24 1.7071 0.7071 0 1.9239 0.3827 0 1.5772 0.7071 0.6533 1.7071 0.7071 -0.7071
+5 24 1.9239 0.3827 0 1.7775 0.3827 0.7363 2 0 0 1.7071 0.7071 0
+5 24 1.9239 0.3827 0 2 0 0 1.7775 0.3827 0.7363 1.9239 0.3827 -0.7969
+5 24 2 0 0 1.8478 0 0.7654 2 -0.4142 0 1.9239 0.3827 0
+5 24 0.9239 1 0.3827 0.7071 1 0.7071 1.2775 0.9239 0.5292 0.5412 1 0.2242
+5 24 0.9239 1 0.3827 1.2775 0.9239 0.5292 0.7071 1 0.7071 1 1 0
+5 24 1.2775 0.9239 0.5292 0.9777 0.9239 0.9777 1.5772 0.7071 0.6533 0.9239 1 0.3827
+5 24 1.2775 0.9239 0.5292 1.5772 0.7071 0.6533 0.9777 0.9239 0.9777 1.3827 0.9239 0
+5 24 1.5772 0.7071 0.6533 1.2071 0.7071 1.2071 1.7775 0.3827 0.7363 1.2775 0.9239 0.5292
+5 24 1.5772 0.7071 0.6533 1.7775 0.3827 0.7363 1.2071 0.7071 1.2071 1.7071 0.7071 0
+5 24 1.7775 0.3827 0.7363 1.3604 0.3827 1.3604 1.8478 0 0.7654 1.5772 0.7071 0.6533
+5 24 1.7775 0.3827 0.7363 1.8478 0 0.7654 1.3604 0.3827 1.3604 1.9239 0.3827 0
+5 24 1.8478 0 0.7654 1.4142 0 1.4142 1.8478 -0.4142 0.7654 1.7775 0.3827 0.7363
+5 24 0.7071 1 0.7071 0.3827 1 0.9239 0.9777 0.9239 0.9777 0.4142 1 0.4142
+5 24 0.7071 1 0.7071 0.9777 0.9239 0.9777 0.3827 1 0.9239 0.9239 1 0.3827
+5 24 0.9777 0.9239 0.9777 0.5292 0.9239 1.2775 1.2071 0.7071 1.2071 0.7071 1 0.7071
+5 24 0.9777 0.9239 0.9777 1.2071 0.7071 1.2071 0.5292 0.9239 1.2775 1.2775 0.9239 0.5292
+5 24 1.2071 0.7071 1.2071 0.6533 0.7071 1.5772 1.3604 0.3827 1.3604 0.9777 0.9239 0.9777
+5 24 1.2071 0.7071 1.2071 1.3604 0.3827 1.3604 0.6533 0.7071 1.5772 1.5772 0.7071 0.6533
+5 24 1.3604 0.3827 1.3604 0.7363 0.3827 1.7775 1.4142 0 1.4142 1.2071 0.7071 1.2071
+5 24 1.3604 0.3827 1.3604 1.4142 0 1.4142 0.7363 0.3827 1.7775 1.7775 0.3827 0.7363
+5 24 1.4142 0 1.4142 0.7654 0 1.8478 1.4142 -0.4142 1.4142 1.3604 0.3827 1.3604
+5 24 0.3827 1 0.9239 0 1 1 0.5292 0.9239 1.2775 0.2242 1 0.5412
+5 24 0.3827 1 0.9239 0.5292 0.9239 1.2775 0 1 1 0.7071 1 0.7071
+5 24 0.5292 0.9239 1.2775 0 0.9239 1.3827 0.6533 0.7071 1.5772 0.3827 1 0.9239
+5 24 0.5292 0.9239 1.2775 0.6533 0.7071 1.5772 0 0.9239 1.3827 0.9777 0.9239 0.9777
+5 24 0.6533 0.7071 1.5772 0 0.7071 1.7071 0.7363 0.3827 1.7775 0.5292 0.9239 1.2775
+5 24 0.6533 0.7071 1.5772 0.7363 0.3827 1.7775 0 0.7071 1.7071 1.2071 0.7071 1.2071
+5 24 0.7363 0.3827 1.7775 0 0.3827 1.9239 0.7654 0 1.8478 0.6533 0.7071 1.5772
+5 24 0.7363 0.3827 1.7775 0.7654 0 1.8478 0 0.3827 1.9239 1.3604 0.3827 1.3604
+5 24 0.7654 0 1.8478 0 0 2 0.7654 -0.4142 1.8478 0.7363 0.3827 1.7775
+5 24 0 1 1 0 0.9239 1.3827 -0.4142 1 1 0.3827 1 0.9239
+5 24 0 0.9239 1.3827 0 0.7071 1.7071 -0.5727 0.9239 1.3827 0.5292 0.9239 1.2775
+5 24 0 0.7071 1.7071 0 0.3827 1.9239 -0.7071 0.7071 1.7071 0.6533 0.7071 1.5772
+5 24 0 0.3827 1.9239 0 0 2 -0.7969 0.3827 1.9239 0.7363 0.3827 1.7775
+0 // Build by Primitive Generator 2
+
+0 FILE p/stud4o.dat
+0 Stud Tube Open without Outer Cylinder
+0 Name: stud4o.dat
+0 Author: Magnus Forsberg [MagFors]
+0 !LDRAW_ORG Primitive UPDATE 2011-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HELP This stud is a "antistud" to be used like a underside stud,
+0 !HELP but without the outer cylinder.
+0 !HELP 1 47 0 0 0 1 0 0 0 1 0 0 0 1 stud4.dat
+
+0 !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
+
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 -6 0 0 0 -4 0 0 0 6 p/4-4cylc.dat
+
+0 FILE p/4-4cylc.dat
+0 Cylinder Closed 1.0
+0 Name: 4-4cylc.dat
+0 Author: Alex Taylor [anathema]
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2008-12-29 [cwdee] Removed one disc
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/4-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4disc.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4cyli.dat
+0
+
+0 FILE parts/6190.dat
+0 Bar  1 x  3
+0 Name: 6190.dat
+0 Author: Orion Pobursky [OrionP]
+0 !LDRAW_ORG Part UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS Star Wars, Train, Divers, Town, telephone, receiver, handset
+0 !KEYWORDS Belville, Scala, handle
+
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2003-06-08 [jriley] BFC compliancy check
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2008-05-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-10 [PTadmin] Renamed from 167
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+1 16 -20 0 0 1 0 0 0 -2 0 0 0 -1 p/stud4a.dat
+
+1 16 20 0 0 1 0 0 0 -2 0 0 0 -1 p/stud4a.dat
+1 16 13 -4 0 0 -26 0 -4 0 0 0 0 -4 p/4-4cyli.dat
+1 16 -20 0 0 -8 0 0 0 -4 0 0 0 8 p/2-4cyls.dat
+1 16 -20 0 0 -8 0 0 0 -4 0 0 0 -8 p/2-4cyls.dat
+1 16 20 0 0 8 0 0 0 -4 0 0 0 -8 p/2-4cyls.dat
+1 16 20 0 0 8 0 0 0 -4 0 0 0 8 p/2-4cyls.dat
+1 16 20 -4 0 8 0.559017 0 4 -1.11803 0 0 0 8 p/4-8sphe.dat
+1 16 -20 -4 0 -8 -0.559017 0 4 -1.11803 0 0 0 -8 p/4-8sphe.dat
+1 16 13 -4 0 0 0.5 0 4 0 0 0 0 4 p/1-4cyls.dat
+1 16 13 -4 0 0 0.5 0 -4 0 0 0 0 4 p/1-4cyls.dat
+1 16 13 -4 0 0 0.5 0 -4 0 0 0 0 -4 p/1-4cyls.dat
+1 16 13 -4 0 0 0.5 0 4 0 0 0 0 -4 p/1-4cyls.dat
+1 16 -13 -4 0 0 -0.5 0 4 0 0 0 0 -4 p/1-4cyls.dat
+1 16 -13 -4 0 0 -0.5 0 -4 0 0 0 0 -4 p/1-4cyls.dat
+1 16 -13 -4 0 0 -0.5 0 -4 0 0 0 0 4 p/1-4cyls.dat
+1 16 -13 -4 0 0 -0.5 0 4 0 0 0 0 4 p/1-4cyls.dat
+1 16 -20 0 0 -6 0 0 0 -1 0 0 0 6 p/4-4disc.dat
+1 16 20 0 0 -6 0 0 0 -1 0 0 0 6 p/4-4disc.dat
+1 16 -20 0 0 -6 0 0 0 -1 0 0 0 6 p/4-4edge.dat
+1 16 20 0 0 -6 0 0 0 -1 0 0 0 6 p/4-4edge.dat
+2 24 -12 -8 0 -12.304 -7.696 -1.531
+2 24 -12.304 -7.696 -1.531 -12.563 -6.828 -2.828
+2 24 -13.033 -5.531 -3.696 -13.236 -4 -4
+2 24 -13.236 -4 -4 -13.033 -2.469 -3.696
+2 24 -12.563 -1.172 -2.828 -12.304 -0.3 -1.531
+2 24 -12.304 -0.3 -1.531 -12 0 0
+2 24 -12 0 0 -12.304 -0.3 1.531
+2 24 -12.304 -0.3 1.531 -12.563 -1.172 2.828
+2 24 -13.033 -2.469 3.696 -13.236 -4 4
+2 24 -13.236 -4 4 -13.033 -5.531 3.696
+2 24 -12.563 -6.828 2.828 -12.304 -7.696 1.53
+2 24 -12.304 -7.696 1.531 -12 -8 0
+2 24 -12.609 -6.48 -3.061 -13.033 -5.531 -3.696
+2 24 -12.609 -1.52 -3.061 -12.563 -1.172 -2.828
+2 24 -12.609 -1.52 3.061 -13.033 -2.469 3.696
+2 24 -12.563 -1.172 2.828 -12.609 -1.52 3.061
+2 24 -13.033 -2.469 -3.696 -12.609 -1.52 -3.061
+2 24 -13.033 -5.531 3.696 -12.609 -6.48 3.061
+2 24 -12.609 -6.48 3.061 -12.563 -6.828 2.828
+2 24 -12.563 -6.828 -2.828 -12.609 -6.48 -3.061
+2 24 12 -8 0 12.304 -7.696 1.531
+2 24 12.304 -7.696 1.531 12.563 -6.828 2.828
+2 24 13.033 -5.531 3.696 13.236 -4 4
+2 24 13.236 -4 4 13.033 -2.469 3.696
+2 24 12.563 -1.172 2.828 12.304 -0.3 1.531
+2 24 12.304 -0.3 1.531 12 0 0
+2 24 12 0 0 12.304 -0.3 -1.531
+2 24 12.304 -0.3 -1.531 12.563 -1.172 -2.828
+2 24 13.033 -2.469 -3.696 13.236 -4 -4
+2 24 13.236 -4 -4 13.033 -5.531 -3.696
+2 24 12.563 -6.828 -2.828 12.304 -7.696 -1.53
+2 24 12.304 -7.696 -1.531 12 -8 0
+2 24 12.609 -6.48 3.061 13.033 -5.531 3.696
+2 24 12.609 -1.52 3.061 12.563 -1.172 2.828
+2 24 12.609 -1.52 -3.061 13.033 -2.469 -3.696
+2 24 12.563 -1.172 -2.828 12.609 -1.52 -3.061
+2 24 13.033 -2.469 3.696 12.609 -1.52 3.061
+2 24 13.033 -5.531 -3.696 12.609 -6.48 -3.061
+2 24 12.609 -6.48 -3.061 12.563 -6.828 -2.828
+2 24 12.563 -6.828 2.828 12.609 -6.48 3.061
+0
+
+0 FILE p/4-8sphe.dat
+0 Sphere 0.5
+0 Name: 4-8sphe.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 -1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 p/1-8sphe.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 -1 p/1-8sphe.dat
+0
+
+
+0 FILE parts/41750.dat
+0 Slope Brick Round  3 x  8 x  2 Left
+0 Name: 41750.dat
+0 Author: Brent Jackson [bjackson]
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS round, curve, star wars, Jango Fett, Slave I
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/41749.dat
+0
+
+0 FILE parts/41749.dat
+0 Slope Brick Round  3 x  8 x  2 Right
+0 Name: 41749.dat
+0 Author: Brent Jackson [bjackson]
+0 !LDRAW_ORG Part UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS round, curve, star wars, Jango Fett, Slave I
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 1 48 -124 1 39 -124 -1 39 -124 -1 48 -124
+4 16 1 48 -116 -1 48 -116 -1 33.75 -116 1 33.75 -116
+4 16 1 48 -124 1 48 -120 1 36 -120 1 39 -124
+4 16 -1 48 -124 -1 39 -124 -1 36 -120 -1 48 -120
+4 16 1 48 -120 1 48 -116 1 33.75 -116 1 36 -120
+4 16 -1 48 -120 -1 36 -120 -1 33.75 -116 -1 48 -116
+1 16 0 48 -120 1 0 0 0 -1 0 0 0 -4 p/rect.dat
+2 24 1 48 -116 1 33.75 -116
+2 24 -1 48 -116 -1 33.75 -116
+2 24 1 48 -124 1 39 -124
+2 24 -1 48 -124 -1 39 -124
+2 24 1 39 -124 -1 39 -124
+2 24 -1 39 -124 -1 36 -120
+2 24 1 39 -124 1 36 -120
+2 24 1 36 -120 1 33.75 -116
+2 24 -1 36 -120 -1 33.75 -116
+2 24 -1 33.75 -116 1 33.75 -116
+1 16 -10 4 0 0 0 6 0 1 0 -6 0 0 p/2-4edge.dat
+1 16 -10 4 0 0 0.406131 -6.00011 0 0.913815 2.66666 6 0 0 p/2-4edge.dat
+1 16 -10 4 0 0 0 8 0 1 0 -8 0 0 p/2-4edge.dat
+1 16 -10 4 0 0 0.406131 -7.99954 0 0.913815 3.55527 8 0 0 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 -10 6.667 0 -6 0 0 0 -2.667 0 0 0 -6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 6.667 0 -6 0 0 0 -2.667 0 0 0 6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 -10 7 0 0 0 6 0 16 0 6 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -10 6.667 0 0 0 -6 0 13.667 0 -6 0 0 p/2-4cyli.dat
+1 16 -10 7.556 0 -8 0 0 0 -3.556 0 0 0 -8 p/1-4cyls.dat
+1 16 -10 7.556 0 -8 0 0 0 -3.556 0 0 0 8 p/1-4cyls.dat
+1 16 -10 4 0 0 0 8 0 16 0 -8 0 0 p/2-4cyli.dat
+1 16 -10 7.556 0 0 0 -8 0 12.556 0 -8 0 0 p/2-4cyli.dat
+1 16 -30 20 0 0 0 -1 0 -1 0 1 0 0 p/stud4a.dat
+1 16 -10 20 0 0 0 -1 0 -1 0 1 0 0 p/stud4a.dat
+1 16 -30 13 0 6.00011 0.406131 0 -2.66666 0.913815 0 0 0 6 p/4-4edge.dat
+1 16 -30 13 0 7.99999 0.406131 0 -3.55547 0.913815 0 0 0 8 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 -30 13 0 0 0 6 0 10 -2.667 -6 0 0 p/2-4cyli.dat
+1 16 -30 13 0 0 0 8 0 11 -3.556 -8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -30 13 0 0 0 -6 0 8 2.667 -6 0 0 p/2-4cyli.dat
+1 16 -30 13 0 0 0 -8 0 7 3.556 -8 0 0 p/2-4cyli.dat
+4 16 10 0 20 -10 0 20 -10 0 -20 10 0 -20
+2 24 10 0 20 -10 0 20
+2 24 -10 0 -20 -10 0 20
+2 24 10 0 -20 10 0 20
+4 16 -10 0 20 10 0 20 10 24 20 -10 24 20
+2 24 10 0 20 10 24 20
+4 16 -10 0 20 -10 24 20 -50 24 20 -50 20 20
+2 24 10 24 20 -50 24 20
+2 24 -50 24 20 -50 20 20
+2 24 -50 20 20 -10 0 20
+4 16 10 0 20 10 0 -20 10 24 -20 10 24 20
+2 24 10 24 20 10 24 -20
+4 16 10 24 20 10 24 -20 6 24 -20 6 24 20
+2 24 6 24 16 6 24 -20
+2 24 6 4 16 6 4 -20
+4 16 10 24 -20 10 26 -40 6 26 -40 6 24 -20
+2 24 10 24 -20 10 26 -40
+2 24 6 24 -20 6 26 -40
+4 16 10 26 -40 10 30 -60 6 30 -60 6 26 -40
+2 24 10 26 -40 10 30 -60
+2 24 6 26 -40 6 30 -60
+4 16 10 30 -60 10 36 -80 6 36 -80 6 30 -60
+2 24 10 30 -60 10 36 -80
+2 24 6 30 -60 6 36 -80
+4 16 10 36 -80 10 44 -100 6 44 -100 6 36 -80
+2 24 10 36 -80 10 44 -100
+2 24 6 36 -80 6 44 -100
+2 24 10 44 -100 6 44 -100
+4 16 10 0 -20 -10 0 -20 -10 2 -40 10 2 -40
+2 24 10 0 -20 10 2 -40
+2 24 -10 0 -20 -10 2 -40
+4 16 10 2 -40 -10 2 -40 -10 6 -60 10 6 -60
+2 24 10 2 -40 10 6 -60
+2 24 -10 2 -40 -10 6 -60
+4 16 10 6 -60 -10 6 -60 -10 12 -80 10 12 -80
+2 24 10 6 -60 10 12 -80
+2 24 -10 6 -60 -10 12 -80
+4 16 10 12 -80 -10 12 -80 -10 20 -100 10 20 -100
+2 24 10 12 -80 10 20 -100
+2 24 -10 12 -80 -10 20 -100
+4 16 10 20 -100 -10 20 -100 -10 32 -120 10 32 -120
+2 24 10 20 -100 10 32 -120
+2 24 -10 20 -100 -10 32 -120
+4 16 10 32 -120 -10 32 -120 -10 44 -140 10 44 -140
+2 24 10 32 -120 10 44 -140
+2 24 -10 32 -120 -10 44 -140
+2 24 10 44 -140 -10 44 -140
+4 16 10 0 -20 10 2 -40 10 26 -40 10 24 -20
+4 16 10 2 -40 10 6 -60 10 30 -60 10 26 -40
+4 16 10 6 -60 10 12 -80 10 36 -80 10 30 -60
+4 16 10 12 -80 10 20 -100 10 44 -100 10 36 -80
+4 16 10 20 -100 10 32 -120 10 48 -120 10 48 -100
+4 16 10 32 -120 10 44 -140 10 48 -140 10 48 -120
+2 24 10 44 -100 10 48 -100
+2 24 10 48 -100 10 48 -140
+2 24 10 44 -140 10 48 -140
+4 16 10 44 -100 10 48 -100 -50 48 -100 -50 44 -100
+2 24 10 48 -100 -50 48 -100
+2 24 -50 48 -100 -50 44 -100
+4 16 10 48 -100 10 48 -140 6 48 -140 6 48 -100
+2 24 6 48 -104 6 48 -136
+4 16 10 44 -140 -10 44 -140 -10 48 -140 10 48 -140
+2 24 10 48 -140 -10 48 -140
+2 24 -10 44 -140 -10 48 -140
+4 16 -10 0 20 -50 20 20 -50 20 -20 -10 0 -20
+2 24 -50 20 20 -50 20 -20
+4 16 -50 20 -20 -50 20 20 -50 24 20 -50 24 -20
+2 24 -50 24 20 -50 24 -20
+2 24 -46 24 16 -46 24 -20
+2 24 -46 20 16 -46 20 -20
+4 16 -50 20 -20 -50 24 -20 -50 26 -40 -50 22 -40
+2 24 -50 20 -20 -50 22 -40
+2 24 -50 24 -20 -50 26 -40
+2 24 -46 24 -20 -46 26 -40
+2 24 -46 20 -20 -46 22 -40
+4 16 -50 22 -40 -50 26 -40 -50 30 -60 -50 26 -60
+2 24 -50 22 -40 -50 26 -60
+2 24 -50 26 -40 -50 30 -60
+2 24 -46 26 -40 -46 30 -60
+2 24 -46 22 -40 -46 26 -60
+4 16 -50 26 -60 -50 30 -60 -50 36 -80 -50 33 -80
+2 24 -50 26 -60 -50 33 -80
+2 24 -50 30 -60 -50 36 -80
+2 24 -46 30 -60 -46 36 -80
+2 24 -46 26 -60 -46 33 -80
+4 16 -50 33 -80 -50 36 -80 -50 44 -100 -50 43 -100
+2 24 -50 43 -100 -50 44 -100
+2 24 -50 33 -80 -50 43 -100
+2 24 -50 36 -80 -50 44 -100
+2 24 -46 36 -80 -46 44 -100
+2 24 -46 33 -80 -46 43 -100
+4 16 -10 0 -20 -50 20 -20 -50 22 -40 -10 2 -40
+4 16 -10 2 -40 -50 22 -40 -50 26 -60 -10 6 -60
+3 16 -10 6 -60 -50 26 -60 -50 33 -80
+3 16 -10 12 -80 -10 6 -60 -50 33 -80
+3 16 -10 12 -80 -50 33 -80 -50 43 -100
+3 16 -10 20 -100 -10 12 -80 -50 43 -100
+3 16 -10 20 -100 -50 43 -100 -10 44 -140
+2 24 -10 44 -140 -50 44 -100
+3 16 -50 43 -100 -50 44 -100 -10 44 -140
+1 16 0 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+4 16 -10 44 -140 -15.757 44 -134.243 -15.757 48 -134.243 -10 48 -140
+2 24 -10 48 -140 -15.757 48 -134.243
+4 16 6 48 -140 -10 48 -140 -9 48 -136 6 48 -136
+2 24 6 48 -136 -6 48 -136
+4 16 -10 48 -140 -15.757 48 -134.243 -12.929 48 -131.415 -8.344 48 -136
+2 24 -12.929 48 -131.415 -10 48 -134.344
+4 16 -6 48 -104 -6 48 -140 -10 48 -140 -10 48 -104
+2 24 -6 48 -104 -6 48 -136
+2 24 -10 48 -134.344 -10 48 -104
+1 16 -28.586 46 -118.586 5.75691 0 1.41421 0 2 0 -5.75691 0 1.41421 p/box.dat
+1 16 -14.343 46 -132.829 -1.41421 0.707107 0 0 0 -2 -1.41421 -0.707107 0 p/rect.dat
+1 16 -43.364 46 -104.878 0.878227 -0.707107 0 0 0 -2 0.878227 0.707107 0 p/rect.dat
+4 16 6 48 -104 -42.486 48 -104 -42.486 48 -100 6 48 -100
+4 16 -44.243 48 -105.757 -50 48 -100 -42.486 48 -100 -42.486 48 -104
+2 24 -10 48 -104 -42.486 48 -104
+2 24 6 48 -104 -6 48 -104
+3 16 -10 44 -134.344 -40.344 44 -104 -10 28 -104
+2 24 -10 44 -134.344 -40.344 44 -104
+2 24 -40.344 44 -104 -10 28 -104
+2 24 -10 28 -104 -10 44 -134.344
+4 16 -10 28 -104 -10 48 -104 -10 48 -134.243 -10 44 -134.243
+2 24 -10 28 -104 -10 48 -104
+4 16 -12.929 48 -131.415 -12.929 44 -131.415 -10 44 -134.344 -10 48 -134.344
+2 24 -10 48 -134.243 -10 44 -134.243
+4 16 -10 28 -104 -41.415 44 -104 -41.415 48 -104 -10 48 -104
+4 16 -42.486 44 -104 -42.486 48 -104 -41.415 48 -104 -41.415 44 -104
+4 16 -50 44 -100 -50 48 -100 -44.243 48 -105.757 -44.243 44 -105.757
+2 24 -50 48 -100 -44.243 48 -105.757
+4 16 -32.929 44 -111.415 -35.757 44 -114.243 -44.243 44 -105.757 -42.486 44 -104
+3 16 -42.486 44 -104 -40.344 44 -104 -32.929 44 -111.415
+2 24 -40.344 44 -104 -42.486 44 -104
+4 16 -12.929 44 -131.415 -15.757 44 -134.243 -24.243 44 -125.757 -21.415 44 -122.929
+4 16 6 4 -20 6 6 -40 -10 6 -40 -10 4 -20
+4 16 6 6 -40 6 10 -60 -10 10 -60 -10 6 -40
+4 16 6 10 -60 6 16 -80 -10 16 -80 -10 10 -60
+4 16 6 16 -80 6 24 -100 -10 24 -100 -10 16 -80
+4 16 6 26 -104 6 36 -120 -6 36 -120 -6 26 -104
+4 16 6 36 -120 6 44 -130.667 -6 44 -130.667 -6 36 -120
+4 16 6 4 -20 6 24 -20 6 26 -40 6 6 -40
+2 24 6 4 -20 6 6 -40
+4 16 6 6 -40 6 26 -40 6 30 -60 6 10 -60
+2 24 6 6 -40 6 10 -60
+4 16 6 10 -60 6 30 -60 6 36 -80 6 16 -80
+2 24 6 10 -60 6 16 -80
+4 16 6 16 -80 6 36 -80 6 44 -100 6 24 -100
+2 24 6 16 -80 6 24 -100
+4 16 6 27 -104 6 48 -104 6 48 -120 6 36 -120
+2 24 6 48 -104 6 24 -104
+2 24 6 24 -100 6 36 -120
+2 24 -6 24 -100 -6 36 -120
+4 16 6 36 -120 6 48 -120 6 48 -136 6 46 -136
+2 24 6 36 -120 6 48 -136
+4 16 -10 4 16 -10 4 -20 -46 20 -20 -46 20 16
+4 16 -46 20 -20 -46 24 -20 -46 24 16 -46 20 16
+4 16 -46 20 -20 -46 22 -40 -46 26 -40 -46 24 -20
+4 16 -46 22 -40 -46 26 -60 -46 30 -60 -46 26 -40
+4 16 -46 26 -60 -46 33 -80 -46 36 -80 -46 30 -60
+4 16 -46 33 -80 -46 43 -100 -46 44 -100 -46 36 -80
+4 16 -10 4 -20 -10 6 -40 -46 22 -40 -46 20 -20
+2 24 -10 4 -20 -10 6 -40
+4 16 -10 6 -40 -10 10 -60 -46 26 -60 -46 22 -40
+2 24 -10 6 -40 -10 10 -60
+3 16 -10 10 -60 -46 33 -80 -46 26 -60
+3 16 -10 10 -60 -10 16 -80 -46 33 -80
+2 24 -10 16 -80 -10 10 -60
+3 16 -10 16 -80 -46 43 -100 -46 33 -80
+3 16 -10 24 -100 -46 43 -100 -10 16 -80
+2 24 -10 16 -80 -10 24 -100
+4 16 -6 26 -104 -6 36 -120 -6 48 -120 -6 48 -104
+3 16 -6 48 -136 -6 48 -120 -6 36 -120
+2 24 -6 48 -136 -6 36 -120
+4 16 6 4 16 6 24 16 6 24 -20 6 4 -20
+4 16 -10 4 16 6 4 16 6 4 -20 -10 4 -20
+2 24 -10 4 16 -10 4 -20
+4 16 6 4 16 -10 4 16 -10 24 16 6 24 16
+2 24 6 4 16 -10 4 16
+4 16 -10 4 16 -46 20 16 -46 24 16 -10 24 16
+2 24 -10 4 16 -46 20 16
+2 24 6 4 16 6 24 16
+2 24 -46 20 16 -46 24 16
+2 24 -46 24 16 6 24 16
+4 16 -46 24 20 6 24 20 6 24 16 -46 24 16
+4 16 -50 24 20 -46 24 20 -46 24 -20 -50 24 -20
+4 16 -46 26 -40 -50 26 -40 -50 24 -20 -46 24 -20
+4 16 -50 26 -40 -46 26 -40 -46 30 -60 -50 30 -60
+4 16 -46 30 -60 -46 36 -80 -50 36 -80 -50 30 -60
+4 16 -50 36 -80 -46 36 -80 -46 44 -100 -50 44 -100
+2 24 -46 44 -100 -50 44 -100
+4 16 6 24 -100 6 44 -100 -10 44 -100 -10 24 -100
+4 16 -10 24 -100 -10 44 -100 -46 44 -100 -46 43 -100
+2 24 6 24 -100 -10 24 -100
+2 24 -10 24 -100 -46 43 -100
+2 24 -46 43 -100 -46 44 -100
+2 24 6 24 -100 6 44 -100
+4 16 6 24 -104 -6 24 -104 -6 48 -104 6 48 -104
+2 24 -6 24 -104 -6 48 -104
+4 16 6 4 -20 -10 4 -20 -10 24 -20 6 24 -20
+4 16 6 4 -16 6 24 -16 -10 24 -16 -10 4 -16
+4 16 -10 4 -20 -46 20 -20 -46 24 -20 -10 24 -20
+4 16 -10 4 -16 -10 24 -16 -46 24 -16 -46 20 -16
+1 16 -20 24 -18 26 0 0 0 -1 0 0 0 2 p/rect.dat
+2 24 -46 20 -20 -46 24 -20
+2 24 -46 20 -16 -46 24 -16
+2 24 -46 20 -20 -10 4 -20
+2 24 -46 20 -16 -10 4 -16
+2 24 -10 4 -20 6 4 -20
+2 24 -10 4 -16 6 4 -16
+2 24 6 4 -20 6 24 -20
+2 24 6 4 -16 6 24 -16
+5 24 -50 20 -20 -10 0 -20 -10 0 0 -50 22 -40
+5 24 -50 22 -40 -10 2 -40 -10 0 -20 -50 26 -60
+5 24 -10 6 -60 -50 26 -60 -10 2 -40 -50 33 -80
+5 24 -10 12 -80 -50 33 -80 -10 6 -60 -50 43 -100
+5 24 -10 20 -100 -50 43 -100 -10 12 -80 -30 44 -120
+5 24 -10 0 -20 10 0 -20 0 0 0 0 2 -40
+5 24 -10 2 -40 10 2 -40 0 0 -20 0 6 -60
+5 24 -10 6 -60 10 6 -60 0 2 -40 0 12 -80
+5 24 -10 12 -80 10 12 -80 0 6 -60 0 20 -100
+5 24 -10 20 -100 10 20 -100 0 12 -80 0 44 -140
+3 16 -5.5434 44 -132.296 -5.5434 45.2222 -132.296 -5.8674 44 -130.667
+4 16 -4.2426 44 -134.243 -4.2426 46.682 -134.243 -5.5434 45.2222 -132.296 -5.5434 44 -132.296
+5 24 -5.5434 45.2222 -132.296 -5.5434 44 -132.296 -4.2426 44 -134.243 -6 44 -130
+4 16 -2.2962 44 -135.543 -2.2962 47.6576 -135.543 -4.2426 46.682 -134.243 -4.2426 44 -134.243
+5 24 -4.2426 46.682 -134.243 -4.2426 44 -134.243 -2.2962 44 -135.543 -5.5434 44 -132.296
+4 16 0 44 -136 0 48 -136 -2.2962 47.6576 -135.543 -2.2962 44 -135.543
+5 24 -2.2962 47.6576 -135.543 -2.2962 44 -135.543 0 44 -136 -4.2426 44 -134.243
+4 16 2.2962 44 -135.543 2.2962 47.6576 -135.543 0 48 -136 0 44 -136
+5 24 0 48 -136 0 44 -136 2.2962 48 -135.543 -2.2962 48 -135.543
+4 16 4.2426 44 -134.243 4.2426 46.682 -134.243 2.2962 47.6576 -135.543 2.2962 44 -135.543
+5 24 2.2962 44 -135.543 2.2962 47.6576 -135.543 4.2426 44 -134.243 0 44 -136
+4 16 5.5434 44 -132.296 5.5434 45.2222 -132.296 4.2426 46.682 -134.243 4.2426 44 -134.243
+5 24 4.2426 46.682 -134.243 4.2426 44 -134.243 5.5434 44 -132.296 2.2962 44 -135.543
+3 16 5.5434 45.2222 -132.296 5.5434 44 -132.296 5.8674 44 -130.667
+5 24 5.5434 45.2222 -132.296 5.5434 44 -132.296 5.8674 44 -130.667 4.2426 44 -134.243
+3 16 5.8674 44 -130.667 5.5434 44 -132.296 1.6095 44 -130.667
+4 16 5.5434 44 -132.296 4.2426 44 -134.243 0.6667 44 -130.667 1.6095 44 -130.667
+4 16 4.2426 44 -134.243 2.2962 44 -135.543 0.2762 44 -130.667 0.6667 44 -130.667
+4 16 2.2962 44 -135.543 0 44 -136 0 44 -130.667 0.2762 44 -130.667
+4 16 0 44 -136 -2.2962 44 -135.543 -0.2762 44 -130.667 0 44 -130.667
+4 16 -2.2962 44 -135.543 -4.2426 44 -134.243 -0.6667 44 -130.667 -0.2762 44 -130.667
+4 16 -4.2426 44 -134.243 -5.5434 44 -132.296 -1.6095 44 -130.667 -0.6667 44 -130.667
+3 16 -5.5434 44 -132.296 -5.8674 44 -130.667 -1.6095 44 -130.667
+2 24 5.8674 44 -130.667 5.5434 44 -132.296
+2 24 5.5434 44 -132.296 4.2426 44 -134.243
+2 24 4.2426 44 -134.243 2.2962 44 -135.543
+2 24 2.2962 44 -135.543 0 44 -136
+2 24 0 44 -136 -2.2962 44 -135.543
+2 24 -2.2962 44 -135.543 -4.2426 44 -134.243
+2 24 -4.2426 44 -134.243 -5.5434 44 -132.296
+2 24 -5.5434 44 -132.296 -5.8674 44 -130.667
+2 24 5.8674 44 -130.667 5.5434 45.2222 -132.296
+2 24 5.5434 45.2222 -132.296 4.2426 46.682 -134.243
+2 24 4.2426 46.682 -134.243 2.2962 47.6576 -135.543
+2 24 2.2962 47.6576 -135.543 0 48 -136
+2 24 0 48 -136 -2.2962 47.6576 -135.543
+2 24 -2.2962 47.6576 -135.543 -4.2426 46.682 -134.243
+2 24 -4.2426 46.682 -134.243 -5.5434 45.2222 -132.296
+2 24 -5.5434 45.2222 -132.296 -5.8674 44 -130.667
+4 16 -5.8674 48 -136 -6 48 -136 -6 44 -130.667 -5.8674 44 -130.667
+4 16 -5.5434 48 -136 -5.8674 48 -136 -5.8674 44 -130.667 -5.5434 45.2222 -132.296
+4 16 -4.2426 48 -136 -5.5434 48 -136 -5.5434 45.2222 -132.296 -4.2426 46.682 -134.243
+4 16 -2.2962 48 -136 -4.2426 48 -136 -4.2426 46.682 -134.243 -2.2962 47.6576 -135.543
+3 16 0 48 -136 -2.2962 48 -136 -2.2962 47.6576 -135.543
+3 16 2.2962 47.6576 -135.543 2.2962 48 -136 0 48 -136
+4 16 4.2426 48 -136 2.2962 48 -136 2.2962 47.6576 -135.543 4.2426 46.682 -134.243
+4 16 5.5434 48 -136 4.2426 48 -136 4.2426 46.682 -134.243 5.5434 45.2222 -132.296
+4 16 5.8674 48 -136 5.5434 48 -136 5.5434 45.2222 -132.296 5.8674 44 -130.667
+4 16 6 48 -136 5.8674 48 -136 5.8674 44 -130.667 6 44 -130.667
+0
+
+0 FILE p/box.dat
+0 Box 6 (six faces)
+0 Name: box.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2002-05
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-22 [sbliss] Applied BFC
+0 !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 -1 1 -1 -1 1
+2 24 -1 -1 1 -1 -1 -1
+2 24 -1 -1 -1 1 -1 -1
+2 24 1 -1 -1 1 -1 1
+2 24 1 -1 1 1 1 1
+2 24 -1 -1 1 -1 1 1
+2 24 1 -1 -1 1 1 -1
+2 24 -1 -1 -1 -1 1 -1
+4 16 1 1 1 1 1 -1 -1 1 -1 -1 1 1
+4 16 -1 -1 -1 1 -1 -1 1 -1 1 -1 -1 1
+4 16 -1 -1 1 1 -1 1 1 1 1 -1 1 1
+4 16 -1 -1 -1 -1 -1 1 -1 1 1 -1 1 -1
+4 16 1 -1 -1 -1 -1 -1 -1 1 -1 1 1 -1
+4 16 1 -1 1 1 -1 -1 1 1 -1 1 1 1
+0
+
+0 FILE parts/42022.dat
+0 Slope Brick Curved  6 x  1
+0 Name: 42022.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS rounded, Alpha Team, Racers
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-07-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [PTadmin] Renamed from 464
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+0 !HISTORY 2010-01-19 [Eldar] Add BFC
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/464s01.dat
+4 16 -10  0 -20 -10  2  -40 10  2  -40 10  0 -20
+4 16 -10  2 -40 -10  6  -60 10  6  -60 10  2 -40
+4 16 -10  6 -60 -10 12  -80 10 12  -80 10  6 -60
+4 16 -10 12 -80 -10 20 -100 10 20 -100 10 12 -80
+
+0 FILE parts/s/464s01.dat
+0 ~Slope Brick Curved  6 x  1 without Top Surface
+0 Name: s\464s01.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Subpart UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-09 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-19 [Eldar] Add BFC
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 0 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+0 
+4 16 -10 0 -20 -10 0 20 -10 24 20 -10 24 -20
+4 16 10 24 -20 10 24 20 10 0 20 10 0 -20
+4 16 -10 24 -20 -10 24 -40 -10 2 -40 -10 0 -20
+4 16 10 0 -20 10 2 -40 10 24 -40 10 24 -20
+4 16 -10 24 -40 -10 24 -60 -10 6 -60 -10 2 -40
+4 16 10 2 -40 10 6 -60 10 24 -60 10 24 -40
+4 16 -10 24 -60 -10 24 -80 -10 12 -80 -10 6 -60
+4 16 10 6 -60 10 12 -80 10 24 -80 10 24 -60
+4 16 -10 24 -80 -10 24 -100 -10 20 -100 -10 12 -80
+4 16 10 12 -80 10 20 -100 10 24 -100 10 24 -80
+4 16 -10 24 20 -6 24 16 -6 24 -96 -10 24 -100
+4 16 10 24 -100 6 24 -96 6 24 16 10 24 20
+4 16 -6 24 16 -6 20 16 -6 20 -96 -6 24 -96
+4 16 6 24 -96 6 20 -96 6 20 16 6 24 16
+4 16 -6 4 -19 -6 20 -19 -6 20 16 -6 4 16
+4 16 6 4 16 6 20 16 6 20 -19 6 4 -19
+4 16 -6 10 -59 -6 20 -59 -6 20 -21 -6 4 -21
+4 16 6 4 -21 6 20 -21 6 20 -59 6 10 -59
+3 16 -6 20 -92 -6 20 -61 -6 10 -61
+3 16 6 10 -61 6 20 -61 6 20 -92
+0
+4 16 -10 0 -20 10 0 -20 10 0 20 -10 0 20
+4 16 -10 0 20 10 0 20 10 24 20 -10 24 20
+4 16 -10 24 -100 10 24 -100 10 20 -100 -10 20 -100
+4 16 10 24 20 6 24 16 -6 24 16 -10 24 20
+4 16 -10 24 -100 -6 24 -96 6 24 -96 10 24 -100
+4 16 -6 24 16 6 24 16 6 4 16 -6 4 16
+4 16 -6 20 -96 6 20 -96 6 24 -96 -6 24 -96
+4 16 -6 20 -92 6 20 -92 6 20 -96 -6 20 -96
+4 16 -6 4 16 6 4 16 6 4 -19 -6 4 -19
+4 16 -6 4 -19 6 4 -19 6 20 -19 -6 20 -19
+4 16 -6 20 -19 6 20 -19 6 20 -21 -6 20 -21
+4 16 -6 20 -21 6 20 -21 6 4 -21 -6 4 -21
+4 16 -6 4 -21 6 4 -21 6 10 -59 -6 10 -59
+4 16 -6 10 -59 6 10 -59 6 20 -59 -6 20 -59
+4 16 -6 20 -59 6 20 -59 6 20 -61 -6 20 -61
+4 16 -6 20 -61 6 20 -61 6 10 -61 -6 10 -61
+4 16 -6 10 -61 6 10 -61 6 20 -92 -6 20 -92
+0 
+2 24 -10 0 -20 -10 0 20
+2 24 10 0 -20 10 0 20
+2 24 -10 0 -20 -10 2 -40
+2 24 10 0 -20 10 2 -40
+2 24 -10 2 -40 -10 6 -60
+2 24 10 2 -40 10 6 -60
+2 24 -10 6 -60 -10 12 -80
+2 24 10 6 -60 10 12 -80
+2 24 -10 12 -80 -10 20 -100
+2 24 10 12 -80 10 20 -100
+2 24 -10 24 20 -10 24 -100
+2 24 10 24 20 10 24 -100
+2 24 -10 0 20 -10 24 20
+2 24 10 0 20 10 24 20
+2 24 -10 20 -100 -10 24 -100
+2 24 10 20 -100 10 24 -100
+2 24 -6 24 16 -6 24 -96
+2 24 6 24 16 6 24 -96
+2 24 -6 24 16 -6 4 16
+2 24 6 24 16 6 4 16
+2 24 -6 24 -96 -6 20 -96
+2 24 6 24 -96 6 20 -96
+2 24 -6 20 -96 -6 20 -92
+2 24 6 20 -96 6 20 -92
+2 24 -6 4 16 -6 4 -19
+2 24 6 4 16 6 4 -19
+2 24 -6 4 -19 -6 20 -19
+2 24 6 4 -19 6 20 -19
+2 24 -6 20 -19 -6 20 -21
+2 24 6 20 -19 6 20 -21
+2 24 -6 4 -21 -6 20 -21
+2 24 6 4 -21 6 20 -21
+2 24 -6 4 -21 -6 10 -59
+2 24 6 4 -21 6 10 -59
+2 24 -6 10 -59 -6 20 -59
+2 24 6 10 -59 6 20 -59
+2 24 -6 20 -59 -6 20 -61
+2 24 6 20 -59 6 20 -61
+2 24 -6 10 -61 -6 20 -61
+2 24 6 10 -61 6 20 -61
+2 24 -6 10 -61 -6 20 -92
+2 24 6 10 -61 6 20 -92
+0 
+2 24 -10 0 20 10 0 20
+2 24 -10 24 20 10 24 20
+2 24 -10 20 -100 10 20 -100
+2 24 -10 24 -100 10 24 -100
+5 24 -10 0 -20 10 0 -20 0 2 -40 0 0 0
+5 24 -10 2 -40 10 2 -40 0 6 -60 0 0 -20
+5 24 -10 6 -60 10 6 -60 0 12 -80 0 2 -40
+5 24 -10 12 -80 10 12 -80 0 20 -100 0 6 -60
+2 24 -6 24 16 6 24 16
+2 24 -6 24 -96 6 24 -96
+2 24 -6 4 16 6 4 16
+2 24 -6 20 -96 6 20 -96
+2 24 -6 20 -92 6 20 -92
+2 24 -6 4 -19 6 4 -19
+2 24 -6 20 -19 6 20 -19
+2 24 -6 4 -21 6 4 -21
+2 24 -6 20 -21 6 20 -21
+2 24 -6 10 -59 6 10 -59
+2 24 -6 20 -59 6 20 -59
+2 24 -6 10 -61 6 10 -61
+2 24 -6 20 -61 6 20 -61
+
+0 FILE parts/3675.dat
+0 Slope Brick 33  3 x  3 Double Convex
+0 Name: 3675.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-01-31 [sbliss] Completed header; BFC'ed
+0 !HISTORY 2004-11-27 [guyvivan] Fixed underside studs
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-01-27 [jpouellet] Added underside ledge
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 10 8 -10 1 0 0 0 -4 0 0 0 1 p/stud4a.dat
+1 16 10 18 -30 1 0 0 0 -1.5 0 0 0 1 p/stud4a.dat
+1 16 30 18 -30 1 0 0 0 -1.5 0 0 0 1 p/stud4a.dat
+1 16 10 4 -10 -6 0 0 0 1 0 0 0 6 p/1-4edge.dat
+1 16 10 4 -10 -6 0 0 0 1 3 0 0 -6 p/3-8edge.dat
+1 16 10 4 -10 0 0 6 0 1 3 6 0 0 p/3-8edge.dat
+1 16 10 4 -10 -8 0 0 0 1 0 0 0 8 p/1-4edge.dat
+1 16 10 4 -10 -8 0 0 -0 1 4 0 0 -8 p/3-8edge.dat
+1 16 10 4 -10 0 0 8 0 1 4 8 0 0 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 10 7 -10 0 0 -6 0 -3 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 7 -10 6 0 0 0 -3 0 0 0 -6 p/1-8cyls.dat
+0 BFC INVERTNEXT
+1 16 10 7 -10 0 0 6 0 -3 0 -6 0 0 p/1-8cyls.dat
+0 BFC INVERTNEXT
+1 16 10 7 -10 6 0 0 0 -3 0 0 0 6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 4 -10 -6 0 0 0 3 0 0 0 6 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 7 -10 -6 0 0 0 1 0 0 0 -6 p/4-4cyli.dat
+1 16 10 8 -10 0 0 -8 0 -4 0 -8 0 0 p/1-4cyls.dat
+1 16 10 8 -10 8 0 0 0 -4 0 0 0 8 p/1-4cyls.dat
+1 16 10 8 -10 0 0 8 0 -4 0 -8 0 0 p/1-8cyls.dat
+1 16 10 8 -10 8 0 0 0 -4 0 0 0 -8 p/1-8cyls.dat
+1 16 10 4 -10 -8 0 0 0 4 0 0 0 8 p/1-4cyli.dat
+1 16 30 14 -30 -6 0 0 0 1 -3 0 0 6 p/1-8edge.dat
+1 16 30 14 -30 0 0 -6 0 1 -3 6 0 0 p/1-8edge.dat
+1 16 30 14 -30 -6 0 0 0 1 3 0 0 -6 p/3-8edge.dat
+1 16 30 14 -30 0 0 6 0 1 3 6 0 0 p/3-8edge.dat
+1 16 30 14 -30 -8 0 0 0 1 -4 0 0 8 p/1-8edge.dat
+1 16 30 14 -30 0 0 -8 0 1 -4 8 0 0 p/1-8edge.dat
+1 16 30 14 -30 -8 0 0 -0 1 4 0 0 -8 p/3-8edge.dat
+1 16 30 14 -30 0 0 8 0 1 4 8 0 0 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 30 17 -30 0 0 -6 0 -3 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 30 17 -30 6 0 0 0 -3 0 0 0 -6 p/1-8cyls.dat
+0 BFC INVERTNEXT
+1 16 30 14 -30 0 0 -6 0 -3 0 -6 0 0 p/1-8cyls2.dat
+0 BFC INVERTNEXT
+1 16 30 14 -30 6 0 0 0 -3 0 0 0 6 p/1-8cyls2.dat
+0 BFC INVERTNEXT
+1 16 30 17 -30 0 0 6 0 -3 0 -6 0 0 p/1-8cyls.dat
+0 BFC INVERTNEXT
+1 16 30 17 -30 6 0 0 0 -3 0 0 0 6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 30 14 -30 -6 0 0 0 3 0 0 0 6 p/1-4cyli.dat
+0 BFC INVERTNEXT
+1 16 30 17 -30 -6 0 0 0 1 0 0 0 -6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 17 -30 -6 0 0 0 1 0 0 0 -6 p/4-4cyli.dat
+1 16 30 18 -10 0 0 -1 0 -1.5 0 1 0 0 p/stud4a.dat
+0 BFC INVERTNEXT
+1 16 30 17 -10 0 0 6 0 1 0 -6 0 0 p/4-4cyli.dat
+1 16 30 14 -10 0 0 6 0 1 3 6 0 0 p/4-4edge.dat
+1 16 30 14 -10 0 0 8 0 1 4 8 0 0 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 30 17 -10 6 0 0 0 -3 0 0 0 6 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 30 17 -10 6 0 0 0 -3 0 0 0 -6 p/2-4cyls.dat
+1 16 30 18 -10 8 0 0 0 -4 0 0 0 8 p/2-4cyls.dat
+1 16 30 18 -10 8 0 0 0 -4 0 0 0 -8 p/2-4cyls.dat
+1 16 30 18 -30 0 0 -8 0 -4 0 -8 0 0 p/1-4cyls.dat
+1 16 30 18 -30 8 0 0 0 -4 0 0 0 8 p/1-4cyls.dat
+1 16 30 18 -30 0 0 8 0 -4 0 -8 0 0 p/1-8cyls.dat
+1 16 30 18 -30 8 0 0 0 -4 0 0 0 -8 p/1-8cyls.dat
+1 16 30 14 -30 0 0 -8 0 -4 0 -8 0 0 p/1-8cyls2.dat
+1 16 30 14 -30 8 0 0 0 -4 0 0 0 8 p/1-8cyls2.dat
+1 16 30 14 -30 -8 0 0 0 4 0 0 0 8 p/1-4cyli.dat
+1 16 10 14 -30 6 0 0 0 1 3 0 0 -6 p/4-4edge.dat
+1 16 10 14 -30 8 0 0 0 1 4 0 0 -8 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 10 17 -30 0 0 6 0 -3 0 -6 0 0 p/2-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 17 -30 0 0 -6 0 -3 0 -6 0 0 p/2-4cyls.dat
+1 16 10 18 -30 0 0 8 0 -4 0 -8 0 0 p/2-4cyls.dat
+1 16 10 18 -30 0 0 -8 0 -4 0 -8 0 0 p/2-4cyls.dat
+2 24 46 24 6 -6 24 6
+2 24 -6 24 6 -6 24 -46
+2 24 -6 24 -46 46 24 -46
+2 24 46 24 -46 46 24 6
+2 24 50 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -50
+2 24 -10 24 -50 50 24 -50
+2 24 50 24 -50 50 24 10
+2 24 46 20 -46 -6 20 -46
+2 24 46 20 6 46 20 -46
+2 24 50 20 -50 -10 20 -50
+2 24 50 20 10 50 20 -50
+2 24 10 4 -10 -6 4 -10
+2 24 -6 4 -10 -6 4 6
+2 24 -6 4 6 10 4 6
+2 24 10 4 6 10 4 -10
+2 24 10 0 -10 -10 0 -10
+2 24 -10 0 -10 -10 0 10
+2 24 -10 0 10 10 0 10
+2 24 10 0 10 10 0 -10
+2 24 46 20 -46 46 24 -46
+2 24 46 20 6 46 24 6
+2 24 -6 20 -46 -6 24 -46
+2 24 50 20 -50 50 24 -50
+2 24 50 20 10 50 24 10
+2 24 -10 20 -50 -10 24 -50
+2 24 10 4 -10 42 20 -42
+2 24 -6 4 -10 -6 20 -42
+2 24 -6 4 6 -6 24 6
+2 24 10 4 6 42 20 6
+2 24 10 0 -10 50 20 -50
+2 24 -10 0 -10 -10 20 -50
+2 24 -10 0 10 -10 24 10
+2 24 10 0 10 50 20 10
+4 16 50 24 10 46 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -46 -10 24 -50
+4 16 -10 24 -50 -6 24 -46 46 24 -46 50 24 -50
+4 16 50 24 -50 46 24 -46 46 24 6 50 24 10
+4 16 10 4 -10 -6 4 -10 -6 4 6 10 4 6
+4 16 -10 0 10 -10 0 -10 10 0 -10 10 0 10
+4 16 46 20 -46 46 20 6 46 24 6 46 24 -46
+4 16 -6 24 -46 -6 20 -46 46 20 -46 46 24 -46
+4 16 50 24 10 50 20 10 50 20 -50 50 24 -50
+4 16 50 20 -50 -10 20 -50 -10 24 -50 50 24 -50
+4 16 10 4 -10 42 20 -42 -6 20 -42 -6 4 -10
+4 16 -6 4 -10 -6 20 -42 -6 24 6 -6 4 6
+4 16 -6 20 -46 -6 24 -46 -6 24 6 -6 20 -42
+4 16 -6 4 6 -6 24 6 42 20 6 10 4 6
+4 16 42 20 6 -6 24 6 46 24 6 46 20 6
+4 16 10 4 6 42 20 6 42 20 -42 10 4 -10
+4 16 -10 20 -50 50 20 -50 10 0 -10 -10 0 -10
+3 16 -10 24 -50 -10 20 -50 -10 0 -10
+4 16 -10 24 10 -10 24 -50 -10 0 -10 -10 0 10
+4 16 50 24 10 -10 24 10 -10 0 10 10 0 10
+3 16 10 0 10 50 20 10 50 24 10
+4 16 50 20 -50 50 20 10 10 0 10 10 0 -10
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 
+4 16 -6 20 -42 42 20 -42 46 20 -46 -6 20 -46
+2 24 -6 20 -42 42 20 -42
+2 24 -6 20 -42 -6 20 -46
+4 16 42 20 6 46 20 6 46 20 -46 42 20 -42
+2 24 42 20 6 42 20 -42
+2 24 42 20 6 46 20 6
+0
+
+0 FILE p/2-4cyls.dat
+0 Cylinder Sloped 0.5
+0 Name: 2-4cyls.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-05-08 [OrionP] Made BFC Compliant
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0.0761 0.3827 0.9239 0 0.3827 1 0 0
+4 16 0.9239 0.0761 0.3827 0.7071 0.2929 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+4 16 0.7071 0.2929 0.7071 0.3827 0.6173 0.9239 0.3827 0 0.9239 0.7071 0 0.7071
+4 16 0.3827 0.6173 0.9239 0 1 1 0 0 1 0.3827 0 0.9239
+4 16 0 1 1 -0.3827 1.3827 0.9239 -0.3827 0 0.9239 0 0 1
+4 16 -0.3827 1.3827 0.9239 -0.7071 1.7071 0.7071 -0.7071 0 0.7071 -0.3827 0 0.9239
+4 16 -0.7071 1.7071 0.7071 -0.9239 1.9239 0.3827 -0.9239 0 0.3827 -0.7071 0 0.7071
+4 16 -0.9239 1.9239 0.3827 -1 2 0 -1 0 0 -0.9239 0 0.3827
+
+5 24 0.9239 0 0.3827 0.9239 0.0761 0.3827 0.7071 0 0.7071 1 0 0
+5 24 0.7071 0 0.7071 0.7071 0.2929 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+5 24 0.3827 0 0.9239 0.3827 0.6173 0.9239 0 0 1 0.7071 0 0.7071
+5 24 0 0 1 0 1 1 -0.3827 0 0.9239 0.3827 0 0.9239
+5 24 -0.3827 0 0.9239 -0.3827 1.3827 0.9239 -0.7071 0 0.7071 0 0 1
+5 24 -0.7071 0 0.7071 -0.7071 1.7071 0.7071 -0.9239 0 0.3827 -0.3827 0 0.9239
+5 24 -0.9239 0 0.3827 -0.9239 1.9239 0.3827 -1 0 0 -0.7071 0 0.7071
+5 24 -1 0 0 -1 2 0 -1 0 -1 -0.9239 0 0.3827
+
+0 FILE p/1-8edge.dat
+0 Circle 0.125
+0 Name: 1-8edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+
+0 FILE p/1-8cyls.dat
+0 Cylinder Sloped 0.125
+0 Name: 1-8cyls.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0.0761 0.3827 0.9239 0 0.3827 1 0 0
+4 16 0.9239 0.0761 0.3827 0.7071 0.2929 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+5 24 0.9239 0 0.3827 0.9239 0.0761 0.3827 0.7071 0 0.7071 1 0 0
+5 24 0.7071 0 0.7071 0.7071 0.2929 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+
+0 FILE parts/44301.dat
+0 Hinge Plate  1 x  2 Locking with Single Finger on End Vertical
+0 Name: 44301.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+
+4 16 20 8 10 16 8 6 -16 8 6 -19 8 10
+4 16 -19 8 10 -16 8 6 -16 8 -6 -19 8 -10
+4 16 -19 8 -10 -16 8 -6 16 8 -6 20 8 -10
+4 16 20 8 -10 16 8 -6 16 8 6 20 8 10
+
+2 24 20 0 10 -20 0 10
+2 24 -20 0 10 -20 0 -10
+2 24 -20 0 -10 20 0 -10
+2 24 20 0 -10 20 0 10
+2 24 20 8 10 -19 8 10
+2 24 -20 7 10 -20 7 -10
+2 24 -19 8 -10 20 8 -10
+2 24 20 8 -10 20 8 -4
+2 24 20 8 4 20 8 10
+2 24 20 8 10 20 0 10
+2 24 -20 7 10 -20 0 10
+2 24 20 8 -10 20 0 -10
+2 24 -20 7 -10 -20 0 -10
+2 24 -19 8 10 -19 7 10
+2 24 -19 7 10 -20 7 10
+2 24 -19 8 -10 -19 7 -10
+2 24 -19 7 -10 -20 7 -10
+2 24 -19 8 10 -19 8 -10
+2 24 -19 7 10 -19 7 -10
+
+4 16 -20 0 10 -19 0 10 -19 7 10 -20 7 10
+4 16 -19 7 -10 -19 0 -10 -20 0 -10 -20 7 -10
+4 16 -19 8 10 -19 8 -10 -19 7 -10 -19 7 10
+4 16 -19 7 10 -19 7 -10 -20 7 -10 -20 7 10
+4 16 -20 0 -10 20 0 -10 20 0 10 -20 0 10
+4 16 20 0 10 20 8 10 -19 8 10 -19 0 10
+4 16 -20 0 10 -20 7 10 -20 7 -10 -20 0 -10
+4 16 -19 0 -10 -19 8 -10 20 8 -10 20 0 -10
+4 16 20 0 -10 20 8 -10 20 8 -9 20 0 -9
+4 16 20 0 9 20 8 9 20 8 10 20 0 10
+
+4 16 20 5 -4 20 5 -9 20 8 -9 20 8 -4
+4 16 20 8 9 20 5 9 20 5 4 20 8 4
+
+1 16 20 2 0 0 0 -1 0 1 0 1 0 0 p/clh6.dat
+0
+
+0 FILE p/clh6.dat
+0 Click Lock Hinge Single Finger for Plate Ends
+0 Name: clh6.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 !HELP For plates place 2 LDu below top surface
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW, minor improvements
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 9 -2 0 -9 -2 0
+1 16 3.48 5.48 -14.48 -0.52 0 0 0 0.52 0 0 0 -0.52 p/1-4cyls2.dat
+1 16 3.48 5.48 -14.48 0 0.52 0 -0.52 0 0 0 0 -0.52 p/1-4cyls2.dat
+1 16 3.48 5.48 -14.48 0.52 1 0 0.52 0 0 0 0 -0.52 p/1-4edge.dat
+1 16 3.48 5.48 -14.48 0 -6.96 0 0 0 0.52 -0.52 0 0 p/1-4cyli.dat
+4 16 -4 6 -14.48 -4 6 0 4 6 0 4 6 -14.48
+2 24 4 6 -14.48 4 6 0
+2 24 -4 6 -14.48 -4 6 0
+1 16 -3.48 5.48 -14.48 0.52 0 0 0 0.52 0 0 0 -0.52 p/1-4cyls2.dat
+1 16 -3.48 5.48 -14.48 0 -0.52 0 -0.52 0 0 0 0 -0.52 p/1-4cyls2.dat
+1 16 -3.48 5.48 -14.48 -0.52 1 0 0.52 0 0 0 0 -0.52 p/1-4edge.dat
+2 24 3.48 -7.38 -5.38 -3.48 -7.38 -5.38
+4 16 -3.48 -6 -14.48 3.48 -6 -14.48 3.48 -7.38 -5.38 -3.48 -7.38 -5.38
+4 16 -4 -2 0 -4 -6.928 -4.928 4 -6.928 -4.928 4 -2 0
+4 16 -3.48 -6.928 -4.928 -3.48 -7.38 -5.38 3.48 -7.38 -5.38 3.48 -6.928 -4.928
+2 24 4 -3.098 -1.098 4 -6.928 -4.928
+2 24 -4 -3.098 -1.098 -4 -6.928 -4.928
+1 16 3.48 -6.928 -4.928 0.52 0 0 0 0 -0.458 0 -1 -0.452 p/1-4disc.dat
+1 16 3.48 -6.86 -5.38 0 0 0.52 -0.52 -0.068 0 0 0.452 0 p/1-4cyls.dat
+1 16 3.48 -6.928 -4.928 0.52 0 0 0 0 -0.458 0 1 -0.452 p/1-4edge.dat
+1 16 3.48 -6.86 -5.38 0.52 0 0 0 1.38 -0.52 0 -9.1 0 p/1-4cyli.dat
+1 16 3.48 -5.48 -14.48 0.52 0 0 0 0 -0.52 0 -0.52 0 p/1-8sphe.dat
+1 16 3.48 -5.48 -14.48 0 -6.96 0 0 0 -0.52 -0.52 0 0 p/1-4cyli.dat
+1 16 -3.48 -5.48 -14.48 -0.52 0 0 0 0 -0.52 0 -0.52 0 p/1-8sphe.dat
+1 16 -3.48 -6.86 -5.38 -0.52 0 0 0 1.38 -0.52 0 -9.1 0 p/1-4cyli.dat
+1 16 -3.48 -6.928 -4.928 -0.52 0 0 0 0 -0.458 0 1 -0.452 p/1-4edge.dat
+1 16 -3.48 -6.86 -5.38 0 0 -0.52 -0.52 -0.068 0 0 0.452 0 p/1-4cyls.dat
+1 16 -3.48 -6.928 -4.928 -0.52 0 0 0 0 -0.458 0 -1 -0.452 p/1-4disc.dat
+1 16 -2 0 -10 0 1 0 0 0 -2.25 2.25 0 0 p/4-4disc.dat
+1 16 -2 0 -10 0 1 0 0 0 -2.25 2.25 0 0 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 -2.25 0 -10 0 0.25 0 0 0 -2.25 2.25 0 0 p/4-4cyli.dat
+1 16 -2.25 0 -10 0 1 0 0 0 -2.25 2.25 0 0 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 -3 0 -10 0 0.75 0 0 0 -0.75 0.75 0 0 p/4-4con3.dat
+0 BFC INVERTNEXT
+1 16 -4 0 -10 0 1 0 0.707 0 0.707 -0.707 0 0.707 p/1-4con3.dat
+0 BFC INVERTNEXT
+1 16 -4 0 -10 0 1 0 0.707 0 -0.707 0.707 0 0.707 p/1-4con3.dat
+0 BFC INVERTNEXT
+1 16 -4 0 -10 0 1 0 -0.707 0 -0.707 0.707 0 -0.707 p/1-4con3.dat
+1 16 -4 0 -10 0 1 0 2.828 0 2.828 -2.828 0 2.828 p/3-4edge.dat
+1 16 -4 0 -10 0 1 0 2.8284 0 2.8284 -2.8284 0 2.8284 p/1-8ndis.dat
+1 16 -4 0 -10 0 1 0 4 0 0 0 0 4 p/2-4ndis.dat
+1 16 -4 0 -10 0 1 0 -2.8284 0 -2.8284 -2.8284 0 2.8284 p/1-8ndis.dat
+1 16 2 0 -10 0 -1 0 0 0 2.25 2.25 0 0 p/4-4disc.dat
+1 16 2 0 -10 0 -1 0 0 0 2.25 2.25 0 0 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 2.25 0 -10 0 -0.25 0 0 0 2.25 2.25 0 0 p/4-4cyli.dat
+1 16 2.25 0 -10 0 -1 0 0 0 2.25 2.25 0 0 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 3 0 -10 0 -0.75 0 0 0 0.75 0.75 0 0 p/4-4con3.dat
+0 BFC INVERTNEXT
+1 16 4 0 -10 0 -1 0 -0.707 0 -0.707 -0.707 0 0.707 p/1-4con3.dat
+0 BFC INVERTNEXT
+1 16 4 0 -10 0 -1 0 -0.707 0 0.707 0.707 0 0.707 p/1-4con3.dat
+0 BFC INVERTNEXT
+1 16 4 0 -10 0 -1 0 0.707 0 0.707 0.707 0 -0.707 p/1-4con3.dat
+1 16 4 0 -10 0 -1 0 -2.828 0 -2.828 -2.828 0 2.828 p/3-4edge.dat
+1 16 4 0 -10 0 -1 0 2.8284 0 2.8284 -2.8284 0 2.8284 p/1-8ndis.dat
+1 16 4 0 -10 0 -1 0 -4 0 0 0 0 4 p/2-4ndis.dat
+1 16 4 0 -10 0 -1 0 -2.8284 0 -2.8284 -2.8284 0 2.8284 p/1-8ndis.dat
+1 16 3.48 -5.48 -14.48 0.52 0 0 0 1.48 0 0 -0.16 -0.52 p/1-4cyli.dat
+1 16 3.48 -4 -14.64 0.52 0 0 0 1 0 0 0 -0.52 p/1-4edge.dat
+1 16 3.48 -4 -14.64 0.52 0 0 0 -1 0 0 0 -0.52 p/1-4disc.dat
+1 16 3.48 5.48 -14.48 0.52 0 0 0 -1.48 0 0 -0.16 -0.52 p/1-4cyli.dat
+1 16 3.48 4 -14.64 0.52 0 0 0 1 0 0 0 -0.52 p/1-4edge.dat
+1 16 3.48 4 -14.64 0.52 0 0 0 1 0 0 0 -0.52 p/1-4disc.dat
+1 16 -3.48 5.48 -14.48 -0.52 0 0 0 -1.48 0 0 -0.16 -0.52 p/1-4cyli.dat
+1 16 -3.48 4 -14.64 -0.52 0 0 0 1 0 0 0 -0.52 p/1-4edge.dat
+1 16 -3.48 4 -14.64 -0.52 0 0 0 1 0 0 0 -0.52 p/1-4disc.dat
+1 16 -3.48 -5.48 -14.48 -0.52 0 0 0 1.48 0 0 -0.16 -0.52 p/1-4cyli.dat
+1 16 -3.48 -4 -14.64 -0.52 0 0 0 1 0 0 0 -0.52 p/1-4edge.dat
+1 16 -3.48 -4 -14.64 -0.52 0 0 0 -1 0 0 0 -0.52 p/1-4disc.dat
+4 16 -3.48 -5.48 -15 -3.48 -4 -15.16 3.48 -4 -15.16 3.48 -5.48 -15
+2 24 3.48 -4 -15.16 3.075 -4 -15.16
+2 24 -3.48 -4 -15.16 -3.075 -4 -15.16
+4 16 -3.075 -4 -15.16 -3 -2.26 -15.35 3 -2.26 -15.35 3.075 -4 -15.16
+2 24 3.075 -4 -15.16 3 -2.26 -15.35
+5 24 3 -2.26 -15.35 -3 -2.26 -15.35 0 0 -15.35 0 -5.48 -15
+2 24 -3.075 -4 -15.16 -3 -2.26 -15.35
+4 16 -3 -2.26 -15.35 -3 2.26 -15.35 3 2.26 -15.35 3 -2.26 -15.35
+2 24 3 2.26 -15.35 3 -2.26 -15.35
+5 24 -3 2.26 -15.35 3 2.26 -15.35 0 0 -15.35 0 5.48 -15
+2 24 -3 2.26 -15.35 -3 -2.26 -15.35
+4 16 3.075 4 -15.16 3 2.26 -15.35 -3 2.26 -15.35 -3.075 4 -15.16
+2 24 3.075 4 -15.16 3 2.26 -15.35
+2 24 -3.075 4 -15.16 -3 2.26 -15.35
+4 16 3.48 5.48 -15 3.48 4 -15.16 -3.48 4 -15.16 -3.48 5.48 -15
+2 24 3.48 4 -15.16 3.075 4 -15.16
+2 24 -3.48 4 -15.16 -3.075 4 -15.16
+4 16 4 2.828 -12.828 3 2.121 -12.121 3 1.148 -12.772 3.752 1.446 -13.45
+4 16 3.752 1.446 -13.45 3 1.148 -12.772 3 0 -13 3.67 0 -13.66
+4 16 3.67 0 -13.66 3 0 -13 3 -1.148 -12.772 3.752 -1.446 -13.45
+4 16 3.752 -1.446 -13.45 3 -1.148 -12.772 3 -2.121 -12.121 4 -2.828 -12.828
+4 16 3 0 -15.35 3.67 0 -13.66 3.752 -1.446 -13.45 3 -2.26 -15.35
+2 24 3.752 -1.446 -13.45 3.67 0 -13.67
+4 16 4 -2.828 -12.828 3.075 -4 -15.16 3 -2.26 -15.35 3.752 -1.446 -13.45
+2 24 4 -2.828 -12.828 3.752 -1.446 -13.45
+3 16 4 -2.828 -12.828 4 -4 -12.828 3.075 -4 -15.16
+2 24 4 -2.828 -12.828 4 -4 -12.828
+2 24 3.075 -4 -15.16 4 -4 -12.828
+4 16 3.281 -4 -14.64 3.48 -4 -14.64 3.48 -4 -15.16 3.075 -4 -15.16
+3 16 4 -4 -12.828 4 -4 -14.64 3.281 -4 -14.64
+2 24 4 -4 -12.828 4 -4 -14.64
+4 16 4 -4 -12.828 4 -5.73 -12.828 4 -5.48 -14.48 4 -4 -14.64
+4 16 4 -5.73 -12.828 4 -2.828 -12.828 4 -5.65 -10 4 -6.159 -10
+4 16 4 -4 -6 4 4 -6 4 6 0 4 -2 0
+2 24 4 -2 0 4 6 0
+4 16 4 -6.159 -10 4 -4 -10 4 -4 -6 4 -6.928 -4.928
+4 16 4 -6.928 -4.928 4 -4 -6 4 -2.742 -2.227 4 -3.098 -1.098
+4 16 4 6 -10 4 6 0 4 4 -6 4 4 -10
+4 16 4 2.828 -12.828 4 6 -12.828 4 6 -10 4 5.65 -10
+2 24 4 2.828 -12.828 4 4 -12.828
+4 16 4 6 -12.828 4 4 -12.828 4 4 -14.64 4 6 -14.48
+2 24 3.075 4 -15.16 4 4 -12.828
+3 16 4 4 -12.828 3.281 4 -14.64 4 4 -14.64
+4 16 3.48 4 -14.64 3.281 4 -14.64 3.075 4 -15.16 3.48 4 -15.16
+2 24 4 4 -12.828 4 4 -14.64
+3 16 4 4 -12.828 4 2.828 -12.828 3.075 4 -15.16
+4 16 3.075 4 -15.16 4 2.828 -12.828 3.752 1.446 -13.45 3 2.26 -15.35
+2 24 3.752 1.446 -13.45 4 2.828 -12.828
+4 16 3.67 0 -13.66 3 0 -15.35 3 2.26 -15.35 3.752 1.446 -13.45
+2 24 3.752 1.446 -13.45 3.67 0 -13.67
+4 16 -4 -2.828 -12.828 -3 -2.121 -12.121 -3 -1.148 -12.772 -3.752 -1.446 -13.45
+4 16 -3.752 -1.446 -13.45 -3 -1.148 -12.772 -3 0 -13 -3.67 0 -13.66
+4 16 -3.67 0 -13.66 -3 0 -13 -3 1.148 -12.772 -3.752 1.446 -13.45
+4 16 -3.752 1.446 -13.45 -3 1.148 -12.772 -3 2.121 -12.121 -4 2.828 -12.828
+4 16 -3 0 -15.35 -3.67 0 -13.66 -3.752 1.446 -13.45 -3 2.26 -15.35
+2 24 -3.752 1.446 -13.45 -3.67 0 -13.67
+4 16 -4 2.828 -12.828 -3.075 4 -15.16 -3 2.26 -15.35 -3.752 1.446 -13.45
+2 24 -4 2.828 -12.828 -3.752 1.446 -13.45
+3 16 -4 2.828 -12.828 -4 4 -12.828 -3.075 4 -15.16
+2 24 -4 2.828 -12.828 -4 4 -12.828
+2 24 -3.075 4 -15.16 -4 4 -12.828
+4 16 -3.281 4 -14.64 -3.48 4 -14.64 -3.48 4 -15.16 -3.075 4 -15.16
+3 16 -4 4 -12.828 -4 4 -14.64 -3.281 4 -14.64
+2 24 -4 4 -12.828 -4 4 -14.64
+4 16 -4 4 -12.828 -4 5.73 -12.828 -4 5.48 -14.48 -4 4 -14.64
+4 16 -4 5.73 -12.828 -4 6 -12.828 -4 6 -14.48 -4 5.48 -14.48
+4 16 -4 6 -12.828 -4 2.828 -12.828 -4 5.65 -10 -4 6 -10
+4 16 -4 6 0 -4 6 -10 -4 4 -10 -4 4 -6
+4 16 -4 -4 -6 -4 -2 0 -4 6 0 -4 4 -6
+2 24 -4 -2 0 -4 6 0
+4 16 -4 -6.159 -10 -4 -6.928 -4.928 -4 -4 -6 -4 -4 -10
+4 16 -4 -6.928 -4.928 -4 -3.098 -1.098 -4 -2.742 -2.227 -4 -4 -6
+4 16 -4 -2.828 -12.828 -4 -5.73 -12.828 -4 -6.159 -10 -4 -5.65 -10
+2 24 -4 -2.828 -12.828 -4 -4 -12.828
+4 16 -4 -5.73 -12.828 -4 -4 -12.828 -4 -4 -14.64 -4 -5.48 -14.48
+2 24 -3.075 -4 -15.16 -4 -4 -12.828
+3 16 -4 -4 -12.828 -3.281 -4 -14.64 -4 -4 -14.64
+4 16 -3.48 -4 -14.64 -3.281 -4 -14.64 -3.075 -4 -15.16 -3.48 -4 -15.16
+2 24 -4 -4 -12.828 -4 -4 -14.64
+3 16 -4 -4 -12.828 -4 -2.828 -12.828 -3.075 -4 -15.16
+4 16 -3.075 -4 -15.16 -4 -2.828 -12.828 -3.752 -1.446 -13.45 -3 -2.26 -15.35
+2 24 -3.752 -1.446 -13.45 -4 -2.828 -12.828
+4 16 -3.67 0 -13.66 -3 0 -15.35 -3 -2.26 -15.35 -3.752 -1.446 -13.45
+2 24 -3.752 -1.446 -13.45 -3.67 0 -13.67
+1 16 9 0 -3.25 0 -1 0 0.25 0 0 0 0 0.25 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 9 0 -3.25 0 -5 0 0.25 0 0 0 0 0.25 p/2-4cyli.dat
+1 16 4 0 -3.25 0 -1 0 0.25 0 0 0 0 0.25 p/2-4edge.dat
+1 16 9 0 -3.25 0 -1 0 0.25 0 0 0 0 0.25 p/2-4ndis.dat
+1 16 9 1.133 -4.359 0 -1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 9 1.133 -4.359 0 -5 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4cyli.dat
+1 16 4 1.133 -4.359 0 -1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 9 1.133 -4.359 0 -1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4disc.dat
+1 16 9 -1.133 -4.359 0 -1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 9 -1.133 -4.359 0 -5 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4cyli.dat
+1 16 4 -1.133 -4.359 0 -1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 9 -1.133 -4.359 0 -1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4disc.dat
+1 16 6.5 2.73 -2.268 2.5 0 0 0 -1 0.714 0 0 2.267 p/rect3.dat
+2 24 4 -3.098 -1.098 9 -3.098 -1.098
+2 24 4 -3.098 -1.098 4 -2.016 -4.535
+2 24 9 -3.098 -1.098 9 -2.016 -4.535
+4 16 9 -3.098 -1.098 4 -3.098 -1.098 4 -2.016 -4.535 9 -2.016 -4.535
+4 16 9 -2 0 4 -2 0 4 -3.098 -1.098 9 -3.098 -1.098
+2 24 9 -2 0 9 -3.098 -1.098
+4 16 9 0.25 -3 9 0.25 -4.183 9 2.016 -4.535 9 2.5 -3
+4 16 9 -0.25 -4.183 9 -0.25 -3 9 -2.5 -3 9 -2.016 -4.535
+1 16 6.5 0.25 -3.717 0 0 2.5 0 1 0 0.467 0 0 p/rect2p.dat
+1 16 6.5 -0.25 -3.717 0 0 2.5 0 -1 0 0.467 0 0 p/rect2p.dat
+3 16 9 -2 0 9 -3.098 -1.098 9 -2.5 -3
+4 16 9 3.444 0 9 -2 0 9 -2.5 -3 9 2.5 -3
+2 24 9 -2 0 9 3.444 0
+1 16 -9 0 -3.25 0 1 0 -0.25 0 0 0 0 0.25 p/2-4edge.dat
+0 BFC INVERTNEXT
+1 16 -9 0 -3.25 0 5 0 -0.25 0 0 0 0 0.25 p/2-4cyli.dat
+1 16 -4 0 -3.25 0 1 0 -0.25 0 0 0 0 0.25 p/2-4edge.dat
+1 16 -9 0 -3.25 0 1 0 -0.25 0 0 0 0 0.25 p/2-4ndis.dat
+1 16 -9 -1.133 -4.359 0 1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 -9 -1.133 -4.359 0 5 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4cyli.dat
+1 16 -4 -1.133 -4.359 0 1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 -9 -1.133 -4.359 0 1 0 -0.883 0 0.117 -0.176 0 -0.589 p/2-4disc.dat
+1 16 -9 1.133 -4.359 0 1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 -9 1.133 -4.359 0 5 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4cyli.dat
+1 16 -4 1.133 -4.359 0 1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4edge.dat
+1 16 -9 1.133 -4.359 0 1 0 0.883 0 -0.117 -0.176 0 -0.589 p/2-4disc.dat
+2 24 -4 -3.098 -1.098 -9 -3.098 -1.098
+2 24 -4 -3.098 -1.098 -4 -2.016 -4.535
+2 24 -9 -3.098 -1.098 -9 -2.016 -4.535
+4 16 -9 -3.098 -1.098 -9 -2.016 -4.535 -4 -2.016 -4.535 -4 -3.098 -1.098
+4 16 -9 -2 0 -9 -3.098 -1.098 -4 -3.098 -1.098 -4 -2 0
+2 24 -9 -2 0 -9 -3.098 -1.098
+1 16 -6.5 2.73 -2.268 2.5 0 0 0 -1 0.714 0 0 2.267 p/rect3.dat
+4 16 -9 -0.25 -3 -9 -0.25 -4.183 -9 -2.016 -4.535 -9 -2.5 -3
+4 16 -9 0.25 -4.183 -9 0.25 -3 -9 2.5 -3 -9 2.016 -4.535
+1 16 -6.5 -0.25 -3.717 0 0 -2.5 0 -1 0 0.467 0 0 p/rect2p.dat
+1 16 -6.5 0.25 -3.717 0 0 -2.5 0 1 0 0.467 0 0 p/rect2p.dat
+3 16 -9 -2.5 -3 -9 -3.098 -1.098 -9 -2 0
+4 16 -9 3.444 0 -9 2.5 -3 -9 -2.5 -3 -9 -2 0
+5 24 3 1.148 -12.772 3.752 1.446 -13.45 4 2.828 -12.828 3 0 -13
+5 24 3 0 -13 3.67 0 -13.66 3.752 1.446 -13.45 3 -1.148 -12.772
+5 24 3 -1.148 -12.772 3.752 -1.446 -13.45 3.67 0 -13.66 3 -2.121 -12.121
+5 24 -3 -1.148 -12.772 -3.752 -1.446 -13.45 -4 -2.828 -12.828 -3 0 -13
+5 24 -3 0 -13 -3.67 0 -13.66 -3.752 -1.446 -13.45 -3 1.148 -12.772
+5 24 -3 1.148 -12.772 -3.752 1.446 -13.45 -3.67 0 -13.66 -3 2.121 -12.121
+
+0 FILE p/1-8ndis.dat
+0 Disc Negative 0.125
+0 Name: 1-8ndis.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0 0.3827 1 0 0 1 0 1
+3 16 0.7071 0 0.7071 0.9239 0 0.3827 1 0 1
+
+0 FILE p/1-4con3.dat
+0 Cone  3 x 0.25
+0 Name: 1-4con3.dat
+0 Author: Steve Bliss [sbliss]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
+0 !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
+0 !HISTORY 2002-12-11 [cwdee] Standardised title and made BFC compliant
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Recreated CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 3 1 0 2.7717 1 1.1481 3.6956 0 1.5308 4 0 0
+4 16 2.7717 1 1.1481 2.1213 1 2.1213 2.8284 0 2.8284 3.6956 0 1.5308
+4 16 2.1213 1 2.1213 1.1481 1 2.7717 1.5308 0 3.6956 2.8284 0 2.8284
+4 16 1.1481 1 2.7717 0 1 3 0 0 4 1.5308 0 3.6956
+0 // conditional lines
+5 24 3 1 0 4 0 0 3 1 -1.2426 2.7716 1 1.1481
+5 24 2.7717 1 1.1481 3.6956 0 1.5308 3 1 0 2.1213 1 2.1213
+5 24 2.1213 1 2.1213 2.8284 0 2.8284 2.7716 1 1.1481 1.1481 1 2.7716
+5 24 1.1481 1 2.7717 1.5308 0 3.6956 2.1213 1 2.1213 0 1 3
+5 24 0 1 3 0 0 4 1.1481 1 2.7716 -1.2426 1 3
+0 // Build by Primitive Generator 2
+
+
+0 FILE p/4-4con3.dat
+0 Cone  3 x 1.0
+0 Name: 4-4con3.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 3 1 0 4 0 0 2.7717 1 1.1481 2.7717 1 -1.1481
+5 24 2.7717 1 1.1481 3.6956 0 1.5308 2.1213 1 2.1213 3 1 0
+5 24 2.1213 1 2.1213 2.8284 0 2.8284 1.1481 1 2.7717 2.7717 1 1.1481
+5 24 1.1481 1 2.7717 1.5308 0 3.6956 0 1 3 2.1213 1 2.1213
+5 24 0 1 3 0 0 4 -1.1481 1 2.7717 1.1481 1 2.7717
+5 24 -1.1481 1 2.7717 -1.5308 0 3.6956 -2.1213 1 2.1213 0 1 3
+5 24 -2.1213 1 2.1213 -2.8284 0 2.8284 -2.7717 1 1.1481 -1.1481 1 2.7717
+5 24 -2.7717 1 1.1481 -3.6956 0 1.5308 -3 1 0 -2.1213 1 2.1213
+5 24 -3 1 0 -4 0 0 -2.7717 1 -1.1481 -2.7717 1 1.1481
+5 24 -2.7717 1 -1.1481 -3.6956 0 -1.5308 -2.1213 1 -2.1213 -3 1 0
+5 24 -2.1213 1 -2.1213 -2.8284 0 -2.8284 -1.1481 1 -2.7717 -2.7717 1 -1.1481
+5 24 -1.1481 1 -2.7717 -1.5308 0 -3.6956 0 1 -3 -2.1213 1 -2.1213
+5 24 0 1 -3 0 0 -4 1.1481 1 -2.7717 -1.1481 1 -2.7717
+5 24 1.1481 1 -2.7717 1.5308 0 -3.6956 2.1213 1 -2.1213 0 1 -3
+5 24 2.1213 1 -2.1213 2.8284 0 -2.8284 2.7717 1 -1.1481 1.1481 1 -2.7717
+5 24 2.7717 1 -1.1481 3.6956 0 -1.5308 3 1 0 2.1213 1 -2.1213
+
+4 16 3 1 0 2.7717 1 1.1481 3.6956 0 1.5308 4 0 0
+4 16 2.7717 1 1.1481 2.1213 1 2.1213 2.8284 0 2.8284 3.6956 0 1.5308
+4 16 2.1213 1 2.1213 1.1481 1 2.7717 1.5308 0 3.6956 2.8284 0 2.8284
+4 16 1.1481 1 2.7717 0 1 3 0 0 4 1.5308 0 3.6956
+4 16 0 1 3 -1.1481 1 2.7717 -1.5308 0 3.6956 0 0 4
+4 16 -1.1481 1 2.7717 -2.1213 1 2.1213 -2.8284 0 2.8284 -1.5308 0 3.6956
+4 16 -2.1213 1 2.1213 -2.7717 1 1.1481 -3.6956 0 1.5308 -2.8284 0 2.8284
+4 16 -2.7717 1 1.1481 -3 1 0 -4 0 0 -3.6956 0 1.5308
+4 16 -3 1 0 -2.7717 1 -1.1481 -3.6956 0 -1.5308 -4 0 0
+4 16 -2.7717 1 -1.1481 -2.1213 1 -2.1213 -2.8284 0 -2.8284 -3.6956 0 -1.5308
+4 16 -2.1213 1 -2.1213 -1.1481 1 -2.7717 -1.5308 0 -3.6956 -2.8284 0 -2.8284
+4 16 -1.1481 1 -2.7717 0 1 -3 0 0 -4 -1.5308 0 -3.6956
+4 16 0 1 -3 1.1481 1 -2.7717 1.5308 0 -3.6956 0 0 -4
+4 16 1.1481 1 -2.7717 2.1213 1 -2.1213 2.8284 0 -2.8284 1.5308 0 -3.6956
+4 16 2.1213 1 -2.1213 2.7717 1 -1.1481 3.6956 0 -1.5308 2.8284 0 -2.8284
+4 16 2.7717 1 -1.1481 3 1 0 4 0 0 3.6956 0 -1.5308
+
+0
+
+
+0 FILE p/1-8sphe.dat
+0 Sphere 0.125
+0 Name: 1-8sphe.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-08-01 {Axel Poque} fixes to resolve L3P error messages.
+0 !HISTORY 2000-08-01 {Manfred Moolhuysen} fixes to resolve L3P error messages.
+0 !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
+0 !HISTORY 2002-03-28 [hafhead] Made BFC compliant
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-09-12 [MagFors] Changed winding, removed duplicated cond-line, optimized filesize
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+0 !HISTORY 2012-07-01 [tcobbs] Replaced with geometry from LDView
+0 !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
+
+3 16 1 0 0 0.9239 0.3827 0 0.9239 0 0.3827
+3 16 0.9239 0.3827 0 0.7836 0.4393 0.4393 0.9239 0 0.3827
+3 16 0.9239 0 0.3827 0.7836 0.4393 0.4393 0.7071 0 0.7071
+3 16 0.7836 0.4393 0.4393 0.4393 0.4393 0.7836 0.7071 0 0.7071
+3 16 0.7071 0 0.7071 0.4393 0.4393 0.7836 0.3827 0 0.9239
+3 16 0.4393 0.4393 0.7836 0 0.3827 0.9239 0.3827 0 0.9239
+3 16 0.3827 0 0.9239 0 0.3827 0.9239 0 0 1
+3 16 0.9239 0.3827 0 0.7071 0.7071 0 0.7836 0.4393 0.4393
+3 16 0.7071 0.7071 0 0.4393 0.7836 0.4393 0.7836 0.4393 0.4393
+3 16 0.7836 0.4393 0.4393 0.4393 0.7836 0.4393 0.4393 0.4393 0.7836
+3 16 0.4393 0.7836 0.4393 0 0.7071 0.7071 0.4393 0.4393 0.7836
+3 16 0.4393 0.4393 0.7836 0 0.7071 0.7071 0 0.3827 0.9239
+3 16 0.7071 0.7071 0 0.3827 0.9239 0 0.4393 0.7836 0.4393
+3 16 0.3827 0.9239 0 0 0.9239 0.3827 0.4393 0.7836 0.4393
+3 16 0.4393 0.7836 0.4393 0 0.9239 0.3827 0 0.7071 0.7071
+3 16 0.3827 0.9239 0 0 1 0 0 0.9239 0.3827
+
+5 24 1 0 0 0.9239 0.3827 0 1 0 -0.1 0.9239 0 0.3827
+5 24 0.9239 0.3827 0 0.9239 0 0.3827 1 0 0 0.7836 0.4393 0.4393
+5 24 1 0 0 0.9239 0 0.3827 0.9239 0.3827 0 1 -0.1 0
+5 24 0.9239 0 0.3827 0.7836 0.4393 0.4393 0.9239 0.3827 0 0.7071 0 0.7071
+5 24 0.7836 0.4393 0.4393 0.7071 0 0.7071 0.9239 0 0.3827 0.4393 0.4393 0.7836
+5 24 0.9239 0 0.3827 0.7071 0 0.7071 0.7836 0.4393 0.4393 0.9239 -0.1 0.3827
+5 24 0.7071 0 0.7071 0.4393 0.4393 0.7836 0.7836 0.4393 0.4393 0.3827 0 0.9239
+5 24 0.4393 0.4393 0.7836 0.3827 0 0.9239 0.7071 0 0.7071 0 0.3827 0.9239
+5 24 0.7071 0 0.7071 0.3827 0 0.9239 0.4393 0.4393 0.7836 0.7071 -0.1 0.7071
+5 24 0.3827 0 0.9239 0 0.3827 0.9239 0.4393 0.4393 0.7836 0 0 1
+5 24 0 0.3827 0.9239 0 0 1 0.3827 0 0.9239 -0.1 0.3827 0.9239
+5 24 0.3827 0 0.9239 0 0 1 0 0.3827 0.9239 0.3827 -0.1 0.9239
+5 24 0.9239 0.3827 0 0.7071 0.7071 0 0.9239 0.3827 -0.1 0.7836 0.4393 0.4393
+5 24 0.7071 0.7071 0 0.7836 0.4393 0.4393 0.9239 0.3827 0 0.4393 0.7836 0.4393
+5 24 0.9239 0.3827 0 0.7836 0.4393 0.4393 0.7071 0.7071 0 0.9239 0 0.3827
+5 24 0.7836 0.4393 0.4393 0.4393 0.7836 0.4393 0.7071 0.7071 0 0.4393 0.4393 0.7836
+5 24 0.4393 0.7836 0.4393 0.4393 0.4393 0.7836 0.7836 0.4393 0.4393 0 0.7071 0.7071
+5 24 0.7836 0.4393 0.4393 0.4393 0.4393 0.7836 0.4393 0.7836 0.4393 0.7071 0 0.7071
+5 24 0.4393 0.4393 0.7836 0 0.7071 0.7071 0.4393 0.7836 0.4393 0 0.3827 0.9239
+5 24 0 0.7071 0.7071 0 0.3827 0.9239 0.4393 0.4393 0.7836 -0.1 0.7071 0.7071
+5 24 0.4393 0.4393 0.7836 0 0.3827 0.9239 0 0.7071 0.7071 0.3827 0 0.9239
+5 24 0.7071 0.7071 0 0.3827 0.9239 0 0.7071 0.7071 -0.1 0.4393 0.7836 0.4393
+5 24 0.3827 0.9239 0 0.4393 0.7836 0.4393 0.7071 0.7071 0 0 0.9239 0.3827
+5 24 0.7071 0.7071 0 0.4393 0.7836 0.4393 0.3827 0.9239 0 0.7836 0.4393 0.4393
+5 24 0.4393 0.7836 0.4393 0 0.9239 0.3827 0.3827 0.9239 0 0 0.7071 0.7071
+5 24 0 0.9239 0.3827 0 0.7071 0.7071 0.4393 0.7836 0.4393 -0.1 0.9239 0.3827
+5 24 0.4393 0.7836 0.4393 0 0.7071 0.7071 0 0.9239 0.3827 0.4393 0.4393 0.7836
+5 24 0.3827 0.9239 0 0 1 0 0.3827 0.9239 -0.1 0 0.9239 0.3827
+5 24 0 1 0 0 0.9239 0.3827 0.3827 0.9239 0 -0.1 1 0
+5 24 0.3827 0.9239 0 0 0.9239 0.3827 0 1 0 0.4393 0.7836 0.4393
+
+0 FILE p/1-4disc.dat
+0 Disc 0.25
+0 Name: 1-4disc.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement.
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 0 0 0 1 0 0 0.9239 0 0.3827
+3 16 0 0 0 0.9239 0 0.3827 0.7071 0 0.7071
+3 16 0 0 0 0.7071 0 0.7071 0.3827 0 0.9239
+3 16 0 0 0 0.3827 0 0.9239 0 0 1
+0
+
+0 FILE p/1-4cyli.dat
+0 Cylinder 0.25
+0 Name: 1-4cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement.
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 1 1 0 0.9239 1 0.3827 0.9239 0 0.3827 1 0 0
+5 24 1 0 0 1 1 0 0.9239 0 0.3827 1 0 -1
+4 16 0.9239 1 0.3827 0.7071 1 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+5 24 0.9239 0 0.3827 0.9239 1 0.3827 0.7071 0 0.7071 1 0 0
+4 16 0.7071 1 0.7071 0.3827 1 0.9239 0.3827 0 0.9239 0.7071 0 0.7071
+5 24 0.7071 0 0.7071 0.7071 1 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+4 16 0.3827 1 0.9239 0 1 1 0 0 1 0.3827 0 0.9239
+5 24 0.3827 0 0.9239 0.3827 1 0.9239 0 0 1 0.7071 0 0.7071
+5 24 0 0 1 0 1 1 0.3827 0 0.9239 -1 0 1
+
+0 FILE p/1-4cyls2.dat
+0 Cylinder Sloped 0.25 Convex
+0 Name: 1-4cyls2.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
+0 !HISTORY 2002-07-03 [sbliss] Added BFC statement, reformatted title to fit 0.27 convention
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 -0.3827 0.3827 0.9239 -0.3827 0 0.9239 0 0 1
+4 16 -0.3827 0.3827 0.9239 -0.7071 0.7071 0.7071 -0.7071 0 0.7071 -0.3827 0 0.9239
+4 16 -0.7071 0.7071 0.7071 -0.9239 0.9239 0.3827 -0.9239 0 0.3827 -0.7071 0 0.7071
+4 16 -0.9239 0.9239 0.3827 -1 1 0 -1 0 0 -0.9239 0 0.3827
+
+5 24 -0.3827 0 0.9239 -0.3827 0.3827 0.9239 -0.7071 0 0.7071 0 0 1
+5 24 -0.7071 0 0.7071 -0.7071 0.7071 0.7071 -0.9239 0 0.3827 -0.3827 0 0.9239
+5 24 -0.9239 0 0.3827 -0.9239 0.9239 0.3827 -1 0 0 -0.7071 0 0.7071
+5 24 -1 0 0 -1 1 0 -1 0 -1 -0.9239 0 0.3827
+
+0 FILE parts/4286.dat
+0 Slope Brick 33  3 x  1
+0 Name: 4286.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-02-03 [sbliss] Completed header; BFC'ed
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 20 -30 -1 0 0 0 -1 0 0 0 1 p/stud3a.dat
+1 16 0 14 -30 4 0 0 0 0.894 2 0 0.447 -4 p/4-4edge.dat
+1 16 0 14 -30 4 0 0 0 8 2 0 0 -4 p/4-4cyli.dat
+
+0 BFC INVERTNEXT
+1 16 0 24 0 -6 0 0 0 -20 0 0 0 6 p/box5.dat
+
+2 24 6 24 -10 2 24 -10
+2 24 2 24 -10 2 24 -14
+2 24 2 24 -14 -2 24 -14
+2 24 -2 24 -14 -2 24 -10
+2 24 -2 24 -10 -6 24 -10
+2 24 -6 24 -10 -6 24 -46
+2 24 -6 24 -46 6 24 -46
+2 24 6 24 -46 6 24 -10
+
+2 24 10 24 10 -10 24 10
+2 24 -10 24 10 -10 24 -50
+2 24 -10 24 -50 10 24 -50
+2 24 10 24 -50 10 24 10
+
+2 24 6 24 -10 6 4 -10
+2 24 -6 24 -10 -6 4 -10
+2 24 2 24 -10 2 4 -10
+2 24 -2 24 -10 -2 4 -10
+2 24 2 24 -14 2 6 -14
+2 24 -2 24 -14 -2 6 -14
+2 24 6 24 -46 6 20 -46
+2 24 -6 24 -46 -6 20 -46
+2 24 6 4 -10 2 4 -10
+2 24 2 4 -10 2 6 -14
+2 24 2 6 -14 -2 6 -14
+2 24 -2 6 -14 -2 4 -10
+2 24 -2 4 -10 -6 4 -10
+2 24 -6 4 -10 -6 20 -42
+2 24 -6 20 -42 6 20 -42
+2 24 6 20 -42 6 4 -10
+2 24 6 20 -46 -6 20 -46
+2 24 6 20 -46 6 20 -42
+2 24 -6 20 -46 -6 20 -42
+
+2 24 10 24 10 10 0 10
+2 24 -10 24 10 -10 0 10
+2 24 10 24 -50 10 20 -50
+2 24 -10 24 -50 -10 20 -50
+2 24 10 0 10 -10 0 10
+2 24 10 0 -10 -10 0 -10
+2 24 10 20 -50 -10 20 -50
+2 24 10 0 10 10 0 -10
+2 24 -10 0 10 -10 0 -10
+2 24 10 20 -50 10 0 -10
+2 24 -10 20 -50 -10 0 -10
+
+4 16 10 24 10 6 24 6 -6 24 6 -10 24 10
+4 16 -10 24 10 -6 24 6 -6 24 -46 -10 24 -50
+4 16 -10 24 -50 -6 24 -46 6 24 -46 10 24 -50
+4 16 10 24 -50 6 24 -46 6 24 6 10 24 10
+4 16 6 24 -6 6 24 -10 -6 24 -10 -6 24 -6
+4 16 2 24 -10 2 24 -14 -2 24 -14 -2 24 -10
+4 16 6 20 -42 6 20 -46 -6 20 -46 -6 20 -42
+4 16 -10 0 -10 10 0 -10 10 0 10 -10 0 10
+
+4 16 -10 0 10 10 0 10 10 24 10 -10 24 10
+4 16 6 24 -10 6 4 -10 2 4 -10 2 24 -10
+4 16 -2 4 -10 -6 4 -10 -6 24 -10 -2 24 -10
+4 16 2 24 -14 2 6 -14 -2 6 -14 -2 24 -14
+4 16 -6 20 -46 6 20 -46 6 24 -46 -6 24 -46
+4 16 10 24 -50 10 20 -50 -10 20 -50 -10 24 -50
+
+4 16 10 24 10 10 0 10 10 20 -50 10 24 -50
+3 16 10 0 10 10 0 -10 10 20 -50
+4 16 6 20 -46 6 4 -10 6 24 -10 6 24 -46
+4 16 2 24 -10 2 4 -10 2 6 -14 2 24 -14
+4 16 -2 6 -14 -2 4 -10 -2 24 -10 -2 24 -14
+4 16 -6 24 -10 -6 4 -10 -6 20 -46 -6 24 -46
+4 16 -10 20 -50 -10 0 10 -10 24 10 -10 24 -50
+3 16 -10 20 -50 -10 0 -10 -10 0 10
+
+4 16 -6 4 -10 6 4 -10 6 20 -42 -6 20 -42
+4 16 10 20 -50 10 0 -10 -10 0 -10 -10 20 -50
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3062b.dat
+0 Brick  1 x  1 Round with Hollow Stud
+0 Name: 3062b.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-08-02 [OrionP] Made some primitive subs
+0 !HISTORY 2003-08-04 [Steffen] replaced peghole.dat by stud4a.dat
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-10 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-03-19 [tchang] Add missing <CR>
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+0 // Note: One or more STUD references in this file have been purposely
+0 // capitalized to ensure that the stud is fully visible in LEdit.
+
+1 16 0 4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 4 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 19 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 0 0 10 0 0 0 19 0 0 0 10 p/4-4cyli.dat
+1 16 0 0 0 10 0 0 0 1 0 0 0 10 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 6 0 0 0 16 0 0 0 6 p/4-4cyli.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud2a.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+1 16 0 4 0 2 0 0 0 -1 0 0 0 2 p/4-4ring2.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring4.dat
+1 16 0 19 0 2 0 0 0 -1 0 0 0 2 p/4-4ring4.dat
+1 16 0 19 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 19 0 8 0 0 0 1 0 0 0 8 p/4-4cyli.dat
+1 16 0 20 0 1 0 0 0 -1 0 0 0 -1 p/stud4a.dat
+0
+
+0 FILE p/stud2a.dat
+0 Stud Open without Base Edges
+0 Name: stud2a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+1 16 0 -4 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring2.dat
+0
+
+0 FILE parts/6141.dat
+0 Plate  1 x  1 Round
+0 Name: 6141.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2015-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-06-20 [PTadmin] Official Update 1998-06
+0 !HISTORY 2003-01-29 [sbliss]  Completed header; BFC'ed; misc cleanup
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-10-26 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2014-11-29 [Steffen] Renamed from 4073
+0 !HISTORY 2014-12-28 [MagFors] Primitive substitution
+0 !HISTORY 2015-10-11 [PTadmin] Official Update 2015-01
+
+1 16 0 3 0 -1 0 0 0 -1.25 0 0 0 1 p/stud4.dat
+1 16 0 3 0 -6 0 0 0 -1 0 0 0 6 p/4-4disc.dat
+1 16 0 3 0 -2 0 0 0 -1 0 0 0 2 p/4-4ring4.dat
+1 16 0 0 0 10 0 0 0 3 0 0 0 10 p/4-4cylo.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring4.dat
+1 16 0 0 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+0 FILE p/4-4cylo.dat
+0 Cylinder Open 1.0
+0 Name: 4-4cylo.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4edge.dat
+1 16 0 1 0 1 0 0 0 1 0 0 0 1 p/4-4edge.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4cyli.dat
+0
+0 FILE p/4-4ring4.dat
+0 Ring  4 x 1.0
+0 Name: 4-4ring4.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-04-08 [BrickCaster] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-08-26 [cwdee] Switch polygon winding and rename
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 -1.9135 0 4.6195 -1.5308 0 3.6956 0 0 4 0 0 5
+4 16 -3.5355 0 3.5355 -2.8284 0 2.8284 -1.5308 0 3.6956 -1.9135 0 4.6195
+4 16 -4.6195 0 1.9135 -3.6956 0 1.5308 -2.8284 0 2.8284 -3.5355 0 3.5355
+4 16 -5 0 0 -4 0 0 -3.6956 0 1.5308 -4.6195 0 1.9135
+4 16 -4.6195 0 -1.9135 -3.6956 0 -1.5308 -4 0 0 -5 0 0
+4 16 -3.5355 0 -3.5355 -2.8284 0 -2.8284 -3.6956 0 -1.5308 -4.6195 0 -1.9135
+4 16 -1.9135 0 -4.6195 -1.5308 0 -3.6956 -2.8284 0 -2.8284 -3.5355 0 -3.5355
+4 16 0 0 -5 0 0 -4 -1.5308 0 -3.6956 -1.9135 0 -4.6195
+4 16 1.9135 0 -4.6195 1.5308 0 -3.6956 0 0 -4 0 0 -5
+4 16 3.5355 0 -3.5355 2.8284 0 -2.8284 1.5308 0 -3.6956 1.9135 0 -4.6195
+4 16 4.6195 0 -1.9135 3.6956 0 -1.5308 2.8284 0 -2.8284 3.5355 0 -3.5355
+4 16 5 0 0 4 0 0 3.6956 0 -1.5308 4.6195 0 -1.9135
+4 16 4.6195 0 1.9135 3.6956 0 1.5308 4 0 0 5 0 0
+4 16 3.5355 0 3.5355 2.8284 0 2.8284 3.6956 0 1.5308 4.6195 0 1.9135
+4 16 1.9135 0 4.6195 1.5308 0 3.6956 2.8284 0 2.8284 3.5355 0 3.5355
+4 16 0 0 5 0 0 4 1.5308 0 3.6956 1.9135 0 4.6195
+0
+
+0 FILE parts/3023.dat
+0 Plate  1 x  2
+0 Name: 3023.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 16 0 0 0 -4 0 0 0 6 p/box5.dat
+
+4 16 20 8 10 16 8 6 -16 8 6 -20 8 10
+4 16 -20 8 10 -16 8 6 -16 8 -6 -20 8 -10
+4 16 -20 8 -10 -16 8 -6 16 8 -6 20 8 -10
+4 16 20 8 -10 16 8 -6 16 8 6 20 8 10
+
+1 16 0 8 0 20 0 0 0 -8 0 0 0 10 p/box5.dat
+
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/3021.dat
+0 Plate  2 x  3
+0 Name: 3021.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -10 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 26 0 0 0 -4 0 0 0 16 p/box5.dat
+
+4 16 30 8 20 26 8 16 -26 8 16 -30 8 20
+0 Next Line was 4 16 30 8 -20 26 8 -16 -26 8 -16 -30 8 -20
+4 16 -30 8 -20 -26 8 -16 26 8 -16 30 8 -20
+0 Next Line was 4 16 30 8 20 26 8 16 26 8 -16 30 8 -20
+4 16 30 8 -20 26 8 -16 26 8 16 30 8 20
+4 16 -30 8 20 -26 8 16 -26 8 -16 -30 8 -20
+
+1 16 0 8 0 30 0 0 0 -8 0 0 0 20 p/box5.dat
+
+1 16 20 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -20 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/43721.dat
+0 Wedge  4 x  2 Sloped Left
+0 Name: 43721.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 -10 0 30 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -10 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -10 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 -10 0 -30 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/43720s01.dat
+3 16 0 0 -20 0 20 -40 0 0 -40
+3 16 0 0 -20 5 20 -20 0 20 -40
+3 16 0 0 -20 0 0 0 5 20 -20
+3 16 0 0 0 10 20 0 5 20 -20
+3 16 0 0 0 0 0 20 10 20 0
+3 16 10 20 0 0 0 20 15 20 20
+3 16 15 20 20 0 0 20 0 0 40
+3 16 0 0 40 20 20 40 15 20 20
+5 24 5 20 -20 0 0 -20 0 0 0 0 20 -40
+5 24 10 20 0 0 0 0 0 0 20 5 20 -20
+5 24 15 20 20 0 0 20 0 0 40 10 20 0
+5 24 0 20 -40 0 0 -20 5 20 -20 0 0 -40
+5 24 5 20 -20 0 0 0 10 20 0 0 0 -20
+5 24 10 20 0 0 0 20 15 20 20 0 0 0
+5 24 15 20 20 0 0 40 20 20 40 0 0 20
+0
+
+0 FILE parts/43720.dat
+0 Wedge  4 x  2 Sloped Right
+0 Name: 43720.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 0 30 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 10 0 -30 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/43720s01.dat
+3 16 0 0 -20 0 0 -40 0 20 -40
+3 16 0 0 -20 0 20 -40 -5 20 -20
+3 16 0 0 0 0 0 -20 -5 20 -20
+3 16 0 0 0 -5 20 -20 -10 20 0
+3 16 0 0 20 0 0 0 -10 20 0
+3 16 -10 20 0 -15 20 20 0 0 20
+3 16 0 0 20 -15 20 20 0 0 40
+3 16 0 0 40 -15 20 20 -20 20 40
+5 24 -5 20 -20 0 0 -20 0 0 0 0 20 -40
+5 24 -10 20 0 0 0 0 0 0 20 -5 20 -20
+5 24 -15 20 20 0 0 20 0 0 40 -10 20 0
+5 24 0 20 -40 0 0 -20 -5 20 -20 0 0 -40
+5 24 -5 20 -20 0 0 0 -10 20 0 0 0 -20
+5 24 -10 20 0 0 0 20 -15 20 20 0 0 0
+5 24 -15 20 20 0 0 40 -20 20 40 0 0 20
+0
+
+0 FILE parts/s/43720s01.dat
+0 ~Wedge  4 x  2 Sloped Right Body without Face and Studs
+0 Name: s\43720s01.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Subpart UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 10 12 0 0 0 10 0 -12 0 -40 0 0 p/box3-3.dat
+0 BFC INVERTNEXT
+1 16 9.375 14 0 0 0 6.625 0 -10 0 -36 0 0 p/box3-3.dat
+1 16 1.7325 22 -31.93 0 -1 1.0175 -2 0 0 0 0 -4.07 p/rect.dat
+1 16 -1.18 22 -20.28 -1.41 -1 0 0 0 2 5.64 0 0 p/rect.dat
+1 16 0 24 20 2 0 0 0 -1 0 0 0 2 p/ring3.dat
+1 16 0 24 20 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 24 20 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 4 20 3.061 0 7.391 0 20 0 7.391 0 -3.061 p/3-8cyli.dat
+1 16 0 16.7 20 0 0 -8 0 7.3 0 -8 0 0 p/2-4cyli.dat
+1 16 0 4 20 3.061 0 7.391 0 1 0 7.391 0 -3.061 p/3-8edge.dat
+1 16 0 16.7 20 -8 0 0 0 -7.7 0 0 0 -8 p/1-4cyls.dat
+1 16 0 8 20 -8 0 0 8.7 1 1.3 0 0 -8 p/1-4edge.dat
+1 16 0 16.7 20 -8 0 0 0 -9.5 0 0 0 8 p/1-4cyls.dat
+1 16 0 7.25 20 -8 0 0 9.55 1 0 0 0 8 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 4 20 2.296 0 5.543 0 9.9 0 -5.543 0 2.296 p/3-8cyli.dat
+1 16 0 4 20 2.296 0 5.543 0 1 0 -5.543 0 2.296 p/3-8edge.dat
+0 BFC INVERTNEXT
+1 16 0 13.9 20 6 0 0 0 10.1 0 0 0 6 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 13.9 20 -5.543 0 2.296 0 -9.8 0 -2.296 0 -5.543 p/1-4cyls.dat
+1 16 0 8.25 20 -6 0 0 6.2 1 0.5 0 0 -6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 13.9 20 -5.543 0 2.296 0 -10 0 2.296 0 5.543 p/1-4cyls.dat
+1 16 0 7 20 -6 0 0 7.4 1 1 0 0 6 p/1-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 19.7 0 0 0 -6 0 4.3 0 6 0 0 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 19.7 0 -4.243 0 4.243 0 4.3 0 -4.243 0 -4.243 p/3-16cyli.dat
+0 BFC INVERTNEXT
+1 16 0 4 0 2.296 0 5.543 0 20 0 -5.543 0 2.296 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 19.7 0 -5.543 0 2.296 0 -13.9 0 -2.296 0 -5.543 p/1-4cyls.dat
+1 16 0 9.3 0 -6 0 0 10.3 1 2.6 0 0 -6 p/3-16edge.dat
+0 BFC INVERTNEXT
+1 16 0 19.7 0 -6 0 0 0 -10.8 0 0 0 6 p/1-4cyls.dat
+1 16 0 8 0 0 0 -6 0.9 1 11.6 6 0 0 p/1-4edge.dat
+1 16 0 4 0 2.2961 0 5.54328 0 1 0 -5.54328 0 2.2961 p/3-8edge.dat
+1 16 0 24 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 4 0 3.06144 0 7.39097 0 20 0 -7.39097 0 3.06144 p/3-8cyli.dat
+1 16 0 17.652 0 -3.061 0 7.391 0 6.348 0 -7.391 0 -3.061 p/1-8cyli.dat
+1 16 0 17.652 0 -7.39097 0 -3.06144 0 -19.652 0 3.06144 0 -7.39097 p/1-8cyls2.dat
+1 16 0 4 0 3.06144 0 7.39097 0 1 0 -7.39097 0 3.06144 p/3-8edge.dat
+1 16 0 24 0 -5.6568 0 5.6568 0 1 0 -5.6568 0 -5.6568 p/3-4edge.dat
+1 16 0 24 0 2 0 0 0 -1 0 0 0 2 p/ring3.dat
+1 16 11.955 4 0 -4.045 0 0 0 16 0 0 0 0.5 p/box3u2p.dat
+0 BFC INVERTNEXT
+1 16 0 4 -20 2.296 0 5.543 0 15.4 0 -5.543 0 2.296 p/3-8cyli.dat
+0 BFC INVERTNEXT
+1 16 0 19.4 -20 2.296 0 5.543 0 4.6 0 -5.543 0 2.296 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 19.4 -20 -5.54328 0 -2.2961 0 -20 0 -2.2961 0 5.54328 p/1-8cyls2.dat
+1 16 0 24 -20 2.2961 0 5.5433 0 20 0 -5.5433 0 2.2961 p/2-4edge.dat
+1 16 0 4 -20 2.2961 0 5.5433 0 20 0 -5.5433 0 2.2961 p/3-8edge.dat
+1 16 0 4 -20 3.0615 0 7.391 0 16 0 -7.391 0 3.0615 p/3-8cyli.dat
+1 16 0 20 -20 3.0615 0 7.391 0 4 0 -7.391 0 3.0615 p/2-4cyli.dat
+1 16 0 20 -20 -7.391 0 -3.061 0 -22 0 -3.061 0 7.391 p/1-8cyls2.dat
+1 16 0 24 -20 3.0615 0 7.391 0 20 0 -7.391 0 3.0615 p/2-4edge.dat
+1 16 0 4 -20 3.0615 0 7.391 0 20 0 -7.391 0 3.0615 p/3-8edge.dat
+1 16 -6.365 22 -4.597 0.7081 0.7071 0 0 0 2 -1.0597 0.7071 0 p/rect2p.dat
+1 16 0 24 -20 0.7654 0 1.8476 0 -1 0 -1.8476 0 0.7654 p/2-4ring3.dat
+0 BFC INVERTNEXT
+1 16 -15.275 24 28.6 1.75 0 -1.2 0 -4 0 0.4375 0 4.8 p/box3u2p.dat
+0 BFC INVERTNEXT
+1 16 -10.6 22 9.9 1.75 0 -1.4875 0 -2 0 0.4375 0 5.95 p/box2-5.dat
+1 16 -8.06 22 -3.8 0 0 0.98 -2 0 0 0 1 0.245 p/rect3.dat
+1 16 -4.65 22 -13.66 1.64 1 0 0 0 2 1.08 0 0 p/rect2p.dat
+1 16 -3.155 22 -27.38 0 1 -3.155 2 0 0 0 0 12.62 p/rect3.dat
+1 16 -9.9325 22 -0.27 -0.9425 1 0 0 0 2 3.77 0 0 p/rect.dat
+1 16 -19.12 22 36.48 0 1 -0.88 2 0 0 0 0 3.52 p/rect3.dat
+1 16 -14.98 22 34.92 0 -1 -0.27 2 0 0 0 0 1.08 p/rect3.dat
+1 16 -13.081 20 19.825 0.994 0 1.75 0 4 0 -3.975 0 0.4375 p/box3u8p.dat
+4 16 16 24 36 20 24 40 -20 24 40 -15.25 24 36
+4 16 20 24 40 16 24 36 16 24 -36 20 24 -40
+4 16 2.75 24 -36 0 24 -40 20 24 -40 16 24 -36
+4 16 -3.0615 24 -12.609 -6.3 24 -14.76 0 24 -40 2.75 24 -36
+4 16 3.0615 24 -27.391 2.2961 24 -25.5433 0.24 24 -25.93 0.72 24 -27.85
+3 16 -3.0615 24 -12.609 -2.56 24 -14.64 -2.2961 24 -14.4567
+4 16 -6.3 20 -14.75 -3.06 20 -12.61 -4.644 20 -6.334 -5.657 20 -5.657
+4 16 -6.3 20 -14.75 -5.657 20 -5.657 -7.08 20 -3.555 -9.04 20 -4.045
+4 16 -9.06 24 -4.045 -7.08 24 -3.555 -6.4 24 4.63 -10.875 24 3.5
+4 16 -18.225 24 32.9625 -14.725 24 33.8375 -15.25 24 36 -20 24 40
+4 16 -20 20 40 20 24 40 20 0 40 0 0 40
+3 16 -20 20 40 -20 24 40 20 24 40
+4 16 2.75 4 36 16 4 36 16 24 36 -15.25 20 36
+3 16 -15.25 20 36 16 24 36 -15.25 24 36
+4 16 2.75 4 27.453 0 24 28 3.061 24 27.391 3.061 4 27.391
+3 16 2.75 4 27.453 0 7.259 28 0 24 28
+4 16 3.061 4 12.609 3.061 24 12.609 0 24 12 2.75 4 12.547
+3 16 2.75 4 12.547 0 24 12 0 8.889 12
+4 16 2.75 4 7.453 0 24 8 3.061 24 7.391 3.061 4 7.391
+3 16 2.75 4 7.453 0 8.889 8 0 24 8
+4 16 0 24 8 0 8.889 8 -3.061 14.031 7.391 -3.061 24 7.391
+4 16 -3.061 24 7.391 -3.061 14.031 7.391 -5.657 17.621 5.657 -5.657 24 5.657
+4 16 -5.657 24 5.657 -5.657 17.621 5.657 -6.4 18.779 4.63 -6.4 24 4.63
+3 16 -7.363 20 4.387 -6.4 24 4.63 -6.4 18.779 4.63
+4 16 -7.363 20 4.387 -10.875 20 3.5 -10.875 24 3.5 -6.4 24 4.63
+4 16 0 8.889 6 2.296 4.807 5.543 2.296 24 5.543 0 24 6
+4 16 -4.644 20 -6.334 -3.061 24 -7.391 -5.657 24 -5.657 -5.657 20 -5.657
+3 16 -4.645 20 -6.334 -3.061 17.652 -7.391 -3.061 24 -7.391
+4 16 -2.56 24 -14.64 -2.56 20 -14.64 -2.296 19.396 -14.457 -2.296 24 -14.457
+4 16 2.296 24 -25.543 2.296 12.319 -25.543 0.24 20 -25.93 0.24 24 -25.93
+4 16 2.75 12.403 -27.453 3.061 24 -27.391 0.72 24 -27.85 0.72 20 -27.85
+4 16 2.75 12.403 -27.453 2.75 4 -27.453 3.061 4 -27.391 3.061 24 -27.391
+3 16 2.75 4 -36 2.75 4 -18 2.75 20 -36
+3 16 2.75 20 -36 2.75 4 -18 -1.75 20 -18
+3 16 2.75 4 -18 2.75 4 0 -1.75 20 -18
+3 16 -1.75 20 -18 2.75 4 0 -6.25 20 0
+3 16 2.75 4 0 2.75 4 18 -6.25 20 0
+3 16 -6.25 20 0 2.75 4 18 -10.75 20 18
+3 16 2.75 4 36 -10.75 20 18 2.75 4 18
+3 16 2.75 4 36 -15.25 20 36 -10.75 20 18
+2 24 -20 20 40 0 0 40
+2 24 20 24 40 -20 24 40
+2 24 2.75 4 36 -15.25 20 36
+2 24 16 24 36 -15.25 24 36
+2 24 -6.3 20 -14.75 -9.04 20 -4.045
+2 24 -3.06 20 -12.61 -4.644 20 -6.334
+2 24 7.9 20 0.5 8 20 0
+2 24 7.9 20 -0.5 8 20 0
+2 24 2.75 4 27.453 3.061 4 27.391
+2 24 2.75 4 27.453 0 7.259 28
+2 24 0 7.7 26 2.296 4.541 25.543
+2 24 2.75 4 25.24 2.296 4.541 25.543
+2 24 2.75 4 14.76 2.296 4.807 14.457
+2 24 0.84 7.396 14.167 2.296 4.807 14.457
+2 24 0.84 7.396 14.167 0 8.7 14
+2 24 3.061 4 12.609 2.75 4 12.547
+2 24 2.75 4 12.547 0 8.889 12
+2 24 2.75 4 7.453 3.061 4 7.391
+2 24 2.75 4 7.453 0 8.889 8
+2 24 -2.5 13.333 7.503 0 8.889 8
+2 24 -2.5 13.333 7.503 -3.061 14.031 7.391
+2 24 -3.061 14.031 7.391 -5.657 17.621 5.657
+2 24 -5.657 17.621 5.657 -6.4 18.779 4.63
+2 24 -6.4 18.779 4.63 -6.4 24 4.63
+2 24 -6.4 24 4.63 -5.657 24 5.657
+2 24 -6.4 18.779 4.63 -7.363 20 4.387
+2 24 -7.363 20 4.387 -10.875 20 3.5
+2 24 -10.875 24 3.5 -6.4 24 4.63
+2 24 2.75 4 5.24 2.296 4.807 5.543
+2 24 2.75 4 -5.24 2.296 5.614 -5.543
+2 24 1.3 9.156 -5.761 2.296 5.614 -5.543
+2 24 1.3 9.156 -5.761 0 11.556 -6
+2 24 -2.296 15.6 -5.543 0 11.556 -6
+2 24 0 8.889 6 2.296 4.807 5.543
+2 24 -4.644 20 -6.334 -5.657 20 -5.657
+2 24 -4.645 20 -6.334 -3.061 17.652 -7.391
+2 24 0 12.444 -8 -3.061 17.652 -7.391
+2 24 0 12.444 -8 0.8 10.952 -7.841
+2 24 2.75 4 -7.453 0.8 10.952 -7.841
+2 24 2.75 4 -7.453 3.061 4 -7.391
+2 24 -3.06 20 -12.61 -0.25 14.667 -12.05
+2 24 0 13.778 -12 -0.25 14.667 -12.05
+2 24 0 13.778 -12 3.061 4 -12.609
+2 24 -2.56 24 -14.64 -2.296 24 -14.457
+2 24 -2.56 20 -14.64 -2.296 19.396 -14.457
+2 24 -0.84 16.679 -14.167 -2.296 19.396 -14.457
+2 24 -0.84 16.679 -14.167 0 13.778 -14
+2 24 2.296 5.614 -14.457 0 13.778 -14
+2 24 2.296 5.614 -14.457 2.75 4 -14.76
+2 24 2.296 24 -25.543 0.24 24 -25.93
+2 24 2.296 12.319 -25.543 0.24 20 -25.93
+2 24 2.296 12.319 -25.543 2.75 10.436 -25.24
+2 24 2.75 4 -25.24 2.75 10.436 -25.24
+2 24 0.72 24 -27.85 3.061 24 -27.391
+2 24 0.72 20 -27.85 2.75 12.403 -27.543
+2 24 2.75 4 -27.543 2.75 12.403 -27.543
+2 24 2.75 4 -27.543 3.061 4 -27.391
+5 24 -5.657 20 -5.657 -5.657 24 -5.657 -7.391 24 -3.061 -3.061 24 -7.391
+5 24 -3.061 17.652 -7.391 -3.061 24 -7.391 -5.657 24 -5.657 0 24 -8
+5 24 0 8.889 8 0 24 8 3.061 24 7.391 -3.061 24 7.391
+5 24 3.061 4 7.391 3.061 24 7.391 5.657 24 5.657 0 24 8
+5 24 -3.061 14.031 7.391 -3.061 24 7.391 0 24 8 -5.657 24 5.657
+5 24 -5.657 17.621 5.657 -5.657 24 5.657 -3.061 24 7.391 -7.391 24 3.061
+5 24 2.296 4.807 5.543 2.296 24 5.543 0 24 6 4.243 24 4.243
+5 24 3.061 4 12.609 3.061 24 12.609 0 24 12 5.567 24 14.343
+5 24 0 7.259 28 0 24 28 3.061 24 27.391 -3.061 24 27.391
+5 24 -3.061 20 -12.609 -3.061 24 -12.609 0 24 -12 -5.567 24 -14.343
+5 24 -2.296 19.396 -14.457 -2.296 24 -14.457 0 24 -14 -4.243 24 -15.757
+5 24 2.75 4 -18 2.75 20 -36 2.75 4 -36 -1.75 20 -18
+5 24 2.75 4 0 -1.75 20 -18 2.75 4 -18 -6.75 20 0
+5 24 2.75 4 18 -6.25 20 0 2.75 4 0 -10.75 20 18
+5 24 2.75 4 36 -10.75 20 18 2.75 4 18 -15.25 20 36
+0
+
+0 FILE p/box3u8p.dat
+0 Box with 3 Faces and 4 Parallel Edges
+0 Name: box3u8p.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-12-13 [hafhead] Made BFC compliant
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 -1 1 1 -1
+2 24 1 0 1 -1 0 1 
+2 24 -1 0 -1 1 0 -1
+4 16 1 1 -1 -1 1 -1 -1 1 1 1 1 1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+
+0 FILE p/3-4edge.dat
+0 Circle 0.75
+0 Name: 3-4edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -0.9239 0 0.3827
+2 24 -0.9239 0 0.3827 -1 0 0
+2 24 -1 0 -0 -0.9239 0 -0.3827
+2 24 -0.9239 0 -0.3827 -0.7071 0 -0.7071
+2 24 -0.7071 0 -0.7071 -0.3827 0 -0.9239
+2 24 -0.3827 0 -0.9239 0 0 -1
+
+0 FILE p/1-8cyls2.dat
+0 Cylinder Sloped 0.125 Convex
+0 Name: 1-8cyls2.dat
+0 Author: Paul Easter [pneaster]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 -0.3827 0.3827 0.9239 -0.3827 0 0.9239 0 0 1
+4 16 -0.3827 0.3827 0.9239 -0.7071 0.7071 0.7071 -0.7071 0 0.7071 -0.3827 0 0.9239
+
+5 24 -0.3827 0 0.9239 -0.3827 0.3827 0.9239 -0.7071 0 0.7071 0 0 1
+5 24 -0.7071 0 0.7071 -0.7071 0.7071 0.7071 -0.9239 0 0.3827 -0.3827 0 0.9239
+
+0 FILE p/1-8cyli.dat
+0 Cylinder 0.125
+0 Name: 1-8cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .4142 1 1
+0
+
+0 FILE p/3-16edge.dat
+0 Circle 0.1875
+0 Name: 3-16edge.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+
+0 FILE p/3-16cyli.dat
+0 Cylinder 0.1875
+0 Name: 3-16cyli.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+4 16 .3827 1 .9239 .3827 0 .9239 .7071 0 .7071 .7071 1 .7071
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .3827 1 .9239
+5 24 .3827 1 .9239 .3827 0 .9239 .7071 1 .7071 0 1 1.0824
+0
+
+0 FILE p/3-8edge.dat
+0 Circle 0.375
+0 Name: 3-8edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.7071 0 0.7071
+
+0 FILE p/3-8cyli.dat
+0 Cylinder 0.375
+0 Name: 3-8cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-05-08 [OrionP] Made BFC compliant
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+4 16 .3827 1 .9239 .3827 0 .9239 .7071 0 .7071 .7071 1 .7071
+4 16 0 1 1 0 0 1 .3827 0 .9239 .3827 1 .9239
+4 16 -.3827 1 .9239 -.3827 0 .9239 0 0 1 0 1 1
+4 16 -.7071 1 .7071 -.7071 0 .7071 -.3827 0 .9239 -.3827 1 .9239
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .3827 1 .9239
+5 24 .3827 1 .9239 .3827 0 .9239 .7071 1 .7071 0 1 1
+5 24 0 1 1 0 0 1 .3827 1 .9239 -.3827 1 .9239
+5 24 -.3827 1 .9239 -.3827 0 .9239 0 1 1 -.7071 1 .7071
+5 24 -.7071 1 .7071 -.7071 0 .7071 -.3827 1 .9239 -1 1 .4142
+0
+
+0 FILE p/ring3.dat
+0 ~Moved to 4-4ring3
+0 Name: ring3.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+0 // Ring  3 x 1.0
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/4-4ring3.dat
+
+0 FILE p/box3-3.dat
+0 Box with 3 Adjacent Faces and 3 Missing Edges
+0 Name: box3-3.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2004-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-09-15 [PTadmin] Official Update 2004-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 1 1 1 -1 1 1 
+2 24 -1 1 1 -1 1 -1 
+2 24 -1 1 -1 1 1 -1 
+2 24 1 1 -1 1 1 1 
+2 24 1 -1 1 -1 -1 1 
+2 24 1 -1 -1 1 -1 1 
+2 24 1 -1 1 1 1 1 
+2 24 -1 -1 1 -1 1 1 
+2 24 1 -1 -1 1 1 -1 
+0
+4 16 1 1 1 1 1 -1 -1 1 -1 -1 1 1
+4 16 1 1 1 1 -1 1 1 -1 -1 1 1 -1   
+4 16 1 1 1 -1 1 1 -1 -1 1 1 -1 1
+0
+
+
+0 FILE parts/41747.dat
+0 Wedge  2 x  6 Double Right
+0 Name: 41747.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Part UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS curved, rounded, slope, "Star Wars", "Alpha Team"
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-01 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-20 [Wesley] added BFC, moved studs from subpart
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/41748s01.dat
+1 16 0 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+0 // surface
+4 16 -10 0 20 -30 20 20 -30 20 -20 -10 0 -20
+3 16 -10 0 -20 -30 20 -20 -25 20 -40
+3 16 -10 2 -40 -25 20 -40 -20 20 -60
+3 16 -10 6 -60 -20 20 -60 -15 20 -80
+3 16 -10 12 -80 -15 20 -80 -10 20 -100
+3 16 -25 20 -40 -10 2 -40 -10 0 -20
+3 16 -20 20 -60 -10 6 -60 -10 2 -40
+3 16 -15 20 -80 -10 12 -80 -10 6 -60
+4 16 -10 0 -20 -10 2 -40 10 2 -40 10 0 -20
+4 16 -10 2 -40 -10 6 -60 10 6 -60 10 2 -40
+4 16 -10 6 -60 -10 12 -80 10 12 -80 10 6 -60
+4 16 -10 12 -80 -10 20 -100 10 20 -100 10 12 -80
+5 24 -10 0 -20 -30 20 -20 -30 20 20 -25 20 -40
+5 24 -10 0 -20 -25 20 -40 -30 20 -20 -10 2 -40
+5 24 -25 20 -40 -10 2 -40 -20 20 -60 -10 0 -20
+5 24 -10 2 -40 -20 20 -60 -25 20 -40 -10 6 -60
+5 24 -20 20 -60 -10 6 -60 -15 20 -80 -10 2 -40
+5 24 -10 6 -60 -15 20 -80 -20 20 -60 -10 12 -80
+5 24 -15 20 -80 -10 12 -80 -10 20 -100 -10 6 -60
+5 24 10 2 -40 -10 2 -40 10 0 -20 10 6 -60
+5 24 -10 0 -20 10 0 -20 10 2 -40 -10 0 20
+5 24 10 6 -60 -10 6 -60 10 2 -40 10 12 -80
+5 24 10 12 -80 -10 12 -80 10 6 -60 10 20 -100
+
+0 FILE parts/41748.dat
+0 Wedge  2 x  6 Double Left
+0 Name: 41748.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Part UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !KEYWORDS curved, rounded, slope, "Star Wars", "Alpha Team"
+
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-07-01 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-20 [Wesley] added BFC, moved studs from subpart
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/41748s01.dat
+1 16 0 0 -10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+1 16 0 0 10 0 0 1 0 1 0 -1 0 0 p/stud.dat
+0 // surface
+4 16 10 0 -20 30 20 -20 30 20 20 10 0 20
+3 16 25 20 -40 30 20 -20 10 0 -20
+3 16 20 20 -60 25 20 -40 10 2 -40
+3 16 15 20 -80 20 20 -60 10 6 -60
+3 16 10 20 -100 15 20 -80 10 12 -80
+3 16 10 0 -20 10 2 -40 25 20 -40
+3 16 10 2 -40 10 6 -60 20 20 -60
+3 16 10 6 -60 10 12 -80 15 20 -80
+4 16 -10 0 -20 -10 2 -40 10 2 -40 10 0 -20
+4 16 -10 2 -40 -10 6 -60 10 6 -60 10 2 -40
+4 16 -10 6 -60 -10 12 -80 10 12 -80 10 6 -60
+4 16 -10 12 -80 -10 20 -100 10 20 -100 10 12 -80
+5 24 10 0 -20 30 20 -20 30 20 20 25 20 -40
+5 24 10 0 -20 25 20 -40 30 20 -20 10 2 -40
+5 24 25 20 -40 10 2 -40 20 20 -60 10 0 -20
+5 24 10 2 -40 20 20 -60 25 20 -40 10 6 -60
+5 24 20 20 -60 10 6 -60 15 20 -80 10 2 -40
+5 24 10 6 -60 15 20 -80 20 20 -60 10 12 -80
+5 24 15 20 -80 10 12 -80 10 20 -100 10 6 -60
+5 24 -10 2 -40 10 2 -40 -10 0 -20 -10 6 -60
+5 24 10 0 -20 -10 0 -20 -10 2 -40 10 0 20
+5 24 -10 6 -60 10 6 -60 -10 2 -40 -10 12 -80
+5 24 -10 12 -80 10 12 -80 -10 6 -60 -10 20 -100
+
+0 FILE parts/s/41748s01.dat
+0 ~Wedge  2 x  6 Double Left without Sloped Faces
+0 Name: s\41748s01.dat
+0 Author: Franklin W. Cain [fwcain]
+0 !LDRAW_ORG Subpart UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-07-01 [OrionP] Fixed gap near one of the studs...
+0 !HISTORY 2002-07-04 [BrickCaster] Fixed "gap" in quad
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-20 [Wesley] full rebuilt
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 30 24 20 -10 24 20
+2 24 26 24 16 -6 24 16
+4 16 30 24 20 26 24 16 -6 24 16 -10 24 20
+2 24 -10 24 20 -10 24 -100
+2 24 -6 24 16 -6 24 -96
+4 16 -10 24 20 -6 24 16 -6 24 -96 -10 24 -100
+2 24 30 24 -20 30 24 20
+2 24 26 24 -19.51 26 24 16
+4 16 30 24 -20 26 24 -19.51 26 24 16 30 24 20
+2 24 10 24 -100 -10 24 -100
+2 24 6.877 24 -96 -6 24 -96
+4 16 -10 24 -100 -6 24 -96 6.877 24 -96 10 24 -100
+2 24 28.4019 24 -26.39243 30 24 -20
+2 24 24.52161 24 -25.42208 26 24 -19.51
+2 24 28.4019 24 -26.39243 24.52161 24 -25.42208
+4 16 30 24 -20 28.4019 24 -26.39243 24.52161 24 -25.42208 26 24 -19.51
+2 24 19.91223 24 -43.86044 21.82796 24 -36.19655
+2 24 23.79232 24 -44.83073 25.70828 24 -37.1669
+2 24 21.82796 24 -36.19655 25.70828 24 -37.1669
+2 24 19.91223 24 -43.86044 23.79232 24 -44.83073
+4 16 19.91223 24 -43.86044 21.82796 24 -36.19655 25.70828 24 -37.1669 23.79232 24 -44.83073
+0 // stud 4 bottom
+2 24 18.94769 24 -64.20925 20.91349 24 -56.34605
+2 24 18.94769 24 -64.20925 16.95692 24 -63.71142
+2 24 20.91349 24 -56.34605 16.20911 24 -55.16963
+2 24 16.20911 24 -55.16963 15.6568 24 -54.3432
+2 24 15.6568 24 -54.3432 13.0616 24 -52.6088
+2 24 13.0616 24 -52.6088 10 24 -52
+1 16 10 24 -60 0 0 -8 0 1 0 8 0 0 p/2-4edge.dat
+2 24 10 24 -68 13.0616 24 -67.3912
+2 24 13.0616 24 -67.3912 15.6568 24 -65.6568
+2 24 15.6568 24 -65.6568 16.95692 24 -63.71142
+1 16 10 24 -60 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+4 16 18.94769 24 -64.20925 16.95692 24 -63.71142 15.5434 24 -62.2962 16 24 -60
+4 16 18.94769 24 -64.20925 16 24 -60 15.5434 24 -57.7038 20.91349 24 -56.34605
+4 16 20.91349 24 -56.34605 15.5434 24 -57.7038 14.2426 24 -55.7574 16.20911 24 -55.16963
+3 16 14.2426 24 -55.7574 15.6568 24 -54.3432 16.20911 24 -55.16963
+4 16 14.2426 24 -55.7574 12.2962 24 -54.4566 13.0616 24 -52.6088 15.6568 24 -54.3432
+4 16 12.2962 24 -54.4566 10 24 -54 10 24 -52 13.0616 24 -52.6088
+1 16 10 24 -60 0 0 -2 0 -1 0 2 0 0 p/2-4ring3.dat
+4 16 10 24 -66 12.2962 24 -65.5434 13.0616 24 -67.3912 10 24 -68
+4 16 12.2962 24 -65.5434 14.2426 24 -64.2426 15.6568 24 -65.6568 13.0616 24 -67.3912
+4 16 14.2426 24 -64.2426 15.5434 24 -62.2962 16.95692 24 -63.71142 15.6568 24 -65.6568
+0 // stud 5 bottom
+2 24 10 24 -100 16.208 24 -75.16797
+2 24 6.877 24 -96 8.930236 24 -87.78728
+2 24 9.406569 24 -85.882 12.26457 24 -74.45031
+2 24 16.208 24 -75.16797 15.6568 24 -74.3432
+2 24 15.6568 24 -74.3432 13.0616 24 -72.6088
+2 24 13.0616 24 -72.6088 10 24 -72
+1 16 10 24 -80 0 0 -8 0 1 0 8 0 0 p/1-4edge.dat
+2 24 2 24 -80 2.6088 24 -83.0616
+2 24 2.6088 24 -83.0616 4.3432 24 -85.6568
+2 24 4.3432 24 -85.6568 6.9384 24 -87.3912
+2 24 6.9384 24 -87.3912 8.930236 24 -87.78728
+2 24 12.26457 24 -74.45031 10 24 -74
+1 16 10 24 -80 0 0 -6 0 1 0 6 0 0 p/1-4edge.dat
+2 24 4 24 -80 4.4566 24 -82.2962
+2 24 4.4566 24 -82.2962 5.7574 24 -84.2426
+2 24 5.7574 24 -84.2426 7.7038 24 -85.5434
+2 24 7.7038 24 -85.5434 9.406569 24 -85.882
+3 16 10 24 -100 6.877 24 -96 8.930236 24 -87.78728
+4 16 10 24 -100 8.930236 24 -87.78728 9.406569 24 -85.882 16.208 24 -75.16797
+4 16 9.406569 24 -85.882 12.26457 24 -74.45031 15.6568 24 -74.3432 16.208 24 -75.16797
+3 16 12.26457 24 -74.45031 13.0616 24 -72.6088 15.6568 24 -74.3432
+4 16 12.26457 24 -74.45031 10 24 -74 10 24 -72 13.0616 24 -72.6088
+1 16 10 24 -80 0 0 -2 0 -1 0 2 0 0 p/1-4ring3.dat
+4 16 4 24 -80 4.4566 24 -82.2962 2.6088 24 -83.0616 2 24 -80
+4 16 4.4566 24 -82.2962 5.7574 24 -84.2426 4.3432 24 -85.6568 2.6088 24 -83.0616
+4 16 5.7574 24 -84.2426 7.7038 24 -85.5434 6.9384 24 -87.3912 4.3432 24 -85.6568
+4 16 7.7038 24 -85.5434 9.406569 24 -85.882 8.930236 24 -87.78728 6.9384 24 -87.3912
+0 // outer rear surface
+2 24 -10 24 20 -10 0 20
+2 24 -10 0 20 10 0 20
+2 24 10 0 20 30 20 20
+2 24 30 20 20 30 24 20
+3 16 -10 24 20 -10 0 20 10 0 20
+4 16 -10 24 20 10 0 20 30 20 20 30 24 20
+0 // inner rear surface
+2 24 -6 24 16 -6 4 16
+2 24 -6 4 16 8.3442 4 16
+2 24 8.3442 4 16 26 21.6558 16
+2 24 26 21.6558 16 26 24 16
+4 16 26 21.6558 16 8.3442 4 16 -6 4 16 -6 24 16
+3 16 26 24 16 26 21.6558 16 -6 24 16
+0 // inner right surface
+2 24 -6 4 16 -6 4 -20
+2 24 -6 4 -20 -6 6 -40
+2 24 -6 6 -40 -6 10 -60
+2 24 -6 10 -60 -6 16 -80
+2 24 -6 16 -80 -6 20 -90.1314
+4 16 -6 24 16 -6 20 -90.1314 -6 20 -96 -6 24 -96
+4 16 -6 24 16 -6 10 -60 -6 16 -80  -6 20 -90.1314
+4 16 -6 24 16 -6 4 -20 -6 6 -40 -6 10 -60
+3 16 -6 24 16 -6 4 16 -6 4 -20
+0 // outer right surface
+2 24 -10 0 -20 -10 0 20
+2 24 -10 0 -20 -10 2 -40
+2 24 -10 2 -40 -10 6 -60
+2 24 -10 6 -60 -10 12 -80
+2 24 -10 12 -80 -10 20 -100
+2 24 -10 20 -100 -10 24 -100
+4 16 -10 24 -100 -10 20 -100 -10 12 -80 -10 24 20
+4 16 -10 12 -80 -10 6 -60 -10 2 -40 -10 24 20
+4 16 -10 2 -40 -10 0 -20 -10 0 20 -10 24 20
+2 24 10 0 -20 10 0 20
+2 24 10 0 -20 10 2 -40
+2 24 10 2 -40 10 6 -60
+2 24 10 6 -60 10 12 -80
+2 24 10 12 -80 10 20 -100
+2 24 10 20 -100 10 24 -100
+0 // inner front surface
+4 16 -6 24 -96 -6 20 -96 6.877 20 -96 6.877 24 -96
+2 24 -6 24 -96 -6 20 -96
+2 24 -6 20 -96 6.877 20 -96
+2 24 6.877 20 -96 6.877 24 -96
+0 // outer front surface
+2 24 -10 20 -100 10 20 -100
+4 16 10 24 -100 10 20 -100 -10 20 -100 -10 24 -100
+0 // inner left surface
+2 24 6.877 20 -96 8.3442 20 -90.1314
+2 24 8.3442 20 -90.1314 8.930252 20.38311 -87.78724
+4 16 6.877 24 -96 6.877 20 -96 8.3442 20 -90.1314 8.930252 24 -87.78724
+3 16 8.3442 20 -90.1314 8.930252 20.38311 -87.78724 8.930252 24 -87.78724
+0 // stud 5
+4 16 4.343 14.3029 -74.343 6.938 13.7827 -72.609 6.938 24 -72.609 4.343 24 -74.343
+4 16 10 24 -72 6.938 24 -72.609 6.938 13.7827 -72.609 8.3442 13.6988 -72.32932
+4 16 2.609 17.20891 -83.062 2 16 -80 2 24 -80 2.609 24 -83.062
+4 16 2 16 -80 2.609 15.0814 -76.938 2.609 24 -76.938 2 24 -80
+3 16 8.3442 13.6988 -72.32932 10 16.16205 -72 10 24 -72
+3 16 8.930252 24 -87.78724 8.930252 20.38311 -87.78724 8.3442 19.02848 -87.67068
+4 16 4.343 24 -74.343 2.609 24 -76.938 2.609 15.0814 -76.938 4.343 14.3029 -74.343
+4 16 4.343 18.23345 -85.657 2.609 17.20891 -83.062 2.609 24 -83.062 4.343 24 -85.657
+4 16 8.3442 19.02848 -87.67068 6.938 18.91806 -87.391 6.938 24 -87.391 8.930252 24 -87.78724
+4 16 6.938 18.91806 -87.391 4.343 18.23345 -85.657 4.343 24 -85.657 6.938 24 -87.391
+4 16 10 24 -72 10 16.16205 -72 11.26277 18.1913 -72.25115 12.03443 20 -72.40455
+4 16 10 24 -72 12.03443 20 -72.40455 13.0616 20 -72.6088 13.0616 24 -72.6088
+4 16 15.6568 24 -74.3432 13.0616 24 -72.6088 13.0616 20 -72.6088 15.6568 20 -74.3432
+4 16 16.208 24 -75.16797 15.6568 24 -74.3432 15.6568 20 -74.3432 16.208 20 -75.16797
+2 24 2.609 15.0814 -76.938 4.343 14.3029 -74.343
+2 24 2 16 -80 2.609 15.0814 -76.938
+2 24 6.938 13.7827 -72.609 8.3442 13.6988 -72.32932
+2 24 4.343 14.3029 -74.343 6.938 13.7827 -72.609
+2 24 2.609 17.20891 -83.062 2 16 -80
+2 24 4.343 18.23345 -85.657 2.609 17.20891 -83.062
+2 24 4.343 18.23345 -85.657 6.938 18.91806 -87.391
+2 24 6.938 18.91806 -87.391 8.3442 19.02848 -87.67068
+2 24 8.3442 19.02848 -87.67068 8.930252 20.38311 -87.78724
+2 24 11.26277 18.1913 -72.25115 12.03443 20 -72.40455
+2 24 10 16.16205 -72 11.26277 18.1913 -72.25115
+2 24 8.3442 13.6988 -72.32932 10 16.16205 -72
+2 24 8.930252 20.38311 -87.78724 8.930252 24 -87.78724
+5 24 6.938 13.7827 -72.609 6.938 24 -72.609 4.343 14.3029 -74.343 10 24 -72
+5 24 4.343 24 -74.343 4.343 14.3029 -74.343 6.938 13.7827 -72.609 2.609 24 -76.938
+5 24 2 16 -80 2 24 -80 2.609 17.2089 -83.062 2.609 15.0814 -76.938
+5 24 2.609 24 -83.062 2.609 17.2089 -83.062 2 16 -80 4.343 18.2335 -85.657
+5 24 2.609 15.0814 -76.938 2.609 24 -76.938 2 16 -80 4.343 24 -74.343
+5 24 10 16.1621 -72 10 24 -72 8.3442 13.6988 -72.3293 11.2628 18.1913 -72.2511
+5 24 4.343 24 -85.657 4.343 18.2335 -85.657 2.609 17.2089 -83.062 6.938 18.9181 -87.391
+5 24 6.938 18.9181 -87.391 6.938 24 -87.391 8.3442 19.0285 -87.6707 4.343 18.2335 -85.657
+5 24 13.0616 20 -72.6088 13.0616 24 -72.6088 10 24 -72 15.6568 24 -74.3432
+5 24 15.6568 20 -74.3432 15.6568 24 -74.3432 13.0616 24 -72.6088 16.208 24 -75.168
+0 //
+3 16 7.704 18.18844 -85.543 8.3442 18.23875 -85.67043 9.406599 20.69451 -85.88189
+4 16 5.757 17.67519 -84.243 7.704 18.18844 -85.543 7.704 24 -85.543 5.757 24 -84.243
+4 16 4.457 16.90649 -82.296 5.757 17.67519 -84.243 5.757 24 -84.243 4.457 24 -82.296
+3 16 7.704 24 -74.457 10 24 -74 10 16.76205 -74
+4 16 4 16 -80 4.457 16.90649 -82.296 4.457 24 -82.296 4 24 -80
+4 16 4.457 15.3112 -77.704 4 16 -80 4 24 -80 4.457 24 -77.704
+4 16 7.704 14.3371 -74.457 5.757 14.7271 -75.757 5.757 24 -75.757 7.704 24 -74.457
+4 16 10 16.76205 -74 8.3442 14.29887 -74.32957 7.704 14.3371 -74.457 7.704 24 -74.457
+4 16 5.757 14.7271 -75.757 4.457 15.3112 -77.704 4.457 24 -77.704 5.757 24 -75.757
+4 16 9.406599 20.69451 -85.88189 9.406599 24 -85.88189 7.704 24 -85.543 7.704 18.18844 -85.543
+4 16 12.26442 21.6558 -74.45071 10.56194 17.66511 -74.11185 10 16.76205 -74 10 24 -74
+3 16 10 24 -74 12.26446 24 -74.45072 12.26446 21.6558 -74.45072
+2 24 12.26446 21.6558 -74.45072 12.26446 24 -74.45072
+2 24 4.457 15.3112 -77.704 5.757 14.7271 -75.757
+2 24 4 16 -80 4.457 15.3112 -77.704
+2 24 7.704 14.3371 -74.457 8.3442 14.29887 -74.32957
+2 24 5.757 14.7271 -75.757 7.704 14.3371 -74.457
+2 24 4.457 16.90649 -82.296 4 16 -80
+2 24 5.757 17.67519 -84.243 4.457 16.90649 -82.296
+2 24 5.757 17.67519 -84.243 7.704 18.18844 -85.543
+2 24 7.704 18.18844 -85.543 8.3442 18.23875 -85.67043
+2 24 8.3442 18.23875 -85.67043 9.406599 20.69451 -85.88189
+2 24 10.56194 17.66511 -74.11185 12.26442 21.6558 -74.45071
+2 24 10 16.76205 -74 10.56194 17.66511 -74.11185
+2 24 8.3442 14.29887 -74.32957 10 16.76205 -74
+2 24 9.406599 20.69451 -85.88189 9.406599 24 -85.88189
+5 24 7.704 18.1884 -85.543 7.704 24 -85.543 5.757 17.6752 -84.243 9.4066 20.6945 -85.8819
+5 24 5.757 24 -84.243 5.757 17.6752 -84.243 7.704 18.1884 -85.543 4.457 16.9065 -82.296
+5 24 4.457 24 -82.296 4.457 16.9065 -82.296 5.757 17.6752 -84.243 4 16 -80
+5 24 10 24 -74 10 16.762 -74 7.704 24 -74.457 12.2644 21.6558 -74.4507
+5 24 4 24 -80 4 16 -80 4.457 16.9065 -82.296 4.457 15.3112 -77.704
+5 24 4.457 24 -77.704 4.457 15.3112 -77.704 4 16 -80 5.757 14.7271 -75.757
+5 24 5.757 14.7271 -75.757 5.757 24 -75.757 7.704 14.3371 -74.457 4.457 15.3112 -77.704
+5 24 7.704 24 -74.457 7.704 14.3371 -74.457 5.757 14.7271 -75.757 10 16.762 -74
+0 //
+2 24 9.406599 20.69451 -85.88189 10.8771 21.6558 -80
+2 24 10.8771 21.6558 -80 12.26446 21.6558 -74.45072
+3 16 9.406599 24 -85.88189 9.406599 20.69451 -85.88189 10.8771 21.6558 -80
+3 16 9.406599 24 -85.88189 10.8771 21.6558 -80 12.26446 24 -74.45072
+3 16 12.26446 21.6558 -74.45072 12.26446 24 -74.45072 10.8771 21.6558 -80
+0 // outer left surface
+4 16 16.208 24 -75.16797 16.208 20 -75.16797 10 20 -100 10 24 -100
+2 24 10 20 -100 16.208 20 -75.16797
+0 // link stud 5 to stud 4
+4 16 16.208 20 -75.16797 15.6568 20 -65.6568 16.95692 20 -63.71142 18.94769 20 -64.20925
+4 16 16.208 20 -75.168 15.6568 20 -74.3432 13.3331 20 -67.2097 15.6568 20 -65.6568
+3 16 15.6568 20 -74.3432 13.0616 20 -72.6088 13.3331 20 -67.2097
+3 16 13.0616 20 -72.6088 12.0344 20 -72.4046 13.3331 20 -67.2097
+2 24 18.94769 20 -64.20925 16.95692 20 -63.71142
+2 24 13.3331 20 -67.2097 12.0344 20 -72.4046
+2 24 12.03443 20 -72.40455 13.0616 20 -72.6088
+2 24 13.0616 20 -72.6088 15.6568 20 -74.3432
+2 24 15.6568 20 -74.3432 16.208 20 -75.16797
+2 24 16.208 20 -75.16797 18.94769 20 -64.20925
+2 24 16.208 20 -75.16797 16.208 24 -75.16797
+4 16 18.94769 20 -64.20925 16.95692 20 -63.71142 16.95692 24 -63.71142 18.94769 24 -64.20925
+2 24 18.94769 20 -64.20925 18.94769 24 -64.20925
+2 24 16.95692 20 -63.71142 16.95692 24 -63.71142
+4 16 20.91349 24 -56.34605 20.91349 20 -56.34605 18.94769 20 -64.20925 18.94769 24 -64.20925
+2 24 18.94769 20 -64.20925 20.91349 20 -56.34605
+4 16 20.91349 24 -56.34605 16.20911 24 -55.16963 16.20911 20 -55.16963 20.91349 20 -56.34605
+2 24 16.20911 20 -55.16963 16.20911 24 -55.16963
+2 24 16.20911 20 -55.16963 20.91349 20 -56.34605
+2 24 20.91349 20 -56.34605 20.91349 24 -56.34605
+0 // stud 4
+4 16 15.6568 24 -54.3432 16.06754 20 -54.9578 16.20911 20 -55.16963 16.20911 24 -55.16963
+3 16 15.657 19.12694 -54.343 16.06754 20 -54.9578 15.6568 24 -54.3432
+4 16 13.062 14.44088 -52.609 15.657 19.12694 -54.343 15.6568 24 -54.3432 13.0616 24 -52.6088
+4 16 10 24 -52 12.98529 14.31629 -52.59374 13.062 14.44088 -52.609 13.0616 24 -52.6088
+3 16 10 10.46839 -52 12.98529 14.31629 -52.59374 10 24 -52
+4 16 8.3442 8.465864 -52.32932 10 10.46839 -52 10 24 -52 6.9384 24 -52.6088
+3 16 6.938 8.5218 -52.609 8.3442 8.465864 -52.32932 6.9384 24 -52.6088
+4 16 4.343 8.8686 -54.343 6.938 8.5218 -52.609 6.9384 24 -52.6088 4.3432 24 -54.3432
+4 16 2.609 9.3876 -56.938 4.343 8.8686 -54.343 4.3432 24 -54.3432 2.6088 24 -56.9384
+4 16 2 24 -60 2 10 -60 2.609 9.3876 -56.938 2.6088 24 -56.9384
+4 16 2.6088 24 -63.0616 2.609 10.9186 -63.062 2 10 -60 2 24 -60
+4 16 4.3432 24 -65.6568 4.343 11.6971 -65.657 2.609 10.9186 -63.062 2.6088 24 -63.0616
+4 16 6.9384 24 -67.3912 6.938 12.2173 -67.391 4.343 11.6971 -65.657 4.3432 24 -65.6568
+3 16 8.3442 12.3012 -67.67068 6.938 12.2173 -67.391 6.9384 24 -67.3912
+4 16 10 24 -68 10 14.96205 -68 8.3442 12.3012 -67.67068 6.9384 24 -67.3912
+4 16 13.0616 24 -67.3912 13.062 19.51724 -67.391 10 14.96205 -68 10 24 -68
+3 16 13.0616 24 -67.3912 13.10385 19.57361 -67.36304 13.062 19.51724 -67.391
+3 16 13.33313 20 -67.20973 13.10385 19.57361 -67.36304 13.0616 24 -67.3912
+4 16 15.6568 20 -65.6568 13.33313 20 -67.20973 13.0616 24 -67.3912 15.6568 24 -65.6568
+4 16 16.95692 24 -63.71142 16.95692 20 -63.71142 15.6568 20 -65.6568 15.6568 24 -65.6568
+2 24 16.06754 20 -54.9578 16.20911 20 -55.16963
+2 24 15.657 19.12694 -54.343 16.06754 20 -54.9578
+2 24 13.062 14.44088 -52.609 15.657 19.12694 -54.343
+2 24 12.98529 14.31629 -52.59374 13.062 14.44088 -52.609
+2 24 10 10.46839 -52 12.98529 14.31629 -52.59374
+2 24 8.3442 8.465864 -52.32932 10 10.46839 -52
+2 24 6.938 8.5218 -52.609 8.3442 8.465864 -52.32932
+2 24 4.343 8.8686 -54.343 6.938 8.5218 -52.609
+2 24 2.609 9.3876 -56.938 4.343 8.8686 -54.343
+2 24 2 10 -60 2.609 9.3876 -56.938
+2 24 2.609 10.9186 -63.062 2 10 -60
+2 24 4.343 11.6971 -65.657 2.609 10.9186 -63.062
+2 24 4.343 11.6971 -65.657 6.938 12.2173 -67.391
+2 24 6.938 12.2173 -67.391 8.3442 12.3012 -67.67068
+2 24 8.3442 12.3012 -67.67068 10 14.96205 -68
+2 24 10 14.96205 -68 13.062 19.51724 -67.391
+2 24 13.062 19.51724 -67.391 13.10385 19.57361 -67.36304
+2 24 13.10385 19.57361 -67.36304 13.33313 20 -67.20973
+2 24 13.33313 20 -67.20973 15.6568 20 -65.6568
+2 24 15.6568 20 -65.6568 16.95692 20 -63.71142
+5 24 15.6568 24 -54.3432 15.657 19.1269 -54.343 16.0675 20 -54.9578 13.062 14.4409 -52.609
+5 24 13.0616 24 -52.6088 13.062 14.4409 -52.609 15.657 19.1269 -54.343 10 24 -52
+5 24 10 24 -52 10 10.4684 -52 12.9853 14.3163 -52.5937 8.3442 8.46586 -52.3293
+5 24 6.9384 24 -52.6088 6.938 8.5218 -52.609 8.3442 8.46586 -52.3293 4.343 8.8686 -54.343
+5 24 4.3432 24 -54.3432 4.343 8.8686 -54.343 6.938 8.5218 -52.609 2.609 9.3876 -56.938
+5 24 2.6088 24 -56.9384 2.609 9.3876 -56.938 4.343 8.8686 -54.343 2 24 -60
+5 24 2 24 -60 2 10 -60 2.609 9.3876 -56.938 2.6088 24 -63.0616
+5 24 2.6088 24 -63.0616 2.609 10.9186 -63.062 2 10 -60 4.3432 24 -65.6568
+5 24 4.3432 24 -65.6568 4.343 11.6971 -65.657 2.609 10.9186 -63.062 6.9384 24 -67.3912
+5 24 6.9384 24 -67.3912 6.938 12.2173 -67.391 4.343 11.6971 -65.657 8.3442 12.3012 -67.6707
+5 24 10 24 -68 10 14.9621 -68 8.3442 12.3012 -67.6707 13.0616 24 -67.3912
+5 24 13.0616 24 -67.3912 13.062 19.5172 -67.391 10 14.9621 -68 13.1039 19.5736 -67.363
+5 24 15.6568 24 -65.6568 15.6568 20 -65.6568 13.3331 20 -67.2097 16.9569 24 -63.7114
+0 //
+4 16 16 24 -60 16 21.6558 -60 15.94552 21.6558 -59.72631 15.5434 24 -57.7038
+3 16 15.5434 24 -57.7038 15.94552 21.6558 -59.72631 15.543 20.25068 -57.704
+4 16 14.2426 24 -55.7574 15.5434 24 -57.7038 15.543 20.25068 -57.704 14.243 17.48601 -55.757
+4 16 14.2426 24 -55.7574 14.243 17.48601 -55.757 12.296 13.9705 -54.457 12.2962 24 -54.4566
+4 16 12.2962 24 -54.4566 12.296 13.9705 -54.457 11.87074 13.27974 -54.37235 10 24 -54
+3 16 10 24 -54 11.87074 13.27974 -54.37235 10 10.86839 -54
+4 16 7.7038 24 -54.4566 10 24 -54 10 10.86839 -54 8.3442 8.865915 -54.32957
+3 16 7.7038 24 -54.4566 8.3442 8.865915 -54.32957 7.704 8.8914 -54.457
+4 16 5.7574 24 -55.7574 7.7038 24 -54.4566 7.704 8.8914 -54.457 5.757 9.1514 -55.757
+4 16 4.4566 24 -57.7038 5.7574 24 -55.7574 5.757 9.1514 -55.757 4.457 9.5408 -57.704
+4 16 4.4566 24 -57.7038 4.457 9.5408 -57.704 4 10 -60 4 24 -60
+4 16 4 24 -60 4 10 -60 4.457 10.6888 -62.296 4.4566 24 -62.2962
+4 16 4.4566 24 -62.2962 4.457 10.6888 -62.296 5.757 11.2729 -64.243 5.7574 24 -64.2426
+4 16 5.7574 24 -64.2426 5.757 11.2729 -64.243 7.704 11.6629 -65.543 7.7038 24 -65.5434
+3 16 7.704 11.6629 -65.543 8.3442 11.70113 -65.67043 7.7038 24 -65.5434
+4 16 7.7038 24 -65.5434 8.3442 11.70113 -65.67043 10 14.36205 -66 10 24 -66
+4 16 10 24 -66 10 14.36205 -66 12.296 17.7776 -65.543 12.2962 24 -65.5434
+4 16 12.2962 24 -65.5434 12.296 17.7776 -65.543 14.243 20.40023 -64.243 14.2426 24 -64.2426
+3 16 14.32558 20.4909 -64.11933 14.2426 24 -64.2426 14.243 20.40023 -64.243
+4 16 14.2426 24 -64.2426 14.32558 20.4909 -64.11933 15.15951 21.6558 -62.87034 15.5434 24 -62.2962
+3 16 15.5434 24 -62.2962 15.15951 21.6558 -62.87034 15.5434 21.6558 -62.2962
+4 16 15.5434 24 -62.2962 15.5434 21.6558 -62.2962 16 21.6558 -60 16 24 -60
+2 24 16 21.6558 -60 15.94552 21.6558 -59.72631
+2 24 15.94552 21.6558 -59.72631 15.543 20.25068 -57.704
+2 24 15.543 20.25068 -57.704 14.243 17.48601 -55.757
+2 24 14.243 17.48601 -55.757 12.296 13.9705 -54.457
+2 24 12.296 13.9705 -54.457 11.87074 13.27974 -54.37235
+2 24 11.87074 13.27974 -54.37235 10 10.86839 -54
+2 24 10 10.86839 -54 8.3442 8.865915 -54.32957
+2 24 8.3442 8.865915 -54.32957 7.704 8.8914 -54.457
+2 24 7.704 8.8914 -54.457 5.757 9.1514 -55.757
+2 24 5.757 9.1514 -55.757 4.457 9.5408 -57.704
+2 24 4.457 9.5408 -57.704 4 10 -60
+2 24 4 10 -60 4.457 10.6888 -62.296
+2 24 4.457 10.6888 -62.296 5.757 11.2729 -64.243
+2 24 5.757 11.2729 -64.243 7.704 11.6629 -65.543
+2 24 7.704 11.6629 -65.543 8.3442 11.70113 -65.67043
+2 24 8.3442 11.70113 -65.67043 10 14.36205 -66
+2 24 10 14.36205 -66 12.296 17.7776 -65.543
+2 24 12.296 17.7776 -65.543 14.243 20.40023 -64.243
+2 24 14.243 20.40023 -64.243 14.32558 20.4909 -64.11933
+2 24 14.32558 20.4909 -64.11933 15.15951 21.6558 -62.87034
+2 24 15.15951 21.6558 -62.87034 15.5434 21.6558 -62.2962
+2 24 15.5434 21.6558 -62.2962 16 21.6558 -60
+5 24 16 24 -60 16 21.6558 -60 15.9455 21.6558 -59.7263 15.5434 24 -62.2962
+5 24 15.543 20.2507 -57.704 15.5434 24 -57.7038 15.9455 21.6558 -59.7263 14.2426 24 -55.7574
+5 24 14.243 17.486 -55.757 14.2426 24 -55.7574 15.5434 24 -57.7038 12.296 13.9705 -54.457
+5 24 12.296 13.9705 -54.457 12.2962 24 -54.4566 14.2426 24 -55.7574 11.8707 13.2797 -54.3723
+5 24 10 10.8684 -54 10 24 -54 11.8707 13.2797 -54.3723 7.7038 24 -54.4566
+5 24 7.704 8.8914 -54.457 7.7038 24 -54.4566 8.3442 8.86591 -54.3296 5.7574 24 -55.7574
+5 24 5.757 9.1514 -55.757 5.7574 24 -55.7574 7.7038 24 -54.4566 4.4566 24 -57.7038
+5 24 4.457 9.5408 -57.704 4.4566 24 -57.7038 5.7574 24 -55.7574 4 10 -60
+5 24 4 10 -60 4 24 -60 4.4566 24 -57.7038 4.457 10.6888 -62.296
+5 24 4.457 10.6888 -62.296 4.4566 24 -62.2962 4 24 -60 5.757 11.2729 -64.243
+5 24 5.757 11.2729 -64.243 5.7574 24 -64.2426 4.4566 24 -62.2962 7.704 11.6629 -65.543
+5 24 7.704 11.6629 -65.543 7.7038 24 -65.5434 5.7574 24 -64.2426 8.3442 11.7011 -65.6704
+5 24 10 14.3621 -66 10 24 -66 7.7038 24 -65.5434 12.296 17.7776 -65.543
+5 24 12.296 17.7776 -65.543 12.2962 24 -65.5434 10 24 -66 14.243 20.4002 -64.243
+5 24 14.243 20.4002 -64.243 14.2426 24 -64.2426 12.2962 24 -65.5434 14.3256 20.4909 -64.1193
+5 24 15.5434 21.6558 -62.2962 15.5434 24 -62.2962 15.1595 21.6558 -62.8703 16 21.6558 -60
+0 //
+4 16 15.5434 21.6558 -62.2962 15.1595 21.6558 -62.8703 15.8771 21.6558 -60 16 21.6558 -60
+3 16 15.8771 21.6558 -60 15.9455 21.6558 -59.7263 16 21.6558 -60
+2 24 15.9455 21.6558 -59.7263 15.8771 21.6558 -60
+2 24 15.8771 21.6558 -60 15.1595 21.6558 -62.8703
+0 // link stud 4 to stud 3
+4 16 16.06754 20 -54.9578 18.90486 20 -43.60852 23.79232 20 -44.83073 20.91349 20 -56.34605
+3 16 20.91349 20 -56.34605 16.20911 20 -55.16963 16.06754 20 -54.9578
+2 24 16.06754 20 -54.9578 18.90486 20 -43.60852
+2 24 20.91349 20 -56.34605 23.79232 20 -44.83073
+0 //
+4 16 23.79232 24 -44.83073 23.79232 20 -44.83073 18.90486 20 -43.60852 19.912 21.6558 -43.86038
+3 16 19.91223 24 -43.86044 23.79232 24 -44.83073 19.912 21.6558 -43.86038
+2 24 18.90486 20 -43.60852 23.79232 20 -44.83073
+2 24 23.79232 20 -44.83073 23.79232 24 -44.83073
+2 24 18.90486 20 -43.60852 19.912 21.6558 -43.86038
+2 24 19.912 21.6558 -43.86038 19.912 24 -43.86038
+0 //
+4 16 19.912 24 -43.86038 19.912 21.6558 -43.86038 20.8771 21.6558 -40 21.82796 24 -36.19655
+3 16 20.8771 21.6558 -40 21.82796 21.6558 -36.19655 21.82796 24 -36.19655
+2 24 19.912 21.6558 -43.86038 20.8771 21.6558 -40
+2 24 20.8771 21.6558 -40 21.82796 21.6558 -36.19655
+2 24 21.82796 21.6558 -36.19655 21.82796 24 -36.19655
+0 //
+4 16 25.70828 24 -37.1669 25.70828 20 -37.1669 23.79232 20 -44.83073 23.79232 24 -44.83073
+2 24 23.79232 20 -44.83073 25.70828 20 -37.1669
+2 24 25.70828 20 -37.1669 25.70828 24 -37.1669
+0 // stud 3
+1 16 10 20 -40 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+0 BFC INVERTNEXT
+1 16 10 14 -40 0 0 -6 0 -9 0 -6 0 0 p/2-4cyli.dat
+1 16 10 16 -40 0 0 -8 0 -11 0 -8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 20 -40 0 0 6 0 -6 0 6 0 0 p/4-4cyli.dat
+1 16 10 20 -40 0 0 8 0 -4 0 8 0 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 14 -40 6 0 0 0 -9 0 0 0 6 p/1-4cyls.dat
+1 16 10 16 -40 8 0 0 0 -11 0 0 0 8 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 14 -40 6 0 0 0 -9 0 0 0 -6 p/1-4cyls.dat
+1 16 10 16 -40 8 0 0 0 -11 0 0 0 -8 p/1-4cyls.dat
+2 24 4 6 -40 4.457 5.7704 -37.704
+2 24 4.457 5.7704 -37.704 5.757 5.5757 -35.757
+2 24 5.757 5.5757 -35.757 7.704 5.4457 -34.457
+2 24 7.704 5.4457 -34.457 8.3442 5.432957 -34.32957
+2 24 2 6 -40 2.609 5.6938 -36.938
+2 24 2.609 5.6938 -36.938 4.343 5.4343 -34.343
+2 24 4.343 5.4343 -34.343 6.938 5.2609 -32.609
+2 24 6.938 5.2609 -32.609 8.3442 5.232932 -32.32932
+2 24 7.704 7.1086 -45.543 8.3442 7.134085 -45.67043
+2 24 5.757 6.8486 -44.243 7.704 7.1086 -45.543
+2 24 5.757 6.8486 -44.243 4.457 6.4592 -42.296
+2 24 4.457 6.4592 -42.296 4 6 -40
+2 24 6.938 7.4782 -47.391 8.3442 7.534136 -47.67068
+2 24 4.343 7.1314 -45.657 6.938 7.4782 -47.391
+2 24 4.343 7.1314 -45.657 2.609 6.6124 -43.062
+2 24 2.609 6.6124 -43.062 2 6 -40
+2 24 14.243 12.04358 -35.757 15.543 14.27554 -37.704
+2 24 16 15.56344 -40 15.543 14.27554 -37.704
+2 24 15.657 13.36833 -34.343 17.391 16.3448 -36.938
+2 24 18 18.0618 -40 17.391 16.3448 -36.938
+2 24 12.8684 10.03983 -34.83919 14.243 12.04358 -35.757
+2 24 14.1728 11.20458 -33.35124 15.657 13.36833 -34.343
+2 24 8.3442 5.432957 -34.32957 10 7.067407 -34
+2 24 8.3442 5.232932 -32.32932 10 6.867407 -32
+2 24 12.296 9.425201 -34.457 12.8684 10.03983 -34.83919
+2 24 10 7.067407 -34 12.296 9.425201 -34.457
+2 24 13.062 10.01177 -32.609 14.1728 11.20458 -33.35124
+2 24 10 6.867407 -32 13.062 10.01177 -32.609
+2 24 15.543 15.45177 -42.296 16 15.56344 -40
+2 24 14.243 14.21724 -44.243 15.543 15.45177 -42.296
+2 24 12.296 12.0451 -45.543 14.243 14.21724 -44.243
+2 24 17.391 17.91345 -43.062 18 18.0618 -40
+2 24 15.657 16.26638 -45.657 17.391 17.91345 -43.062
+2 24 13.062 13.37157 -47.391 15.657 16.26638 -45.657
+2 24 10 9.268388 -46 12.296 12.0451 -45.543
+2 24 10 9.668388 -48 13.062 13.37157 -47.391
+2 24 8.3442 7.134085 -45.67043 10 9.268388 -46
+2 24 8.3442 7.534136 -47.67068 10 9.668388 -48
+0 // link stud 3 to stud 2
+4 16 25.70828 20 -37.1669 25.70828 24 -37.1669 21.82796 24 -36.19655 21.82796 21.6558 -36.19655
+3 16 21.82796 21.6558 -36.19655 20.58044 20 -35.88458 25.70828 20 -37.1669
+2 24 21.82796 21.6558 -36.19655 20.58044 20 -35.88458
+2 24 20.58044 20 -35.88458 25.70828 20 -37.1669
+4 16 28.4019 20 -26.39243 25.70828 20 -37.1669 20.58044 20 -35.88458 23.27406 20 -25.11011
+2 24 23.27406 20 -25.11011 20.58044 20 -35.88458
+2 24 28.4019 20 -26.39243 25.70828 20 -37.1669
+2 24 23.27406 20 -25.11011 28.4019 20 -26.39243
+4 16 23.27406 20 -25.11011 24.52158 21.6558 -25.42208 28.4019 24 -26.39243 28.4019 20 -26.39243
+2 24 23.27406 20 -25.11011 24.52158 21.6558 -25.42208
+3 16 24.52158 21.6558 -25.42208 24.52161 24 -25.42208 28.4019 24 -26.39243
+0 // stud 2
+1 16 10 20 -20 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+0 BFC INVERTNEXT
+1 16 10 20 -20 0 0 -6 0 -16 0 6 0 0 p/2-4cyli.dat
+1 16 10 20 -20 0 0 -8 0 -16 0 8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 20 -20 0 0 6 0 -10 0 6 0 0 p/2-4cyli.dat
+1 16 10 20 -20 0 0 8 0 -8 0 8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 10 -20 6 0 0 0 -6 0 0 0 -6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 10 -20 6 0 0 0 -6 0 0 0 6 p/1-4cyls.dat
+1 16 10 12 -20 8 0 0 0 -8 0 0 0 -8 p/1-4cyls.dat
+1 16 10 12 -20 8 0 0 0 -8 0 0 0 8 p/1-4cyls.dat
+2 24 7.704 4 -14.457 8.3442 4 -14.32957
+2 24 5.757 4 -15.757 7.704 4 -14.457
+2 24 6.938 4 -12.609 8.3442 4 -12.32932
+2 24 4.343 4 -14.343 6.938 4 -12.609
+2 24 4.457 4 -17.704 5.757 4 -15.757
+2 24 4 4 -20 4.457 4 -17.704
+2 24 2.609 4 -16.938 4.343 4 -14.343
+2 24 2 4 -20 2.609 4 -16.938
+2 24 5.757 4.4243 -24.243 4.457 4.2296 -22.296
+2 24 5.757 4.4243 -24.243 7.704 4.5543 -25.543
+2 24 7.704 4.5543 -25.543 8.3442 4.567043 -25.67043
+2 24 4.343 4.5657 -25.657 2.609 4.3062 -23.062
+2 24 4.343 4.5657 -25.657 6.938 4.7391 -27.391
+2 24 6.938 4.7391 -27.391 8.3442 4.767068 -27.67068
+2 24 4.457 4.2296 -22.296 4 4 -20
+2 24 2.609 4.3062 -23.062 2 4 -20
+2 24 8.3442 4.567043 -25.67043 10 6.267407 -26
+2 24 8.3442 4.767068 -27.67068 10 6.467407 -28
+2 24 15.543 11.47886 -22.296 16 11.70946 -20
+2 24 14.243 10.36445 -24.243 15.543 11.47886 -22.296
+2 24 12.296 8.533801 -25.543 14.243 10.36445 -24.243
+2 24 17.391 13.41642 -23.062 18 13.72348 -20
+2 24 15.657 11.92976 -25.657 17.391 13.41642 -23.062
+2 24 10 6.267407 -26 12.296 8.533801 -25.543
+2 24 13.062 9.48997 -27.391 15.657 11.92976 -25.657
+2 24 10 6.467407 -28 13.062 9.48997 -27.391
+2 24 15.543 11.1988 -17.704 14.243 9.8988 -15.757
+2 24 15.95794 11.61374 -19.7887 15.543 11.1988 -17.704
+2 24 17.391 13.0468 -16.938 15.657 11.3128 -14.343
+2 24 17.94699 13.60279 -19.73349 17.391 13.0468 -16.938
+2 24 12.296 7.9518 -14.457 14.243 9.8988 -15.757
+2 24 10 5.6558 -14 12.296 7.9518 -14.457
+2 24 13.062 8.7178 -12.609 15.657 11.3128 -14.343
+2 24 10 5.6558 -12 13.062 8.7178 -12.609
+2 24 8.3442 4 -14.32957 10 5.6558 -14
+2 24 8.3442 4 -12.32932 10 5.6558 -12
+2 24 16 11.70946 -20 15.95794 11.61374 -19.7887
+2 24 18 13.72348 -20 17.94699 13.60279 -19.73349
+0 // inner left surface
+4 16 24.52158 24 -25.42208 24.52158 21.6558 -25.42208 25.8771 21.6558 -20 26 24 -19.51
+2 24 24.52158 21.6558 -25.42208 25.8771 21.6558 -20
+2 24 24.52158 21.6558 -25.42208 24.52161 24 -25.42208
+3 16 25.8771 21.6558 -20 26 21.6558 -19.51 26 24 -19.51
+2 24 25.8771 21.6558 -20 26 21.6558 -19.51
+4 16 26 24 -19.51 26 21.6558 -19.51 26 21.6558 16 26 24 16
+2 24 26 21.6558 -19.51 26 21.6558 16
+5 24 26 21.6558 -19.51 26 24 -19.51 25.8771 21.6558 -20 26 21.6558 16
+0 // outer left surface
+4 16 30 24 -20 30 20 -20 28.4019 20 -26.39243 28.4019 24 -26.39243
+2 24 28.4019 20 -26.39243 30 20 -20
+2 24 28.4019 20 -26.39243 28.4019 24 -26.39243
+4 16 30 24 20 30 20 20 30 20 -20 30 24 -20
+2 24 30 20 -20 30 20 20
+5 24 30 20 -20 30 24 -20 28.2649 24 -26.9406 30 20 20
+0 // stud 1
+1 16 10 20 0 1 0 0 0 -1 0 0 0 1 p/stud4a.dat
+0 BFC INVERTNEXT
+1 16 10 20 0 0 0 -6 0 -16 0 6 0 0 p/2-4cyli.dat
+1 16 10 20 0 0 0 -8 0 -16 0 8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 20 0 0 0 6 0 -10 0 6 0 0 p/2-4cyli.dat
+1 16 10 20 0 0 0 8 0 -8 0 8 0 0 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 10 10 0 6 0 0 0 -6 0 0 0 -6 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 10 10 0 6 0 0 0 -6 0 0 0 6 p/1-4cyls.dat
+1 16 10 12 0 8 0 0 0 -8 0 0 0 -8 p/1-4cyls.dat
+1 16 10 12 0 8 0 0 0 -8 0 0 0 8 p/1-4cyls.dat
+2 24 7.704 4 5.543 8.3442 4 5.670427
+2 24 5.757 4 4.243 7.704 4 5.543
+2 24 4.457 4 2.296 5.757 4 4.243
+2 24 4 4 0 4.457 4 2.296
+2 24 4.457 4 -2.296 4 4 0
+2 24 5.757 4 -4.243 4.457 4 -2.296
+2 24 5.757 4 -4.243 7.704 4 -5.543
+2 24 7.704 4 -5.543 8.3442 4 -5.670427
+2 24 6.938 4 7.391 8.3442 4 7.670679
+2 24 4.343 4 5.657 6.938 4 7.391
+2 24 2.609 4 3.062 4.343 4 5.657
+2 24 2 4 0 2.609 4 3.062
+2 24 2.609 4 -3.062 2 4 0
+2 24 4.343 4 -5.657 2.609 4 -3.062
+2 24 4.343 4 -5.657 6.938 4 -7.391
+2 24 6.938 4 -7.391 8.3442 4 -7.670679
+2 24 17.391 13.0468 -3.062 18 13.6558 0
+2 24 15.657 11.3128 -5.657 17.391 13.0468 -3.062
+2 24 13.062 8.7178 -7.391 15.657 11.3128 -5.657
+2 24 8.3442 4 5.670427 10 5.6558 6
+2 24 8.3442 4 -5.670427 10 5.6558 -6
+2 24 8.3442 4 7.670679 10 5.6558 8
+2 24 8.3442 4 -7.670679 10 5.6558 -8
+2 24 15.543 11.1988 2.296 14.243 9.8988 4.243
+2 24 16 11.6558 0 15.543 11.1988 2.296
+2 24 15.543 11.1988 -2.296 16 11.6558 0
+2 24 14.243 9.8988 -4.243 15.543 11.1988 -2.296
+2 24 17.391 13.0468 3.062 15.657 11.3128 5.657
+2 24 18 13.6558 0 17.391 13.0468 3.062
+2 24 12.296 7.9518 -5.543 14.243 9.8988 -4.243
+2 24 10 5.6558 -6 12.296 7.9518 -5.543
+2 24 12.296 7.9518 5.543 14.243 9.8988 4.243
+2 24 10 5.6558 6 12.296 7.9518 5.543
+2 24 10 5.6558 -8 13.062 8.7178 -7.391
+2 24 13.062 8.7178 7.391 15.657 11.3128 5.657
+2 24 10 5.6558 8 13.062 8.7178 7.391
+0 // inner top surface
+4 16 -6 20 -96 -6 20 -90.1314 8.3442 20 -90.1314 6.877 20 -96
+3 16 -6 4 16 8.3442 4 16 8.3442 4 -20
+3 16 -6 4 16 8.3442 4 -20 -6 4 -20
+3 16 8.3442 4 -20 8.3442 6 -40 -6 6 -40
+3 16 8.3442 4 -20 -6 6 -40 -6 4 -20
+3 16 6.938 8.5218 -52.609 -6 10 -60 -6 6 -40
+3 16 6.938 8.5218 -52.609 -6 6 -40 8.3442 6 -40
+3 16 8.3442 8.46586 -52.3293 6.938 8.5218 -52.609 8.3442 6 -40
+3 16 4 10 -60 4.457 9.5408 -57.704 5.757 9.1514 -55.757
+3 16 4 10 -60 5.757 9.1514 -55.757 7.704 8.8914 -54.457
+3 16 7.704 8.8914 -54.457 8.3442 8.86591 -54.3296 8.3442 10 -60
+3 16 7.704 8.8914 -54.457 8.3442 10 -60 4 10 -60
+3 16 -6 10 -60 6.938 8.5218 -52.609 4.343 8.8686 -54.343
+3 16 -6 10 -60 4.343 8.8686 -54.343 2.609 9.3876 -56.938
+3 16 2.609 9.3876 -56.938 2 10 -60 -6 10 -60
+3 16 8.3442 4 -20 25.8771 21.6558 -20 8.3442 6 -40
+3 16 2 16 -80 -6 16 -80 -6 10 -60
+3 16 2 16 -80 -6 10 -60 2.609 15.0814 -76.938
+3 16 2.609 10.9186 -63.062 8.3442 13.6988 -72.3293 6.938 13.7827 -72.609
+3 16 2.609 10.9186 -63.062 6.938 13.7827 -72.609 -6 10 -60
+3 16 2 10 -60 2.609 10.9186 -63.062 -6 10 -60
+3 16 8.3442 13.6988 -72.3293 2.609 10.9186 -63.062 4.343 11.6971 -65.657
+3 16 8.3442 13.6988 -72.3293 4.343 11.6971 -65.657 6.938 12.2173 -67.391
+3 16 6.938 12.2173 -67.391 8.3442 12.3012 -67.6707 8.3442 13.6988 -72.3293
+3 16 8.3442 10 -60 8.3442 11.7011 -65.6704 7.704 11.6629 -65.543
+3 16 8.3442 10 -60 7.704 11.6629 -65.543 5.757 11.2729 -64.243
+3 16 5.757 11.2729 -64.243 4.457 10.6888 -62.296 4 10 -60
+3 16 5.757 11.2729 -64.243 4 10 -60 8.3442 10 -60
+3 16 -6 10 -60 6.938 13.7827 -72.609 4.343 14.3029 -74.343
+3 16 -6 10 -60 4.343 14.3029 -74.343 2.609 15.0814 -76.938
+3 16 4 16 -80 4.457 15.3112 -77.704 5.757 14.7271 -75.757
+3 16 4 16 -80 5.757 14.7271 -75.757 7.704 14.3371 -74.457
+3 16 7.704 14.3371 -74.457 8.3442 14.2989 -74.3296 8.3442 16 -80
+3 16 7.704 14.3371 -74.457 8.3442 16 -80 4 16 -80
+3 16 -6 16 -80 4.343 18.2335 -85.657 8.3442 20 -90.1314
+3 16 -6 16 -80 8.3442 20 -90.1314 -6 20 -90.1314
+3 16 -6 16 -80 2 16 -80 2.609 17.2089 -83.062
+3 16 2.609 17.2089 -83.062 4.343 18.2335 -85.657 -6 16 -80
+3 16 7.704 18.1884 -85.543 5.757 17.6752 -84.243 4.457 16.9065 -82.296
+3 16 7.704 18.1884 -85.543 4.457 16.9065 -82.296 4 16 -80
+3 16 4 16 -80 8.3442 16 -80 8.3442 18.2388 -85.6704
+3 16 4 16 -80 8.3442 18.2388 -85.6704 7.704 18.1884 -85.543
+3 16 8.3442 20 -90.1314 4.343 18.2335 -85.657 6.938 18.9181 -87.391
+3 16 6.938 18.9181 -87.391 8.3442 19.0285 -87.6707 8.3442 20 -90.1314
+3 16 8.3442 20 -90.1314 8.3442 19.0285 -87.6707 8.93025 20.3831 -87.7872
+3 16 9.4066 20.6945 -85.8819 8.3442 18.2388 -85.6704 8.3442 16 -80
+3 16 9.4066 20.6945 -85.8819 8.3442 16 -80 10.8771 21.6558 -80
+3 16 10.5619 17.6651 -74.1119 12.2644 21.6558 -74.4507 10.8771 21.6558 -80
+3 16 10.5619 17.6651 -74.1119 10.8771 21.6558 -80 8.3442 16 -80
+3 16 8.3442 14.2989 -74.3296 10 16.762 -74 10.5619 17.6651 -74.1119
+3 16 8.3442 14.2989 -74.3296 10.5619 17.6651 -74.1119 8.3442 16 -80
+3 16 15.8771 21.6558 -60 8.3442 10 -60 11.8707 13.2797 -54.3723
+3 16 15.8771 21.6558 -60 11.8707 13.2797 -54.3723 12.296 13.9705 -54.457
+3 16 12.296 13.9705 -54.457 14.243 17.486 -55.757 15.543 20.2507 -57.704
+3 16 12.296 13.9705 -54.457 15.543 20.2507 -57.704 15.9455 21.6558 -59.7263
+3 16 15.9455 21.6558 -59.7263 15.8771 21.6558 -60 12.296 13.9705 -54.457
+3 16 19.912 21.6558 -43.8604 18.9049 20 -43.6085 20.8771 21.6558 -40
+3 16 15.657 19.1269 -54.343 18.9049 20 -43.6085 16.0676 20 -54.9575
+3 16 13.062 14.4409 -52.609 20.8771 21.6558 -40 18.9049 20 -43.6085
+3 16 13.062 14.4409 -52.609 18.9049 20 -43.6085 15.657 19.1269 -54.343
+3 16 13.062 14.4409 -52.609 12.9853 14.3163 -52.5937 20.8771 21.6558 -40
+3 16 8.3442 6 -40 20.8771 21.6558 -40 12.9853 14.3163 -52.5937
+3 16 8.3442 6 -40 12.9853 14.3163 -52.5937 10 10.4684 -52
+3 16 10 10.4684 -52 8.3442 8.46586 -52.3293 8.3442 6 -40
+3 16 8.3442 8.86591 -54.3296 10 10.8684 -54 11.8707 13.2797 -54.3723
+3 16 8.3442 8.86591 -54.3296 11.8707 13.2797 -54.3723 8.3442 10 -60
+3 16 15.8771 21.6558 -60 15.1595 21.6558 -62.8703 14.3256 20.4909 -64.1193
+3 16 11.2628 18.1913 -72.2511 10 16.1621 -72 10 14.9621 -68
+3 16 8.3442 12.3012 -67.6707 10 14.9621 -68 10 16.1621 -72
+3 16 11.2628 18.1913 -72.2511 10 14.9621 -68 13.062 19.5172 -67.391
+3 16 13.062 19.5172 -67.391 13.1039 19.5736 -67.363 11.2628 18.1913 -72.2511
+3 16 8.3442 10 -60 15.8771 21.6558 -60 14.3256 20.4909 -64.1193
+3 16 8.3442 10 -60 14.3256 20.4909 -64.1193 14.243 20.4002 -64.243
+3 16 14.243 20.4002 -64.243 12.296 17.7776 -65.543 10 14.3621 -66
+4 16 10 14.3621 -66 8.3442 11.7011 -65.6704 8.3442 10 -60 14.243 20.4002 -64.243
+3 16 10 16.1621 -72 8.3442 13.6988 -72.3293 8.3442 12.3012 -67.6707
+3 16 13.3331 20 -67.2098 12.0344 20 -72.4046 11.2628 18.1913 -72.2511
+3 16 13.3331 20 -67.2098 11.2628 18.1913 -72.2511 13.1039 19.5736 -67.363
+4 16 26 21.6558 16 26 21.6558 -19.51 8.3442 4 -20 8.3442 4 16
+3 16 26 21.6558 -19.51 25.8771 21.6558 -20 8.3442 4 -20
+3 16 23.2741 20 -25.1101 8.3442 6 -40 25.8771 21.6558 -20
+3 16 23.2741 20 -25.1101 20.5804 20 -35.8846 8.3442 6 -40
+3 16 25.8771 21.6558 -20 24.5216 21.6558 -25.4221 23.2741 20 -25.1101
+3 16 20.5804 20 -35.8846 21.828 21.6558 -36.1966 20.8771 21.6558 -40
+3 16 8.3442 6 -40 20.5804 20 -35.8846 20.8771 21.6558 -40
+2 24 -6 20 -96 -6 20 -90.1314
+2 24 -6 20 -90.1314 8.3442 20 -90.1314
+2 24 8.3442 20 -90.1314 8.3442 19.02848 -87.67068
+2 24 8.3442 18.23875 -85.67043 8.3442 16 -80
+2 24 8.3442 16 -80 8.3442 14.29887 -74.32957
+2 24 8.3442 12.30121 -67.67068 8.3442 13.6988 -72.32932
+2 24 8.3442 8.865915 -54.32957 8.3442 10 -60
+2 24 8.3442 10 -60 8.3442 11.70113 -65.67043
+2 24 8.3442 8.465864 -52.32932 8.3442 6 -40
+2 24 8.3442 6 -40 8.3442 4 -20
+2 24 8.3442 4 -20 8.3442 4 16
+5 24 8.3442 4 -20 -6 4 -20 -6 4 16 -6 6 -40
+5 24 8.3442 6 -40 -6 6 -40 8.3442 4 -20 6.938 8.5218 -52.609
+5 24 8.3442 10 -60 4 10 -60 7.704 8.8914 -54.457 5.757 11.2729 -64.243
+5 24 2 10 -60 -6 10 -60 2.609 9.3876 -56.938 2.609 10.9186 -63.062
+5 24 8.3442 4 -20 25.8771 21.6558 -20 8.3442 6 -40 26 21.6558 -19.51
+5 24 25.8771 21.6558 -20 8.3442 6 -40 8.3442 4 -20 23.2741 20 -25.1101
+5 24 2 16 -80 -6 16 -80 -6 10 -60 2.609 17.2089 -83.062
+5 24 8.3442 16 -80 4 16 -80 7.704 14.3371 -74.457 8.3442 18.2388 -85.6704
+5 24 8.3442 16 -80 10.8771 21.6558 -80 9.4066 20.6945 -85.8819 10.5619 17.6651 -74.1119
+5 24 8.3442 16 -80 10.5619 17.6651 -74.1119 10.8771 21.6558 -80 8.3442 14.2989 -74.3296
+5 24 15.8771 21.6558 -60 8.3442 10 -60 11.8707 13.2797 -54.3723 14.3256 20.4909 -64.1193
+5 24 8.3442 10 -60 11.8707 13.2797 -54.3723 15.8771 21.6558 -60 8.3442 8.86591 -54.3296
+5 24 12.9853 14.3163 -52.5937 20.8771 21.6558 -40 13.062 14.4409 -52.609 8.3442 6 -40
+5 24 14.3256 20.4909 -64.1193 15.8771 21.6558 -60 15.1595 21.6558 -62.8703 8.3442 10 -60
+5 24 13.1039 19.5736 -67.363 11.2628 18.1913 -72.2511 13.062 19.5172 -67.391 13.3331 20 -67.2098
+5 24 26 21.6558 -19.51 8.3442 4 -20 26 21.6558 16 25.8771 21.6558 -20
+5 24 8.3442 6 -40 20.8771 21.6558 -40 12.9853 14.3163 -52.5937 20.5804 20 -35.8846
+0 // outer top surface
+4 16 -10 0 -20 10 0 -20 10 0 20 -10 0 20
+
+0 FILE p/1-4ring3.dat
+0 Ring  3 x 0.25
+0 Name: 1-4ring3.dat
+0 Author: Karim Nassar
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2003-01-21 [cavehop] Update Added BFC and 1 digit of significance
+0 !HISTORY 2003-05-21 [cavehop] Corrected values as indicated by pneaster
+0 !HISTORY 2003-06-12 [cavehop] Re-corrected values as indicated by pneaster
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 4 0 0 3.6956 0 1.5308 2.7717 0 1.1481 3 0 0
+4 16 3.6956 0 1.5308 2.8284 0 2.8284 2.1213 0 2.1213 2.7717 0 1.1481
+4 16 2.8284 0 2.8284 1.5308 0 3.6956 1.1481 0 2.7717 2.1213 0 2.1213
+4 16 1.5308 0 3.6956 0 0 4 0 0 3 1.1481 0 2.7717
+
+0 FILE p/1-4edge.dat
+0 Circle 0.25
+0 Name: 1-4edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+
+0 FILE parts/32073.dat
+0 Technic Axle  5
+0 Name: 32073.dat
+0 Author: William Howard [WilliamH]
+0 !LDRAW_ORG Part UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 50 0 0 0 -100 0 1 0 0 0 0 1 p/axle.dat
+0
+
+0 FILE p/axle.dat
+0 Axle
+0 Name: axle.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2000-04-23 [sbliss] Added conditional edges along outermost diameters
+0 !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
+0 !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+5 24 6 0 0 6 1 0 5.602 0 2 5.602 0 -2
+5 24 0 0 6 0 1 6 2 0 5.602 -2 0 5.602
+5 24 -6 0 0 -6 1 0 -5.602 0 -2 -5.602 0 2
+5 24 0 0 -6 0 1 -6 -2 0 -5.602 2 0 -5.602
+
+2 24 6    0 0    5.602 0 2
+2 24 5.602 0 2    2    0 2
+2 24 2    0 2    2    0 5.602
+2 24 2    0 5.602 0    0 6
+2 24 -6    0 0    -5.602 0 2
+2 24 -5.602 0 2    -2    0 2
+2 24 -2    0 2    -2    0 5.602
+2 24 -2    0 5.602 -0    0 6
+2 24 6    0 -0    5.602 0 -2
+2 24 5.602 0 -2    2    0 -2
+2 24 2    0 -2    2    0 -5.602
+2 24 2    0 -5.602 0    0 -6
+2 24 -6    0 -0    -5.602 0 -2
+2 24 -5.602 0 -2    -2    0 -2
+2 24 -2    0 -2    -2    0 -5.602
+2 24 -2    0 -5.602 -0    0 -6
+2 24 6    1 0    5.602 1 2
+2 24 5.602 1 2    2    1 2
+2 24 2    1 2    2    1 5.602
+2 24 2    1 5.602 0    1 6
+2 24 -6    1 0    -5.602 1 2
+2 24 -5.602 1 2    -2    1 2
+2 24 -2    1 2    -2    1 5.602
+2 24 -2    1 5.602 -0    1 6
+2 24 6    1 -0    5.602 1 -2
+2 24 5.602 1 -2    2    1 -2
+2 24 2    1 -2    2    1 -5.602
+2 24 2    1 -5.602 0    1 -6
+2 24 -6    1 -0    -5.602 1 -2
+2 24 -5.602 1 -2    -2    1 -2
+2 24 -2    1 -2    -2    1 -5.602
+2 24 -2    1 -5.602 -0    1 -6
+
+2 24 5.602 0 2    5.602 1 2
+2 24 2    0 2    2    1 2
+2 24 2    0 5.602 2    1 5.602
+2 24 -5.602 0 2    -5.602 1 2
+2 24 -2    0 2    -2    1 2
+2 24 -2    0 5.602 -2    1 5.602
+2 24 5.602 0 -2    5.602 1 -2
+2 24 2    0 -2    2    1 -2
+2 24 2    0 -5.602 2    1 -5.602
+2 24 -5.602 0 -2    -5.602 1 -2
+2 24 -2    0 -2    -2    1 -2
+2 24 -2    0 -5.602 -2    1 -5.602
+
+4 16 6    0 0    6    1 0    5.602 1 2    5.602 0 2
+4 16 5.602 0 2    5.602 1 2    2    1 2    2    0 2
+4 16 2    0 2 2    1 2 2    1 5.602    2    0 5.602
+4 16 2    0 5.602    2    1 5.602    0    1 6 0    0 6
+4 16 -6    0 0    -5.602 0 2    -5.602 1 2    -6    1 0
+4 16 -5.602 0 2    -2    0 2    -2    1 2    -5.602 1 2
+4 16 -2    0 2    -2    0 5.602 -2    1 5.602 -2    1 2
+4 16 -2    0 5.602 -0    0 6    -0    1 6    -2    1 5.602
+4 16 6    0 -0    5.602 0 -2    5.602 1 -2    6    1 -0
+4 16 5.602 0 -2    2    0 -2    2    1 -2    5.602 1 -2
+4 16 2    0 -2    2    0 -5.602 2    1 -5.602 2    1 -2
+4 16 2    0 -5.602 0    0 -6    0    1 -6    2    1 -5.602
+4 16 -6    0 -0    -6    1 -0    -5.602 1 -2    -5.602 0 -2
+4 16 -5.602 0 -2    -5.602 1 -2    -2    1 -2    -2    0 -2
+4 16 -2    0 -2 -2    1 -2 -2    1 -5.602    -2    0 -5.602
+4 16 -2    0 -5.602    -2    1 -5.602    -0    1 -6 -0    0 -6
+
+4 16 6 0 0 5.602 0 2 2 0 2 0 0 0
+4 16 -6 0 0 0 0 0 -2 0 2 -5.602 0 2
+4 16 6 0 0 0 0 0 2 0 -2 5.602 0 -2
+4 16 -6 0 0 -5.602 0 -2 -2 0 -2 0 0 0
+4 16 0 0 6 0 0 0 2 0 2 2 0 5.602
+4 16 0 0 6 -2 0 5.602 -2 0 2 0 0 0
+4 16 0 0 -6 2 0 -5.602 2 0 -2 0 0 0
+4 16 0 0 -6 0 0 0 -2 0 -2 -2 0 -5.602
+4 16 6 1 0 0 1 0 2 1 2 5.602 1 2
+4 16 -6 1 0 -5.602 1 2 -2 1 2 0 1 0
+4 16 6 1 0 5.602 1 -2 2 1 -2 0 1 0
+4 16 -6 1 0 0 1 0 -2 1 -2 -5.602 1 -2
+4 16 0 1 6 2 1 5.602 2 1 2 0 1 0
+4 16 0 1 6 0 1 0 -2 1 2 -2 1 5.602
+4 16 0 1 -6 0 1 0 2 1 -2 2 1 -5.602
+4 16 0 1 -6 -2 1 -5.602 -2 1 -2 0 1 0
+0
+
+0 FILE parts/3022.dat
+0 Plate  2 x  2
+0 Name: 3022.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT 
+1 16 0 8 0 16 0 0 0 -4 0 0 0 16 p/box5.dat
+
+4 16 20 8 20 16 8 16 -16 8 16 -20 8 20
+0 Next Line was 4 16 20 8 -20 16 8 -16 -16 8 -16 -20 8 -20
+4 16 -20 8 -20 -16 8 -16 16 8 -16 20 8 -20
+0 Next Line was 4 16 20 8 20 16 8 16 16 8 -16 20 8 -20
+4 16 20 8 -20 16 8 -16 16 8 16 20 8 20
+4 16 -20 8 20 -16 8 16 -16 8 -16 -20 8 -20
+
+1 16 0 8 0 20 0 0 0 -8 0 0 0 20 p/box5.dat
+
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE parts/41769.dat
+0 Wing  2 x  4 Right
+0 Name: 41769.dat
+0 Author: Marc Schickele [samrotule]
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS wedge plate
+
+0 !HISTORY 2002-12-31 [PTadmin] Official Update 2002-06
+0 !HISTORY 2004-10-02 [guyvivan] made BFC Compliant, corected mirrored stud
+0 !HISTORY 2004-10-15 [Steffen] corrected mirroed stud logos
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 -1 0 0 0 1 0 0 0 1 parts/s/41770s01.dat
+1 16 10 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/41770.dat
+0 Wing  2 x  4 Left
+0 Name: 41770.dat
+0 Author: Marc Schickele [samrotule]
+0 !LDRAW_ORG Part UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+0 !KEYWORDS wedge plate
+
+0 !HISTORY 2002-12-31 [PTadmin] Official Update 2002-06
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2004-10-02 [guyvivan] made BFC Compliant, corrected mirrored stud
+0 !HISTORY 2004-10-15 [Steffen] un-mirrored all studs
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-07-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/41770s01.dat
+1 16 -10 0 30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 -10 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 -30 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE parts/s/41770s01.dat
+0 ~Wing  2 x  4 Left without studs
+0 Name: s\41770s01.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Subpart UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-09-05 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 20 -1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 -1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 8 -20 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/2-4edge.dat
+1 16 0 4 -20 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/2-4edge.dat
+1 16 0 4 -20 -2.2961 0 -5.54328 0 -1 0 -5.54328 0 2.2961 p/2-4disc.dat
+1 16 0 4 0 0 0 -6 0 -1 0 -6 0 0 p/4-4disc.dat
+0 BFC INVERTNEXT
+1 16 0 8 -20 -2.2961 0 -5.54328 0 -4 0 -5.54328 0 2.2961 p/2-4cyli.dat
+1 16 0 8 -20 -3.06147 0 -7.39104 0 -1 0 -7.39104 0 3.06147 p/2-4edge.dat
+1 16 0 4 -20 -3.06147 0 -7.39104 0 -1 0 -7.39104 0 3.06147 p/2-4edge.dat
+1 16 0 8 -20 -3.06147 0 -7.39104 0 -4 0 -7.39104 0 3.06147 p/2-4cyli.dat
+1 16 0 8 -20 -0.765367 0 -1.84776 0 -1 0 -1.84776 0 0.765367 p/2-4ring3.dat
+1 16 0 4 -20 0 0 -8 0 -1 0 -8 0 0 p/2-4ndis.dat
+1 16 0 4 0 0 0 -8 0 -1 0 -8 0 0 p/2-4ndis.dat
+4 16 -20 0 40 -20 0 -40 0 0 -40 20 0 40
+2 24 0 0 -40 20 0 40
+1 16 -10 4 -40 0 0 10 4 0 0 0 1 0 p/rect3.dat
+1 16 0 4 40 0 0 20 -4 0 0 0 -1 0 p/rect3.dat
+1 16 -20 4 0 0 1 0 -4 0 0 0 0 40 p/rect.dat
+1 16 -16 6 0 0 -1 0 2 0 0 0 0 36 p/rect.dat
+4 16 20 8 40 20 0 40 18.27 4 33.06 18.27 8 33.06
+2 24 18.27 4 33.06 18.27 8 33.06
+2 24 18.27 8 33.06 20 8 40
+2 24 15.86 4 23.423 18.27 4 33.06
+4 16 13.81 8 15.25 15.86 8 23.423 15.86 4 23.423 13.81 4 15.25
+2 24 13.81 8 15.25 15.86 8 23.423
+2 24 15.86 8 23.423 15.86 4 23.423
+2 24 13.81 4 15.25 13.81 8 15.25
+2 24 10.91 4 3.62 13.81 4 15.25
+4 16 8.95 8 -4.21 10.91 8 3.62 10.91 4 3.62 8.95 4 -4.21
+2 24 8.95 8 -4.21 10.91 8 3.62
+2 24 10.91 8 3.62 10.91 4 3.62
+2 24 8.95 4 -4.21 8.95 8 -4.21
+2 24 6.25 4 -14.99 8.95 4 -4.21
+3 16 6.25 4 -14.99 20 0 40 0 0 -40
+3 16 6.25 4 -14.99 18.27 4 33.06 20 0 40
+4 16 0 8 -40 6.25 8 -14.99 6.25 4 -14.99 0 0 -40
+2 24 0 8 -40 6.25 8 -14.99
+2 24 6.25 8 -14.99 6.25 4 -14.99
+4 16 8.95 4 -4.21 6.956 4 -3.714 6.956 8 -3.714 8.95 8 -4.21
+2 24 8.95 4 -4.21 6.956 4 -3.714
+2 24 6.956 4 -3.714 6.956 8 -3.714
+2 24 6.956 8 -3.714 8.95 8 -4.21
+3 16 6.956 8 -3.714 7.392 8 -3.064 8.95 8 -4.21
+3 16 8.95 8 -4.21 7.392 8 -3.064 8 8 0
+3 16 10.91 8 3.62 8.95 8 -4.21 8 8 0
+3 16 10.91 8 3.62 8 8 0 7.392 8 3.064
+3 16 10.91 8 3.62 7.392 8 3.064 6.235 8 4.791
+2 24 6.235 4 4.791 6.235 8 4.791
+4 16 10.91 8 3.62 6.235 8 4.791 6.235 4 4.791 10.91 4 3.62
+2 24 10.91 8 3.62 6.235 8 4.791
+2 24 6.235 4 4.791 10.91 4 3.62
+4 16 18.27 4 33.06 14.38 4 34.03 14.38 8 34.03 18.27 8 33.06
+2 24 18.27 4 33.06 14.38 4 34.03
+2 24 14.38 4 34.03 14.38 8 34.03
+2 24 14.38 8 34.03 18.27 8 33.06
+4 16 14.88 4 36 14.88 8 36 14.38 8 34.03 14.38 4 34.03
+2 24 14.88 4 36 14.88 8 36
+2 24 14.88 8 36 14.38 8 34.03
+2 24 14.38 4 34.03 14.88 4 36
+4 16 14.88 8 36 14.88 4 36 -16 4 36 -16 8 36
+2 24 14.88 4 36 -16 4 36
+2 24 -16 8 36 14.88 8 36
+3 16 -16 4 36 14.88 4 36 -8 4 8
+4 16 -3.123 8 -36 -16 8 -36 -16 4 -36 -3.123 4 -36
+2 24 -3.123 8 -36 -16 8 -36
+2 24 -16 4 -36 -3.123 4 -36
+2 24 -3.123 4 -36 -3.123 8 -36
+4 16 -3.123 4 -36 -1.103 4 -27.92 -1.103 8 -27.92 -3.123 8 -36
+2 24 -3.123 4 -36 -1.103 4 -27.92
+2 24 -1.103 4 -27.92 -1.103 8 -27.92
+2 24 -1.103 8 -27.92 -3.123 8 -36
+4 16 -3.064 4 -27.392 -3.064 8 -27.392 -1.103 8 -27.92 -1.103 4 -27.92
+2 24 -3.064 8 -27.392 -1.103 8 -27.92
+2 24 -1.103 4 -27.92 -3.064 4 -27.392
+4 16 3.064 4 -12.608 5.656 4 -14.344 5.656 8 -14.344 3.064 8 -12.608
+2 24 3.064 4 -12.608 5.656 4 -14.344
+5 24 5.656 4 -14.344 5.656 8 -14.344 3.064 8 -12.608 6.25 4 -14.99
+2 24 5.656 8 -14.344 3.064 8 -12.608
+4 16 5.656 4 -14.344 6.25 4 -14.99 6.25 8 -14.99 5.656 8 -14.344
+2 24 5.656 4 -14.344 6.25 4 -14.99
+2 24 6.25 8 -14.99 5.656 8 -14.344
+4 16 0 4 -8 0 4 -12 -8 4 -12 -8 4 -8
+2 24 9.93 4 16.22 13.81 4 15.25
+3 16 0 4 -8 3.064 4 -12.608 0 4 -12
+4 16 -16 4 -36 -16 4 36 -8 4 8 -8 4 -28
+4 16 3.064 4 -7.392 5.656 4 -5.656 6.25 4 -14.99 5.656 4 -14.344
+4 16 -8 4 -28 -1.103 4 -27.92 -3.123 4 -36 -16 4 -36
+4 16 5.656 4 -14.344 3.064 4 -12.608 0 4 -8 3.064 4 -7.392
+3 16 3.064 4 7.392 0 4 8 9.93 4 16.22
+3 16 9.93 4 16.22 5.656 4 5.656 3.064 4 7.392
+3 16 9.93 4 16.22 6.235 4 4.791 5.656 4 5.656
+4 16 13.81 4 15.25 10.91 4 3.62 6.235 4 4.791 9.93 4 16.22
+4 16 14.88 4 36 9.93 4 16.22 0 4 8 -8 4 8
+2 24 11.98 4 24.393 9.93 4 16.22
+4 16 15.86 4 23.423 11.98 4 24.393 14.38 4 34.03 18.27 4 33.06
+2 24 15.86 4 23.423 11.98 4 24.393
+4 16 8.95 4 -4.21 6.25 4 -14.99 5.656 4 -5.656 6.956 4 -3.714
+4 16 15.86 8 23.423 13.81 8 15.25 9.93 8 16.22 11.98 8 24.393
+2 24 13.81 8 15.25 9.93 8 16.22
+2 24 9.93 8 16.22 11.98 8 24.393
+2 24 11.98 8 24.393 15.86 8 23.423
+4 16 11.98 4 24.393 15.86 4 23.423 15.86 8 23.423 11.98 8 24.393
+2 24 11.98 8 24.393 11.98 4 24.393
+4 16 13.81 8 15.25 13.81 4 15.25 9.93 4 16.22 9.93 8 16.22
+2 24 9.93 4 16.22 9.93 8 16.22
+4 16 9.93 4 16.22 11.98 4 24.393 11.98 8 24.393 9.93 8 16.22
+4 16 -1.103 8 -27.92 -3.064 8 -27.392 -2.298 8 -25.544 -0.594 8 -25.88
+2 24 -2.298 8 -25.544 -0.594 8 -25.88
+3 16 -0.594 4 -25.88 -2.298 4 -25.544 2.298 4 -14.456
+4 16 -0.594 8 -25.88 2.26 8 -14.45 5.656 8 -14.344 6.25 8 -14.99
+2 24 -0.594 8 -25.88 2.26 8 -14.45
+3 16 0 8 -40 -3.123 8 -36 -1.103 8 -27.92
+4 16 0 8 -40 -20 8 -40 -16 8 -36 -3.123 8 -36
+4 16 6.25 8 -14.99 0 8 -40 -1.103 8 -27.92 -0.594 8 -25.88
+4 16 -20 8 40 -16 8 36 -16 8 -36 -20 8 -40
+3 16 3.064 8 -12.608 5.656 8 -14.344 2.26 8 -14.45
+4 16 -20 8 40 20 8 40 14.88 8 36 -16 8 36
+4 16 18.27 8 33.06 14.38 8 34.03 14.88 8 36 20 8 40
+4 16 -2.298 8 -25.544 -2.298 4 -25.544 -0.594 4 -25.88 -0.594 8 -25.88
+2 24 -2.298 4 -25.544 -0.594 4 -25.88
+2 24 -0.594 4 -25.88 -0.594 8 -25.88
+2 24 2.26 4 -14.45 -0.594 4 -25.88
+2 24 2.26 8 -14.45 2.26 4 -14.45
+4 16 2.26 8 -14.45 -0.594 8 -25.88 -0.594 4 -25.88 2.26 4 -14.45
+0
+
+0 FILE p/rect3.dat
+0 Rectangle with 3 Edges
+0 Name: rect3.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-17 [mikeheide] Change winding to CCW
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 0 1 -1 0 1
+2 24 1 0 1 1 0 -1
+2 24 -1 0 1 -1 0 -1
+4 16 -1 0 1 -1 0 -1 1 0 -1 1 0 1
+0 //
+
+0 FILE p/2-4ring3.dat
+0 Ring  3 x 0.5
+0 Name: 2-4ring3.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2003-01-21 [cavehop] Update Added BFC and some header info
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+4 16 4 0 0 3.6956 0 1.5308 2.7717 0 1.1481 3 0 0
+4 16 3.6956 0 1.5308 2.8284 0 2.8284 2.1213 0 2.1213 2.7717 0 1.1481
+4 16 2.8284 0 2.8284 1.5308 0 3.6956 1.1481 0 2.7717 2.1213 0 2.1213
+4 16 1.5308 0 3.6956 0 0 4 0 0 3 1.1481 0 2.7717
+4 16 0 0 4 -1.5308 0 3.6956 -1.1481 0 2.7717 0 0 3
+4 16 -1.5308 0 3.6956 -2.8284 0 2.8284 -2.1213 0 2.1213 -1.1481 0 2.7717
+4 16 -2.8284 0 2.8284 -3.6956 0 1.5308 -2.7717 0 1.1481 -2.1213 0 2.1213
+4 16 -3.6956 0 1.5308 -4 0 0 -3 0 0 -2.7717 0 1.1481
+
+0 FILE p/2-4disc.dat
+0 Disc 0.5
+0 Name: 2-4disc.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 0 0 0 1 0 0 0.9239 0 0.3827
+3 16 0 0 0 0.9239 0 0.3827 0.7071 0 0.7071
+3 16 0 0 0 0.7071 0 0.7071 0.3827 0 0.9239
+3 16 0 0 0 0.3827 0 0.9239 0 0 1
+3 16 0 0 0 0 0 1 -0.3827 0 0.9239
+3 16 0 0 0 -0.3827 0 0.9239 -0.7071 0 0.7071
+3 16 0 0 0 -0.7071 0 0.7071 -0.9239 0 0.3827
+3 16 0 0 0 -0.9239 0 0.3827 -1 0 -0
+0
+
+0 FILE parts/2420.dat
+0 Plate  2 x  2 Corner
+0 Name: 2420.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-09-08 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 4 10 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 10 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+4 16 10 8 30 6 8 26 -6 8 26 -10 8 30
+4 16 -10 8 30 -6 8 26 -6 8 -6 -10 8 -10
+4 16 -10 8 -10 -6 8 -6 26 8 -6 30 8 -10
+4 16 30 8 -10 26 8 -6 26 8 6 30 8 10
+4 16 30 8 10 26 8 6 6 8 6 10 8 10
+4 16 10 8 10 6 8 6 6 8 26 10 8 30
+4 16 26 4 -6 -6 4 -6 6 4 6 26 4 6
+4 16 6 4 26 6 4 6 -6 4 -6 -6 4 26
+4 16 30 0 10 10 0 10 -10 0 -10 30 0 -10
+4 16 10 0 10 10 0 30 -10 0 30 -10 0 -10
+1 16 20 4 0 0 10 0 4 0 0 0 0 10 p/box2-5.dat
+1 16 0 4 20 0 10 0 4 0 0 0 0 10 p/box2-5.dat
+1 16 10 4 10 0 -20 0 4 0 0 0 0 -20 p/box2-5.dat
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 20 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 0 0 20 1 0 0 0 1 0 0 0 1 p/stud.dat
+0 BFC INVERTNEXT
+1 16 0 6 16 0 6 0 2 0 0 0 0 10 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 16 6 0 0 10 0 2 0 0 0 0 6 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 10 6 10 0 -16 0 2 0 0 0 0 -16 p/box2-5.dat
+0
+
+0 FILE parts/3710.dat
+0 Plate  1 x  4
+0 Name: 3710.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-04
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2004-07-25 [guyvivan] Made BFC Compliant
+0 !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud3.dat
+0 BFC INVERTNEXT
+1 16 0 8 0 36 0 0 0 -4 0 0 0 6 p/box5.dat
+4 16 40 8 10 36 8 6 -36 8 6 -40 8 10
+4 16 -40 8 10 -36 8 6 -36 8 -6 -40 8 -10
+4 16 -40 8 -10 -36 8 -6 36 8 -6 40 8 -10
+4 16 40 8 -10 36 8 -6 36 8 6 40 8 10
+1 16 0 8 0 40 0 0 0 -8 0 0 0 10 p/box5.dat
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+
+0 FILE p/stud3.dat
+0 Stud Tube Solid
+0 Name: stud3.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+1 16 0 -4 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+
+0 FILE parts/3701.dat
+0 Technic Brick  1 x  4 with Holes
+0 Name: 3701.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-07-26 [OrionP] Added missing lines to underside
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-07-07 [guyvivan] Add missing element cylj4x8.dat and use more primitives (2005-11-30)
+0 !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
+
+1 16 20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 0 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 -1.5 0 0 0 1 p/stud3a.dat
+1 16 -20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 0 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 18 0 1 0 0 0 1 0 0 0 1 p/cylj4x8.dat
+1 16 20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 0 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 0 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+1 16 -20 10 10 1 0 0 0 0 1 0 -1 0 p/peghole.dat
+1 16 -20 10 -10 1 0 0 0 0 1 0 1 0 p/peghole.dat
+2 24 28 10 6 28 4 6
+2 24 36 24 6 -36 24 6
+2 24 36 24 -6 -36 24 -6
+2 24 40 24 10 -40 24 10
+2 24 40 24 -10 -40 24 -10
+0 BFC INVERTNEXT
+1 16 10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 -10 10 0 2 0 0 0 -6 0 0 0 6 p/box5-4a.dat
+0 BFC INVERTNEXT
+1 16 32 14 0 0 0 4 0 -10 0 -6 0 0 p/box2-5.dat
+0 BFC INVERTNEXT
+1 16 -32 14 0 0 0 -4 0 -10 0 6 0 0 p/box2-5.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -12 0 p/2-4cyli.dat
+1 16 28 7 0 0 -1 0 -3 0 0 0 0 -6 p/rect2p.dat
+1 16 -28 7 0 0 1 0 -3 0 0 0 0 6 p/rect2p.dat
+1 16 20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 0 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 1 0 p/2-4ndis.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4ndis.dat
+4 16 12 18 6 12 10 6 8 10 6 8 18 6
+4 16 12 18 -6 8 18 -6 8 10 -6 12 10 -6
+4 16 -8 18 6 -8 10 6 -12 10 6 -12 18 6
+4 16 -8 18 -6 -12 18 -6 -12 10 -6 -8 10 -6
+4 16 36 24 6 36 4 6 28 4 6 28 18 6
+4 16 36 24 -6 28 18 -6 28 4 -6 36 4 -6
+4 16 -28 18 6 -28 4 6 -36 4 6 -36 24 6
+4 16 -28 18 -6 -36 24 -6 -36 4 -6 -28 4 -6
+4 16 36 24 6 28 18 6 -28 18 6 -36 24 6
+4 16 36 24 -6 -36 24 -6 -28 18 -6 28 18 -6
+4 16 40 24 10 36 24 6 -36 24 6 -40 24 10
+4 16 40 24 -10 -40 24 -10 -36 24 -6 36 24 -6
+4 16 40 24 10 40 24 -10 36 24 -6 36 24 6
+4 16 -40 24 10 -36 24 6 -36 24 -6 -40 24 -10
+0 BFC INVERTNEXT
+1 16 20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+0 BFC INVERTNEXT
+1 16 -20 10 8 6 0 0 0 0 6 0 -16 0 p/4-4cyli.dat
+1 16 20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 -20 10 -6 8 0 0 0 0 8 0 -1 0 p/2-4edge.dat
+1 16 0 24 0 0 0 -40 0 -24 0 -10 0 0 p/box3u2p.dat
+1 16 20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 0 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 0 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+1 16 -20 10 10 8 0 0 0 0 8 0 -1 0 p/4-4ndis.dat
+1 16 -20 10 -10 8 0 0 0 0 8 0 1 0 p/4-4ndis.dat
+4 16 12 18 10 8 18 10 8 2 10 12 2 10
+4 16 12 18 -10 12 2 -10 8 2 -10 8 18 -10
+4 16 -8 18 10 -12 18 10 -12 2 10 -8 2 10
+4 16 -8 18 -10 -8 2 -10 -12 2 -10 -12 18 -10
+4 16 40 24 10 -40 24 10 -28 18 10 28 18 10
+4 16 40 24 -10 28 18 -10 -28 18 -10 -40 24 -10
+4 16 40 0 10 28 2 10 -28 2 10 -40 0 10
+4 16 40 0 -10 -40 0 -10 -28 2 -10 28 2 -10
+4 16 40 24 10 28 18 10 28 2 10 40 0 10
+4 16 40 24 -10 40 0 -10 28 2 -10 28 18 -10
+4 16 -40 24 10 -40 0 10 -28 2 10 -28 18 10
+4 16 -40 24 -10 -28 18 -10 -28 2 -10 -40 0 -10
+1 16 30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+1 16 -30 0 0 1 0 0 0 1 0 0 0 1 p/stud2.dat
+0
+
+0 FILE p/stud2.dat
+0 Stud Open
+0 Name: stud2.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+1 16 0 -4 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring2.dat
+0
+
+0 FILE p/4-4ring2.dat
+0 Ring  2 x 1.0
+0 Name: 4-4ring2.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-04-05 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-08-26 [cwdee] Switch polygon winding and rename
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 -1.1481 0 2.7717 -0.7654 0 1.8478 0 0 2 0 0 3
+4 16 -2.1213 0 2.1213 -1.4142 0 1.4142 -0.7654 0 1.8478 -1.1481 0 2.7717
+4 16 -2.7717 0 1.1481 -1.8478 0 0.7654 -1.4142 0 1.4142 -2.1213 0 2.1213
+4 16 -3 0 0 -2 0 0 -1.8478 0 0.7654 -2.7717 0 1.1481
+4 16 -2.7717 0 -1.1481 -1.8478 0 -0.7654 -2 0 0 -3 0 0
+4 16 -2.1213 0 -2.1213 -1.4142 0 -1.4142 -1.8478 0 -0.7654 -2.7717 0 -1.1481
+4 16 -1.1481 0 -2.7717 -0.7654 0 -1.8478 -1.4142 0 -1.4142 -2.1213 0 -2.1213
+4 16 0 0 -3 0 0 -2 -0.7654 0 -1.8478 -1.1481 0 -2.7717
+4 16 1.1481 0 -2.7717 0.7654 0 -1.8478 0 0 -2 0 0 -3
+4 16 2.1213 0 -2.1213 1.4142 0 -1.4142 0.7654 0 -1.8478 1.1481 0 -2.7717
+4 16 2.7717 0 -1.1481 1.8478 0 -0.7654 1.4142 0 -1.4142 2.1213 0 -2.1213
+4 16 3 0 0 2 0 0 1.8478 0 -0.7654 2.7717 0 -1.1481
+4 16 2.7717 0 1.1481 1.8478 0 0.7654 2 0 0 3 0 0
+4 16 2.1213 0 2.1213 1.4142 0 1.4142 1.8478 0 0.7654 2.7717 0 1.1481
+4 16 1.1481 0 2.7717 0.7654 0 1.8478 1.4142 0 1.4142 2.1213 0 2.1213
+4 16 0 0 3 0 0 2 0.7654 0 1.8478 1.1481 0 2.7717
+0
+
+0 FILE p/4-4ndis.dat
+0 Disc Negative 1.0
+0 Name: 4-4ndis.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; compacted code
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0 0.3827 1 0 0 1 0 1
+3 16 0.7071 0 0.7071 0.9239 0 0.3827 1 0 1
+3 16 0.3827 0 0.9239 0.7071 0 0.7071 1 0 1
+3 16 0 0 1 0.3827 0 0.9239 1 0 1
+3 16 -0.3827 0 0.9239 0 0 1 -1 0 1
+3 16 -0.7071 0 0.7071 -0.3827 0 0.9239 -1 0 1
+3 16 -0.9239 0 0.3827 -0.7071 0 0.7071 -1 0 1
+3 16 -1 0 0 -0.9239 0 0.3827 -1 0 1
+3 16 -0.9239 0 -0.3827 -1 0 0 -1 0 -1
+3 16 -0.7071 0 -0.7071 -0.9239 0 -0.3827 -1 0 -1
+3 16 -0.3827 0 -0.9239 -0.7071 0 -0.7071 -1 0 -1
+3 16 0 0 -1 -0.3827 0 -0.9239 -1 0 -1
+3 16 0.3827 0 -0.9239 0 0 -1 1 0 -1
+3 16 0.7071 0 -0.7071 0.3827 0 -0.9239 1 0 -1
+3 16 0.9239 0 -0.3827 0.7071 0 -0.7071 1 0 -1
+3 16 1 0 0 0.9239 0 -0.3827 1 0 -1
+
+0 FILE p/box3u2p.dat
+0 Box with 3 Faces without 2 Parallel Edges
+0 Name: box3u2p.dat
+0 Author: Niels Karsdorp [nielsk]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 -1 1 1 -1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 -1 1 0 -1
+2 24 1 1 1 1 1 -1
+2 24 -1 1 1 -1 1 -1
+2 24 1 1 1 1 0 1
+2 24 1 1 -1 1 0 -1
+2 24 -1 1 1 -1 0 1
+2 24 -1 1 -1 -1 0 -1
+4 16 -1 1 -1 -1 1 1 1 1 1 1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+
+0 FILE p/2-4ndis.dat
+0 Disc Negative 0.5
+0 Name: 2-4ndis.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; compacted code
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0 0.3827 1 0 0 1 0 1
+3 16 0.7071 0 0.7071 0.9239 0 0.3827 1 0 1
+3 16 0.3827 0 0.9239 0.7071 0 0.7071 1 0 1
+3 16 0 0 1 0.3827 0 0.9239 1 0 1
+3 16 -0.3827 0 0.9239 0 0 1 -1 0 1
+3 16 -0.7071 0 0.7071 -0.3827 0 0.9239 -1 0 1
+3 16 -0.9239 0 0.3827 -0.7071 0 0.7071 -1 0 1
+3 16 -1 0 0 -0.9239 0 0.3827 -1 0 1
+
+0 FILE p/box5-4a.dat
+0 Box with 5 Faces without 4 Adjacent Edges
+0 Name: box5-4a.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 1 1 -1 -1 1 -1 -1 1 1 1 1 1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+0
+
+0 FILE p/peghole.dat
+0 Peg Hole End
+0 Name: peghole.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-05-01 [mkennedy] replace code with ring3
+0 !HISTORY 2002-05-01 [sbliss] BFC
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-14 [cwdee] Update ring3 to 4-4ring3
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 2 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 2 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 2 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 8 0 0 0 2 0 0 0 8 p/4-4cyli.dat
+0
+
+0 FILE p/cylj4x8.dat
+0 Cylinder Joint  4 to  8
+0 Name: cylj4x8.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 4 -1.235 0 3.696 -1.031 1.532
+2 24 3.696 -1.031 1.532 3.064 -0.608 2.476
+2 24 3.064 -0.608 2.476 2.828 -0.561 2.828
+2 24 2.828 -0.561 2.828 1.532 -0.304 3.696
+2 24 1.532 -0.304 3.696 0 0 4
+4 16 4 0 0 3.696 0 1.532 3.696 -1.031 1.532 4 -1.235 0
+4 16 3.696 0 1.532 3.064 0 2.476 3.064 -0.608 2.476 3.696 -1.031 1.532
+4 16 3.064 0 2.476 2.828 0 2.828 2.828 -0.561 2.828 3.064 -0.608 2.476
+4 16 2.828 0 2.828 1.532 0 3.696 1.532 -0.304 3.696 2.828 -0.561 2.828
+3 16 1.532 0 3.696 0 0 4 1.532 -0.304 3.696
+5 24 3.696 -1.031 1.532 3.696 0 1.532 2.828 0 2.828 4 0 0
+5 24 2.828 -0.561 2.828 2.828 0 2.828 1.532 0 3.696 3.696 0 1.532
+5 24 1.532 -0.304 3.696 1.532 0 3.696 0 0 4 2.828 0 2.828
+2 24 -4 -1.235 0 -3.696 -1.031 1.532
+2 24 -3.696 -1.031 1.532 -3.064 -0.608 2.476
+2 24 -3.064 -0.608 2.476 -2.828 -0.561 2.828
+2 24 -2.828 -0.561 2.828 -1.532 -0.304 3.696
+2 24 -1.532 -0.304 3.696 0 0 4
+4 16 -4 -1.235 0 -3.696 -1.031 1.532 -3.696 0 1.532 -4 0 0
+4 16 -3.696 -1.031 1.532 -3.064 -0.608 2.476 -3.064 0 2.476 -3.696 0 1.532
+4 16 -3.064 -0.608 2.476 -2.828 -0.561 2.828 -2.828 0 2.828 -3.064 0 2.476
+4 16 -2.828 -0.561 2.828 -1.532 -0.304 3.696 -1.532 0 3.696 -2.828 0 2.828
+3 16 -1.532 -0.304 3.696 0 0 4 -1.532 0 3.696
+5 24 -3.696 -1.031 1.532 -3.696 0 1.532 -2.828 0 2.828 -4 0 0
+5 24 -2.828 -0.561 2.828 -2.828 0 2.828 -1.532 0 3.696 -3.696 0 1.532
+5 24 -1.532 -0.304 3.696 -1.532 0 3.696 0 0 4 -2.828 0 2.828
+5 24 4 -1.235 0 4 0 0 3.696 0 -1.532 3.696 0 1.532
+2 24 -4 -1.235 0 -3.696 -1.031 -1.532
+2 24 -3.696 -1.031 -1.532 -3.064 -0.608 -2.476
+2 24 -3.064 -0.608 -2.476 -2.828 -0.561 -2.828
+2 24 -2.828 -0.561 -2.828 -1.532 -0.304 -3.696
+2 24 -1.532 -0.304 -3.696 0 0 -4
+4 16 -4 0 0 -3.696 0 -1.532 -3.696 -1.031 -1.532 -4 -1.235 0
+4 16 -3.696 0 -1.532 -3.064 0 -2.476 -3.064 -0.608 -2.476 -3.696 -1.031 -1.532
+4 16 -3.064 0 -2.476 -2.828 0 -2.828 -2.828 -0.561 -2.828 -3.064 -0.608 -2.476
+4 16 -2.828 0 -2.828 -1.532 0 -3.696 -1.532 -0.304 -3.696 -2.828 -0.561 -2.828
+3 16 -1.532 0 -3.696 0 0 -4 -1.532 -0.304 -3.696
+5 24 -3.696 -1.031 -1.532 -3.696 0 -1.532 -2.828 0 -2.828 -4 0 0
+5 24 -2.828 -0.561 -2.828 -2.828 0 -2.828 -1.532 0 -3.696 -3.696 0 -1.532
+5 24 -1.532 -0.304 -3.696 -1.532 0 -3.696 0 0 -4 -2.828 0 -2.828
+2 24 4 -1.235 0 3.696 -1.031 -1.532
+2 24 3.696 -1.031 -1.532 3.064 -0.608 -2.476
+2 24 3.064 -0.608 -2.476 2.828 -0.561 -2.828
+2 24 2.828 -0.561 -2.828 1.532 -0.304 -3.696
+2 24 1.532 -0.304 -3.696 0 0 -4
+4 16 4 -1.235 0 3.696 -1.031 -1.532 3.696 0 -1.532 4 0 0
+4 16 3.696 -1.031 -1.532 3.064 -0.608 -2.476 3.064 0 -2.476 3.696 0 -1.532
+4 16 3.064 -0.608 -2.476 2.828 -0.561 -2.828 2.828 0 -2.828 3.064 0 -2.476
+4 16 2.828 -0.561 -2.828 1.532 -0.304 -3.696 1.532 0 -3.696 2.828 0 -2.828
+3 16 1.532 -0.304 -3.696 0 0 -4 1.532 0 -3.696
+5 24 3.696 -1.031 -1.532 3.696 0 -1.532 2.828 0 -2.828 4 0 0
+5 24 2.828 -0.561 -2.828 2.828 0 -2.828 1.532 0 -3.696 3.696 0 -1.532
+5 24 1.532 -0.304 -3.696 1.532 0 -3.696 0 0 -4 2.828 0 -2.828
+5 24 -4 -1.235 0 -4 0 0 -3.696 0 1.532 -3.696 0 -1.532
+0
+
+0 FILE p/stud3a.dat
+0 Stud Tube Solid without Base Edges 
+0 Name: stud3a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2003-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4edge.dat
+1 16 0 -4 0 4 0 0 0 1 0 0 0 4 p/4-4disc.dat
+1 16 0 -4 0 4 0 0 0 4 0 0 0 4 p/4-4cyli.dat
+0
+
+
+0 FILE parts/3298.dat
+0 Slope Brick 33  3 x  2
+0 Name: 3298.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2004-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-09-13 [izanette] Modified with WINDZ for BFC compliance
+0 !HISTORY 2003-07-04 [OrionP] Moved guts to subpart
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-06-25 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 parts/s/3298s01.dat
+4 16 20 20 -50 20 0 -10 -20 0 -10 -20 20 -50
+0
+
+0 FILE parts/s/3298s01.dat
+0 ~Slope Brick 33  3 x  2 without Front Face
+0 Name: s\3298s01.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Subpart UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-03-08 [OrionP] Made BFC complient
+0 !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
+0 !HISTORY 2007-08-31 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-10-06 [mkennedy] Used stud4s primitive, replaced some rects with boxes
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 8 -10 1 0 0 0 -4 0 0 0 1 p/stud4a.dat
+1 16 0 4 -10 6 0 0 0 1 0 0 0 6 p/2-4edge.dat
+1 16 0 4 -10 6 1 0 0 1 3 0 0 -6 p/2-4edge.dat
+1 16 0 4 -10 8 0 0 0 1 0 0 0 8 p/2-4edge.dat
+1 16 0 4 -10 8 1 0 0 1 4 0 0 -8 p/2-4edge.dat
+1 16 0 8 -10 0 0 8 0 -4 0 -8 0 0 p/1-4cyls.dat
+1 16 0 8 -10 0 0 -8 0 -4 0 -8 0 0 p/1-4cyls.dat
+1 16 0 4 -10 8 0 0 0 4 0 0 0 8 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 7 -10 0 0 6 0 -3 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 7 -10 0 0 -6 0 -3 0 -6 0 0 p/1-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 4 -10 6 0 0 0 3 0 0 0 6 p/2-4cyli.dat
+0 BFC INVERTNEXT
+1 16 0 7 -10 6 0 0 0 1 0 0 0 6 p/4-4cyli.dat
+0
+1 16 0 18 -30 1 0 0 0 -1.50 0 0 0 1 p/stud4a.dat
+1 16 0 18 -30 0 0 1 0 4 0 -1 0 0 p/stud4s.dat
+0
+0 BFC INVERTNEXT
+1 16 0 14 -2 16 0 0 0 -10 0 0 0 8 p/box2-5.dat
+1 16 0 12 -28 16 0 0 0 8 0 0 -16 2 p/box2-7.dat
+1 16 0 22 -46 16 0 0 0 0 2 0 -1 0 p/rect.dat
+1 16 0 12 0 20 0 0 0 -12 0 0 0 10 p/box2-5.dat
+1 16 0 22 -50 20 0 0 0 1 2 0 1 0 p/rect.dat
+0
+1 16 -10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 0 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+2 24 -16 24 6 -16 24 -46 
+2 24 16 24 -46 16 24 6 
+0
+2 24 -20 24 10 -20 24 -50 
+2 24 20 24 -50 20 24 10 
+0
+2 24 20 20 -50 20 0 -10 
+2 24 -20 20 -50 -20 0 -10 
+4 16 -20 24 10 -16 24 6 16 24 6 20 24 10
+4 16 -20 24 -50 -16 24 -46 -16 24 6 -20 24 10
+4 16 20 24 -50 16 24 -46 -16 24 -46 -20 24 -50
+4 16 20 24 10 16 24 6 16 24 -46 20 24 -50
+4 16 20 24 -50 20 20 -50 20 0 10 20 24 10
+3 16 20 20 -50 20 0 -10 20 0 10
+4 16 16 24 6 16 20 -42 16 20 -46 16 24 -46
+4 16 16 4 6 16 4 -10 16 20 -42 16 24 6
+4 16 -16 24 -46 -16 20 -46 -16 20 -42 -16 24 6
+4 16 -16 4 -10 -16 4 6 -16 24 6 -16 20 -42
+4 16 -20 24 10 -20 0 10 -20 20 -50 -20 24 -50
+3 16 -20 0 10 -20 0 -10 -20 20 -50
+0
+
+0 FILE p/box2-7.dat
+0 Box with 2 Faces without 7 Edges
+0 Name: box2-7.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 -1 1 -1 1 1
+2 24 1 -1 1 1 1 1
+2 24 -1 1 -1 -1 1 1
+2 24 1 1 -1 1 1 1
+4 16 1 1 1 1 1 -1 -1 1 -1 -1 1 1
+4 16 1 1 1 -1 1 1 -1 -1 1 1 -1 1
+0
+
+0 FILE p/stud4s.dat
+0 Stud Tube Open Sloped
+0 Name: stud4s.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HELP For use between a stud4a and a sloped surface. It is enough
+0 !HELP to know coordinates Y of the centre and that of the outside
+0 !HELP circle. The difference of both coordinates is the height of
+0 !HELP the primitive to be applied. Finally, this primitive can be
+0 !HELP used with all the parts sloped using a STUD4A. H = Y center
+0 !HELP sloped - Y common border.
+
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 0 0 8 0 0 0 -1 0 0 0 8 p/4-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 -0.25 0 6 0 0 0 -0.75 0 0 0 6 p/4-4cyls.dat
+0 BFC INVERTNEXT
+1 16 0 0 0 6 0 0 0 -0.25 0 0 0 6 p/4-4cyli.dat
+1 16 0 -1 0 6 0 0 0.75 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -1 0 8 0 0 1 1 0 0 0 8 p/4-4edge.dat
+0
+
+0 FILE p/4-4cyls.dat
+0 Cylinder Sloped 1.0
+0 Name: 4-4cyls.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0.0761 0.3827 0.9239 0 0.3827 1 0 0
+5 24 0.9239 0 0.3827 0.9239 0.0761 0.3827 0.7071 0 0.7071 1 0 0
+4 16 0.9239 0.0761 0.3827 0.7071 0.2929 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+5 24 0.7071 0 0.7071 0.7071 0.2929 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+4 16 0.7071 0.2929 0.7071 0.3827 0.6173 0.9239 0.3827 0 0.9239 0.7071 0 0.7071
+5 24 0.3827 0 0.9239 0.3827 0.6173 0.9239 0 0 1 0.7071 0 0.7071
+4 16 0.3827 0.6173 0.9239 0 1 1 0 0 1 0.3827 0 0.9239
+5 24 0 0 1 0 1 1 -0.3827 0 0.9239 0.3827 0 0.9239
+4 16 0 1 1 -0.3827 1.3827 0.9239 -0.3827 0 0.9239 0 0 1
+5 24 -0.3827 0 0.9239 -0.3827 1.3827 0.9239 -0.7071 0 0.7071 0 0 1
+4 16 -0.3827 1.3827 0.9239 -0.7071 1.7071 0.7071 -0.7071 0 0.7071 -0.3827 0 0.9239
+5 24 -0.7071 0 0.7071 -0.7071 1.7071 0.7071 -0.9239 0 0.3827 -0.3827 0 0.9239
+4 16 -0.7071 1.7071 0.7071 -0.9239 1.9239 0.3827 -0.9239 0 0.3827 -0.7071 0 0.7071
+5 24 -0.9239 0 0.3827 -0.9239 1.9239 0.3827 -1 0 0 -0.7071 0 0.7071
+4 16 -0.9239 1.9239 0.3827 -1 2 0 -1 0 0 -0.9239 0 0.3827
+5 24 -1 0 0 -1 2 0 -0.9239 0 -0.3827 -0.9239 0 0.3827
+4 16 -1 2 0 -0.9239 1.9239 -0.3827 -0.9239 0 -0.3827 -1 0 0
+5 24 -0.9239 0 -0.3827 -0.9239 1.9239 -0.3827 -1 0 0 -0.7071 0 -0.7071
+4 16 -0.9239 1.9239 -0.3827 -0.7071 1.7071 -0.7071 -0.7071 0 -0.7071 -0.9239 0 -0.3827
+5 24 -0.7071 0 -0.7071 -0.7071 1.7071 -0.7071 -0.9239 0 -0.3827 -0.3827 0 -0.9239
+4 16 -0.7071 1.7071 -0.7071 -0.3827 1.3827 -0.9239 -0.3827 0 -0.9239 -0.7071 0 -0.7071
+5 24 -0.3827 0 -0.9239 -0.3827 1.3827 -0.9239 -0.7071 0 -0.7071 0 0 -1
+4 16 -0.3827 1.3827 -0.9239 0 1 -1 0 0 -1 -0.3827 0 -0.9239
+5 24 0 0 -1 0 1 -1 -0.3827 0 -0.9239 0.3827 0 -0.9239
+4 16 0 1 -1 0.3827 0.6173 -0.9239 0.3827 0 -0.9239 0 0 -1
+5 24 0.3827 0 -0.9239 0.3827 0.6173 -0.9239 0 0 -1 0.7071 0 -0.7071
+4 16 0.3827 0.6173 -0.9239 0.7071 0.2929 -0.7071 0.7071 0 -0.7071 0.3827 0 -0.9239
+5 24 0.7071 0 -0.7071 0.7071 0.2929 -0.7071 0.3827 0 -0.9239 0.9239 0 -0.3827
+4 16 0.7071 0.2929 -0.7071 0.9239 0.0761 -0.3827 0.9239 0 -0.3827 0.7071 0 -0.7071
+5 24 0.9239 0 -0.3827 0.9239 0.0761 -0.3827 0.7071 0 -0.7071 1 0 0
+3 16 0.9239 0 -0.3827 0.9239 0.0761 -0.3827 1 0 0
+
+0 FILE p/2-4cyli.dat
+0 Cylinder 0.5
+0 Name: 2-4cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; compacted code
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2004-12-11 [nielsk] Recreated using Primitive Generator, Edge lines fixed, BFC changed to CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 .9239 1 .3827 .9239 0 .3827 1 0 0 1 1 0
+4 16 .7071 1 .7071 .7071 0 .7071 .9239 0 .3827 .9239 1 .3827
+4 16 .3827 1 .9239 .3827 0 .9239 .7071 0 .7071 .7071 1 .7071
+4 16 0 1 1 0 0 1 .3827 0 .9239 .3827 1 .9239
+4 16 -.3827 1 .9239 -.3827 0 .9239 0 0 1 0 1 1
+4 16 -.7071 1 .7071 -.7071 0 .7071 -.3827 0 .9239 -.3827 1 .9239
+4 16 -.9239 1 .3827 -.9239 0 .3827 -.7071 0 .7071 -.7071 1 .7071
+4 16 -1 1 0 -1 0 0 -.9239 0 .3827 -.9239 1 .3827
+5 24 1 1 0 1 0 0 1 1 -.4142 .9239 1 .3827
+5 24 .9239 1 .3827 .9239 0 .3827 1 1 0 .7071 1 .7071
+5 24 .7071 1 .7071 .7071 0 .7071 .9239 1 .3827 .3827 1 .9239
+5 24 .3827 1 .9239 .3827 0 .9239 .7071 1 .7071 0 1 1
+5 24 0 1 1 0 0 1 .3827 1 .9239 -.3827 1 .9239
+5 24 -.3827 1 .9239 -.3827 0 .9239 0 1 1 -.7071 1 .7071
+5 24 -.7071 1 .7071 -.7071 0 .7071 -.3827 1 .9239 -.9239 1 .3827
+5 24 -.9239 1 .3827 -.9239 0 .3827 -.7071 1 .7071 -1 1 0
+5 24 -1 1 0 -1 0 0 -.9239 1 .3827 -1 1 -.4142
+0
+
+0 FILE p/1-4cyls.dat
+0 Cylinder Sloped 0.25
+0 Name: 1-4cyls.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-07-03 [sbliss] Added BFC statement
+0 !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
+0 !HISTORY 2007-06-22 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+3 16 0.9239 0.0761 0.3827 0.9239 0 0.3827 1 0 0
+4 16 0.9239 0.0761 0.3827 0.7071 0.2929 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+4 16 0.7071 0.2929 0.7071 0.3827 0.6173 0.9239 0.3827 0 0.9239 0.7071 0 0.7071
+4 16 0.3827 0.6173 0.9239 0 1 1 0 0 1 0.3827 0 0.9239
+
+5 24 0.9239 0 0.3827 0.9239 0.0761 0.3827 0.7071 0 0.7071 1 0 0
+5 24 0.7071 0 0.7071 0.7071 0.2929 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+5 24 0.3827 0 0.9239 0.3827 0.6173 0.9239 0 0 1 0.7071 0 0.7071
+5 24 0 0 1 0 1 1 0.3827 0 0.9239 -1 0 1
+
+0 FILE p/2-4edge.dat
+0 Circle 0.5
+0 Name: 2-4edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -0.9239 0 0.3827
+2 24 -0.9239 0 0.3827 -1 0 0
+
+0 FILE p/stud4a.dat
+0 Stud Tube Open without Base Edges
+0 Name: stud4a.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 8 0 0 0 4 0 0 0 8 p/4-4cyli.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+0
+
+0 FILE parts/2419.dat
+0 Plate  3 x  6 without Corners
+0 Name: 2419.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CW
+
+0 !HISTORY 2003-08-07 [jriley] BFC compliant
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-05-08 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-11-11 [mkennedy] optimized with boxes and stugs and rects, Used ribt45, used rect1 in gaps.
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 40 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -10 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+0
+1 16 28.58 4 -18.58 1.41 0 4.25 0 -1 0 -1.41 0 4.25 p/rect1.dat
+1 16 40 4 -10 1 0 0 0 1 0 0 0 1 p/ribt45.dat
+1 16 48.58 4 1.42 1.41 0 4.25 0 -1 0 -1.41 0 4.25 p/rect1.dat
+0
+1 16 -48.58 4 1.42 -1.41 0 4.25 0 -1 0 -1.41 0 -4.25 p/rect1.dat
+1 16 -40 4 -10 0 0 1 0 1 0 -1 0 0 p/ribt45.dat
+1 16 -28.58 4 -18.58 -1.41 0 4.25 0 -1 0 -1.41 0 -4.25 p/rect1.dat
+0
+1 16 55.13 6 7.95 0 -1.41 -2.28 2 0 0 0 1.41 -2.28 p/box2-5.dat
+1 16 22.05 6 -25.13 0 -1.41 2.28 2 0 0 0 1.41 2.28 p/box2-5.dat
+0
+1 16 -22.05 6 -25.13 0 1.41 -2.28 2 0 0 0 1.41 2.28 p/box2-5.dat
+1 16 -55.13 6 7.95 0 1.41 2.28 2 0 0 0 1.41 -2.28 p/box2-5.dat
+0
+1 16 -40 2 -10 0 0 -20 -2 0 0 0 1 20 p/rect1.dat
+1 16 -22.87 6 -27.13 0 0 -2.87 2 0 0 0 1 2.87 p/rect1.dat
+1 16 -57.13 6 7.13 0 0 -2.87 2 0 0 0 1 2.87 p/rect1.dat
+0
+1 16 40 2 -10 0 -1 20 -2 0 0 0 0 20 p/rect1.dat
+1 16 22.87 6 -27.13 0 -1 2.87 2 0 0 0 0 2.87 p/rect1.dat
+1 16 57.13 6 7.13 0 -1 2.87 2 0 0 0 0 2.87 p/rect1.dat
+0
+4 16 -60 8 30 -56 8 26 56 8 26 60 8 30 
+4 16 -60 8 10 -56 8 11.66 -56 8 26 -60 8 30 
+4 16 -54.24 8 4.24 -51.41 8 7.07 -56 8 11.66 -60 8 10 
+4 16 -20 8 -30 -18.34 8 -26 -22.93 8 -21.41 -25.76 8 -24.24 
+4 16 20 8 -30 18.34 8 -26 -18.34 8 -26 -20 8 -30 
+4 16 25.76 8 -24.24 22.93 8 -21.41 18.34 8 -26 20 8 -30 
+4 16 60 8 10 56 8 11.66 51.41 8 7.07 54.24 8 4.24 
+4 16 60 8 30 56 8 26 56 8 11.66 60 8 10 
+0 
+4 16 -56 4 11.66 -18.34 4 -26 18.34 4 -26 56 4 11.66 
+4 16 60 0 10 20 0 -30 -20 0 -30 -60 0 10 
+0 BFC INVERTNEXT
+1 16 0 8 18.83 56 0 0 0 -4 0 0 0 7.17 p/box4-4a.dat
+1 16 0 6 -26 18.34 0 0 0 0 2 0 -1 0 p/rect2p.dat
+1 16 0 4 10 60 0 0 0 0 -4 0 20 0 p/box4-2p.dat
+1 16 0 4 -30 20 0 0 0 0 4 0 1 0 p/rect.dat
+0
+1 16 -50 0 20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -20 0 10 0 0 -1 0 1 0 1 0 0 p/stug2.dat
+1 16 20 0 10 0 0 -1 0 1 0 1 0 0 p/stug2.dat
+1 16 50 0 20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 -10 0 -20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+1 16 10 0 -20 0 0 -1 0 1 0 1 0 0 p/stud.dat
+0
+
+0 FILE p/stug2.dat
+0 ~Moved to stug-2x2
+0 Name: stug2.dat
+0 Author: [PTadmin]
+0 !LDRAW_ORG Primitive UPDATE 2011-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+
+0 // Stud Group  2 x  2
+1 16 0 0 0 1 0 0 0 1 0 0 0 1 p/stug-2x2.dat
+
+0 FILE p/stug-2x2.dat
+0 Stud Group  2 x  2
+0 Name: stug-2x2.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2011-07-01 [PTadmin] Renamed from stug2
+0 !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+
+0 FILE p/rect.dat
+0 Rectangle
+0 Name: rect.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-05 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-17 [mikeheide] changed winding to CCW
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 -1 0 -1 1 0 -1
+2 24 1 0 -1 1 0 1
+4 16 -1 0 1 -1 0 -1 1 0 -1 1 0 1
+0
+
+0 FILE p/box4-2p.dat
+0 Box with 4 Faces without 2 Parallel Edges
+0 Name: box4-2p.dat
+0 Author: Guy Vivan [guyvivan]
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 -1 0 1 -1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 1 1 -1 -1 1 -1 -1 1 1 1 1 1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+0
+
+0 FILE p/rect2p.dat
+0 Rectangle with 2 Parallel Edges
+0 Name: rect2p.dat
+0 Author: Donald Sutter [technog]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-17 [mikeheide] changed winding to CCW
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 0 1 -1 0 1
+2 24 -1 0 -1 1 0 -1
+4 16 -1 0 1 -1 0 -1 1 0 -1 1 0 1
+0
+
+0 FILE p/ribt45.dat
+0 Rib T-Shaped for 45 Degree Plate Edges
+0 Name: ribt45.dat
+0 Author: Mark Kennedy [mkennedy]
+0 !LDRAW_ORG Primitive UPDATE 2010-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-29 [jriley] Secondary author
+0 !HISTORY 2009-11-19 [mkennedy] replaced box3u8P with two box2-5, split quad, moved origin
+0 !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
+
+1 16 -4.27 0 4.27 1 0 -1.45 0 4 0 1 0 1.45 p/box4-4a.dat
+1 16 0 2 0 0 0 5.74 2 0 0 0 1 5.74 p/rect1.dat
+1 16 1.96 2 4.78 0 2.37 -1.41 2 0 0 0 2.37 1.41 p/box2-5.dat
+1 16 -4.78 2 -1.96 0 -1.41 -2.37 2 0 0 0 1.41 -2.37 p/box2-5.dat
+3 16 2.92 4 8.56 5.74 4 5.74 -1.82 4 3.82
+3 16 -8.56 4 -2.92 -3.82 4 1.82 -5.74 4 -5.74
+4 16 -5.74 4 -5.74 -3.82 4 1.82 -1.82 4 3.82 5.74 4 5.74
+0
+
+0 FILE p/box2-5.dat
+0 Box with 2 Faces without 5 Edges
+0 Name: box2-5.dat
+0 Author: Steffen [Steffen]
+0 !LDRAW_ORG Primitive UPDATE 2003-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+2 24 1 1 1 -1 1 1
+2 24 1 1 -1 -1 1 -1
+2 24 1 -1 1 -1 -1 1
+2 24 -1 -1 1 -1 1 1
+2 24 1 -1 1 1 1 1
+2 24 -1 1 -1 -1 1 1
+2 24 1 1 -1 1 1 1
+4 16 1 1 1 1 1 -1 -1 1 -1 -1 1 1
+4 16 1 1 1 -1 1 1 -1 -1 1 1 -1 1
+0
+
+0 FILE p/box4-4a.dat
+0 Box with 4 Faces without 4 Adjacent Edges
+0 Name: box4-4a.dat
+0 Author: Manfred Moolhuysen 
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-07-15 [PTadmin] Official Update 1998-07
+0 !HISTORY 2002-12-13 [hafhead] Made BFC compliant
+0 !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+4 16 1 1 -1 -1 1 -1 -1 1 1 1 1 1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE p/rect1.dat
+0 Rectangle with 1 Edge
+0 Name: rect1.dat
+0 Author: Chris Dee [cwdee]
+0 !LDRAW_ORG Primitive UPDATE 2010-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2010-01-17 [mikeheide] changed winding to CCW
+0 !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
+
+2 24 1 0 -1 1 0 1
+4 16 -1 0 1 -1 0 -1 1 0 -1 1 0 1
+0
+
+0 FILE parts/3032.dat
+0 Plate  4 x  6
+0 Name: 3032.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Part UPDATE 2002-03
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
+0 !HISTORY 2002-05-07 [unknown] BFC Certification
+0 !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
+0 !HISTORY 2007-06-07 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+1 16 40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 0 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 0 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -20 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+1 16 -40 4 -20 1 0 0 0 -1 0 0 0 1 p/stud4.dat
+
+0 BFC INVERTNEXT
+1 16 0 8 0 56 0 0 0 -4 0 0 0 36 p/box5.dat
+
+4 16 60 8 40 56 8 36 -56 8 36 -60 8 40
+0 Next Line was 4 16 60 8 -40 56 8 -36 -56 8 -36 -60 8 -40
+4 16 -60 8 -40 -56 8 -36 56 8 -36 60 8 -40 
+0 Next Line was 4 16 60 8 40 56 8 36 56 8 -36 60 8 -40
+4 16 60 8 -40 56 8 -36 56 8 36 60 8 40
+4 16 -60 8 40 -56 8 36 -56 8 -36 -60 8 -40
+
+1 16 0 8 0 60 0 0 0 -8 0 0 0 40 p/box5.dat
+
+1 16 50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -10 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -10 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -30 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+1 16 -50 0 -30 1 0 0 0 1 0 0 0 1 p/stud.dat
+0
+
+0 FILE p/stud.dat
+0 Stud
+0 Name: stud.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 -4 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4disc.dat
+
+0 FILE p/4-4disc.dat
+0 Disc 1.0
+0 Name: 4-4disc.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2002-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+3 16 0 0 0 1 0 0 0.9239 0 0.3827
+3 16 0 0 0 0.9239 0 0.3827 0.7071 0 0.7071
+3 16 0 0 0 0.7071 0 0.7071 0.3827 0 0.9239
+3 16 0 0 0 0.3827 0 0.9239 0 0 1
+3 16 0 0 0 0 0 1 -0.3827 0 0.9239
+3 16 0 0 0 -0.3827 0 0.9239 -0.7071 0 0.7071
+3 16 0 0 0 -0.7071 0 0.7071 -0.9239 0 0.3827
+3 16 0 0 0 -0.9239 0 0.3827 -1 0 -0
+3 16 0 0 0 -1 0 -0 -0.9239 0 -0.3827
+3 16 0 0 0 -0.9239 0 -0.3827 -0.7071 0 -0.7071
+3 16 0 0 0 -0.7071 0 -0.7071 -0.3827 0 -0.9239
+3 16 0 0 0 -0.3827 0 -0.9239 0 0 -1
+3 16 0 0 0 0 0 -1 0.3827 0 -0.9239
+3 16 0 0 0 0.3827 0 -0.9239 0.7071 0 -0.7071
+3 16 0 0 0 0.7071 0 -0.7071 0.9239 0 -0.3827
+3 16 0 0 0 0.9239 0 -0.3827 1 0 0
+0
+
+0 FILE p/box5.dat
+0 Box with 5 Faces and All Edges
+0 Name: box5.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2012-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 2002-04-03 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2012-02-16 [Philo] Changed to CCW
+0 !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
+
+2 24 1 1 1 -1 1 1
+2 24 -1 1 1 -1 1 -1
+2 24 -1 1 -1 1 1 -1
+2 24 1 1 -1 1 1 1
+2 24 1 0 1 -1 0 1
+2 24 -1 0 1 -1 0 -1
+2 24 -1 0 -1 1 0 -1
+2 24 1 0 -1 1 0 1
+2 24 1 0 1 1 1 1
+2 24 -1 0 1 -1 1 1
+2 24 1 0 -1 1 1 -1
+2 24 -1 0 -1 -1 1 -1
+4 16 -1 1 1 1 1 1 1 1 -1 -1 1 -1
+4 16 -1 1 1 -1 0 1 1 0 1 1 1 1
+4 16 -1 1 -1 -1 0 -1 -1 0 1 -1 1 1
+4 16 1 1 -1 1 0 -1 -1 0 -1 -1 1 -1
+4 16 1 1 1 1 0 1 1 0 -1 1 1 -1
+
+0 FILE p/stud4.dat
+0 Stud Tube Open
+0 Name: stud4.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-02
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
+0 !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
+0 !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
+
+1 16 0 -4 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 -4 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+1 16 0 0 0 6 0 0 0 1 0 0 0 6 p/4-4edge.dat
+1 16 0 0 0 8 0 0 0 1 0 0 0 8 p/4-4edge.dat
+0 BFC INVERTNEXT
+1 16 0 -4 0 6 0 0 0 4 0 0 0 6 p/4-4cyli.dat
+1 16 0 -4 0 8 0 0 0 4 0 0 0 8 p/4-4cyli.dat
+1 16 0 -4 0 2 0 0 0 1 0 0 0 2 p/4-4ring3.dat
+0
+
+0 FILE p/4-4ring3.dat
+0 Ring  3 x 1.0
+0 Name: 4-4ring3.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2009-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-04-05 [hafhead] Added BFC statement
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2008-08-26 [cwdee] Switch polygon winding and rename
+0 !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
+
+4 16 -1.5308 0 3.6956 -1.1481 0 2.7717 0 0 3 0 0 4
+4 16 -2.8284 0 2.8284 -2.1213 0 2.1213 -1.1481 0 2.7717 -1.5308 0 3.6956
+4 16 -3.6956 0 1.5308 -2.7717 0 1.1481 -2.1213 0 2.1213 -2.8284 0 2.8284
+4 16 -4 0 0 -3 0 0 -2.7717 0 1.1481 -3.6956 0 1.5308
+4 16 -3.6956 0 -1.5308 -2.7717 0 -1.1481 -3 0 0 -4 0 0
+4 16 -2.8284 0 -2.8284 -2.1213 0 -2.1213 -2.7717 0 -1.1481 -3.6956 0 -1.5308
+4 16 -1.5308 0 -3.6956 -1.1481 0 -2.7717 -2.1213 0 -2.1213 -2.8284 0 -2.8284
+4 16 0 0 -4 0 0 -3 -1.1481 0 -2.7717 -1.5308 0 -3.6956
+4 16 1.5308 0 -3.6956 1.1481 0 -2.7717 0 0 -3 0 0 -4
+4 16 2.8284 0 -2.8284 2.1213 0 -2.1213 1.1481 0 -2.7717 1.5308 0 -3.6956
+4 16 3.6956 0 -1.5308 2.7717 0 -1.1481 2.1213 0 -2.1213 2.8284 0 -2.8284
+4 16 4 0 0 3 0 0 2.7717 0 -1.1481 3.6956 0 -1.5308
+4 16 3.6956 0 1.5308 2.7717 0 1.1481 3 0 0 4 0 0
+4 16 2.8284 0 2.8284 2.1213 0 2.1213 2.7717 0 1.1481 3.6956 0 1.5308
+4 16 1.5308 0 3.6956 1.1481 0 2.7717 2.1213 0 2.1213 2.8284 0 2.8284
+4 16 0 0 4 0 0 3 1.1481 0 2.7717 1.5308 0 3.6956
+0
+
+0 FILE p/4-4cyli.dat
+0 Cylinder 1.0
+0 Name: 4-4cyli.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2005-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2002-03-23 [sbliss] Added BFC statement; merged headers from files in distributions LDraw 0.27 and Complete.
+0 !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
+0 !HISTORY 2004-12-14 [guyvivan] BFC CCW
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+
+4 16 1 1 0 0.9239 1 0.3827 0.9239 0 0.3827 1 0 0
+5 24 1 0 0 1 1 0 0.9239 0 0.3827 0.9239 0 -0.3827
+4 16 0.9239 1 0.3827 0.7071 1 0.7071 0.7071 0 0.7071 0.9239 0 0.3827
+5 24 0.9239 0 0.3827 0.9239 1 0.3827 0.7071 0 0.7071 1 0 0
+4 16 0.7071 1 0.7071 0.3827 1 0.9239 0.3827 0 0.9239 0.7071 0 0.7071
+5 24 0.7071 0 0.7071 0.7071 1 0.7071 0.3827 0 0.9239 0.9239 0 0.3827
+4 16 0.3827 1 0.9239 0 1 1 0 0 1 0.3827 0 0.9239
+5 24 0.3827 0 0.9239 0.3827 1 0.9239 0 0 1 0.7071 0 0.7071
+4 16 0 1 1 -0.3827 1 0.9239 -0.3827 0 0.9239 0 0 1
+5 24 0 0 1 0 1 1 -0.3827 0 0.9239 0.3827 0 0.9239
+4 16 -0.3827 1 0.9239 -0.7071 1 0.7071 -0.7071 0 0.7071 -0.3827 0 0.9239
+5 24 -0.3827 0 0.9239 -0.3827 1 0.9239 -0.7071 0 0.7071 0 0 1
+4 16 -0.7071 1 0.7071 -0.9239 1 0.3827 -0.9239 0 0.3827 -0.7071 0 0.7071
+5 24 -0.7071 0 0.7071 -0.7071 1 0.7071 -0.9239 0 0.3827 -0.3827 0 0.9239
+4 16 -0.9239 1 0.3827 -1 1 0 -1 0 0 -0.9239 0 0.3827
+5 24 -0.9239 0 0.3827 -0.9239 1 0.3827 -1 0 0 -0.7071 0 0.7071
+4 16 -1 1 0 -0.9239 1 -0.3827 -0.9239 0 -0.3827 -1 0 0
+5 24 -1 0 0 -1 1 0 -0.9239 0 -0.3827 -0.9239 0 0.3827
+4 16 -0.9239 1 -0.3827 -0.7071 1 -0.7071 -0.7071 0 -0.7071 -0.9239 0 -0.3827
+5 24 -0.9239 0 -0.3827 -0.9239 1 -0.3827 -0.7071 0 -0.7071 -1 0 0
+4 16 -0.7071 1 -0.7071 -0.3827 1 -0.9239 -0.3827 0 -0.9239 -0.7071 0 -0.7071
+5 24 -0.7071 0 -0.7071 -0.7071 1 -0.7071 -0.3827 0 -0.9239 -0.9239 0 -0.3827
+4 16 -0.3827 1 -0.9239 0 1 -1 0 0 -1 -0.3827 0 -0.9239
+5 24 -0.3827 0 -0.9239 -0.3827 1 -0.9239 0 0 -1 -0.7071 0 -0.7071
+4 16 0 1 -1 0.3827 1 -0.9239 0.3827 0 -0.9239 0 0 -1
+5 24 0 0 -1 0 1 -1 0.3827 0 -0.9239 -0.3827 0 -0.9239
+4 16 0.3827 1 -0.9239 0.7071 1 -0.7071 0.7071 0 -0.7071 0.3827 0 -0.9239
+5 24 0.3827 0 -0.9239 0.3827 1 -0.9239 0.7071 0 -0.7071 0 0 -1
+4 16 0.7071 1 -0.7071 0.9239 1 -0.3827 0.9239 0 -0.3827 0.7071 0 -0.7071
+5 24 0.7071 0 -0.7071 0.7071 1 -0.7071 0.9239 0 -0.3827 0.3827 0 -0.9239
+4 16 0.9239 1 -0.3827 1 1 0 1 0 0 0.9239 0 -0.3827
+5 24 0.9239 0 -0.3827 0.9239 1 -0.3827 1 0 0 0.7071 0 -0.7071
+0
+
+0 FILE p/4-4edge.dat
+0 Circle 1.0
+0 Name: 4-4edge.dat
+0 Author: James Jessiman
+0 !LDRAW_ORG Primitive UPDATE 2017-01
+0 !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
+
+0 BFC CERTIFY CCW
+
+0 !HISTORY 1998-12-15 [PTadmin] Official Update 1998-10
+0 !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
+0 !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
+0 !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
+0 !HISTORY 2017-01-15 [Steffen] BFCed
+0 !HISTORY 2017-12-30 [PTadmin] Official Update 2017-01
+
+2 24 1 0 0 0.9239 0 0.3827
+2 24 0.9239 0 0.3827 0.7071 0 0.7071
+2 24 0.7071 0 0.7071 0.3827 0 0.9239
+2 24 0.3827 0 0.9239 0 0 1
+2 24 0 0 1 -0.3827 0 0.9239
+2 24 -0.3827 0 0.9239 -0.7071 0 0.7071
+2 24 -0.7071 0 0.7071 -0.9239 0 0.3827
+2 24 -0.9239 0 0.3827 -1 0 -0
+2 24 -1 0 -0 -0.9239 0 -0.3827
+2 24 -0.9239 0 -0.3827 -0.7071 0 -0.7071
+2 24 -0.7071 0 -0.7071 -0.3827 0 -0.9239
+2 24 -0.3827 0 -0.9239 0 0 -1
+2 24 0 0 -1 0.3827 0 -0.9239
+2 24 0.3827 0 -0.9239 0.7071 0 -0.7071
+2 24 0.7071 0 -0.7071 0.9239 0 -0.3827
+2 24 0.9239 0 -0.3827 1 0 0
+
+

+ 7 - 6
examples/webgl_loader_ldraw.html

@@ -64,7 +64,8 @@
 				'models/4494-1-Imperial Shuttle-Mini.mpd_Packed.mpd',
 				'models/6965-1-TIEIntercep_4h4MXk5.mpd_Packed.mpd',
 				'models/6966-1-JediStarfighter-Mini.mpd_Packed.mpd',
-				'models/7140-1-X-wingFighter.mpd_Packed.mpd'
+				'models/7140-1-X-wingFighter.mpd_Packed.mpd',
+				'models/10174-1-ImperialAT-ST-UCS.mpd_Packed.mpd'
 			];
 
 			init();
@@ -76,7 +77,7 @@
 				container = document.createElement( 'div' );
 				document.body.appendChild( container );
 
-				camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 2000 );
+				camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 );
 				camera.position.set( 150, 200, 250 );
 
 				// scene
@@ -271,7 +272,9 @@
 
 			function onError ( error ) {
 
-				console.log( "Error loading model. " + error );
+				var message = "Error loading model";
+				progressBarDiv.innerText = message;
+				console.log( message );
 
 			}
 
@@ -289,9 +292,7 @@
 
 			function updateProgressBar ( fraction ) {
 
-				setTimeout( function() {
-					progressBarDiv.innerText = 'Loading... ' + Math.round( fraction * 100, 2 ) + '%';
-				}, 0 );
+				progressBarDiv.innerText = 'Loading... ' + Math.round( fraction * 100, 2 ) + '%';
 
 			}