diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5c2e7fddce..60f3e962a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -349,6 +349,7 @@ add_subdirectory(eeschema)
add_subdirectory(gerbview)
add_subdirectory(kicad)
add_subdirectory(pcbnew)
+add_subdirectory(pcbnew/pcad2kicadpcb_plugin)
add_subdirectory(polygon)
add_subdirectory(potrace)
add_subdirectory(bitmap2component)
diff --git a/common/wildcards_and_files_ext.cpp b/common/wildcards_and_files_ext.cpp
index 8fc7c3f381..41d6c43203 100644
--- a/common/wildcards_and_files_ext.cpp
+++ b/common/wildcards_and_files_ext.cpp
@@ -70,6 +70,7 @@ const wxString NetlistFileWildcard( _( "KiCad netlist files (*.net)|*.net" ) );
const wxString GerberFileWildcard( _( "Gerber files (*.pho)|*.pho" ) );
const wxString LegacyPcbFileWildcard( _( "KiCad printed circuit board files (*.brd)|*.brd" ) );
const wxString EaglePcbFileWildcard( _( "Eagle ver. 6.x XML PCB files (*.brd)|*.brd" ) );
+const wxString PCadPcbFileWildcard( _( "P-Cad 2002/2004 ASCII PCB files (*.pcb)|*.pcb" ) );
const wxString PcbFileWildcard( _( "KiCad s-expr printed circuit board files (*.kicad_pcb)|*.kicad_pcb" ) );
const wxString KiCadFootprintLibFileWildcard( _( "KiCad footprint s-expre library file (*.kicad_mod)|*.kicad_mod" ) );
const wxString KiCadFootprintLibPathWildcard( _( "KiCad footprint s-expre library path (*.pretty)|*.pretty" ) );
diff --git a/cvpcb/CMakeLists.txt b/cvpcb/CMakeLists.txt
index 2a4e228e4e..f154c169d4 100644
--- a/cvpcb/CMakeLists.txt
+++ b/cvpcb/CMakeLists.txt
@@ -95,6 +95,7 @@ endif(APPLE)
target_link_libraries(cvpcb
3d-viewer
pcbcommon
+ pcad2kicadpcb
common
bitmaps
polygon
diff --git a/include/richio.h b/include/richio.h
index 7aa4dbfde5..ab9724ea74 100644
--- a/include/richio.h
+++ b/include/richio.h
@@ -212,7 +212,7 @@ protected:
/**
* Function expandCapacity
- * will exand the capacity of @a line up to maxLineLength but not greater, so
+ * will expand the capacity of @a line up to maxLineLength but not greater, so
* be careful about making assumptions of @a capacity after calling this.
*/
void expandCapacity( unsigned newsize );
diff --git a/include/wildcards_and_files_ext.h b/include/wildcards_and_files_ext.h
index 6ddd10437a..d26167788b 100644
--- a/include/wildcards_and_files_ext.h
+++ b/include/wildcards_and_files_ext.h
@@ -79,6 +79,7 @@ extern const wxString GerberFileWildcard;
extern const wxString LegacyPcbFileWildcard;
extern const wxString PcbFileWildcard;
extern const wxString EaglePcbFileWildcard;
+extern const wxString PCadPcbFileWildcard;
extern const wxString PdfFileWildcard;
extern const wxString PSFileWildcard;
extern const wxString MacrosFileWildcard;
diff --git a/include/xnode.h b/include/xnode.h
index 17c46a701a..f5eb6f1e5b 100644
--- a/include/xnode.h
+++ b/include/xnode.h
@@ -46,6 +46,7 @@
class XNODE : public wxXmlNode
{
public:
+ //--------------------------------------------------------------
XNODE() :
wxXmlNode()
{
@@ -62,6 +63,22 @@ public:
{
}
+ XNODE* GetChildren() const
+ {
+ return (XNODE* )wxXmlNode::GetChildren();
+ }
+
+ XNODE* GetNext() const
+ {
+ return (XNODE* )wxXmlNode::GetNext();
+ }
+
+ XNODE* GetParent() const
+ {
+ return (XNODE* )wxXmlNode::GetParent();
+ }
+ //-------------------------------------------------------------
+
/**
* Function Format
* writes this object as UTF8 out to an OUTPUTFORMATTER as an S-expression.
diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt
index 8f2f1beb89..0f989aa8fd 100644
--- a/pcbnew/CMakeLists.txt
+++ b/pcbnew/CMakeLists.txt
@@ -416,6 +416,7 @@ target_link_libraries(pcbnew
common
bitmaps
polygon
+ pcad2kicadpcb
${wxWidgets_LIBRARIES}
${OPENGL_LIBRARIES}
${GDI_PLUS_LIBRARIES}
diff --git a/pcbnew/files.cpp b/pcbnew/files.cpp
index 2ca7cf9b60..1eda4f603d 100644
--- a/pcbnew/files.cpp
+++ b/pcbnew/files.cpp
@@ -190,6 +190,7 @@ the changes?" ) ) )
{ PcbFileWildcard, IO_MGR::KICAD },
{ LegacyPcbFileWildcard, IO_MGR::LEGACY },
{ EaglePcbFileWildcard, IO_MGR::EAGLE },
+ { PCadPcbFileWildcard, IO_MGR::PCAD },
};
if( !fileName.IsOk() || !fileName.FileExists() || aForceFileDialog )
@@ -326,13 +327,28 @@ the changes?" ) ) )
GetBoard()->SetFileName( new_filename );
}
- // Fix the directory separator on Windows
- wxString fn( GetBoard()->GetFileName() );
+ // Fix the directory separator on Windows and
+ // force the new file format for not Kicad boards,
+ // to ensure the right format when saving the board
+ bool converted = pluginType != IO_MGR::LEGACY && pluginType != IO_MGR::KICAD;
+ wxString fn;
+
+ if( converted )
+ fn = GetBoard()->GetFileName().BeforeLast( '.' );
+ else
+ fn = GetBoard()->GetFileName();
+
fn.Replace( WIN_STRING_DIR_SEP, UNIX_STRING_DIR_SEP );
+
+ if( converted )
+ fn += wxT( "." ) + PcbFileExtension;
+
GetBoard()->SetFileName( fn );
UpdateTitle();
- UpdateFileHistory( GetBoard()->GetFileName() );
+
+ if( !converted )
+ UpdateFileHistory( GetBoard()->GetFileName() );
// Rebuild the new pad list (for drc and ratsnet control ...)
GetBoard()->m_Status_Pcb = 0;
diff --git a/pcbnew/io_mgr.cpp b/pcbnew/io_mgr.cpp
index 057b294766..e47f9e9659 100644
--- a/pcbnew/io_mgr.cpp
+++ b/pcbnew/io_mgr.cpp
@@ -28,6 +28,7 @@
#include
#include
#include
+#include
#include
#include
@@ -66,6 +67,9 @@ PLUGIN* IO_MGR::PluginFind( PCB_FILE_T aFileType )
case EAGLE:
return new EAGLE_PLUGIN();
+ case PCAD:
+ return new PCAD_PLUGIN();
+
case GEDA_PCB:
return new GPCB_PLUGIN();
}
@@ -104,6 +108,9 @@ const wxString IO_MGR::ShowType( PCB_FILE_T aType )
case EAGLE:
return wxString( wxT( "Eagle" ) );
+ case PCAD:
+ return wxString( wxT( "P-Cad" ) );
+
case GEDA_PCB:
return wxString( wxT( "Geda-PCB" ) );
}
@@ -125,6 +132,9 @@ IO_MGR::PCB_FILE_T IO_MGR::EnumFromStr( const wxString& aType )
if( aType == wxT( "Eagle" ) )
return EAGLE;
+ if( aType == wxT( "P-Cad" ) )
+ return PCAD;
+
if( aType == wxT( "Geda-PCB" ) )
return GEDA_PCB;
diff --git a/pcbnew/io_mgr.h b/pcbnew/io_mgr.h
index f747c8b211..d668099b13 100644
--- a/pcbnew/io_mgr.h
+++ b/pcbnew/io_mgr.h
@@ -51,6 +51,7 @@ public:
LEGACY, //< Legacy Pcbnew file formats prior to s-expression.
KICAD, //< S-expression Pcbnew file format.
EAGLE,
+ PCAD,
GEDA_PCB, //< Geda PCB file formats.
// add your type here.
diff --git a/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt b/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt
new file mode 100644
index 0000000000..655efa60f9
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/CMakeLists.txt
@@ -0,0 +1,33 @@
+add_definitions(-DPCBNEW)
+
+include_directories(BEFORE ${INC_BEFORE})
+include_directories(
+ ../../include
+ ../../pcbnew
+ ../../polygon
+ ${INC_AFTER}
+ )
+
+set(PCAD2PCBNEW_SRCS
+ pcad2kicad_common.cpp
+ pcad_plugin.cpp
+ pcb.cpp
+ pcb_arc.cpp
+ pcb_component.cpp
+ pcb_copper_pour.cpp
+ pcb_cutout.cpp
+ pcb_keepout.cpp
+ pcb_line.cpp
+ pcb_module.cpp
+ pcb_net.cpp
+ pcb_pad.cpp
+ pcb_pad_shape.cpp
+ pcb_plane.cpp
+ pcb_polygon.cpp
+ pcb_text.cpp
+ pcb_via.cpp
+ pcb_via_shape.cpp
+ s_expr_loader.cpp
+ )
+
+add_library(pcad2kicadpcb STATIC ${PCAD2PCBNEW_SRCS})
diff --git a/pcbnew/pcad2kicadpcb_plugin/examples/CK1202_V1.pcb b/pcbnew/pcad2kicadpcb_plugin/examples/CK1202_V1.pcb
new file mode 100644
index 0000000000..1c5625609a
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/examples/CK1202_V1.pcb
@@ -0,0 +1,66655 @@
+ACCEL_ASCII "D:\Andrey\MyProekt\CK1202\CK1202_V1\CK1202_V1.pcb"
+
+(asciiHeader
+ (asciiVersion 3 0)
+ (timeStamp 2008 8 4 9 27 46)
+ (program "P-CAD 2004 PCB" "18.03.4485")
+ (copyright "Copyright © 1991-2005 Altium Limited")
+ (fileAuthor "")
+ (headerString "")
+ (fileUnits mm)
+ (guidString "{58C819FA-46B8-4B81-A3D8-035E9AEA2E68}")
+)
+
+(library "Library_1"
+ (padStyleDef "(Default)"
+ (holeDiam 0.9652)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.1336) (insideDiam 1.524) (spokeWidth 0.381) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE05D03"
+ (holeDiam 0.3)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.6) (insideDiam 0.5) (spokeWidth 0.1) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE10D06"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE08D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX120Y120D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 3.048) (shapeHeight 3.048) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:REW12H25D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 2.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:REW12H13D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.3) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW16H04D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.6) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD50x80"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.25) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD240x240"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 6.0) (shapeHeight 6.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W6H3"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.6) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H20"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW16H06"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.6) (shapeHeight 0.6) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV04D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.4) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y20D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.032) (shapeHeight 0.508) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV04_1D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.4) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD20r"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX59Y59D35A"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX59Y59D35A"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX20Y07DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 0.7) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:REW18H20D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.8) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W15H4"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H4"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "E_D16X9"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W16H16D9"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD24x32"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.6) (shapeHeight 0.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD28x32"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.75) (shapeHeight 0.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W15H635"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 0.635) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H635"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 0.635) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX16Y16D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX64Y64D36A"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y64D36A"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112A"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX80Y80D40A [1]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D40A [2]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE18D10"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE12D07"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.5) (insideDiam 1.2) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV12D07"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.5) (insideDiam 1.2) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "13x25"
+ (holeDiam 1.2954)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.4892) (shapeHeight 2.4892) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.4892) (shapeHeight 2.4892) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.4892) (shapeHeight 2.4892) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.5908) (insideDiam 1.9431) (spokeWidth 0.4318) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y64D36A [1]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX64Y64D36A [1]"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX64Y64D36A [2]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX200Y200D144A"
+ (holeDiam 3.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 6.4) (insideDiam 4.8) (spokeWidth 1.06666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R60D35"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "O60D35"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R160D112"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 5.6) (insideDiam 4.2) (spokeWidth 0.93333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "Type 3"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.1) (spokeWidth 0.25) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "Type 3(first)"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.1) (spokeWidth 0.25) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "Mounting1"
+ (holeDiam 3.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX68Y12D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.7272) (shapeHeight 0.3048) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y16D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.524) (shapeHeight 0.4064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y16D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.6256) (shapeHeight 0.4064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX96Y52D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.4384) (shapeHeight 1.3208) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y24D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.6256) (shapeHeight 0.6096) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX80Y80D40A [2]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D40A [3]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX72Y72D48A"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX80Y80D56A"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX36Y32D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.9144) (shapeHeight 0.8128) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D56A [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [1]"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX160Y60D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "EX05Y05DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y12D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.524) (shapeHeight 0.3048) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "EX04Y04DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.4) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D40A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX80Y80D40A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D40A [1]"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX40Y40D24A"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX56Y56D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.4224) (shapeHeight 1.4224) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D56A"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX24Y100D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 0.6096) (shapeHeight 2.54) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX100Y24D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.54) (shapeHeight 0.6096) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX120Y24D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 3.048) (shapeHeight 0.6096) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MX200Y200D124A"
+ (holeDiam 3.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerNumRef 2) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 6.4) (insideDiam 4.8) (spokeWidth 1.06666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX70Y70D46A"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX70Y70D46A"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.778) (shapeHeight 1.778) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX200Y144"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 5.08) (shapeHeight 3.6576) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX96Y96D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.4384) (shapeHeight 2.4384) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX72Y72D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y60D38A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX60Y60D38A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y26D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.032) (shapeHeight 0.6604) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y40D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.032) (shapeHeight 1.016) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV18D10"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P: MH_C5.0/2.8"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 5.6) (insideDiam 4.2) (spokeWidth 0.93333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX50Y50D36"
+ (holeDiam 3.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 7.2) (insideDiam 5.4) (spokeWidth 1.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW25H14D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.5) (shapeHeight 1.4) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE20D15"
+ (holeDiam 1.5)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.5) (insideDiam 2.0) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW15H03D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW15H04D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:REW12H20D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.3) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE60D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 6.0) (shapeHeight 6.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE15D08"
+ (holeDiam 0.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.6) (insideDiam 1.2) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV15D08"
+ (holeDiam 0.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.6) (insideDiam 1.2) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV18D12"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.8) (shapeHeight 1.8) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV20D15"
+ (holeDiam 1.5)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 3.0) (insideDiam 2.5) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW12H05D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV15D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE15D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 1.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW09H50D0B"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.9) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW09H50D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 0.9) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX72Y72D48A [1]"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.8288) (shapeHeight 1.8288) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX80Y80D56A [1]"
+ (holeDiam 1.4224)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8448) (insideDiam 2.1336) (spokeWidth 0.47413) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX08Y08DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "M:ED30"
+ (holeDiam 3.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType MtHole) (shapeWidth 3.0) (shapeHeight 3.0) )
+ (padShape (layerNumRef 2) (padShapeType MtHole) (shapeWidth 3.0) (shapeHeight 3.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 3.0) (shapeHeight 3.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 6.0) (insideDiam 4.5) (spokeWidth 1.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX24Y24D14"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX26Y26D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.6) (shapeHeight 2.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX23Y23D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.3) (shapeHeight 2.3) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX25Y13D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.5) (shapeHeight 1.3) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX04Y16DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.4) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX25Y12DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 2.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX16Y07DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 0.7) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX16Y16D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX028Y16DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.28) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX08Y08D04"
+ (holeDiam 0.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.76) (shapeHeight 0.76) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.76) (shapeHeight 0.76) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.76) (shapeHeight 0.76) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.8) (insideDiam 0.6) (spokeWidth 0.13333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX12Y20DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX60Y60DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 6.0) (shapeHeight 6.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX20Y20D14"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX12Y12D07"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.4) (insideDiam 1.05) (spokeWidth 0.23333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX12Y12D07"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.4) (insideDiam 1.05) (spokeWidth 0.23333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX20Y20D12"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX20Y20D12"
+ (holeDiam 1.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.4) (insideDiam 1.8) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX16Y04DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX15Y36DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 3.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX36Y36D24"
+ (holeDiam 2.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 3.6) (shapeHeight 3.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 3.6) (shapeHeight 3.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 3.6) (shapeHeight 3.6) )
+ (padShape (layerType Plane) (padShapeType Direct) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX15Y25DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.5) (shapeHeight 2.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "EX055Y055DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (useGlobalSwell False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.55) (shapeHeight 0.55) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX12Y09DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.9) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:TP10"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX05Y05D2"
+ (holeDiam 0.2)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.4) (insideDiam 0.3) (spokeWidth 0.06666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX10Y04DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX64Y64D36A [3]"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y64D36A [2]"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [2]"
+ (holeDiam 2.8448)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW13H08D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.3) (shapeHeight 0.8) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W15H4 [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H4 [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 0.4) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SX20Y07DOT [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 0.7) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W6H3 [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 0.6) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W13H12"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.3) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX56Y56D0T [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.3) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX40Y40D24A [1]"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "Mounting1 [1]"
+ (holeDiam 3.1)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y64D36A [3]"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.8) (insideDiam 1.35) (spokeWidth 0.3) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [3]"
+ (holeDiam 2.3)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [4]"
+ (holeDiam 1.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 5.08) (shapeHeight 5.08) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W15H3"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H3"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "R_W20H18"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 1.8) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [5]"
+ (holeDiam 1.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 4.0) (insideDiam 2.5) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:REW30H30D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 3.0) (shapeHeight 3.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW40H15D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV16D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.4) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE16D09"
+ (holeDiam 0.9)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.4) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHXOV40D28"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Plane) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW20H06D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 0.6) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV06D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (useGlobalSwell False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 0.56) (shapeHeight 0.56) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "REPER"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerNumRef 8) (padShapeType Oval) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 4) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 2.0) )
+ )
+ (padStyleDef "P:SX80Y68D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.8) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:EX64Y64D40A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX64Y64D40A"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6256) (shapeHeight 1.6256) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:MHX160Y160D112 [6]"
+ (holeDiam 2.3)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.064) (shapeHeight 4.064) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 4.0) (insideDiam 2.5) (spokeWidth 0.5) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW10H035D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.0) (shapeHeight 0.35) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW12H03D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW20H05D0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.0) (shapeHeight 0.5) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C5.0/3.6"
+ (holeDiam 3.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 7.2) (insideDiam 5.4) (spokeWidth 1.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV16D10"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:RE16D10"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV40D28"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Signal) (padShapeType MtHole) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 3.7) (insideDiam 3.2) (spokeWidth 0.4) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OVW11H03"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.1) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:R1.2x1.25"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.2) (shapeHeight 1.25) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C2.4/1.4"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 2.4) (shapeHeight 2.4) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:R1.0x1.5"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.5) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV1.32x0.81"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.32) (shapeHeight 0.81) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y80D0T [2]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.1) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y40D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.016) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y24D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.032) (shapeHeight 0.6096) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX36Y32D0T [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 0.9144) (shapeHeight 0.8128) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX50Y80DOT [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.27) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y60D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 1.524) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX220Y230DOT"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 5.588) (shapeHeight 5.842) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV1.83x1.0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.83) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SQ2.0/1.0"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y80D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.524) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV1.6x1.2/0.7"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.6) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.6) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.6) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.4) (insideDiam 1.05) (spokeWidth 0.23333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV1.1x0.3"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.1) (shapeHeight 0.3) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C1.6/1.0"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SQ1.6/1.0"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C5.0/2.8"
+ (holeDiam 2.8)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 5.0) (shapeHeight 5.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 5.6) (insideDiam 4.2) (spokeWidth 0.93333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SQ1.0/0.6"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SQ2.0/1.4"
+ (holeDiam 1.4)
+ (localSwell 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 2.8) (insideDiam 2.1) (spokeWidth 0.46666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "SMD36x100"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 0.9144) (shapeHeight 2.54) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C4.5/2.4"
+ (holeDiam 2.4)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 4.5) (shapeHeight 4.5) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 4.5) (shapeHeight 4.5) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 4.5) (shapeHeight 4.5) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 4.8) (insideDiam 3.6) (spokeWidth 0.8) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C1.2/0.7"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.4) (insideDiam 1.05) (spokeWidth 0.23333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV3.25x1.73/0.7"
+ (holeDiam 0.7)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.4) (insideDiam 1.05) (spokeWidth 0.23333) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:R1.52x1.78"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Rect) (shapeWidth 1.52) (shapeHeight 1.78) )
+ (padShape (layerNumRef 2) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Rect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX60Y80D0T [1]"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.524) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:SX80Y80D0T"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 2.032) (shapeHeight 2.032) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV1.5x2.0"
+ (holeDiam 0.0)
+ (isHolePlated False)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 1.5) (shapeHeight 2.0) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 0.0) (insideDiam 0.0) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:C4.0/2.0"
+ (holeDiam 2.0)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Ellipse) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerNumRef 2) (padShapeType Ellipse) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Signal) (padShapeType Ellipse) (shapeWidth 4.0) (shapeHeight 4.0) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 4.0) (insideDiam 3.0) (spokeWidth 0.66666) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (padStyleDef "P:OV3.25x1.73/0.6"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (padShape (layerNumRef 1) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerNumRef 2) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerType Signal) (padShapeType Oval) (shapeWidth 3.25) (shapeHeight 1.73) )
+ (padShape (layerType Plane) (padShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (padShape (layerType NonSignal) (padShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "(Default)"
+ (holeDiam 0.4572)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 1.016) (shapeHeight 1.016) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 1.6256) (insideDiam 1.016) (spokeWidth 0.381) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "D8d4"
+ (holeDiam 0.4)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 0.8) (insideDiam 0.6) (spokeWidth 0.13333) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 4) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 5) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "P:OV05D03"
+ (holeDiam 0.3)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 0.6) (insideDiam 0.45) (spokeWidth 0.15) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 4) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 5) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "D10d5"
+ (holeDiam 0.5)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 1.0) (shapeHeight 1.0) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 1.0) (insideDiam 0.75) (spokeWidth 0.3) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 4) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ (viaShape (layerNumRef 5) (viaShapeType NoConnect) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "P:REX20Y20D14"
+ (holeDiam 1.4)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (viaShape (layerNumRef 2) (viaShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (viaShape (layerType Signal) (viaShapeType Rect) (shapeWidth 2.0) (shapeHeight 2.0) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 2.5) (insideDiam 2.0) (spokeWidth 0.5) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "P:OV05D03 [1]"
+ (holeDiam 0.3)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 0.5) (shapeHeight 0.5) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 0.6) (insideDiam 0.45) (spokeWidth 0.1) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "P:OV14D08"
+ (holeDiam 0.8)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 1.6) (insideDiam 1.2) (spokeWidth 0.3) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "P:OV08D05"
+ (holeDiam 0.5)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 1.0) (insideDiam 0.75) (spokeWidth 0.16666) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "V:C0.8/0.3"
+ (holeDiam 0.3)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 0.8) (shapeHeight 0.8) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 0.6) (insideDiam 0.45) (spokeWidth 0.1) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "V:C1.6/1.0"
+ (holeDiam 1.0)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 1.6) (shapeHeight 1.6) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 2.0) (insideDiam 1.5) (spokeWidth 0.33333) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (viaStyleDef "V:C1.2/0.6"
+ (holeDiam 0.6)
+ (StartRange 1)
+ (EndRange 2)
+ (viaShape (layerNumRef 1) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerNumRef 2) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerType Signal) (viaShapeType Ellipse) (shapeWidth 1.2) (shapeHeight 1.2) )
+ (viaShape (layerType Plane) (viaShapeType Thrm4_45) (outsideDiam 1.2) (insideDiam 0.9) (spokeWidth 0.2) )
+ (viaShape (layerType NonSignal) (viaShapeType Ellipse) (shapeWidth 0.0) (shapeHeight 0.0) )
+ )
+ (textStyleDef "(Default)"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 2.54)
+ (strokeWidth 0.254)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "(DefaultTTF)"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 2.54)
+ (strokeWidth 0.254)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 3.175)
+ (strokeWidth 0.19843)
+ (fontWeight 400)
+ (fontCharSet 0)
+ (fontOutPrecision 7)
+ (fontClipPrecision 32)
+ (fontQuality 1)
+ (fontPitchAndFamily 6)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "T:H60W6"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 1.524)
+ (strokeWidth 0.152)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "T:H80W8"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 2.5)
+ (strokeWidth 0.25)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "H16 [1]"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 1.6)
+ (strokeWidth 0.12)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "T2.5"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 3.3782)
+ (strokeWidth 0.3048)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 4.23333)
+ (strokeWidth 0.26458)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "T:H40W5"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 1.0)
+ (strokeWidth 0.127)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "ÃÎÑÒ-À-3.5"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 2.54)
+ (strokeWidth 0.254)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 5.64444)
+ (strokeWidth 0.35277)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "TH100"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 5.0)
+ (strokeWidth 0.4)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "T:H80W8 [1]"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 2.032)
+ (strokeWidth 0.203)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "ÃÎÑÒ-À-2.5"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 2.54)
+ (strokeWidth 0.254)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 4.23333)
+ (strokeWidth 0.26458)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "T:H40W5 [1]"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 1.016)
+ (strokeWidth 0.127)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial")
+ (fontHeight 2.82222)
+ (strokeWidth 0.17638)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (textStyleDef "ÃÎÑÒ-À-2.5:2"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 1.016)
+ (strokeWidth 0.127)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 2.11667)
+ (strokeWidth 0.13229)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "ÃÎÑÒ-À-2.5:2 [2]"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 1.016)
+ (strokeWidth 0.127)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 2.11667)
+ (strokeWidth 0.13229)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "ÃÎÑÒ-À-2.5:2 [1]"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "QUALITY")
+ (fontHeight 1.016)
+ (strokeWidth 0.127)
+ )
+ (font
+ (fontType TrueType)
+ (fontFamily Modern)
+ (fontFace "Arial Narrow")
+ (fontHeight 2.11667)
+ (strokeWidth 0.13229)
+ (fontWeight 400)
+ (fontCharSet 204)
+ (fontOutPrecision 3)
+ (fontClipPrecision 2)
+ (fontQuality 1)
+ (fontPitchAndFamily 38)
+ )
+ (textStyleAllowTType True)
+ (textStyleDisplayTType True)
+ )
+ (textStyleDef "T:H120W12"
+ (font
+ (fontType Stroke)
+ (fontFamily SanSerif)
+ (fontFace "Quality")
+ (fontHeight 3.0)
+ (strokeWidth 0.3)
+ )
+ (textStyleAllowTType False)
+ (textStyleDisplayTType False)
+ )
+ (patternDefExtended "XP2_1"
+ (originalName "XP2")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:RE18D10") (pt 0.0 -2.54) (rotation 90.0) )
+ (pad (padNum 1) (padStyleRef "P:RE18D10") (pt 0.0 0.0) (rotation 90.0) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.27 1.27) (pt -1.27 -3.81) (width 0.2) )
+ (line (pt 1.27 -3.81) (pt 1.27 1.27) (width 0.2) )
+ (line (pt -1.27 -3.81) (pt 1.27 -3.81) (width 0.2) )
+ (line (pt 1.27 1.27) (pt -1.27 1.27) (width 0.2) )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt -3.24 -0.3) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -4.064) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "BC256_1"
+ (originalName "BC256")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 47) (padStyleRef "P:OV04_1D0") (pt 2.0 -14.0) (rotation 180.0) (defaultPinDes "R3") )
+ (pad (padNum 63) (padStyleRef "P:OV04_1D0") (pt 3.0 -14.0) (rotation 180.0) (defaultPinDes "R4") )
+ (pad (padNum 127) (padStyleRef "P:OV04_1D0") (pt 7.0 -14.0) (rotation 180.0) (defaultPinDes "R8") )
+ (pad (padNum 111) (padStyleRef "P:OV04_1D0") (pt 6.0 -14.0) (rotation 180.0) (defaultPinDes "R7") )
+ (pad (padNum 95) (padStyleRef "P:OV04_1D0") (pt 5.0 -14.0) (rotation 180.0) (defaultPinDes "R6") )
+ (pad (padNum 79) (padStyleRef "P:OV04_1D0") (pt 4.0 -14.0) (rotation 180.0) (defaultPinDes "R5") )
+ (pad (padNum 44) (padStyleRef "P:OV04_1D0") (pt 2.0 -11.0) (rotation 180.0) (defaultPinDes "M3") )
+ (pad (padNum 60) (padStyleRef "P:OV04_1D0") (pt 3.0 -11.0) (rotation 180.0) (defaultPinDes "M4") )
+ (pad (padNum 42) (padStyleRef "P:OV04_1D0") (pt 2.0 -9.0) (rotation 180.0) (defaultPinDes "K3") )
+ (pad (padNum 58) (padStyleRef "P:OV04_1D0") (pt 3.0 -9.0) (rotation 180.0) (defaultPinDes "K4") )
+ (pad (padNum 43) (padStyleRef "P:OV04_1D0") (pt 2.0 -10.0) (rotation 180.0) (defaultPinDes "L3") )
+ (pad (padNum 59) (padStyleRef "P:OV04_1D0") (pt 3.0 -10.0) (rotation 180.0) (defaultPinDes "L4") )
+ (pad (padNum 124) (padStyleRef "P:OV04_1D0") (pt 7.0 -11.0) (rotation 180.0) (defaultPinDes "M8") )
+ (pad (padNum 108) (padStyleRef "P:OV04_1D0") (pt 6.0 -11.0) (rotation 180.0) (defaultPinDes "M7") )
+ (pad (padNum 122) (padStyleRef "P:OV04_1D0") (pt 7.0 -9.0) (rotation 180.0) (defaultPinDes "K8") )
+ (pad (padNum 106) (padStyleRef "P:OV04_1D0") (pt 6.0 -9.0) (rotation 180.0) (defaultPinDes "K7") )
+ (pad (padNum 123) (padStyleRef "P:OV04_1D0") (pt 7.0 -10.0) (rotation 180.0) (defaultPinDes "L8") )
+ (pad (padNum 107) (padStyleRef "P:OV04_1D0") (pt 6.0 -10.0) (rotation 180.0) (defaultPinDes "L7") )
+ (pad (padNum 92) (padStyleRef "P:OV04_1D0") (pt 5.0 -11.0) (rotation 180.0) (defaultPinDes "M6") )
+ (pad (padNum 90) (padStyleRef "P:OV04_1D0") (pt 5.0 -9.0) (rotation 180.0) (defaultPinDes "K6") )
+ (pad (padNum 91) (padStyleRef "P:OV04_1D0") (pt 5.0 -10.0) (rotation 180.0) (defaultPinDes "L6") )
+ (pad (padNum 45) (padStyleRef "P:OV04_1D0") (pt 2.0 -12.0) (rotation 180.0) (defaultPinDes "N3") )
+ (pad (padNum 61) (padStyleRef "P:OV04_1D0") (pt 3.0 -12.0) (rotation 180.0) (defaultPinDes "N4") )
+ (pad (padNum 125) (padStyleRef "P:OV04_1D0") (pt 7.0 -12.0) (rotation 180.0) (defaultPinDes "N8") )
+ (pad (padNum 109) (padStyleRef "P:OV04_1D0") (pt 6.0 -12.0) (rotation 180.0) (defaultPinDes "N7") )
+ (pad (padNum 93) (padStyleRef "P:OV04_1D0") (pt 5.0 -12.0) (rotation 180.0) (defaultPinDes "N6") )
+ (pad (padNum 76) (padStyleRef "P:OV04_1D0") (pt 4.0 -11.0) (rotation 180.0) (defaultPinDes "M5") )
+ (pad (padNum 74) (padStyleRef "P:OV04_1D0") (pt 4.0 -9.0) (rotation 180.0) (defaultPinDes "K5") )
+ (pad (padNum 75) (padStyleRef "P:OV04_1D0") (pt 4.0 -10.0) (rotation 180.0) (defaultPinDes "L5") )
+ (pad (padNum 77) (padStyleRef "P:OV04_1D0") (pt 4.0 -12.0) (rotation 180.0) (defaultPinDes "N5") )
+ (pad (padNum 46) (padStyleRef "P:OV04_1D0") (pt 2.0 -13.0) (rotation 180.0) (defaultPinDes "P3") )
+ (pad (padNum 62) (padStyleRef "P:OV04_1D0") (pt 3.0 -13.0) (rotation 180.0) (defaultPinDes "P4") )
+ (pad (padNum 126) (padStyleRef "P:OV04_1D0") (pt 7.0 -13.0) (rotation 180.0) (defaultPinDes "P8") )
+ (pad (padNum 110) (padStyleRef "P:OV04_1D0") (pt 6.0 -13.0) (rotation 180.0) (defaultPinDes "P7") )
+ (pad (padNum 94) (padStyleRef "P:OV04_1D0") (pt 5.0 -13.0) (rotation 180.0) (defaultPinDes "P6") )
+ (pad (padNum 78) (padStyleRef "P:OV04_1D0") (pt 4.0 -13.0) (rotation 180.0) (defaultPinDes "P5") )
+ (pad (padNum 31) (padStyleRef "P:OV04_1D0") (pt 1.0 -14.0) (rotation 180.0) (defaultPinDes "R2") )
+ (pad (padNum 28) (padStyleRef "P:OV04_1D0") (pt 1.0 -11.0) (rotation 180.0) (defaultPinDes "M2") )
+ (pad (padNum 26) (padStyleRef "P:OV04_1D0") (pt 1.0 -9.0) (rotation 180.0) (defaultPinDes "K2") )
+ (pad (padNum 27) (padStyleRef "P:OV04_1D0") (pt 1.0 -10.0) (rotation 180.0) (defaultPinDes "L2") )
+ (pad (padNum 29) (padStyleRef "P:OV04_1D0") (pt 1.0 -12.0) (rotation 180.0) (defaultPinDes "N2") )
+ (pad (padNum 30) (padStyleRef "P:OV04_1D0") (pt 1.0 -13.0) (rotation 180.0) (defaultPinDes "P2") )
+ (pad (padNum 40) (padStyleRef "P:OV04_1D0") (pt 2.0 -7.0) (rotation 180.0) (defaultPinDes "H3") )
+ (pad (padNum 39) (padStyleRef "P:OV04_1D0") (pt 2.0 -6.0) (rotation 180.0) (defaultPinDes "G3") )
+ (pad (padNum 56) (padStyleRef "P:OV04_1D0") (pt 3.0 -7.0) (rotation 180.0) (defaultPinDes "H4") )
+ (pad (padNum 55) (padStyleRef "P:OV04_1D0") (pt 3.0 -6.0) (rotation 180.0) (defaultPinDes "G4") )
+ (pad (padNum 120) (padStyleRef "P:OV04_1D0") (pt 7.0 -7.0) (rotation 180.0) (defaultPinDes "H8") )
+ (pad (padNum 104) (padStyleRef "P:OV04_1D0") (pt 6.0 -7.0) (rotation 180.0) (defaultPinDes "H7") )
+ (pad (padNum 119) (padStyleRef "P:OV04_1D0") (pt 7.0 -6.0) (rotation 180.0) (defaultPinDes "G8") )
+ (pad (padNum 103) (padStyleRef "P:OV04_1D0") (pt 6.0 -6.0) (rotation 180.0) (defaultPinDes "G7") )
+ (pad (padNum 88) (padStyleRef "P:OV04_1D0") (pt 5.0 -7.0) (rotation 180.0) (defaultPinDes "H6") )
+ (pad (padNum 87) (padStyleRef "P:OV04_1D0") (pt 5.0 -6.0) (rotation 180.0) (defaultPinDes "G6") )
+ (pad (padNum 72) (padStyleRef "P:OV04_1D0") (pt 4.0 -7.0) (rotation 180.0) (defaultPinDes "H5") )
+ (pad (padNum 71) (padStyleRef "P:OV04_1D0") (pt 4.0 -6.0) (rotation 180.0) (defaultPinDes "G5") )
+ (pad (padNum 37) (padStyleRef "P:OV04_1D0") (pt 2.0 -4.0) (rotation 180.0) (defaultPinDes "E3") )
+ (pad (padNum 36) (padStyleRef "P:OV04_1D0") (pt 2.0 -3.0) (rotation 180.0) (defaultPinDes "D3") )
+ (pad (padNum 53) (padStyleRef "P:OV04_1D0") (pt 3.0 -4.0) (rotation 180.0) (defaultPinDes "E4") )
+ (pad (padNum 52) (padStyleRef "P:OV04_1D0") (pt 3.0 -3.0) (rotation 180.0) (defaultPinDes "D4") )
+ (pad (padNum 34) (padStyleRef "P:OV04_1D0") (pt 2.0 -1.0) (rotation 180.0) (defaultPinDes "B3") )
+ (pad (padNum 50) (padStyleRef "P:OV04_1D0") (pt 3.0 -1.0) (rotation 180.0) (defaultPinDes "B4") )
+ (pad (padNum 35) (padStyleRef "P:OV04_1D0") (pt 2.0 -2.0) (rotation 180.0) (defaultPinDes "C3") )
+ (pad (padNum 51) (padStyleRef "P:OV04_1D0") (pt 3.0 -2.0) (rotation 180.0) (defaultPinDes "C4") )
+ (pad (padNum 117) (padStyleRef "P:OV04_1D0") (pt 7.0 -4.0) (rotation 180.0) (defaultPinDes "E8") )
+ (pad (padNum 101) (padStyleRef "P:OV04_1D0") (pt 6.0 -4.0) (rotation 180.0) (defaultPinDes "E7") )
+ (pad (padNum 116) (padStyleRef "P:OV04_1D0") (pt 7.0 -3.0) (rotation 180.0) (defaultPinDes "D8") )
+ (pad (padNum 100) (padStyleRef "P:OV04_1D0") (pt 6.0 -3.0) (rotation 180.0) (defaultPinDes "D7") )
+ (pad (padNum 114) (padStyleRef "P:OV04_1D0") (pt 7.0 -1.0) (rotation 180.0) (defaultPinDes "B8") )
+ (pad (padNum 98) (padStyleRef "P:OV04_1D0") (pt 6.0 -1.0) (rotation 180.0) (defaultPinDes "B7") )
+ (pad (padNum 115) (padStyleRef "P:OV04_1D0") (pt 7.0 -2.0) (rotation 180.0) (defaultPinDes "C8") )
+ (pad (padNum 99) (padStyleRef "P:OV04_1D0") (pt 6.0 -2.0) (rotation 180.0) (defaultPinDes "C7") )
+ (pad (padNum 85) (padStyleRef "P:OV04_1D0") (pt 5.0 -4.0) (rotation 180.0) (defaultPinDes "E6") )
+ (pad (padNum 84) (padStyleRef "P:OV04_1D0") (pt 5.0 -3.0) (rotation 180.0) (defaultPinDes "D6") )
+ (pad (padNum 82) (padStyleRef "P:OV04_1D0") (pt 5.0 -1.0) (rotation 180.0) (defaultPinDes "B6") )
+ (pad (padNum 83) (padStyleRef "P:OV04_1D0") (pt 5.0 -2.0) (rotation 180.0) (defaultPinDes "C6") )
+ (pad (padNum 69) (padStyleRef "P:OV04_1D0") (pt 4.0 -4.0) (rotation 180.0) (defaultPinDes "E5") )
+ (pad (padNum 68) (padStyleRef "P:OV04_1D0") (pt 4.0 -3.0) (rotation 180.0) (defaultPinDes "D5") )
+ (pad (padNum 66) (padStyleRef "P:OV04_1D0") (pt 4.0 -1.0) (rotation 180.0) (defaultPinDes "B5") )
+ (pad (padNum 67) (padStyleRef "P:OV04_1D0") (pt 4.0 -2.0) (rotation 180.0) (defaultPinDes "C5") )
+ (pad (padNum 38) (padStyleRef "P:OV04_1D0") (pt 2.0 -5.0) (rotation 180.0) (defaultPinDes "F3") )
+ (pad (padNum 54) (padStyleRef "P:OV04_1D0") (pt 3.0 -5.0) (rotation 180.0) (defaultPinDes "F4") )
+ (pad (padNum 118) (padStyleRef "P:OV04_1D0") (pt 7.0 -5.0) (rotation 180.0) (defaultPinDes "F8") )
+ (pad (padNum 102) (padStyleRef "P:OV04_1D0") (pt 6.0 -5.0) (rotation 180.0) (defaultPinDes "F7") )
+ (pad (padNum 86) (padStyleRef "P:OV04_1D0") (pt 5.0 -5.0) (rotation 180.0) (defaultPinDes "F6") )
+ (pad (padNum 70) (padStyleRef "P:OV04_1D0") (pt 4.0 -5.0) (rotation 180.0) (defaultPinDes "F5") )
+ (pad (padNum 24) (padStyleRef "P:OV04_1D0") (pt 1.0 -7.0) (rotation 180.0) (defaultPinDes "H2") )
+ (pad (padNum 23) (padStyleRef "P:OV04_1D0") (pt 1.0 -6.0) (rotation 180.0) (defaultPinDes "G2") )
+ (pad (padNum 21) (padStyleRef "P:OV04_1D0") (pt 1.0 -4.0) (rotation 180.0) (defaultPinDes "E2") )
+ (pad (padNum 20) (padStyleRef "P:OV04_1D0") (pt 1.0 -3.0) (rotation 180.0) (defaultPinDes "D2") )
+ (pad (padNum 18) (padStyleRef "P:OV04_1D0") (pt 1.0 -1.0) (rotation 180.0) (defaultPinDes "B2") )
+ (pad (padNum 19) (padStyleRef "P:OV04_1D0") (pt 1.0 -2.0) (rotation 180.0) (defaultPinDes "C2") )
+ (pad (padNum 22) (padStyleRef "P:OV04_1D0") (pt 1.0 -5.0) (rotation 180.0) (defaultPinDes "F2") )
+ (pad (padNum 175) (padStyleRef "P:OV04_1D0") (pt 10.0 -14.0) (rotation 180.0) (defaultPinDes "R11") )
+ (pad (padNum 207) (padStyleRef "P:OV04_1D0") (pt 12.0 -14.0) (rotation 180.0) (defaultPinDes "R13") )
+ (pad (padNum 239) (padStyleRef "P:OV04_1D0") (pt 14.0 -14.0) (rotation 180.0) (defaultPinDes "R15") )
+ (pad (padNum 223) (padStyleRef "P:OV04_1D0") (pt 13.0 -14.0) (rotation 180.0) (defaultPinDes "R14") )
+ (pad (padNum 191) (padStyleRef "P:OV04_1D0") (pt 11.0 -14.0) (rotation 180.0) (defaultPinDes "R12") )
+ (pad (padNum 172) (padStyleRef "P:OV04_1D0") (pt 10.0 -11.0) (rotation 180.0) (defaultPinDes "M11") )
+ (pad (padNum 170) (padStyleRef "P:OV04_1D0") (pt 10.0 -9.0) (rotation 180.0) (defaultPinDes "K11") )
+ (pad (padNum 171) (padStyleRef "P:OV04_1D0") (pt 10.0 -10.0) (rotation 180.0) (defaultPinDes "L11") )
+ (pad (padNum 204) (padStyleRef "P:OV04_1D0") (pt 12.0 -11.0) (rotation 180.0) (defaultPinDes "M13") )
+ (pad (padNum 202) (padStyleRef "P:OV04_1D0") (pt 12.0 -9.0) (rotation 180.0) (defaultPinDes "K13") )
+ (pad (padNum 236) (padStyleRef "P:OV04_1D0") (pt 14.0 -11.0) (rotation 180.0) (defaultPinDes "M15") )
+ (pad (padNum 234) (padStyleRef "P:OV04_1D0") (pt 14.0 -9.0) (rotation 180.0) (defaultPinDes "K15") )
+ (pad (padNum 203) (padStyleRef "P:OV04_1D0") (pt 12.0 -10.0) (rotation 180.0) (defaultPinDes "L13") )
+ (pad (padNum 235) (padStyleRef "P:OV04_1D0") (pt 14.0 -10.0) (rotation 180.0) (defaultPinDes "L15") )
+ (pad (padNum 220) (padStyleRef "P:OV04_1D0") (pt 13.0 -11.0) (rotation 180.0) (defaultPinDes "M14") )
+ (pad (padNum 218) (padStyleRef "P:OV04_1D0") (pt 13.0 -9.0) (rotation 180.0) (defaultPinDes "K14") )
+ (pad (padNum 219) (padStyleRef "P:OV04_1D0") (pt 13.0 -10.0) (rotation 180.0) (defaultPinDes "L14") )
+ (pad (padNum 173) (padStyleRef "P:OV04_1D0") (pt 10.0 -12.0) (rotation 180.0) (defaultPinDes "N11") )
+ (pad (padNum 205) (padStyleRef "P:OV04_1D0") (pt 12.0 -12.0) (rotation 180.0) (defaultPinDes "N13") )
+ (pad (padNum 237) (padStyleRef "P:OV04_1D0") (pt 14.0 -12.0) (rotation 180.0) (defaultPinDes "N15") )
+ (pad (padNum 221) (padStyleRef "P:OV04_1D0") (pt 13.0 -12.0) (rotation 180.0) (defaultPinDes "N14") )
+ (pad (padNum 188) (padStyleRef "P:OV04_1D0") (pt 11.0 -11.0) (rotation 180.0) (defaultPinDes "M12") )
+ (pad (padNum 186) (padStyleRef "P:OV04_1D0") (pt 11.0 -9.0) (rotation 180.0) (defaultPinDes "K12") )
+ (pad (padNum 187) (padStyleRef "P:OV04_1D0") (pt 11.0 -10.0) (rotation 180.0) (defaultPinDes "L12") )
+ (pad (padNum 189) (padStyleRef "P:OV04_1D0") (pt 11.0 -12.0) (rotation 180.0) (defaultPinDes "N12") )
+ (pad (padNum 174) (padStyleRef "P:OV04_1D0") (pt 10.0 -13.0) (rotation 180.0) (defaultPinDes "P11") )
+ (pad (padNum 206) (padStyleRef "P:OV04_1D0") (pt 12.0 -13.0) (rotation 180.0) (defaultPinDes "P13") )
+ (pad (padNum 238) (padStyleRef "P:OV04_1D0") (pt 14.0 -13.0) (rotation 180.0) (defaultPinDes "P15") )
+ (pad (padNum 222) (padStyleRef "P:OV04_1D0") (pt 13.0 -13.0) (rotation 180.0) (defaultPinDes "P14") )
+ (pad (padNum 190) (padStyleRef "P:OV04_1D0") (pt 11.0 -13.0) (rotation 180.0) (defaultPinDes "P12") )
+ (pad (padNum 159) (padStyleRef "P:OV04_1D0") (pt 9.0 -14.0) (rotation 180.0) (defaultPinDes "R10") )
+ (pad (padNum 156) (padStyleRef "P:OV04_1D0") (pt 9.0 -11.0) (rotation 180.0) (defaultPinDes "M10") )
+ (pad (padNum 154) (padStyleRef "P:OV04_1D0") (pt 9.0 -9.0) (rotation 180.0) (defaultPinDes "K10") )
+ (pad (padNum 155) (padStyleRef "P:OV04_1D0") (pt 9.0 -10.0) (rotation 180.0) (defaultPinDes "L10") )
+ (pad (padNum 157) (padStyleRef "P:OV04_1D0") (pt 9.0 -12.0) (rotation 180.0) (defaultPinDes "N10") )
+ (pad (padNum 158) (padStyleRef "P:OV04_1D0") (pt 9.0 -13.0) (rotation 180.0) (defaultPinDes "P10") )
+ (pad (padNum 168) (padStyleRef "P:OV04_1D0") (pt 10.0 -7.0) (rotation 180.0) (defaultPinDes "H11") )
+ (pad (padNum 167) (padStyleRef "P:OV04_1D0") (pt 10.0 -6.0) (rotation 180.0) (defaultPinDes "G11") )
+ (pad (padNum 200) (padStyleRef "P:OV04_1D0") (pt 12.0 -7.0) (rotation 180.0) (defaultPinDes "H13") )
+ (pad (padNum 199) (padStyleRef "P:OV04_1D0") (pt 12.0 -6.0) (rotation 180.0) (defaultPinDes "G13") )
+ (pad (padNum 232) (padStyleRef "P:OV04_1D0") (pt 14.0 -7.0) (rotation 180.0) (defaultPinDes "H15") )
+ (pad (padNum 231) (padStyleRef "P:OV04_1D0") (pt 14.0 -6.0) (rotation 180.0) (defaultPinDes "G15") )
+ (pad (padNum 216) (padStyleRef "P:OV04_1D0") (pt 13.0 -7.0) (rotation 180.0) (defaultPinDes "H14") )
+ (pad (padNum 215) (padStyleRef "P:OV04_1D0") (pt 13.0 -6.0) (rotation 180.0) (defaultPinDes "G14") )
+ (pad (padNum 184) (padStyleRef "P:OV04_1D0") (pt 11.0 -7.0) (rotation 180.0) (defaultPinDes "H12") )
+ (pad (padNum 183) (padStyleRef "P:OV04_1D0") (pt 11.0 -6.0) (rotation 180.0) (defaultPinDes "G12") )
+ (pad (padNum 165) (padStyleRef "P:OV04_1D0") (pt 10.0 -4.0) (rotation 180.0) (defaultPinDes "E11") )
+ (pad (padNum 164) (padStyleRef "P:OV04_1D0") (pt 10.0 -3.0) (rotation 180.0) (defaultPinDes "D11") )
+ (pad (padNum 162) (padStyleRef "P:OV04_1D0") (pt 10.0 -1.0) (rotation 180.0) (defaultPinDes "B11") )
+ (pad (padNum 163) (padStyleRef "P:OV04_1D0") (pt 10.0 -2.0) (rotation 180.0) (defaultPinDes "C11") )
+ (pad (padNum 197) (padStyleRef "P:OV04_1D0") (pt 12.0 -4.0) (rotation 180.0) (defaultPinDes "E13") )
+ (pad (padNum 196) (padStyleRef "P:OV04_1D0") (pt 12.0 -3.0) (rotation 180.0) (defaultPinDes "D13") )
+ (pad (padNum 194) (padStyleRef "P:OV04_1D0") (pt 12.0 -1.0) (rotation 180.0) (defaultPinDes "B13") )
+ (pad (padNum 229) (padStyleRef "P:OV04_1D0") (pt 14.0 -4.0) (rotation 180.0) (defaultPinDes "E15") )
+ (pad (padNum 228) (padStyleRef "P:OV04_1D0") (pt 14.0 -3.0) (rotation 180.0) (defaultPinDes "D15") )
+ (pad (padNum 226) (padStyleRef "P:OV04_1D0") (pt 14.0 -1.0) (rotation 180.0) (defaultPinDes "B15") )
+ (pad (padNum 195) (padStyleRef "P:OV04_1D0") (pt 12.0 -2.0) (rotation 180.0) (defaultPinDes "C13") )
+ (pad (padNum 227) (padStyleRef "P:OV04_1D0") (pt 14.0 -2.0) (rotation 180.0) (defaultPinDes "C15") )
+ (pad (padNum 213) (padStyleRef "P:OV04_1D0") (pt 13.0 -4.0) (rotation 180.0) (defaultPinDes "E14") )
+ (pad (padNum 212) (padStyleRef "P:OV04_1D0") (pt 13.0 -3.0) (rotation 180.0) (defaultPinDes "D14") )
+ (pad (padNum 210) (padStyleRef "P:OV04_1D0") (pt 13.0 -1.0) (rotation 180.0) (defaultPinDes "B14") )
+ (pad (padNum 211) (padStyleRef "P:OV04_1D0") (pt 13.0 -2.0) (rotation 180.0) (defaultPinDes "C14") )
+ (pad (padNum 181) (padStyleRef "P:OV04_1D0") (pt 11.0 -4.0) (rotation 180.0) (defaultPinDes "E12") )
+ (pad (padNum 180) (padStyleRef "P:OV04_1D0") (pt 11.0 -3.0) (rotation 180.0) (defaultPinDes "D12") )
+ (pad (padNum 178) (padStyleRef "P:OV04_1D0") (pt 11.0 -1.0) (rotation 180.0) (defaultPinDes "B12") )
+ (pad (padNum 179) (padStyleRef "P:OV04_1D0") (pt 11.0 -2.0) (rotation 180.0) (defaultPinDes "C12") )
+ (pad (padNum 166) (padStyleRef "P:OV04_1D0") (pt 10.0 -5.0) (rotation 180.0) (defaultPinDes "F11") )
+ (pad (padNum 198) (padStyleRef "P:OV04_1D0") (pt 12.0 -5.0) (rotation 180.0) (defaultPinDes "F13") )
+ (pad (padNum 230) (padStyleRef "P:OV04_1D0") (pt 14.0 -5.0) (rotation 180.0) (defaultPinDes "F15") )
+ (pad (padNum 214) (padStyleRef "P:OV04_1D0") (pt 13.0 -5.0) (rotation 180.0) (defaultPinDes "F14") )
+ (pad (padNum 182) (padStyleRef "P:OV04_1D0") (pt 11.0 -5.0) (rotation 180.0) (defaultPinDes "F12") )
+ (pad (padNum 152) (padStyleRef "P:OV04_1D0") (pt 9.0 -7.0) (rotation 180.0) (defaultPinDes "H10") )
+ (pad (padNum 151) (padStyleRef "P:OV04_1D0") (pt 9.0 -6.0) (rotation 180.0) (defaultPinDes "G10") )
+ (pad (padNum 149) (padStyleRef "P:OV04_1D0") (pt 9.0 -4.0) (rotation 180.0) (defaultPinDes "E10") )
+ (pad (padNum 148) (padStyleRef "P:OV04_1D0") (pt 9.0 -3.0) (rotation 180.0) (defaultPinDes "D10") )
+ (pad (padNum 146) (padStyleRef "P:OV04_1D0") (pt 9.0 -1.0) (rotation 180.0) (defaultPinDes "B10") )
+ (pad (padNum 147) (padStyleRef "P:OV04_1D0") (pt 9.0 -2.0) (rotation 180.0) (defaultPinDes "C10") )
+ (pad (padNum 150) (padStyleRef "P:OV04_1D0") (pt 9.0 -5.0) (rotation 180.0) (defaultPinDes "F10") )
+ (pad (padNum 48) (padStyleRef "P:OV04_1D0") (pt 2.0 -15.0) (rotation 180.0) (defaultPinDes "T3") )
+ (pad (padNum 64) (padStyleRef "P:OV04_1D0") (pt 3.0 -15.0) (rotation 180.0) (defaultPinDes "T4") )
+ (pad (padNum 128) (padStyleRef "P:OV04_1D0") (pt 7.0 -15.0) (rotation 180.0) (defaultPinDes "T8") )
+ (pad (padNum 112) (padStyleRef "P:OV04_1D0") (pt 6.0 -15.0) (rotation 180.0) (defaultPinDes "T7") )
+ (pad (padNum 96) (padStyleRef "P:OV04_1D0") (pt 5.0 -15.0) (rotation 180.0) (defaultPinDes "T6") )
+ (pad (padNum 80) (padStyleRef "P:OV04_1D0") (pt 4.0 -15.0) (rotation 180.0) (defaultPinDes "T5") )
+ (pad (padNum 41) (padStyleRef "P:OV04_1D0") (pt 2.0 -8.0) (rotation 180.0) (defaultPinDes "J3") )
+ (pad (padNum 57) (padStyleRef "P:OV04_1D0") (pt 3.0 -8.0) (rotation 180.0) (defaultPinDes "J4") )
+ (pad (padNum 121) (padStyleRef "P:OV04_1D0") (pt 7.0 -8.0) (rotation 180.0) (defaultPinDes "J8") )
+ (pad (padNum 105) (padStyleRef "P:OV04_1D0") (pt 6.0 -8.0) (rotation 180.0) (defaultPinDes "J7") )
+ (pad (padNum 89) (padStyleRef "P:OV04_1D0") (pt 5.0 -8.0) (rotation 180.0) (defaultPinDes "J6") )
+ (pad (padNum 73) (padStyleRef "P:OV04_1D0") (pt 4.0 -8.0) (rotation 180.0) (defaultPinDes "J5") )
+ (pad (padNum 32) (padStyleRef "P:OV04_1D0") (pt 1.0 -15.0) (rotation 180.0) (defaultPinDes "T2") )
+ (pad (padNum 25) (padStyleRef "P:OV04_1D0") (pt 1.0 -8.0) (rotation 180.0) (defaultPinDes "J2") )
+ (pad (padNum 49) (padStyleRef "P:OV04_1D0") (pt 3.0 0.0) (rotation 180.0) (defaultPinDes "A4") )
+ (pad (padNum 33) (padStyleRef "P:OV04_1D0") (pt 2.0 0.0) (rotation 180.0) (defaultPinDes "A3") )
+ (pad (padNum 97) (padStyleRef "P:OV04_1D0") (pt 6.0 0.0) (rotation 180.0) (defaultPinDes "A7") )
+ (pad (padNum 113) (padStyleRef "P:OV04_1D0") (pt 7.0 0.0) (rotation 180.0) (defaultPinDes "A8") )
+ (pad (padNum 81) (padStyleRef "P:OV04_1D0") (pt 5.0 0.0) (rotation 180.0) (defaultPinDes "A6") )
+ (pad (padNum 65) (padStyleRef "P:OV04_1D0") (pt 4.0 0.0) (rotation 180.0) (defaultPinDes "A5") )
+ (pad (padNum 17) (padStyleRef "P:OV04_1D0") (pt 1.0 0.0) (rotation 180.0) (defaultPinDes "A2") )
+ (pad (padNum 176) (padStyleRef "P:OV04_1D0") (pt 10.0 -15.0) (rotation 180.0) (defaultPinDes "T11") )
+ (pad (padNum 240) (padStyleRef "P:OV04_1D0") (pt 14.0 -15.0) (rotation 180.0) (defaultPinDes "T15") )
+ (pad (padNum 224) (padStyleRef "P:OV04_1D0") (pt 13.0 -15.0) (rotation 180.0) (defaultPinDes "T14") )
+ (pad (padNum 208) (padStyleRef "P:OV04_1D0") (pt 12.0 -15.0) (rotation 180.0) (defaultPinDes "T13") )
+ (pad (padNum 192) (padStyleRef "P:OV04_1D0") (pt 11.0 -15.0) (rotation 180.0) (defaultPinDes "T12") )
+ (pad (padNum 169) (padStyleRef "P:OV04_1D0") (pt 10.0 -8.0) (rotation 180.0) (defaultPinDes "J11") )
+ (pad (padNum 201) (padStyleRef "P:OV04_1D0") (pt 12.0 -8.0) (rotation 180.0) (defaultPinDes "J13") )
+ (pad (padNum 233) (padStyleRef "P:OV04_1D0") (pt 14.0 -8.0) (rotation 180.0) (defaultPinDes "J15") )
+ (pad (padNum 217) (padStyleRef "P:OV04_1D0") (pt 13.0 -8.0) (rotation 180.0) (defaultPinDes "J14") )
+ (pad (padNum 185) (padStyleRef "P:OV04_1D0") (pt 11.0 -8.0) (rotation 180.0) (defaultPinDes "J12") )
+ (pad (padNum 160) (padStyleRef "P:OV04_1D0") (pt 9.0 -15.0) (rotation 180.0) (defaultPinDes "T10") )
+ (pad (padNum 153) (padStyleRef "P:OV04_1D0") (pt 9.0 -8.0) (rotation 180.0) (defaultPinDes "J10") )
+ (pad (padNum 161) (padStyleRef "P:OV04_1D0") (pt 10.0 0.0) (rotation 180.0) (defaultPinDes "A11") )
+ (pad (padNum 193) (padStyleRef "P:OV04_1D0") (pt 12.0 0.0) (rotation 180.0) (defaultPinDes "A13") )
+ (pad (padNum 225) (padStyleRef "P:OV04_1D0") (pt 14.0 0.0) (rotation 180.0) (defaultPinDes "A15") )
+ (pad (padNum 209) (padStyleRef "P:OV04_1D0") (pt 13.0 0.0) (rotation 180.0) (defaultPinDes "A14") )
+ (pad (padNum 177) (padStyleRef "P:OV04_1D0") (pt 11.0 0.0) (rotation 180.0) (defaultPinDes "A12") )
+ (pad (padNum 145) (padStyleRef "P:OV04_1D0") (pt 9.0 0.0) (rotation 180.0) (defaultPinDes "A10") )
+ (pad (padNum 15) (padStyleRef "P:OV04_1D0") (pt 0.0 -14.0) (rotation 180.0) (defaultPinDes "R1") )
+ (pad (padNum 12) (padStyleRef "P:OV04_1D0") (pt 0.0 -11.0) (rotation 180.0) (defaultPinDes "M1") )
+ (pad (padNum 10) (padStyleRef "P:OV04_1D0") (pt 0.0 -9.0) (rotation 180.0) (defaultPinDes "K1") )
+ (pad (padNum 11) (padStyleRef "P:OV04_1D0") (pt 0.0 -10.0) (rotation 180.0) (defaultPinDes "L1") )
+ (pad (padNum 13) (padStyleRef "P:OV04_1D0") (pt 0.0 -12.0) (rotation 180.0) (defaultPinDes "N1") )
+ (pad (padNum 14) (padStyleRef "P:OV04_1D0") (pt 0.0 -13.0) (rotation 180.0) (defaultPinDes "P1") )
+ (pad (padNum 143) (padStyleRef "P:OV04_1D0") (pt 8.0 -14.0) (rotation 180.0) (defaultPinDes "R9") )
+ (pad (padNum 140) (padStyleRef "P:OV04_1D0") (pt 8.0 -11.0) (rotation 180.0) (defaultPinDes "M9") )
+ (pad (padNum 138) (padStyleRef "P:OV04_1D0") (pt 8.0 -9.0) (rotation 180.0) (defaultPinDes "K9") )
+ (pad (padNum 139) (padStyleRef "P:OV04_1D0") (pt 8.0 -10.0) (rotation 180.0) (defaultPinDes "L9") )
+ (pad (padNum 141) (padStyleRef "P:OV04_1D0") (pt 8.0 -12.0) (rotation 180.0) (defaultPinDes "N9") )
+ (pad (padNum 142) (padStyleRef "P:OV04_1D0") (pt 8.0 -13.0) (rotation 180.0) (defaultPinDes "P9") )
+ (pad (padNum 8) (padStyleRef "P:OV04_1D0") (pt 0.0 -7.0) (rotation 180.0) (defaultPinDes "H1") )
+ (pad (padNum 7) (padStyleRef "P:OV04_1D0") (pt 0.0 -6.0) (rotation 180.0) (defaultPinDes "G1") )
+ (pad (padNum 5) (padStyleRef "P:OV04_1D0") (pt 0.0 -4.0) (rotation 180.0) (defaultPinDes "E1") )
+ (pad (padNum 4) (padStyleRef "P:OV04_1D0") (pt 0.0 -3.0) (rotation 180.0) (defaultPinDes "D1") )
+ (pad (padNum 2) (padStyleRef "P:OV04_1D0") (pt 0.0 -1.0) (rotation 180.0) (defaultPinDes "B1") )
+ (pad (padNum 3) (padStyleRef "P:OV04_1D0") (pt 0.0 -2.0) (rotation 180.0) (defaultPinDes "C1") )
+ (pad (padNum 6) (padStyleRef "P:OV04_1D0") (pt 0.0 -5.0) (rotation 180.0) (defaultPinDes "F1") )
+ (pad (padNum 136) (padStyleRef "P:OV04_1D0") (pt 8.0 -7.0) (rotation 180.0) (defaultPinDes "H9") )
+ (pad (padNum 135) (padStyleRef "P:OV04_1D0") (pt 8.0 -6.0) (rotation 180.0) (defaultPinDes "G9") )
+ (pad (padNum 133) (padStyleRef "P:OV04_1D0") (pt 8.0 -4.0) (rotation 180.0) (defaultPinDes "E9") )
+ (pad (padNum 132) (padStyleRef "P:OV04_1D0") (pt 8.0 -3.0) (rotation 180.0) (defaultPinDes "D9") )
+ (pad (padNum 130) (padStyleRef "P:OV04_1D0") (pt 8.0 -1.0) (rotation 180.0) (defaultPinDes "B9") )
+ (pad (padNum 131) (padStyleRef "P:OV04_1D0") (pt 8.0 -2.0) (rotation 180.0) (defaultPinDes "C9") )
+ (pad (padNum 134) (padStyleRef "P:OV04_1D0") (pt 8.0 -5.0) (rotation 180.0) (defaultPinDes "F9") )
+ (pad (padNum 255) (padStyleRef "P:OV04_1D0") (pt 15.0 -14.0) (rotation 180.0) (defaultPinDes "R16") )
+ (pad (padNum 252) (padStyleRef "P:OV04_1D0") (pt 15.0 -11.0) (rotation 180.0) (defaultPinDes "M16") )
+ (pad (padNum 250) (padStyleRef "P:OV04_1D0") (pt 15.0 -9.0) (rotation 180.0) (defaultPinDes "K16") )
+ (pad (padNum 251) (padStyleRef "P:OV04_1D0") (pt 15.0 -10.0) (rotation 180.0) (defaultPinDes "L16") )
+ (pad (padNum 253) (padStyleRef "P:OV04_1D0") (pt 15.0 -12.0) (rotation 180.0) (defaultPinDes "N16") )
+ (pad (padNum 254) (padStyleRef "P:OV04_1D0") (pt 15.0 -13.0) (rotation 180.0) (defaultPinDes "P16") )
+ (pad (padNum 248) (padStyleRef "P:OV04_1D0") (pt 15.0 -7.0) (rotation 180.0) (defaultPinDes "H16") )
+ (pad (padNum 247) (padStyleRef "P:OV04_1D0") (pt 15.0 -6.0) (rotation 180.0) (defaultPinDes "G16") )
+ (pad (padNum 245) (padStyleRef "P:OV04_1D0") (pt 15.0 -4.0) (rotation 180.0) (defaultPinDes "E16") )
+ (pad (padNum 244) (padStyleRef "P:OV04_1D0") (pt 15.0 -3.0) (rotation 180.0) (defaultPinDes "D16") )
+ (pad (padNum 242) (padStyleRef "P:OV04_1D0") (pt 15.0 -1.0) (rotation 180.0) (defaultPinDes "B16") )
+ (pad (padNum 243) (padStyleRef "P:OV04_1D0") (pt 15.0 -2.0) (rotation 180.0) (defaultPinDes "C16") )
+ (pad (padNum 246) (padStyleRef "P:OV04_1D0") (pt 15.0 -5.0) (rotation 180.0) (defaultPinDes "F16") )
+ (pad (padNum 16) (padStyleRef "P:OV04_1D0") (pt 0.0 -15.0) (rotation 180.0) (defaultPinDes "T1") )
+ (pad (padNum 144) (padStyleRef "P:OV04_1D0") (pt 8.0 -15.0) (rotation 180.0) (defaultPinDes "T9") )
+ (pad (padNum 9) (padStyleRef "P:OV04_1D0") (pt 0.0 -8.0) (rotation 180.0) (defaultPinDes "J1") )
+ (pad (padNum 137) (padStyleRef "P:OV04_1D0") (pt 8.0 -8.0) (rotation 180.0) (defaultPinDes "J9") )
+ (pad (padNum 129) (padStyleRef "P:OV04_1D0") (pt 8.0 0.0) (rotation 180.0) (defaultPinDes "A9") )
+ (pad (padNum 1) (padStyleRef "SMD20r") (pt 0.0 0.0) (rotation 180.0) (defaultPinDes "A1") )
+ (pad (padNum 256) (padStyleRef "P:OV04_1D0") (pt 15.0 -15.0) (rotation 180.0) (defaultPinDes "T16") )
+ (pad (padNum 249) (padStyleRef "P:OV04_1D0") (pt 15.0 -8.0) (rotation 180.0) (defaultPinDes "J16") )
+ (pad (padNum 241) (padStyleRef "P:OV04_1D0") (pt 15.0 0.0) (rotation 180.0) (defaultPinDes "A16") )
+ (gluepoint (pt 7.5 -7.5) )
+ (pickpoint (pt 7.5 -7.5) )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt -2.0 2.0) (pt -2.5 2.0) (pt -2.5 2.0) (width 0.203) )
+ (line (pt -1.0 -16.0) (pt -1.0 1.0) (width 0.203) )
+ (line (pt 16.0 1.0) (pt 16.0 -16.0) (width 0.203) )
+ (line (pt 16.0 -16.0) (pt -1.0 -16.0) (width 0.203) )
+ (line (pt -1.0 1.0) (pt 16.0 1.0) (width 0.203) )
+ (attr "RefDes" "" (pt 7.5 2.5) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -4.0 -19.0) (pt -4.0 4.0) (width 0.203) )
+ (line (pt 19.0 4.0) (pt 19.0 -19.0) (width 0.203) )
+ (line (pt 19.0 -19.0) (pt -4.0 -19.0) (width 0.203) )
+ (line (pt -4.0 4.0) (pt 19.0 4.0) (width 0.203) )
+ (attr "Type" "" (pt 7.5 -17.5) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "LSOP-20_1"
+ (originalName "LSOP-20")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -1.30048) (defaultPinDes "3") )
+ (pad (padNum 4) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -1.95072) (defaultPinDes "4") )
+ (pad (padNum 5) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -2.60096) (defaultPinDes "5") )
+ (pad (padNum 6) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -3.2512) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -3.90144) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -4.55168) (defaultPinDes "8") )
+ (pad (padNum 9) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -5.20192) (defaultPinDes "9") )
+ (pad (padNum 10) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -5.85216) (defaultPinDes "10") )
+ (pad (padNum 1) (padStyleRef "P:SX64Y16D0T") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 11) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -5.85216) (defaultPinDes "11") )
+ (pad (padNum 12) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -5.20192) (defaultPinDes "12") )
+ (pad (padNum 13) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -4.55168) (defaultPinDes "13") )
+ (pad (padNum 14) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -3.90144) (defaultPinDes "14") )
+ (pad (padNum 15) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -3.2512) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -2.60096) (defaultPinDes "16") )
+ (pad (padNum 17) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -1.95072) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -1.30048) (defaultPinDes "18") )
+ (pad (padNum 20) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 0.0) (defaultPinDes "20") )
+ (pad (padNum 2) (padStyleRef "P:SX64Y16D0T") (pt 0.0 -0.65024) (defaultPinDes "2") )
+ (pad (padNum 19) (padStyleRef "P:SX64Y16D0T") (pt 7.15264 -0.65024) (defaultPinDes "19") )
+ )
+ (layerContents (layerNumRef 6)
+ (text (pt 0.0 0.0) "1\r\n" (textStyleRef "H16 [1]") (justify LowerCenter) (extent 0.97 2.32) )
+ (line (pt 1.30048 -6.5024) (pt 1.30048 0.65024) (width 0.254) )
+ (line (pt 5.85216 0.65024) (pt 5.85216 -6.5024) (width 0.254) )
+ (line (pt 5.85216 -6.5024) (pt 1.30048 -6.5024) (width 0.254) )
+ (line (pt 1.30048 0.65024) (pt 5.85216 0.65024) (width 0.254) )
+ (attr "RefDes" "" (pt 3.62 1.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "USB_1"
+ (originalName "USB")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:EX64Y64D40A") (pt -2.54 0.0) )
+ (pad (padNum 3) (padStyleRef "P:SX64Y64D40A") (pt -2.54 -2.032) )
+ (pad (padNum 6) (padStyleRef "P:MHX160Y160D112 [6]") (pt 4.826 -4.826) )
+ (pad (padNum 1) (padStyleRef "P:SX64Y64D40A") (pt 0.0 0.0) )
+ (pad (padNum 4) (padStyleRef "P:EX64Y64D40A") (pt 0.0 -2.032) )
+ (pad (padNum 5) (padStyleRef "P:MHX160Y160D112 [6]") (pt -7.366 -4.826) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -7.366 5.842) (pt -7.366 -15.24) (width 0.254) )
+ (line (pt 4.826 5.842) (pt 4.826 -15.24) (width 0.254) )
+ (line (pt -7.366 -15.24) (pt 4.826 -15.24) (width 0.254) )
+ (line (pt 4.826 -10.668) (pt -7.366 -10.668) (width 0.254) )
+ (line (pt -7.366 5.842) (pt 4.826 5.842) (width 0.254) )
+ (attr "Type" "" (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt -1.52 8.96) (rotation 90.0) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "TSOP-54_1"
+ (originalName "TSOP-54")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 24) (padStyleRef "P:SX80Y20D0T") (pt -0.0015 -18.398) (rotation 180.0) (defaultPinDes "24") )
+ (pad (padNum 25) (padStyleRef "P:SX80Y20D0T") (pt -0.0015 -19.1981) (rotation 180.0) (defaultPinDes "25") )
+ (pad (padNum 26) (padStyleRef "P:SX80Y20D0T") (pt -0.0015 -19.9982) (rotation 180.0) (defaultPinDes "26") )
+ (pad (padNum 27) (padStyleRef "P:SX80Y20D0T") (pt -0.0015 -20.7983) (rotation 180.0) (defaultPinDes "27") )
+ (pad (padNum 21) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.002) (defaultPinDes "21") )
+ (pad (padNum 22) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.8021) (defaultPinDes "22") )
+ (pad (padNum 20) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -15.2019) (defaultPinDes "20") )
+ (pad (padNum 15) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -11.2014) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.0015) (defaultPinDes "16") )
+ (pad (padNum 17) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.8016) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -13.6017) (defaultPinDes "18") )
+ (pad (padNum 19) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -14.4018) (defaultPinDes "19") )
+ (pad (padNum 12) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.8011) (defaultPinDes "12") )
+ (pad (padNum 13) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -9.6012) (defaultPinDes "13") )
+ (pad (padNum 10) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -7.2009) (defaultPinDes "10") )
+ (pad (padNum 11) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.001) (defaultPinDes "11") )
+ (pad (padNum 5) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -3.2004) (defaultPinDes "5") )
+ (pad (padNum 6) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.0005) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.8006) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -5.6007) (defaultPinDes "8") )
+ (pad (padNum 9) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -6.4008) (defaultPinDes "9") )
+ (pad (padNum 2) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -0.8001) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -1.6002) (defaultPinDes "3") )
+ (pad (padNum 1) (padStyleRef "P:SX80Y20D0T") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 14) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -10.4013) (defaultPinDes "14") )
+ (pad (padNum 23) (padStyleRef "P:SX80Y20D0T") (pt -0.0015 -17.5979) (rotation 180.0) (defaultPinDes "23") )
+ (pad (padNum 4) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -2.4003) (defaultPinDes "4") )
+ (pad (padNum 28) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -20.8016) (defaultPinDes "28") )
+ (pad (padNum 29) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -20.0015) (defaultPinDes "29") )
+ (pad (padNum 30) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -19.2014) (defaultPinDes "30") )
+ (pad (padNum 31) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -18.4013) (defaultPinDes "31") )
+ (pad (padNum 33) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.8011) (defaultPinDes "33") )
+ (pad (padNum 34) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.001) (defaultPinDes "34") )
+ (pad (padNum 35) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -15.2009) (defaultPinDes "35") )
+ (pad (padNum 38) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.8006) (defaultPinDes "38") )
+ (pad (padNum 39) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.0005) (defaultPinDes "39") )
+ (pad (padNum 40) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -11.2004) (defaultPinDes "40") )
+ (pad (padNum 37) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -13.6007) (defaultPinDes "37") )
+ (pad (padNum 36) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -14.4008) (defaultPinDes "36") )
+ (pad (padNum 42) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -9.6002) (defaultPinDes "42") )
+ (pad (padNum 43) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.8001) (defaultPinDes "43") )
+ (pad (padNum 44) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.0) (defaultPinDes "44") )
+ (pad (padNum 45) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -7.2) (defaultPinDes "45") )
+ (pad (padNum 47) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -5.6) (defaultPinDes "47") )
+ (pad (padNum 48) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -4.8) (defaultPinDes "48") )
+ (pad (padNum 49) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -4.0) (defaultPinDes "49") )
+ (pad (padNum 50) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -3.2) (defaultPinDes "50") )
+ (pad (padNum 46) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -6.4) (defaultPinDes "46") )
+ (pad (padNum 52) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -1.6) (defaultPinDes "52") )
+ (pad (padNum 53) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -0.8) (defaultPinDes "53") )
+ (pad (padNum 54) (padStyleRef "P:SX80Y20D0T") (pt 12.0 0.0) (defaultPinDes "54") )
+ (pad (padNum 32) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -17.6012) (defaultPinDes "32") )
+ (pad (padNum 41) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -10.4003) (defaultPinDes "41") )
+ (pad (padNum 51) (padStyleRef "P:SX80Y20D0T") (pt 12.0 -2.4) (defaultPinDes "51") )
+ )
+ (layerContents (layerNumRef 6)
+ (text (pt 0.0 0.0) "1" (textStyleRef "H16 [1]") (justify LowerRight) (extent 0.97 2.12) )
+ (line (pt 1.38 0.765) (pt 1.375 -21.6) (width 0.254) )
+ (line (pt 10.6514 0.7751) (pt 10.655 -21.585) (width 0.254) )
+ (line (pt 10.6514 -21.6022) (pt 1.38 -21.61) (width 0.254) )
+ (line (pt 1.38 0.79) (pt 10.655 0.79) (width 0.254) )
+ (triplePointArc (pt 2.1752 0.05) (pt 2.0101 0.05) (pt 2.0101 0.05) (width 0.3048) )
+ (attr "Type" "" (pt 6.4008 -8.8011) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 6.2 1.4) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ )
+ )
+ (patternDefExtended "KXO-97_1"
+ (originalName "KXO-97")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:SX80Y68D0T") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 4) (padStyleRef "P:SX80Y68D0T") (pt 0.0 4.3) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:SX80Y68D0T") (pt 5.1 0.0) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:SX80Y68D0T") (pt 5.1 4.3) (defaultPinDes "3") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.4 5.7) (pt -1.4 -1.4) (width 0.2) )
+ (line (pt 6.6 -1.4) (pt 6.6 5.7) (width 0.2) )
+ (line (pt -1.4 -1.4) (pt 6.6 -1.4) (width 0.2) )
+ (line (pt 6.6 5.7) (pt -1.4 5.7) (width 0.2) )
+ (text (pt 0.12 -1.8) "1" (textStyleRef "H16 [1]") (rotation 90.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Value" "" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 0.42 8.0) (rotation 90.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 2.54 -1.778) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "BH14_1"
+ (originalName "BH14")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 12) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -12.7) (rotation 90.0) (defaultPinDes "P12") )
+ (pad (padNum 10) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -10.16) (rotation 90.0) (defaultPinDes "P10") )
+ (pad (padNum 6) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -5.08) (rotation 90.0) (defaultPinDes "P6") )
+ (pad (padNum 4) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -2.54) (rotation 90.0) (defaultPinDes "P4") )
+ (pad (padNum 14) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -15.24) (rotation 90.0) (defaultPinDes "P14") )
+ (pad (padNum 8) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 -7.62) (rotation 90.0) (defaultPinDes "P8") )
+ (pad (padNum 2) (padStyleRef "P:EX80Y80D40A [1]") (pt 2.54 0.0) (rotation 90.0) (defaultPinDes "P2") )
+ (pad (padNum 11) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -12.7) (rotation 90.0) (defaultPinDes "P11") )
+ (pad (padNum 9) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -10.16) (rotation 90.0) (defaultPinDes "P9") )
+ (pad (padNum 5) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -5.08) (rotation 90.0) (defaultPinDes "P5") )
+ (pad (padNum 3) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -2.54) (rotation 90.0) (defaultPinDes "P3") )
+ (pad (padNum 13) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -15.24) (rotation 90.0) (defaultPinDes "P13") )
+ (pad (padNum 7) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 -7.62) (rotation 90.0) (defaultPinDes "P7") )
+ (pad (padNum 1) (padStyleRef "P:SX80Y80D40A [2]") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "P1") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -3.16 -20.28) (pt -3.16 -19.18) (width 0.254) )
+ (line (pt -2.54 -9.625) (pt -3.175 -9.625) (width 0.254) )
+ (line (pt -3.175 -5.515) (pt -2.54 -5.515) (width 0.254) )
+ (line (pt -2.56 -5.69) (pt -2.56 -5.49) (width 0.254) )
+ (line (pt -2.16 5.0) (pt -3.16 5.0) (width 0.15) )
+ (line (pt 2.54 -19.585) (pt 2.54 -20.22) (width 0.254) )
+ (line (pt 5.54 5.0) (pt 3.24 5.0) (width 0.15) )
+ (line (pt 3.24 5.0) (pt 0.84 5.0) (width 0.15) )
+ (line (pt 2.54 4.345) (pt 2.54 4.98) (width 0.254) )
+ (line (pt -2.54 -9.525) (pt -2.54 -5.715) (width 0.254) )
+ (line (pt -3.16 -20.46) (pt -3.175 -9.625) (width 0.254) )
+ (line (pt -3.16 -5.49) (pt -3.16 4.94) (width 0.254) )
+ (line (pt 5.54 4.995) (pt 5.54 -20.36) (width 0.254) )
+ (line (pt 0.0 -19.585) (pt 0.0 -20.22) (width 0.254) )
+ (line (pt 2.54 -19.585) (pt 0.0 -19.585) (width 0.254) )
+ (line (pt 0.0 4.345) (pt 0.0 4.98) (width 0.254) )
+ (line (pt 2.54 4.345) (pt 0.0 4.345) (width 0.254) )
+ (line (pt 5.515 -20.32) (pt -3.375 -20.32) (width 0.254) )
+ (line (pt 5.54 5.0) (pt -3.16 5.0) (width 0.254) )
+ (attr "Type" "" (pt 0.0 -20.32) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 5.68 -7.52) (rotation 270.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SSOP28_1"
+ (originalName "SSOP28")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 14) (padStyleRef "R_W15H4 [1]") (pt -0.275 -8.475) (defaultPinDes "14") )
+ (pad (padNum 13) (padStyleRef "R_W15H4 [1]") (pt -0.275 -7.825) (defaultPinDes "13") )
+ (pad (padNum 12) (padStyleRef "R_W15H4 [1]") (pt -0.275 -7.175) (defaultPinDes "12") )
+ (pad (padNum 11) (padStyleRef "R_W15H4 [1]") (pt -0.275 -6.525) (defaultPinDes "11") )
+ (pad (padNum 10) (padStyleRef "R_W15H4 [1]") (pt -0.275 -5.875) (defaultPinDes "10") )
+ (pad (padNum 9) (padStyleRef "R_W15H4 [1]") (pt -0.275 -5.225) (defaultPinDes "9") )
+ (pad (padNum 6) (padStyleRef "R_W15H4 [1]") (pt -0.275 -3.275) (defaultPinDes "6") )
+ (pad (padNum 8) (padStyleRef "R_W15H4 [1]") (pt -0.275 -4.575) (defaultPinDes "8") )
+ (pad (padNum 7) (padStyleRef "R_W15H4 [1]") (pt -0.275 -3.925) (defaultPinDes "7") )
+ (pad (padNum 4) (padStyleRef "R_W15H4 [1]") (pt -0.275 -1.975) (defaultPinDes "4") )
+ (pad (padNum 3) (padStyleRef "R_W15H4 [1]") (pt -0.275 -1.325) (defaultPinDes "3") )
+ (pad (padNum 2) (padStyleRef "R_W15H4 [1]") (pt -0.275 -0.675) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "R_W20H4 [1]") (pt -0.5 0.0) (defaultPinDes "1") )
+ (pad (padNum 15) (padStyleRef "R_W15H4 [1]") (pt 7.525 -8.475) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "R_W15H4 [1]") (pt 7.525 -7.825) (defaultPinDes "16") )
+ (pad (padNum 17) (padStyleRef "R_W15H4 [1]") (pt 7.525 -7.175) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "R_W15H4 [1]") (pt 7.525 -6.525) (defaultPinDes "18") )
+ (pad (padNum 19) (padStyleRef "R_W15H4 [1]") (pt 7.525 -5.875) (defaultPinDes "19") )
+ (pad (padNum 20) (padStyleRef "R_W15H4 [1]") (pt 7.525 -5.225) (defaultPinDes "20") )
+ (pad (padNum 23) (padStyleRef "R_W15H4 [1]") (pt 7.525 -3.275) (defaultPinDes "23") )
+ (pad (padNum 21) (padStyleRef "R_W15H4 [1]") (pt 7.525 -4.575) (defaultPinDes "21") )
+ (pad (padNum 22) (padStyleRef "R_W15H4 [1]") (pt 7.525 -3.925) (defaultPinDes "22") )
+ (pad (padNum 26) (padStyleRef "R_W15H4 [1]") (pt 7.525 -1.325) (defaultPinDes "26") )
+ (pad (padNum 27) (padStyleRef "R_W15H4 [1]") (pt 7.525 -0.675) (defaultPinDes "27") )
+ (pad (padNum 28) (padStyleRef "R_W15H4 [1]") (pt 7.525 -0.025) (defaultPinDes "28") )
+ (pad (padNum 25) (padStyleRef "R_W15H4 [1]") (pt 7.525 -1.975) (defaultPinDes "25") )
+ (pad (padNum 5) (padStyleRef "R_W15H4 [1]") (pt -0.275 -2.625) (defaultPinDes "5") )
+ (pad (padNum 24) (padStyleRef "R_W15H4 [1]") (pt 7.525 -2.625) (defaultPinDes "24") )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt 3.625 0.25) (pt 3.117 0.25) (pt 4.133 0.25) (width 0.3) )
+ (line (pt 4.12 0.28) (pt 6.4 0.28) (width 0.25) )
+ (line (pt 0.875 -8.75) (pt 0.875 0.25) (width 0.3) )
+ (line (pt 6.375 0.25) (pt 6.375 -8.75) (width 0.3) )
+ (line (pt 3.08 0.3) (pt 0.86 0.3) (width 0.25) )
+ (line (pt 0.88 -8.8) (pt 6.38 -8.8) (width 0.25) )
+ (attr "Type" "" (pt 1.125 -7.0) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 5.12 -9.28) (rotation 180.0) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt 1.125 -8.75) (pt 1.125 -9.0) (width 0.3) )
+ (line (pt 1.125 -8.5) (pt 0.25 -8.5) (width 0.3) )
+ (line (pt 0.25 0.0) (pt 1.125 0.0) (width 0.3) )
+ (line (pt 7.0 -8.5) (pt 6.125 -8.5) (width 0.3) )
+ (line (pt 3.0 0.5) (pt 3.0 -0.125) (width 0.3) )
+ (line (pt 6.125 0.0) (pt 7.0 0.0) (width 0.3) )
+ (line (pt 4.125 -0.125) (pt 4.125 0.5) (width 0.3) )
+ (line (pt 3.0 -0.125) (pt 4.125 -0.125) (width 0.3) )
+ (line (pt 1.125 0.5) (pt 1.125 -8.75) (width 0.3) )
+ (line (pt 0.25 -8.5) (pt 0.25 0.0) (width 0.3) )
+ (line (pt 6.125 -9.0) (pt 6.125 0.5) (width 0.3) )
+ (line (pt 7.0 0.0) (pt 7.0 -8.5) (width 0.3) )
+ (line (pt 1.125 -9.0) (pt 6.125 -9.0) (width 0.3) )
+ (line (pt 6.125 0.5) (pt 1.125 0.5) (width 0.3) )
+ )
+ )
+ )
+ (patternDefExtended "F484_1"
+ (originalName "F484")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 20) (padStyleRef "P:OV04D0") (pt 0.0 -19.0) (rotation 90.0) (defaultPinDes "Y1") )
+ (pad (padNum 21) (padStyleRef "P:OV04D0") (pt 0.0 -20.0) (rotation 90.0) (defaultPinDes "AA1") )
+ (pad (padNum 22) (padStyleRef "P:OV04D0") (pt 0.0 -21.0) (rotation 90.0) (defaultPinDes "AB1") )
+ (pad (padNum 64) (padStyleRef "P:OV04D0") (pt 2.0 -19.0) (rotation 90.0) (defaultPinDes "Y3") )
+ (pad (padNum 65) (padStyleRef "P:OV04D0") (pt 2.0 -20.0) (rotation 90.0) (defaultPinDes "AA3") )
+ (pad (padNum 66) (padStyleRef "P:OV04D0") (pt 2.0 -21.0) (rotation 90.0) (defaultPinDes "AB3") )
+ (pad (padNum 43) (padStyleRef "P:OV04D0") (pt 1.0 -20.0) (rotation 90.0) (defaultPinDes "AA2") )
+ (pad (padNum 44) (padStyleRef "P:OV04D0") (pt 1.0 -21.0) (rotation 90.0) (defaultPinDes "AB2") )
+ (pad (padNum 42) (padStyleRef "P:OV04D0") (pt 1.0 -19.0) (rotation 90.0) (defaultPinDes "Y2") )
+ (pad (padNum 18) (padStyleRef "P:OV04D0") (pt 0.0 -17.0) (rotation 90.0) (defaultPinDes "V1") )
+ (pad (padNum 62) (padStyleRef "P:OV04D0") (pt 2.0 -17.0) (rotation 90.0) (defaultPinDes "V3") )
+ (pad (padNum 40) (padStyleRef "P:OV04D0") (pt 1.0 -17.0) (rotation 90.0) (defaultPinDes "V2") )
+ (pad (padNum 16) (padStyleRef "P:OV04D0") (pt 0.0 -15.0) (rotation 90.0) (defaultPinDes "T1") )
+ (pad (padNum 12) (padStyleRef "P:OV04D0") (pt 0.0 -11.0) (rotation 90.0) (defaultPinDes "M1") )
+ (pad (padNum 13) (padStyleRef "P:OV04D0") (pt 0.0 -12.0) (rotation 90.0) (defaultPinDes "N1") )
+ (pad (padNum 14) (padStyleRef "P:OV04D0") (pt 0.0 -13.0) (rotation 90.0) (defaultPinDes "P1") )
+ (pad (padNum 60) (padStyleRef "P:OV04D0") (pt 2.0 -15.0) (rotation 90.0) (defaultPinDes "T3") )
+ (pad (padNum 56) (padStyleRef "P:OV04D0") (pt 2.0 -11.0) (rotation 90.0) (defaultPinDes "M3") )
+ (pad (padNum 57) (padStyleRef "P:OV04D0") (pt 2.0 -12.0) (rotation 90.0) (defaultPinDes "N3") )
+ (pad (padNum 58) (padStyleRef "P:OV04D0") (pt 2.0 -13.0) (rotation 90.0) (defaultPinDes "P3") )
+ (pad (padNum 15) (padStyleRef "P:OV04D0") (pt 0.0 -14.0) (rotation 90.0) (defaultPinDes "R1") )
+ (pad (padNum 59) (padStyleRef "P:OV04D0") (pt 2.0 -14.0) (rotation 90.0) (defaultPinDes "R3") )
+ (pad (padNum 38) (padStyleRef "P:OV04D0") (pt 1.0 -15.0) (rotation 90.0) (defaultPinDes "T2") )
+ (pad (padNum 34) (padStyleRef "P:OV04D0") (pt 1.0 -11.0) (rotation 90.0) (defaultPinDes "M2") )
+ (pad (padNum 35) (padStyleRef "P:OV04D0") (pt 1.0 -12.0) (rotation 90.0) (defaultPinDes "N2") )
+ (pad (padNum 36) (padStyleRef "P:OV04D0") (pt 1.0 -13.0) (rotation 90.0) (defaultPinDes "P2") )
+ (pad (padNum 37) (padStyleRef "P:OV04D0") (pt 1.0 -14.0) (rotation 90.0) (defaultPinDes "R2") )
+ (pad (padNum 17) (padStyleRef "P:OV04D0") (pt 0.0 -16.0) (rotation 90.0) (defaultPinDes "U1") )
+ (pad (padNum 61) (padStyleRef "P:OV04D0") (pt 2.0 -16.0) (rotation 90.0) (defaultPinDes "U3") )
+ (pad (padNum 39) (padStyleRef "P:OV04D0") (pt 1.0 -16.0) (rotation 90.0) (defaultPinDes "U2") )
+ (pad (padNum 10) (padStyleRef "P:OV04D0") (pt 0.0 -9.0) (rotation 90.0) (defaultPinDes "K1") )
+ (pad (padNum 54) (padStyleRef "P:OV04D0") (pt 2.0 -9.0) (rotation 90.0) (defaultPinDes "K3") )
+ (pad (padNum 32) (padStyleRef "P:OV04D0") (pt 1.0 -9.0) (rotation 90.0) (defaultPinDes "K2") )
+ (pad (padNum 8) (padStyleRef "P:OV04D0") (pt 0.0 -7.0) (rotation 90.0) (defaultPinDes "H1") )
+ (pad (padNum 5) (padStyleRef "P:OV04D0") (pt 0.0 -4.0) (rotation 90.0) (defaultPinDes "E1") )
+ (pad (padNum 6) (padStyleRef "P:OV04D0") (pt 0.0 -5.0) (rotation 90.0) (defaultPinDes "F1") )
+ (pad (padNum 4) (padStyleRef "P:OV04D0") (pt 0.0 -3.0) (rotation 90.0) (defaultPinDes "D1") )
+ (pad (padNum 52) (padStyleRef "P:OV04D0") (pt 2.0 -7.0) (rotation 90.0) (defaultPinDes "H3") )
+ (pad (padNum 49) (padStyleRef "P:OV04D0") (pt 2.0 -4.0) (rotation 90.0) (defaultPinDes "E3") )
+ (pad (padNum 50) (padStyleRef "P:OV04D0") (pt 2.0 -5.0) (rotation 90.0) (defaultPinDes "F3") )
+ (pad (padNum 48) (padStyleRef "P:OV04D0") (pt 2.0 -3.0) (rotation 90.0) (defaultPinDes "D3") )
+ (pad (padNum 7) (padStyleRef "P:OV04D0") (pt 0.0 -6.0) (rotation 90.0) (defaultPinDes "G1") )
+ (pad (padNum 51) (padStyleRef "P:OV04D0") (pt 2.0 -6.0) (rotation 90.0) (defaultPinDes "G3") )
+ (pad (padNum 30) (padStyleRef "P:OV04D0") (pt 1.0 -7.0) (rotation 90.0) (defaultPinDes "H2") )
+ (pad (padNum 27) (padStyleRef "P:OV04D0") (pt 1.0 -4.0) (rotation 90.0) (defaultPinDes "E2") )
+ (pad (padNum 28) (padStyleRef "P:OV04D0") (pt 1.0 -5.0) (rotation 90.0) (defaultPinDes "F2") )
+ (pad (padNum 26) (padStyleRef "P:OV04D0") (pt 1.0 -3.0) (rotation 90.0) (defaultPinDes "D2") )
+ (pad (padNum 29) (padStyleRef "P:OV04D0") (pt 1.0 -6.0) (rotation 90.0) (defaultPinDes "G2") )
+ (pad (padNum 9) (padStyleRef "P:OV04D0") (pt 0.0 -8.0) (rotation 90.0) (defaultPinDes "J1") )
+ (pad (padNum 53) (padStyleRef "P:OV04D0") (pt 2.0 -8.0) (rotation 90.0) (defaultPinDes "J3") )
+ (pad (padNum 31) (padStyleRef "P:OV04D0") (pt 1.0 -8.0) (rotation 90.0) (defaultPinDes "J2") )
+ (pad (padNum 3) (padStyleRef "P:OV04D0") (pt 0.0 -2.0) (rotation 90.0) (defaultPinDes "C1") )
+ (pad (padNum 47) (padStyleRef "P:OV04D0") (pt 2.0 -2.0) (rotation 90.0) (defaultPinDes "C3") )
+ (pad (padNum 25) (padStyleRef "P:OV04D0") (pt 1.0 -2.0) (rotation 90.0) (defaultPinDes "C2") )
+ (pad (padNum 45) (padStyleRef "P:OV04D0") (pt 2.0 0.0) (rotation 90.0) (defaultPinDes "A3") )
+ (pad (padNum 23) (padStyleRef "P:OV04D0") (pt 1.0 0.0) (rotation 90.0) (defaultPinDes "A2") )
+ (pad (padNum 2) (padStyleRef "P:OV04D0") (pt 0.0 -1.0) (rotation 90.0) (defaultPinDes "B1") )
+ (pad (padNum 46) (padStyleRef "P:OV04D0") (pt 2.0 -1.0) (rotation 90.0) (defaultPinDes "B3") )
+ (pad (padNum 24) (padStyleRef "P:OV04D0") (pt 1.0 -1.0) (rotation 90.0) (defaultPinDes "B2") )
+ (pad (padNum 1) (padStyleRef "P:OV04D0") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "A1") )
+ (pad (padNum 86) (padStyleRef "P:OV04D0") (pt 3.0 -19.0) (rotation 90.0) (defaultPinDes "Y4") )
+ (pad (padNum 87) (padStyleRef "P:OV04D0") (pt 3.0 -20.0) (rotation 90.0) (defaultPinDes "AA4") )
+ (pad (padNum 88) (padStyleRef "P:OV04D0") (pt 3.0 -21.0) (rotation 90.0) (defaultPinDes "AB4") )
+ (pad (padNum 130) (padStyleRef "P:OV04D0") (pt 5.0 -19.0) (rotation 90.0) (defaultPinDes "Y6") )
+ (pad (padNum 131) (padStyleRef "P:OV04D0") (pt 5.0 -20.0) (rotation 90.0) (defaultPinDes "AA6") )
+ (pad (padNum 132) (padStyleRef "P:OV04D0") (pt 5.0 -21.0) (rotation 90.0) (defaultPinDes "AB6") )
+ (pad (padNum 152) (padStyleRef "P:OV04D0") (pt 6.0 -19.0) (rotation 90.0) (defaultPinDes "Y7") )
+ (pad (padNum 153) (padStyleRef "P:OV04D0") (pt 6.0 -20.0) (rotation 90.0) (defaultPinDes "AA7") )
+ (pad (padNum 154) (padStyleRef "P:OV04D0") (pt 6.0 -21.0) (rotation 90.0) (defaultPinDes "AB7") )
+ (pad (padNum 174) (padStyleRef "P:OV04D0") (pt 7.0 -19.0) (rotation 90.0) (defaultPinDes "Y8") )
+ (pad (padNum 175) (padStyleRef "P:OV04D0") (pt 7.0 -20.0) (rotation 90.0) (defaultPinDes "AA8") )
+ (pad (padNum 176) (padStyleRef "P:OV04D0") (pt 7.0 -21.0) (rotation 90.0) (defaultPinDes "AB8") )
+ (pad (padNum 218) (padStyleRef "P:OV04D0") (pt 9.0 -19.0) (rotation 90.0) (defaultPinDes "Y10") )
+ (pad (padNum 219) (padStyleRef "P:OV04D0") (pt 9.0 -20.0) (rotation 90.0) (defaultPinDes "AA10") )
+ (pad (padNum 220) (padStyleRef "P:OV04D0") (pt 9.0 -21.0) (rotation 90.0) (defaultPinDes "AB10") )
+ (pad (padNum 196) (padStyleRef "P:OV04D0") (pt 8.0 -19.0) (rotation 90.0) (defaultPinDes "Y9") )
+ (pad (padNum 197) (padStyleRef "P:OV04D0") (pt 8.0 -20.0) (rotation 90.0) (defaultPinDes "AA9") )
+ (pad (padNum 198) (padStyleRef "P:OV04D0") (pt 8.0 -21.0) (rotation 90.0) (defaultPinDes "AB9") )
+ (pad (padNum 108) (padStyleRef "P:OV04D0") (pt 4.0 -19.0) (rotation 90.0) (defaultPinDes "Y5") )
+ (pad (padNum 109) (padStyleRef "P:OV04D0") (pt 4.0 -20.0) (rotation 90.0) (defaultPinDes "AA5") )
+ (pad (padNum 110) (padStyleRef "P:OV04D0") (pt 4.0 -21.0) (rotation 90.0) (defaultPinDes "AB5") )
+ (pad (padNum 84) (padStyleRef "P:OV04D0") (pt 3.0 -17.0) (rotation 90.0) (defaultPinDes "V4") )
+ (pad (padNum 82) (padStyleRef "P:OV04D0") (pt 3.0 -15.0) (rotation 90.0) (defaultPinDes "T4") )
+ (pad (padNum 78) (padStyleRef "P:OV04D0") (pt 3.0 -11.0) (rotation 90.0) (defaultPinDes "M4") )
+ (pad (padNum 79) (padStyleRef "P:OV04D0") (pt 3.0 -12.0) (rotation 90.0) (defaultPinDes "N4") )
+ (pad (padNum 80) (padStyleRef "P:OV04D0") (pt 3.0 -13.0) (rotation 90.0) (defaultPinDes "P4") )
+ (pad (padNum 81) (padStyleRef "P:OV04D0") (pt 3.0 -14.0) (rotation 90.0) (defaultPinDes "R4") )
+ (pad (padNum 128) (padStyleRef "P:OV04D0") (pt 5.0 -17.0) (rotation 90.0) (defaultPinDes "V6") )
+ (pad (padNum 150) (padStyleRef "P:OV04D0") (pt 6.0 -17.0) (rotation 90.0) (defaultPinDes "V7") )
+ (pad (padNum 172) (padStyleRef "P:OV04D0") (pt 7.0 -17.0) (rotation 90.0) (defaultPinDes "V8") )
+ (pad (padNum 216) (padStyleRef "P:OV04D0") (pt 9.0 -17.0) (rotation 90.0) (defaultPinDes "V10") )
+ (pad (padNum 194) (padStyleRef "P:OV04D0") (pt 8.0 -17.0) (rotation 90.0) (defaultPinDes "V9") )
+ (pad (padNum 126) (padStyleRef "P:OV04D0") (pt 5.0 -15.0) (rotation 90.0) (defaultPinDes "T6") )
+ (pad (padNum 148) (padStyleRef "P:OV04D0") (pt 6.0 -15.0) (rotation 90.0) (defaultPinDes "T7") )
+ (pad (padNum 170) (padStyleRef "P:OV04D0") (pt 7.0 -15.0) (rotation 90.0) (defaultPinDes "T8") )
+ (pad (padNum 122) (padStyleRef "P:OV04D0") (pt 5.0 -11.0) (rotation 90.0) (defaultPinDes "M6") )
+ (pad (padNum 123) (padStyleRef "P:OV04D0") (pt 5.0 -12.0) (rotation 90.0) (defaultPinDes "N6") )
+ (pad (padNum 124) (padStyleRef "P:OV04D0") (pt 5.0 -13.0) (rotation 90.0) (defaultPinDes "P6") )
+ (pad (padNum 144) (padStyleRef "P:OV04D0") (pt 6.0 -11.0) (rotation 90.0) (defaultPinDes "M7") )
+ (pad (padNum 145) (padStyleRef "P:OV04D0") (pt 6.0 -12.0) (rotation 90.0) (defaultPinDes "N7") )
+ (pad (padNum 146) (padStyleRef "P:OV04D0") (pt 6.0 -13.0) (rotation 90.0) (defaultPinDes "P7") )
+ (pad (padNum 166) (padStyleRef "P:OV04D0") (pt 7.0 -11.0) (rotation 90.0) (defaultPinDes "M8") )
+ (pad (padNum 167) (padStyleRef "P:OV04D0") (pt 7.0 -12.0) (rotation 90.0) (defaultPinDes "N8") )
+ (pad (padNum 168) (padStyleRef "P:OV04D0") (pt 7.0 -13.0) (rotation 90.0) (defaultPinDes "P8") )
+ (pad (padNum 214) (padStyleRef "P:OV04D0") (pt 9.0 -15.0) (rotation 90.0) (defaultPinDes "T10") )
+ (pad (padNum 210) (padStyleRef "P:OV04D0") (pt 9.0 -11.0) (rotation 90.0) (defaultPinDes "M10") )
+ (pad (padNum 211) (padStyleRef "P:OV04D0") (pt 9.0 -12.0) (rotation 90.0) (defaultPinDes "N10") )
+ (pad (padNum 212) (padStyleRef "P:OV04D0") (pt 9.0 -13.0) (rotation 90.0) (defaultPinDes "P10") )
+ (pad (padNum 125) (padStyleRef "P:OV04D0") (pt 5.0 -14.0) (rotation 90.0) (defaultPinDes "R6") )
+ (pad (padNum 147) (padStyleRef "P:OV04D0") (pt 6.0 -14.0) (rotation 90.0) (defaultPinDes "R7") )
+ (pad (padNum 169) (padStyleRef "P:OV04D0") (pt 7.0 -14.0) (rotation 90.0) (defaultPinDes "R8") )
+ (pad (padNum 213) (padStyleRef "P:OV04D0") (pt 9.0 -14.0) (rotation 90.0) (defaultPinDes "R10") )
+ (pad (padNum 192) (padStyleRef "P:OV04D0") (pt 8.0 -15.0) (rotation 90.0) (defaultPinDes "T9") )
+ (pad (padNum 188) (padStyleRef "P:OV04D0") (pt 8.0 -11.0) (rotation 90.0) (defaultPinDes "M9") )
+ (pad (padNum 189) (padStyleRef "P:OV04D0") (pt 8.0 -12.0) (rotation 90.0) (defaultPinDes "N9") )
+ (pad (padNum 190) (padStyleRef "P:OV04D0") (pt 8.0 -13.0) (rotation 90.0) (defaultPinDes "P9") )
+ (pad (padNum 191) (padStyleRef "P:OV04D0") (pt 8.0 -14.0) (rotation 90.0) (defaultPinDes "R9") )
+ (pad (padNum 83) (padStyleRef "P:OV04D0") (pt 3.0 -16.0) (rotation 90.0) (defaultPinDes "U4") )
+ (pad (padNum 127) (padStyleRef "P:OV04D0") (pt 5.0 -16.0) (rotation 90.0) (defaultPinDes "U6") )
+ (pad (padNum 149) (padStyleRef "P:OV04D0") (pt 6.0 -16.0) (rotation 90.0) (defaultPinDes "U7") )
+ (pad (padNum 171) (padStyleRef "P:OV04D0") (pt 7.0 -16.0) (rotation 90.0) (defaultPinDes "U8") )
+ (pad (padNum 215) (padStyleRef "P:OV04D0") (pt 9.0 -16.0) (rotation 90.0) (defaultPinDes "U10") )
+ (pad (padNum 193) (padStyleRef "P:OV04D0") (pt 8.0 -16.0) (rotation 90.0) (defaultPinDes "U9") )
+ (pad (padNum 106) (padStyleRef "P:OV04D0") (pt 4.0 -17.0) (rotation 90.0) (defaultPinDes "V5") )
+ (pad (padNum 104) (padStyleRef "P:OV04D0") (pt 4.0 -15.0) (rotation 90.0) (defaultPinDes "T5") )
+ (pad (padNum 100) (padStyleRef "P:OV04D0") (pt 4.0 -11.0) (rotation 90.0) (defaultPinDes "M5") )
+ (pad (padNum 101) (padStyleRef "P:OV04D0") (pt 4.0 -12.0) (rotation 90.0) (defaultPinDes "N5") )
+ (pad (padNum 102) (padStyleRef "P:OV04D0") (pt 4.0 -13.0) (rotation 90.0) (defaultPinDes "P5") )
+ (pad (padNum 103) (padStyleRef "P:OV04D0") (pt 4.0 -14.0) (rotation 90.0) (defaultPinDes "R5") )
+ (pad (padNum 105) (padStyleRef "P:OV04D0") (pt 4.0 -16.0) (rotation 90.0) (defaultPinDes "U5") )
+ (pad (padNum 76) (padStyleRef "P:OV04D0") (pt 3.0 -9.0) (rotation 90.0) (defaultPinDes "K4") )
+ (pad (padNum 74) (padStyleRef "P:OV04D0") (pt 3.0 -7.0) (rotation 90.0) (defaultPinDes "H4") )
+ (pad (padNum 71) (padStyleRef "P:OV04D0") (pt 3.0 -4.0) (rotation 90.0) (defaultPinDes "E4") )
+ (pad (padNum 72) (padStyleRef "P:OV04D0") (pt 3.0 -5.0) (rotation 90.0) (defaultPinDes "F4") )
+ (pad (padNum 70) (padStyleRef "P:OV04D0") (pt 3.0 -3.0) (rotation 90.0) (defaultPinDes "D4") )
+ (pad (padNum 73) (padStyleRef "P:OV04D0") (pt 3.0 -6.0) (rotation 90.0) (defaultPinDes "G4") )
+ (pad (padNum 120) (padStyleRef "P:OV04D0") (pt 5.0 -9.0) (rotation 90.0) (defaultPinDes "K6") )
+ (pad (padNum 142) (padStyleRef "P:OV04D0") (pt 6.0 -9.0) (rotation 90.0) (defaultPinDes "K7") )
+ (pad (padNum 164) (padStyleRef "P:OV04D0") (pt 7.0 -9.0) (rotation 90.0) (defaultPinDes "K8") )
+ (pad (padNum 208) (padStyleRef "P:OV04D0") (pt 9.0 -9.0) (rotation 90.0) (defaultPinDes "K10") )
+ (pad (padNum 186) (padStyleRef "P:OV04D0") (pt 8.0 -9.0) (rotation 90.0) (defaultPinDes "K9") )
+ (pad (padNum 118) (padStyleRef "P:OV04D0") (pt 5.0 -7.0) (rotation 90.0) (defaultPinDes "H6") )
+ (pad (padNum 140) (padStyleRef "P:OV04D0") (pt 6.0 -7.0) (rotation 90.0) (defaultPinDes "H7") )
+ (pad (padNum 162) (padStyleRef "P:OV04D0") (pt 7.0 -7.0) (rotation 90.0) (defaultPinDes "H8") )
+ (pad (padNum 115) (padStyleRef "P:OV04D0") (pt 5.0 -4.0) (rotation 90.0) (defaultPinDes "E6") )
+ (pad (padNum 116) (padStyleRef "P:OV04D0") (pt 5.0 -5.0) (rotation 90.0) (defaultPinDes "F6") )
+ (pad (padNum 137) (padStyleRef "P:OV04D0") (pt 6.0 -4.0) (rotation 90.0) (defaultPinDes "E7") )
+ (pad (padNum 138) (padStyleRef "P:OV04D0") (pt 6.0 -5.0) (rotation 90.0) (defaultPinDes "F7") )
+ (pad (padNum 114) (padStyleRef "P:OV04D0") (pt 5.0 -3.0) (rotation 90.0) (defaultPinDes "D6") )
+ (pad (padNum 136) (padStyleRef "P:OV04D0") (pt 6.0 -3.0) (rotation 90.0) (defaultPinDes "D7") )
+ (pad (padNum 159) (padStyleRef "P:OV04D0") (pt 7.0 -4.0) (rotation 90.0) (defaultPinDes "E8") )
+ (pad (padNum 160) (padStyleRef "P:OV04D0") (pt 7.0 -5.0) (rotation 90.0) (defaultPinDes "F8") )
+ (pad (padNum 158) (padStyleRef "P:OV04D0") (pt 7.0 -3.0) (rotation 90.0) (defaultPinDes "D8") )
+ (pad (padNum 206) (padStyleRef "P:OV04D0") (pt 9.0 -7.0) (rotation 90.0) (defaultPinDes "H10") )
+ (pad (padNum 203) (padStyleRef "P:OV04D0") (pt 9.0 -4.0) (rotation 90.0) (defaultPinDes "E10") )
+ (pad (padNum 204) (padStyleRef "P:OV04D0") (pt 9.0 -5.0) (rotation 90.0) (defaultPinDes "F10") )
+ (pad (padNum 202) (padStyleRef "P:OV04D0") (pt 9.0 -3.0) (rotation 90.0) (defaultPinDes "D10") )
+ (pad (padNum 117) (padStyleRef "P:OV04D0") (pt 5.0 -6.0) (rotation 90.0) (defaultPinDes "G6") )
+ (pad (padNum 139) (padStyleRef "P:OV04D0") (pt 6.0 -6.0) (rotation 90.0) (defaultPinDes "G7") )
+ (pad (padNum 161) (padStyleRef "P:OV04D0") (pt 7.0 -6.0) (rotation 90.0) (defaultPinDes "G8") )
+ (pad (padNum 205) (padStyleRef "P:OV04D0") (pt 9.0 -6.0) (rotation 90.0) (defaultPinDes "G10") )
+ (pad (padNum 184) (padStyleRef "P:OV04D0") (pt 8.0 -7.0) (rotation 90.0) (defaultPinDes "H9") )
+ (pad (padNum 181) (padStyleRef "P:OV04D0") (pt 8.0 -4.0) (rotation 90.0) (defaultPinDes "E9") )
+ (pad (padNum 182) (padStyleRef "P:OV04D0") (pt 8.0 -5.0) (rotation 90.0) (defaultPinDes "F9") )
+ (pad (padNum 180) (padStyleRef "P:OV04D0") (pt 8.0 -3.0) (rotation 90.0) (defaultPinDes "D9") )
+ (pad (padNum 183) (padStyleRef "P:OV04D0") (pt 8.0 -6.0) (rotation 90.0) (defaultPinDes "G9") )
+ (pad (padNum 75) (padStyleRef "P:OV04D0") (pt 3.0 -8.0) (rotation 90.0) (defaultPinDes "J4") )
+ (pad (padNum 119) (padStyleRef "P:OV04D0") (pt 5.0 -8.0) (rotation 90.0) (defaultPinDes "J6") )
+ (pad (padNum 141) (padStyleRef "P:OV04D0") (pt 6.0 -8.0) (rotation 90.0) (defaultPinDes "J7") )
+ (pad (padNum 163) (padStyleRef "P:OV04D0") (pt 7.0 -8.0) (rotation 90.0) (defaultPinDes "J8") )
+ (pad (padNum 207) (padStyleRef "P:OV04D0") (pt 9.0 -8.0) (rotation 90.0) (defaultPinDes "J10") )
+ (pad (padNum 185) (padStyleRef "P:OV04D0") (pt 8.0 -8.0) (rotation 90.0) (defaultPinDes "J9") )
+ (pad (padNum 98) (padStyleRef "P:OV04D0") (pt 4.0 -9.0) (rotation 90.0) (defaultPinDes "K5") )
+ (pad (padNum 96) (padStyleRef "P:OV04D0") (pt 4.0 -7.0) (rotation 90.0) (defaultPinDes "H5") )
+ (pad (padNum 93) (padStyleRef "P:OV04D0") (pt 4.0 -4.0) (rotation 90.0) (defaultPinDes "E5") )
+ (pad (padNum 94) (padStyleRef "P:OV04D0") (pt 4.0 -5.0) (rotation 90.0) (defaultPinDes "F5") )
+ (pad (padNum 92) (padStyleRef "P:OV04D0") (pt 4.0 -3.0) (rotation 90.0) (defaultPinDes "D5") )
+ (pad (padNum 95) (padStyleRef "P:OV04D0") (pt 4.0 -6.0) (rotation 90.0) (defaultPinDes "G5") )
+ (pad (padNum 97) (padStyleRef "P:OV04D0") (pt 4.0 -8.0) (rotation 90.0) (defaultPinDes "J5") )
+ (pad (padNum 69) (padStyleRef "P:OV04D0") (pt 3.0 -2.0) (rotation 90.0) (defaultPinDes "C4") )
+ (pad (padNum 67) (padStyleRef "P:OV04D0") (pt 3.0 0.0) (rotation 90.0) (defaultPinDes "A4") )
+ (pad (padNum 113) (padStyleRef "P:OV04D0") (pt 5.0 -2.0) (rotation 90.0) (defaultPinDes "C6") )
+ (pad (padNum 135) (padStyleRef "P:OV04D0") (pt 6.0 -2.0) (rotation 90.0) (defaultPinDes "C7") )
+ (pad (padNum 157) (padStyleRef "P:OV04D0") (pt 7.0 -2.0) (rotation 90.0) (defaultPinDes "C8") )
+ (pad (padNum 201) (padStyleRef "P:OV04D0") (pt 9.0 -2.0) (rotation 90.0) (defaultPinDes "C10") )
+ (pad (padNum 179) (padStyleRef "P:OV04D0") (pt 8.0 -2.0) (rotation 90.0) (defaultPinDes "C9") )
+ (pad (padNum 111) (padStyleRef "P:OV04D0") (pt 5.0 0.0) (rotation 90.0) (defaultPinDes "A6") )
+ (pad (padNum 133) (padStyleRef "P:OV04D0") (pt 6.0 0.0) (rotation 90.0) (defaultPinDes "A7") )
+ (pad (padNum 155) (padStyleRef "P:OV04D0") (pt 7.0 0.0) (rotation 90.0) (defaultPinDes "A8") )
+ (pad (padNum 199) (padStyleRef "P:OV04D0") (pt 9.0 0.0) (rotation 90.0) (defaultPinDes "A10") )
+ (pad (padNum 177) (padStyleRef "P:OV04D0") (pt 8.0 0.0) (rotation 90.0) (defaultPinDes "A9") )
+ (pad (padNum 68) (padStyleRef "P:OV04D0") (pt 3.0 -1.0) (rotation 90.0) (defaultPinDes "B4") )
+ (pad (padNum 112) (padStyleRef "P:OV04D0") (pt 5.0 -1.0) (rotation 90.0) (defaultPinDes "B6") )
+ (pad (padNum 134) (padStyleRef "P:OV04D0") (pt 6.0 -1.0) (rotation 90.0) (defaultPinDes "B7") )
+ (pad (padNum 156) (padStyleRef "P:OV04D0") (pt 7.0 -1.0) (rotation 90.0) (defaultPinDes "B8") )
+ (pad (padNum 200) (padStyleRef "P:OV04D0") (pt 9.0 -1.0) (rotation 90.0) (defaultPinDes "B10") )
+ (pad (padNum 178) (padStyleRef "P:OV04D0") (pt 8.0 -1.0) (rotation 90.0) (defaultPinDes "B9") )
+ (pad (padNum 91) (padStyleRef "P:OV04D0") (pt 4.0 -2.0) (rotation 90.0) (defaultPinDes "C5") )
+ (pad (padNum 89) (padStyleRef "P:OV04D0") (pt 4.0 0.0) (rotation 90.0) (defaultPinDes "A5") )
+ (pad (padNum 90) (padStyleRef "P:OV04D0") (pt 4.0 -1.0) (rotation 90.0) (defaultPinDes "B5") )
+ (pad (padNum 284) (padStyleRef "P:OV04D0") (pt 12.0 -19.0) (rotation 90.0) (defaultPinDes "Y13") )
+ (pad (padNum 285) (padStyleRef "P:OV04D0") (pt 12.0 -20.0) (rotation 90.0) (defaultPinDes "AA13") )
+ (pad (padNum 286) (padStyleRef "P:OV04D0") (pt 12.0 -21.0) (rotation 90.0) (defaultPinDes "AB13") )
+ (pad (padNum 306) (padStyleRef "P:OV04D0") (pt 13.0 -19.0) (rotation 90.0) (defaultPinDes "Y14") )
+ (pad (padNum 307) (padStyleRef "P:OV04D0") (pt 13.0 -20.0) (rotation 90.0) (defaultPinDes "AA14") )
+ (pad (padNum 308) (padStyleRef "P:OV04D0") (pt 13.0 -21.0) (rotation 90.0) (defaultPinDes "AB14") )
+ (pad (padNum 328) (padStyleRef "P:OV04D0") (pt 14.0 -19.0) (rotation 90.0) (defaultPinDes "Y15") )
+ (pad (padNum 329) (padStyleRef "P:OV04D0") (pt 14.0 -20.0) (rotation 90.0) (defaultPinDes "AA15") )
+ (pad (padNum 330) (padStyleRef "P:OV04D0") (pt 14.0 -21.0) (rotation 90.0) (defaultPinDes "AB15") )
+ (pad (padNum 350) (padStyleRef "P:OV04D0") (pt 15.0 -19.0) (rotation 90.0) (defaultPinDes "Y16") )
+ (pad (padNum 351) (padStyleRef "P:OV04D0") (pt 15.0 -20.0) (rotation 90.0) (defaultPinDes "AA16") )
+ (pad (padNum 352) (padStyleRef "P:OV04D0") (pt 15.0 -21.0) (rotation 90.0) (defaultPinDes "AB16") )
+ (pad (padNum 394) (padStyleRef "P:OV04D0") (pt 17.0 -19.0) (rotation 90.0) (defaultPinDes "Y18") )
+ (pad (padNum 395) (padStyleRef "P:OV04D0") (pt 17.0 -20.0) (rotation 90.0) (defaultPinDes "AA18") )
+ (pad (padNum 396) (padStyleRef "P:OV04D0") (pt 17.0 -21.0) (rotation 90.0) (defaultPinDes "AB18") )
+ (pad (padNum 372) (padStyleRef "P:OV04D0") (pt 16.0 -19.0) (rotation 90.0) (defaultPinDes "Y17") )
+ (pad (padNum 373) (padStyleRef "P:OV04D0") (pt 16.0 -20.0) (rotation 90.0) (defaultPinDes "AA17") )
+ (pad (padNum 374) (padStyleRef "P:OV04D0") (pt 16.0 -21.0) (rotation 90.0) (defaultPinDes "AB17") )
+ (pad (padNum 262) (padStyleRef "P:OV04D0") (pt 11.0 -19.0) (rotation 90.0) (defaultPinDes "Y12") )
+ (pad (padNum 263) (padStyleRef "P:OV04D0") (pt 11.0 -20.0) (rotation 90.0) (defaultPinDes "AA12") )
+ (pad (padNum 264) (padStyleRef "P:OV04D0") (pt 11.0 -21.0) (rotation 90.0) (defaultPinDes "AB12") )
+ (pad (padNum 282) (padStyleRef "P:OV04D0") (pt 12.0 -17.0) (rotation 90.0) (defaultPinDes "V13") )
+ (pad (padNum 304) (padStyleRef "P:OV04D0") (pt 13.0 -17.0) (rotation 90.0) (defaultPinDes "V14") )
+ (pad (padNum 326) (padStyleRef "P:OV04D0") (pt 14.0 -17.0) (rotation 90.0) (defaultPinDes "V15") )
+ (pad (padNum 348) (padStyleRef "P:OV04D0") (pt 15.0 -17.0) (rotation 90.0) (defaultPinDes "V16") )
+ (pad (padNum 392) (padStyleRef "P:OV04D0") (pt 17.0 -17.0) (rotation 90.0) (defaultPinDes "V18") )
+ (pad (padNum 370) (padStyleRef "P:OV04D0") (pt 16.0 -17.0) (rotation 90.0) (defaultPinDes "V17") )
+ (pad (padNum 280) (padStyleRef "P:OV04D0") (pt 12.0 -15.0) (rotation 90.0) (defaultPinDes "T13") )
+ (pad (padNum 302) (padStyleRef "P:OV04D0") (pt 13.0 -15.0) (rotation 90.0) (defaultPinDes "T14") )
+ (pad (padNum 324) (padStyleRef "P:OV04D0") (pt 14.0 -15.0) (rotation 90.0) (defaultPinDes "T15") )
+ (pad (padNum 346) (padStyleRef "P:OV04D0") (pt 15.0 -15.0) (rotation 90.0) (defaultPinDes "T16") )
+ (pad (padNum 276) (padStyleRef "P:OV04D0") (pt 12.0 -11.0) (rotation 90.0) (defaultPinDes "M13") )
+ (pad (padNum 277) (padStyleRef "P:OV04D0") (pt 12.0 -12.0) (rotation 90.0) (defaultPinDes "N13") )
+ (pad (padNum 278) (padStyleRef "P:OV04D0") (pt 12.0 -13.0) (rotation 90.0) (defaultPinDes "P13") )
+ (pad (padNum 298) (padStyleRef "P:OV04D0") (pt 13.0 -11.0) (rotation 90.0) (defaultPinDes "M14") )
+ (pad (padNum 299) (padStyleRef "P:OV04D0") (pt 13.0 -12.0) (rotation 90.0) (defaultPinDes "N14") )
+ (pad (padNum 300) (padStyleRef "P:OV04D0") (pt 13.0 -13.0) (rotation 90.0) (defaultPinDes "P14") )
+ (pad (padNum 320) (padStyleRef "P:OV04D0") (pt 14.0 -11.0) (rotation 90.0) (defaultPinDes "M15") )
+ (pad (padNum 321) (padStyleRef "P:OV04D0") (pt 14.0 -12.0) (rotation 90.0) (defaultPinDes "N15") )
+ (pad (padNum 322) (padStyleRef "P:OV04D0") (pt 14.0 -13.0) (rotation 90.0) (defaultPinDes "P15") )
+ (pad (padNum 342) (padStyleRef "P:OV04D0") (pt 15.0 -11.0) (rotation 90.0) (defaultPinDes "M16") )
+ (pad (padNum 343) (padStyleRef "P:OV04D0") (pt 15.0 -12.0) (rotation 90.0) (defaultPinDes "N16") )
+ (pad (padNum 344) (padStyleRef "P:OV04D0") (pt 15.0 -13.0) (rotation 90.0) (defaultPinDes "P16") )
+ (pad (padNum 390) (padStyleRef "P:OV04D0") (pt 17.0 -15.0) (rotation 90.0) (defaultPinDes "T18") )
+ (pad (padNum 386) (padStyleRef "P:OV04D0") (pt 17.0 -11.0) (rotation 90.0) (defaultPinDes "M18") )
+ (pad (padNum 387) (padStyleRef "P:OV04D0") (pt 17.0 -12.0) (rotation 90.0) (defaultPinDes "N18") )
+ (pad (padNum 388) (padStyleRef "P:OV04D0") (pt 17.0 -13.0) (rotation 90.0) (defaultPinDes "P18") )
+ (pad (padNum 279) (padStyleRef "P:OV04D0") (pt 12.0 -14.0) (rotation 90.0) (defaultPinDes "R13") )
+ (pad (padNum 301) (padStyleRef "P:OV04D0") (pt 13.0 -14.0) (rotation 90.0) (defaultPinDes "R14") )
+ (pad (padNum 323) (padStyleRef "P:OV04D0") (pt 14.0 -14.0) (rotation 90.0) (defaultPinDes "R15") )
+ (pad (padNum 345) (padStyleRef "P:OV04D0") (pt 15.0 -14.0) (rotation 90.0) (defaultPinDes "R16") )
+ (pad (padNum 389) (padStyleRef "P:OV04D0") (pt 17.0 -14.0) (rotation 90.0) (defaultPinDes "R18") )
+ (pad (padNum 368) (padStyleRef "P:OV04D0") (pt 16.0 -15.0) (rotation 90.0) (defaultPinDes "T17") )
+ (pad (padNum 364) (padStyleRef "P:OV04D0") (pt 16.0 -11.0) (rotation 90.0) (defaultPinDes "M17") )
+ (pad (padNum 365) (padStyleRef "P:OV04D0") (pt 16.0 -12.0) (rotation 90.0) (defaultPinDes "N17") )
+ (pad (padNum 366) (padStyleRef "P:OV04D0") (pt 16.0 -13.0) (rotation 90.0) (defaultPinDes "P17") )
+ (pad (padNum 367) (padStyleRef "P:OV04D0") (pt 16.0 -14.0) (rotation 90.0) (defaultPinDes "R17") )
+ (pad (padNum 281) (padStyleRef "P:OV04D0") (pt 12.0 -16.0) (rotation 90.0) (defaultPinDes "U13") )
+ (pad (padNum 303) (padStyleRef "P:OV04D0") (pt 13.0 -16.0) (rotation 90.0) (defaultPinDes "U14") )
+ (pad (padNum 325) (padStyleRef "P:OV04D0") (pt 14.0 -16.0) (rotation 90.0) (defaultPinDes "U15") )
+ (pad (padNum 347) (padStyleRef "P:OV04D0") (pt 15.0 -16.0) (rotation 90.0) (defaultPinDes "U16") )
+ (pad (padNum 391) (padStyleRef "P:OV04D0") (pt 17.0 -16.0) (rotation 90.0) (defaultPinDes "U18") )
+ (pad (padNum 369) (padStyleRef "P:OV04D0") (pt 16.0 -16.0) (rotation 90.0) (defaultPinDes "U17") )
+ (pad (padNum 260) (padStyleRef "P:OV04D0") (pt 11.0 -17.0) (rotation 90.0) (defaultPinDes "V12") )
+ (pad (padNum 258) (padStyleRef "P:OV04D0") (pt 11.0 -15.0) (rotation 90.0) (defaultPinDes "T12") )
+ (pad (padNum 254) (padStyleRef "P:OV04D0") (pt 11.0 -11.0) (rotation 90.0) (defaultPinDes "M12") )
+ (pad (padNum 255) (padStyleRef "P:OV04D0") (pt 11.0 -12.0) (rotation 90.0) (defaultPinDes "N12") )
+ (pad (padNum 256) (padStyleRef "P:OV04D0") (pt 11.0 -13.0) (rotation 90.0) (defaultPinDes "P12") )
+ (pad (padNum 257) (padStyleRef "P:OV04D0") (pt 11.0 -14.0) (rotation 90.0) (defaultPinDes "R12") )
+ (pad (padNum 259) (padStyleRef "P:OV04D0") (pt 11.0 -16.0) (rotation 90.0) (defaultPinDes "U12") )
+ (pad (padNum 274) (padStyleRef "P:OV04D0") (pt 12.0 -9.0) (rotation 90.0) (defaultPinDes "K13") )
+ (pad (padNum 296) (padStyleRef "P:OV04D0") (pt 13.0 -9.0) (rotation 90.0) (defaultPinDes "K14") )
+ (pad (padNum 318) (padStyleRef "P:OV04D0") (pt 14.0 -9.0) (rotation 90.0) (defaultPinDes "K15") )
+ (pad (padNum 340) (padStyleRef "P:OV04D0") (pt 15.0 -9.0) (rotation 90.0) (defaultPinDes "K16") )
+ (pad (padNum 384) (padStyleRef "P:OV04D0") (pt 17.0 -9.0) (rotation 90.0) (defaultPinDes "K18") )
+ (pad (padNum 362) (padStyleRef "P:OV04D0") (pt 16.0 -9.0) (rotation 90.0) (defaultPinDes "K17") )
+ (pad (padNum 272) (padStyleRef "P:OV04D0") (pt 12.0 -7.0) (rotation 90.0) (defaultPinDes "H13") )
+ (pad (padNum 294) (padStyleRef "P:OV04D0") (pt 13.0 -7.0) (rotation 90.0) (defaultPinDes "H14") )
+ (pad (padNum 316) (padStyleRef "P:OV04D0") (pt 14.0 -7.0) (rotation 90.0) (defaultPinDes "H15") )
+ (pad (padNum 338) (padStyleRef "P:OV04D0") (pt 15.0 -7.0) (rotation 90.0) (defaultPinDes "H16") )
+ (pad (padNum 269) (padStyleRef "P:OV04D0") (pt 12.0 -4.0) (rotation 90.0) (defaultPinDes "E13") )
+ (pad (padNum 270) (padStyleRef "P:OV04D0") (pt 12.0 -5.0) (rotation 90.0) (defaultPinDes "F13") )
+ (pad (padNum 291) (padStyleRef "P:OV04D0") (pt 13.0 -4.0) (rotation 90.0) (defaultPinDes "E14") )
+ (pad (padNum 292) (padStyleRef "P:OV04D0") (pt 13.0 -5.0) (rotation 90.0) (defaultPinDes "F14") )
+ (pad (padNum 268) (padStyleRef "P:OV04D0") (pt 12.0 -3.0) (rotation 90.0) (defaultPinDes "D13") )
+ (pad (padNum 290) (padStyleRef "P:OV04D0") (pt 13.0 -3.0) (rotation 90.0) (defaultPinDes "D14") )
+ (pad (padNum 313) (padStyleRef "P:OV04D0") (pt 14.0 -4.0) (rotation 90.0) (defaultPinDes "E15") )
+ (pad (padNum 314) (padStyleRef "P:OV04D0") (pt 14.0 -5.0) (rotation 90.0) (defaultPinDes "F15") )
+ (pad (padNum 312) (padStyleRef "P:OV04D0") (pt 14.0 -3.0) (rotation 90.0) (defaultPinDes "D15") )
+ (pad (padNum 335) (padStyleRef "P:OV04D0") (pt 15.0 -4.0) (rotation 90.0) (defaultPinDes "E16") )
+ (pad (padNum 336) (padStyleRef "P:OV04D0") (pt 15.0 -5.0) (rotation 90.0) (defaultPinDes "F16") )
+ (pad (padNum 334) (padStyleRef "P:OV04D0") (pt 15.0 -3.0) (rotation 90.0) (defaultPinDes "D16") )
+ (pad (padNum 382) (padStyleRef "P:OV04D0") (pt 17.0 -7.0) (rotation 90.0) (defaultPinDes "H18") )
+ (pad (padNum 379) (padStyleRef "P:OV04D0") (pt 17.0 -4.0) (rotation 90.0) (defaultPinDes "E18") )
+ (pad (padNum 380) (padStyleRef "P:OV04D0") (pt 17.0 -5.0) (rotation 90.0) (defaultPinDes "F18") )
+ (pad (padNum 378) (padStyleRef "P:OV04D0") (pt 17.0 -3.0) (rotation 90.0) (defaultPinDes "D18") )
+ (pad (padNum 271) (padStyleRef "P:OV04D0") (pt 12.0 -6.0) (rotation 90.0) (defaultPinDes "G13") )
+ (pad (padNum 293) (padStyleRef "P:OV04D0") (pt 13.0 -6.0) (rotation 90.0) (defaultPinDes "G14") )
+ (pad (padNum 315) (padStyleRef "P:OV04D0") (pt 14.0 -6.0) (rotation 90.0) (defaultPinDes "G15") )
+ (pad (padNum 337) (padStyleRef "P:OV04D0") (pt 15.0 -6.0) (rotation 90.0) (defaultPinDes "G16") )
+ (pad (padNum 381) (padStyleRef "P:OV04D0") (pt 17.0 -6.0) (rotation 90.0) (defaultPinDes "G18") )
+ (pad (padNum 360) (padStyleRef "P:OV04D0") (pt 16.0 -7.0) (rotation 90.0) (defaultPinDes "H17") )
+ (pad (padNum 357) (padStyleRef "P:OV04D0") (pt 16.0 -4.0) (rotation 90.0) (defaultPinDes "E17") )
+ (pad (padNum 358) (padStyleRef "P:OV04D0") (pt 16.0 -5.0) (rotation 90.0) (defaultPinDes "F17") )
+ (pad (padNum 356) (padStyleRef "P:OV04D0") (pt 16.0 -3.0) (rotation 90.0) (defaultPinDes "D17") )
+ (pad (padNum 359) (padStyleRef "P:OV04D0") (pt 16.0 -6.0) (rotation 90.0) (defaultPinDes "G17") )
+ (pad (padNum 273) (padStyleRef "P:OV04D0") (pt 12.0 -8.0) (rotation 90.0) (defaultPinDes "J13") )
+ (pad (padNum 295) (padStyleRef "P:OV04D0") (pt 13.0 -8.0) (rotation 90.0) (defaultPinDes "J14") )
+ (pad (padNum 317) (padStyleRef "P:OV04D0") (pt 14.0 -8.0) (rotation 90.0) (defaultPinDes "J15") )
+ (pad (padNum 339) (padStyleRef "P:OV04D0") (pt 15.0 -8.0) (rotation 90.0) (defaultPinDes "J16") )
+ (pad (padNum 383) (padStyleRef "P:OV04D0") (pt 17.0 -8.0) (rotation 90.0) (defaultPinDes "J18") )
+ (pad (padNum 361) (padStyleRef "P:OV04D0") (pt 16.0 -8.0) (rotation 90.0) (defaultPinDes "J17") )
+ (pad (padNum 252) (padStyleRef "P:OV04D0") (pt 11.0 -9.0) (rotation 90.0) (defaultPinDes "K12") )
+ (pad (padNum 250) (padStyleRef "P:OV04D0") (pt 11.0 -7.0) (rotation 90.0) (defaultPinDes "H12") )
+ (pad (padNum 247) (padStyleRef "P:OV04D0") (pt 11.0 -4.0) (rotation 90.0) (defaultPinDes "E12") )
+ (pad (padNum 248) (padStyleRef "P:OV04D0") (pt 11.0 -5.0) (rotation 90.0) (defaultPinDes "F12") )
+ (pad (padNum 246) (padStyleRef "P:OV04D0") (pt 11.0 -3.0) (rotation 90.0) (defaultPinDes "D12") )
+ (pad (padNum 249) (padStyleRef "P:OV04D0") (pt 11.0 -6.0) (rotation 90.0) (defaultPinDes "G12") )
+ (pad (padNum 251) (padStyleRef "P:OV04D0") (pt 11.0 -8.0) (rotation 90.0) (defaultPinDes "J12") )
+ (pad (padNum 267) (padStyleRef "P:OV04D0") (pt 12.0 -2.0) (rotation 90.0) (defaultPinDes "C13") )
+ (pad (padNum 289) (padStyleRef "P:OV04D0") (pt 13.0 -2.0) (rotation 90.0) (defaultPinDes "C14") )
+ (pad (padNum 311) (padStyleRef "P:OV04D0") (pt 14.0 -2.0) (rotation 90.0) (defaultPinDes "C15") )
+ (pad (padNum 333) (padStyleRef "P:OV04D0") (pt 15.0 -2.0) (rotation 90.0) (defaultPinDes "C16") )
+ (pad (padNum 377) (padStyleRef "P:OV04D0") (pt 17.0 -2.0) (rotation 90.0) (defaultPinDes "C18") )
+ (pad (padNum 355) (padStyleRef "P:OV04D0") (pt 16.0 -2.0) (rotation 90.0) (defaultPinDes "C17") )
+ (pad (padNum 265) (padStyleRef "P:OV04D0") (pt 12.0 0.0) (rotation 90.0) (defaultPinDes "A13") )
+ (pad (padNum 287) (padStyleRef "P:OV04D0") (pt 13.0 0.0) (rotation 90.0) (defaultPinDes "A14") )
+ (pad (padNum 309) (padStyleRef "P:OV04D0") (pt 14.0 0.0) (rotation 90.0) (defaultPinDes "A15") )
+ (pad (padNum 331) (padStyleRef "P:OV04D0") (pt 15.0 0.0) (rotation 90.0) (defaultPinDes "A16") )
+ (pad (padNum 375) (padStyleRef "P:OV04D0") (pt 17.0 0.0) (rotation 90.0) (defaultPinDes "A18") )
+ (pad (padNum 353) (padStyleRef "P:OV04D0") (pt 16.0 0.0) (rotation 90.0) (defaultPinDes "A17") )
+ (pad (padNum 266) (padStyleRef "P:OV04D0") (pt 12.0 -1.0) (rotation 90.0) (defaultPinDes "B13") )
+ (pad (padNum 288) (padStyleRef "P:OV04D0") (pt 13.0 -1.0) (rotation 90.0) (defaultPinDes "B14") )
+ (pad (padNum 310) (padStyleRef "P:OV04D0") (pt 14.0 -1.0) (rotation 90.0) (defaultPinDes "B15") )
+ (pad (padNum 332) (padStyleRef "P:OV04D0") (pt 15.0 -1.0) (rotation 90.0) (defaultPinDes "B16") )
+ (pad (padNum 376) (padStyleRef "P:OV04D0") (pt 17.0 -1.0) (rotation 90.0) (defaultPinDes "B18") )
+ (pad (padNum 354) (padStyleRef "P:OV04D0") (pt 16.0 -1.0) (rotation 90.0) (defaultPinDes "B17") )
+ (pad (padNum 245) (padStyleRef "P:OV04D0") (pt 11.0 -2.0) (rotation 90.0) (defaultPinDes "C12") )
+ (pad (padNum 243) (padStyleRef "P:OV04D0") (pt 11.0 0.0) (rotation 90.0) (defaultPinDes "A12") )
+ (pad (padNum 244) (padStyleRef "P:OV04D0") (pt 11.0 -1.0) (rotation 90.0) (defaultPinDes "B12") )
+ (pad (padNum 460) (padStyleRef "P:OV04D0") (pt 20.0 -19.0) (rotation 90.0) (defaultPinDes "Y21") )
+ (pad (padNum 461) (padStyleRef "P:OV04D0") (pt 20.0 -20.0) (rotation 90.0) (defaultPinDes "AA21") )
+ (pad (padNum 462) (padStyleRef "P:OV04D0") (pt 20.0 -21.0) (rotation 90.0) (defaultPinDes "AB21") )
+ (pad (padNum 482) (padStyleRef "P:OV04D0") (pt 21.0 -19.0) (rotation 90.0) (defaultPinDes "Y22") )
+ (pad (padNum 483) (padStyleRef "P:OV04D0") (pt 21.0 -20.0) (rotation 90.0) (defaultPinDes "AA22") )
+ (pad (padNum 484) (padStyleRef "P:OV04D0") (pt 21.0 -21.0) (rotation 90.0) (defaultPinDes "AB22") )
+ (pad (padNum 438) (padStyleRef "P:OV04D0") (pt 19.0 -19.0) (rotation 90.0) (defaultPinDes "Y20") )
+ (pad (padNum 439) (padStyleRef "P:OV04D0") (pt 19.0 -20.0) (rotation 90.0) (defaultPinDes "AA20") )
+ (pad (padNum 440) (padStyleRef "P:OV04D0") (pt 19.0 -21.0) (rotation 90.0) (defaultPinDes "AB20") )
+ (pad (padNum 458) (padStyleRef "P:OV04D0") (pt 20.0 -17.0) (rotation 90.0) (defaultPinDes "V21") )
+ (pad (padNum 480) (padStyleRef "P:OV04D0") (pt 21.0 -17.0) (rotation 90.0) (defaultPinDes "V22") )
+ (pad (padNum 456) (padStyleRef "P:OV04D0") (pt 20.0 -15.0) (rotation 90.0) (defaultPinDes "T21") )
+ (pad (padNum 478) (padStyleRef "P:OV04D0") (pt 21.0 -15.0) (rotation 90.0) (defaultPinDes "T22") )
+ (pad (padNum 452) (padStyleRef "P:OV04D0") (pt 20.0 -11.0) (rotation 90.0) (defaultPinDes "M21") )
+ (pad (padNum 453) (padStyleRef "P:OV04D0") (pt 20.0 -12.0) (rotation 90.0) (defaultPinDes "N21") )
+ (pad (padNum 454) (padStyleRef "P:OV04D0") (pt 20.0 -13.0) (rotation 90.0) (defaultPinDes "P21") )
+ (pad (padNum 474) (padStyleRef "P:OV04D0") (pt 21.0 -11.0) (rotation 90.0) (defaultPinDes "M22") )
+ (pad (padNum 475) (padStyleRef "P:OV04D0") (pt 21.0 -12.0) (rotation 90.0) (defaultPinDes "N22") )
+ (pad (padNum 476) (padStyleRef "P:OV04D0") (pt 21.0 -13.0) (rotation 90.0) (defaultPinDes "P22") )
+ (pad (padNum 455) (padStyleRef "P:OV04D0") (pt 20.0 -14.0) (rotation 90.0) (defaultPinDes "R21") )
+ (pad (padNum 477) (padStyleRef "P:OV04D0") (pt 21.0 -14.0) (rotation 90.0) (defaultPinDes "R22") )
+ (pad (padNum 457) (padStyleRef "P:OV04D0") (pt 20.0 -16.0) (rotation 90.0) (defaultPinDes "U21") )
+ (pad (padNum 479) (padStyleRef "P:OV04D0") (pt 21.0 -16.0) (rotation 90.0) (defaultPinDes "U22") )
+ (pad (padNum 436) (padStyleRef "P:OV04D0") (pt 19.0 -17.0) (rotation 90.0) (defaultPinDes "V20") )
+ (pad (padNum 434) (padStyleRef "P:OV04D0") (pt 19.0 -15.0) (rotation 90.0) (defaultPinDes "T20") )
+ (pad (padNum 430) (padStyleRef "P:OV04D0") (pt 19.0 -11.0) (rotation 90.0) (defaultPinDes "M20") )
+ (pad (padNum 431) (padStyleRef "P:OV04D0") (pt 19.0 -12.0) (rotation 90.0) (defaultPinDes "N20") )
+ (pad (padNum 432) (padStyleRef "P:OV04D0") (pt 19.0 -13.0) (rotation 90.0) (defaultPinDes "P20") )
+ (pad (padNum 433) (padStyleRef "P:OV04D0") (pt 19.0 -14.0) (rotation 90.0) (defaultPinDes "R20") )
+ (pad (padNum 435) (padStyleRef "P:OV04D0") (pt 19.0 -16.0) (rotation 90.0) (defaultPinDes "U20") )
+ (pad (padNum 450) (padStyleRef "P:OV04D0") (pt 20.0 -9.0) (rotation 90.0) (defaultPinDes "K21") )
+ (pad (padNum 472) (padStyleRef "P:OV04D0") (pt 21.0 -9.0) (rotation 90.0) (defaultPinDes "K22") )
+ (pad (padNum 448) (padStyleRef "P:OV04D0") (pt 20.0 -7.0) (rotation 90.0) (defaultPinDes "H21") )
+ (pad (padNum 470) (padStyleRef "P:OV04D0") (pt 21.0 -7.0) (rotation 90.0) (defaultPinDes "H22") )
+ (pad (padNum 445) (padStyleRef "P:OV04D0") (pt 20.0 -4.0) (rotation 90.0) (defaultPinDes "E21") )
+ (pad (padNum 446) (padStyleRef "P:OV04D0") (pt 20.0 -5.0) (rotation 90.0) (defaultPinDes "F21") )
+ (pad (padNum 467) (padStyleRef "P:OV04D0") (pt 21.0 -4.0) (rotation 90.0) (defaultPinDes "E22") )
+ (pad (padNum 468) (padStyleRef "P:OV04D0") (pt 21.0 -5.0) (rotation 90.0) (defaultPinDes "F22") )
+ (pad (padNum 444) (padStyleRef "P:OV04D0") (pt 20.0 -3.0) (rotation 90.0) (defaultPinDes "D21") )
+ (pad (padNum 466) (padStyleRef "P:OV04D0") (pt 21.0 -3.0) (rotation 90.0) (defaultPinDes "D22") )
+ (pad (padNum 447) (padStyleRef "P:OV04D0") (pt 20.0 -6.0) (rotation 90.0) (defaultPinDes "G21") )
+ (pad (padNum 469) (padStyleRef "P:OV04D0") (pt 21.0 -6.0) (rotation 90.0) (defaultPinDes "G22") )
+ (pad (padNum 449) (padStyleRef "P:OV04D0") (pt 20.0 -8.0) (rotation 90.0) (defaultPinDes "J21") )
+ (pad (padNum 471) (padStyleRef "P:OV04D0") (pt 21.0 -8.0) (rotation 90.0) (defaultPinDes "J22") )
+ (pad (padNum 428) (padStyleRef "P:OV04D0") (pt 19.0 -9.0) (rotation 90.0) (defaultPinDes "K20") )
+ (pad (padNum 426) (padStyleRef "P:OV04D0") (pt 19.0 -7.0) (rotation 90.0) (defaultPinDes "H20") )
+ (pad (padNum 423) (padStyleRef "P:OV04D0") (pt 19.0 -4.0) (rotation 90.0) (defaultPinDes "E20") )
+ (pad (padNum 424) (padStyleRef "P:OV04D0") (pt 19.0 -5.0) (rotation 90.0) (defaultPinDes "F20") )
+ (pad (padNum 422) (padStyleRef "P:OV04D0") (pt 19.0 -3.0) (rotation 90.0) (defaultPinDes "D20") )
+ (pad (padNum 425) (padStyleRef "P:OV04D0") (pt 19.0 -6.0) (rotation 90.0) (defaultPinDes "G20") )
+ (pad (padNum 427) (padStyleRef "P:OV04D0") (pt 19.0 -8.0) (rotation 90.0) (defaultPinDes "J20") )
+ (pad (padNum 443) (padStyleRef "P:OV04D0") (pt 20.0 -2.0) (rotation 90.0) (defaultPinDes "C21") )
+ (pad (padNum 465) (padStyleRef "P:OV04D0") (pt 21.0 -2.0) (rotation 90.0) (defaultPinDes "C22") )
+ (pad (padNum 441) (padStyleRef "P:OV04D0") (pt 20.0 0.0) (rotation 90.0) (defaultPinDes "A21") )
+ (pad (padNum 463) (padStyleRef "P:OV04D0") (pt 21.0 0.0) (rotation 90.0) (defaultPinDes "A22") )
+ (pad (padNum 442) (padStyleRef "P:OV04D0") (pt 20.0 -1.0) (rotation 90.0) (defaultPinDes "B21") )
+ (pad (padNum 464) (padStyleRef "P:OV04D0") (pt 21.0 -1.0) (rotation 90.0) (defaultPinDes "B22") )
+ (pad (padNum 421) (padStyleRef "P:OV04D0") (pt 19.0 -2.0) (rotation 90.0) (defaultPinDes "C20") )
+ (pad (padNum 419) (padStyleRef "P:OV04D0") (pt 19.0 0.0) (rotation 90.0) (defaultPinDes "A20") )
+ (pad (padNum 420) (padStyleRef "P:OV04D0") (pt 19.0 -1.0) (rotation 90.0) (defaultPinDes "B20") )
+ (pad (padNum 19) (padStyleRef "P:OV04D0") (pt 0.0 -18.0) (rotation 90.0) (defaultPinDes "W1") )
+ (pad (padNum 63) (padStyleRef "P:OV04D0") (pt 2.0 -18.0) (rotation 90.0) (defaultPinDes "W3") )
+ (pad (padNum 41) (padStyleRef "P:OV04D0") (pt 1.0 -18.0) (rotation 90.0) (defaultPinDes "W2") )
+ (pad (padNum 11) (padStyleRef "P:OV04D0") (pt 0.0 -10.0) (rotation 90.0) (defaultPinDes "L1") )
+ (pad (padNum 55) (padStyleRef "P:OV04D0") (pt 2.0 -10.0) (rotation 90.0) (defaultPinDes "L3") )
+ (pad (padNum 33) (padStyleRef "P:OV04D0") (pt 1.0 -10.0) (rotation 90.0) (defaultPinDes "L2") )
+ (pad (padNum 85) (padStyleRef "P:OV04D0") (pt 3.0 -18.0) (rotation 90.0) (defaultPinDes "W4") )
+ (pad (padNum 77) (padStyleRef "P:OV04D0") (pt 3.0 -10.0) (rotation 90.0) (defaultPinDes "L4") )
+ (pad (padNum 129) (padStyleRef "P:OV04D0") (pt 5.0 -18.0) (rotation 90.0) (defaultPinDes "W6") )
+ (pad (padNum 151) (padStyleRef "P:OV04D0") (pt 6.0 -18.0) (rotation 90.0) (defaultPinDes "W7") )
+ (pad (padNum 173) (padStyleRef "P:OV04D0") (pt 7.0 -18.0) (rotation 90.0) (defaultPinDes "W8") )
+ (pad (padNum 217) (padStyleRef "P:OV04D0") (pt 9.0 -18.0) (rotation 90.0) (defaultPinDes "W10") )
+ (pad (padNum 195) (padStyleRef "P:OV04D0") (pt 8.0 -18.0) (rotation 90.0) (defaultPinDes "W9") )
+ (pad (padNum 121) (padStyleRef "P:OV04D0") (pt 5.0 -10.0) (rotation 90.0) (defaultPinDes "L6") )
+ (pad (padNum 143) (padStyleRef "P:OV04D0") (pt 6.0 -10.0) (rotation 90.0) (defaultPinDes "L7") )
+ (pad (padNum 165) (padStyleRef "P:OV04D0") (pt 7.0 -10.0) (rotation 90.0) (defaultPinDes "L8") )
+ (pad (padNum 209) (padStyleRef "P:OV04D0") (pt 9.0 -10.0) (rotation 90.0) (defaultPinDes "L10") )
+ (pad (padNum 187) (padStyleRef "P:OV04D0") (pt 8.0 -10.0) (rotation 90.0) (defaultPinDes "L9") )
+ (pad (padNum 107) (padStyleRef "P:OV04D0") (pt 4.0 -18.0) (rotation 90.0) (defaultPinDes "W5") )
+ (pad (padNum 99) (padStyleRef "P:OV04D0") (pt 4.0 -10.0) (rotation 90.0) (defaultPinDes "L5") )
+ (pad (padNum 283) (padStyleRef "P:OV04D0") (pt 12.0 -18.0) (rotation 90.0) (defaultPinDes "W13") )
+ (pad (padNum 305) (padStyleRef "P:OV04D0") (pt 13.0 -18.0) (rotation 90.0) (defaultPinDes "W14") )
+ (pad (padNum 327) (padStyleRef "P:OV04D0") (pt 14.0 -18.0) (rotation 90.0) (defaultPinDes "W15") )
+ (pad (padNum 349) (padStyleRef "P:OV04D0") (pt 15.0 -18.0) (rotation 90.0) (defaultPinDes "W16") )
+ (pad (padNum 393) (padStyleRef "P:OV04D0") (pt 17.0 -18.0) (rotation 90.0) (defaultPinDes "W18") )
+ (pad (padNum 371) (padStyleRef "P:OV04D0") (pt 16.0 -18.0) (rotation 90.0) (defaultPinDes "W17") )
+ (pad (padNum 275) (padStyleRef "P:OV04D0") (pt 12.0 -10.0) (rotation 90.0) (defaultPinDes "L13") )
+ (pad (padNum 297) (padStyleRef "P:OV04D0") (pt 13.0 -10.0) (rotation 90.0) (defaultPinDes "L14") )
+ (pad (padNum 319) (padStyleRef "P:OV04D0") (pt 14.0 -10.0) (rotation 90.0) (defaultPinDes "L15") )
+ (pad (padNum 341) (padStyleRef "P:OV04D0") (pt 15.0 -10.0) (rotation 90.0) (defaultPinDes "L16") )
+ (pad (padNum 385) (padStyleRef "P:OV04D0") (pt 17.0 -10.0) (rotation 90.0) (defaultPinDes "L18") )
+ (pad (padNum 363) (padStyleRef "P:OV04D0") (pt 16.0 -10.0) (rotation 90.0) (defaultPinDes "L17") )
+ (pad (padNum 261) (padStyleRef "P:OV04D0") (pt 11.0 -18.0) (rotation 90.0) (defaultPinDes "W12") )
+ (pad (padNum 253) (padStyleRef "P:OV04D0") (pt 11.0 -10.0) (rotation 90.0) (defaultPinDes "L12") )
+ (pad (padNum 459) (padStyleRef "P:OV04D0") (pt 20.0 -18.0) (rotation 90.0) (defaultPinDes "W21") )
+ (pad (padNum 481) (padStyleRef "P:OV04D0") (pt 21.0 -18.0) (rotation 90.0) (defaultPinDes "W22") )
+ (pad (padNum 451) (padStyleRef "P:OV04D0") (pt 20.0 -10.0) (rotation 90.0) (defaultPinDes "L21") )
+ (pad (padNum 473) (padStyleRef "P:OV04D0") (pt 21.0 -10.0) (rotation 90.0) (defaultPinDes "L22") )
+ (pad (padNum 437) (padStyleRef "P:OV04D0") (pt 19.0 -18.0) (rotation 90.0) (defaultPinDes "W20") )
+ (pad (padNum 429) (padStyleRef "P:OV04D0") (pt 19.0 -10.0) (rotation 90.0) (defaultPinDes "L20") )
+ (pad (padNum 240) (padStyleRef "P:OV04D0") (pt 10.0 -19.0) (rotation 90.0) (defaultPinDes "Y11") )
+ (pad (padNum 241) (padStyleRef "P:OV04D0") (pt 10.0 -20.0) (rotation 90.0) (defaultPinDes "AA11") )
+ (pad (padNum 242) (padStyleRef "P:OV04D0") (pt 10.0 -21.0) (rotation 90.0) (defaultPinDes "AB11") )
+ (pad (padNum 238) (padStyleRef "P:OV04D0") (pt 10.0 -17.0) (rotation 90.0) (defaultPinDes "V11") )
+ (pad (padNum 236) (padStyleRef "P:OV04D0") (pt 10.0 -15.0) (rotation 90.0) (defaultPinDes "T11") )
+ (pad (padNum 232) (padStyleRef "P:OV04D0") (pt 10.0 -11.0) (rotation 90.0) (defaultPinDes "M11") )
+ (pad (padNum 233) (padStyleRef "P:OV04D0") (pt 10.0 -12.0) (rotation 90.0) (defaultPinDes "N11") )
+ (pad (padNum 234) (padStyleRef "P:OV04D0") (pt 10.0 -13.0) (rotation 90.0) (defaultPinDes "P11") )
+ (pad (padNum 235) (padStyleRef "P:OV04D0") (pt 10.0 -14.0) (rotation 90.0) (defaultPinDes "R11") )
+ (pad (padNum 237) (padStyleRef "P:OV04D0") (pt 10.0 -16.0) (rotation 90.0) (defaultPinDes "U11") )
+ (pad (padNum 230) (padStyleRef "P:OV04D0") (pt 10.0 -9.0) (rotation 90.0) (defaultPinDes "K11") )
+ (pad (padNum 228) (padStyleRef "P:OV04D0") (pt 10.0 -7.0) (rotation 90.0) (defaultPinDes "H11") )
+ (pad (padNum 225) (padStyleRef "P:OV04D0") (pt 10.0 -4.0) (rotation 90.0) (defaultPinDes "E11") )
+ (pad (padNum 226) (padStyleRef "P:OV04D0") (pt 10.0 -5.0) (rotation 90.0) (defaultPinDes "F11") )
+ (pad (padNum 224) (padStyleRef "P:OV04D0") (pt 10.0 -3.0) (rotation 90.0) (defaultPinDes "D11") )
+ (pad (padNum 227) (padStyleRef "P:OV04D0") (pt 10.0 -6.0) (rotation 90.0) (defaultPinDes "G11") )
+ (pad (padNum 229) (padStyleRef "P:OV04D0") (pt 10.0 -8.0) (rotation 90.0) (defaultPinDes "J11") )
+ (pad (padNum 223) (padStyleRef "P:OV04D0") (pt 10.0 -2.0) (rotation 90.0) (defaultPinDes "C11") )
+ (pad (padNum 221) (padStyleRef "P:OV04D0") (pt 10.0 0.0) (rotation 90.0) (defaultPinDes "A11") )
+ (pad (padNum 222) (padStyleRef "P:OV04D0") (pt 10.0 -1.0) (rotation 90.0) (defaultPinDes "B11") )
+ (pad (padNum 416) (padStyleRef "P:OV04D0") (pt 18.0 -19.0) (rotation 90.0) (defaultPinDes "Y19") )
+ (pad (padNum 417) (padStyleRef "P:OV04D0") (pt 18.0 -20.0) (rotation 90.0) (defaultPinDes "AA19") )
+ (pad (padNum 418) (padStyleRef "P:OV04D0") (pt 18.0 -21.0) (rotation 90.0) (defaultPinDes "AB19") )
+ (pad (padNum 414) (padStyleRef "P:OV04D0") (pt 18.0 -17.0) (rotation 90.0) (defaultPinDes "V19") )
+ (pad (padNum 412) (padStyleRef "P:OV04D0") (pt 18.0 -15.0) (rotation 90.0) (defaultPinDes "T19") )
+ (pad (padNum 408) (padStyleRef "P:OV04D0") (pt 18.0 -11.0) (rotation 90.0) (defaultPinDes "M19") )
+ (pad (padNum 409) (padStyleRef "P:OV04D0") (pt 18.0 -12.0) (rotation 90.0) (defaultPinDes "N19") )
+ (pad (padNum 410) (padStyleRef "P:OV04D0") (pt 18.0 -13.0) (rotation 90.0) (defaultPinDes "P19") )
+ (pad (padNum 411) (padStyleRef "P:OV04D0") (pt 18.0 -14.0) (rotation 90.0) (defaultPinDes "R19") )
+ (pad (padNum 413) (padStyleRef "P:OV04D0") (pt 18.0 -16.0) (rotation 90.0) (defaultPinDes "U19") )
+ (pad (padNum 406) (padStyleRef "P:OV04D0") (pt 18.0 -9.0) (rotation 90.0) (defaultPinDes "K19") )
+ (pad (padNum 404) (padStyleRef "P:OV04D0") (pt 18.0 -7.0) (rotation 90.0) (defaultPinDes "H19") )
+ (pad (padNum 401) (padStyleRef "P:OV04D0") (pt 18.0 -4.0) (rotation 90.0) (defaultPinDes "E19") )
+ (pad (padNum 402) (padStyleRef "P:OV04D0") (pt 18.0 -5.0) (rotation 90.0) (defaultPinDes "F19") )
+ (pad (padNum 400) (padStyleRef "P:OV04D0") (pt 18.0 -3.0) (rotation 90.0) (defaultPinDes "D19") )
+ (pad (padNum 403) (padStyleRef "P:OV04D0") (pt 18.0 -6.0) (rotation 90.0) (defaultPinDes "G19") )
+ (pad (padNum 405) (padStyleRef "P:OV04D0") (pt 18.0 -8.0) (rotation 90.0) (defaultPinDes "J19") )
+ (pad (padNum 399) (padStyleRef "P:OV04D0") (pt 18.0 -2.0) (rotation 90.0) (defaultPinDes "C19") )
+ (pad (padNum 397) (padStyleRef "P:OV04D0") (pt 18.0 0.0) (rotation 90.0) (defaultPinDes "A19") )
+ (pad (padNum 398) (padStyleRef "P:OV04D0") (pt 18.0 -1.0) (rotation 90.0) (defaultPinDes "B19") )
+ (pad (padNum 239) (padStyleRef "P:OV04D0") (pt 10.0 -18.0) (rotation 90.0) (defaultPinDes "W11") )
+ (pad (padNum 231) (padStyleRef "P:OV04D0") (pt 10.0 -10.0) (rotation 90.0) (defaultPinDes "L11") )
+ (pad (padNum 415) (padStyleRef "P:OV04D0") (pt 18.0 -18.0) (rotation 90.0) (defaultPinDes "W19") )
+ (pad (padNum 407) (padStyleRef "P:OV04D0") (pt 18.0 -10.0) (rotation 90.0) (defaultPinDes "L19") )
+ (gluepoint (pt 10.5 -10.5) )
+ (pickpoint (pt 10.5 -10.5) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.0 0.5) (pt -0.5 1.0) (width 0.203) )
+ (triplePointArc (pt -2.5 2.5) (pt -3.0 2.5) (pt -3.0 2.5) (width 0.203) )
+ (line (pt -1.0 -22.0) (pt -1.0 0.5) (width 0.203) )
+ (line (pt 22.0 1.0) (pt 22.0 -22.0) (width 0.203) )
+ (line (pt 22.0 -22.0) (pt -1.0 -22.0) (width 0.203) )
+ (line (pt -0.5 1.0) (pt 22.0 1.0) (width 0.203) )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 8.4 2.52) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -4.0 4.0) (pt -4.0 -25.0) (width 0.203) )
+ (line (pt 25.0 -25.0) (pt 25.0 4.0) (width 0.203) )
+ (line (pt -4.0 -25.0) (pt 25.0 -25.0) (width 0.203) )
+ (line (pt 25.0 4.0) (pt -4.0 4.0) (width 0.203) )
+ (attr "Type" "" (pt 10.0 -23.5) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0603_1"
+ (originalName "SMD0603")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:RE08D0") (pt -0.8 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:RE08D0") (pt 0.8 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt -0.3 0.4)
+ (pt -0.3 -0.4)
+ (pt 0.3 -0.4)
+ (pt 0.3 0.4)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt -0.4 0.6)
+ (pt -0.4 -0.6)
+ (pt 0.4 -0.6)
+ (pt 0.4 0.6)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.6 -0.8) (pt -0.5 -0.8) (width 0.2) )
+ (line (pt -1.6 0.8) (pt -0.5 0.8) (width 0.2) )
+ (line (pt 1.6 -0.8) (pt 0.5 -0.8) (width 0.2) )
+ (line (pt 1.6 0.8) (pt 0.5 0.8) (width 0.2) )
+ (line (pt -1.6 -0.8) (pt -1.6 0.8) (width 0.2) )
+ (line (pt 1.6 0.8) (pt 1.6 -0.8) (width 0.2) )
+ (attr "RefDes" "" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0603_2"
+ (originalName "SMD0603")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:RE08D0") (pt -0.80001 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:RE08D0") (pt 0.80001 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt -0.3 0.4)
+ (pt -0.3 -0.4)
+ (pt 0.3 -0.4)
+ (pt 0.3 0.4)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt -0.4 0.6)
+ (pt -0.4 -0.6)
+ (pt 0.4 -0.6)
+ (pt 0.4 0.6)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.60001 -0.8) (pt -0.5 -0.8) (width 0.2) )
+ (line (pt -1.60001 0.8) (pt -0.5 0.8) (width 0.2) )
+ (line (pt 1.60001 -0.8) (pt 0.5 -0.8) (width 0.2) )
+ (line (pt 1.60001 0.8) (pt 0.5 0.8) (width 0.2) )
+ (line (pt -1.60001 -0.8) (pt -1.60001 0.8) (width 0.2) )
+ (line (pt 1.60001 0.8) (pt 1.60001 -0.8) (width 0.2) )
+ (attr "Value" "" (rotation 135.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 1.95161 3.4224) (rotation 135.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0603_3"
+ (originalName "SMD0603")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:RE08D0") (pt -0.8 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:RE08D0") (pt 0.8 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt -0.3 0.4)
+ (pt -0.3 -0.4)
+ (pt 0.3 -0.4)
+ (pt 0.3 0.4)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt -0.4 0.6)
+ (pt -0.4 -0.6)
+ (pt 0.4 -0.6)
+ (pt 0.4 0.6)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.6 -0.8) (pt -0.5 -0.8) (width 0.2) )
+ (line (pt -1.6 0.8) (pt -0.5 0.8) (width 0.2) )
+ (line (pt 1.6 -0.8) (pt 0.5 -0.8) (width 0.2) )
+ (line (pt 1.6 0.8) (pt 0.5 0.8) (width 0.2) )
+ (line (pt -1.6 -0.8) (pt -1.6 0.8) (width 0.2) )
+ (line (pt 1.6 0.8) (pt 1.6 -0.8) (width 0.2) )
+ (attr "RefDes" "" (pt 0.8 -2.44) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0805_1"
+ (originalName "SMD0805")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:REW12H13D0") (pt -1.0 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:REW12H13D0") (pt 1.0 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 0.3 -0.6)
+ (pt 0.3 0.6)
+ (pt -0.3 0.6)
+ (pt -0.3 -0.6)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 0.3 -1.0)
+ (pt 0.3 1.0)
+ (pt -0.3 1.0)
+ (pt -0.3 -1.0)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -2.0 -1.0) (pt -0.4 -1.0) (width 0.2) )
+ (line (pt -0.4 1.0) (pt -2.0 1.0) (width 0.2) )
+ (line (pt 0.4 -1.0) (pt 2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 1.0) (pt 0.4 1.0) (width 0.2) )
+ (line (pt -2.0 1.0) (pt -2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 -1.0) (pt 2.0 1.0) (width 0.2) )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.1 -1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -2.6) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0805_2"
+ (originalName "SMD0805")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:REW12H13D0") (pt -1.0 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:REW12H13D0") (pt 1.0 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 0.3 -0.6)
+ (pt 0.3 0.6)
+ (pt -0.3 0.6)
+ (pt -0.3 -0.6)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 0.3 -1.0)
+ (pt 0.3 1.0)
+ (pt -0.3 1.0)
+ (pt -0.3 -1.0)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -2.0 -1.0) (pt -0.4 -1.0) (width 0.2) )
+ (line (pt -0.4 1.0) (pt -2.0 1.0) (width 0.2) )
+ (line (pt 0.4 -1.0) (pt 2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 1.0) (pt 0.4 1.0) (width 0.2) )
+ (line (pt -2.0 1.0) (pt -2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 -1.0) (pt 2.0 1.0) (width 0.2) )
+ (attr "Type" "" (pt 0.0 -2.6) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt -2.76 0.12) (rotation 90.0) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ (attr "Value" "" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0805_3"
+ (originalName "SMD0805")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:REW12H13D0") (pt -1.0 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:REW12H13D0") (pt 1.0 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 0.3 -0.6)
+ (pt 0.3 0.6)
+ (pt -0.3 0.6)
+ (pt -0.3 -0.6)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 0.3 -1.0)
+ (pt 0.3 1.0)
+ (pt -0.3 1.0)
+ (pt -0.3 -1.0)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -2.0 -1.0) (pt -0.4 -1.0) (width 0.2) )
+ (line (pt -0.4 1.0) (pt -2.0 1.0) (width 0.2) )
+ (line (pt 0.4 -1.0) (pt 2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 1.0) (pt 0.4 1.0) (width 0.2) )
+ (line (pt -2.0 1.0) (pt -2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 -1.0) (pt 2.0 1.0) (width 0.2) )
+ (attr "RefDes" "" (pt -0.14 -1.02) (rotation 180.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ (attr "Value" "" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -2.6) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SMD0805_4"
+ (originalName "SMD0805")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:REW12H13D0") (pt -1.0 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:REW12H13D0") (pt 1.0 0.0) (defaultPinDes "B") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 0.3 -0.6)
+ (pt 0.3 0.6)
+ (pt -0.3 0.6)
+ (pt -0.3 -0.6)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 0.3 -0.99999)
+ (pt 0.3 1.0)
+ (pt -0.3 1.0)
+ (pt -0.3 -0.99999)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.99999 -0.99999) (pt -0.4 -0.99999) (width 0.2) )
+ (line (pt -0.4 1.0) (pt -2.0 1.0) (width 0.2) )
+ (line (pt 0.4 -0.99999) (pt 1.99999 -0.99999) (width 0.2) )
+ (line (pt 2.0 1.0) (pt 0.4 1.0) (width 0.2) )
+ (line (pt -2.0 1.0) (pt -1.99999 -0.99999) (width 0.2) )
+ (line (pt 1.99999 -0.99999) (pt 2.0 1.0) (width 0.2) )
+ (attr "Value" "" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 0.9 2.3) (rotation 90.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -2.6) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SOT-23_1"
+ (originalName "SOT-23")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:OVW13H08D0") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "1") )
+ (pad (padNum 2) (padStyleRef "P:OVW13H08D0") (pt 1.016 -2.54) (rotation 90.0) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:OVW13H08D0") (pt -1.016 -2.54) (rotation 90.0) (defaultPinDes "3") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.778 -0.508) (pt -1.778 -2.032) (width 0.254) )
+ (line (pt -1.524 -2.032) (pt -1.778 -2.032) (width 0.254) )
+ (line (pt -0.508 -2.032) (pt 0.508 -2.032) (width 0.254) )
+ (line (pt 1.778 -0.508) (pt 1.778 -2.032) (width 0.254) )
+ (line (pt 1.524 -2.032) (pt 1.778 -2.032) (width 0.254) )
+ (line (pt 0.508 -0.508) (pt 1.778 -0.508) (width 0.254) )
+ (line (pt -0.508 -0.508) (pt -1.778 -0.508) (width 0.254) )
+ (attr "RefDes" "" (pt -2.96 -2.52) (rotation 90.0) (isVisible True) (justify Left) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -3.302) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "DIP-8_1"
+ (originalName "DIP-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "P:EX59Y59D35A") (pt 0.0 -5.08) )
+ (pad (padNum 4) (padStyleRef "P:EX59Y59D35A") (pt 0.0 -7.62) )
+ (pad (padNum 1) (padStyleRef "P:SX59Y59D35A") (pt 0.0 0.0) )
+ (pad (padNum 5) (padStyleRef "P:EX59Y59D35A") (pt 7.62 -7.62) )
+ (pad (padNum 6) (padStyleRef "P:EX59Y59D35A") (pt 7.62 -5.08) )
+ (pad (padNum 8) (padStyleRef "P:EX59Y59D35A") (pt 7.62 0.0) )
+ (pad (padNum 2) (padStyleRef "P:EX59Y59D35A") (pt 0.0 -2.54) )
+ (pad (padNum 7) (padStyleRef "P:EX59Y59D35A") (pt 7.62 -2.54) )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt 3.81 1.34) (pt 3.175 1.34) (pt 4.445 1.34) (width 0.24999) )
+ (line (pt 1.15999 1.34) (pt 3.175 1.34) (width 0.24999) )
+ (line (pt 1.15999 -8.96) (pt 1.15999 1.34) (width 0.24999) )
+ (line (pt 6.46001 -8.96) (pt 6.46001 1.34) (width 0.24999) )
+ (line (pt 1.15999 -8.96) (pt 6.46001 -8.96) (width 0.24999) )
+ (line (pt 4.445 1.34) (pt 6.46001 1.34) (width 0.24999) )
+ (attr "Type" "" (pt -0.74999 -11.879) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 1.2 1.5) (isVisible True) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "L-C170_1"
+ (originalName "L-C170")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:REW12H13D0") (pt -1.0 0.0) (defaultPinDes "A") )
+ (pad (padNum 2) (padStyleRef "P:REW12H13D0") (pt 1.0 0.0) (defaultPinDes "K") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 0.3 -0.6)
+ (pt 0.3 0.6)
+ (pt -0.3 0.6)
+ (pt -0.3 -0.6)
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 0.3 -1.0)
+ (pt 0.3 1.0)
+ (pt -0.3 1.0)
+ (pt -0.3 -1.0)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -2.0 -1.0) (pt -0.4 -1.0) (width 0.2) )
+ (line (pt -2.5 -1.0) (pt -3.1 -1.0) (width 0.2) )
+ (line (pt -2.8 -0.7) (pt -2.8 -1.3) (width 0.2) )
+ (line (pt -0.4 1.0) (pt -2.0 1.0) (width 0.2) )
+ (line (pt 0.4 -1.0) (pt 2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 1.0) (pt 0.4 1.0) (width 0.2) )
+ (line (pt -2.0 1.0) (pt -2.0 -1.0) (width 0.2) )
+ (line (pt 2.0 -1.0) (pt 2.0 1.0) (width 0.2) )
+ (attr "RefDes" "" (pt 3.72 -0.94) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "TO-252_2"
+ (originalName "TO-252")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "SMD50x80") (pt 2.25 -4.875) )
+ (pad (padNum 1) (padStyleRef "SMD50x80") (pt -2.25 -4.875) )
+ (pad (padNum 2) (padStyleRef "SMD240x240") (pt 0.0 1.5) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -3.25 -6.25) (pt -3.25 -3.25) (width 0.254) )
+ (line (pt -3.25 -3.25) (pt -3.375 -3.25) (width 0.254) )
+ (line (pt 3.375 -3.25) (pt 3.25 -3.25) (width 0.254) )
+ (line (pt 3.25 -3.25) (pt 3.25 -6.25) (width 0.254) )
+ (line (pt 3.25 -6.25) (pt 1.25 -6.25) (width 0.254) )
+ (line (pt 1.25 -6.25) (pt 1.25 -3.25) (width 0.254) )
+ (line (pt 1.25 -3.25) (pt -1.25 -3.25) (width 0.254) )
+ (line (pt -1.25 -3.25) (pt -1.25 -6.25) (width 0.254) )
+ (line (pt -3.375 -3.25) (pt -3.375 4.875) (width 0.254) )
+ (line (pt 3.375 4.875) (pt 3.375 -3.25) (width 0.254) )
+ (line (pt -1.25 -6.25) (pt -3.25 -6.25) (width 0.254) )
+ (line (pt -3.375 4.875) (pt 3.375 4.875) (width 0.254) )
+ (attr "Type" "" (pt 5.125 -0.625) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 5.4 0.3) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -2.675 -3.125) (pt -2.675 -5.625) (width 0.125) )
+ (line (pt -2.675 3.0) (pt -2.675 4.25) (width 0.125) )
+ (line (pt -0.375 -4.0) (pt 0.375 -4.0) (width 0.125) )
+ (line (pt -0.375 -3.125) (pt -0.375 -4.0) (width 0.125) )
+ (line (pt 0.375 -4.0) (pt 0.375 -3.125) (width 0.125) )
+ (line (pt -1.925 -5.625) (pt -1.925 -3.125) (width 0.125) )
+ (line (pt 1.925 -5.625) (pt 2.675 -5.625) (width 0.125) )
+ (line (pt 2.675 -5.625) (pt 2.675 -3.125) (width 0.125) )
+ (line (pt 1.925 -3.125) (pt 1.925 -5.625) (width 0.125) )
+ (line (pt 2.175 3.875) (pt 2.175 4.25) (width 0.125) )
+ (line (pt 2.175 4.25) (pt 2.675 4.25) (width 0.125) )
+ (line (pt 2.675 4.25) (pt 2.675 3.0) (width 0.125) )
+ (line (pt -2.175 4.25) (pt -2.175 3.875) (width 0.125) )
+ (line (pt -2.175 3.875) (pt 2.175 3.875) (width 0.125) )
+ (line (pt -3.125 3.0) (pt -3.125 -3.125) (width 0.125) )
+ (line (pt 3.125 -3.125) (pt 3.125 3.0) (width 0.125) )
+ (line (pt -2.675 -5.625) (pt -1.925 -5.625) (width 0.125) )
+ (line (pt -2.675 4.25) (pt -2.175 4.25) (width 0.125) )
+ (line (pt -3.125 -3.125) (pt 3.125 -3.125) (width 0.125) )
+ (line (pt 3.125 3.0) (pt -3.125 3.0) (width 0.125) )
+ )
+ )
+ )
+ (patternDefExtended "TO-252_1"
+ (originalName "TO-252")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "SMD50x80") (pt 2.25 -4.875) )
+ (pad (padNum 1) (padStyleRef "SMD50x80") (pt -2.25 -4.875) )
+ (pad (padNum 2) (padStyleRef "SMD240x240") (pt 0.0 1.5) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -3.25 -6.25) (pt -3.25 -3.25) (width 0.254) )
+ (line (pt -3.25 -3.25) (pt -3.375 -3.25) (width 0.254) )
+ (line (pt 3.375 -3.25) (pt 3.25 -3.25) (width 0.254) )
+ (line (pt 3.25 -3.25) (pt 3.25 -6.25) (width 0.254) )
+ (line (pt 3.25 -6.25) (pt 1.25 -6.25) (width 0.254) )
+ (line (pt 1.25 -6.25) (pt 1.25 -3.25) (width 0.254) )
+ (line (pt 1.25 -3.25) (pt -1.25 -3.25) (width 0.254) )
+ (line (pt -1.25 -3.25) (pt -1.25 -6.25) (width 0.254) )
+ (line (pt -3.375 -3.25) (pt -3.375 4.875) (width 0.254) )
+ (line (pt 3.375 4.875) (pt 3.375 -3.25) (width 0.254) )
+ (line (pt -1.25 -6.25) (pt -3.25 -6.25) (width 0.254) )
+ (line (pt -3.375 4.875) (pt 3.375 4.875) (width 0.254) )
+ (attr "Type" "" (pt 5.125 -0.625) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 0.3 6.1) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -2.675 -3.125) (pt -2.675 -5.625) (width 0.125) )
+ (line (pt -2.675 3.0) (pt -2.675 4.25) (width 0.125) )
+ (line (pt -0.375 -4.0) (pt 0.375 -4.0) (width 0.125) )
+ (line (pt -0.375 -3.125) (pt -0.375 -4.0) (width 0.125) )
+ (line (pt 0.375 -4.0) (pt 0.375 -3.125) (width 0.125) )
+ (line (pt -1.925 -5.625) (pt -1.925 -3.125) (width 0.125) )
+ (line (pt 1.925 -5.625) (pt 2.675 -5.625) (width 0.125) )
+ (line (pt 2.675 -5.625) (pt 2.675 -3.125) (width 0.125) )
+ (line (pt 1.925 -3.125) (pt 1.925 -5.625) (width 0.125) )
+ (line (pt 2.175 3.875) (pt 2.175 4.25) (width 0.125) )
+ (line (pt 2.175 4.25) (pt 2.675 4.25) (width 0.125) )
+ (line (pt 2.675 4.25) (pt 2.675 3.0) (width 0.125) )
+ (line (pt -2.175 4.25) (pt -2.175 3.875) (width 0.125) )
+ (line (pt -2.175 3.875) (pt 2.175 3.875) (width 0.125) )
+ (line (pt -3.125 3.0) (pt -3.125 -3.125) (width 0.125) )
+ (line (pt 3.125 -3.125) (pt 3.125 3.0) (width 0.125) )
+ (line (pt -2.675 -5.625) (pt -1.925 -5.625) (width 0.125) )
+ (line (pt -2.675 4.25) (pt -2.175 4.25) (width 0.125) )
+ (line (pt -3.125 -3.125) (pt 3.125 -3.125) (width 0.125) )
+ (line (pt 3.125 3.0) (pt -3.125 3.0) (width 0.125) )
+ )
+ )
+ )
+ (patternDefExtended "YC164_1"
+ (originalName "YC164")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW12H05D0") (pt -0.8 -1.2) (defaultPinDes "4") )
+ (pad (padNum 1) (padStyleRef "P:OVW12H05D0") (pt -0.8 1.2) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW12H05D0") (pt 0.8 -1.2) (defaultPinDes "5") )
+ (pad (padNum 8) (padStyleRef "P:OVW12H05D0") (pt 0.8 1.2) (defaultPinDes "8") )
+ (pad (padNum 2) (padStyleRef "P:OVW12H05D0") (pt -0.8 0.4) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:OVW12H05D0") (pt -0.8 -0.4) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW12H05D0") (pt 0.8 -0.4) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "P:OVW12H05D0") (pt 0.8 0.4) (defaultPinDes "7") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -0.8 -1.9) (pt -0.8 -1.7) (width 0.2) )
+ (line (pt -0.8 1.9) (pt -0.8 1.7) (width 0.2) )
+ (pcbPoly
+ (pt -1.6 1.7)
+ (pt -1.2 1.7)
+ (pt -1.2 2.1)
+ (pt -1.6 2.1)
+ )
+ (line (pt 0.8 -1.9) (pt 0.8 -1.7) (width 0.2) )
+ (line (pt 0.8 1.9) (pt 0.8 1.7) (width 0.2) )
+ (line (pt -0.8 -1.9) (pt 0.8 -1.9) (width 0.2) )
+ (line (pt 0.8 1.9) (pt -0.8 1.9) (width 0.2) )
+ (attr "Value" "" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.16 -0.46) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt -2.3 -3.025) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "PIN40X40X24_1"
+ (originalName "PIN40X40X24")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:SX40Y40D24A [1]") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "1") )
+ )
+ (layerContents (layerNumRef 6)
+ (attr "Type" "" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "PIN40X40X24_2"
+ (originalName "PIN40X40X24")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:RE10D06") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "1") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -0.7 -0.7) (pt -0.7 0.7) (width 0.2) )
+ (line (pt 0.7 0.7) (pt 0.7 -0.7) (width 0.2) )
+ (line (pt 0.7 -0.7) (pt -0.7 -0.7) (width 0.2) )
+ (line (pt -0.7 0.7) (pt 0.7 0.7) (width 0.2) )
+ (attr "RefDes" "" (pt -0.1 -0.9) (rotation 180.0) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -0.7) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "R8A_1"
+ (originalName "R8A")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (text (pt -1.7 1.0) "1" (textStyleRef "H16 [1]") (rotation 180.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.0 -6.0) (rotation 180.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 3.302 -4.826) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "KXO-75_1"
+ (originalName "KXO-75")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "R_W20H18") (pt 0.0 -5.08) (defaultPinDes "3") )
+ (pad (padNum 1) (padStyleRef "R_W20H18") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 2) (padStyleRef "R_W20H18") (pt 0.0 -2.54) (defaultPinDes "2") )
+ (pad (padNum 4) (padStyleRef "R_W20H18") (pt 4.2 -5.08) (defaultPinDes "4") )
+ (pad (padNum 6) (padStyleRef "R_W20H18") (pt 4.2 0.0) (defaultPinDes "6") )
+ (pad (padNum 5) (padStyleRef "R_W20H18") (pt 4.2 -2.54) (defaultPinDes "5") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.5675 -6.89) (pt -1.5675 1.81) (width 0.254) )
+ (line (pt 5.7675 1.81) (pt 5.7675 -6.89) (width 0.254) )
+ (line (pt 5.7675 -6.89) (pt -1.5675 -6.89) (width 0.254) )
+ (line (pt -1.52 1.86) (pt 5.68 1.86) (width 0.254) )
+ (attr "Type" "" (pt 0.0 -10.16) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt -0.54 -10.26) (isVisible True) (textStyleRef "(Default)") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "CABLE_1"
+ (originalName "CABLE")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:RE20D15") (pt -2.54 0.0) (defaultPinDes "GND") )
+ (pad (padNum 1) (padStyleRef "P:RE10D06") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "RF") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.27 -0.762) (pt -1.27 -1.27) (width 0.2) )
+ (line (pt -1.27 -1.27) (pt -3.81 -1.27) (width 0.2) )
+ (line (pt -3.81 1.27) (pt -1.27 1.27) (width 0.2) )
+ (line (pt -1.27 1.27) (pt -1.27 0.762) (width 0.2) )
+ (line (pt -3.81 -1.27) (pt -3.81 1.27) (width 0.2) )
+ (line (pt 0.762 0.762) (pt 0.762 -0.762) (width 0.2) )
+ (line (pt 0.762 -0.762) (pt -1.27 -0.762) (width 0.2) )
+ (line (pt -1.27 0.762) (pt 0.762 0.762) (width 0.2) )
+ (attr "RefDes" "" (pt 0.0 1.27) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.0 -1.27) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "CABLE_2"
+ (originalName "CABLE")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:RE20D15") (pt -2.54 0.0) (defaultPinDes "GND") )
+ (pad (padNum 1) (padStyleRef "P:RE10D06") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "RF") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.27001 -0.762) (pt -1.27 -1.27001) (width 0.2) )
+ (line (pt -1.27 -1.27001) (pt -3.81 -1.27002) (width 0.2) )
+ (line (pt -3.81 1.27001) (pt -1.27001 1.27) (width 0.2) )
+ (line (pt -1.27001 1.27) (pt -1.27001 0.762) (width 0.2) )
+ (line (pt -3.81 -1.27002) (pt -3.81 1.27001) (width 0.2) )
+ (line (pt 0.76202 0.762) (pt 0.762 -0.76202) (width 0.2) )
+ (line (pt 0.762 -0.76202) (pt -1.27001 -0.762) (width 0.2) )
+ (line (pt -1.27001 0.762) (pt 0.76202 0.762) (width 0.2) )
+ (attr "RefDes" "" (pt -0.00001 1.27002) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 195.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.00001 -1.27002) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "CABLE_3"
+ (originalName "CABLE")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:RE20D15") (pt -2.54 0.0) (defaultPinDes "GND") )
+ (pad (padNum 1) (padStyleRef "P:RE10D06") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "RF") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.27001 -0.762) (pt -1.27001 -1.27) (width 0.2) )
+ (line (pt -1.27001 -1.27) (pt -3.81 -1.27001) (width 0.2) )
+ (line (pt -3.81 1.27002) (pt -1.27 1.27001) (width 0.2) )
+ (line (pt -1.27 1.27001) (pt -1.27 0.76202) (width 0.2) )
+ (line (pt -3.81 -1.27001) (pt -3.81 1.27002) (width 0.2) )
+ (line (pt 0.76202 0.762) (pt 0.762 -0.76202) (width 0.2) )
+ (line (pt 0.762 -0.76202) (pt -1.27001 -0.762) (width 0.2) )
+ (line (pt -1.27 0.76202) (pt 0.76202 0.762) (width 0.2) )
+ (attr "RefDes" "" (pt 0.00003 1.27004) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 165.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt -0.00003 -1.27004) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "CABLE_4"
+ (originalName "CABLE")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:RE20D15") (pt -2.54 0.0) (defaultPinDes "GND") )
+ (pad (padNum 1) (padStyleRef "P:RE10D06") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "RF") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -1.27001 -0.762) (pt -1.27001 -1.27) (width 0.2) )
+ (line (pt -1.27001 -1.27) (pt -3.81 -1.27001) (width 0.2) )
+ (line (pt -3.81 1.27002) (pt -1.27 1.27001) (width 0.2) )
+ (line (pt -1.27 1.27001) (pt -1.27001 0.762) (width 0.2) )
+ (line (pt -3.81 -1.27001) (pt -3.81 1.27002) (width 0.2) )
+ (line (pt 0.762 0.76202) (pt 0.76202 -0.762) (width 0.2) )
+ (line (pt 0.76202 -0.762) (pt -1.27001 -0.762) (width 0.2) )
+ (line (pt -1.27001 0.762) (pt 0.762 0.76202) (width 0.2) )
+ (attr "RefDes" "" (pt -2.84973 2.13519) (rotation 15.0) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 345.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 0.00003 -1.27004) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "DIN3X32_1"
+ (originalName "DIN3X32")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 96) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -78.74) (rotation 90.0) (defaultPinDes "C32") )
+ (pad (padNum 94) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -73.66) (rotation 90.0) (defaultPinDes "C30") )
+ (pad (padNum 93) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -71.12) (rotation 90.0) (defaultPinDes "C29") )
+ (pad (padNum 91) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -66.04) (rotation 90.0) (defaultPinDes "C27") )
+ (pad (padNum 90) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -63.5) (rotation 90.0) (defaultPinDes "C26") )
+ (pad (padNum 88) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -58.42) (rotation 90.0) (defaultPinDes "C24") )
+ (pad (padNum 87) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -55.88) (rotation 90.0) (defaultPinDes "C23") )
+ (pad (padNum 85) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -50.8) (rotation 90.0) (defaultPinDes "C21") )
+ (pad (padNum 84) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -48.26) (rotation 90.0) (defaultPinDes "C20") )
+ (pad (padNum 82) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -43.18) (rotation 90.0) (defaultPinDes "C18") )
+ (pad (padNum 81) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -40.64) (rotation 90.0) (defaultPinDes "C17") )
+ (pad (padNum 79) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -35.56) (rotation 90.0) (defaultPinDes "C15") )
+ (pad (padNum 78) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -33.02) (rotation 90.0) (defaultPinDes "C14") )
+ (pad (padNum 76) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -27.94) (rotation 90.0) (defaultPinDes "C12") )
+ (pad (padNum 75) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -25.4) (rotation 90.0) (defaultPinDes "C11") )
+ (pad (padNum 73) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -20.32) (rotation 90.0) (defaultPinDes "C9") )
+ (pad (padNum 72) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -17.78) (rotation 90.0) (defaultPinDes "C8") )
+ (pad (padNum 70) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -12.7) (rotation 90.0) (defaultPinDes "C6") )
+ (pad (padNum 69) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -10.16) (rotation 90.0) (defaultPinDes "C5") )
+ (pad (padNum 67) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -5.08) (rotation 90.0) (defaultPinDes "C3") )
+ (pad (padNum 66) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -2.54) (rotation 90.0) (defaultPinDes "C2") )
+ (pad (padNum 64) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -78.74) (rotation 90.0) (defaultPinDes "B32") )
+ (pad (padNum 32) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -78.74) (rotation 90.0) (defaultPinDes "A32") )
+ (pad (padNum 62) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -73.66) (rotation 90.0) (defaultPinDes "B30") )
+ (pad (padNum 30) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -73.66) (rotation 90.0) (defaultPinDes "A30") )
+ (pad (padNum 61) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -71.12) (rotation 90.0) (defaultPinDes "B29") )
+ (pad (padNum 29) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -71.12) (rotation 90.0) (defaultPinDes "A29") )
+ (pad (padNum 59) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -66.04) (rotation 90.0) (defaultPinDes "B27") )
+ (pad (padNum 27) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -66.04) (rotation 90.0) (defaultPinDes "A27") )
+ (pad (padNum 58) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -63.5) (rotation 90.0) (defaultPinDes "B26") )
+ (pad (padNum 26) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -63.5) (rotation 90.0) (defaultPinDes "A26") )
+ (pad (padNum 56) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -58.42) (rotation 90.0) (defaultPinDes "B24") )
+ (pad (padNum 24) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -58.42) (rotation 90.0) (defaultPinDes "A24") )
+ (pad (padNum 55) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -55.88) (rotation 90.0) (defaultPinDes "B23") )
+ (pad (padNum 23) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -55.88) (rotation 90.0) (defaultPinDes "A23") )
+ (pad (padNum 53) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -50.8) (rotation 90.0) (defaultPinDes "B21") )
+ (pad (padNum 21) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -50.8) (rotation 90.0) (defaultPinDes "A21") )
+ (pad (padNum 52) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -48.26) (rotation 90.0) (defaultPinDes "B20") )
+ (pad (padNum 20) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -48.26) (rotation 90.0) (defaultPinDes "A20") )
+ (pad (padNum 50) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -43.18) (rotation 90.0) (defaultPinDes "B18") )
+ (pad (padNum 18) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -43.18) (rotation 90.0) (defaultPinDes "A18") )
+ (pad (padNum 49) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -40.64) (rotation 90.0) (defaultPinDes "B17") )
+ (pad (padNum 17) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -40.64) (rotation 90.0) (defaultPinDes "A17") )
+ (pad (padNum 47) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -35.56) (rotation 90.0) (defaultPinDes "B15") )
+ (pad (padNum 15) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -35.56) (rotation 90.0) (defaultPinDes "A15") )
+ (pad (padNum 46) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -33.02) (rotation 90.0) (defaultPinDes "B14") )
+ (pad (padNum 14) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -33.02) (rotation 90.0) (defaultPinDes "A14") )
+ (pad (padNum 44) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -27.94) (rotation 90.0) (defaultPinDes "B12") )
+ (pad (padNum 12) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -27.94) (rotation 90.0) (defaultPinDes "A12") )
+ (pad (padNum 43) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -25.4) (rotation 90.0) (defaultPinDes "B11") )
+ (pad (padNum 11) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -25.4) (rotation 90.0) (defaultPinDes "A11") )
+ (pad (padNum 41) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -20.32) (rotation 90.0) (defaultPinDes "B9") )
+ (pad (padNum 9) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -20.32) (rotation 90.0) (defaultPinDes "A9") )
+ (pad (padNum 40) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -17.78) (rotation 90.0) (defaultPinDes "B8") )
+ (pad (padNum 8) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -17.78) (rotation 90.0) (defaultPinDes "A8") )
+ (pad (padNum 38) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -12.7) (rotation 90.0) (defaultPinDes "B6") )
+ (pad (padNum 6) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -12.7) (rotation 90.0) (defaultPinDes "A6") )
+ (pad (padNum 37) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -10.16) (rotation 90.0) (defaultPinDes "B5") )
+ (pad (padNum 5) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -10.16) (rotation 90.0) (defaultPinDes "A5") )
+ (pad (padNum 35) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -5.08) (rotation 90.0) (defaultPinDes "B3") )
+ (pad (padNum 3) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -5.08) (rotation 90.0) (defaultPinDes "A3") )
+ (pad (padNum 34) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -2.54) (rotation 90.0) (defaultPinDes "B2") )
+ (pad (padNum 2) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -2.54) (rotation 90.0) (defaultPinDes "A2") )
+ (pad (padNum 95) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -76.2) (rotation 90.0) (defaultPinDes "C31") )
+ (pad (padNum 92) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -68.58) (rotation 90.0) (defaultPinDes "C28") )
+ (pad (padNum 89) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -60.96) (rotation 90.0) (defaultPinDes "C25") )
+ (pad (padNum 86) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -53.34) (rotation 90.0) (defaultPinDes "C22") )
+ (pad (padNum 83) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -45.72) (rotation 90.0) (defaultPinDes "C19") )
+ (pad (padNum 80) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -38.1) (rotation 90.0) (defaultPinDes "C16") )
+ (pad (padNum 77) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -30.48) (rotation 90.0) (defaultPinDes "C13") )
+ (pad (padNum 74) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -22.86) (rotation 90.0) (defaultPinDes "C10") )
+ (pad (padNum 71) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -15.24) (rotation 90.0) (defaultPinDes "C7") )
+ (pad (padNum 68) (padStyleRef "P:EX64Y64D36A") (pt -5.08 -7.62) (rotation 90.0) (defaultPinDes "C4") )
+ (pad (padNum 65) (padStyleRef "P:EX64Y64D36A") (pt -5.08 0.0) (rotation 90.0) (defaultPinDes "C1") )
+ (pad (padNum 63) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -76.2) (rotation 90.0) (defaultPinDes "B31") )
+ (pad (padNum 31) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -76.2) (rotation 90.0) (defaultPinDes "A31") )
+ (pad (padNum 60) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -68.58) (rotation 90.0) (defaultPinDes "B28") )
+ (pad (padNum 57) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -60.96) (rotation 90.0) (defaultPinDes "B25") )
+ (pad (padNum 54) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -53.34) (rotation 90.0) (defaultPinDes "B22") )
+ (pad (padNum 51) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -45.72) (rotation 90.0) (defaultPinDes "B19") )
+ (pad (padNum 28) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -68.58) (rotation 90.0) (defaultPinDes "A28") )
+ (pad (padNum 25) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -60.96) (rotation 90.0) (defaultPinDes "A25") )
+ (pad (padNum 22) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -53.34) (rotation 90.0) (defaultPinDes "A22") )
+ (pad (padNum 19) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -45.72) (rotation 90.0) (defaultPinDes "A19") )
+ (pad (padNum 48) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -38.1) (rotation 90.0) (defaultPinDes "B16") )
+ (pad (padNum 45) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -30.48) (rotation 90.0) (defaultPinDes "B13") )
+ (pad (padNum 42) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -22.86) (rotation 90.0) (defaultPinDes "B10") )
+ (pad (padNum 39) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -15.24) (rotation 90.0) (defaultPinDes "B7") )
+ (pad (padNum 16) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -38.1) (rotation 90.0) (defaultPinDes "A16") )
+ (pad (padNum 13) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -30.48) (rotation 90.0) (defaultPinDes "A13") )
+ (pad (padNum 10) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -22.86) (rotation 90.0) (defaultPinDes "A10") )
+ (pad (padNum 7) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -15.24) (rotation 90.0) (defaultPinDes "A7") )
+ (pad (padNum 36) (padStyleRef "P:EX64Y64D36A") (pt -2.54 -7.62) (rotation 90.0) (defaultPinDes "B4") )
+ (pad (padNum 33) (padStyleRef "P:EX64Y64D36A") (pt -2.54 0.0) (rotation 90.0) (defaultPinDes "B1") )
+ (pad (padNum 4) (padStyleRef "P:EX64Y64D36A") (pt 0.0 -7.62) (rotation 90.0) (defaultPinDes "A4") )
+ (pad (padNum 1) (padStyleRef "P:SX64Y64D36A") (pt 0.0 0.0) (rotation 90.0) (defaultPinDes "A1") )
+ (pad (padNum 97) (padStyleRef "P:MHX160Y160D112A") (pt 2.54 5.08) (rotation 90.0) (defaultPinDes "Mounting1") )
+ (pad (padNum 98) (padStyleRef "P:MHX160Y160D112A") (pt 2.54 -83.82) (rotation 90.0) (defaultPinDes "Mounting2") )
+ )
+ (layerContents (layerNumRef 6)
+ (attr "Type" "" (pt 5.08 -93.98) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (pt 5.08 -86.36) (justify UpperCenter) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt -10.2 -3.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt 0.44107 -80.8683) (pt 2.84107 -80.8683) (width 0.3048) )
+ (line (pt 0.44107 2.1317) (pt 2.84107 2.1317) (width 0.3048) )
+ (line (pt 0.44107 7.6317) (pt 0.44107 2.1317) (width 0.3048) )
+ (line (pt 8.44107 7.6317) (pt 8.44107 4.3817) (width 0.3048) )
+ (line (pt 0.44107 -80.8683) (pt 0.44107 -86.3683) (width 0.3048) )
+ (line (pt 8.44107 -83.1183) (pt 8.44107 -86.3683) (width 0.3048) )
+ (line (pt 2.84107 2.1317) (pt 2.84107 -80.8683) (width 0.3048) )
+ (line (pt 6.134 7.62) (pt 6.134 -86.36) (width 0.3048) )
+ (line (pt 13.44107 -83.1183) (pt 13.44107 4.3817) (width 0.3048) )
+ (line (pt 13.44107 -83.1183) (pt 13.44107 4.3817) (width 0.3048) )
+ (line (pt 0.44107 -86.3683) (pt 8.44107 -86.3683) (width 0.3048) )
+ (line (pt 13.44107 4.3817) (pt 8.44107 4.3817) (width 0.3048) )
+ (line (pt 8.44107 7.6317) (pt 0.44107 7.6317) (width 0.3048) )
+ (line (pt 8.44107 -83.1183) (pt 13.44107 -83.1183) (width 0.3048) )
+ )
+ )
+ )
+ (patternDefExtended "2D522B_1"
+ (originalName "2D522B")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:EX16Y16D09") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 2) (padStyleRef "P:EX16Y16D09") (pt 7.62 0.0) (defaultPinDes "2") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.778 1.016) (pt 1.778 -1.016) (width 0.203) )
+ (line (pt 5.842 -1.016) (pt 5.842 1.016) (width 0.203) )
+ (pcbPoly
+ (pt 4.953 1.016)
+ (pt 4.953 -1.016)
+ (pt 5.842 -1.016)
+ (pt 5.842 1.016)
+ )
+ (line (pt 1.778 -1.016) (pt 5.842 -1.016) (width 0.203) )
+ (line (pt 5.842 1.016) (pt 1.778 1.016) (width 0.203) )
+ (attr "Type" "" (pt 3.556 0.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.683 2.032) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "TQFP-64(NET2272)_1"
+ (originalName "TQFP-64(NET2272)")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 16) (padStyleRef "R_W15H3") (pt 0.0 -7.5) (defaultPinDes "16") )
+ (pad (padNum 15) (padStyleRef "R_W15H3") (pt 0.0 -7.0) (defaultPinDes "15") )
+ (pad (padNum 14) (padStyleRef "R_W15H3") (pt 0.0 -6.5) (defaultPinDes "14") )
+ (pad (padNum 13) (padStyleRef "R_W15H3") (pt 0.0 -6.0) (defaultPinDes "13") )
+ (pad (padNum 12) (padStyleRef "R_W15H3") (pt 0.0 -5.5) (defaultPinDes "12") )
+ (pad (padNum 11) (padStyleRef "R_W15H3") (pt 0.0 -5.0) (defaultPinDes "11") )
+ (pad (padNum 10) (padStyleRef "R_W15H3") (pt 0.0 -4.5) (defaultPinDes "10") )
+ (pad (padNum 7) (padStyleRef "R_W15H3") (pt 0.0 -3.0) (defaultPinDes "7") )
+ (pad (padNum 9) (padStyleRef "R_W15H3") (pt 0.0 -4.0) (defaultPinDes "9") )
+ (pad (padNum 8) (padStyleRef "R_W15H3") (pt 0.0 -3.5) (defaultPinDes "8") )
+ (pad (padNum 4) (padStyleRef "R_W15H3") (pt 0.0 -1.5) (defaultPinDes "4") )
+ (pad (padNum 3) (padStyleRef "R_W15H3") (pt 0.0 -1.0) (defaultPinDes "3") )
+ (pad (padNum 2) (padStyleRef "R_W15H3") (pt 0.0 -0.5) (defaultPinDes "2") )
+ (pad (padNum 64) (padStyleRef "R_W15H3") (pt 2.25 2.25) (rotation 90.0) (defaultPinDes "64") )
+ (pad (padNum 63) (padStyleRef "R_W15H3") (pt 2.75 2.25) (rotation 90.0) (defaultPinDes "63") )
+ (pad (padNum 62) (padStyleRef "R_W15H3") (pt 3.25 2.25) (rotation 90.0) (defaultPinDes "62") )
+ (pad (padNum 61) (padStyleRef "R_W15H3") (pt 3.75 2.25) (rotation 90.0) (defaultPinDes "61") )
+ (pad (padNum 1) (padStyleRef "R_W20H3") (pt -0.25 0.0) (defaultPinDes "1") )
+ (pad (padNum 58) (padStyleRef "R_W15H3") (pt 5.25 2.25) (rotation 90.0) (defaultPinDes "58") )
+ (pad (padNum 55) (padStyleRef "R_W15H3") (pt 6.75 2.25) (rotation 90.0) (defaultPinDes "55") )
+ (pad (padNum 54) (padStyleRef "R_W15H3") (pt 7.25 2.25) (rotation 90.0) (defaultPinDes "54") )
+ (pad (padNum 53) (padStyleRef "R_W15H3") (pt 7.75 2.25) (rotation 90.0) (defaultPinDes "53") )
+ (pad (padNum 52) (padStyleRef "R_W15H3") (pt 8.25 2.25) (rotation 90.0) (defaultPinDes "52") )
+ (pad (padNum 51) (padStyleRef "R_W15H3") (pt 8.75 2.25) (rotation 90.0) (defaultPinDes "51") )
+ (pad (padNum 50) (padStyleRef "R_W15H3") (pt 9.25 2.25) (rotation 90.0) (defaultPinDes "50") )
+ (pad (padNum 49) (padStyleRef "R_W15H3") (pt 9.75 2.25) (rotation 90.0) (defaultPinDes "49") )
+ (pad (padNum 57) (padStyleRef "R_W15H3") (pt 5.75 2.25) (rotation 90.0) (defaultPinDes "57") )
+ (pad (padNum 56) (padStyleRef "R_W15H3") (pt 6.25 2.25) (rotation 90.0) (defaultPinDes "56") )
+ (pad (padNum 17) (padStyleRef "R_W15H3") (pt 2.25 -9.75) (rotation 90.0) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "R_W15H3") (pt 2.75 -9.75) (rotation 90.0) (defaultPinDes "18") )
+ (pad (padNum 19) (padStyleRef "R_W15H3") (pt 3.25 -9.75) (rotation 90.0) (defaultPinDes "19") )
+ (pad (padNum 20) (padStyleRef "R_W15H3") (pt 3.75 -9.75) (rotation 90.0) (defaultPinDes "20") )
+ (pad (padNum 6) (padStyleRef "R_W15H3") (pt 0.0 -2.5) (defaultPinDes "6") )
+ (pad (padNum 5) (padStyleRef "R_W15H3") (pt 0.0 -2.0) (defaultPinDes "5") )
+ (pad (padNum 23) (padStyleRef "R_W15H3") (pt 5.25 -9.75) (rotation 90.0) (defaultPinDes "23") )
+ (pad (padNum 26) (padStyleRef "R_W15H3") (pt 6.75 -9.75) (rotation 90.0) (defaultPinDes "26") )
+ (pad (padNum 27) (padStyleRef "R_W15H3") (pt 7.25 -9.75) (rotation 90.0) (defaultPinDes "27") )
+ (pad (padNum 28) (padStyleRef "R_W15H3") (pt 7.75 -9.75) (rotation 90.0) (defaultPinDes "28") )
+ (pad (padNum 29) (padStyleRef "R_W15H3") (pt 8.25 -9.75) (rotation 90.0) (defaultPinDes "29") )
+ (pad (padNum 30) (padStyleRef "R_W15H3") (pt 8.75 -9.75) (rotation 90.0) (defaultPinDes "30") )
+ (pad (padNum 31) (padStyleRef "R_W15H3") (pt 9.25 -9.75) (rotation 90.0) (defaultPinDes "31") )
+ (pad (padNum 32) (padStyleRef "R_W15H3") (pt 9.75 -9.75) (rotation 90.0) (defaultPinDes "32") )
+ (pad (padNum 24) (padStyleRef "R_W15H3") (pt 5.75 -9.75) (rotation 90.0) (defaultPinDes "24") )
+ (pad (padNum 25) (padStyleRef "R_W15H3") (pt 6.25 -9.75) (rotation 90.0) (defaultPinDes "25") )
+ (pad (padNum 33) (padStyleRef "R_W15H3") (pt 12.0 -7.5) (defaultPinDes "33") )
+ (pad (padNum 34) (padStyleRef "R_W15H3") (pt 12.0 -7.0) (defaultPinDes "34") )
+ (pad (padNum 35) (padStyleRef "R_W15H3") (pt 12.0 -6.5) (defaultPinDes "35") )
+ (pad (padNum 36) (padStyleRef "R_W15H3") (pt 12.0 -6.0) (defaultPinDes "36") )
+ (pad (padNum 37) (padStyleRef "R_W15H3") (pt 12.0 -5.5) (defaultPinDes "37") )
+ (pad (padNum 38) (padStyleRef "R_W15H3") (pt 12.0 -5.0) (defaultPinDes "38") )
+ (pad (padNum 39) (padStyleRef "R_W15H3") (pt 12.0 -4.5) (defaultPinDes "39") )
+ (pad (padNum 42) (padStyleRef "R_W15H3") (pt 12.0 -3.0) (defaultPinDes "42") )
+ (pad (padNum 40) (padStyleRef "R_W15H3") (pt 12.0 -4.0) (defaultPinDes "40") )
+ (pad (padNum 41) (padStyleRef "R_W15H3") (pt 12.0 -3.5) (defaultPinDes "41") )
+ (pad (padNum 60) (padStyleRef "R_W15H3") (pt 4.25 2.25) (rotation 90.0) (defaultPinDes "60") )
+ (pad (padNum 59) (padStyleRef "R_W15H3") (pt 4.75 2.25) (rotation 90.0) (defaultPinDes "59") )
+ (pad (padNum 45) (padStyleRef "R_W15H3") (pt 12.0 -1.5) (defaultPinDes "45") )
+ (pad (padNum 46) (padStyleRef "R_W15H3") (pt 12.0 -1.0) (defaultPinDes "46") )
+ (pad (padNum 47) (padStyleRef "R_W15H3") (pt 12.0 -0.5) (defaultPinDes "47") )
+ (pad (padNum 48) (padStyleRef "R_W15H3") (pt 12.0 0.0) (defaultPinDes "48") )
+ (pad (padNum 21) (padStyleRef "R_W15H3") (pt 4.25 -9.75) (rotation 90.0) (defaultPinDes "21") )
+ (pad (padNum 22) (padStyleRef "R_W15H3") (pt 4.75 -9.75) (rotation 90.0) (defaultPinDes "22") )
+ (pad (padNum 43) (padStyleRef "R_W15H3") (pt 12.0 -2.5) (defaultPinDes "43") )
+ (pad (padNum 44) (padStyleRef "R_W15H3") (pt 12.0 -2.0) (defaultPinDes "44") )
+ (gluepoint (pt 6.0 -3.75) )
+ (pickpoint (pt 6.0 -3.75) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 0.0 2.25) (pt 0.0 0.5) (width 0.254) )
+ (line (pt 0.0 2.25) (pt 1.75 2.25) (width 0.254) )
+ (line (pt 0.0 -9.75) (pt 0.0 -8.0) (width 0.254) )
+ (line (pt 0.0 -9.75) (pt 1.75 -9.75) (width 0.254) )
+ (line (pt 12.0 2.25) (pt 12.0 0.5) (width 0.254) )
+ (line (pt 12.0 2.25) (pt 10.25 2.25) (width 0.254) )
+ (line (pt 12.0 -9.75) (pt 12.0 -8.0) (width 0.254) )
+ (line (pt 12.0 -9.75) (pt 10.25 -9.75) (width 0.254) )
+ (attr "Type" "" (pt 7.2009 -7.2009) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 5.3 4.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "C+7343_1"
+ (originalName "C+7343")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:SX120Y120D0T") (pt 0.0 0.0) (rotation 180.0) (defaultPinDes "Plus") )
+ (pad (padNum 2) (padStyleRef "P:SX120Y120D0T") (pt 6.985 0.0) (rotation 180.0) (defaultPinDes "Minus") )
+ )
+ (layerContents (layerNumRef 1)
+ (polyKeepOut
+ (pcbPoly
+ (pt 1.778 -1.524)
+ (pt 5.08 -1.524)
+ (pt 5.08 1.524)
+ (pt 1.778 1.524)
+ )
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -2.0574 -3.9116) (pt -2.0574 -2.0828) (width 0.254) )
+ (line (pt -1.143 -2.9972) (pt -2.9718 -2.9972) (width 0.254) )
+ (line (pt -0.254 -2.159) (pt -0.254 2.159) (width 0.254) )
+ (line (pt 7.239 2.159) (pt 7.239 -2.159) (width 0.254) )
+ (line (pt 7.239 -2.159) (pt -0.254 -2.159) (width 0.254) )
+ (line (pt -0.127 2.159) (pt 7.239 2.159) (width 0.254) )
+ (attr "Type" "" (pt 3.302 -3.302) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 3.302 3.556) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SMB_JWHY_1"
+ (originalName "SMB_JWHY")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 3) (padStyleRef "P:OV20D15") (pt -2.54 -2.54) (defaultPinDes "3") )
+ (pad (padNum 2) (padStyleRef "P:OV20D15") (pt -2.54 2.54) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OV18D12") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 4) (padStyleRef "P:OV20D15") (pt 2.54 -2.54) (defaultPinDes "4") )
+ (pad (padNum 5) (padStyleRef "P:OV20D15") (pt 2.54 2.54) (defaultPinDes "5") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -4.445 -4.445) (pt -4.445 4.445) (width 0.254) )
+ (line (pt 4.445 4.445) (pt 4.445 -4.445) (width 0.254) )
+ (line (pt 4.445 -4.445) (pt -4.445 -4.445) (width 0.254) )
+ (line (pt -4.445 4.445) (pt 4.445 4.445) (width 0.254) )
+ (attr "RefDes" "" (pt 0.0 5.08) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -11.176 -1.778) (pt -10.668 -1.778) (width 0.254) )
+ (line (pt -6.096 -3.556) (pt -6.604 -3.556) (width 0.254) )
+ (line (pt -6.858 -3.302) (pt -6.604 -3.556) (width 0.254) )
+ (line (pt -6.096 -3.556) (pt -5.842 -3.302) (width 0.254) )
+ (line (pt -6.858 -1.016) (pt -6.604 -1.524) (width 0.127) )
+ (line (pt -6.096 -1.524) (pt -5.842 -1.016) (width 0.127) )
+ (line (pt -6.604 -1.524) (pt -6.096 -1.524) (width 0.127) )
+ (line (pt -5.842 -2.032) (pt -6.096 -1.524) (width 0.127) )
+ (line (pt -6.604 -1.524) (pt -6.858 -2.032) (width 0.127) )
+ (line (pt -6.096 -1.524) (pt -6.604 -1.524) (width 0.127) )
+ (line (pt -5.334 -4.064) (pt -5.842 -4.064) (width 0.254) )
+ (line (pt -5.842 -4.064) (pt -5.842 -3.302) (width 0.254) )
+ (line (pt -8.128 -2.54) (pt -6.858 -2.54) (width 0.254) )
+ (line (pt -10.668 -2.032) (pt -8.128 -2.032) (width 0.254) )
+ (line (pt -11.176 1.778) (pt -10.668 1.778) (width 0.254) )
+ (line (pt -6.604 3.556) (pt -6.096 3.556) (width 0.254) )
+ (line (pt -6.604 3.556) (pt -6.858 3.302) (width 0.254) )
+ (line (pt -6.096 3.556) (pt -5.842 3.302) (width 0.254) )
+ (line (pt -6.858 2.032) (pt -6.604 1.524) (width 0.127) )
+ (line (pt -6.096 1.524) (pt -5.842 2.032) (width 0.127) )
+ (line (pt -6.604 1.524) (pt -6.096 1.524) (width 0.127) )
+ (line (pt -5.842 1.016) (pt -6.096 1.524) (width 0.127) )
+ (line (pt -6.604 1.524) (pt -6.858 1.016) (width 0.127) )
+ (line (pt -6.096 1.524) (pt -6.604 1.524) (width 0.127) )
+ (line (pt -5.842 3.302) (pt -5.842 4.064) (width 0.254) )
+ (line (pt -5.842 4.064) (pt -5.334 4.064) (width 0.254) )
+ (line (pt -8.128 2.54) (pt -6.858 2.54) (width 0.254) )
+ (line (pt -8.128 2.032) (pt -10.668 2.032) (width 0.254) )
+ (line (pt -14.732 2.032) (pt -14.732 -2.032) (width 0.254) )
+ (line (pt -10.668 2.032) (pt -10.668 -2.032) (width 0.254) )
+ (line (pt -11.176 -2.032) (pt -11.176 2.032) (width 0.254) )
+ (line (pt -6.858 0.0) (pt -6.858 3.302) (width 0.254) )
+ (line (pt -6.858 -2.032) (pt -6.858 2.032) (width 0.254) )
+ (line (pt -6.858 -3.302) (pt -6.858 0.0) (width 0.254) )
+ (line (pt -5.842 3.302) (pt -5.842 -3.302) (width 0.254) )
+ (line (pt -8.128 2.54) (pt -8.128 -2.54) (width 0.254) )
+ (line (pt -5.334 4.064) (pt -5.334 -4.064) (width 0.254) )
+ (line (pt -14.732 -2.032) (pt -11.176 -2.032) (width 0.254) )
+ (line (pt -5.334 -2.54) (pt -4.572 -2.54) (width 0.254) )
+ (line (pt -11.176 2.032) (pt -14.732 2.032) (width 0.254) )
+ (line (pt -5.334 2.54) (pt -4.572 2.54) (width 0.254) )
+ (attr "Type" "" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "B-169_1"
+ (originalName "B-169")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 91) (padStyleRef "P:OV06D0") (pt -8.0 -1.0) (defaultPinDes "K1") )
+ (pad (padNum 102) (padStyleRef "P:OV06D0") (pt -8.0 -2.0) (defaultPinDes "L1") )
+ (pad (padNum 113) (padStyleRef "P:OV06D0") (pt -8.0 -3.0) (defaultPinDes "M1") )
+ (pad (padNum 124) (padStyleRef "P:OV06D0") (pt -8.0 -4.0) (defaultPinDes "N1") )
+ (pad (padNum 128) (padStyleRef "P:OV06D0") (pt -8.0 -5.0) (defaultPinDes "P1") )
+ (pad (padNum 132) (padStyleRef "P:OV06D0") (pt -8.0 -6.0) (defaultPinDes "R1") )
+ (pad (padNum 136) (padStyleRef "P:OV06D0") (pt -8.0 -7.0) (defaultPinDes "T1") )
+ (pad (padNum 35) (padStyleRef "P:OV06D0") (pt -8.0 6.0) (defaultPinDes "C1") )
+ (pad (padNum 39) (padStyleRef "P:OV06D0") (pt -8.0 5.0) (defaultPinDes "D1") )
+ (pad (padNum 43) (padStyleRef "P:OV06D0") (pt -8.0 4.0) (defaultPinDes "E1") )
+ (pad (padNum 47) (padStyleRef "P:OV06D0") (pt -8.0 3.0) (defaultPinDes "F1") )
+ (pad (padNum 58) (padStyleRef "P:OV06D0") (pt -8.0 2.0) (defaultPinDes "G1") )
+ (pad (padNum 69) (padStyleRef "P:OV06D0") (pt -8.0 1.0) (defaultPinDes "H1") )
+ (pad (padNum 18) (padStyleRef "P:OV06D0") (pt -8.0 7.0) (defaultPinDes "B1") )
+ (pad (padNum 93) (padStyleRef "P:OV06D0") (pt -3.0 -1.0) (defaultPinDes "K6") )
+ (pad (padNum 94) (padStyleRef "P:OV06D0") (pt -2.0 -1.0) (defaultPinDes "K7") )
+ (pad (padNum 104) (padStyleRef "P:OV06D0") (pt -3.0 -2.0) (defaultPinDes "L6") )
+ (pad (padNum 105) (padStyleRef "P:OV06D0") (pt -2.0 -2.0) (defaultPinDes "L7") )
+ (pad (padNum 115) (padStyleRef "P:OV06D0") (pt -3.0 -3.0) (defaultPinDes "M6") )
+ (pad (padNum 116) (padStyleRef "P:OV06D0") (pt -2.0 -3.0) (defaultPinDes "M7") )
+ (pad (padNum 95) (padStyleRef "P:OV06D0") (pt -1.0 -1.0) (defaultPinDes "K8") )
+ (pad (padNum 106) (padStyleRef "P:OV06D0") (pt -1.0 -2.0) (defaultPinDes "L8") )
+ (pad (padNum 117) (padStyleRef "P:OV06D0") (pt -1.0 -3.0) (defaultPinDes "M8") )
+ (pad (padNum 138) (padStyleRef "P:OV06D0") (pt -6.0 -7.0) (defaultPinDes "T3") )
+ (pad (padNum 139) (padStyleRef "P:OV06D0") (pt -5.0 -7.0) (defaultPinDes "T4") )
+ (pad (padNum 140) (padStyleRef "P:OV06D0") (pt -4.0 -7.0) (defaultPinDes "T5") )
+ (pad (padNum 141) (padStyleRef "P:OV06D0") (pt -3.0 -7.0) (defaultPinDes "T6") )
+ (pad (padNum 142) (padStyleRef "P:OV06D0") (pt -2.0 -7.0) (defaultPinDes "T7") )
+ (pad (padNum 143) (padStyleRef "P:OV06D0") (pt -1.0 -7.0) (defaultPinDes "T8") )
+ (pad (padNum 96) (padStyleRef "P:OV06D0") (pt 0.0 -1.0) (defaultPinDes "K9") )
+ (pad (padNum 107) (padStyleRef "P:OV06D0") (pt 0.0 -2.0) (defaultPinDes "L9") )
+ (pad (padNum 118) (padStyleRef "P:OV06D0") (pt 0.0 -3.0) (defaultPinDes "M9") )
+ (pad (padNum 144) (padStyleRef "P:OV06D0") (pt 0.0 -7.0) (defaultPinDes "T9") )
+ (pad (padNum 49) (padStyleRef "P:OV06D0") (pt -3.0 3.0) (defaultPinDes "F6") )
+ (pad (padNum 50) (padStyleRef "P:OV06D0") (pt -2.0 3.0) (defaultPinDes "F7") )
+ (pad (padNum 60) (padStyleRef "P:OV06D0") (pt -3.0 2.0) (defaultPinDes "G6") )
+ (pad (padNum 61) (padStyleRef "P:OV06D0") (pt -2.0 2.0) (defaultPinDes "G7") )
+ (pad (padNum 71) (padStyleRef "P:OV06D0") (pt -3.0 1.0) (defaultPinDes "H6") )
+ (pad (padNum 72) (padStyleRef "P:OV06D0") (pt -2.0 1.0) (defaultPinDes "H7") )
+ (pad (padNum 20) (padStyleRef "P:OV06D0") (pt -6.0 7.0) (defaultPinDes "B3") )
+ (pad (padNum 21) (padStyleRef "P:OV06D0") (pt -5.0 7.0) (defaultPinDes "B4") )
+ (pad (padNum 22) (padStyleRef "P:OV06D0") (pt -4.0 7.0) (defaultPinDes "B5") )
+ (pad (padNum 23) (padStyleRef "P:OV06D0") (pt -3.0 7.0) (defaultPinDes "B6") )
+ (pad (padNum 24) (padStyleRef "P:OV06D0") (pt -2.0 7.0) (defaultPinDes "B7") )
+ (pad (padNum 51) (padStyleRef "P:OV06D0") (pt -1.0 3.0) (defaultPinDes "F8") )
+ (pad (padNum 62) (padStyleRef "P:OV06D0") (pt -1.0 2.0) (defaultPinDes "G8") )
+ (pad (padNum 73) (padStyleRef "P:OV06D0") (pt -1.0 1.0) (defaultPinDes "H8") )
+ (pad (padNum 25) (padStyleRef "P:OV06D0") (pt -1.0 7.0) (defaultPinDes "B8") )
+ (pad (padNum 52) (padStyleRef "P:OV06D0") (pt 0.0 3.0) (defaultPinDes "F9") )
+ (pad (padNum 63) (padStyleRef "P:OV06D0") (pt 0.0 2.0) (defaultPinDes "G9") )
+ (pad (padNum 74) (padStyleRef "P:OV06D0") (pt 0.0 1.0) (defaultPinDes "H9") )
+ (pad (padNum 26) (padStyleRef "P:OV06D0") (pt 0.0 7.0) (defaultPinDes "B9") )
+ (pad (padNum 97) (padStyleRef "P:OV06D0") (pt 1.0 -1.0) (defaultPinDes "K10") )
+ (pad (padNum 98) (padStyleRef "P:OV06D0") (pt 2.0 -1.0) (defaultPinDes "K11") )
+ (pad (padNum 99) (padStyleRef "P:OV06D0") (pt 3.0 -1.0) (defaultPinDes "K12") )
+ (pad (padNum 108) (padStyleRef "P:OV06D0") (pt 1.0 -2.0) (defaultPinDes "L10") )
+ (pad (padNum 109) (padStyleRef "P:OV06D0") (pt 2.0 -2.0) (defaultPinDes "L11") )
+ (pad (padNum 110) (padStyleRef "P:OV06D0") (pt 3.0 -2.0) (defaultPinDes "L12") )
+ (pad (padNum 119) (padStyleRef "P:OV06D0") (pt 1.0 -3.0) (defaultPinDes "M10") )
+ (pad (padNum 120) (padStyleRef "P:OV06D0") (pt 2.0 -3.0) (defaultPinDes "M11") )
+ (pad (padNum 121) (padStyleRef "P:OV06D0") (pt 3.0 -3.0) (defaultPinDes "M12") )
+ (pad (padNum 145) (padStyleRef "P:OV06D0") (pt 1.0 -7.0) (defaultPinDes "T10") )
+ (pad (padNum 146) (padStyleRef "P:OV06D0") (pt 2.0 -7.0) (defaultPinDes "T11") )
+ (pad (padNum 147) (padStyleRef "P:OV06D0") (pt 3.0 -7.0) (defaultPinDes "T12") )
+ (pad (padNum 148) (padStyleRef "P:OV06D0") (pt 4.0 -7.0) (defaultPinDes "T13") )
+ (pad (padNum 149) (padStyleRef "P:OV06D0") (pt 5.0 -7.0) (defaultPinDes "T14") )
+ (pad (padNum 150) (padStyleRef "P:OV06D0") (pt 6.0 -7.0) (defaultPinDes "T15") )
+ (pad (padNum 100) (padStyleRef "P:OV06D0") (pt 7.0 -1.0) (defaultPinDes "K16") )
+ (pad (padNum 111) (padStyleRef "P:OV06D0") (pt 7.0 -2.0) (defaultPinDes "L16") )
+ (pad (padNum 122) (padStyleRef "P:OV06D0") (pt 7.0 -3.0) (defaultPinDes "M16") )
+ (pad (padNum 126) (padStyleRef "P:OV06D0") (pt 7.0 -4.0) (defaultPinDes "N16") )
+ (pad (padNum 130) (padStyleRef "P:OV06D0") (pt 7.0 -5.0) (defaultPinDes "P16") )
+ (pad (padNum 134) (padStyleRef "P:OV06D0") (pt 7.0 -6.0) (defaultPinDes "R16") )
+ (pad (padNum 151) (padStyleRef "P:OV06D0") (pt 7.0 -7.0) (defaultPinDes "T16") )
+ (pad (padNum 53) (padStyleRef "P:OV06D0") (pt 1.0 3.0) (defaultPinDes "F10") )
+ (pad (padNum 54) (padStyleRef "P:OV06D0") (pt 2.0 3.0) (defaultPinDes "F11") )
+ (pad (padNum 55) (padStyleRef "P:OV06D0") (pt 3.0 3.0) (defaultPinDes "F12") )
+ (pad (padNum 64) (padStyleRef "P:OV06D0") (pt 1.0 2.0) (defaultPinDes "G10") )
+ (pad (padNum 65) (padStyleRef "P:OV06D0") (pt 2.0 2.0) (defaultPinDes "G11") )
+ (pad (padNum 66) (padStyleRef "P:OV06D0") (pt 3.0 2.0) (defaultPinDes "G12") )
+ (pad (padNum 75) (padStyleRef "P:OV06D0") (pt 1.0 1.0) (defaultPinDes "H10") )
+ (pad (padNum 76) (padStyleRef "P:OV06D0") (pt 2.0 1.0) (defaultPinDes "H11") )
+ (pad (padNum 77) (padStyleRef "P:OV06D0") (pt 3.0 1.0) (defaultPinDes "H12") )
+ (pad (padNum 27) (padStyleRef "P:OV06D0") (pt 1.0 7.0) (defaultPinDes "B10") )
+ (pad (padNum 28) (padStyleRef "P:OV06D0") (pt 2.0 7.0) (defaultPinDes "B11") )
+ (pad (padNum 29) (padStyleRef "P:OV06D0") (pt 3.0 7.0) (defaultPinDes "B12") )
+ (pad (padNum 30) (padStyleRef "P:OV06D0") (pt 4.0 7.0) (defaultPinDes "B13") )
+ (pad (padNum 31) (padStyleRef "P:OV06D0") (pt 5.0 7.0) (defaultPinDes "B14") )
+ (pad (padNum 32) (padStyleRef "P:OV06D0") (pt 6.0 7.0) (defaultPinDes "B15") )
+ (pad (padNum 37) (padStyleRef "P:OV06D0") (pt 7.0 6.0) (defaultPinDes "C16") )
+ (pad (padNum 41) (padStyleRef "P:OV06D0") (pt 7.0 5.0) (defaultPinDes "D16") )
+ (pad (padNum 45) (padStyleRef "P:OV06D0") (pt 7.0 4.0) (defaultPinDes "E16") )
+ (pad (padNum 56) (padStyleRef "P:OV06D0") (pt 7.0 3.0) (defaultPinDes "F16") )
+ (pad (padNum 67) (padStyleRef "P:OV06D0") (pt 7.0 2.0) (defaultPinDes "G16") )
+ (pad (padNum 78) (padStyleRef "P:OV06D0") (pt 7.0 1.0) (defaultPinDes "H16") )
+ (pad (padNum 33) (padStyleRef "P:OV06D0") (pt 7.0 7.0) (defaultPinDes "B16") )
+ (pad (padNum 153) (padStyleRef "P:OV06D0") (pt -8.0 -8.0) (defaultPinDes "U1") )
+ (pad (padNum 80) (padStyleRef "P:OV06D0") (pt -8.0 0.0) (defaultPinDes "J1") )
+ (pad (padNum 1) (padStyleRef "P:OV06D0") (pt -8.0 8.0) (defaultPinDes "A1") )
+ (pad (padNum 155) (padStyleRef "P:OV06D0") (pt -6.0 -8.0) (defaultPinDes "U3") )
+ (pad (padNum 156) (padStyleRef "P:OV06D0") (pt -5.0 -8.0) (defaultPinDes "U4") )
+ (pad (padNum 157) (padStyleRef "P:OV06D0") (pt -4.0 -8.0) (defaultPinDes "U5") )
+ (pad (padNum 158) (padStyleRef "P:OV06D0") (pt -3.0 -8.0) (defaultPinDes "U6") )
+ (pad (padNum 159) (padStyleRef "P:OV06D0") (pt -2.0 -8.0) (defaultPinDes "U7") )
+ (pad (padNum 160) (padStyleRef "P:OV06D0") (pt -1.0 -8.0) (defaultPinDes "U8") )
+ (pad (padNum 82) (padStyleRef "P:OV06D0") (pt -3.0 0.0) (defaultPinDes "J6") )
+ (pad (padNum 83) (padStyleRef "P:OV06D0") (pt -2.0 0.0) (defaultPinDes "J7") )
+ (pad (padNum 84) (padStyleRef "P:OV06D0") (pt -1.0 0.0) (defaultPinDes "J8") )
+ (pad (padNum 161) (padStyleRef "P:OV06D0") (pt 0.0 -8.0) (defaultPinDes "U9") )
+ (pad (padNum 85) (padStyleRef "P:OV06D0") (pt 0.0 0.0) (defaultPinDes "J9") )
+ (pad (padNum 3) (padStyleRef "P:OV06D0") (pt -6.0 8.0) (defaultPinDes "A3") )
+ (pad (padNum 4) (padStyleRef "P:OV06D0") (pt -5.0 8.0) (defaultPinDes "A4") )
+ (pad (padNum 5) (padStyleRef "P:OV06D0") (pt -4.0 8.0) (defaultPinDes "A5") )
+ (pad (padNum 6) (padStyleRef "P:OV06D0") (pt -3.0 8.0) (defaultPinDes "A6") )
+ (pad (padNum 7) (padStyleRef "P:OV06D0") (pt -2.0 8.0) (defaultPinDes "A7") )
+ (pad (padNum 8) (padStyleRef "P:OV06D0") (pt -1.0 8.0) (defaultPinDes "A8") )
+ (pad (padNum 9) (padStyleRef "P:OV06D0") (pt 0.0 8.0) (defaultPinDes "A9") )
+ (pad (padNum 162) (padStyleRef "P:OV06D0") (pt 1.0 -8.0) (defaultPinDes "U10") )
+ (pad (padNum 163) (padStyleRef "P:OV06D0") (pt 2.0 -8.0) (defaultPinDes "U11") )
+ (pad (padNum 164) (padStyleRef "P:OV06D0") (pt 3.0 -8.0) (defaultPinDes "U12") )
+ (pad (padNum 165) (padStyleRef "P:OV06D0") (pt 4.0 -8.0) (defaultPinDes "U13") )
+ (pad (padNum 166) (padStyleRef "P:OV06D0") (pt 5.0 -8.0) (defaultPinDes "U14") )
+ (pad (padNum 167) (padStyleRef "P:OV06D0") (pt 6.0 -8.0) (defaultPinDes "U15") )
+ (pad (padNum 86) (padStyleRef "P:OV06D0") (pt 1.0 0.0) (defaultPinDes "J10") )
+ (pad (padNum 87) (padStyleRef "P:OV06D0") (pt 2.0 0.0) (defaultPinDes "J11") )
+ (pad (padNum 88) (padStyleRef "P:OV06D0") (pt 3.0 0.0) (defaultPinDes "J12") )
+ (pad (padNum 168) (padStyleRef "P:OV06D0") (pt 7.0 -8.0) (defaultPinDes "U16") )
+ (pad (padNum 89) (padStyleRef "P:OV06D0") (pt 7.0 0.0) (defaultPinDes "J16") )
+ (pad (padNum 10) (padStyleRef "P:OV06D0") (pt 1.0 8.0) (defaultPinDes "A10") )
+ (pad (padNum 11) (padStyleRef "P:OV06D0") (pt 2.0 8.0) (defaultPinDes "A11") )
+ (pad (padNum 12) (padStyleRef "P:OV06D0") (pt 3.0 8.0) (defaultPinDes "A12") )
+ (pad (padNum 13) (padStyleRef "P:OV06D0") (pt 4.0 8.0) (defaultPinDes "A13") )
+ (pad (padNum 14) (padStyleRef "P:OV06D0") (pt 5.0 8.0) (defaultPinDes "A14") )
+ (pad (padNum 15) (padStyleRef "P:OV06D0") (pt 6.0 8.0) (defaultPinDes "A15") )
+ (pad (padNum 16) (padStyleRef "P:OV06D0") (pt 7.0 8.0) (defaultPinDes "A16") )
+ (pad (padNum 92) (padStyleRef "P:OV06D0") (pt -7.0 -1.0) (defaultPinDes "K2") )
+ (pad (padNum 103) (padStyleRef "P:OV06D0") (pt -7.0 -2.0) (defaultPinDes "L2") )
+ (pad (padNum 114) (padStyleRef "P:OV06D0") (pt -7.0 -3.0) (defaultPinDes "M2") )
+ (pad (padNum 125) (padStyleRef "P:OV06D0") (pt -7.0 -4.0) (defaultPinDes "N2") )
+ (pad (padNum 129) (padStyleRef "P:OV06D0") (pt -7.0 -5.0) (defaultPinDes "P2") )
+ (pad (padNum 133) (padStyleRef "P:OV06D0") (pt -7.0 -6.0) (defaultPinDes "R2") )
+ (pad (padNum 137) (padStyleRef "P:OV06D0") (pt -7.0 -7.0) (defaultPinDes "T2") )
+ (pad (padNum 36) (padStyleRef "P:OV06D0") (pt -7.0 6.0) (defaultPinDes "C2") )
+ (pad (padNum 40) (padStyleRef "P:OV06D0") (pt -7.0 5.0) (defaultPinDes "D2") )
+ (pad (padNum 44) (padStyleRef "P:OV06D0") (pt -7.0 4.0) (defaultPinDes "E2") )
+ (pad (padNum 48) (padStyleRef "P:OV06D0") (pt -7.0 3.0) (defaultPinDes "F2") )
+ (pad (padNum 59) (padStyleRef "P:OV06D0") (pt -7.0 2.0) (defaultPinDes "G2") )
+ (pad (padNum 70) (padStyleRef "P:OV06D0") (pt -7.0 1.0) (defaultPinDes "H2") )
+ (pad (padNum 19) (padStyleRef "P:OV06D0") (pt -7.0 7.0) (defaultPinDes "B2") )
+ (pad (padNum 101) (padStyleRef "P:OV06D0") (pt 8.0 -1.0) (defaultPinDes "K17") )
+ (pad (padNum 112) (padStyleRef "P:OV06D0") (pt 8.0 -2.0) (defaultPinDes "L17") )
+ (pad (padNum 123) (padStyleRef "P:OV06D0") (pt 8.0 -3.0) (defaultPinDes "M17") )
+ (pad (padNum 127) (padStyleRef "P:OV06D0") (pt 8.0 -4.0) (defaultPinDes "N17") )
+ (pad (padNum 131) (padStyleRef "P:OV06D0") (pt 8.0 -5.0) (defaultPinDes "P17") )
+ (pad (padNum 135) (padStyleRef "P:OV06D0") (pt 8.0 -6.0) (defaultPinDes "R17") )
+ (pad (padNum 152) (padStyleRef "P:OV06D0") (pt 8.0 -7.0) (defaultPinDes "T17") )
+ (pad (padNum 38) (padStyleRef "P:OV06D0") (pt 8.0 6.0) (defaultPinDes "C17") )
+ (pad (padNum 42) (padStyleRef "P:OV06D0") (pt 8.0 5.0) (defaultPinDes "D17") )
+ (pad (padNum 46) (padStyleRef "P:OV06D0") (pt 8.0 4.0) (defaultPinDes "E17") )
+ (pad (padNum 57) (padStyleRef "P:OV06D0") (pt 8.0 3.0) (defaultPinDes "F17") )
+ (pad (padNum 68) (padStyleRef "P:OV06D0") (pt 8.0 2.0) (defaultPinDes "G17") )
+ (pad (padNum 79) (padStyleRef "P:OV06D0") (pt 8.0 1.0) (defaultPinDes "H17") )
+ (pad (padNum 34) (padStyleRef "P:OV06D0") (pt 8.0 7.0) (defaultPinDes "B17") )
+ (pad (padNum 154) (padStyleRef "P:OV06D0") (pt -7.0 -8.0) (defaultPinDes "U2") )
+ (pad (padNum 81) (padStyleRef "P:OV06D0") (pt -7.0 0.0) (defaultPinDes "J2") )
+ (pad (padNum 2) (padStyleRef "P:OV06D0") (pt -7.0 8.0) (defaultPinDes "A2") )
+ (pad (padNum 169) (padStyleRef "P:OV06D0") (pt 8.0 -8.0) (defaultPinDes "U17") )
+ (pad (padNum 90) (padStyleRef "P:OV06D0") (pt 8.0 0.0) (defaultPinDes "J17") )
+ (pad (padNum 17) (padStyleRef "P:OV06D0") (pt 8.0 8.0) (defaultPinDes "A17") )
+ (gluepoint (pt 0.0 0.0) )
+ (pickpoint (pt 0.0 0.0) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -9.5 -9.0) (pt -9.0 -9.5) (width 0.203) )
+ (triplePointArc (pt -10.5 10.5) (pt -11.0 10.5) (pt -11.0 10.5) (width 0.203) )
+ (line (pt 9.0 -9.5) (pt 9.5 -9.0) (width 0.203) )
+ (line (pt 9.5 9.0) (pt 9.0 9.5) (width 0.203) )
+ (line (pt -9.5 9.5) (pt -9.5 -9.0) (width 0.203) )
+ (line (pt 9.5 -9.0) (pt 9.5 9.0) (width 0.203) )
+ (line (pt -9.0 -9.5) (pt 9.0 -9.5) (width 0.203) )
+ (line (pt 9.0 9.5) (pt -9.5 9.5) (width 0.203) )
+ (attr "Type" "" (pt -3.0 -11.5) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt -10.7 0.1) (rotation 90.0) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -12.5 12.5) (pt -12.5 -12.5) (width 0.203) )
+ (line (pt 12.5 -12.5) (pt 12.5 12.5) (width 0.203) )
+ (line (pt 12.5 -12.5) (pt -12.5 -12.5) (width 0.203) )
+ (line (pt -12.5 12.5) (pt 12.5 12.5) (width 0.203) )
+ )
+ )
+ )
+ (patternDefExtended "BH10R_1"
+ (originalName "BH10R")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 1) (padStyleRef "P:SX80Y80D40A [2]") (pt 0.0 0.0) (rotation 270.0) (defaultPinDes "P1") )
+ (pad (padNum 2) (padStyleRef "P:EX80Y80D40A [1]") (pt -2.54 0.0) (rotation 270.0) (defaultPinDes "P2") )
+ (pad (padNum 3) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 2.54) (rotation 270.0) (defaultPinDes "P3") )
+ (pad (padNum 4) (padStyleRef "P:EX80Y80D40A [1]") (pt -2.54 2.54) (rotation 270.0) (defaultPinDes "P4") )
+ (pad (padNum 7) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 7.62) (rotation 270.0) (defaultPinDes "P7") )
+ (pad (padNum 8) (padStyleRef "P:EX80Y80D40A [1]") (pt -2.54 7.62) (rotation 270.0) (defaultPinDes "P8") )
+ (pad (padNum 9) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 10.16) (rotation 270.0) (defaultPinDes "P9") )
+ (pad (padNum 10) (padStyleRef "P:EX80Y80D40A [1]") (pt -2.54 10.16) (rotation 270.0) (defaultPinDes "P10") )
+ (pad (padNum 5) (padStyleRef "P:EX80Y80D40A [1]") (pt 0.0 5.08) (rotation 270.0) (defaultPinDes "P5") )
+ (pad (padNum 6) (padStyleRef "P:EX80Y80D40A [1]") (pt -2.54 5.08) (rotation 270.0) (defaultPinDes "P6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 0.0 -1.905) (pt -4.445 -1.905) (width 0.254) )
+ (line (pt -4.445 12.065) (pt 0.0 12.065) (width 0.254) )
+ (line (pt -6.985 2.54) (pt -6.985 7.62) (width 0.254) )
+ (line (pt -13.335 15.24) (pt -13.335 -5.08) (width 0.254) )
+ (line (pt 0.0 12.065) (pt 0.0 -1.905) (width 0.254) )
+ (line (pt -4.445 15.24) (pt -4.445 -5.08) (width 0.254) )
+ (line (pt -13.335 -5.08) (pt -4.445 -5.08) (width 0.254) )
+ (line (pt -13.335 0.635) (pt -11.43 0.0) (width 0.254) )
+ (line (pt -11.43 0.0) (pt -13.335 -0.635) (width 0.254) )
+ (line (pt -13.335 2.54) (pt -6.985 2.54) (width 0.254) )
+ (line (pt -6.985 7.62) (pt -13.335 7.62) (width 0.254) )
+ (line (pt -13.335 15.24) (pt -4.445 15.24) (width 0.254) )
+ (attr "Type" "" (pt -10.795 -5.715) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt -1.84 14.54) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (line (pt -4.08 -1.92) (pt 1.67 -1.92) (width 0.3) )
+ (line (pt -4.08 12.08) (pt -4.08 11.83) (width 0.3) )
+ (line (pt 1.67 12.08) (pt -4.08 12.08) (width 0.3) )
+ (line (pt -4.08 11.955) (pt -4.08 -1.92) (width 0.3) )
+ (line (pt 1.67 -1.92) (pt 1.67 12.08) (width 0.3) )
+ )
+ )
+ )
+ (patternDefExtended "SOIC-8_1"
+ (originalName "SOIC-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (text (pt -0.9 0.42) "1" (textStyleRef "H16 [1]") (rotation 270.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Type" "" (pt 2.948 -1.8) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 2.2 -5.18) (rotation 270.0) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SOIC-8_2"
+ (originalName "SOIC-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (text (pt -0.52 2.14) "1" (textStyleRef "H16 [1]") (rotation 180.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Type" "" (pt 2.948 -1.8) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 4.18 -4.56) (rotation 180.0) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SOIC-8_3"
+ (originalName "SOIC-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (text (pt -1.3 1.76) "1" (textStyleRef "T:H60W6") (rotation 180.0) (justify LowerRight) (extent 0.96162 2.057) )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.1 -4.44) (rotation 180.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 3.302 -4.826) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "SOIC-8_4"
+ (originalName "SOIC-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (text (pt -0.254 0.254) "1" (textStyleRef "T:H60W6") (justify LowerRight) (extent 0.96162 2.057) )
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (attr "Value" "" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.302 1.016) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ )
+ (layerContents (layerNumRef 7)
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 3.302 -4.826) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ )
+ )
+ )
+ (patternDefExtended "SOIC-8_5"
+ (originalName "SOIC-8")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 4) (padStyleRef "P:OVW16H06") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 2) (padStyleRef "P:OVW16H06") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 1) (padStyleRef "P:OVW16H06") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 5) (padStyleRef "P:OVW16H06") (pt 6.35 -3.81) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "P:OVW16H06") (pt 6.35 -1.27) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:OVW16H06") (pt 6.35 0.0) (defaultPinDes "8") )
+ (pad (padNum 3) (padStyleRef "P:OVW16H06") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 6) (padStyleRef "P:OVW16H06") (pt 6.35 -2.54) (defaultPinDes "6") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 1.016 -4.572) (pt 1.016 0.762) (width 0.254) )
+ (line (pt 5.334 0.762) (pt 5.334 -4.572) (width 0.254) )
+ (line (pt 5.334 -4.572) (pt 1.016 -4.572) (width 0.254) )
+ (line (pt 1.016 0.762) (pt 5.334 0.762) (width 0.254) )
+ (text (pt -0.7 2.16) "1" (textStyleRef "T:H60W6") (rotation 180.0) (justify LowerRight) (extent 0.96162 2.057) )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 3.2 -5.04) (rotation 180.0) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 3.302 -4.826) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ )
+ )
+ )
+ (patternDefExtended "TSOP-44_1"
+ (originalName "TSOP-44")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 21) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.002) (defaultPinDes "21") )
+ (pad (padNum 22) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.8021) (defaultPinDes "22") )
+ (pad (padNum 14) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -10.4013) (defaultPinDes "14") )
+ (pad (padNum 15) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -11.2014) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.0015) (defaultPinDes "16") )
+ (pad (padNum 17) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.8016) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -13.6017) (defaultPinDes "18") )
+ (pad (padNum 19) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -14.4018) (defaultPinDes "19") )
+ (pad (padNum 12) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.8011) (defaultPinDes "12") )
+ (pad (padNum 13) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -9.6012) (defaultPinDes "13") )
+ (pad (padNum 5) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -3.2004) (defaultPinDes "5") )
+ (pad (padNum 6) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.0005) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.8006) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -5.6007) (defaultPinDes "8") )
+ (pad (padNum 9) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -6.4008) (defaultPinDes "9") )
+ (pad (padNum 2) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -0.8001) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -1.6002) (defaultPinDes "3") )
+ (pad (padNum 4) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -2.4003) (defaultPinDes "4") )
+ (pad (padNum 20) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -15.2019) (defaultPinDes "20") )
+ (pad (padNum 10) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -7.2009) (defaultPinDes "10") )
+ (pad (padNum 11) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.001) (defaultPinDes "11") )
+ (pad (padNum 1) (padStyleRef "P:SX80Y20D0T") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 23) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.8021) (defaultPinDes "23") )
+ (pad (padNum 24) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.002) (defaultPinDes "24") )
+ (pad (padNum 26) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -14.4018) (defaultPinDes "26") )
+ (pad (padNum 27) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -13.6017) (defaultPinDes "27") )
+ (pad (padNum 28) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.8016) (defaultPinDes "28") )
+ (pad (padNum 29) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.0015) (defaultPinDes "29") )
+ (pad (padNum 30) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -11.2014) (defaultPinDes "30") )
+ (pad (padNum 31) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -10.4013) (defaultPinDes "31") )
+ (pad (padNum 33) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.8011) (defaultPinDes "33") )
+ (pad (padNum 32) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -9.6012) (defaultPinDes "32") )
+ (pad (padNum 36) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -6.4008) (defaultPinDes "36") )
+ (pad (padNum 37) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -5.6007) (defaultPinDes "37") )
+ (pad (padNum 38) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -4.8006) (defaultPinDes "38") )
+ (pad (padNum 39) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -4.0005) (defaultPinDes "39") )
+ (pad (padNum 40) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -3.2004) (defaultPinDes "40") )
+ (pad (padNum 42) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -1.6002) (defaultPinDes "42") )
+ (pad (padNum 43) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -0.8001) (defaultPinDes "43") )
+ (pad (padNum 41) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -2.4003) (defaultPinDes "41") )
+ (pad (padNum 25) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -15.2019) (defaultPinDes "25") )
+ (pad (padNum 34) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.001) (defaultPinDes "34") )
+ (pad (padNum 35) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -7.2009) (defaultPinDes "35") )
+ (pad (padNum 44) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 0.0) (defaultPinDes "44") )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt 1.8502 0.0) (pt 1.6851 0.0) (pt 1.6851 0.0) (width 0.3048) )
+ (line (pt 1.3001 0.7501) (pt 1.3001 -17.6522) (width 0.254) )
+ (line (pt 10.705 0.73) (pt 10.7014 -17.6022) (width 0.254) )
+ (line (pt 1.33 -17.62) (pt 10.705 -17.62) (width 0.254) )
+ (line (pt 1.33 0.755) (pt 10.705 0.755) (width 0.254) )
+ (text (pt -0.79 0.56) "1" (textStyleRef "H16 [1]") (rotation 270.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Type" "" (pt 6.4008 -8.8011) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 4.81 2.86) (rotation 270.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "TSOP-44_2"
+ (originalName "TSOP-44")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 21) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.002) (defaultPinDes "21") )
+ (pad (padNum 22) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -16.8021) (defaultPinDes "22") )
+ (pad (padNum 14) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -10.4013) (defaultPinDes "14") )
+ (pad (padNum 15) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -11.2014) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.0015) (defaultPinDes "16") )
+ (pad (padNum 17) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -12.8016) (defaultPinDes "17") )
+ (pad (padNum 18) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -13.6017) (defaultPinDes "18") )
+ (pad (padNum 19) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -14.4018) (defaultPinDes "19") )
+ (pad (padNum 12) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.8011) (defaultPinDes "12") )
+ (pad (padNum 13) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -9.6012) (defaultPinDes "13") )
+ (pad (padNum 5) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -3.2004) (defaultPinDes "5") )
+ (pad (padNum 6) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.0005) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -4.8006) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -5.6007) (defaultPinDes "8") )
+ (pad (padNum 9) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -6.4008) (defaultPinDes "9") )
+ (pad (padNum 2) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -0.8001) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -1.6002) (defaultPinDes "3") )
+ (pad (padNum 4) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -2.4003) (defaultPinDes "4") )
+ (pad (padNum 20) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -15.2019) (defaultPinDes "20") )
+ (pad (padNum 10) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -7.2009) (defaultPinDes "10") )
+ (pad (padNum 11) (padStyleRef "P:SX80Y20D0T") (pt 0.0 -8.001) (defaultPinDes "11") )
+ (pad (padNum 1) (padStyleRef "P:SX80Y20D0T") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 23) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.8021) (defaultPinDes "23") )
+ (pad (padNum 24) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -16.002) (defaultPinDes "24") )
+ (pad (padNum 26) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -14.4018) (defaultPinDes "26") )
+ (pad (padNum 27) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -13.6017) (defaultPinDes "27") )
+ (pad (padNum 28) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.8016) (defaultPinDes "28") )
+ (pad (padNum 29) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -12.0015) (defaultPinDes "29") )
+ (pad (padNum 30) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -11.2014) (defaultPinDes "30") )
+ (pad (padNum 31) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -10.4013) (defaultPinDes "31") )
+ (pad (padNum 33) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.8011) (defaultPinDes "33") )
+ (pad (padNum 32) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -9.6012) (defaultPinDes "32") )
+ (pad (padNum 36) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -6.4008) (defaultPinDes "36") )
+ (pad (padNum 37) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -5.6007) (defaultPinDes "37") )
+ (pad (padNum 38) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -4.8006) (defaultPinDes "38") )
+ (pad (padNum 39) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -4.0005) (defaultPinDes "39") )
+ (pad (padNum 40) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -3.2004) (defaultPinDes "40") )
+ (pad (padNum 42) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -1.6002) (defaultPinDes "42") )
+ (pad (padNum 43) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -0.8001) (defaultPinDes "43") )
+ (pad (padNum 41) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -2.4003) (defaultPinDes "41") )
+ (pad (padNum 25) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -15.2019) (defaultPinDes "25") )
+ (pad (padNum 34) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -8.001) (defaultPinDes "34") )
+ (pad (padNum 35) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 -7.2009) (defaultPinDes "35") )
+ (pad (padNum 44) (padStyleRef "P:SX80Y20D0T") (pt 12.0015 0.0) (defaultPinDes "44") )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt 1.8502 0.0) (pt 1.6851 0.0) (pt 1.6851 0.0) (width 0.3048) )
+ (line (pt 1.3001 0.7501) (pt 1.3001 -17.6522) (width 0.254) )
+ (line (pt 10.705 0.73) (pt 10.7014 -17.6022) (width 0.254) )
+ (line (pt 1.33 -17.62) (pt 10.705 -17.62) (width 0.254) )
+ (line (pt 1.33 0.755) (pt 10.705 0.755) (width 0.254) )
+ (text (pt -0.88 0.66) "1" (textStyleRef "H16 [1]") (rotation 270.0) (justify LowerRight) (extent 0.97 2.12) )
+ (attr "Type" "" (pt 6.4008 -8.8011) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 5.72 2.66) (rotation 270.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (patternDefExtended "SO-16_W_1"
+ (originalName "SO-16_W")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 6) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -6.35) (defaultPinDes "6") )
+ (pad (padNum 7) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -7.62) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -8.89) (defaultPinDes "8") )
+ (pad (padNum 4) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -3.81) (defaultPinDes "4") )
+ (pad (padNum 1) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 2) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -1.27) (defaultPinDes "2") )
+ (pad (padNum 3) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -2.54) (defaultPinDes "3") )
+ (pad (padNum 5) (padStyleRef "SX20Y07DOT [1]") (pt 0.0 -5.08) (defaultPinDes "5") )
+ (pad (padNum 10) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -7.62) (defaultPinDes "10") )
+ (pad (padNum 11) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -6.35) (defaultPinDes "11") )
+ (pad (padNum 9) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -8.89) (defaultPinDes "9") )
+ (pad (padNum 13) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -3.81) (defaultPinDes "13") )
+ (pad (padNum 16) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 0.0) (defaultPinDes "16") )
+ (pad (padNum 15) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -1.27) (defaultPinDes "15") )
+ (pad (padNum 14) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -2.54) (defaultPinDes "14") )
+ (pad (padNum 12) (padStyleRef "SX20Y07DOT [1]") (pt 9.525 -5.08) (defaultPinDes "12") )
+ )
+ (layerContents (layerNumRef 6)
+ (triplePointArc (pt 1.905 0.0) (pt 1.905 0.381) (pt 1.905 0.381) (width 0.203) )
+ (line (pt 1.27 0.635) (pt 1.27 -9.525) (width 0.203) )
+ (line (pt 8.255 -9.525) (pt 8.255 0.635) (width 0.203) )
+ (line (pt 1.27 -9.525) (pt 8.255 -9.525) (width 0.203) )
+ (line (pt 8.255 0.635) (pt 1.27 0.635) (width 0.203) )
+ (attr "Type" "" (pt 4.445 -4.445) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "RefDes" "" (pt 4.64 -11.02) (rotation 180.0) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "BH2-10_1"
+ (originalName "BH2-10")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 2) (padStyleRef "P:OV12D07") (pt 0.0 2.0) (rotation 180.0) (defaultPinDes "P2") )
+ (pad (padNum 6) (padStyleRef "P:OV12D07") (pt 4.0 2.0) (rotation 180.0) (defaultPinDes "P6") )
+ (pad (padNum 4) (padStyleRef "P:OV12D07") (pt 2.0 2.0) (rotation 180.0) (defaultPinDes "P4") )
+ (pad (padNum 8) (padStyleRef "P:OV12D07") (pt 6.0 2.0) (rotation 180.0) (defaultPinDes "P8") )
+ (pad (padNum 10) (padStyleRef "P:OV12D07") (pt 8.0 2.0) (rotation 180.0) (defaultPinDes "P10") )
+ (pad (padNum 5) (padStyleRef "P:OV12D07") (pt 4.0 0.0) (rotation 180.0) (defaultPinDes "P5") )
+ (pad (padNum 3) (padStyleRef "P:OV12D07") (pt 2.0 0.0) (rotation 180.0) (defaultPinDes "P3") )
+ (pad (padNum 1) (padStyleRef "P:RE12D07") (pt 0.0 0.0) (rotation 180.0) (defaultPinDes "P1") )
+ (pad (padNum 7) (padStyleRef "P:OV12D07") (pt 6.0 0.0) (rotation 180.0) (defaultPinDes "P7") )
+ (pad (padNum 9) (padStyleRef "P:OV12D07") (pt 8.0 0.0) (rotation 180.0) (defaultPinDes "P9") )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt -4.5 -0.75) (pt -3.5 -1.75) (width 0.2) )
+ (line (pt -4.5 3.75) (pt -4.5 -0.75) (width 0.2) )
+ (line (pt 12.5 -1.75) (pt 12.5 3.75) (width 0.2) )
+ (line (pt -3.5 -1.75) (pt 12.5 -1.75) (width 0.2) )
+ (line (pt 12.5 3.75) (pt -4.5 3.75) (width 0.2) )
+ (attr "RefDes" "" (pt 4.0 4.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ (layerContents (layerNumRef 10)
+ (attr "Type" "" (pt 4.0 -2.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ )
+ )
+ )
+ (patternDefExtended "CP-24-1_1"
+ (originalName "CP-24-1")
+ (patternGraphicsNameRef "Primary")
+
+ (patternGraphicsDef
+ (patternGraphicsNameDef "Primary")
+ (multiLayer
+ (pad (padNum 6) (padStyleRef "R_W6H3 [1]") (pt 0.0 -2.5) (defaultPinDes "6") )
+ (pad (padNum 5) (padStyleRef "R_W6H3 [1]") (pt 0.0 -2.0) (defaultPinDes "5") )
+ (pad (padNum 7) (padStyleRef "R_W6H3 [1]") (pt 0.65 -3.15) (rotation 90.0) (defaultPinDes "7") )
+ (pad (padNum 8) (padStyleRef "R_W6H3 [1]") (pt 1.15 -3.15) (rotation 90.0) (defaultPinDes "8") )
+ (pad (padNum 2) (padStyleRef "R_W6H3 [1]") (pt 0.0 -0.5) (defaultPinDes "2") )
+ (pad (padNum 14) (padStyleRef "R_W6H3 [1]") (pt 3.8 -2.0) (defaultPinDes "14") )
+ (pad (padNum 11) (padStyleRef "R_W6H3 [1]") (pt 2.65 -3.15) (rotation 90.0) (defaultPinDes "11") )
+ (pad (padNum 12) (padStyleRef "R_W6H3 [1]") (pt 3.15 -3.15) (rotation 90.0) (defaultPinDes "12") )
+ (pad (padNum 13) (padStyleRef "R_W6H3 [1]") (pt 3.8 -2.5) (defaultPinDes "13") )
+ (pad (padNum 17) (padStyleRef "R_W6H3 [1]") (pt 3.8 -0.5) (defaultPinDes "17") )
+ (pad (padNum 4) (padStyleRef "R_W6H3 [1]") (pt 0.0 -1.5) (defaultPinDes "4") )
+ (pad (padNum 3) (padStyleRef "R_W6H3 [1]") (pt 0.0 -1.0) (defaultPinDes "3") )
+ (pad (padNum 15) (padStyleRef "R_W6H3 [1]") (pt 3.8 -1.5) (defaultPinDes "15") )
+ (pad (padNum 16) (padStyleRef "R_W6H3 [1]") (pt 3.8 -1.0) (defaultPinDes "16") )
+ (pad (padNum 9) (padStyleRef "R_W6H3 [1]") (pt 1.65 -3.15) (rotation 90.0) (defaultPinDes "9") )
+ (pad (padNum 10) (padStyleRef "R_W6H3 [1]") (pt 2.15 -3.15) (rotation 90.0) (defaultPinDes "10") )
+ (pad (padNum 25) (padStyleRef "R_W20H20") (pt 1.9 -1.25) )
+ (pad (padNum 24) (padStyleRef "R_W6H3 [1]") (pt 0.65 0.65) (rotation 90.0) (defaultPinDes "24") )
+ (pad (padNum 23) (padStyleRef "R_W6H3 [1]") (pt 1.15 0.65) (rotation 90.0) (defaultPinDes "23") )
+ (pad (padNum 20) (padStyleRef "R_W6H3 [1]") (pt 2.65 0.65) (rotation 90.0) (defaultPinDes "20") )
+ (pad (padNum 19) (padStyleRef "R_W6H3 [1]") (pt 3.15 0.65) (rotation 90.0) (defaultPinDes "19") )
+ (pad (padNum 22) (padStyleRef "R_W6H3 [1]") (pt 1.65 0.65) (rotation 90.0) (defaultPinDes "22") )
+ (pad (padNum 21) (padStyleRef "R_W6H3 [1]") (pt 2.15 0.65) (rotation 90.0) (defaultPinDes "21") )
+ (pad (padNum 1) (padStyleRef "R_W6H3 [1]") (pt 0.0 0.0) (defaultPinDes "1") )
+ (pad (padNum 18) (padStyleRef "R_W6H3 [1]") (pt 3.8 0.0) (defaultPinDes "18") )
+ (gluepoint (pt 1.9 -1.25) )
+ (pickpoint (pt 1.9 -1.25) )
+ )
+ (layerContents (layerNumRef 6)
+ (line (pt 4.45 -3.8) (pt -0.65 -3.8) (width 0.2) )
+ (line (pt -0.65 1.05) (pt -0.4 1.3) (width 0.2) )
+ (line (pt 4.45 1.3) (pt -0.65 1.3) (width 0.2) )
+ (line (pt -0.65 1.3) (pt -0.65 -3.8) (width 0.2) )
+ (line (pt 4.45 1.3) (pt 4.45 -3.8) (width 0.2) )
+ (attr "Type" "" (pt -0.35 -6.54) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "" (pt 4.48 1.02) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "" (textStyleRef "(Default)") )
+ )
+ )
+ )
+ (compDef "R_SMD0603_1"
+ (originalName "R_SMD0603")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "R")
+ )
+ (compPin "A" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "B" (pinName "B") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "R-0.05W") )
+ (attachedPattern (patternNum 1) (patternName "SMD0603")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "A")
+ (padNum 2) (compPinRef "B")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ (compDef "ADF4360_1"
+ (originalName "ADF4360")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 25)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "CPGND") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "AVdd") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "AGND") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "RFoutA") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "5" (pinName "RFoutB") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "Vvco") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (compPin "7" (pinName "Vtune") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) )
+ (compPin "8" (pinName "AGND") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (compPin "9" (pinName "L1") (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 0) )
+ (compPin "10" (pinName "L2") (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 0) )
+ (compPin "11" (pinName "AGND") (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 0) )
+ (compPin "12" (pinName "Cc") (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 0) )
+ (compPin "13" (pinName "Rset") (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 0) )
+ (compPin "14" (pinName "Cn") (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 0) )
+ (compPin "15" (pinName "DGND") (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 0) )
+ (compPin "16" (pinName "REFin") (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 0) )
+ (compPin "17" (pinName "CLK") (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 0) )
+ (compPin "18" (pinName "DATA") (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 0) )
+ (compPin "19" (pinName "LE") (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 0) )
+ (compPin "20" (pinName "MUXOUT") (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 0) )
+ (compPin "21" (pinName "DVdd") (partNum 1) (symPinNum 21) (gateEq 1) (pinEq 0) )
+ (compPin "22" (pinName "AGND") (partNum 1) (symPinNum 22) (gateEq 1) (pinEq 0) )
+ (compPin "23" (pinName "CE") (partNum 1) (symPinNum 23) (gateEq 1) (pinEq 0) )
+ (compPin "24" (pinName "CP") (partNum 1) (symPinNum 24) (gateEq 1) (pinEq 0) )
+ (compPin "25" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "ADF4360") )
+ (attachedPattern (patternNum 1) (patternName "CP-24-1")
+ (numPads 25)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ (padNum 21) (compPinRef "21")
+ (padNum 22) (compPinRef "22")
+ (padNum 23) (compPinRef "23")
+ (padNum 24) (compPinRef "24")
+ (padNum 25) (compPinRef "25")
+ )
+ )
+ )
+ (compDef "USB_1"
+ (originalName "USB")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 6)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "X")
+ (numType Numeric)
+ )
+ (compPin "1" (pinName "USB_VCC") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "USB_D-") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "USB_D+") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "USB_LGND") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "USB_CGND") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "USB_CGND") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "USB_2.0") )
+ (attachedPattern (patternNum 1) (patternName "USB")
+ (numPads 6)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ )
+ )
+ )
+ (compDef "M25P32_1"
+ (originalName "M25P32")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 16)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "~Hold") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "Vcc") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "4" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "5" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "6" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "7" (pinName "~CS") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "OUT") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "9" (pinName "W/Vp") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "10" (pinName "Vss") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "11" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "12" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "13" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "14" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "15" (pinName "Din") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "16" (pinName "SCLK") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "M25P32") )
+ (attachedPattern (patternNum 1) (patternName "SO-16_W")
+ (numPads 16)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ )
+ )
+ )
+ (compDef "EPM1270F256_1"
+ (originalName "EPM1270F256")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 256)
+ (numParts 2)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ (numType Numeric)
+ )
+ (compPin "A1" (pinName "GND") (partNum 1) (symPinNum 54) (gateEq 0) (pinEq 0) )
+ (compPin "B1" (pinName "IN/OUT") (partNum 1) (symPinNum 45) (gateEq 0) (pinEq 1) )
+ (compPin "C1" (pinName "VCCIO") (partNum 1) (symPinNum 39) (gateEq 0) (pinEq 0) )
+ (compPin "D1" (pinName "IN/OUT") (partNum 1) (symPinNum 24) (gateEq 0) (pinEq 1) )
+ (compPin "E1" (pinName "IN/OUT") (partNum 1) (symPinNum 101) (gateEq 0) (pinEq 1) )
+ (compPin "F1" (pinName "IN/OUT") (partNum 1) (symPinNum 90) (gateEq 0) (pinEq 1) )
+ (compPin "G1" (pinName "IN/OUT") (partNum 1) (symPinNum 84) (gateEq 0) (pinEq 1) )
+ (compPin "H1" (pinName "IN/OUT") (partNum 1) (symPinNum 67) (gateEq 0) (pinEq 1) )
+ (compPin "J1" (pinName "IN/OUT") (partNum 2) (symPinNum 54) (gateEq 0) (pinEq 1) )
+ (compPin "K1" (pinName "IN/OUT") (partNum 2) (symPinNum 44) (gateEq 0) (pinEq 1) )
+ (compPin "L1" (pinName "IN/OUT") (partNum 2) (symPinNum 40) (gateEq 0) (pinEq 1) )
+ (compPin "M1" (pinName "IN/OUT") (partNum 2) (symPinNum 27) (gateEq 0) (pinEq 1) )
+ (compPin "N1" (pinName "IN/OUT") (partNum 2) (symPinNum 101) (gateEq 0) (pinEq 1) )
+ (compPin "P1" (pinName "VCCIO") (partNum 2) (symPinNum 90) (gateEq 0) (pinEq 0) )
+ (compPin "R1" (pinName "IN/OUT") (partNum 2) (symPinNum 83) (gateEq 0) (pinEq 1) )
+ (compPin "T1" (pinName "GND") (partNum 2) (symPinNum 69) (gateEq 0) (pinEq 0) )
+ (compPin "A2" (pinName "IN/OUT") (partNum 1) (symPinNum 55) (gateEq 0) (pinEq 1) )
+ (compPin "B2" (pinName "GND") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "C2" (pinName "IN/OUT") (partNum 1) (symPinNum 109) (gateEq 0) (pinEq 1) )
+ (compPin "D2" (pinName "IN/OUT") (partNum 1) (symPinNum 25) (gateEq 0) (pinEq 1) )
+ (compPin "E2" (pinName "IN/OUT") (partNum 1) (symPinNum 100) (gateEq 0) (pinEq 1) )
+ (compPin "F2" (pinName "IN/OUT") (partNum 1) (symPinNum 91) (gateEq 0) (pinEq 1) )
+ (compPin "G2" (pinName "IN/OUT") (partNum 1) (symPinNum 119) (gateEq 0) (pinEq 1) )
+ (compPin "H2" (pinName "IN/OUT") (partNum 1) (symPinNum 68) (gateEq 0) (pinEq 1) )
+ (compPin "J2" (pinName "IN/OUT") (partNum 2) (symPinNum 55) (gateEq 0) (pinEq 1) )
+ (compPin "K2" (pinName "IN/OUT") (partNum 2) (symPinNum 45) (gateEq 0) (pinEq 1) )
+ (compPin "L2" (pinName "IN/OUT") (partNum 2) (symPinNum 106) (gateEq 0) (pinEq 1) )
+ (compPin "M2" (pinName "IN/OUT") (partNum 2) (symPinNum 28) (gateEq 0) (pinEq 1) )
+ (compPin "N2" (pinName "IN/OUT") (partNum 2) (symPinNum 100) (gateEq 0) (pinEq 1) )
+ (compPin "P2" (pinName "IN/OUT") (partNum 2) (symPinNum 93) (gateEq 0) (pinEq 1) )
+ (compPin "R2" (pinName "GND") (partNum 2) (symPinNum 122) (gateEq 0) (pinEq 0) )
+ (compPin "T2" (pinName "IN/OUT") (partNum 2) (symPinNum 67) (gateEq 0) (pinEq 1) )
+ (compPin "A3" (pinName "VCCIO") (partNum 1) (symPinNum 112) (gateEq 0) (pinEq 0) )
+ (compPin "B3" (pinName "IN/OUT") (partNum 1) (symPinNum 46) (gateEq 0) (pinEq 1) )
+ (compPin "C3" (pinName "VCCINT") (partNum 1) (symPinNum 34) (gateEq 0) (pinEq 0) )
+ (compPin "D3" (pinName "IN/OUT") (partNum 1) (symPinNum 26) (gateEq 0) (pinEq 1) )
+ (compPin "E3" (pinName "IN/OUT") (partNum 1) (symPinNum 123) (gateEq 0) (pinEq 1) )
+ (compPin "F3" (pinName "IN/OUT") (partNum 1) (symPinNum 92) (gateEq 0) (pinEq 1) )
+ (compPin "G3" (pinName "IN/OUT") (partNum 1) (symPinNum 75) (gateEq 0) (pinEq 1) )
+ (compPin "H3" (pinName "IN/OUT") (partNum 1) (symPinNum 70) (gateEq 0) (pinEq 1) )
+ (compPin "J3" (pinName "IN/OUT") (partNum 2) (symPinNum 111) (gateEq 0) (pinEq 1) )
+ (compPin "K3" (pinName "IN/OUT") (partNum 2) (symPinNum 46) (gateEq 0) (pinEq 1) )
+ (compPin "L3" (pinName "IN/OUT") (partNum 2) (symPinNum 34) (gateEq 0) (pinEq 1) )
+ (compPin "M3" (pinName "IN/OUT") (partNum 2) (symPinNum 29) (gateEq 0) (pinEq 1) )
+ (compPin "N3" (pinName "IN/OUT") (partNum 2) (symPinNum 123) (gateEq 0) (pinEq 1) )
+ (compPin "P3" (pinName "TCK") (partNum 2) (symPinNum 91) (gateEq 0) (pinEq 0) )
+ (compPin "R3" (pinName "IN/OUT") (partNum 2) (symPinNum 75) (gateEq 0) (pinEq 1) )
+ (compPin "T3" (pinName "VCCIO") (partNum 2) (symPinNum 70) (gateEq 0) (pinEq 0) )
+ (compPin "A4" (pinName "IN/OUT") (partNum 1) (symPinNum 111) (gateEq 0) (pinEq 1) )
+ (compPin "B4" (pinName "IN/OUT") (partNum 1) (symPinNum 47) (gateEq 0) (pinEq 1) )
+ (compPin "C4" (pinName "IN/OUT") (partNum 1) (symPinNum 31) (gateEq 0) (pinEq 1) )
+ (compPin "D4" (pinName "IN/OUT") (partNum 1) (symPinNum 104) (gateEq 0) (pinEq 1) )
+ (compPin "E4" (pinName "IN/OUT") (partNum 1) (symPinNum 124) (gateEq 0) (pinEq 1) )
+ (compPin "F4" (pinName "IN/OUT") (partNum 1) (symPinNum 93) (gateEq 0) (pinEq 1) )
+ (compPin "G4" (pinName "IN/OUT") (partNum 1) (symPinNum 77) (gateEq 0) (pinEq 1) )
+ (compPin "H4" (pinName "IN/OUT") (partNum 1) (symPinNum 118) (gateEq 0) (pinEq 1) )
+ (compPin "J4" (pinName "IN/OUT") (partNum 2) (symPinNum 114) (gateEq 0) (pinEq 1) )
+ (compPin "K4" (pinName "IN/OUT") (partNum 2) (symPinNum 47) (gateEq 0) (pinEq 1) )
+ (compPin "L4" (pinName "IN/OUT") (partNum 2) (symPinNum 35) (gateEq 0) (pinEq 1) )
+ (compPin "M4" (pinName "IN/OUT") (partNum 2) (symPinNum 103) (gateEq 0) (pinEq 1) )
+ (compPin "N4" (pinName "TMS") (partNum 2) (symPinNum 125) (gateEq 0) (pinEq 0) )
+ (compPin "P4" (pinName "IN/OUT") (partNum 2) (symPinNum 92) (gateEq 0) (pinEq 1) )
+ (compPin "R4" (pinName "IN/OUT") (partNum 2) (symPinNum 76) (gateEq 0) (pinEq 1) )
+ (compPin "T4" (pinName "IN/OUT") (partNum 2) (symPinNum 117) (gateEq 0) (pinEq 1) )
+ (compPin "A5" (pinName "IN/OUT") (partNum 1) (symPinNum 53) (gateEq 0) (pinEq 1) )
+ (compPin "B5" (pinName "IN/OUT") (partNum 1) (symPinNum 106) (gateEq 0) (pinEq 1) )
+ (compPin "C5" (pinName "IN/OUT") (partNum 1) (symPinNum 32) (gateEq 0) (pinEq 1) )
+ (compPin "D5" (pinName "IN/OUT") (partNum 1) (symPinNum 17) (gateEq 0) (pinEq 1) )
+ (compPin "E5" (pinName "IN/OUT") (partNum 1) (symPinNum 97) (gateEq 0) (pinEq 1) )
+ (compPin "F5" (pinName "IN/OUT") (partNum 1) (symPinNum 120) (gateEq 0) (pinEq 1) )
+ (compPin "G5" (pinName "IN/OUT") (partNum 1) (symPinNum 78) (gateEq 0) (pinEq 1) )
+ (compPin "H5" (pinName "GCLK0") (partNum 1) (symPinNum 65) (gateEq 0) (pinEq 0) )
+ (compPin "J5" (pinName "GCLK1") (partNum 2) (symPinNum 53) (gateEq 0) (pinEq 0) )
+ (compPin "K5" (pinName "IN/OUT") (partNum 2) (symPinNum 107) (gateEq 0) (pinEq 1) )
+ (compPin "L5" (pinName "IN/OUT") (partNum 2) (symPinNum 36) (gateEq 0) (pinEq 1) )
+ (compPin "M5" (pinName "TDO") (partNum 2) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "N5" (pinName "IN/OUT") (partNum 2) (symPinNum 97) (gateEq 0) (pinEq 1) )
+ (compPin "P5" (pinName "IN/OUT") (partNum 2) (symPinNum 119) (gateEq 0) (pinEq 1) )
+ (compPin "R5" (pinName "IN/OUT") (partNum 2) (symPinNum 77) (gateEq 0) (pinEq 1) )
+ (compPin "T5" (pinName "IN/OUT") (partNum 2) (symPinNum 61) (gateEq 0) (pinEq 1) )
+ (compPin "A6" (pinName "IN/OUT") (partNum 1) (symPinNum 51) (gateEq 0) (pinEq 1) )
+ (compPin "B6" (pinName "IN/OUT") (partNum 1) (symPinNum 107) (gateEq 0) (pinEq 1) )
+ (compPin "C6" (pinName "IN/OUT") (partNum 1) (symPinNum 33) (gateEq 0) (pinEq 1) )
+ (compPin "D6" (pinName "IN/OUT") (partNum 1) (symPinNum 18) (gateEq 0) (pinEq 1) )
+ (compPin "E6" (pinName "IN/OUT") (partNum 1) (symPinNum 98) (gateEq 0) (pinEq 1) )
+ (compPin "F6" (pinName "IN/OUT") (partNum 1) (symPinNum 121) (gateEq 0) (pinEq 1) )
+ (compPin "G6" (pinName "IN/OUT") (partNum 1) (symPinNum 79) (gateEq 0) (pinEq 1) )
+ (compPin "H6" (pinName "VCCIO") (partNum 1) (symPinNum 61) (gateEq 0) (pinEq 0) )
+ (compPin "J6" (pinName "VCCIO") (partNum 2) (symPinNum 51) (gateEq 0) (pinEq 0) )
+ (compPin "K6" (pinName "IN/OUT") (partNum 2) (symPinNum 108) (gateEq 0) (pinEq 1) )
+ (compPin "L6" (pinName "TDI") (partNum 2) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "M6" (pinName "IN/OUT") (partNum 2) (symPinNum 23) (gateEq 0) (pinEq 1) )
+ (compPin "N6" (pinName "IN/OUT") (partNum 2) (symPinNum 98) (gateEq 0) (pinEq 1) )
+ (compPin "P6" (pinName "IN/OUT") (partNum 2) (symPinNum 120) (gateEq 0) (pinEq 1) )
+ (compPin "R6" (pinName "IN/OUT") (partNum 2) (symPinNum 78) (gateEq 0) (pinEq 1) )
+ (compPin "T6" (pinName "IN/OUT") (partNum 2) (symPinNum 62) (gateEq 0) (pinEq 1) )
+ (compPin "A7" (pinName "IN/OUT") (partNum 1) (symPinNum 52) (gateEq 0) (pinEq 1) )
+ (compPin "B7" (pinName "IN/OUT") (partNum 1) (symPinNum 40) (gateEq 0) (pinEq 1) )
+ (compPin "C7" (pinName "IN/OUT") (partNum 1) (symPinNum 35) (gateEq 0) (pinEq 1) )
+ (compPin "D7" (pinName "IN/OUT") (partNum 1) (symPinNum 19) (gateEq 0) (pinEq 1) )
+ (compPin "E7" (pinName "IN/OUT") (partNum 1) (symPinNum 99) (gateEq 0) (pinEq 1) )
+ (compPin "F7" (pinName "IN/OUT") (partNum 1) (symPinNum 87) (gateEq 0) (pinEq 1) )
+ (compPin "G7" (pinName "GND") (partNum 1) (symPinNum 76) (gateEq 0) (pinEq 0) )
+ (compPin "H7" (pinName "GND") (partNum 1) (symPinNum 62) (gateEq 0) (pinEq 0) )
+ (compPin "J7" (pinName "VCCINT") (partNum 2) (symPinNum 52) (gateEq 0) (pinEq 0) )
+ (compPin "K7" (pinName "GND") (partNum 2) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "L7" (pinName "IN/OUT") (partNum 2) (symPinNum 37) (gateEq 0) (pinEq 1) )
+ (compPin "M7" (pinName "IN/OUT") (partNum 2) (symPinNum 24) (gateEq 0) (pinEq 1) )
+ (compPin "N7" (pinName "IN/OUT") (partNum 2) (symPinNum 99) (gateEq 0) (pinEq 1) )
+ (compPin "P7" (pinName "IN/OUT") (partNum 2) (symPinNum 87) (gateEq 0) (pinEq 1) )
+ (compPin "R7" (pinName "IN/OUT") (partNum 2) (symPinNum 79) (gateEq 0) (pinEq 1) )
+ (compPin "T7" (pinName "IN/OUT") (partNum 2) (symPinNum 63) (gateEq 0) (pinEq 1) )
+ (compPin "A8" (pinName "IN/OUT") (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 1) )
+ (compPin "B8" (pinName "IN/OUT") (partNum 1) (symPinNum 41) (gateEq 0) (pinEq 1) )
+ (compPin "C8" (pinName "IN/OUT") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 1) )
+ (compPin "D8" (pinName "IN/OUT") (partNum 1) (symPinNum 20) (gateEq 0) (pinEq 1) )
+ (compPin "E8" (pinName "IN/OUT") (partNum 1) (symPinNum 11) (gateEq 0) (pinEq 1) )
+ (compPin "F8" (pinName "VCCIO") (partNum 1) (symPinNum 85) (gateEq 0) (pinEq 0) )
+ (compPin "G8" (pinName "GND") (partNum 1) (symPinNum 9) (gateEq 0) (pinEq 0) )
+ (compPin "H8" (pinName "VCCINT") (partNum 1) (symPinNum 63) (gateEq 0) (pinEq 0) )
+ (compPin "J8" (pinName "GND") (partNum 2) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "K8" (pinName "GND") (partNum 2) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "L8" (pinName "VCCIO") (partNum 2) (symPinNum 10) (gateEq 0) (pinEq 0) )
+ (compPin "M8" (pinName "DEV_OE") (partNum 2) (symPinNum 21) (gateEq 0) (pinEq 0) )
+ (compPin "N8" (pinName "IN/OUT") (partNum 2) (symPinNum 15) (gateEq 0) (pinEq 1) )
+ (compPin "P8" (pinName "IN/OUT") (partNum 2) (symPinNum 85) (gateEq 0) (pinEq 1) )
+ (compPin "R8" (pinName "IN/OUT") (partNum 2) (symPinNum 13) (gateEq 0) (pinEq 1) )
+ (compPin "T8" (pinName "IN/OUT") (partNum 2) (symPinNum 64) (gateEq 0) (pinEq 1) )
+ (compPin "A9" (pinName "IN/OUT") (partNum 1) (symPinNum 110) (gateEq 0) (pinEq 1) )
+ (compPin "B9" (pinName "IN/OUT") (partNum 1) (symPinNum 43) (gateEq 0) (pinEq 1) )
+ (compPin "C9" (pinName "IN/OUT") (partNum 1) (symPinNum 27) (gateEq 0) (pinEq 1) )
+ (compPin "D9" (pinName "IN/OUT") (partNum 1) (symPinNum 21) (gateEq 0) (pinEq 1) )
+ (compPin "E9" (pinName "IN/OUT") (partNum 1) (symPinNum 127) (gateEq 0) (pinEq 1) )
+ (compPin "F9" (pinName "VCCIO") (partNum 1) (symPinNum 86) (gateEq 0) (pinEq 0) )
+ (compPin "G9" (pinName "GND") (partNum 1) (symPinNum 71) (gateEq 0) (pinEq 0) )
+ (compPin "H9" (pinName "GND") (partNum 1) (symPinNum 64) (gateEq 0) (pinEq 0) )
+ (compPin "J9" (pinName "VCCINT") (partNum 2) (symPinNum 112) (gateEq 0) (pinEq 0) )
+ (compPin "K9" (pinName "GND") (partNum 2) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "L9" (pinName "VCCIO") (partNum 2) (symPinNum 31) (gateEq 0) (pinEq 0) )
+ (compPin "M9" (pinName "DEV_CLR") (partNum 2) (symPinNum 22) (gateEq 0) (pinEq 0) )
+ (compPin "N9" (pinName "IN/OUT") (partNum 2) (symPinNum 126) (gateEq 0) (pinEq 1) )
+ (compPin "P9" (pinName "IN/OUT") (partNum 2) (symPinNum 86) (gateEq 0) (pinEq 1) )
+ (compPin "R9" (pinName "IN/OUT") (partNum 2) (symPinNum 71) (gateEq 0) (pinEq 1) )
+ (compPin "T9" (pinName "IN/OUT") (partNum 2) (symPinNum 65) (gateEq 0) (pinEq 1) )
+ (compPin "A10" (pinName "IN/OUT") (partNum 1) (symPinNum 113) (gateEq 0) (pinEq 1) )
+ (compPin "B10" (pinName "IN/OUT") (partNum 1) (symPinNum 44) (gateEq 0) (pinEq 1) )
+ (compPin "C10" (pinName "IN/OUT") (partNum 1) (symPinNum 28) (gateEq 0) (pinEq 1) )
+ (compPin "D10" (pinName "IN/OUT") (partNum 1) (symPinNum 105) (gateEq 0) (pinEq 1) )
+ (compPin "E10" (pinName "IN/OUT") (partNum 1) (symPinNum 128) (gateEq 0) (pinEq 1) )
+ (compPin "F10" (pinName "IN/OUT") (partNum 1) (symPinNum 88) (gateEq 0) (pinEq 1) )
+ (compPin "G10" (pinName "GND") (partNum 1) (symPinNum 72) (gateEq 0) (pinEq 0) )
+ (compPin "H10" (pinName "VCCINT") (partNum 1) (symPinNum 116) (gateEq 0) (pinEq 0) )
+ (compPin "J10" (pinName "GND") (partNum 2) (symPinNum 8) (gateEq 0) (pinEq 0) )
+ (compPin "K10" (pinName "GND") (partNum 2) (symPinNum 7) (gateEq 0) (pinEq 0) )
+ (compPin "L10" (pinName "IN/OUT") (partNum 2) (symPinNum 32) (gateEq 0) (pinEq 1) )
+ (compPin "M10" (pinName "IN/OUT") (partNum 2) (symPinNum 105) (gateEq 0) (pinEq 1) )
+ (compPin "N10" (pinName "IN/OUT") (partNum 2) (symPinNum 127) (gateEq 0) (pinEq 1) )
+ (compPin "P10" (pinName "IN/OUT") (partNum 2) (symPinNum 88) (gateEq 0) (pinEq 1) )
+ (compPin "R10" (pinName "IN/OUT") (partNum 2) (symPinNum 72) (gateEq 0) (pinEq 1) )
+ (compPin "T10" (pinName "IN/OUT") (partNum 2) (symPinNum 118) (gateEq 0) (pinEq 1) )
+ (compPin "A11" (pinName "IN/OUT") (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 1) )
+ (compPin "B11" (pinName "IN/OUT") (partNum 1) (symPinNum 42) (gateEq 0) (pinEq 1) )
+ (compPin "C11" (pinName "IN/OUT") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 1) )
+ (compPin "D11" (pinName "IN/OUT") (partNum 1) (symPinNum 14) (gateEq 0) (pinEq 1) )
+ (compPin "E11" (pinName "IN/OUT") (partNum 1) (symPinNum 10) (gateEq 0) (pinEq 1) )
+ (compPin "F11" (pinName "IN/OUT") (partNum 1) (symPinNum 89) (gateEq 0) (pinEq 1) )
+ (compPin "G11" (pinName "IN/OUT") (partNum 1) (symPinNum 8) (gateEq 0) (pinEq 1) )
+ (compPin "H11" (pinName "VCCIO") (partNum 1) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "J11" (pinName "VCCIO") (partNum 2) (symPinNum 11) (gateEq 0) (pinEq 0) )
+ (compPin "K11" (pinName "IN/OUT") (partNum 2) (symPinNum 43) (gateEq 0) (pinEq 1) )
+ (compPin "L11" (pinName "IN/OUT") (partNum 2) (symPinNum 9) (gateEq 0) (pinEq 1) )
+ (compPin "M11" (pinName "IN/OUT") (partNum 2) (symPinNum 19) (gateEq 0) (pinEq 1) )
+ (compPin "N11" (pinName "IN/OUT") (partNum 2) (symPinNum 14) (gateEq 0) (pinEq 1) )
+ (compPin "P11" (pinName "IN/OUT") (partNum 2) (symPinNum 89) (gateEq 0) (pinEq 1) )
+ (compPin "R11" (pinName "IN/OUT") (partNum 2) (symPinNum 12) (gateEq 0) (pinEq 1) )
+ (compPin "T11" (pinName "IN/OUT") (partNum 2) (symPinNum 58) (gateEq 0) (pinEq 1) )
+ (compPin "A12" (pinName "IN/OUT") (partNum 1) (symPinNum 48) (gateEq 0) (pinEq 1) )
+ (compPin "B12" (pinName "IN/OUT") (partNum 1) (symPinNum 108) (gateEq 0) (pinEq 1) )
+ (compPin "C12" (pinName "IN/OUT") (partNum 1) (symPinNum 30) (gateEq 0) (pinEq 1) )
+ (compPin "D12" (pinName "IN/OUT") (partNum 1) (symPinNum 15) (gateEq 0) (pinEq 1) )
+ (compPin "E12" (pinName "IN/OUT") (partNum 1) (symPinNum 94) (gateEq 0) (pinEq 1) )
+ (compPin "F12" (pinName "IN/OUT") (partNum 1) (symPinNum 122) (gateEq 0) (pinEq 1) )
+ (compPin "G12" (pinName "IN/OUT") (partNum 1) (symPinNum 73) (gateEq 0) (pinEq 1) )
+ (compPin "H12" (pinName "GCLK3") (partNum 1) (symPinNum 59) (gateEq 0) (pinEq 0) )
+ (compPin "J12" (pinName "GCLK2") (partNum 2) (symPinNum 49) (gateEq 0) (pinEq 0) )
+ (compPin "K12" (pinName "IN/OUT") (partNum 2) (symPinNum 109) (gateEq 0) (pinEq 1) )
+ (compPin "L12" (pinName "IN/OUT") (partNum 2) (symPinNum 33) (gateEq 0) (pinEq 1) )
+ (compPin "M12" (pinName "IN/OUT") (partNum 2) (symPinNum 20) (gateEq 0) (pinEq 1) )
+ (compPin "N12" (pinName "IN/OUT") (partNum 2) (symPinNum 94) (gateEq 0) (pinEq 1) )
+ (compPin "P12" (pinName "IN/OUT") (partNum 2) (symPinNum 121) (gateEq 0) (pinEq 1) )
+ (compPin "R12" (pinName "IN/OUT") (partNum 2) (symPinNum 73) (gateEq 0) (pinEq 1) )
+ (compPin "T12" (pinName "IN/OUT") (partNum 2) (symPinNum 56) (gateEq 0) (pinEq 1) )
+ (compPin "A13" (pinName "IN/OUT") (partNum 1) (symPinNum 49) (gateEq 0) (pinEq 1) )
+ (compPin "B13" (pinName "IN/OUT") (partNum 1) (symPinNum 38) (gateEq 0) (pinEq 1) )
+ (compPin "C13" (pinName "IN/OUT") (partNum 1) (symPinNum 29) (gateEq 0) (pinEq 1) )
+ (compPin "D13" (pinName "IN/OUT") (partNum 1) (symPinNum 12) (gateEq 0) (pinEq 1) )
+ (compPin "E13" (pinName "IN/OUT") (partNum 1) (symPinNum 95) (gateEq 0) (pinEq 1) )
+ (compPin "F13" (pinName "IN/OUT") (partNum 1) (symPinNum 80) (gateEq 0) (pinEq 1) )
+ (compPin "G13" (pinName "IN/OUT") (partNum 1) (symPinNum 74) (gateEq 0) (pinEq 1) )
+ (compPin "H13" (pinName "IN/OUT") (partNum 1) (symPinNum 60) (gateEq 0) (pinEq 1) )
+ (compPin "J13" (pinName "IN/OUT") (partNum 2) (symPinNum 50) (gateEq 0) (pinEq 1) )
+ (compPin "K13" (pinName "IN/OUT") (partNum 2) (symPinNum 42) (gateEq 0) (pinEq 1) )
+ (compPin "L13" (pinName "IN/OUT") (partNum 2) (symPinNum 30) (gateEq 0) (pinEq 1) )
+ (compPin "M13" (pinName "IN/OUT") (partNum 2) (symPinNum 16) (gateEq 0) (pinEq 1) )
+ (compPin "N13" (pinName "IN/OUT") (partNum 2) (symPinNum 95) (gateEq 0) (pinEq 1) )
+ (compPin "P13" (pinName "IN/OUT") (partNum 2) (symPinNum 80) (gateEq 0) (pinEq 1) )
+ (compPin "R13" (pinName "IN/OUT") (partNum 2) (symPinNum 74) (gateEq 0) (pinEq 1) )
+ (compPin "T13" (pinName "IN/OUT") (partNum 2) (symPinNum 59) (gateEq 0) (pinEq 1) )
+ (compPin "A14" (pinName "VCCIO") (partNum 1) (symPinNum 50) (gateEq 0) (pinEq 0) )
+ (compPin "B14" (pinName "IN/OUT") (partNum 1) (symPinNum 36) (gateEq 0) (pinEq 1) )
+ (compPin "C14" (pinName "IN/OUT") (partNum 1) (symPinNum 102) (gateEq 0) (pinEq 1) )
+ (compPin "D14" (pinName "IN/OUT") (partNum 1) (symPinNum 13) (gateEq 0) (pinEq 1) )
+ (compPin "E14" (pinName "IN/OUT") (partNum 1) (symPinNum 96) (gateEq 0) (pinEq 1) )
+ (compPin "F14" (pinName "IN/OUT") (partNum 1) (symPinNum 81) (gateEq 0) (pinEq 1) )
+ (compPin "G14" (pinName "IN/OUT") (partNum 1) (symPinNum 115) (gateEq 0) (pinEq 1) )
+ (compPin "H14" (pinName "IN/OUT") (partNum 1) (symPinNum 56) (gateEq 0) (pinEq 1) )
+ (compPin "J14" (pinName "IN/OUT") (partNum 2) (symPinNum 48) (gateEq 0) (pinEq 1) )
+ (compPin "K14" (pinName "IN/OUT") (partNum 2) (symPinNum 38) (gateEq 0) (pinEq 1) )
+ (compPin "L14" (pinName "IN/OUT") (partNum 2) (symPinNum 102) (gateEq 0) (pinEq 1) )
+ (compPin "M14" (pinName "IN/OUT") (partNum 2) (symPinNum 17) (gateEq 0) (pinEq 1) )
+ (compPin "N14" (pinName "IN/OUT") (partNum 2) (symPinNum 96) (gateEq 0) (pinEq 1) )
+ (compPin "P14" (pinName "IN/OUT") (partNum 2) (symPinNum 81) (gateEq 0) (pinEq 1) )
+ (compPin "R14" (pinName "IN/OUT") (partNum 2) (symPinNum 115) (gateEq 0) (pinEq 1) )
+ (compPin "T14" (pinName "VCCIO") (partNum 2) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "A15" (pinName "IN/OUT") (partNum 1) (symPinNum 114) (gateEq 0) (pinEq 1) )
+ (compPin "B15" (pinName "GND") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "C15" (pinName "IN/OUT") (partNum 1) (symPinNum 22) (gateEq 0) (pinEq 1) )
+ (compPin "D15" (pinName "IN/OUT") (partNum 1) (symPinNum 16) (gateEq 0) (pinEq 1) )
+ (compPin "E15" (pinName "IN/OUT") (partNum 1) (symPinNum 125) (gateEq 0) (pinEq 1) )
+ (compPin "F15" (pinName "IN/OUT") (partNum 1) (symPinNum 82) (gateEq 0) (pinEq 1) )
+ (compPin "G15" (pinName "IN/OUT") (partNum 1) (symPinNum 69) (gateEq 0) (pinEq 1) )
+ (compPin "H15" (pinName "IN/OUT") (partNum 1) (symPinNum 58) (gateEq 0) (pinEq 1) )
+ (compPin "J15" (pinName "IN/OUT") (partNum 2) (symPinNum 110) (gateEq 0) (pinEq 1) )
+ (compPin "K15" (pinName "IN/OUT") (partNum 2) (symPinNum 41) (gateEq 0) (pinEq 1) )
+ (compPin "L15" (pinName "IN/OUT") (partNum 2) (symPinNum 25) (gateEq 0) (pinEq 1) )
+ (compPin "M15" (pinName "IN/OUT") (partNum 2) (symPinNum 18) (gateEq 0) (pinEq 1) )
+ (compPin "N15" (pinName "IN/OUT") (partNum 2) (symPinNum 124) (gateEq 0) (pinEq 1) )
+ (compPin "P15" (pinName "IN/OUT") (partNum 2) (symPinNum 82) (gateEq 0) (pinEq 1) )
+ (compPin "R15" (pinName "GND") (partNum 2) (symPinNum 68) (gateEq 0) (pinEq 0) )
+ (compPin "T15" (pinName "IN/OUT") (partNum 2) (symPinNum 60) (gateEq 0) (pinEq 1) )
+ (compPin "A16" (pinName "GND") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "B16" (pinName "IN/OUT") (partNum 1) (symPinNum 37) (gateEq 0) (pinEq 1) )
+ (compPin "C16" (pinName "VCCIO") (partNum 1) (symPinNum 23) (gateEq 0) (pinEq 0) )
+ (compPin "D16" (pinName "IN/OUT") (partNum 1) (symPinNum 103) (gateEq 0) (pinEq 1) )
+ (compPin "E16" (pinName "IN/OUT") (partNum 1) (symPinNum 126) (gateEq 0) (pinEq 1) )
+ (compPin "F16" (pinName "IN/OUT") (partNum 1) (symPinNum 83) (gateEq 0) (pinEq 1) )
+ (compPin "G16" (pinName "IN/OUT") (partNum 1) (symPinNum 66) (gateEq 0) (pinEq 1) )
+ (compPin "H16" (pinName "IN/OUT") (partNum 1) (symPinNum 117) (gateEq 0) (pinEq 1) )
+ (compPin "J16" (pinName "IN/OUT") (partNum 2) (symPinNum 113) (gateEq 0) (pinEq 1) )
+ (compPin "K16" (pinName "IN/OUT") (partNum 2) (symPinNum 39) (gateEq 0) (pinEq 1) )
+ (compPin "L16" (pinName "IN/OUT") (partNum 2) (symPinNum 26) (gateEq 0) (pinEq 1) )
+ (compPin "M16" (pinName "IN/OUT") (partNum 2) (symPinNum 104) (gateEq 0) (pinEq 1) )
+ (compPin "N16" (pinName "IN/OUT") (partNum 2) (symPinNum 128) (gateEq 0) (pinEq 1) )
+ (compPin "P16" (pinName "VCCIO") (partNum 2) (symPinNum 84) (gateEq 0) (pinEq 0) )
+ (compPin "R16" (pinName "IN/OUT") (partNum 2) (symPinNum 66) (gateEq 0) (pinEq 1) )
+ (compPin "T16" (pinName "GND") (partNum 2) (symPinNum 116) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "EPM1270TC256") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "EPM1270TC256P2") )
+ (attachedPattern (patternNum 1) (patternName "BC256")
+ (numPads 256)
+ (padPinMap
+ (padNum 1) (compPinRef "A1")
+ (padNum 2) (compPinRef "B1")
+ (padNum 3) (compPinRef "C1")
+ (padNum 4) (compPinRef "D1")
+ (padNum 5) (compPinRef "E1")
+ (padNum 6) (compPinRef "F1")
+ (padNum 7) (compPinRef "G1")
+ (padNum 8) (compPinRef "H1")
+ (padNum 9) (compPinRef "J1")
+ (padNum 10) (compPinRef "K1")
+ (padNum 11) (compPinRef "L1")
+ (padNum 12) (compPinRef "M1")
+ (padNum 13) (compPinRef "N1")
+ (padNum 14) (compPinRef "P1")
+ (padNum 15) (compPinRef "R1")
+ (padNum 16) (compPinRef "T1")
+ (padNum 17) (compPinRef "A2")
+ (padNum 18) (compPinRef "B2")
+ (padNum 19) (compPinRef "C2")
+ (padNum 20) (compPinRef "D2")
+ (padNum 21) (compPinRef "E2")
+ (padNum 22) (compPinRef "F2")
+ (padNum 23) (compPinRef "G2")
+ (padNum 24) (compPinRef "H2")
+ (padNum 25) (compPinRef "J2")
+ (padNum 26) (compPinRef "K2")
+ (padNum 27) (compPinRef "L2")
+ (padNum 28) (compPinRef "M2")
+ (padNum 29) (compPinRef "N2")
+ (padNum 30) (compPinRef "P2")
+ (padNum 31) (compPinRef "R2")
+ (padNum 32) (compPinRef "T2")
+ (padNum 33) (compPinRef "A3")
+ (padNum 34) (compPinRef "B3")
+ (padNum 35) (compPinRef "C3")
+ (padNum 36) (compPinRef "D3")
+ (padNum 37) (compPinRef "E3")
+ (padNum 38) (compPinRef "F3")
+ (padNum 39) (compPinRef "G3")
+ (padNum 40) (compPinRef "H3")
+ (padNum 41) (compPinRef "J3")
+ (padNum 42) (compPinRef "K3")
+ (padNum 43) (compPinRef "L3")
+ (padNum 44) (compPinRef "M3")
+ (padNum 45) (compPinRef "N3")
+ (padNum 46) (compPinRef "P3")
+ (padNum 47) (compPinRef "R3")
+ (padNum 48) (compPinRef "T3")
+ (padNum 49) (compPinRef "A4")
+ (padNum 50) (compPinRef "B4")
+ (padNum 51) (compPinRef "C4")
+ (padNum 52) (compPinRef "D4")
+ (padNum 53) (compPinRef "E4")
+ (padNum 54) (compPinRef "F4")
+ (padNum 55) (compPinRef "G4")
+ (padNum 56) (compPinRef "H4")
+ (padNum 57) (compPinRef "J4")
+ (padNum 58) (compPinRef "K4")
+ (padNum 59) (compPinRef "L4")
+ (padNum 60) (compPinRef "M4")
+ (padNum 61) (compPinRef "N4")
+ (padNum 62) (compPinRef "P4")
+ (padNum 63) (compPinRef "R4")
+ (padNum 64) (compPinRef "T4")
+ (padNum 65) (compPinRef "A5")
+ (padNum 66) (compPinRef "B5")
+ (padNum 67) (compPinRef "C5")
+ (padNum 68) (compPinRef "D5")
+ (padNum 69) (compPinRef "E5")
+ (padNum 70) (compPinRef "F5")
+ (padNum 71) (compPinRef "G5")
+ (padNum 72) (compPinRef "H5")
+ (padNum 73) (compPinRef "J5")
+ (padNum 74) (compPinRef "K5")
+ (padNum 75) (compPinRef "L5")
+ (padNum 76) (compPinRef "M5")
+ (padNum 77) (compPinRef "N5")
+ (padNum 78) (compPinRef "P5")
+ (padNum 79) (compPinRef "R5")
+ (padNum 80) (compPinRef "T5")
+ (padNum 81) (compPinRef "A6")
+ (padNum 82) (compPinRef "B6")
+ (padNum 83) (compPinRef "C6")
+ (padNum 84) (compPinRef "D6")
+ (padNum 85) (compPinRef "E6")
+ (padNum 86) (compPinRef "F6")
+ (padNum 87) (compPinRef "G6")
+ (padNum 88) (compPinRef "H6")
+ (padNum 89) (compPinRef "J6")
+ (padNum 90) (compPinRef "K6")
+ (padNum 91) (compPinRef "L6")
+ (padNum 92) (compPinRef "M6")
+ (padNum 93) (compPinRef "N6")
+ (padNum 94) (compPinRef "P6")
+ (padNum 95) (compPinRef "R6")
+ (padNum 96) (compPinRef "T6")
+ (padNum 97) (compPinRef "A7")
+ (padNum 98) (compPinRef "B7")
+ (padNum 99) (compPinRef "C7")
+ (padNum 100) (compPinRef "D7")
+ (padNum 101) (compPinRef "E7")
+ (padNum 102) (compPinRef "F7")
+ (padNum 103) (compPinRef "G7")
+ (padNum 104) (compPinRef "H7")
+ (padNum 105) (compPinRef "J7")
+ (padNum 106) (compPinRef "K7")
+ (padNum 107) (compPinRef "L7")
+ (padNum 108) (compPinRef "M7")
+ (padNum 109) (compPinRef "N7")
+ (padNum 110) (compPinRef "P7")
+ (padNum 111) (compPinRef "R7")
+ (padNum 112) (compPinRef "T7")
+ (padNum 113) (compPinRef "A8")
+ (padNum 114) (compPinRef "B8")
+ (padNum 115) (compPinRef "C8")
+ (padNum 116) (compPinRef "D8")
+ (padNum 117) (compPinRef "E8")
+ (padNum 118) (compPinRef "F8")
+ (padNum 119) (compPinRef "G8")
+ (padNum 120) (compPinRef "H8")
+ (padNum 121) (compPinRef "J8")
+ (padNum 122) (compPinRef "K8")
+ (padNum 123) (compPinRef "L8")
+ (padNum 124) (compPinRef "M8")
+ (padNum 125) (compPinRef "N8")
+ (padNum 126) (compPinRef "P8")
+ (padNum 127) (compPinRef "R8")
+ (padNum 128) (compPinRef "T8")
+ (padNum 129) (compPinRef "A9")
+ (padNum 130) (compPinRef "B9")
+ (padNum 131) (compPinRef "C9")
+ (padNum 132) (compPinRef "D9")
+ (padNum 133) (compPinRef "E9")
+ (padNum 134) (compPinRef "F9")
+ (padNum 135) (compPinRef "G9")
+ (padNum 136) (compPinRef "H9")
+ (padNum 137) (compPinRef "J9")
+ (padNum 138) (compPinRef "K9")
+ (padNum 139) (compPinRef "L9")
+ (padNum 140) (compPinRef "M9")
+ (padNum 141) (compPinRef "N9")
+ (padNum 142) (compPinRef "P9")
+ (padNum 143) (compPinRef "R9")
+ (padNum 144) (compPinRef "T9")
+ (padNum 145) (compPinRef "A10")
+ (padNum 146) (compPinRef "B10")
+ (padNum 147) (compPinRef "C10")
+ (padNum 148) (compPinRef "D10")
+ (padNum 149) (compPinRef "E10")
+ (padNum 150) (compPinRef "F10")
+ (padNum 151) (compPinRef "G10")
+ (padNum 152) (compPinRef "H10")
+ (padNum 153) (compPinRef "J10")
+ (padNum 154) (compPinRef "K10")
+ (padNum 155) (compPinRef "L10")
+ (padNum 156) (compPinRef "M10")
+ (padNum 157) (compPinRef "N10")
+ (padNum 158) (compPinRef "P10")
+ (padNum 159) (compPinRef "R10")
+ (padNum 160) (compPinRef "T10")
+ (padNum 161) (compPinRef "A11")
+ (padNum 162) (compPinRef "B11")
+ (padNum 163) (compPinRef "C11")
+ (padNum 164) (compPinRef "D11")
+ (padNum 165) (compPinRef "E11")
+ (padNum 166) (compPinRef "F11")
+ (padNum 167) (compPinRef "G11")
+ (padNum 168) (compPinRef "H11")
+ (padNum 169) (compPinRef "J11")
+ (padNum 170) (compPinRef "K11")
+ (padNum 171) (compPinRef "L11")
+ (padNum 172) (compPinRef "M11")
+ (padNum 173) (compPinRef "N11")
+ (padNum 174) (compPinRef "P11")
+ (padNum 175) (compPinRef "R11")
+ (padNum 176) (compPinRef "T11")
+ (padNum 177) (compPinRef "A12")
+ (padNum 178) (compPinRef "B12")
+ (padNum 179) (compPinRef "C12")
+ (padNum 180) (compPinRef "D12")
+ (padNum 181) (compPinRef "E12")
+ (padNum 182) (compPinRef "F12")
+ (padNum 183) (compPinRef "G12")
+ (padNum 184) (compPinRef "H12")
+ (padNum 185) (compPinRef "J12")
+ (padNum 186) (compPinRef "K12")
+ (padNum 187) (compPinRef "L12")
+ (padNum 188) (compPinRef "M12")
+ (padNum 189) (compPinRef "N12")
+ (padNum 190) (compPinRef "P12")
+ (padNum 191) (compPinRef "R12")
+ (padNum 192) (compPinRef "T12")
+ (padNum 193) (compPinRef "A13")
+ (padNum 194) (compPinRef "B13")
+ (padNum 195) (compPinRef "C13")
+ (padNum 196) (compPinRef "D13")
+ (padNum 197) (compPinRef "E13")
+ (padNum 198) (compPinRef "F13")
+ (padNum 199) (compPinRef "G13")
+ (padNum 200) (compPinRef "H13")
+ (padNum 201) (compPinRef "J13")
+ (padNum 202) (compPinRef "K13")
+ (padNum 203) (compPinRef "L13")
+ (padNum 204) (compPinRef "M13")
+ (padNum 205) (compPinRef "N13")
+ (padNum 206) (compPinRef "P13")
+ (padNum 207) (compPinRef "R13")
+ (padNum 208) (compPinRef "T13")
+ (padNum 209) (compPinRef "A14")
+ (padNum 210) (compPinRef "B14")
+ (padNum 211) (compPinRef "C14")
+ (padNum 212) (compPinRef "D14")
+ (padNum 213) (compPinRef "E14")
+ (padNum 214) (compPinRef "F14")
+ (padNum 215) (compPinRef "G14")
+ (padNum 216) (compPinRef "H14")
+ (padNum 217) (compPinRef "J14")
+ (padNum 218) (compPinRef "K14")
+ (padNum 219) (compPinRef "L14")
+ (padNum 220) (compPinRef "M14")
+ (padNum 221) (compPinRef "N14")
+ (padNum 222) (compPinRef "P14")
+ (padNum 223) (compPinRef "R14")
+ (padNum 224) (compPinRef "T14")
+ (padNum 225) (compPinRef "A15")
+ (padNum 226) (compPinRef "B15")
+ (padNum 227) (compPinRef "C15")
+ (padNum 228) (compPinRef "D15")
+ (padNum 229) (compPinRef "E15")
+ (padNum 230) (compPinRef "F15")
+ (padNum 231) (compPinRef "G15")
+ (padNum 232) (compPinRef "H15")
+ (padNum 233) (compPinRef "J15")
+ (padNum 234) (compPinRef "K15")
+ (padNum 235) (compPinRef "L15")
+ (padNum 236) (compPinRef "M15")
+ (padNum 237) (compPinRef "N15")
+ (padNum 238) (compPinRef "P15")
+ (padNum 239) (compPinRef "R15")
+ (padNum 240) (compPinRef "T15")
+ (padNum 241) (compPinRef "A16")
+ (padNum 242) (compPinRef "B16")
+ (padNum 243) (compPinRef "C16")
+ (padNum 244) (compPinRef "D16")
+ (padNum 245) (compPinRef "E16")
+ (padNum 246) (compPinRef "F16")
+ (padNum 247) (compPinRef "G16")
+ (padNum 248) (compPinRef "H16")
+ (padNum 249) (compPinRef "J16")
+ (padNum 250) (compPinRef "K16")
+ (padNum 251) (compPinRef "L16")
+ (padNum 252) (compPinRef "M16")
+ (padNum 253) (compPinRef "N16")
+ (padNum 254) (compPinRef "P16")
+ (padNum 255) (compPinRef "R16")
+ (padNum 256) (compPinRef "T16")
+ )
+ )
+ (attr "Ýëåìåíò" "Ìèêðîñõåìà " (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "EPM1270F256" (textStyleRef "(Default)") )
+ )
+ (compDef "FT-245RL_1"
+ (originalName "FT-245RL")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 28)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "")
+ )
+ (compPin "1" (pinName "D0") (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "D4") (partNum 1) (symPinNum 21) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "D2") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "VCCIO") (partNum 1) (symPinNum 28) (gateEq 1) (pinEq 0) )
+ (compPin "5" (pinName "D1") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "D7") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) )
+ (compPin "7" (pinName "GND") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (compPin "8" (pinName "nc") (partNum 1) (symPinNum 22) (gateEq 1) (pinEq 0) )
+ (compPin "9" (pinName "D5") (partNum 1) (symPinNum 23) (gateEq 1) (pinEq 0) )
+ (compPin "10" (pinName "D6") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "11" (pinName "D3") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "12" (pinName "PWR") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "13" (pinName "RD#") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "14" (pinName "WR") (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 0) )
+ (compPin "15" (pinName "USB+") (partNum 1) (symPinNum 24) (gateEq 1) (pinEq 0) )
+ (compPin "16" (pinName "USB-") (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 0) )
+ (compPin "17" (pinName "3,3out") (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 0) )
+ (compPin "18" (pinName "GND") (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 0) )
+ (compPin "19" (pinName "RES#") (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 0) )
+ (compPin "20" (pinName "VCC") (partNum 1) (symPinNum 25) (gateEq 1) (pinEq 0) )
+ (compPin "21" (pinName "GND") (partNum 1) (symPinNum 26) (gateEq 1) (pinEq 0) )
+ (compPin "22" (pinName "TXE#") (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 0) )
+ (compPin "23" (pinName "RXF#") (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 0) )
+ (compPin "24" (pinName "nc") (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 0) )
+ (compPin "25" (pinName "AGND") (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 0) )
+ (compPin "26" (pinName "TEST") (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 0) )
+ (compPin "27" (pinName "OSCI") (partNum 1) (symPinNum 27) (gateEq 1) (pinEq 0) )
+ (compPin "28" (pinName "OSCO") (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "FT-245RL") )
+ (attachedPattern (patternNum 1) (patternName "SSOP28")
+ (numPads 28)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ (padNum 21) (compPinRef "21")
+ (padNum 22) (compPinRef "22")
+ (padNum 23) (compPinRef "23")
+ (padNum 24) (compPinRef "24")
+ (padNum 25) (compPinRef "25")
+ (padNum 26) (compPinRef "26")
+ (padNum 27) (compPinRef "27")
+ (padNum 28) (compPinRef "28")
+ )
+ )
+ )
+ (compDef "KXO-97_1"
+ (originalName "KXO-97")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 4)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "~OFF") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "GND") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "OUT") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "VDC") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "KXO-97") )
+ (attachedPattern (patternNum 1) (patternName "KXO-97")
+ (numPads 4)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ )
+ )
+ )
+ (compDef "BH14_1"
+ (originalName "BH14")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 14)
+ (numParts 2)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XK")
+ )
+ (compPin "P1" (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 0) )
+ (compPin "P2" (partNum 2) (symPinNum 7) (gateEq 0) (pinEq 0) )
+ (compPin "P3" (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "P4" (partNum 2) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "P5" (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "P6" (partNum 2) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "P7" (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "P8" (partNum 2) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "P9" (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "P10" (partNum 2) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "P11" (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "P12" (partNum 2) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "P13" (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "P14" (partNum 2) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "BH-14") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "BH14(1)") )
+ (attachedPattern (patternNum 1) (patternName "BH14")
+ (numPads 14)
+ (padPinMap
+ (padNum 1) (compPinRef "P1")
+ (padNum 2) (compPinRef "P2")
+ (padNum 3) (compPinRef "P3")
+ (padNum 4) (compPinRef "P4")
+ (padNum 5) (compPinRef "P5")
+ (padNum 6) (compPinRef "P6")
+ (padNum 7) (compPinRef "P7")
+ (padNum 8) (compPinRef "P8")
+ (padNum 9) (compPinRef "P9")
+ (padNum 10) (compPinRef "P10")
+ (padNum 11) (compPinRef "P11")
+ (padNum 12) (compPinRef "P12")
+ (padNum 13) (compPinRef "P13")
+ (padNum 14) (compPinRef "P14")
+ )
+ )
+ )
+ (compDef "NDS8434A_1"
+ (originalName "NDS8434A")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "VT")
+ )
+ (compPin "1" (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "5" (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) )
+ (compPin "7" (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (compPin "8" (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "NDS8434A") )
+ (attachedPattern (patternNum 1) (patternName "SOIC-8")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Òðàíçèñòîð NDS8434A" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "xxxxxx" (textStyleRef "(Default)") )
+ )
+ (compDef "LM1117_1"
+ (originalName "LM1117")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 3)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "GND") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "Vout") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "Vin") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "LM1117") )
+ (attachedPattern (patternNum 1) (patternName "TO-252")
+ (numPads 3)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ )
+ )
+ )
+ (compDef "ZHCS1000_1"
+ (originalName "ZHCS1000")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 3)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "VD")
+ )
+ (compPin "1" (pinName "K") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Power) )
+ (compPin "2" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) )
+ (compPin "3" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Power) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "DIODE") )
+ (attachedPattern (patternNum 1) (patternName "SOT-23")
+ (numPads 3)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Äèîä ZHCS1000" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Zetex Semiconductors" (textStyleRef "(Default)") )
+ )
+ (compDef "MT48LC16M16A2_1"
+ (originalName "MT48LC16M16A2")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 54)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "Vdd") (partNum 1) (symPinNum 51) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "DQ0") (partNum 1) (symPinNum 47) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "Vddq") (partNum 1) (symPinNum 48) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "DQ1") (partNum 1) (symPinNum 49) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "DQ2") (partNum 1) (symPinNum 50) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "VssQ") (partNum 1) (symPinNum 32) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "7" (pinName "DQ3") (partNum 1) (symPinNum 43) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "DQ4") (partNum 1) (symPinNum 46) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "9" (pinName "VddQ") (partNum 1) (symPinNum 31) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "10" (pinName "DQ5") (partNum 1) (symPinNum 44) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "11" (pinName "DQ6") (partNum 1) (symPinNum 45) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "12" (pinName "VssQ") (partNum 1) (symPinNum 54) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "13" (pinName "DQ7") (partNum 1) (symPinNum 38) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "14" (pinName "Vdd") (partNum 1) (symPinNum 39) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "15" (pinName "DQML") (partNum 1) (symPinNum 40) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "16" (pinName "~WE") (partNum 1) (symPinNum 41) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "17" (pinName "~CAS") (partNum 1) (symPinNum 42) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "18" (pinName "~RAS") (partNum 1) (symPinNum 53) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "19" (pinName "~CS") (partNum 1) (symPinNum 34) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "20" (pinName "BA0") (partNum 1) (symPinNum 35) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "21" (pinName "BA1") (partNum 1) (symPinNum 36) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "22" (pinName "A10") (partNum 1) (symPinNum 37) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "23" (pinName "A0") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "24" (pinName "A1") (partNum 1) (symPinNum 27) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "25" (pinName "A2") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "26" (pinName "A3") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "27" (pinName "Vdd") (partNum 1) (symPinNum 33) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "28" (pinName "Vss") (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "29" (pinName "A4") (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "30" (pinName "A5") (partNum 1) (symPinNum 8) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "31" (pinName "A6") (partNum 1) (symPinNum 28) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "32" (pinName "A7") (partNum 1) (symPinNum 9) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "33" (pinName "A8") (partNum 1) (symPinNum 10) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "34" (pinName "A9") (partNum 1) (symPinNum 11) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "35" (pinName "A11") (partNum 1) (symPinNum 12) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "36" (pinName "A12") (partNum 1) (symPinNum 13) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "37" (pinName "CKE") (partNum 1) (symPinNum 29) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "38" (pinName "CLK") (partNum 1) (symPinNum 14) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "39" (pinName "DQMH") (partNum 1) (symPinNum 52) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "40" (pinName "NC") (partNum 1) (symPinNum 15) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "41" (pinName "Vss") (partNum 1) (symPinNum 16) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "42" (pinName "DQ8") (partNum 1) (symPinNum 17) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "43" (pinName "VddQ") (partNum 1) (symPinNum 30) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "44" (pinName "DQ9") (partNum 1) (symPinNum 18) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "45" (pinName "DQ10") (partNum 1) (symPinNum 19) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "46" (pinName "VssQ") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "47" (pinName "DQ11") (partNum 1) (symPinNum 20) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "48" (pinName "DQ12") (partNum 1) (symPinNum 21) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "49" (pinName "VddQ") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "50" (pinName "DQ13") (partNum 1) (symPinNum 22) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "51" (pinName "DQ14") (partNum 1) (symPinNum 23) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "52" (pinName "VssQ") (partNum 1) (symPinNum 24) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "53" (pinName "DQ15") (partNum 1) (symPinNum 25) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "54" (pinName "Vss") (partNum 1) (symPinNum 26) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "MT48LC16M16A2") )
+ (attachedPattern (patternNum 1) (patternName "TSOP-54")
+ (numPads 54)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ (padNum 21) (compPinRef "21")
+ (padNum 22) (compPinRef "22")
+ (padNum 23) (compPinRef "23")
+ (padNum 24) (compPinRef "24")
+ (padNum 25) (compPinRef "25")
+ (padNum 26) (compPinRef "26")
+ (padNum 27) (compPinRef "27")
+ (padNum 28) (compPinRef "28")
+ (padNum 29) (compPinRef "29")
+ (padNum 30) (compPinRef "30")
+ (padNum 31) (compPinRef "31")
+ (padNum 32) (compPinRef "32")
+ (padNum 33) (compPinRef "33")
+ (padNum 34) (compPinRef "34")
+ (padNum 35) (compPinRef "35")
+ (padNum 36) (compPinRef "36")
+ (padNum 37) (compPinRef "37")
+ (padNum 38) (compPinRef "38")
+ (padNum 39) (compPinRef "39")
+ (padNum 40) (compPinRef "40")
+ (padNum 41) (compPinRef "41")
+ (padNum 42) (compPinRef "42")
+ (padNum 43) (compPinRef "43")
+ (padNum 44) (compPinRef "44")
+ (padNum 45) (compPinRef "45")
+ (padNum 46) (compPinRef "46")
+ (padNum 47) (compPinRef "47")
+ (padNum 48) (compPinRef "48")
+ (padNum 49) (compPinRef "49")
+ (padNum 50) (compPinRef "50")
+ (padNum 51) (compPinRef "51")
+ (padNum 52) (compPinRef "52")
+ (padNum 53) (compPinRef "53")
+ (padNum 54) (compPinRef "54")
+ )
+ )
+ )
+ (compDef "NET2272_1"
+ (originalName "NET2272")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 64)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "VDDC") (partNum 1) (symPinNum 24) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "RPU") (partNum 1) (symPinNum 51) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "VDD25") (partNum 1) (symPinNum 25) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "GND") (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "RSDP") (partNum 1) (symPinNum 50) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "DP") (partNum 1) (symPinNum 49) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "7" (pinName "VDD33") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "DM") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "9" (pinName "RSDM") (partNum 1) (symPinNum 53) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "10" (pinName "GND") (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "11" (pinName "PVDD") (partNum 1) (symPinNum 55) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "12" (pinName "AVSS") (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "13" (pinName "RREF") (partNum 1) (symPinNum 21) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "14" (pinName "AVSS") (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "15" (pinName "AVDD") (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "16" (pinName "COM") (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "17" (pinName "TMC2") (partNum 1) (symPinNum 30) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "18" (pinName "TEST") (partNum 1) (symPinNum 36) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "19" (pinName "LD0") (partNum 1) (symPinNum 63) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "20" (pinName "LD1") (partNum 1) (symPinNum 62) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "21" (pinName "LD2") (partNum 1) (symPinNum 41) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "22" (pinName "LD3") (partNum 1) (symPinNum 44) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "23" (pinName "LD4") (partNum 1) (symPinNum 42) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "24" (pinName "VSSC") (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "25" (pinName "XIN") (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "26" (pinName "XOUT") (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "27" (pinName "VDDIO") (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "28" (pinName "LA4") (partNum 1) (symPinNum 57) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "29" (pinName "LA3") (partNum 1) (symPinNum 28) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "30" (pinName "LA2") (partNum 1) (symPinNum 26) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "31" (pinName "LA1") (partNum 1) (symPinNum 27) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "32" (pinName "LA0") (partNum 1) (symPinNum 29) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "33" (pinName "VSSIO") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "34" (pinName "~dmaWR") (partNum 1) (symPinNum 48) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "35" (pinName "LD5") (partNum 1) (symPinNum 40) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "36" (pinName "LD6") (partNum 1) (symPinNum 43) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "37" (pinName "LD7") (partNum 1) (symPinNum 64) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "38" (pinName "LD8") (partNum 1) (symPinNum 33) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "39" (pinName "LD9") (partNum 1) (symPinNum 35) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "40" (pinName "TRST") (partNum 1) (symPinNum 58) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "41" (pinName "VSSIO") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "42" (pinName "VDDIO") (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "43" (pinName "LD10") (partNum 1) (symPinNum 32) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "44" (pinName "LD11") (partNum 1) (symPinNum 31) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "45" (pinName "LD12") (partNum 1) (symPinNum 34) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "46" (pinName "LD13") (partNum 1) (symPinNum 61) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "47" (pinName "LD14") (partNum 1) (symPinNum 22) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "48" (pinName "VDDC") (partNum 1) (symPinNum 56) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "49" (pinName "LD15") (partNum 1) (symPinNum 23) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "50" (pinName "~dmaRD") (partNum 1) (symPinNum 47) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "51" (pinName "DACK") (partNum 1) (symPinNum 46) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "52" (pinName "EOT") (partNum 1) (symPinNum 60) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "53" (pinName "ALE") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "54" (pinName "VSSIO") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "55" (pinName "VDDIO") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "56" (pinName "VSSC") (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "57" (pinName "CLK0") (partNum 1) (symPinNum 39) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "58" (pinName "~RESET") (partNum 1) (symPinNum 52) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "59" (pinName "~IOR") (partNum 1) (symPinNum 59) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "60" (pinName "~IOW") (partNum 1) (symPinNum 45) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "61" (pinName "~CS") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "62" (pinName "DREQ") (partNum 1) (symPinNum 37) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "63" (pinName "~IRQ") (partNum 1) (symPinNum 38) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "64" (pinName "VBUS") (partNum 1) (symPinNum 54) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "NET2272") )
+ (attachedPattern (patternNum 1) (patternName "TQFP-64(NET2272)")
+ (numPads 64)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ (padNum 21) (compPinRef "21")
+ (padNum 22) (compPinRef "22")
+ (padNum 23) (compPinRef "23")
+ (padNum 24) (compPinRef "24")
+ (padNum 25) (compPinRef "25")
+ (padNum 26) (compPinRef "26")
+ (padNum 27) (compPinRef "27")
+ (padNum 28) (compPinRef "28")
+ (padNum 29) (compPinRef "29")
+ (padNum 30) (compPinRef "30")
+ (padNum 31) (compPinRef "31")
+ (padNum 32) (compPinRef "32")
+ (padNum 33) (compPinRef "33")
+ (padNum 34) (compPinRef "34")
+ (padNum 35) (compPinRef "35")
+ (padNum 36) (compPinRef "36")
+ (padNum 37) (compPinRef "37")
+ (padNum 38) (compPinRef "38")
+ (padNum 39) (compPinRef "39")
+ (padNum 40) (compPinRef "40")
+ (padNum 41) (compPinRef "41")
+ (padNum 42) (compPinRef "42")
+ (padNum 43) (compPinRef "43")
+ (padNum 44) (compPinRef "44")
+ (padNum 45) (compPinRef "45")
+ (padNum 46) (compPinRef "46")
+ (padNum 47) (compPinRef "47")
+ (padNum 48) (compPinRef "48")
+ (padNum 49) (compPinRef "49")
+ (padNum 50) (compPinRef "50")
+ (padNum 51) (compPinRef "51")
+ (padNum 52) (compPinRef "52")
+ (padNum 53) (compPinRef "53")
+ (padNum 54) (compPinRef "54")
+ (padNum 55) (compPinRef "55")
+ (padNum 56) (compPinRef "56")
+ (padNum 57) (compPinRef "57")
+ (padNum 58) (compPinRef "58")
+ (padNum 59) (compPinRef "59")
+ (padNum 60) (compPinRef "60")
+ (padNum 61) (compPinRef "61")
+ (padNum 62) (compPinRef "62")
+ (padNum 63) (compPinRef "63")
+ (padNum 64) (compPinRef "64")
+ )
+ )
+ )
+ (compDef "MC100LVEL22D_1"
+ (originalName "MC100LVEL22D")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "Q0") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "~Q0") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "Q1") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "~Q1") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "5" (pinName "GND") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "D1") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (compPin "7" (pinName "D0") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) )
+ (compPin "8" (pinName "VCC") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "MC100LVEL22D") )
+ (attachedPattern (patternNum 1) (patternName "SOIC-8")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ )
+ (compDef "XP-JP_1"
+ (originalName "XP-JP")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XP")
+ )
+ (compPin "1" (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "XP2") )
+ (attachedPattern (patternNum 1) (patternName "XP2")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Âèëêà JP2" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "(Default)") )
+ )
+ (compDef "ADM705_1"
+ (originalName "ADM705")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "~MR") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "VCC") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "GND") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "PFI") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "PF") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "WDI") (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "7" (pinName "RES") (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "WDO") (partNum 1) (symPinNum 8) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "ADM705") )
+ (attachedPattern (patternNum 1) (patternName "DIP-8")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ )
+ (compDef "EP2C20F484_1"
+ (originalName "EP2C20F484")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 484)
+ (numParts 3)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "A1" (pinName "GND") (partNum 1) (symPinNum 93) (gateEq 0) (pinEq 0) )
+ (compPin "B1" (pinName "VCCIO") (partNum 1) (symPinNum 55) (gateEq 0) (pinEq 0) )
+ (compPin "C1" (pinName "IN/OUT") (partNum 1) (symPinNum 38) (gateEq 0) (pinEq 1) )
+ (compPin "D1" (pinName "IN/OUT") (partNum 1) (symPinNum 82) (gateEq 0) (pinEq 1) )
+ (compPin "E1" (pinName "IN/OUT") (partNum 1) (symPinNum 97) (gateEq 0) (pinEq 1) )
+ (compPin "F1" (pinName "IN/OUT") (partNum 1) (symPinNum 151) (gateEq 0) (pinEq 1) )
+ (compPin "G1" (pinName "NC") (partNum 1) (symPinNum 132) (gateEq 0) (pinEq 0) )
+ (compPin "H1" (pinName "IN/OUT") (partNum 1) (symPinNum 163) (gateEq 0) (pinEq 1) )
+ (compPin "J1" (pinName "IN/OUT") (partNum 2) (symPinNum 164) (gateEq 0) (pinEq 1) )
+ (compPin "K1" (pinName "nCE") (partNum 2) (symPinNum 112) (gateEq 0) (pinEq 0) )
+ (compPin "L1" (pinName "CLK0") (partNum 2) (symPinNum 104) (gateEq 0) (pinEq 0) )
+ (compPin "M1" (pinName "CLK2") (partNum 2) (symPinNum 96) (gateEq 0) (pinEq 0) )
+ (compPin "N1" (pinName "IN/OUT") (partNum 2) (symPinNum 66) (gateEq 0) (pinEq 1) )
+ (compPin "P1" (pinName "IN/OUT") (partNum 2) (symPinNum 53) (gateEq 0) (pinEq 1) )
+ (compPin "R1" (pinName "IN/OUT") (partNum 2) (symPinNum 36) (gateEq 0) (pinEq 1) )
+ (compPin "T1" (pinName "IN/OUT") (partNum 2) (symPinNum 20) (gateEq 0) (pinEq 1) )
+ (compPin "U1" (pinName "IN/OUT") (partNum 3) (symPinNum 53) (gateEq 0) (pinEq 1) )
+ (compPin "V1" (pinName "IN/OUT") (partNum 3) (symPinNum 36) (gateEq 0) (pinEq 1) )
+ (compPin "W1" (pinName "IN/OUT") (partNum 3) (symPinNum 22) (gateEq 0) (pinEq 1) )
+ (compPin "Y1" (pinName "IN/OUT") (partNum 3) (symPinNum 89) (gateEq 0) (pinEq 1) )
+ (compPin "AA1" (pinName "VCCIO") (partNum 3) (symPinNum 125) (gateEq 0) (pinEq 0) )
+ (compPin "AB1" (pinName "GND") (partNum 3) (symPinNum 71) (gateEq 0) (pinEq 0) )
+ (compPin "A2" (pinName "VCCIO") (partNum 1) (symPinNum 65) (gateEq 0) (pinEq 0) )
+ (compPin "B2" (pinName "GND") (partNum 1) (symPinNum 53) (gateEq 0) (pinEq 0) )
+ (compPin "C2" (pinName "IN/OUT") (partNum 1) (symPinNum 36) (gateEq 0) (pinEq 1) )
+ (compPin "D2" (pinName "IN/OUT") (partNum 1) (symPinNum 81) (gateEq 0) (pinEq 1) )
+ (compPin "E2" (pinName "IN/OUT") (partNum 1) (symPinNum 70) (gateEq 0) (pinEq 1) )
+ (compPin "F2" (pinName "IN/OUT") (partNum 1) (symPinNum 152) (gateEq 0) (pinEq 1) )
+ (compPin "G2" (pinName "NC") (partNum 1) (symPinNum 133) (gateEq 0) (pinEq 0) )
+ (compPin "H2" (pinName "IN/OUT") (partNum 1) (symPinNum 164) (gateEq 0) (pinEq 1) )
+ (compPin "J2" (pinName "IN/OUT") (partNum 2) (symPinNum 163) (gateEq 0) (pinEq 1) )
+ (compPin "K2" (pinName "TCK") (partNum 2) (symPinNum 113) (gateEq 0) (pinEq 0) )
+ (compPin "L2" (pinName "CLK1") (partNum 2) (symPinNum 120) (gateEq 0) (pinEq 0) )
+ (compPin "M2" (pinName "CLK3") (partNum 2) (symPinNum 97) (gateEq 0) (pinEq 0) )
+ (compPin "N2" (pinName "IN/OUT") (partNum 2) (symPinNum 67) (gateEq 0) (pinEq 1) )
+ (compPin "P2" (pinName "IN/OUT") (partNum 2) (symPinNum 54) (gateEq 0) (pinEq 1) )
+ (compPin "R2" (pinName "IN/OUT") (partNum 2) (symPinNum 79) (gateEq 0) (pinEq 1) )
+ (compPin "T2" (pinName "IN/OUT") (partNum 2) (symPinNum 19) (gateEq 0) (pinEq 1) )
+ (compPin "U2" (pinName "IN/OUT") (partNum 3) (symPinNum 52) (gateEq 0) (pinEq 1) )
+ (compPin "V2" (pinName "IN/OUT") (partNum 3) (symPinNum 101) (gateEq 0) (pinEq 1) )
+ (compPin "W2" (pinName "IN/OUT") (partNum 3) (symPinNum 23) (gateEq 0) (pinEq 1) )
+ (compPin "Y2" (pinName "IN/OUT") (partNum 3) (symPinNum 88) (gateEq 0) (pinEq 1) )
+ (compPin "AA2" (pinName "GND") (partNum 3) (symPinNum 132) (gateEq 0) (pinEq 0) )
+ (compPin "AB2" (pinName "VCCIO") (partNum 3) (symPinNum 69) (gateEq 0) (pinEq 0) )
+ (compPin "A3" (pinName "IN/OUT") (partNum 1) (symPinNum 66) (gateEq 0) (pinEq 1) )
+ (compPin "B3" (pinName "IN/OUT") (partNum 1) (symPinNum 88) (gateEq 0) (pinEq 1) )
+ (compPin "C3" (pinName "IN/OUT") (partNum 1) (symPinNum 34) (gateEq 0) (pinEq 1) )
+ (compPin "D3" (pinName "IN/OUT") (partNum 1) (symPinNum 18) (gateEq 0) (pinEq 1) )
+ (compPin "E3" (pinName "IN/OUT") (partNum 1) (symPinNum 69) (gateEq 0) (pinEq 1) )
+ (compPin "F3" (pinName "IN/OUT") (partNum 1) (symPinNum 176) (gateEq 0) (pinEq 1) )
+ (compPin "G3" (pinName "IN/OUT") (partNum 1) (symPinNum 131) (gateEq 0) (pinEq 1) )
+ (compPin "H3" (pinName "IN/OUT") (partNum 1) (symPinNum 112) (gateEq 0) (pinEq 1) )
+ (compPin "J3" (pinName "NC") (partNum 2) (symPinNum 175) (gateEq 0) (pinEq 0) )
+ (compPin "K3" (pinName "GND") (partNum 2) (symPinNum 114) (gateEq 0) (pinEq 0) )
+ (compPin "L3" (pinName "VCCIO") (partNum 2) (symPinNum 141) (gateEq 0) (pinEq 0) )
+ (compPin "M3" (pinName "VCCIO") (partNum 2) (symPinNum 125) (gateEq 0) (pinEq 0) )
+ (compPin "N3" (pinName "IN/OUT") (partNum 2) (symPinNum 87) (gateEq 0) (pinEq 1) )
+ (compPin "P3" (pinName "IN/OUT") (partNum 2) (symPinNum 51) (gateEq 0) (pinEq 1) )
+ (compPin "R3" (pinName "GND") (partNum 2) (symPinNum 31) (gateEq 0) (pinEq 0) )
+ (compPin "T3" (pinName "IN/OUT") (partNum 2) (symPinNum 2) (gateEq 0) (pinEq 1) )
+ (compPin "U3" (pinName "IN/OUT") (partNum 3) (symPinNum 50) (gateEq 0) (pinEq 1) )
+ (compPin "V3" (pinName "GND") (partNum 3) (symPinNum 35) (gateEq 0) (pinEq 0) )
+ (compPin "W3" (pinName "IN/OUT") (partNum 3) (symPinNum 21) (gateEq 0) (pinEq 1) )
+ (compPin "Y3" (pinName "IN/OUT") (partNum 3) (symPinNum 85) (gateEq 0) (pinEq 1) )
+ (compPin "AA3" (pinName "IN/OUT") (partNum 3) (symPinNum 121) (gateEq 0) (pinEq 1) )
+ (compPin "AB3" (pinName "IN/OUT") (partNum 3) (symPinNum 70) (gateEq 0) (pinEq 1) )
+ (compPin "A4" (pinName "IN/OUT") (partNum 1) (symPinNum 64) (gateEq 0) (pinEq 1) )
+ (compPin "B4" (pinName "IN/OUT") (partNum 1) (symPinNum 51) (gateEq 0) (pinEq 1) )
+ (compPin "C4" (pinName "IN/OUT") (partNum 1) (symPinNum 35) (gateEq 0) (pinEq 1) )
+ (compPin "D4" (pinName "IN/OUT") (partNum 1) (symPinNum 17) (gateEq 0) (pinEq 1) )
+ (compPin "E4" (pinName "IN/OUT") (partNum 1) (symPinNum 71) (gateEq 0) (pinEq 1) )
+ (compPin "F4" (pinName "IN/OUT") (partNum 1) (symPinNum 144) (gateEq 0) (pinEq 1) )
+ (compPin "G4" (pinName "GND") (partNum 1) (symPinNum 129) (gateEq 0) (pinEq 0) )
+ (compPin "H4" (pinName "IN/OUT") (partNum 1) (symPinNum 113) (gateEq 0) (pinEq 1) )
+ (compPin "J4" (pinName "IN/OUT") (partNum 2) (symPinNum 176) (gateEq 0) (pinEq 1) )
+ (compPin "K4" (pinName "DATA0") (partNum 2) (symPinNum 151) (gateEq 0) (pinEq 0) )
+ (compPin "L4" (pinName "nCONFIG") (partNum 2) (symPinNum 142) (gateEq 0) (pinEq 0) )
+ (compPin "M4" (pinName "GND") (partNum 2) (symPinNum 119) (gateEq 0) (pinEq 0) )
+ (compPin "N4" (pinName "IN/OUT") (partNum 2) (symPinNum 88) (gateEq 0) (pinEq 1) )
+ (compPin "P4" (pinName "NC") (partNum 2) (symPinNum 52) (gateEq 0) (pinEq 0) )
+ (compPin "R4" (pinName "NC") (partNum 2) (symPinNum 35) (gateEq 0) (pinEq 0) )
+ (compPin "T4" (pinName "VCCIO") (partNum 2) (symPinNum 73) (gateEq 0) (pinEq 0) )
+ (compPin "U4" (pinName "IN/OUT") (partNum 3) (symPinNum 54) (gateEq 0) (pinEq 1) )
+ (compPin "V4" (pinName "IN/OUT") (partNum 3) (symPinNum 32) (gateEq 0) (pinEq 1) )
+ (compPin "W4" (pinName "IN/OUT") (partNum 3) (symPinNum 95) (gateEq 0) (pinEq 1) )
+ (compPin "Y4" (pinName "IN/OUT") (partNum 3) (symPinNum 86) (gateEq 0) (pinEq 1) )
+ (compPin "AA4" (pinName "IN/OUT") (partNum 3) (symPinNum 122) (gateEq 0) (pinEq 1) )
+ (compPin "AB4" (pinName "IN/OUT") (partNum 3) (symPinNum 107) (gateEq 0) (pinEq 1) )
+ (compPin "A5" (pinName "IN/OUT") (partNum 1) (symPinNum 67) (gateEq 0) (pinEq 1) )
+ (compPin "B5" (pinName "IN/OUT") (partNum 1) (symPinNum 52) (gateEq 0) (pinEq 1) )
+ (compPin "C5" (pinName "GND") (partNum 1) (symPinNum 84) (gateEq 0) (pinEq 0) )
+ (compPin "D5" (pinName "IN/OUT") (partNum 1) (symPinNum 19) (gateEq 0) (pinEq 1) )
+ (compPin "E5" (pinName "VCD_pll3") (partNum 1) (symPinNum 72) (gateEq 0) (pinEq 0) )
+ (compPin "F5" (pinName "GND_pll3") (partNum 1) (symPinNum 145) (gateEq 0) (pinEq 0) )
+ (compPin "G5" (pinName "IN/OUT") (partNum 1) (symPinNum 168) (gateEq 0) (pinEq 1) )
+ (compPin "H5" (pinName "IN/OUT") (partNum 1) (symPinNum 114) (gateEq 0) (pinEq 1) )
+ (compPin "J5" (pinName "NC") (partNum 2) (symPinNum 127) (gateEq 0) (pinEq 0) )
+ (compPin "K5" (pinName "TDI") (partNum 2) (symPinNum 111) (gateEq 0) (pinEq 0) )
+ (compPin "L5" (pinName "TDO") (partNum 2) (symPinNum 102) (gateEq 0) (pinEq 0) )
+ (compPin "M5" (pinName "IN/OUT") (partNum 2) (symPinNum 167) (gateEq 0) (pinEq 1) )
+ (compPin "N5" (pinName "NC") (partNum 2) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "P5" (pinName "IN/OUT") (partNum 2) (symPinNum 50) (gateEq 0) (pinEq 1) )
+ (compPin "R5" (pinName "IN/OUT") (partNum 2) (symPinNum 34) (gateEq 0) (pinEq 1) )
+ (compPin "T5" (pinName "IN/OUT") (partNum 2) (symPinNum 72) (gateEq 0) (pinEq 1) )
+ (compPin "U5" (pinName "GND_pll1") (partNum 3) (symPinNum 51) (gateEq 0) (pinEq 0) )
+ (compPin "V5" (pinName "GND_pll1") (partNum 3) (symPinNum 33) (gateEq 0) (pinEq 0) )
+ (compPin "W5" (pinName "IN/OUT") (partNum 3) (symPinNum 94) (gateEq 0) (pinEq 1) )
+ (compPin "Y5" (pinName "IN/OUT") (partNum 3) (symPinNum 87) (gateEq 0) (pinEq 1) )
+ (compPin "AA5" (pinName "IN/OUT") (partNum 3) (symPinNum 123) (gateEq 0) (pinEq 1) )
+ (compPin "AB5" (pinName "IN/OUT") (partNum 3) (symPinNum 108) (gateEq 0) (pinEq 1) )
+ (compPin "A6" (pinName "IN/OUT") (partNum 1) (symPinNum 92) (gateEq 0) (pinEq 1) )
+ (compPin "B6" (pinName "IN/OUT") (partNum 1) (symPinNum 49) (gateEq 0) (pinEq 1) )
+ (compPin "C6" (pinName "VCCIO") (partNum 1) (symPinNum 32) (gateEq 0) (pinEq 0) )
+ (compPin "D6" (pinName "IN/OUT") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 1) )
+ (compPin "E6" (pinName "VCA_pll3") (partNum 1) (symPinNum 95) (gateEq 0) (pinEq 0) )
+ (compPin "F6" (pinName "GND_pll3") (partNum 1) (symPinNum 146) (gateEq 0) (pinEq 0) )
+ (compPin "G6" (pinName "IN/OUT") (partNum 1) (symPinNum 125) (gateEq 0) (pinEq 1) )
+ (compPin "H6" (pinName "IN/OUT") (partNum 1) (symPinNum 99) (gateEq 0) (pinEq 1) )
+ (compPin "J6" (pinName "NC") (partNum 2) (symPinNum 161) (gateEq 0) (pinEq 0) )
+ (compPin "K6" (pinName "TMS") (partNum 2) (symPinNum 122) (gateEq 0) (pinEq 0) )
+ (compPin "L6" (pinName "DCLK") (partNum 2) (symPinNum 103) (gateEq 0) (pinEq 0) )
+ (compPin "M6" (pinName "IN/OUT") (partNum 2) (symPinNum 124) (gateEq 0) (pinEq 1) )
+ (compPin "N6" (pinName "IN/OUT") (partNum 2) (symPinNum 65) (gateEq 0) (pinEq 1) )
+ (compPin "P6" (pinName "IN/OUT") (partNum 2) (symPinNum 84) (gateEq 0) (pinEq 1) )
+ (compPin "R6" (pinName "IN/OUT") (partNum 2) (symPinNum 32) (gateEq 0) (pinEq 1) )
+ (compPin "T6" (pinName "IN/OUT") (partNum 2) (symPinNum 1) (gateEq 0) (pinEq 1) )
+ (compPin "U6" (pinName "VCD_pll1") (partNum 3) (symPinNum 103) (gateEq 0) (pinEq 0) )
+ (compPin "V6" (pinName "GND") (partNum 3) (symPinNum 34) (gateEq 0) (pinEq 0) )
+ (compPin "W6" (pinName "VCCIO") (partNum 3) (symPinNum 19) (gateEq 0) (pinEq 0) )
+ (compPin "Y6" (pinName "IN/OUT") (partNum 3) (symPinNum 110) (gateEq 0) (pinEq 1) )
+ (compPin "AA6" (pinName "IN/OUT") (partNum 3) (symPinNum 124) (gateEq 0) (pinEq 1) )
+ (compPin "AB6" (pinName "IN/OUT") (partNum 3) (symPinNum 67) (gateEq 0) (pinEq 1) )
+ (compPin "A7" (pinName "IN/OUT") (partNum 1) (symPinNum 94) (gateEq 0) (pinEq 1) )
+ (compPin "B7" (pinName "IN/OUT") (partNum 1) (symPinNum 50) (gateEq 0) (pinEq 1) )
+ (compPin "C7" (pinName "IN/OUT") (partNum 1) (symPinNum 31) (gateEq 0) (pinEq 1) )
+ (compPin "D7" (pinName "IN/OUT") (partNum 1) (symPinNum 79) (gateEq 0) (pinEq 1) )
+ (compPin "E7" (pinName "IN/OUT") (partNum 1) (symPinNum 96) (gateEq 0) (pinEq 1) )
+ (compPin "F7" (pinName "GNA_pll3") (partNum 1) (symPinNum 147) (gateEq 0) (pinEq 0) )
+ (compPin "G7" (pinName "IN/OUT") (partNum 1) (symPinNum 126) (gateEq 0) (pinEq 1) )
+ (compPin "H7" (pinName "IN/OUT") (partNum 1) (symPinNum 162) (gateEq 0) (pinEq 1) )
+ (compPin "J7" (pinName "VCCIO") (partNum 2) (symPinNum 162) (gateEq 0) (pinEq 0) )
+ (compPin "K7" (pinName "GND") (partNum 2) (symPinNum 110) (gateEq 0) (pinEq 0) )
+ (compPin "L7" (pinName "NC") (partNum 2) (symPinNum 143) (gateEq 0) (pinEq 0) )
+ (compPin "M7" (pinName "NC") (partNum 2) (symPinNum 134) (gateEq 0) (pinEq 0) )
+ (compPin "N7" (pinName "GND") (partNum 2) (symPinNum 64) (gateEq 0) (pinEq 0) )
+ (compPin "P7" (pinName "VCCIO") (partNum 2) (symPinNum 49) (gateEq 0) (pinEq 0) )
+ (compPin "R7" (pinName "IN/OUT") (partNum 2) (symPinNum 33) (gateEq 0) (pinEq 1) )
+ (compPin "T7" (pinName "IN/OUT") (partNum 2) (symPinNum 18) (gateEq 0) (pinEq 1) )
+ (compPin "U7" (pinName "VCA_pll1") (partNum 3) (symPinNum 48) (gateEq 0) (pinEq 0) )
+ (compPin "V7" (pinName "GNA_pll1") (partNum 3) (symPinNum 31) (gateEq 0) (pinEq 0) )
+ (compPin "W7" (pinName "IN/OUT") (partNum 3) (symPinNum 18) (gateEq 0) (pinEq 1) )
+ (compPin "Y7" (pinName "IN/OUT") (partNum 3) (symPinNum 83) (gateEq 0) (pinEq 1) )
+ (compPin "AA7" (pinName "IN/OUT") (partNum 3) (symPinNum 120) (gateEq 0) (pinEq 1) )
+ (compPin "AB7" (pinName "IN/OUT") (partNum 3) (symPinNum 68) (gateEq 0) (pinEq 1) )
+ (compPin "A8" (pinName "IN/OUT") (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 1) )
+ (compPin "B8" (pinName "IN/OUT") (partNum 1) (symPinNum 48) (gateEq 0) (pinEq 1) )
+ (compPin "C8" (pinName "GND") (partNum 1) (symPinNum 33) (gateEq 0) (pinEq 0) )
+ (compPin "D8" (pinName "IN/OUT") (partNum 1) (symPinNum 80) (gateEq 0) (pinEq 1) )
+ (compPin "E8" (pinName "IN/OUT") (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 1) )
+ (compPin "F8" (pinName "IN/OUT") (partNum 1) (symPinNum 143) (gateEq 0) (pinEq 1) )
+ (compPin "G8" (pinName "IN/OUT") (partNum 1) (symPinNum 127) (gateEq 0) (pinEq 1) )
+ (compPin "H8" (pinName "IN/OUT") (partNum 1) (symPinNum 166) (gateEq 0) (pinEq 1) )
+ (compPin "J8" (pinName "NC") (partNum 2) (symPinNum 90) (gateEq 0) (pinEq 0) )
+ (compPin "K8" (pinName "NC") (partNum 2) (symPinNum 149) (gateEq 0) (pinEq 0) )
+ (compPin "L8" (pinName "IN/OUT") (partNum 2) (symPinNum 170) (gateEq 0) (pinEq 1) )
+ (compPin "M8" (pinName "NC") (partNum 2) (symPinNum 133) (gateEq 0) (pinEq 0) )
+ (compPin "N8" (pinName "NC") (partNum 2) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "P8" (pinName "IN/OUT") (partNum 2) (symPinNum 46) (gateEq 0) (pinEq 1) )
+ (compPin "R8" (pinName "IN/OUT") (partNum 2) (symPinNum 78) (gateEq 0) (pinEq 1) )
+ (compPin "T8" (pinName "IN/OUT") (partNum 2) (symPinNum 16) (gateEq 0) (pinEq 1) )
+ (compPin "U8" (pinName "IN/OUT") (partNum 3) (symPinNum 46) (gateEq 0) (pinEq 1) )
+ (compPin "V8" (pinName "IN/OUT") (partNum 3) (symPinNum 100) (gateEq 0) (pinEq 1) )
+ (compPin "W8" (pinName "IN/OUT") (partNum 3) (symPinNum 20) (gateEq 0) (pinEq 1) )
+ (compPin "Y8" (pinName "GND") (partNum 3) (symPinNum 84) (gateEq 0) (pinEq 0) )
+ (compPin "AA8" (pinName "IN/OUT") (partNum 3) (symPinNum 130) (gateEq 0) (pinEq 1) )
+ (compPin "AB8" (pinName "IN/OUT") (partNum 3) (symPinNum 65) (gateEq 0) (pinEq 1) )
+ (compPin "A9" (pinName "IN/OUT") (partNum 1) (symPinNum 63) (gateEq 0) (pinEq 1) )
+ (compPin "B9" (pinName "IN/OUT") (partNum 1) (symPinNum 87) (gateEq 0) (pinEq 1) )
+ (compPin "C9" (pinName "IN/OUT") (partNum 1) (symPinNum 30) (gateEq 0) (pinEq 1) )
+ (compPin "D9" (pinName "IN/OUT") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 1) )
+ (compPin "E9" (pinName "IN/OUT") (partNum 1) (symPinNum 68) (gateEq 0) (pinEq 1) )
+ (compPin "F9" (pinName "IN/OUT") (partNum 1) (symPinNum 175) (gateEq 0) (pinEq 1) )
+ (compPin "G9" (pinName "VCCIO") (partNum 1) (symPinNum 128) (gateEq 0) (pinEq 0) )
+ (compPin "H9" (pinName "IN/OUT") (partNum 1) (symPinNum 98) (gateEq 0) (pinEq 1) )
+ (compPin "J9" (pinName "NC") (partNum 2) (symPinNum 123) (gateEq 0) (pinEq 0) )
+ (compPin "K9" (pinName "VCCINT") (partNum 2) (symPinNum 150) (gateEq 0) (pinEq 0) )
+ (compPin "L9" (pinName "VCCINT") (partNum 2) (symPinNum 140) (gateEq 0) (pinEq 0) )
+ (compPin "M9" (pinName "VCCINT") (partNum 2) (symPinNum 135) (gateEq 0) (pinEq 0) )
+ (compPin "N9" (pinName "VCCINT") (partNum 2) (symPinNum 86) (gateEq 0) (pinEq 0) )
+ (compPin "P9" (pinName "IN/OUT") (partNum 2) (symPinNum 45) (gateEq 0) (pinEq 1) )
+ (compPin "R9" (pinName "IN/OUT") (partNum 2) (symPinNum 27) (gateEq 0) (pinEq 1) )
+ (compPin "T9" (pinName "VCCIO") (partNum 2) (symPinNum 17) (gateEq 0) (pinEq 0) )
+ (compPin "U9" (pinName "IN/OUT") (partNum 3) (symPinNum 4) (gateEq 0) (pinEq 1) )
+ (compPin "V9" (pinName "IN/OUT") (partNum 3) (symPinNum 99) (gateEq 0) (pinEq 1) )
+ (compPin "W9" (pinName "IN/OUT") (partNum 3) (symPinNum 17) (gateEq 0) (pinEq 1) )
+ (compPin "Y9" (pinName "IN/OUT") (partNum 3) (symPinNum 6) (gateEq 0) (pinEq 1) )
+ (compPin "AA9" (pinName "IN/OUT") (partNum 3) (symPinNum 131) (gateEq 0) (pinEq 1) )
+ (compPin "AB9" (pinName "IN/OUT") (partNum 3) (symPinNum 66) (gateEq 0) (pinEq 1) )
+ (compPin "A10" (pinName "IN/OUT") (partNum 1) (symPinNum 62) (gateEq 0) (pinEq 1) )
+ (compPin "B10" (pinName "IN/OUT") (partNum 1) (symPinNum 45) (gateEq 0) (pinEq 1) )
+ (compPin "C10" (pinName "IN/OUT") (partNum 1) (symPinNum 29) (gateEq 0) (pinEq 1) )
+ (compPin "D10" (pinName "GND") (partNum 1) (symPinNum 14) (gateEq 0) (pinEq 0) )
+ (compPin "E10" (pinName "VCCIO") (partNum 1) (symPinNum 157) (gateEq 0) (pinEq 0) )
+ (compPin "F10" (pinName "IN/OUT") (partNum 1) (symPinNum 140) (gateEq 0) (pinEq 1) )
+ (compPin "G10" (pinName "GND") (partNum 1) (symPinNum 124) (gateEq 0) (pinEq 0) )
+ (compPin "H10" (pinName "IN/OUT") (partNum 1) (symPinNum 109) (gateEq 0) (pinEq 1) )
+ (compPin "J10" (pinName "VCCINT") (partNum 2) (symPinNum 174) (gateEq 0) (pinEq 0) )
+ (compPin "K10" (pinName "GND") (partNum 2) (symPinNum 109) (gateEq 0) (pinEq 0) )
+ (compPin "L10" (pinName "GND") (partNum 2) (symPinNum 99) (gateEq 0) (pinEq 0) )
+ (compPin "M10" (pinName "GND") (partNum 2) (symPinNum 118) (gateEq 0) (pinEq 0) )
+ (compPin "N10" (pinName "GND") (partNum 2) (symPinNum 82) (gateEq 0) (pinEq 0) )
+ (compPin "P10" (pinName "VCCINT") (partNum 2) (symPinNum 47) (gateEq 0) (pinEq 0) )
+ (compPin "R10" (pinName "IN/OUT") (partNum 2) (symPinNum 30) (gateEq 0) (pinEq 1) )
+ (compPin "T10" (pinName "GND") (partNum 2) (symPinNum 71) (gateEq 0) (pinEq 0) )
+ (compPin "U10" (pinName "IN/OUT") (partNum 3) (symPinNum 49) (gateEq 0) (pinEq 1) )
+ (compPin "V10" (pinName "VCCIO") (partNum 3) (symPinNum 29) (gateEq 0) (pinEq 0) )
+ (compPin "W10" (pinName "GND") (partNum 3) (symPinNum 91) (gateEq 0) (pinEq 0) )
+ (compPin "Y10" (pinName "IN/OUT") (partNum 3) (symPinNum 81) (gateEq 0) (pinEq 1) )
+ (compPin "AA10" (pinName "IN/OUT") (partNum 3) (symPinNum 116) (gateEq 0) (pinEq 1) )
+ (compPin "AB10" (pinName "IN/OUT") (partNum 3) (symPinNum 106) (gateEq 0) (pinEq 1) )
+ (compPin "A11" (pinName "IN/OUT") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 1) )
+ (compPin "B11" (pinName "IN/OUT") (partNum 1) (symPinNum 46) (gateEq 0) (pinEq 1) )
+ (compPin "C11" (pinName "VCCIO") (partNum 1) (symPinNum 85) (gateEq 0) (pinEq 0) )
+ (compPin "D11" (pinName "IN/OUT") (partNum 1) (symPinNum 15) (gateEq 0) (pinEq 1) )
+ (compPin "E11" (pinName "IN/OUT") (partNum 1) (symPinNum 102) (gateEq 0) (pinEq 1) )
+ (compPin "F11" (pinName "IN/OUT") (partNum 1) (symPinNum 138) (gateEq 0) (pinEq 1) )
+ (compPin "G11" (pinName "IN/OUT") (partNum 1) (symPinNum 169) (gateEq 0) (pinEq 1) )
+ (compPin "H11" (pinName "IN/OUT") (partNum 1) (symPinNum 110) (gateEq 0) (pinEq 1) )
+ (compPin "J11" (pinName "VCCINT") (partNum 2) (symPinNum 158) (gateEq 0) (pinEq 0) )
+ (compPin "K11" (pinName "GND") (partNum 2) (symPinNum 108) (gateEq 0) (pinEq 0) )
+ (compPin "L11" (pinName "GND") (partNum 2) (symPinNum 100) (gateEq 0) (pinEq 0) )
+ (compPin "M11" (pinName "GND") (partNum 2) (symPinNum 115) (gateEq 0) (pinEq 0) )
+ (compPin "N11" (pinName "GND") (partNum 2) (symPinNum 61) (gateEq 0) (pinEq 0) )
+ (compPin "P11" (pinName "VCCINT") (partNum 2) (symPinNum 48) (gateEq 0) (pinEq 0) )
+ (compPin "R11" (pinName "IN/OUT") (partNum 2) (symPinNum 29) (gateEq 0) (pinEq 1) )
+ (compPin "T11" (pinName "IN/OUT") (partNum 2) (symPinNum 70) (gateEq 0) (pinEq 1) )
+ (compPin "U11" (pinName "CLK15") (partNum 3) (symPinNum 47) (gateEq 0) (pinEq 0) )
+ (compPin "V11" (pinName "IN/OUT") (partNum 3) (symPinNum 28) (gateEq 0) (pinEq 1) )
+ (compPin "W11" (pinName "IN/OUT") (partNum 3) (symPinNum 92) (gateEq 0) (pinEq 1) )
+ (compPin "Y11" (pinName "VCCIO") (partNum 3) (symPinNum 82) (gateEq 0) (pinEq 0) )
+ (compPin "AA11" (pinName "IN/OUT") (partNum 3) (symPinNum 118) (gateEq 0) (pinEq 1) )
+ (compPin "AB11" (pinName "IN/OUT") (partNum 3) (symPinNum 105) (gateEq 0) (pinEq 1) )
+ (compPin "A12" (pinName "CLK9") (partNum 1) (symPinNum 89) (gateEq 0) (pinEq 0) )
+ (compPin "B12" (pinName "CLK8") (partNum 1) (symPinNum 47) (gateEq 0) (pinEq 0) )
+ (compPin "C12" (pinName "VCCIO") (partNum 1) (symPinNum 28) (gateEq 0) (pinEq 0) )
+ (compPin "D12" (pinName "CLK10") (partNum 1) (symPinNum 16) (gateEq 0) (pinEq 0) )
+ (compPin "E12" (pinName "CLK11") (partNum 1) (symPinNum 174) (gateEq 0) (pinEq 0) )
+ (compPin "F12" (pinName "IN/OUT") (partNum 1) (symPinNum 141) (gateEq 0) (pinEq 1) )
+ (compPin "G12" (pinName "IN/OUT") (partNum 1) (symPinNum 121) (gateEq 0) (pinEq 1) )
+ (compPin "H12" (pinName "IN/OUT") (partNum 1) (symPinNum 111) (gateEq 0) (pinEq 1) )
+ (compPin "J12" (pinName "VCCINT") (partNum 2) (symPinNum 159) (gateEq 0) (pinEq 0) )
+ (compPin "K12" (pinName "GND") (partNum 2) (symPinNum 121) (gateEq 0) (pinEq 0) )
+ (compPin "L12" (pinName "GND") (partNum 2) (symPinNum 98) (gateEq 0) (pinEq 0) )
+ (compPin "M12" (pinName "GND") (partNum 2) (symPinNum 93) (gateEq 0) (pinEq 0) )
+ (compPin "N12" (pinName "GND") (partNum 2) (symPinNum 62) (gateEq 0) (pinEq 0) )
+ (compPin "P12" (pinName "VCCINT") (partNum 2) (symPinNum 80) (gateEq 0) (pinEq 0) )
+ (compPin "R12" (pinName "IN/OUT") (partNum 2) (symPinNum 28) (gateEq 0) (pinEq 1) )
+ (compPin "T12" (pinName "IN/OUT") (partNum 2) (symPinNum 14) (gateEq 0) (pinEq 1) )
+ (compPin "U12" (pinName "CLK14") (partNum 3) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "V12" (pinName "CLK12") (partNum 3) (symPinNum 30) (gateEq 0) (pinEq 0) )
+ (compPin "W12" (pinName "CLK13") (partNum 3) (symPinNum 13) (gateEq 0) (pinEq 0) )
+ (compPin "Y12" (pinName "VCCIO") (partNum 3) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "AA12" (pinName "IN/OUT") (partNum 3) (symPinNum 119) (gateEq 0) (pinEq 1) )
+ (compPin "AB12" (pinName "IN/OUT") (partNum 3) (symPinNum 63) (gateEq 0) (pinEq 1) )
+ (compPin "A13" (pinName "IN/OUT") (partNum 1) (symPinNum 86) (gateEq 0) (pinEq 1) )
+ (compPin "B13" (pinName "IN/OUT") (partNum 1) (symPinNum 43) (gateEq 0) (pinEq 1) )
+ (compPin "C13" (pinName "IN/OUT") (partNum 1) (symPinNum 26) (gateEq 0) (pinEq 1) )
+ (compPin "D13" (pinName "GND") (partNum 1) (symPinNum 77) (gateEq 0) (pinEq 0) )
+ (compPin "E13" (pinName "VCCIO") (partNum 1) (symPinNum 173) (gateEq 0) (pinEq 0) )
+ (compPin "F13" (pinName "IN/OUT") (partNum 1) (symPinNum 142) (gateEq 0) (pinEq 1) )
+ (compPin "G13" (pinName "GND") (partNum 1) (symPinNum 120) (gateEq 0) (pinEq 0) )
+ (compPin "H13" (pinName "IN/OUT") (partNum 1) (symPinNum 167) (gateEq 0) (pinEq 1) )
+ (compPin "J13" (pinName "VCCINT") (partNum 2) (symPinNum 160) (gateEq 0) (pinEq 0) )
+ (compPin "K13" (pinName "GND") (partNum 2) (symPinNum 106) (gateEq 0) (pinEq 0) )
+ (compPin "L13" (pinName "GND") (partNum 2) (symPinNum 101) (gateEq 0) (pinEq 0) )
+ (compPin "M13" (pinName "GND") (partNum 2) (symPinNum 94) (gateEq 0) (pinEq 0) )
+ (compPin "N13" (pinName "GND") (partNum 2) (symPinNum 60) (gateEq 0) (pinEq 0) )
+ (compPin "P13" (pinName "VCCINT") (partNum 2) (symPinNum 43) (gateEq 0) (pinEq 0) )
+ (compPin "R13" (pinName "IN/OUT") (partNum 2) (symPinNum 26) (gateEq 0) (pinEq 1) )
+ (compPin "T13" (pinName "GND") (partNum 2) (symPinNum 15) (gateEq 0) (pinEq 0) )
+ (compPin "U13" (pinName "IN/OUT") (partNum 3) (symPinNum 43) (gateEq 0) (pinEq 1) )
+ (compPin "V13" (pinName "VCCIO") (partNum 3) (symPinNum 27) (gateEq 0) (pinEq 0) )
+ (compPin "W13" (pinName "GND") (partNum 3) (symPinNum 14) (gateEq 0) (pinEq 0) )
+ (compPin "Y13" (pinName "IN/OUT") (partNum 3) (symPinNum 80) (gateEq 0) (pinEq 1) )
+ (compPin "AA13" (pinName "IN/OUT") (partNum 3) (symPinNum 117) (gateEq 0) (pinEq 1) )
+ (compPin "AB13" (pinName "IN/OUT") (partNum 3) (symPinNum 64) (gateEq 0) (pinEq 1) )
+ (compPin "A14" (pinName "IN/OUT") (partNum 1) (symPinNum 60) (gateEq 0) (pinEq 1) )
+ (compPin "B14" (pinName "IN/OUT") (partNum 1) (symPinNum 44) (gateEq 0) (pinEq 1) )
+ (compPin "C14" (pinName "IN/OUT") (partNum 1) (symPinNum 25) (gateEq 0) (pinEq 1) )
+ (compPin "D14" (pinName "IN/OUT") (partNum 1) (symPinNum 78) (gateEq 0) (pinEq 1) )
+ (compPin "E14" (pinName "IN/OUT") (partNum 1) (symPinNum 154) (gateEq 0) (pinEq 1) )
+ (compPin "F14" (pinName "IN/OUT") (partNum 1) (symPinNum 139) (gateEq 0) (pinEq 1) )
+ (compPin "G14" (pinName "VCCIO") (partNum 1) (symPinNum 122) (gateEq 0) (pinEq 0) )
+ (compPin "H14" (pinName "IN/OUT") (partNum 1) (symPinNum 161) (gateEq 0) (pinEq 1) )
+ (compPin "J14" (pinName "IN/OUT") (partNum 2) (symPinNum 157) (gateEq 0) (pinEq 1) )
+ (compPin "K14" (pinName "VCCINT") (partNum 2) (symPinNum 148) (gateEq 0) (pinEq 0) )
+ (compPin "L14" (pinName "VCCINT") (partNum 2) (symPinNum 168) (gateEq 0) (pinEq 0) )
+ (compPin "M14" (pinName "VCCINT") (partNum 2) (symPinNum 131) (gateEq 0) (pinEq 0) )
+ (compPin "N14" (pinName "VCCINT") (partNum 2) (symPinNum 63) (gateEq 0) (pinEq 0) )
+ (compPin "P14" (pinName "NC") (partNum 2) (symPinNum 44) (gateEq 0) (pinEq 0) )
+ (compPin "R14" (pinName "IN/OUT") (partNum 2) (symPinNum 76) (gateEq 0) (pinEq 1) )
+ (compPin "T14" (pinName "VCCIO") (partNum 2) (symPinNum 12) (gateEq 0) (pinEq 0) )
+ (compPin "U14" (pinName "IN/OUT") (partNum 3) (symPinNum 42) (gateEq 0) (pinEq 1) )
+ (compPin "V14" (pinName "IN/OUT") (partNum 3) (symPinNum 98) (gateEq 0) (pinEq 1) )
+ (compPin "W14" (pinName "IN/OUT") (partNum 3) (symPinNum 16) (gateEq 0) (pinEq 1) )
+ (compPin "Y14" (pinName "IN/OUT") (partNum 3) (symPinNum 79) (gateEq 0) (pinEq 1) )
+ (compPin "AA14" (pinName "IN/OUT") (partNum 3) (symPinNum 128) (gateEq 0) (pinEq 1) )
+ (compPin "AB14" (pinName "IN/OUT") (partNum 3) (symPinNum 60) (gateEq 0) (pinEq 1) )
+ (compPin "A15" (pinName "IN/OUT") (partNum 1) (symPinNum 58) (gateEq 0) (pinEq 1) )
+ (compPin "B15" (pinName "IN/OUT") (partNum 1) (symPinNum 83) (gateEq 0) (pinEq 1) )
+ (compPin "C15" (pinName "GND") (partNum 1) (symPinNum 27) (gateEq 0) (pinEq 0) )
+ (compPin "D15" (pinName "IN/OUT") (partNum 1) (symPinNum 12) (gateEq 0) (pinEq 1) )
+ (compPin "E15" (pinName "IN/OUT") (partNum 1) (symPinNum 155) (gateEq 0) (pinEq 1) )
+ (compPin "F15" (pinName "IN/OUT") (partNum 1) (symPinNum 170) (gateEq 0) (pinEq 1) )
+ (compPin "G15" (pinName "IN/OUT") (partNum 1) (symPinNum 123) (gateEq 0) (pinEq 1) )
+ (compPin "H15" (pinName "IN/OUT") (partNum 1) (symPinNum 105) (gateEq 0) (pinEq 1) )
+ (compPin "J15" (pinName "IN/OUT") (partNum 2) (symPinNum 173) (gateEq 0) (pinEq 1) )
+ (compPin "K15" (pinName "NC") (partNum 2) (symPinNum 89) (gateEq 0) (pinEq 0) )
+ (compPin "L15" (pinName "NC") (partNum 2) (symPinNum 117) (gateEq 0) (pinEq 0) )
+ (compPin "M15" (pinName "NC") (partNum 2) (symPinNum 132) (gateEq 0) (pinEq 0) )
+ (compPin "N15" (pinName "IN/OUT") (partNum 2) (symPinNum 83) (gateEq 0) (pinEq 1) )
+ (compPin "P15" (pinName "IN/OUT") (partNum 2) (symPinNum 4) (gateEq 0) (pinEq 1) )
+ (compPin "R15" (pinName "IN/OUT") (partNum 2) (symPinNum 77) (gateEq 0) (pinEq 1) )
+ (compPin "T15" (pinName "IN/OUT") (partNum 2) (symPinNum 13) (gateEq 0) (pinEq 1) )
+ (compPin "U15" (pinName "IN/OUT") (partNum 3) (symPinNum 44) (gateEq 0) (pinEq 1) )
+ (compPin "V15" (pinName "IN/OUT") (partNum 3) (symPinNum 93) (gateEq 0) (pinEq 1) )
+ (compPin "W15" (pinName "IN/OUT") (partNum 3) (symPinNum 15) (gateEq 0) (pinEq 1) )
+ (compPin "Y15" (pinName "GND") (partNum 3) (symPinNum 76) (gateEq 0) (pinEq 0) )
+ (compPin "AA15" (pinName "IN/OUT") (partNum 3) (symPinNum 129) (gateEq 0) (pinEq 1) )
+ (compPin "AB15" (pinName "IN/OUT") (partNum 3) (symPinNum 61) (gateEq 0) (pinEq 1) )
+ (compPin "A16" (pinName "IN/OUT") (partNum 1) (symPinNum 61) (gateEq 0) (pinEq 1) )
+ (compPin "B16" (pinName "IN/OUT") (partNum 1) (symPinNum 39) (gateEq 0) (pinEq 1) )
+ (compPin "C16" (pinName "IN/OUT") (partNum 1) (symPinNum 24) (gateEq 0) (pinEq 1) )
+ (compPin "D16" (pinName "IN/OUT") (partNum 1) (symPinNum 11) (gateEq 0) (pinEq 1) )
+ (compPin "E16" (pinName "GNA_pll2") (partNum 1) (symPinNum 153) (gateEq 0) (pinEq 0) )
+ (compPin "F16" (pinName "VCA_pll2") (partNum 1) (symPinNum 135) (gateEq 0) (pinEq 0) )
+ (compPin "G16" (pinName "IN/OUT") (partNum 1) (symPinNum 119) (gateEq 0) (pinEq 1) )
+ (compPin "H16" (pinName "IN/OUT") (partNum 1) (symPinNum 106) (gateEq 0) (pinEq 1) )
+ (compPin "J16" (pinName "VCCIO") (partNum 2) (symPinNum 171) (gateEq 0) (pinEq 0) )
+ (compPin "K16" (pinName "GND") (partNum 2) (symPinNum 107) (gateEq 0) (pinEq 0) )
+ (compPin "L16" (pinName "NC") (partNum 2) (symPinNum 138) (gateEq 0) (pinEq 0) )
+ (compPin "M16" (pinName "NC") (partNum 2) (symPinNum 166) (gateEq 0) (pinEq 0) )
+ (compPin "N16" (pinName "GND") (partNum 2) (symPinNum 81) (gateEq 0) (pinEq 0) )
+ (compPin "P16" (pinName "VCCIO") (partNum 2) (symPinNum 42) (gateEq 0) (pinEq 0) )
+ (compPin "R16" (pinName "IN/OUT") (partNum 2) (symPinNum 25) (gateEq 0) (pinEq 1) )
+ (compPin "T16" (pinName "IN/OUT") (partNum 2) (symPinNum 68) (gateEq 0) (pinEq 1) )
+ (compPin "U16" (pinName "VCA_pll4") (partNum 3) (symPinNum 45) (gateEq 0) (pinEq 0) )
+ (compPin "V16" (pinName "GNA_pll4") (partNum 3) (symPinNum 24) (gateEq 0) (pinEq 0) )
+ (compPin "W16" (pinName "IN/OUT") (partNum 3) (symPinNum 12) (gateEq 0) (pinEq 1) )
+ (compPin "Y16" (pinName "IN/OUT") (partNum 3) (symPinNum 78) (gateEq 0) (pinEq 1) )
+ (compPin "AA16" (pinName "IN/OUT") (partNum 3) (symPinNum 113) (gateEq 0) (pinEq 1) )
+ (compPin "AB16" (pinName "IN/OUT") (partNum 3) (symPinNum 62) (gateEq 0) (pinEq 1) )
+ (compPin "A17" (pinName "IN/OUT") (partNum 1) (symPinNum 59) (gateEq 0) (pinEq 1) )
+ (compPin "B17" (pinName "IN/OUT") (partNum 1) (symPinNum 40) (gateEq 0) (pinEq 1) )
+ (compPin "C17" (pinName "IN/OUT") (partNum 1) (symPinNum 75) (gateEq 0) (pinEq 1) )
+ (compPin "D17" (pinName "VCCIO") (partNum 1) (symPinNum 10) (gateEq 0) (pinEq 0) )
+ (compPin "E17" (pinName "GND_pll2") (partNum 1) (symPinNum 156) (gateEq 0) (pinEq 0) )
+ (compPin "F17" (pinName "VCD_pll2") (partNum 1) (symPinNum 137) (gateEq 0) (pinEq 0) )
+ (compPin "G17" (pinName "IN/OUT") (partNum 1) (symPinNum 165) (gateEq 0) (pinEq 1) )
+ (compPin "H17" (pinName "IN/OUT") (partNum 1) (symPinNum 107) (gateEq 0) (pinEq 1) )
+ (compPin "J17" (pinName "IN/OUT") (partNum 2) (symPinNum 155) (gateEq 0) (pinEq 1) )
+ (compPin "K17" (pinName "NC") (partNum 2) (symPinNum 147) (gateEq 0) (pinEq 0) )
+ (compPin "L17" (pinName "NC") (partNum 2) (symPinNum 136) (gateEq 0) (pinEq 0) )
+ (compPin "M17" (pinName "MSEL0") (partNum 2) (symPinNum 165) (gateEq 0) (pinEq 0) )
+ (compPin "N17" (pinName "MSEL1") (partNum 2) (symPinNum 59) (gateEq 0) (pinEq 0) )
+ (compPin "P17" (pinName "IN/OUT") (partNum 2) (symPinNum 41) (gateEq 0) (pinEq 1) )
+ (compPin "R17" (pinName "IN/OUT") (partNum 2) (symPinNum 24) (gateEq 0) (pinEq 1) )
+ (compPin "T17" (pinName "GND") (partNum 2) (symPinNum 69) (gateEq 0) (pinEq 0) )
+ (compPin "U17" (pinName "VCD_pll4") (partNum 3) (symPinNum 41) (gateEq 0) (pinEq 0) )
+ (compPin "V17" (pinName "GND") (partNum 3) (symPinNum 26) (gateEq 0) (pinEq 0) )
+ (compPin "W17" (pinName "VCCIO") (partNum 3) (symPinNum 90) (gateEq 0) (pinEq 0) )
+ (compPin "Y17" (pinName "IN/OUT") (partNum 3) (symPinNum 77) (gateEq 0) (pinEq 1) )
+ (compPin "AA17" (pinName "IN/OUT") (partNum 3) (symPinNum 114) (gateEq 0) (pinEq 1) )
+ (compPin "AB17" (pinName "IN/OUT") (partNum 3) (symPinNum 104) (gateEq 0) (pinEq 1) )
+ (compPin "A18" (pinName "IN/OUT") (partNum 1) (symPinNum 90) (gateEq 0) (pinEq 1) )
+ (compPin "B18" (pinName "IN/OUT") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 1) )
+ (compPin "C18" (pinName "IN/OUT") (partNum 1) (symPinNum 76) (gateEq 0) (pinEq 1) )
+ (compPin "D18" (pinName "GND") (partNum 1) (symPinNum 13) (gateEq 0) (pinEq 0) )
+ (compPin "E18" (pinName "IN/OUT") (partNum 1) (symPinNum 171) (gateEq 0) (pinEq 1) )
+ (compPin "F18" (pinName "GND_pll2") (partNum 1) (symPinNum 101) (gateEq 0) (pinEq 0) )
+ (compPin "G18" (pinName "IN/OUT") (partNum 1) (symPinNum 160) (gateEq 0) (pinEq 1) )
+ (compPin "H18" (pinName "IN/OUT") (partNum 1) (symPinNum 108) (gateEq 0) (pinEq 1) )
+ (compPin "J18" (pinName "IN/OUT") (partNum 2) (symPinNum 156) (gateEq 0) (pinEq 1) )
+ (compPin "K18" (pinName "NC") (partNum 2) (symPinNum 126) (gateEq 0) (pinEq 0) )
+ (compPin "L18" (pinName "IN/OUT") (partNum 2) (symPinNum 137) (gateEq 0) (pinEq 1) )
+ (compPin "M18" (pinName "IN/OUT") (partNum 2) (symPinNum 129) (gateEq 0) (pinEq 1) )
+ (compPin "N18" (pinName "CONF_D") (partNum 2) (symPinNum 56) (gateEq 0) (pinEq 0) )
+ (compPin "P18" (pinName "IN/OUT") (partNum 2) (symPinNum 3) (gateEq 0) (pinEq 1) )
+ (compPin "R18" (pinName "IN/OUT") (partNum 2) (symPinNum 22) (gateEq 0) (pinEq 1) )
+ (compPin "T18" (pinName "IN/OUT") (partNum 2) (symPinNum 9) (gateEq 0) (pinEq 1) )
+ (compPin "U18" (pinName "IN/OUT") (partNum 3) (symPinNum 102) (gateEq 0) (pinEq 1) )
+ (compPin "V18" (pinName "GND_pll4") (partNum 3) (symPinNum 25) (gateEq 0) (pinEq 0) )
+ (compPin "W18" (pinName "NC") (partNum 3) (symPinNum 9) (gateEq 0) (pinEq 0) )
+ (compPin "Y18" (pinName "IN/OUT") (partNum 3) (symPinNum 109) (gateEq 0) (pinEq 1) )
+ (compPin "AA18" (pinName "IN/OUT") (partNum 3) (symPinNum 115) (gateEq 0) (pinEq 1) )
+ (compPin "AB18" (pinName "IN/OUT") (partNum 3) (symPinNum 58) (gateEq 0) (pinEq 1) )
+ (compPin "A19" (pinName "IN/OUT") (partNum 1) (symPinNum 91) (gateEq 0) (pinEq 1) )
+ (compPin "B19" (pinName "IN/OUT") (partNum 1) (symPinNum 41) (gateEq 0) (pinEq 1) )
+ (compPin "C19" (pinName "IN/OUT") (partNum 1) (symPinNum 20) (gateEq 0) (pinEq 1) )
+ (compPin "D19" (pinName "IN/OUT") (partNum 1) (symPinNum 74) (gateEq 0) (pinEq 1) )
+ (compPin "E19" (pinName "IN/OUT") (partNum 1) (symPinNum 172) (gateEq 0) (pinEq 1) )
+ (compPin "F19" (pinName "GND") (partNum 1) (symPinNum 136) (gateEq 0) (pinEq 0) )
+ (compPin "G19" (pinName "VCCIO") (partNum 1) (symPinNum 118) (gateEq 0) (pinEq 0) )
+ (compPin "H19" (pinName "IN/OUT") (partNum 1) (symPinNum 158) (gateEq 0) (pinEq 1) )
+ (compPin "J19" (pinName "IN/OUT") (partNum 2) (symPinNum 152) (gateEq 0) (pinEq 1) )
+ (compPin "K19" (pinName "GND") (partNum 2) (symPinNum 105) (gateEq 0) (pinEq 0) )
+ (compPin "L19" (pinName "IN/OUT") (partNum 2) (symPinNum 139) (gateEq 0) (pinEq 1) )
+ (compPin "M19" (pinName "IN/OUT") (partNum 2) (symPinNum 128) (gateEq 0) (pinEq 1) )
+ (compPin "N19" (pinName "GND") (partNum 2) (symPinNum 55) (gateEq 0) (pinEq 0) )
+ (compPin "P19" (pinName "NC") (partNum 2) (symPinNum 38) (gateEq 0) (pinEq 0) )
+ (compPin "R19" (pinName "IN/OUT") (partNum 2) (symPinNum 23) (gateEq 0) (pinEq 1) )
+ (compPin "T19" (pinName "VCCIO") (partNum 2) (symPinNum 10) (gateEq 0) (pinEq 0) )
+ (compPin "U19" (pinName "IN/OUT") (partNum 3) (symPinNum 37) (gateEq 0) (pinEq 1) )
+ (compPin "V19" (pinName "IN/OUT") (partNum 3) (symPinNum 2) (gateEq 0) (pinEq 1) )
+ (compPin "W19" (pinName "GND") (partNum 3) (symPinNum 8) (gateEq 0) (pinEq 0) )
+ (compPin "Y19" (pinName "IN/OUT") (partNum 3) (symPinNum 74) (gateEq 0) (pinEq 1) )
+ (compPin "AA19" (pinName "IN/OUT") (partNum 3) (symPinNum 112) (gateEq 0) (pinEq 1) )
+ (compPin "AB19" (pinName "IN/OUT") (partNum 3) (symPinNum 59) (gateEq 0) (pinEq 1) )
+ (compPin "A20" (pinName "IN/OUT") (partNum 1) (symPinNum 54) (gateEq 0) (pinEq 1) )
+ (compPin "B20" (pinName "IN/OUT") (partNum 1) (symPinNum 42) (gateEq 0) (pinEq 1) )
+ (compPin "C20" (pinName "IN/OUT") (partNum 1) (symPinNum 21) (gateEq 0) (pinEq 1) )
+ (compPin "D20" (pinName "IN/OUT") (partNum 1) (symPinNum 73) (gateEq 0) (pinEq 1) )
+ (compPin "E20" (pinName "IN/OUT") (partNum 1) (symPinNum 150) (gateEq 0) (pinEq 1) )
+ (compPin "F20" (pinName "IN/OUT") (partNum 1) (symPinNum 134) (gateEq 0) (pinEq 1) )
+ (compPin "G20" (pinName "IN/OUT") (partNum 1) (symPinNum 117) (gateEq 0) (pinEq 1) )
+ (compPin "H20" (pinName "GND") (partNum 1) (symPinNum 159) (gateEq 0) (pinEq 0) )
+ (compPin "J20" (pinName "IN/OUT") (partNum 2) (symPinNum 154) (gateEq 0) (pinEq 1) )
+ (compPin "K20" (pinName "IN/OUT") (partNum 2) (symPinNum 144) (gateEq 0) (pinEq 1) )
+ (compPin "L20" (pinName "VCCIO") (partNum 2) (symPinNum 169) (gateEq 0) (pinEq 0) )
+ (compPin "M20" (pinName "VCCIO") (partNum 2) (symPinNum 130) (gateEq 0) (pinEq 0) )
+ (compPin "N20" (pinName "nSTATUS") (partNum 2) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "P20" (pinName "NC") (partNum 2) (symPinNum 39) (gateEq 0) (pinEq 0) )
+ (compPin "R20" (pinName "IN/OUT") (partNum 2) (symPinNum 74) (gateEq 0) (pinEq 1) )
+ (compPin "T20" (pinName "GND") (partNum 2) (symPinNum 11) (gateEq 0) (pinEq 0) )
+ (compPin "U20" (pinName "IN/OUT") (partNum 3) (symPinNum 38) (gateEq 0) (pinEq 1) )
+ (compPin "V20" (pinName "IN/OUT") (partNum 3) (symPinNum 96) (gateEq 0) (pinEq 1) )
+ (compPin "W20" (pinName "IN/OUT") (partNum 3) (symPinNum 10) (gateEq 0) (pinEq 1) )
+ (compPin "Y20" (pinName "IN/OUT") (partNum 3) (symPinNum 75) (gateEq 0) (pinEq 1) )
+ (compPin "AA20" (pinName "IN/OUT") (partNum 3) (symPinNum 126) (gateEq 0) (pinEq 1) )
+ (compPin "AB20" (pinName "IN/OUT") (partNum 3) (symPinNum 55) (gateEq 0) (pinEq 1) )
+ (compPin "A21" (pinName "VCCIO") (partNum 1) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "B21" (pinName "GND") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "C21" (pinName "IN/OUT") (partNum 1) (symPinNum 22) (gateEq 0) (pinEq 1) )
+ (compPin "D21" (pinName "IN/OUT") (partNum 1) (symPinNum 9) (gateEq 0) (pinEq 1) )
+ (compPin "E21" (pinName "IN/OUT") (partNum 1) (symPinNum 149) (gateEq 0) (pinEq 1) )
+ (compPin "F21" (pinName "IN/OUT") (partNum 1) (symPinNum 100) (gateEq 0) (pinEq 1) )
+ (compPin "G21" (pinName "IN/OUT") (partNum 1) (symPinNum 115) (gateEq 0) (pinEq 1) )
+ (compPin "H21" (pinName "NC") (partNum 1) (symPinNum 103) (gateEq 0) (pinEq 0) )
+ (compPin "J21" (pinName "IN/OUT") (partNum 2) (symPinNum 153) (gateEq 0) (pinEq 1) )
+ (compPin "K21" (pinName "IN/OUT") (partNum 2) (symPinNum 145) (gateEq 0) (pinEq 1) )
+ (compPin "L21" (pinName "CLK5") (partNum 2) (symPinNum 116) (gateEq 0) (pinEq 0) )
+ (compPin "M21" (pinName "CLK7") (partNum 2) (symPinNum 91) (gateEq 0) (pinEq 0) )
+ (compPin "N21" (pinName "IN/OUT") (partNum 2) (symPinNum 58) (gateEq 0) (pinEq 1) )
+ (compPin "P21" (pinName "NC") (partNum 2) (symPinNum 40) (gateEq 0) (pinEq 0) )
+ (compPin "R21" (pinName "IN/OUT") (partNum 2) (symPinNum 75) (gateEq 0) (pinEq 1) )
+ (compPin "T21" (pinName "IN/OUT") (partNum 2) (symPinNum 7) (gateEq 0) (pinEq 1) )
+ (compPin "U21" (pinName "IN/OUT") (partNum 3) (symPinNum 39) (gateEq 0) (pinEq 1) )
+ (compPin "V21" (pinName "IN/OUT") (partNum 3) (symPinNum 97) (gateEq 0) (pinEq 1) )
+ (compPin "W21" (pinName "IN/OUT") (partNum 3) (symPinNum 11) (gateEq 0) (pinEq 1) )
+ (compPin "Y21" (pinName "IN/OUT") (partNum 3) (symPinNum 72) (gateEq 0) (pinEq 1) )
+ (compPin "AA21" (pinName "GND") (partNum 3) (symPinNum 127) (gateEq 0) (pinEq 0) )
+ (compPin "AB21" (pinName "VCCIO") (partNum 3) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "A22" (pinName "GND") (partNum 1) (symPinNum 56) (gateEq 0) (pinEq 0) )
+ (compPin "B22" (pinName "VCCIO") (partNum 1) (symPinNum 37) (gateEq 0) (pinEq 0) )
+ (compPin "C22" (pinName "IN/OUT") (partNum 1) (symPinNum 23) (gateEq 0) (pinEq 1) )
+ (compPin "D22" (pinName "IN/OUT") (partNum 1) (symPinNum 8) (gateEq 0) (pinEq 1) )
+ (compPin "E22" (pinName "IN/OUT") (partNum 1) (symPinNum 148) (gateEq 0) (pinEq 1) )
+ (compPin "F22" (pinName "IN/OUT") (partNum 1) (symPinNum 130) (gateEq 0) (pinEq 1) )
+ (compPin "G22" (pinName "IN/OUT") (partNum 1) (symPinNum 116) (gateEq 0) (pinEq 1) )
+ (compPin "H22" (pinName "NC") (partNum 1) (symPinNum 104) (gateEq 0) (pinEq 0) )
+ (compPin "J22" (pinName "IN/OUT") (partNum 2) (symPinNum 172) (gateEq 0) (pinEq 1) )
+ (compPin "K22" (pinName "IN/OUT") (partNum 2) (symPinNum 146) (gateEq 0) (pinEq 1) )
+ (compPin "L22" (pinName "CLK4") (partNum 2) (symPinNum 95) (gateEq 0) (pinEq 0) )
+ (compPin "M22" (pinName "CLK6") (partNum 2) (symPinNum 92) (gateEq 0) (pinEq 0) )
+ (compPin "N22" (pinName "IN/OUT") (partNum 2) (symPinNum 85) (gateEq 0) (pinEq 1) )
+ (compPin "P22" (pinName "NC") (partNum 2) (symPinNum 37) (gateEq 0) (pinEq 0) )
+ (compPin "R22" (pinName "IN/OUT") (partNum 2) (symPinNum 21) (gateEq 0) (pinEq 1) )
+ (compPin "T22" (pinName "IN/OUT") (partNum 2) (symPinNum 8) (gateEq 0) (pinEq 1) )
+ (compPin "U22" (pinName "IN/OUT") (partNum 3) (symPinNum 40) (gateEq 0) (pinEq 1) )
+ (compPin "V22" (pinName "IN/OUT") (partNum 3) (symPinNum 1) (gateEq 0) (pinEq 1) )
+ (compPin "W22" (pinName "IN/OUT") (partNum 3) (symPinNum 7) (gateEq 0) (pinEq 1) )
+ (compPin "Y22" (pinName "IN/OUT") (partNum 3) (symPinNum 73) (gateEq 0) (pinEq 1) )
+ (compPin "AA22" (pinName "VCCIO") (partNum 3) (symPinNum 111) (gateEq 0) (pinEq 0) )
+ (compPin "AB22" (pinName "GND") (partNum 3) (symPinNum 56) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "EP2C20F484_1") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "EP2C20F484_2") )
+ (attachedSymbol (partNum 3) (altType Normal) (symbolName "EP2C20F484_3") )
+ (attachedPattern (patternNum 1) (patternName "F484")
+ (numPads 484)
+ (padPinMap
+ (padNum 1) (compPinRef "A1")
+ (padNum 2) (compPinRef "B1")
+ (padNum 3) (compPinRef "C1")
+ (padNum 4) (compPinRef "D1")
+ (padNum 5) (compPinRef "E1")
+ (padNum 6) (compPinRef "F1")
+ (padNum 7) (compPinRef "G1")
+ (padNum 8) (compPinRef "H1")
+ (padNum 9) (compPinRef "J1")
+ (padNum 10) (compPinRef "K1")
+ (padNum 11) (compPinRef "L1")
+ (padNum 12) (compPinRef "M1")
+ (padNum 13) (compPinRef "N1")
+ (padNum 14) (compPinRef "P1")
+ (padNum 15) (compPinRef "R1")
+ (padNum 16) (compPinRef "T1")
+ (padNum 17) (compPinRef "U1")
+ (padNum 18) (compPinRef "V1")
+ (padNum 19) (compPinRef "W1")
+ (padNum 20) (compPinRef "Y1")
+ (padNum 21) (compPinRef "AA1")
+ (padNum 22) (compPinRef "AB1")
+ (padNum 23) (compPinRef "A2")
+ (padNum 24) (compPinRef "B2")
+ (padNum 25) (compPinRef "C2")
+ (padNum 26) (compPinRef "D2")
+ (padNum 27) (compPinRef "E2")
+ (padNum 28) (compPinRef "F2")
+ (padNum 29) (compPinRef "G2")
+ (padNum 30) (compPinRef "H2")
+ (padNum 31) (compPinRef "J2")
+ (padNum 32) (compPinRef "K2")
+ (padNum 33) (compPinRef "L2")
+ (padNum 34) (compPinRef "M2")
+ (padNum 35) (compPinRef "N2")
+ (padNum 36) (compPinRef "P2")
+ (padNum 37) (compPinRef "R2")
+ (padNum 38) (compPinRef "T2")
+ (padNum 39) (compPinRef "U2")
+ (padNum 40) (compPinRef "V2")
+ (padNum 41) (compPinRef "W2")
+ (padNum 42) (compPinRef "Y2")
+ (padNum 43) (compPinRef "AA2")
+ (padNum 44) (compPinRef "AB2")
+ (padNum 45) (compPinRef "A3")
+ (padNum 46) (compPinRef "B3")
+ (padNum 47) (compPinRef "C3")
+ (padNum 48) (compPinRef "D3")
+ (padNum 49) (compPinRef "E3")
+ (padNum 50) (compPinRef "F3")
+ (padNum 51) (compPinRef "G3")
+ (padNum 52) (compPinRef "H3")
+ (padNum 53) (compPinRef "J3")
+ (padNum 54) (compPinRef "K3")
+ (padNum 55) (compPinRef "L3")
+ (padNum 56) (compPinRef "M3")
+ (padNum 57) (compPinRef "N3")
+ (padNum 58) (compPinRef "P3")
+ (padNum 59) (compPinRef "R3")
+ (padNum 60) (compPinRef "T3")
+ (padNum 61) (compPinRef "U3")
+ (padNum 62) (compPinRef "V3")
+ (padNum 63) (compPinRef "W3")
+ (padNum 64) (compPinRef "Y3")
+ (padNum 65) (compPinRef "AA3")
+ (padNum 66) (compPinRef "AB3")
+ (padNum 67) (compPinRef "A4")
+ (padNum 68) (compPinRef "B4")
+ (padNum 69) (compPinRef "C4")
+ (padNum 70) (compPinRef "D4")
+ (padNum 71) (compPinRef "E4")
+ (padNum 72) (compPinRef "F4")
+ (padNum 73) (compPinRef "G4")
+ (padNum 74) (compPinRef "H4")
+ (padNum 75) (compPinRef "J4")
+ (padNum 76) (compPinRef "K4")
+ (padNum 77) (compPinRef "L4")
+ (padNum 78) (compPinRef "M4")
+ (padNum 79) (compPinRef "N4")
+ (padNum 80) (compPinRef "P4")
+ (padNum 81) (compPinRef "R4")
+ (padNum 82) (compPinRef "T4")
+ (padNum 83) (compPinRef "U4")
+ (padNum 84) (compPinRef "V4")
+ (padNum 85) (compPinRef "W4")
+ (padNum 86) (compPinRef "Y4")
+ (padNum 87) (compPinRef "AA4")
+ (padNum 88) (compPinRef "AB4")
+ (padNum 89) (compPinRef "A5")
+ (padNum 90) (compPinRef "B5")
+ (padNum 91) (compPinRef "C5")
+ (padNum 92) (compPinRef "D5")
+ (padNum 93) (compPinRef "E5")
+ (padNum 94) (compPinRef "F5")
+ (padNum 95) (compPinRef "G5")
+ (padNum 96) (compPinRef "H5")
+ (padNum 97) (compPinRef "J5")
+ (padNum 98) (compPinRef "K5")
+ (padNum 99) (compPinRef "L5")
+ (padNum 100) (compPinRef "M5")
+ (padNum 101) (compPinRef "N5")
+ (padNum 102) (compPinRef "P5")
+ (padNum 103) (compPinRef "R5")
+ (padNum 104) (compPinRef "T5")
+ (padNum 105) (compPinRef "U5")
+ (padNum 106) (compPinRef "V5")
+ (padNum 107) (compPinRef "W5")
+ (padNum 108) (compPinRef "Y5")
+ (padNum 109) (compPinRef "AA5")
+ (padNum 110) (compPinRef "AB5")
+ (padNum 111) (compPinRef "A6")
+ (padNum 112) (compPinRef "B6")
+ (padNum 113) (compPinRef "C6")
+ (padNum 114) (compPinRef "D6")
+ (padNum 115) (compPinRef "E6")
+ (padNum 116) (compPinRef "F6")
+ (padNum 117) (compPinRef "G6")
+ (padNum 118) (compPinRef "H6")
+ (padNum 119) (compPinRef "J6")
+ (padNum 120) (compPinRef "K6")
+ (padNum 121) (compPinRef "L6")
+ (padNum 122) (compPinRef "M6")
+ (padNum 123) (compPinRef "N6")
+ (padNum 124) (compPinRef "P6")
+ (padNum 125) (compPinRef "R6")
+ (padNum 126) (compPinRef "T6")
+ (padNum 127) (compPinRef "U6")
+ (padNum 128) (compPinRef "V6")
+ (padNum 129) (compPinRef "W6")
+ (padNum 130) (compPinRef "Y6")
+ (padNum 131) (compPinRef "AA6")
+ (padNum 132) (compPinRef "AB6")
+ (padNum 133) (compPinRef "A7")
+ (padNum 134) (compPinRef "B7")
+ (padNum 135) (compPinRef "C7")
+ (padNum 136) (compPinRef "D7")
+ (padNum 137) (compPinRef "E7")
+ (padNum 138) (compPinRef "F7")
+ (padNum 139) (compPinRef "G7")
+ (padNum 140) (compPinRef "H7")
+ (padNum 141) (compPinRef "J7")
+ (padNum 142) (compPinRef "K7")
+ (padNum 143) (compPinRef "L7")
+ (padNum 144) (compPinRef "M7")
+ (padNum 145) (compPinRef "N7")
+ (padNum 146) (compPinRef "P7")
+ (padNum 147) (compPinRef "R7")
+ (padNum 148) (compPinRef "T7")
+ (padNum 149) (compPinRef "U7")
+ (padNum 150) (compPinRef "V7")
+ (padNum 151) (compPinRef "W7")
+ (padNum 152) (compPinRef "Y7")
+ (padNum 153) (compPinRef "AA7")
+ (padNum 154) (compPinRef "AB7")
+ (padNum 155) (compPinRef "A8")
+ (padNum 156) (compPinRef "B8")
+ (padNum 157) (compPinRef "C8")
+ (padNum 158) (compPinRef "D8")
+ (padNum 159) (compPinRef "E8")
+ (padNum 160) (compPinRef "F8")
+ (padNum 161) (compPinRef "G8")
+ (padNum 162) (compPinRef "H8")
+ (padNum 163) (compPinRef "J8")
+ (padNum 164) (compPinRef "K8")
+ (padNum 165) (compPinRef "L8")
+ (padNum 166) (compPinRef "M8")
+ (padNum 167) (compPinRef "N8")
+ (padNum 168) (compPinRef "P8")
+ (padNum 169) (compPinRef "R8")
+ (padNum 170) (compPinRef "T8")
+ (padNum 171) (compPinRef "U8")
+ (padNum 172) (compPinRef "V8")
+ (padNum 173) (compPinRef "W8")
+ (padNum 174) (compPinRef "Y8")
+ (padNum 175) (compPinRef "AA8")
+ (padNum 176) (compPinRef "AB8")
+ (padNum 177) (compPinRef "A9")
+ (padNum 178) (compPinRef "B9")
+ (padNum 179) (compPinRef "C9")
+ (padNum 180) (compPinRef "D9")
+ (padNum 181) (compPinRef "E9")
+ (padNum 182) (compPinRef "F9")
+ (padNum 183) (compPinRef "G9")
+ (padNum 184) (compPinRef "H9")
+ (padNum 185) (compPinRef "J9")
+ (padNum 186) (compPinRef "K9")
+ (padNum 187) (compPinRef "L9")
+ (padNum 188) (compPinRef "M9")
+ (padNum 189) (compPinRef "N9")
+ (padNum 190) (compPinRef "P9")
+ (padNum 191) (compPinRef "R9")
+ (padNum 192) (compPinRef "T9")
+ (padNum 193) (compPinRef "U9")
+ (padNum 194) (compPinRef "V9")
+ (padNum 195) (compPinRef "W9")
+ (padNum 196) (compPinRef "Y9")
+ (padNum 197) (compPinRef "AA9")
+ (padNum 198) (compPinRef "AB9")
+ (padNum 199) (compPinRef "A10")
+ (padNum 200) (compPinRef "B10")
+ (padNum 201) (compPinRef "C10")
+ (padNum 202) (compPinRef "D10")
+ (padNum 203) (compPinRef "E10")
+ (padNum 204) (compPinRef "F10")
+ (padNum 205) (compPinRef "G10")
+ (padNum 206) (compPinRef "H10")
+ (padNum 207) (compPinRef "J10")
+ (padNum 208) (compPinRef "K10")
+ (padNum 209) (compPinRef "L10")
+ (padNum 210) (compPinRef "M10")
+ (padNum 211) (compPinRef "N10")
+ (padNum 212) (compPinRef "P10")
+ (padNum 213) (compPinRef "R10")
+ (padNum 214) (compPinRef "T10")
+ (padNum 215) (compPinRef "U10")
+ (padNum 216) (compPinRef "V10")
+ (padNum 217) (compPinRef "W10")
+ (padNum 218) (compPinRef "Y10")
+ (padNum 219) (compPinRef "AA10")
+ (padNum 220) (compPinRef "AB10")
+ (padNum 221) (compPinRef "A11")
+ (padNum 222) (compPinRef "B11")
+ (padNum 223) (compPinRef "C11")
+ (padNum 224) (compPinRef "D11")
+ (padNum 225) (compPinRef "E11")
+ (padNum 226) (compPinRef "F11")
+ (padNum 227) (compPinRef "G11")
+ (padNum 228) (compPinRef "H11")
+ (padNum 229) (compPinRef "J11")
+ (padNum 230) (compPinRef "K11")
+ (padNum 231) (compPinRef "L11")
+ (padNum 232) (compPinRef "M11")
+ (padNum 233) (compPinRef "N11")
+ (padNum 234) (compPinRef "P11")
+ (padNum 235) (compPinRef "R11")
+ (padNum 236) (compPinRef "T11")
+ (padNum 237) (compPinRef "U11")
+ (padNum 238) (compPinRef "V11")
+ (padNum 239) (compPinRef "W11")
+ (padNum 240) (compPinRef "Y11")
+ (padNum 241) (compPinRef "AA11")
+ (padNum 242) (compPinRef "AB11")
+ (padNum 243) (compPinRef "A12")
+ (padNum 244) (compPinRef "B12")
+ (padNum 245) (compPinRef "C12")
+ (padNum 246) (compPinRef "D12")
+ (padNum 247) (compPinRef "E12")
+ (padNum 248) (compPinRef "F12")
+ (padNum 249) (compPinRef "G12")
+ (padNum 250) (compPinRef "H12")
+ (padNum 251) (compPinRef "J12")
+ (padNum 252) (compPinRef "K12")
+ (padNum 253) (compPinRef "L12")
+ (padNum 254) (compPinRef "M12")
+ (padNum 255) (compPinRef "N12")
+ (padNum 256) (compPinRef "P12")
+ (padNum 257) (compPinRef "R12")
+ (padNum 258) (compPinRef "T12")
+ (padNum 259) (compPinRef "U12")
+ (padNum 260) (compPinRef "V12")
+ (padNum 261) (compPinRef "W12")
+ (padNum 262) (compPinRef "Y12")
+ (padNum 263) (compPinRef "AA12")
+ (padNum 264) (compPinRef "AB12")
+ (padNum 265) (compPinRef "A13")
+ (padNum 266) (compPinRef "B13")
+ (padNum 267) (compPinRef "C13")
+ (padNum 268) (compPinRef "D13")
+ (padNum 269) (compPinRef "E13")
+ (padNum 270) (compPinRef "F13")
+ (padNum 271) (compPinRef "G13")
+ (padNum 272) (compPinRef "H13")
+ (padNum 273) (compPinRef "J13")
+ (padNum 274) (compPinRef "K13")
+ (padNum 275) (compPinRef "L13")
+ (padNum 276) (compPinRef "M13")
+ (padNum 277) (compPinRef "N13")
+ (padNum 278) (compPinRef "P13")
+ (padNum 279) (compPinRef "R13")
+ (padNum 280) (compPinRef "T13")
+ (padNum 281) (compPinRef "U13")
+ (padNum 282) (compPinRef "V13")
+ (padNum 283) (compPinRef "W13")
+ (padNum 284) (compPinRef "Y13")
+ (padNum 285) (compPinRef "AA13")
+ (padNum 286) (compPinRef "AB13")
+ (padNum 287) (compPinRef "A14")
+ (padNum 288) (compPinRef "B14")
+ (padNum 289) (compPinRef "C14")
+ (padNum 290) (compPinRef "D14")
+ (padNum 291) (compPinRef "E14")
+ (padNum 292) (compPinRef "F14")
+ (padNum 293) (compPinRef "G14")
+ (padNum 294) (compPinRef "H14")
+ (padNum 295) (compPinRef "J14")
+ (padNum 296) (compPinRef "K14")
+ (padNum 297) (compPinRef "L14")
+ (padNum 298) (compPinRef "M14")
+ (padNum 299) (compPinRef "N14")
+ (padNum 300) (compPinRef "P14")
+ (padNum 301) (compPinRef "R14")
+ (padNum 302) (compPinRef "T14")
+ (padNum 303) (compPinRef "U14")
+ (padNum 304) (compPinRef "V14")
+ (padNum 305) (compPinRef "W14")
+ (padNum 306) (compPinRef "Y14")
+ (padNum 307) (compPinRef "AA14")
+ (padNum 308) (compPinRef "AB14")
+ (padNum 309) (compPinRef "A15")
+ (padNum 310) (compPinRef "B15")
+ (padNum 311) (compPinRef "C15")
+ (padNum 312) (compPinRef "D15")
+ (padNum 313) (compPinRef "E15")
+ (padNum 314) (compPinRef "F15")
+ (padNum 315) (compPinRef "G15")
+ (padNum 316) (compPinRef "H15")
+ (padNum 317) (compPinRef "J15")
+ (padNum 318) (compPinRef "K15")
+ (padNum 319) (compPinRef "L15")
+ (padNum 320) (compPinRef "M15")
+ (padNum 321) (compPinRef "N15")
+ (padNum 322) (compPinRef "P15")
+ (padNum 323) (compPinRef "R15")
+ (padNum 324) (compPinRef "T15")
+ (padNum 325) (compPinRef "U15")
+ (padNum 326) (compPinRef "V15")
+ (padNum 327) (compPinRef "W15")
+ (padNum 328) (compPinRef "Y15")
+ (padNum 329) (compPinRef "AA15")
+ (padNum 330) (compPinRef "AB15")
+ (padNum 331) (compPinRef "A16")
+ (padNum 332) (compPinRef "B16")
+ (padNum 333) (compPinRef "C16")
+ (padNum 334) (compPinRef "D16")
+ (padNum 335) (compPinRef "E16")
+ (padNum 336) (compPinRef "F16")
+ (padNum 337) (compPinRef "G16")
+ (padNum 338) (compPinRef "H16")
+ (padNum 339) (compPinRef "J16")
+ (padNum 340) (compPinRef "K16")
+ (padNum 341) (compPinRef "L16")
+ (padNum 342) (compPinRef "M16")
+ (padNum 343) (compPinRef "N16")
+ (padNum 344) (compPinRef "P16")
+ (padNum 345) (compPinRef "R16")
+ (padNum 346) (compPinRef "T16")
+ (padNum 347) (compPinRef "U16")
+ (padNum 348) (compPinRef "V16")
+ (padNum 349) (compPinRef "W16")
+ (padNum 350) (compPinRef "Y16")
+ (padNum 351) (compPinRef "AA16")
+ (padNum 352) (compPinRef "AB16")
+ (padNum 353) (compPinRef "A17")
+ (padNum 354) (compPinRef "B17")
+ (padNum 355) (compPinRef "C17")
+ (padNum 356) (compPinRef "D17")
+ (padNum 357) (compPinRef "E17")
+ (padNum 358) (compPinRef "F17")
+ (padNum 359) (compPinRef "G17")
+ (padNum 360) (compPinRef "H17")
+ (padNum 361) (compPinRef "J17")
+ (padNum 362) (compPinRef "K17")
+ (padNum 363) (compPinRef "L17")
+ (padNum 364) (compPinRef "M17")
+ (padNum 365) (compPinRef "N17")
+ (padNum 366) (compPinRef "P17")
+ (padNum 367) (compPinRef "R17")
+ (padNum 368) (compPinRef "T17")
+ (padNum 369) (compPinRef "U17")
+ (padNum 370) (compPinRef "V17")
+ (padNum 371) (compPinRef "W17")
+ (padNum 372) (compPinRef "Y17")
+ (padNum 373) (compPinRef "AA17")
+ (padNum 374) (compPinRef "AB17")
+ (padNum 375) (compPinRef "A18")
+ (padNum 376) (compPinRef "B18")
+ (padNum 377) (compPinRef "C18")
+ (padNum 378) (compPinRef "D18")
+ (padNum 379) (compPinRef "E18")
+ (padNum 380) (compPinRef "F18")
+ (padNum 381) (compPinRef "G18")
+ (padNum 382) (compPinRef "H18")
+ (padNum 383) (compPinRef "J18")
+ (padNum 384) (compPinRef "K18")
+ (padNum 385) (compPinRef "L18")
+ (padNum 386) (compPinRef "M18")
+ (padNum 387) (compPinRef "N18")
+ (padNum 388) (compPinRef "P18")
+ (padNum 389) (compPinRef "R18")
+ (padNum 390) (compPinRef "T18")
+ (padNum 391) (compPinRef "U18")
+ (padNum 392) (compPinRef "V18")
+ (padNum 393) (compPinRef "W18")
+ (padNum 394) (compPinRef "Y18")
+ (padNum 395) (compPinRef "AA18")
+ (padNum 396) (compPinRef "AB18")
+ (padNum 397) (compPinRef "A19")
+ (padNum 398) (compPinRef "B19")
+ (padNum 399) (compPinRef "C19")
+ (padNum 400) (compPinRef "D19")
+ (padNum 401) (compPinRef "E19")
+ (padNum 402) (compPinRef "F19")
+ (padNum 403) (compPinRef "G19")
+ (padNum 404) (compPinRef "H19")
+ (padNum 405) (compPinRef "J19")
+ (padNum 406) (compPinRef "K19")
+ (padNum 407) (compPinRef "L19")
+ (padNum 408) (compPinRef "M19")
+ (padNum 409) (compPinRef "N19")
+ (padNum 410) (compPinRef "P19")
+ (padNum 411) (compPinRef "R19")
+ (padNum 412) (compPinRef "T19")
+ (padNum 413) (compPinRef "U19")
+ (padNum 414) (compPinRef "V19")
+ (padNum 415) (compPinRef "W19")
+ (padNum 416) (compPinRef "Y19")
+ (padNum 417) (compPinRef "AA19")
+ (padNum 418) (compPinRef "AB19")
+ (padNum 419) (compPinRef "A20")
+ (padNum 420) (compPinRef "B20")
+ (padNum 421) (compPinRef "C20")
+ (padNum 422) (compPinRef "D20")
+ (padNum 423) (compPinRef "E20")
+ (padNum 424) (compPinRef "F20")
+ (padNum 425) (compPinRef "G20")
+ (padNum 426) (compPinRef "H20")
+ (padNum 427) (compPinRef "J20")
+ (padNum 428) (compPinRef "K20")
+ (padNum 429) (compPinRef "L20")
+ (padNum 430) (compPinRef "M20")
+ (padNum 431) (compPinRef "N20")
+ (padNum 432) (compPinRef "P20")
+ (padNum 433) (compPinRef "R20")
+ (padNum 434) (compPinRef "T20")
+ (padNum 435) (compPinRef "U20")
+ (padNum 436) (compPinRef "V20")
+ (padNum 437) (compPinRef "W20")
+ (padNum 438) (compPinRef "Y20")
+ (padNum 439) (compPinRef "AA20")
+ (padNum 440) (compPinRef "AB20")
+ (padNum 441) (compPinRef "A21")
+ (padNum 442) (compPinRef "B21")
+ (padNum 443) (compPinRef "C21")
+ (padNum 444) (compPinRef "D21")
+ (padNum 445) (compPinRef "E21")
+ (padNum 446) (compPinRef "F21")
+ (padNum 447) (compPinRef "G21")
+ (padNum 448) (compPinRef "H21")
+ (padNum 449) (compPinRef "J21")
+ (padNum 450) (compPinRef "K21")
+ (padNum 451) (compPinRef "L21")
+ (padNum 452) (compPinRef "M21")
+ (padNum 453) (compPinRef "N21")
+ (padNum 454) (compPinRef "P21")
+ (padNum 455) (compPinRef "R21")
+ (padNum 456) (compPinRef "T21")
+ (padNum 457) (compPinRef "U21")
+ (padNum 458) (compPinRef "V21")
+ (padNum 459) (compPinRef "W21")
+ (padNum 460) (compPinRef "Y21")
+ (padNum 461) (compPinRef "AA21")
+ (padNum 462) (compPinRef "AB21")
+ (padNum 463) (compPinRef "A22")
+ (padNum 464) (compPinRef "B22")
+ (padNum 465) (compPinRef "C22")
+ (padNum 466) (compPinRef "D22")
+ (padNum 467) (compPinRef "E22")
+ (padNum 468) (compPinRef "F22")
+ (padNum 469) (compPinRef "G22")
+ (padNum 470) (compPinRef "H22")
+ (padNum 471) (compPinRef "J22")
+ (padNum 472) (compPinRef "K22")
+ (padNum 473) (compPinRef "L22")
+ (padNum 474) (compPinRef "M22")
+ (padNum 475) (compPinRef "N22")
+ (padNum 476) (compPinRef "P22")
+ (padNum 477) (compPinRef "R22")
+ (padNum 478) (compPinRef "T22")
+ (padNum 479) (compPinRef "U22")
+ (padNum 480) (compPinRef "V22")
+ (padNum 481) (compPinRef "W22")
+ (padNum 482) (compPinRef "Y22")
+ (padNum 483) (compPinRef "AA22")
+ (padNum 484) (compPinRef "AB22")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà EP2C2F484" (textStyleRef "(Default)") )
+ (attr "Èçãîãîâèòåëü " "Altera" (textStyleRef "(Default)") )
+ )
+ (compDef "100LVELT23_1"
+ (originalName "100LVELT23")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "D0") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "~D0") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "~D1") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "D1") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "GND") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "Q1") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "7" (pinName "Q0") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "Vcc") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "100LVELT23") )
+ (attachedPattern (patternNum 1) (patternName "SOIC-8")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ )
+ (compDef "L-C170_1"
+ (originalName "L-C170")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "HL")
+ )
+ (compPin "1" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Power) )
+ (compPin "2" (pinName "K") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Power) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "HL") )
+ (attachedPattern (patternNum 1) (patternName "L-C170")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct (srct)" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "(Default)") )
+ )
+ (compDef "LM1117-ADJ_1"
+ (originalName "LM1117-ADJ")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 3)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "GND/ADJ") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "Vout") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "Vin") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "LM1117(TO-252)") )
+ (attachedPattern (patternNum 1) (patternName "TO-252")
+ (numPads 3)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ )
+ )
+ )
+ (compDef "YC164_1"
+ (originalName "YC164")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "R")
+ )
+ (compPin "1" (pinName "1") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "2") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "3" (pinName "3") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "4" (pinName "4") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "5" (pinName "5") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "6" (pinName "6") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "7" (pinName "7") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "8" (pinName "8") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "YC164") )
+ (attachedPattern (patternNum 1) (patternName "YC164")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2K2" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (textStyleRef "(Default)") )
+ )
+ (compDef "L_SMD0805_1"
+ (originalName "L_SMD0805")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "L")
+ )
+ (compPin "A" (pinName "1") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "B" (pinName "2") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "L") )
+ (attachedPattern (patternNum 1) (patternName "SMD0805")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "A")
+ (padNum 2) (compPinRef "B")
+ )
+ )
+ )
+ (compDef "PIN40X40X24_1"
+ (originalName "PIN40X40X24")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 1)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "")
+ )
+ (compPin "1" (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "PIN") )
+ (attachedPattern (patternNum 1) (patternName "PIN40X40X24")
+ (numPads 1)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "(Default)") )
+ )
+ (compDef "AD8009_1"
+ (originalName "AD8009")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 8)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "NC") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "-In") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Input) )
+ (compPin "3" (pinName "+In") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Input) )
+ (compPin "4" (pinName "-Vcc") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Power) )
+ (compPin "5" (pinName "NC") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "Output") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) (pinType Output) )
+ (compPin "7" (pinName "+Vcc") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) (pinType Power) )
+ (compPin "8" (pinName "NC") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "AD8009") )
+ (attachedPattern (patternNum 1) (patternName "R8A")
+ (numPads 8)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà AD8009AR" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ (compDef "KXO-75_1"
+ (originalName "KXO-75")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 6)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "CV") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "N.C") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "GND") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "OUT") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "5" (pinName "TRI") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "VDD") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "KXO-75") )
+ (attachedPattern (patternNum 1) (patternName "KXO-75")
+ (numPads 6)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ )
+ )
+ )
+ (compDef "C_SMD0805_1"
+ (originalName "C_SMD0805")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "C")
+ )
+ (compPin "A" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "B" (pinName "B") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "C") )
+ (attachedPattern (patternNum 1) (patternName "SMD0805")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "A")
+ (padNum 2) (compPinRef "B")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X7R - 0.1 ìêÔ" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ (compDef "CABLE_1"
+ (originalName "CABLE")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "")
+ )
+ (compPin "RF" (pinName "RF") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "GND" (pinName "GNG") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Power) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "CABLE") )
+ (attachedPattern (patternNum 1) (patternName "CABLE")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "RF")
+ (padNum 2) (compPinRef "GND")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (textStyleRef "(Default)") )
+ )
+ (compDef "C_SMD0603_1"
+ (originalName "C_SMD0603")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "C")
+ )
+ (compPin "A" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "B" (pinName "B") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "C") )
+ (attachedPattern (patternNum 1) (patternName "SMD0603")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "A")
+ (padNum 2) (compPinRef "B")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO - 1000 ïÔ ± 10% " (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ (compDef "2D522B_1"
+ (originalName "2D522B")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "VD")
+ )
+ (compPin "1" (pinName "0") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "0") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "2D522B") )
+ (attachedPattern (patternNum 1) (patternName "2D522B")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ )
+ )
+ (attr "Value" "{Value}" (isVisible True) (textStyleRef "(Default)") )
+ )
+ (compDef "DIN3X32P_1"
+ (originalName "DIN3X32P")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 98)
+ (numParts 3)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XP")
+ (numType Numeric)
+ )
+ (compPin "A1" (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A2" (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A3" (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A4" (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A5" (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A6" (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A7" (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A8" (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A9" (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A10" (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A11" (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A12" (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A13" (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A14" (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A15" (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A16" (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A17" (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A18" (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A19" (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A20" (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A21" (partNum 1) (symPinNum 21) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A22" (partNum 1) (symPinNum 22) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A23" (partNum 1) (symPinNum 23) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A24" (partNum 1) (symPinNum 24) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A25" (partNum 1) (symPinNum 25) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A26" (partNum 1) (symPinNum 26) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A27" (partNum 1) (symPinNum 27) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A28" (partNum 1) (symPinNum 28) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A29" (partNum 1) (symPinNum 29) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A30" (partNum 1) (symPinNum 30) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A31" (partNum 1) (symPinNum 31) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "A32" (partNum 1) (symPinNum 32) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B1" (partNum 2) (symPinNum 1) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B2" (partNum 2) (symPinNum 2) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B3" (partNum 2) (symPinNum 3) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B4" (partNum 2) (symPinNum 4) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B5" (partNum 2) (symPinNum 5) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B6" (partNum 2) (symPinNum 6) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B7" (partNum 2) (symPinNum 7) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B8" (partNum 2) (symPinNum 8) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B9" (partNum 2) (symPinNum 9) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B10" (partNum 2) (symPinNum 10) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B11" (partNum 2) (symPinNum 11) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B12" (partNum 2) (symPinNum 12) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B13" (partNum 2) (symPinNum 13) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B14" (partNum 2) (symPinNum 14) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B15" (partNum 2) (symPinNum 15) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B16" (partNum 2) (symPinNum 16) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B17" (partNum 2) (symPinNum 17) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B18" (partNum 2) (symPinNum 18) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B19" (partNum 2) (symPinNum 19) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B20" (partNum 2) (symPinNum 20) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B21" (partNum 2) (symPinNum 21) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B22" (partNum 2) (symPinNum 22) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B23" (partNum 2) (symPinNum 23) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B24" (partNum 2) (symPinNum 24) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B25" (partNum 2) (symPinNum 25) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B26" (partNum 2) (symPinNum 26) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B27" (partNum 2) (symPinNum 27) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B28" (partNum 2) (symPinNum 28) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B29" (partNum 2) (symPinNum 29) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B30" (partNum 2) (symPinNum 30) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B31" (partNum 2) (symPinNum 31) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "B32" (partNum 2) (symPinNum 32) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C1" (partNum 3) (symPinNum 1) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C2" (partNum 3) (symPinNum 2) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C3" (partNum 3) (symPinNum 3) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C4" (partNum 3) (symPinNum 4) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C5" (partNum 3) (symPinNum 5) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C6" (partNum 3) (symPinNum 6) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C7" (partNum 3) (symPinNum 7) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C8" (partNum 3) (symPinNum 8) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C9" (partNum 3) (symPinNum 9) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C10" (partNum 3) (symPinNum 10) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C11" (partNum 3) (symPinNum 11) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C12" (partNum 3) (symPinNum 12) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C13" (partNum 3) (symPinNum 13) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C14" (partNum 3) (symPinNum 14) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C15" (partNum 3) (symPinNum 15) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C16" (partNum 3) (symPinNum 16) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C17" (partNum 3) (symPinNum 17) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C18" (partNum 3) (symPinNum 18) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C19" (partNum 3) (symPinNum 19) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C20" (partNum 3) (symPinNum 20) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C21" (partNum 3) (symPinNum 21) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C22" (partNum 3) (symPinNum 22) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C23" (partNum 3) (symPinNum 23) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C24" (partNum 3) (symPinNum 24) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C25" (partNum 3) (symPinNum 25) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C26" (partNum 3) (symPinNum 26) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C27" (partNum 3) (symPinNum 27) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C28" (partNum 3) (symPinNum 28) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C29" (partNum 3) (symPinNum 29) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C30" (partNum 3) (symPinNum 30) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C31" (partNum 3) (symPinNum 31) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "C32" (partNum 3) (symPinNum 32) (gateEq 1) (pinEq 1) (pinType Passive) )
+ (compPin "Mounting1" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (compPin "Mounting2" (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "XP32A") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "XP32B") )
+ (attachedSymbol (partNum 3) (altType Normal) (symbolName "XP32C") )
+ (attachedPattern (patternNum 1) (patternName "DIN3X32")
+ (numPads 98)
+ (padPinMap
+ (padNum 1) (compPinRef "A1")
+ (padNum 2) (compPinRef "A2")
+ (padNum 3) (compPinRef "A3")
+ (padNum 4) (compPinRef "A4")
+ (padNum 5) (compPinRef "A5")
+ (padNum 6) (compPinRef "A6")
+ (padNum 7) (compPinRef "A7")
+ (padNum 8) (compPinRef "A8")
+ (padNum 9) (compPinRef "A9")
+ (padNum 10) (compPinRef "A10")
+ (padNum 11) (compPinRef "A11")
+ (padNum 12) (compPinRef "A12")
+ (padNum 13) (compPinRef "A13")
+ (padNum 14) (compPinRef "A14")
+ (padNum 15) (compPinRef "A15")
+ (padNum 16) (compPinRef "A16")
+ (padNum 17) (compPinRef "A17")
+ (padNum 18) (compPinRef "A18")
+ (padNum 19) (compPinRef "A19")
+ (padNum 20) (compPinRef "A20")
+ (padNum 21) (compPinRef "A21")
+ (padNum 22) (compPinRef "A22")
+ (padNum 23) (compPinRef "A23")
+ (padNum 24) (compPinRef "A24")
+ (padNum 25) (compPinRef "A25")
+ (padNum 26) (compPinRef "A26")
+ (padNum 27) (compPinRef "A27")
+ (padNum 28) (compPinRef "A28")
+ (padNum 29) (compPinRef "A29")
+ (padNum 30) (compPinRef "A30")
+ (padNum 31) (compPinRef "A31")
+ (padNum 32) (compPinRef "A32")
+ (padNum 33) (compPinRef "B1")
+ (padNum 34) (compPinRef "B2")
+ (padNum 35) (compPinRef "B3")
+ (padNum 36) (compPinRef "B4")
+ (padNum 37) (compPinRef "B5")
+ (padNum 38) (compPinRef "B6")
+ (padNum 39) (compPinRef "B7")
+ (padNum 40) (compPinRef "B8")
+ (padNum 41) (compPinRef "B9")
+ (padNum 42) (compPinRef "B10")
+ (padNum 43) (compPinRef "B11")
+ (padNum 44) (compPinRef "B12")
+ (padNum 45) (compPinRef "B13")
+ (padNum 46) (compPinRef "B14")
+ (padNum 47) (compPinRef "B15")
+ (padNum 48) (compPinRef "B16")
+ (padNum 49) (compPinRef "B17")
+ (padNum 50) (compPinRef "B18")
+ (padNum 51) (compPinRef "B19")
+ (padNum 52) (compPinRef "B20")
+ (padNum 53) (compPinRef "B21")
+ (padNum 54) (compPinRef "B22")
+ (padNum 55) (compPinRef "B23")
+ (padNum 56) (compPinRef "B24")
+ (padNum 57) (compPinRef "B25")
+ (padNum 58) (compPinRef "B26")
+ (padNum 59) (compPinRef "B27")
+ (padNum 60) (compPinRef "B28")
+ (padNum 61) (compPinRef "B29")
+ (padNum 62) (compPinRef "B30")
+ (padNum 63) (compPinRef "B31")
+ (padNum 64) (compPinRef "B32")
+ (padNum 65) (compPinRef "C1")
+ (padNum 66) (compPinRef "C2")
+ (padNum 67) (compPinRef "C3")
+ (padNum 68) (compPinRef "C4")
+ (padNum 69) (compPinRef "C5")
+ (padNum 70) (compPinRef "C6")
+ (padNum 71) (compPinRef "C7")
+ (padNum 72) (compPinRef "C8")
+ (padNum 73) (compPinRef "C9")
+ (padNum 74) (compPinRef "C10")
+ (padNum 75) (compPinRef "C11")
+ (padNum 76) (compPinRef "C12")
+ (padNum 77) (compPinRef "C13")
+ (padNum 78) (compPinRef "C14")
+ (padNum 79) (compPinRef "C15")
+ (padNum 80) (compPinRef "C16")
+ (padNum 81) (compPinRef "C17")
+ (padNum 82) (compPinRef "C18")
+ (padNum 83) (compPinRef "C19")
+ (padNum 84) (compPinRef "C20")
+ (padNum 85) (compPinRef "C21")
+ (padNum 86) (compPinRef "C22")
+ (padNum 87) (compPinRef "C23")
+ (padNum 88) (compPinRef "C24")
+ (padNum 89) (compPinRef "C25")
+ (padNum 90) (compPinRef "C26")
+ (padNum 91) (compPinRef "C27")
+ (padNum 92) (compPinRef "C28")
+ (padNum 93) (compPinRef "C29")
+ (padNum 94) (compPinRef "C30")
+ (padNum 95) (compPinRef "C31")
+ (padNum 96) (compPinRef "C32")
+ (padNum 97) (compPinRef "Mounting1")
+ (padNum 98) (compPinRef "Mounting2")
+ )
+ )
+ (attr "Ýëåìåíò" "Âèëêà" (textStyleRef "(Default)") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9001" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "DIN EN 60603 121 A 10139 X" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "CONEC" (textStyleRef "(Default)") )
+ (attr "Value" "{Value}" (isVisible True) (textStyleRef "(Default)") )
+ )
+ (compDef "C+7343_1"
+ (originalName "C+7343")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "C")
+ )
+ (compPin "1" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "2" (pinName "B") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "C+") )
+ (attachedPattern (patternNum 1) (patternName "C+7343")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ )
+ )
+ (attr "Ýëåìåíò" "Êîíäåíñàòîð" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Tantal SMD-7343 - 10 Â - 100 ìêÔ" (textStyleRef "(Default)") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9002" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ (compDef "IS61LV51216_1_1"
+ (originalName "IS61LV51216_1")
+ (compHeader
+ (sourceLibrary "CPS.LIB")
+ (numPins 44)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "A0") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "A1") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "A2") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) )
+ (compPin "4" (pinName "A3") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) )
+ (compPin "5" (pinName "A4") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) )
+ (compPin "6" (pinName "~CE") (partNum 1) (symPinNum 21) (gateEq 1) (pinEq 0) )
+ (compPin "7" (pinName "D0") (partNum 1) (symPinNum 43) (gateEq 1) (pinEq 0) )
+ (compPin "8" (pinName "D1") (partNum 1) (symPinNum 42) (gateEq 1) (pinEq 0) )
+ (compPin "9" (pinName "D2") (partNum 1) (symPinNum 41) (gateEq 1) (pinEq 0) )
+ (compPin "10" (pinName "D3") (partNum 1) (symPinNum 40) (gateEq 1) (pinEq 0) )
+ (compPin "11" (pinName "VCC") (partNum 1) (symPinNum 26) (gateEq 1) (pinEq 0) )
+ (compPin "12" (pinName "GND") (partNum 1) (symPinNum 24) (gateEq 1) (pinEq 0) )
+ (compPin "13" (pinName "D4") (partNum 1) (symPinNum 39) (gateEq 1) (pinEq 0) )
+ (compPin "14" (pinName "D5") (partNum 1) (symPinNum 38) (gateEq 1) (pinEq 0) )
+ (compPin "15" (pinName "D6") (partNum 1) (symPinNum 37) (gateEq 1) (pinEq 0) )
+ (compPin "16" (pinName "D7") (partNum 1) (symPinNum 36) (gateEq 1) (pinEq 0) )
+ (compPin "17" (pinName "~WE") (partNum 1) (symPinNum 22) (gateEq 1) (pinEq 0) )
+ (compPin "18" (pinName "A5") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 0) )
+ (compPin "19" (pinName "A6") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 0) )
+ (compPin "20" (pinName "A7") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 0) )
+ (compPin "21" (pinName "A8") (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 0) )
+ (compPin "22" (pinName "A9") (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 0) )
+ (compPin "23" (pinName "A10") (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 0) )
+ (compPin "24" (pinName "A11") (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 0) )
+ (compPin "25" (pinName "A12") (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 0) )
+ (compPin "26" (pinName "A13") (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 0) )
+ (compPin "27" (pinName "A14") (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 0) )
+ (compPin "28" (pinName "A18") (partNum 1) (symPinNum 44) (gateEq 1) (pinEq 0) )
+ (compPin "29" (pinName "D8") (partNum 1) (symPinNum 35) (gateEq 1) (pinEq 0) )
+ (compPin "30" (pinName "D9") (partNum 1) (symPinNum 34) (gateEq 1) (pinEq 0) )
+ (compPin "31" (pinName "D10") (partNum 1) (symPinNum 33) (gateEq 1) (pinEq 0) )
+ (compPin "32" (pinName "D11") (partNum 1) (symPinNum 32) (gateEq 1) (pinEq 0) )
+ (compPin "33" (pinName "VCC") (partNum 1) (symPinNum 27) (gateEq 1) (pinEq 0) )
+ (compPin "34" (pinName "GND") (partNum 1) (symPinNum 25) (gateEq 1) (pinEq 0) )
+ (compPin "35" (pinName "D12") (partNum 1) (symPinNum 31) (gateEq 1) (pinEq 0) )
+ (compPin "36" (pinName "D13") (partNum 1) (symPinNum 30) (gateEq 1) (pinEq 0) )
+ (compPin "37" (pinName "D14") (partNum 1) (symPinNum 29) (gateEq 1) (pinEq 0) )
+ (compPin "38" (pinName "D15") (partNum 1) (symPinNum 28) (gateEq 1) (pinEq 0) )
+ (compPin "39" (pinName "~LB") (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 0) )
+ (compPin "40" (pinName "~UB") (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 0) )
+ (compPin "41" (pinName "~OE") (partNum 1) (symPinNum 23) (gateEq 1) (pinEq 0) )
+ (compPin "42" (pinName "A15") (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 0) )
+ (compPin "43" (pinName "A16") (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 0) )
+ (compPin "44" (pinName "A17") (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "IS61LV51216_1") )
+ (attachedPattern (patternNum 1) (patternName "TSOP-44")
+ (numPads 44)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ (padNum 21) (compPinRef "21")
+ (padNum 22) (compPinRef "22")
+ (padNum 23) (compPinRef "23")
+ (padNum 24) (compPinRef "24")
+ (padNum 25) (compPinRef "25")
+ (padNum 26) (compPinRef "26")
+ (padNum 27) (compPinRef "27")
+ (padNum 28) (compPinRef "28")
+ (padNum 29) (compPinRef "29")
+ (padNum 30) (compPinRef "30")
+ (padNum 31) (compPinRef "31")
+ (padNum 32) (compPinRef "32")
+ (padNum 33) (compPinRef "33")
+ (padNum 34) (compPinRef "34")
+ (padNum 35) (compPinRef "35")
+ (padNum 36) (compPinRef "36")
+ (padNum 37) (compPinRef "37")
+ (padNum 38) (compPinRef "38")
+ (padNum 39) (compPinRef "39")
+ (padNum 40) (compPinRef "40")
+ (padNum 41) (compPinRef "41")
+ (padNum 42) (compPinRef "42")
+ (padNum 43) (compPinRef "43")
+ (padNum 44) (compPinRef "44")
+ )
+ )
+ )
+ (compDef "ADSP_BF533_1"
+ (originalName "ADSP_BF533")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 169)
+ (numParts 2)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "A1" (pinName "PF4") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "A2" (pinName "PF5") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "A3" (pinName "PF7") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "A4" (pinName "PF9") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "A5" (pinName "PF11") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "A6" (pinName "PF12") (partNum 1) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "A7" (pinName "PF14") (partNum 1) (symPinNum 7) (gateEq 0) (pinEq 0) )
+ (compPin "A8" (pinName "PPI3") (partNum 1) (symPinNum 8) (gateEq 0) (pinEq 0) )
+ (compPin "A9" (pinName "PPI1") (partNum 1) (symPinNum 9) (gateEq 0) (pinEq 0) )
+ (compPin "A10" (pinName "RTXI") (partNum 1) (symPinNum 10) (gateEq 0) (pinEq 0) )
+ (compPin "A11" (pinName "RTXO") (partNum 1) (symPinNum 11) (gateEq 0) (pinEq 0) )
+ (compPin "A12" (pinName "~RESET") (partNum 1) (symPinNum 12) (gateEq 0) (pinEq 0) )
+ (compPin "A13" (pinName "XTAL") (partNum 1) (symPinNum 13) (gateEq 0) (pinEq 0) )
+ (compPin "A14" (pinName "CLKIN") (partNum 1) (symPinNum 14) (gateEq 0) (pinEq 0) )
+ (compPin "A15" (pinName "~SRAS") (partNum 1) (symPinNum 15) (gateEq 0) (pinEq 0) )
+ (compPin "A16" (pinName "~SCAS") (partNum 1) (symPinNum 16) (gateEq 0) (pinEq 0) )
+ (compPin "A17" (pinName "~SMS") (partNum 1) (symPinNum 17) (gateEq 0) (pinEq 0) )
+ (compPin "B1" (pinName "PF2") (partNum 1) (symPinNum 18) (gateEq 0) (pinEq 0) )
+ (compPin "B2" (pinName "VDDEXT") (partNum 1) (symPinNum 19) (gateEq 0) (pinEq 0) )
+ (compPin "B3" (pinName "PF6") (partNum 1) (symPinNum 20) (gateEq 0) (pinEq 0) )
+ (compPin "B4" (pinName "PF8") (partNum 1) (symPinNum 21) (gateEq 0) (pinEq 0) )
+ (compPin "B5" (pinName "PF10") (partNum 1) (symPinNum 22) (gateEq 0) (pinEq 0) )
+ (compPin "B6" (pinName "PF13") (partNum 1) (symPinNum 23) (gateEq 0) (pinEq 0) )
+ (compPin "B7" (pinName "PF15") (partNum 1) (symPinNum 24) (gateEq 0) (pinEq 0) )
+ (compPin "B8" (pinName "PPI2") (partNum 1) (symPinNum 25) (gateEq 0) (pinEq 0) )
+ (compPin "B9" (pinName "PPI0") (partNum 1) (symPinNum 26) (gateEq 0) (pinEq 0) )
+ (compPin "B10" (pinName "PPI_CLK") (partNum 1) (symPinNum 27) (gateEq 0) (pinEq 0) )
+ (compPin "B11" (pinName "NMI") (partNum 1) (symPinNum 28) (gateEq 0) (pinEq 0) )
+ (compPin "B12" (pinName "VROUT0") (partNum 1) (symPinNum 29) (gateEq 0) (pinEq 0) )
+ (compPin "B13" (pinName "VROUT1") (partNum 1) (symPinNum 30) (gateEq 0) (pinEq 0) )
+ (compPin "B14" (pinName "SCKE") (partNum 1) (symPinNum 31) (gateEq 0) (pinEq 0) )
+ (compPin "B15" (pinName "SA10") (partNum 1) (symPinNum 32) (gateEq 0) (pinEq 0) )
+ (compPin "B16" (pinName "GND") (partNum 1) (symPinNum 33) (gateEq 0) (pinEq 0) )
+ (compPin "B17" (pinName "~SWE") (partNum 1) (symPinNum 34) (gateEq 0) (pinEq 0) )
+ (compPin "C1" (pinName "PF1") (partNum 1) (symPinNum 35) (gateEq 0) (pinEq 0) )
+ (compPin "C2" (pinName "PF3") (partNum 1) (symPinNum 36) (gateEq 0) (pinEq 0) )
+ (compPin "C16" (pinName "ARDY") (partNum 1) (symPinNum 37) (gateEq 0) (pinEq 0) )
+ (compPin "C17" (pinName "~BR") (partNum 1) (symPinNum 38) (gateEq 0) (pinEq 0) )
+ (compPin "D1" (pinName "SCK") (partNum 1) (symPinNum 39) (gateEq 0) (pinEq 0) )
+ (compPin "D2" (pinName "PF0") (partNum 1) (symPinNum 40) (gateEq 0) (pinEq 0) )
+ (compPin "D16" (pinName "CLKOUT") (partNum 1) (symPinNum 41) (gateEq 0) (pinEq 0) )
+ (compPin "D17" (pinName "~AMS0") (partNum 1) (symPinNum 42) (gateEq 0) (pinEq 0) )
+ (compPin "E1" (pinName "MOSI") (partNum 1) (symPinNum 43) (gateEq 0) (pinEq 0) )
+ (compPin "E2" (pinName "MISO") (partNum 1) (symPinNum 44) (gateEq 0) (pinEq 0) )
+ (compPin "E16" (pinName "~AMS1") (partNum 1) (symPinNum 45) (gateEq 0) (pinEq 0) )
+ (compPin "E17" (pinName "~AMS2") (partNum 1) (symPinNum 46) (gateEq 0) (pinEq 0) )
+ (compPin "F1" (pinName "DT1PRI") (partNum 1) (symPinNum 47) (gateEq 0) (pinEq 0) )
+ (compPin "F2" (pinName "DT1SEC") (partNum 1) (symPinNum 48) (gateEq 0) (pinEq 0) )
+ (compPin "F6" (pinName "VDDEXT") (partNum 1) (symPinNum 49) (gateEq 0) (pinEq 0) )
+ (compPin "F7" (pinName "VDDEXT") (partNum 1) (symPinNum 50) (gateEq 0) (pinEq 0) )
+ (compPin "F8" (pinName "VDDEXT") (partNum 1) (symPinNum 51) (gateEq 0) (pinEq 0) )
+ (compPin "F9" (pinName "VDDEXT") (partNum 1) (symPinNum 52) (gateEq 0) (pinEq 0) )
+ (compPin "F10" (pinName "RTCVDD") (partNum 1) (symPinNum 53) (gateEq 0) (pinEq 0) )
+ (compPin "F11" (pinName "GND") (partNum 1) (symPinNum 54) (gateEq 0) (pinEq 0) )
+ (compPin "F12" (pinName "VDD") (partNum 1) (symPinNum 55) (gateEq 0) (pinEq 0) )
+ (compPin "F16" (pinName "~AMS3") (partNum 1) (symPinNum 56) (gateEq 0) (pinEq 0) )
+ (compPin "F17" (pinName "~AOE") (partNum 1) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "G1" (pinName "TSCLK1") (partNum 1) (symPinNum 58) (gateEq 0) (pinEq 0) )
+ (compPin "G2" (pinName "TFS1") (partNum 1) (symPinNum 59) (gateEq 0) (pinEq 0) )
+ (compPin "G6" (pinName "VDDEXT") (partNum 1) (symPinNum 60) (gateEq 0) (pinEq 0) )
+ (compPin "G7" (pinName "GND") (partNum 1) (symPinNum 61) (gateEq 0) (pinEq 0) )
+ (compPin "G8" (pinName "GND") (partNum 1) (symPinNum 62) (gateEq 0) (pinEq 0) )
+ (compPin "G9" (pinName "GND") (partNum 1) (symPinNum 63) (gateEq 0) (pinEq 0) )
+ (compPin "G10" (pinName "GND") (partNum 1) (symPinNum 64) (gateEq 0) (pinEq 0) )
+ (compPin "G11" (pinName "GND") (partNum 1) (symPinNum 65) (gateEq 0) (pinEq 0) )
+ (compPin "G12" (pinName "VDD") (partNum 1) (symPinNum 66) (gateEq 0) (pinEq 0) )
+ (compPin "G16" (pinName "~ARE") (partNum 1) (symPinNum 67) (gateEq 0) (pinEq 0) )
+ (compPin "G17" (pinName "~AWE") (partNum 1) (symPinNum 68) (gateEq 0) (pinEq 0) )
+ (compPin "H1" (pinName "DR1PRI") (partNum 1) (symPinNum 69) (gateEq 0) (pinEq 0) )
+ (compPin "H2" (pinName "DR1SEC") (partNum 1) (symPinNum 70) (gateEq 0) (pinEq 0) )
+ (compPin "H6" (pinName "VDDEXT") (partNum 1) (symPinNum 71) (gateEq 0) (pinEq 0) )
+ (compPin "H7" (pinName "GND") (partNum 1) (symPinNum 72) (gateEq 0) (pinEq 0) )
+ (compPin "H8" (pinName "GND") (partNum 1) (symPinNum 73) (gateEq 0) (pinEq 0) )
+ (compPin "H9" (pinName "GND") (partNum 1) (symPinNum 74) (gateEq 0) (pinEq 0) )
+ (compPin "H10" (pinName "GND") (partNum 1) (symPinNum 75) (gateEq 0) (pinEq 0) )
+ (compPin "H11" (pinName "GND") (partNum 1) (symPinNum 76) (gateEq 0) (pinEq 0) )
+ (compPin "H12" (pinName "VDD") (partNum 1) (symPinNum 77) (gateEq 0) (pinEq 0) )
+ (compPin "H16" (pinName "~ABE0") (partNum 1) (symPinNum 78) (gateEq 0) (pinEq 0) )
+ (compPin "H17" (pinName "~ABE1") (partNum 1) (symPinNum 79) (gateEq 0) (pinEq 0) )
+ (compPin "J1" (pinName "RFS1") (partNum 2) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "J2" (pinName "RSCLK1") (partNum 2) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "J6" (pinName "VDDEXT") (partNum 2) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "J7" (pinName "GND") (partNum 2) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "J8" (pinName "GND") (partNum 2) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "J9" (pinName "GND") (partNum 2) (symPinNum 6) (gateEq 0) (pinEq 0) )
+ (compPin "J10" (pinName "GND") (partNum 2) (symPinNum 7) (gateEq 0) (pinEq 0) )
+ (compPin "J11" (pinName "GND") (partNum 2) (symPinNum 8) (gateEq 0) (pinEq 0) )
+ (compPin "J12" (pinName "VDD") (partNum 2) (symPinNum 9) (gateEq 0) (pinEq 0) )
+ (compPin "J16" (pinName "ADDR1") (partNum 2) (symPinNum 10) (gateEq 0) (pinEq 0) )
+ (compPin "J17" (pinName "ADDR2") (partNum 2) (symPinNum 11) (gateEq 0) (pinEq 0) )
+ (compPin "K1" (pinName "DT0SEC") (partNum 2) (symPinNum 12) (gateEq 0) (pinEq 0) )
+ (compPin "K2" (pinName "DT0PRI") (partNum 2) (symPinNum 13) (gateEq 0) (pinEq 0) )
+ (compPin "K6" (pinName "VDDEXT") (partNum 2) (symPinNum 14) (gateEq 0) (pinEq 0) )
+ (compPin "K7" (pinName "GND") (partNum 2) (symPinNum 15) (gateEq 0) (pinEq 0) )
+ (compPin "K8" (pinName "GND") (partNum 2) (symPinNum 16) (gateEq 0) (pinEq 0) )
+ (compPin "K9" (pinName "GND") (partNum 2) (symPinNum 17) (gateEq 0) (pinEq 0) )
+ (compPin "K10" (pinName "GND") (partNum 2) (symPinNum 18) (gateEq 0) (pinEq 0) )
+ (compPin "K11" (pinName "GND") (partNum 2) (symPinNum 19) (gateEq 0) (pinEq 0) )
+ (compPin "K12" (pinName "VDD") (partNum 2) (symPinNum 20) (gateEq 0) (pinEq 0) )
+ (compPin "K16" (pinName "ADDR3") (partNum 2) (symPinNum 21) (gateEq 0) (pinEq 0) )
+ (compPin "K17" (pinName "ADDR4") (partNum 2) (symPinNum 22) (gateEq 0) (pinEq 0) )
+ (compPin "L1" (pinName "TFS0") (partNum 2) (symPinNum 23) (gateEq 0) (pinEq 0) )
+ (compPin "L2" (pinName "TSCLK0") (partNum 2) (symPinNum 24) (gateEq 0) (pinEq 0) )
+ (compPin "L6" (pinName "VDDEXT") (partNum 2) (symPinNum 25) (gateEq 0) (pinEq 0) )
+ (compPin "L7" (pinName "GND") (partNum 2) (symPinNum 26) (gateEq 0) (pinEq 0) )
+ (compPin "L8" (pinName "GND") (partNum 2) (symPinNum 27) (gateEq 0) (pinEq 0) )
+ (compPin "L9" (pinName "GND") (partNum 2) (symPinNum 28) (gateEq 0) (pinEq 0) )
+ (compPin "L10" (pinName "GND") (partNum 2) (symPinNum 29) (gateEq 0) (pinEq 0) )
+ (compPin "L11" (pinName "GND") (partNum 2) (symPinNum 30) (gateEq 0) (pinEq 0) )
+ (compPin "L12" (pinName "VDD") (partNum 2) (symPinNum 31) (gateEq 0) (pinEq 0) )
+ (compPin "L16" (pinName "ADDR5") (partNum 2) (symPinNum 32) (gateEq 0) (pinEq 0) )
+ (compPin "L17" (pinName "ADDR6") (partNum 2) (symPinNum 33) (gateEq 0) (pinEq 0) )
+ (compPin "M1" (pinName "DR0SEC") (partNum 2) (symPinNum 34) (gateEq 0) (pinEq 0) )
+ (compPin "M2" (pinName "DR0PRI") (partNum 2) (symPinNum 35) (gateEq 0) (pinEq 0) )
+ (compPin "M6" (pinName "VDDEXT") (partNum 2) (symPinNum 36) (gateEq 0) (pinEq 0) )
+ (compPin "M7" (pinName "VDDEXT") (partNum 2) (symPinNum 37) (gateEq 0) (pinEq 0) )
+ (compPin "M8" (pinName "VDDEXT") (partNum 2) (symPinNum 38) (gateEq 0) (pinEq 0) )
+ (compPin "M9" (pinName "GND") (partNum 2) (symPinNum 39) (gateEq 0) (pinEq 0) )
+ (compPin "M10" (pinName "VDD") (partNum 2) (symPinNum 40) (gateEq 0) (pinEq 0) )
+ (compPin "M11" (pinName "VDD") (partNum 2) (symPinNum 41) (gateEq 0) (pinEq 0) )
+ (compPin "M12" (pinName "VDD") (partNum 2) (symPinNum 42) (gateEq 0) (pinEq 0) )
+ (compPin "M16" (pinName "ADDR7") (partNum 2) (symPinNum 43) (gateEq 0) (pinEq 0) )
+ (compPin "M17" (pinName "ADDR8") (partNum 2) (symPinNum 44) (gateEq 0) (pinEq 0) )
+ (compPin "N1" (pinName "RFS0") (partNum 2) (symPinNum 45) (gateEq 0) (pinEq 0) )
+ (compPin "N2" (pinName "RSCLK0") (partNum 2) (symPinNum 46) (gateEq 0) (pinEq 0) )
+ (compPin "N16" (pinName "ADDR10") (partNum 2) (symPinNum 47) (gateEq 0) (pinEq 0) )
+ (compPin "N17" (pinName "ADDR9") (partNum 2) (symPinNum 48) (gateEq 0) (pinEq 0) )
+ (compPin "P1" (pinName "TMR2") (partNum 2) (symPinNum 49) (gateEq 0) (pinEq 0) )
+ (compPin "P2" (pinName "TMR1") (partNum 2) (symPinNum 50) (gateEq 0) (pinEq 0) )
+ (compPin "P16" (pinName "ADDR12") (partNum 2) (symPinNum 51) (gateEq 0) (pinEq 0) )
+ (compPin "P17" (pinName "ADDR11") (partNum 2) (symPinNum 52) (gateEq 0) (pinEq 0) )
+ (compPin "R1" (pinName "TMR0") (partNum 2) (symPinNum 53) (gateEq 0) (pinEq 0) )
+ (compPin "R2" (pinName "TX") (partNum 2) (symPinNum 54) (gateEq 0) (pinEq 0) )
+ (compPin "R16" (pinName "ADDR14") (partNum 2) (symPinNum 55) (gateEq 0) (pinEq 0) )
+ (compPin "R17" (pinName "ADDR13") (partNum 2) (symPinNum 56) (gateEq 0) (pinEq 0) )
+ (compPin "T1" (pinName "RX") (partNum 2) (symPinNum 57) (gateEq 0) (pinEq 0) )
+ (compPin "T2" (pinName "VDDEXT") (partNum 2) (symPinNum 58) (gateEq 0) (pinEq 0) )
+ (compPin "T3" (pinName "TMS") (partNum 2) (symPinNum 59) (gateEq 0) (pinEq 0) )
+ (compPin "T4" (pinName "TDO") (partNum 2) (symPinNum 60) (gateEq 0) (pinEq 0) )
+ (compPin "T5" (pinName "BMODE1") (partNum 2) (symPinNum 61) (gateEq 0) (pinEq 0) )
+ (compPin "T6" (pinName "DATA15") (partNum 2) (symPinNum 62) (gateEq 0) (pinEq 0) )
+ (compPin "T7" (pinName "DATA13") (partNum 2) (symPinNum 63) (gateEq 0) (pinEq 0) )
+ (compPin "T8" (pinName "DATA10") (partNum 2) (symPinNum 64) (gateEq 0) (pinEq 0) )
+ (compPin "T9" (pinName "DATA8") (partNum 2) (symPinNum 65) (gateEq 0) (pinEq 0) )
+ (compPin "T10" (pinName "DATA6") (partNum 2) (symPinNum 66) (gateEq 0) (pinEq 0) )
+ (compPin "T11" (pinName "DATA3") (partNum 2) (symPinNum 67) (gateEq 0) (pinEq 0) )
+ (compPin "T12" (pinName "DATA1") (partNum 2) (symPinNum 68) (gateEq 0) (pinEq 0) )
+ (compPin "T13" (pinName "~BG") (partNum 2) (symPinNum 69) (gateEq 0) (pinEq 0) )
+ (compPin "T14" (pinName "ADDR19") (partNum 2) (symPinNum 70) (gateEq 0) (pinEq 0) )
+ (compPin "T15" (pinName "ADDR17") (partNum 2) (symPinNum 71) (gateEq 0) (pinEq 0) )
+ (compPin "T16" (pinName "GND") (partNum 2) (symPinNum 72) (gateEq 0) (pinEq 0) )
+ (compPin "T17" (pinName "ADDR15") (partNum 2) (symPinNum 73) (gateEq 0) (pinEq 0) )
+ (compPin "U1" (pinName "~EMU") (partNum 2) (symPinNum 74) (gateEq 0) (pinEq 0) )
+ (compPin "U2" (pinName "~TRST") (partNum 2) (symPinNum 75) (gateEq 0) (pinEq 0) )
+ (compPin "U3" (pinName "TDI") (partNum 2) (symPinNum 76) (gateEq 0) (pinEq 0) )
+ (compPin "U4" (pinName "TCK") (partNum 2) (symPinNum 77) (gateEq 0) (pinEq 0) )
+ (compPin "U5" (pinName "BMODE0") (partNum 2) (symPinNum 78) (gateEq 0) (pinEq 0) )
+ (compPin "U6" (pinName "DATA14") (partNum 2) (symPinNum 79) (gateEq 0) (pinEq 0) )
+ (compPin "U7" (pinName "DATA12") (partNum 2) (symPinNum 80) (gateEq 0) (pinEq 0) )
+ (compPin "U8" (pinName "DATA11") (partNum 2) (symPinNum 81) (gateEq 0) (pinEq 0) )
+ (compPin "U9" (pinName "DATA9") (partNum 2) (symPinNum 82) (gateEq 0) (pinEq 0) )
+ (compPin "U10" (pinName "DATA7") (partNum 2) (symPinNum 83) (gateEq 0) (pinEq 0) )
+ (compPin "U11" (pinName "DATA5") (partNum 2) (symPinNum 84) (gateEq 0) (pinEq 0) )
+ (compPin "U12" (pinName "DATA4") (partNum 2) (symPinNum 85) (gateEq 0) (pinEq 0) )
+ (compPin "U13" (pinName "DATA2") (partNum 2) (symPinNum 86) (gateEq 0) (pinEq 0) )
+ (compPin "U14" (pinName "DATA0") (partNum 2) (symPinNum 87) (gateEq 0) (pinEq 0) )
+ (compPin "U15" (pinName "ADDR16") (partNum 2) (symPinNum 88) (gateEq 0) (pinEq 0) )
+ (compPin "U16" (pinName "ADDR18") (partNum 2) (symPinNum 89) (gateEq 0) (pinEq 0) )
+ (compPin "U17" (pinName "~BGH") (partNum 2) (symPinNum 90) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "ADSP_BF533-A") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "ADSP_BF533-B") )
+ (attachedPattern (patternNum 1) (patternName "B-169")
+ (numPads 169)
+ (padPinMap
+ (padNum 1) (compPinRef "A1")
+ (padNum 2) (compPinRef "A2")
+ (padNum 3) (compPinRef "A3")
+ (padNum 4) (compPinRef "A4")
+ (padNum 5) (compPinRef "A5")
+ (padNum 6) (compPinRef "A6")
+ (padNum 7) (compPinRef "A7")
+ (padNum 8) (compPinRef "A8")
+ (padNum 9) (compPinRef "A9")
+ (padNum 10) (compPinRef "A10")
+ (padNum 11) (compPinRef "A11")
+ (padNum 12) (compPinRef "A12")
+ (padNum 13) (compPinRef "A13")
+ (padNum 14) (compPinRef "A14")
+ (padNum 15) (compPinRef "A15")
+ (padNum 16) (compPinRef "A16")
+ (padNum 17) (compPinRef "A17")
+ (padNum 18) (compPinRef "B1")
+ (padNum 19) (compPinRef "B2")
+ (padNum 20) (compPinRef "B3")
+ (padNum 21) (compPinRef "B4")
+ (padNum 22) (compPinRef "B5")
+ (padNum 23) (compPinRef "B6")
+ (padNum 24) (compPinRef "B7")
+ (padNum 25) (compPinRef "B8")
+ (padNum 26) (compPinRef "B9")
+ (padNum 27) (compPinRef "B10")
+ (padNum 28) (compPinRef "B11")
+ (padNum 29) (compPinRef "B12")
+ (padNum 30) (compPinRef "B13")
+ (padNum 31) (compPinRef "B14")
+ (padNum 32) (compPinRef "B15")
+ (padNum 33) (compPinRef "B16")
+ (padNum 34) (compPinRef "B17")
+ (padNum 35) (compPinRef "C1")
+ (padNum 36) (compPinRef "C2")
+ (padNum 37) (compPinRef "C16")
+ (padNum 38) (compPinRef "C17")
+ (padNum 39) (compPinRef "D1")
+ (padNum 40) (compPinRef "D2")
+ (padNum 41) (compPinRef "D16")
+ (padNum 42) (compPinRef "D17")
+ (padNum 43) (compPinRef "E1")
+ (padNum 44) (compPinRef "E2")
+ (padNum 45) (compPinRef "E16")
+ (padNum 46) (compPinRef "E17")
+ (padNum 47) (compPinRef "F1")
+ (padNum 48) (compPinRef "F2")
+ (padNum 49) (compPinRef "F6")
+ (padNum 50) (compPinRef "F7")
+ (padNum 51) (compPinRef "F8")
+ (padNum 52) (compPinRef "F9")
+ (padNum 53) (compPinRef "F10")
+ (padNum 54) (compPinRef "F11")
+ (padNum 55) (compPinRef "F12")
+ (padNum 56) (compPinRef "F16")
+ (padNum 57) (compPinRef "F17")
+ (padNum 58) (compPinRef "G1")
+ (padNum 59) (compPinRef "G2")
+ (padNum 60) (compPinRef "G6")
+ (padNum 61) (compPinRef "G7")
+ (padNum 62) (compPinRef "G8")
+ (padNum 63) (compPinRef "G9")
+ (padNum 64) (compPinRef "G10")
+ (padNum 65) (compPinRef "G11")
+ (padNum 66) (compPinRef "G12")
+ (padNum 67) (compPinRef "G16")
+ (padNum 68) (compPinRef "G17")
+ (padNum 69) (compPinRef "H1")
+ (padNum 70) (compPinRef "H2")
+ (padNum 71) (compPinRef "H6")
+ (padNum 72) (compPinRef "H7")
+ (padNum 73) (compPinRef "H8")
+ (padNum 74) (compPinRef "H9")
+ (padNum 75) (compPinRef "H10")
+ (padNum 76) (compPinRef "H11")
+ (padNum 77) (compPinRef "H12")
+ (padNum 78) (compPinRef "H16")
+ (padNum 79) (compPinRef "H17")
+ (padNum 80) (compPinRef "J1")
+ (padNum 81) (compPinRef "J2")
+ (padNum 82) (compPinRef "J6")
+ (padNum 83) (compPinRef "J7")
+ (padNum 84) (compPinRef "J8")
+ (padNum 85) (compPinRef "J9")
+ (padNum 86) (compPinRef "J10")
+ (padNum 87) (compPinRef "J11")
+ (padNum 88) (compPinRef "J12")
+ (padNum 89) (compPinRef "J16")
+ (padNum 90) (compPinRef "J17")
+ (padNum 91) (compPinRef "K1")
+ (padNum 92) (compPinRef "K2")
+ (padNum 93) (compPinRef "K6")
+ (padNum 94) (compPinRef "K7")
+ (padNum 95) (compPinRef "K8")
+ (padNum 96) (compPinRef "K9")
+ (padNum 97) (compPinRef "K10")
+ (padNum 98) (compPinRef "K11")
+ (padNum 99) (compPinRef "K12")
+ (padNum 100) (compPinRef "K16")
+ (padNum 101) (compPinRef "K17")
+ (padNum 102) (compPinRef "L1")
+ (padNum 103) (compPinRef "L2")
+ (padNum 104) (compPinRef "L6")
+ (padNum 105) (compPinRef "L7")
+ (padNum 106) (compPinRef "L8")
+ (padNum 107) (compPinRef "L9")
+ (padNum 108) (compPinRef "L10")
+ (padNum 109) (compPinRef "L11")
+ (padNum 110) (compPinRef "L12")
+ (padNum 111) (compPinRef "L16")
+ (padNum 112) (compPinRef "L17")
+ (padNum 113) (compPinRef "M1")
+ (padNum 114) (compPinRef "M2")
+ (padNum 115) (compPinRef "M6")
+ (padNum 116) (compPinRef "M7")
+ (padNum 117) (compPinRef "M8")
+ (padNum 118) (compPinRef "M9")
+ (padNum 119) (compPinRef "M10")
+ (padNum 120) (compPinRef "M11")
+ (padNum 121) (compPinRef "M12")
+ (padNum 122) (compPinRef "M16")
+ (padNum 123) (compPinRef "M17")
+ (padNum 124) (compPinRef "N1")
+ (padNum 125) (compPinRef "N2")
+ (padNum 126) (compPinRef "N16")
+ (padNum 127) (compPinRef "N17")
+ (padNum 128) (compPinRef "P1")
+ (padNum 129) (compPinRef "P2")
+ (padNum 130) (compPinRef "P16")
+ (padNum 131) (compPinRef "P17")
+ (padNum 132) (compPinRef "R1")
+ (padNum 133) (compPinRef "R2")
+ (padNum 134) (compPinRef "R16")
+ (padNum 135) (compPinRef "R17")
+ (padNum 136) (compPinRef "T1")
+ (padNum 137) (compPinRef "T2")
+ (padNum 138) (compPinRef "T3")
+ (padNum 139) (compPinRef "T4")
+ (padNum 140) (compPinRef "T5")
+ (padNum 141) (compPinRef "T6")
+ (padNum 142) (compPinRef "T7")
+ (padNum 143) (compPinRef "T8")
+ (padNum 144) (compPinRef "T9")
+ (padNum 145) (compPinRef "T10")
+ (padNum 146) (compPinRef "T11")
+ (padNum 147) (compPinRef "T12")
+ (padNum 148) (compPinRef "T13")
+ (padNum 149) (compPinRef "T14")
+ (padNum 150) (compPinRef "T15")
+ (padNum 151) (compPinRef "T16")
+ (padNum 152) (compPinRef "T17")
+ (padNum 153) (compPinRef "U1")
+ (padNum 154) (compPinRef "U2")
+ (padNum 155) (compPinRef "U3")
+ (padNum 156) (compPinRef "U4")
+ (padNum 157) (compPinRef "U5")
+ (padNum 158) (compPinRef "U6")
+ (padNum 159) (compPinRef "U7")
+ (padNum 160) (compPinRef "U8")
+ (padNum 161) (compPinRef "U9")
+ (padNum 162) (compPinRef "U10")
+ (padNum 163) (compPinRef "U11")
+ (padNum 164) (compPinRef "U12")
+ (padNum 165) (compPinRef "U13")
+ (padNum 166) (compPinRef "U14")
+ (padNum 167) (compPinRef "U15")
+ (padNum 168) (compPinRef "U16")
+ (padNum 169) (compPinRef "U17")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADSP-BF533" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ (compDef "SMB_JWHY_1"
+ (originalName "SMB_JWHY")
+ (compHeader
+ (sourceLibrary "CK1202.LIB")
+ (numPins 5)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XW")
+ )
+ (compPin "1" (pinName "RF") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "2" (pinName "GND") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (compPin "3" (pinName "GND") (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) (pinType Power) )
+ (compPin "4" (pinName "GND") (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) (pinType Power) )
+ (compPin "5" (pinName "GND") (partNum 0) (symPinNum 0) (gateEq 0) (pinEq 0) (pinType Power) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "P_XW") )
+ (attachedPattern (patternNum 1) (patternName "SMB_JWHY")
+ (numPads 5)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMB-JWHY" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "ChuangLian Elek.Compon" (textStyleRef "(Default)") )
+ )
+ (compDef "BH10R_1"
+ (originalName "BH10R")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 10)
+ (numParts 2)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XK")
+ )
+ (compPin "P1" (pinName "1") (partNum 1) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "P2" (pinName "2") (partNum 2) (symPinNum 1) (gateEq 0) (pinEq 0) )
+ (compPin "P3" (pinName "3") (partNum 1) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "P4" (pinName "4") (partNum 2) (symPinNum 2) (gateEq 0) (pinEq 0) )
+ (compPin "P5" (pinName "5") (partNum 1) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "P6" (pinName "6") (partNum 2) (symPinNum 3) (gateEq 0) (pinEq 0) )
+ (compPin "P7" (pinName "7") (partNum 1) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "P8" (pinName "8") (partNum 2) (symPinNum 4) (gateEq 0) (pinEq 0) )
+ (compPin "P9" (pinName "9") (partNum 1) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (compPin "P10" (pinName "10") (partNum 2) (symPinNum 5) (gateEq 0) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "BH10A") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "BH10B") )
+ (attachedPattern (patternNum 1) (patternName "BH10R")
+ (numPads 10)
+ (padPinMap
+ (padNum 1) (compPinRef "P1")
+ (padNum 2) (compPinRef "P2")
+ (padNum 3) (compPinRef "P3")
+ (padNum 4) (compPinRef "P4")
+ (padNum 5) (compPinRef "P5")
+ (padNum 6) (compPinRef "P6")
+ (padNum 7) (compPinRef "P7")
+ (padNum 8) (compPinRef "P8")
+ (padNum 9) (compPinRef "P9")
+ (padNum 10) (compPinRef "P10")
+ )
+ )
+ )
+ (compDef "BH2-10_1"
+ (originalName "BH2-10")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 10)
+ (numParts 2)
+ (composition Heterogeneous)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "XP")
+ )
+ (compPin "P1" (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "P2" (partNum 2) (symPinNum 1) (gateEq 2) (pinEq 0) (pinType Passive) )
+ (compPin "P3" (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "P4" (partNum 2) (symPinNum 2) (gateEq 2) (pinEq 0) (pinType Passive) )
+ (compPin "P5" (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "P6" (partNum 2) (symPinNum 3) (gateEq 2) (pinEq 0) (pinType Passive) )
+ (compPin "P7" (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "P8" (partNum 2) (symPinNum 4) (gateEq 2) (pinEq 0) (pinType Passive) )
+ (compPin "P9" (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 0) (pinType Passive) )
+ (compPin "P10" (partNum 2) (symPinNum 5) (gateEq 2) (pinEq 0) (pinType Passive) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "BH10A") )
+ (attachedSymbol (partNum 2) (altType Normal) (symbolName "BH10B") )
+ (attachedPattern (patternNum 1) (patternName "BH2-10")
+ (numPads 10)
+ (padPinMap
+ (padNum 1) (compPinRef "P1")
+ (padNum 2) (compPinRef "P2")
+ (padNum 3) (compPinRef "P3")
+ (padNum 4) (compPinRef "P4")
+ (padNum 5) (compPinRef "P5")
+ (padNum 6) (compPinRef "P6")
+ (padNum 7) (compPinRef "P7")
+ (padNum 8) (compPinRef "P8")
+ (padNum 9) (compPinRef "P9")
+ (padNum 10) (compPinRef "P10")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH2-10" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "(Default)") )
+ )
+ (compDef "74AC245_1"
+ (originalName "74AC245")
+ (compHeader
+ (sourceLibrary "MRPU_DIG.LIB")
+ (numPins 20)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "D")
+ )
+ (compPin "1" (pinName "DIR") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) (pinType Input) )
+ (compPin "2" (pinName "A1") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "3" (pinName "A2") (partNum 1) (symPinNum 3) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "4" (pinName "A3") (partNum 1) (symPinNum 4) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "5" (pinName "A4") (partNum 1) (symPinNum 5) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "6" (pinName "A5") (partNum 1) (symPinNum 6) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "7" (pinName "A6") (partNum 1) (symPinNum 7) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "8" (pinName "A7") (partNum 1) (symPinNum 8) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "9" (pinName "A8") (partNum 1) (symPinNum 9) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "10" (pinName "GND") (partNum 1) (symPinNum 10) (gateEq 1) (pinEq 0) (pinType Power) )
+ (compPin "11" (pinName "B8") (partNum 1) (symPinNum 11) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "12" (pinName "B7") (partNum 1) (symPinNum 12) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "13" (pinName "B6") (partNum 1) (symPinNum 13) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "14" (pinName "B5") (partNum 1) (symPinNum 14) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "15" (pinName "B4") (partNum 1) (symPinNum 15) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "16" (pinName "B3") (partNum 1) (symPinNum 16) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "17" (pinName "B2") (partNum 1) (symPinNum 17) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "18" (pinName "B1") (partNum 1) (symPinNum 18) (gateEq 1) (pinEq 1) (pinType Bidirectional) )
+ (compPin "19" (pinName "~OE") (partNum 1) (symPinNum 19) (gateEq 1) (pinEq 0) (pinType Input) )
+ (compPin "20" (pinName "Vcc") (partNum 1) (symPinNum 20) (gateEq 1) (pinEq 0) (pinType Power) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "74AC245") )
+ (attachedPattern (patternNum 1) (patternName "LSOP-20")
+ (numPads 20)
+ (padPinMap
+ (padNum 1) (compPinRef "1")
+ (padNum 2) (compPinRef "2")
+ (padNum 3) (compPinRef "3")
+ (padNum 4) (compPinRef "4")
+ (padNum 5) (compPinRef "5")
+ (padNum 6) (compPinRef "6")
+ (padNum 7) (compPinRef "7")
+ (padNum 8) (compPinRef "8")
+ (padNum 9) (compPinRef "9")
+ (padNum 10) (compPinRef "10")
+ (padNum 11) (compPinRef "11")
+ (padNum 12) (compPinRef "12")
+ (padNum 13) (compPinRef "13")
+ (padNum 14) (compPinRef "14")
+ (padNum 15) (compPinRef "15")
+ (padNum 16) (compPinRef "16")
+ (padNum 17) (compPinRef "17")
+ (padNum 18) (compPinRef "18")
+ (padNum 19) (compPinRef "19")
+ (padNum 20) (compPinRef "20")
+ )
+ )
+ (attr "Ýëåìåíò" "Ìèêðîñõåìà " (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9002" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "(Default)") )
+ )
+ (compDef "R_SMD0805_1"
+ (originalName "R_SMD0805")
+ (compHeader
+ (sourceLibrary "FFT-PCI.LIB")
+ (numPins 2)
+ (numParts 1)
+ (alts (ieeeAlt False) (deMorganAlt False))
+ (refDesPrefix "R")
+ )
+ (compPin "A" (pinName "A") (partNum 1) (symPinNum 1) (gateEq 1) (pinEq 0) )
+ (compPin "B" (pinName "B") (partNum 1) (symPinNum 2) (gateEq 1) (pinEq 0) )
+ (attachedSymbol (partNum 1) (altType Normal) (symbolName "R-0.12W") )
+ (attachedPattern (patternNum 1) (patternName "SMD0805")
+ (numPads 2)
+ (padPinMap
+ (padNum 1) (compPinRef "A")
+ (padNum 2) (compPinRef "B")
+ )
+ )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0805 - 2.2 êÎì ± 5%" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Mutata" (textStyleRef "(Default)") )
+ )
+)
+
+(netlist "Netlist_1"
+ (globalAttrs
+ (attr "SilkscreenClearance" "12.0mil" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "HoleToHoleClearance" "13.0mil" (textStyleRef "(Default)") (constraintUnits mil) )
+ )
+ (compInst "C47"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C46"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C45"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C44"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C43"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C42"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C41"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C40"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C49"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C48"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C89"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C88"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C83"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C82"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C81"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C80"
+ (compRef "C+7343_1")
+ (originalName "C+7343")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C87"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C86"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C85"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C84"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,01 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R31"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R30"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 225.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 225.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R33"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R32"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R35"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R34"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R37"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2K2" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R36"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R39"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R38"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2k")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "1"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "2"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 225.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "3"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R75"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "33")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "4"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 225.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "5"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 195.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R74"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "820")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "6"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 165.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R77"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "39,2")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 39,2 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "7"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 135.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R76"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "47 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 47êÎì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "8"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R71"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "820")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "9"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 15.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R70"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,5 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R73"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "820")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R72"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "820")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R79"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,5 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R78"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "39,2")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 39,2 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP8"
+ (compRef "DIN3X32P_1")
+ (originalName "DIN3X32P")
+ (compValue "DIN EN 60603 121 A 10139 X")
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9001" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "DIN EN 60603 121 A 10139 X" (textStyleRef "(Default)") )
+ (attr "Ýëåìåíò" "Âèëêà DIN EN 60603 121 A 10139 X" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "CONEC" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP1"
+ (compRef "XP-JP_1")
+ (originalName "XP-JP")
+ (compValue "XP-JP")
+ (attr "Íàèìåíîâàíèå " "Âèëêà JP2" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP2"
+ (compRef "XP-JP_1")
+ (originalName "XP-JP")
+ (compValue "XP-JP")
+ (attr "Íàèìåíîâàíèå " "Âèëêà JP2" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP3"
+ (compRef "BH2-10_1")
+ (originalName "BH2-10")
+ (compValue "BH2-10")
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH2-10" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP4"
+ (compRef "BH10R_1")
+ (originalName "BH10R")
+ (compValue "BH10R")
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH10R" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "(Default)") )
+ )
+ (compInst "XP5"
+ (compRef "BH14_1")
+ (originalName "BH14")
+ (compValue "BH-14")
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH-14" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "XP6"
+ (compRef "XP-JP_1")
+ (originalName "XP-JP")
+ (compValue "XP-JP")
+ (attr "Íàèìåíîâàíèå " "JP2" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Ýëåìåíò" "Âèëêà" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9002" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "XP7"
+ (compRef "DIN3X32P_1")
+ (originalName "DIN3X32P")
+ (compValue "DIN EN 60603 121 A 10139 X")
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9001" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "DIN EN 60603 121 A 10139 X" (textStyleRef "(Default)") )
+ (attr "Ýëåìåíò" "Âèëêà DIN EN 60603 121 A 10139 X" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "CONEC" (textStyleRef "H16 [1]") )
+ )
+ (compInst "VD2"
+ (compRef "ZHCS1000_1")
+ (originalName "ZHCS1000")
+ (compValue "ZHCS1000")
+ (attr "Íàèìåíîâàíèå " "Äèîä ZHCS1000" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Zetex Semiconductors" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "VD3"
+ (compRef "2D522B_1")
+ (originalName "2D522B")
+ (compValue "2D522B")
+ (attr "Íàèìåíîâàíèå " "Äèîä 2D522B" (textStyleRef "(Default)") )
+ )
+ (compInst "C3"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "0,022 ìêÔ")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 22 íÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "VD1"
+ (compRef "ZHCS1000_1")
+ (originalName "ZHCS1000")
+ (compValue "ZHCS1000")
+ (attr "Íàèìåíîâàíèå " "Äèîä ZHCS1000" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Zetex Semiconductors" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C2"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "1000")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO - 1000 ïÔ ± 10% " (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C1"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "1000")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO - 1000 ïÔ ± 10% " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C7"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C6"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,01 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C5"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "47")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 47 ïÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C4"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "680")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 680 ïÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C9"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C8"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP15"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP14"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP17"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP16"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP11"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP10"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP13"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP12"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP19"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP18"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D15"
+ (compRef "LM1117-ADJ_1")
+ (originalName "LM1117-ADJ")
+ (compValue "LM1117DTX-3,3")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (textStyleRef "(Default)") )
+ )
+ (compInst "D14"
+ (compRef "EP2C20F484_1")
+ (originalName "EP2C20F484")
+ (compValue "EP2C20F484C7")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà EP2C2F484Ñ7" (textStyleRef "H16 [1]") )
+ (attr "Èçãîãîâèòåëü " "Altera" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D17"
+ (compRef "IS61LV51216_1_1")
+ (originalName "IS61LV51216_1")
+ (compValue "IS61LV51216")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà IS61LV51216" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "ISSI" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D16"
+ (compRef "LM1117-ADJ_1")
+ (originalName "LM1117-ADJ")
+ (compValue "LM1117DTX-ADJ")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-ADJ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D11"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D10"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D13"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D12"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D19"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D18"
+ (compRef "IS61LV51216_1_1")
+ (originalName "IS61LV51216_1")
+ (compValue "IS61LV51216")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà IS61LV51216" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "ISSI" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C12"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C13"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C10"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C11"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C16"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C17"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C14"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C15"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C18"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C19"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,01 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C56"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C57"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C54"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C55"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C52"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C53"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C50"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C51"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP4"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP5"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP6"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP7"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP1"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C58"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C59"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP2"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP3"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C98"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C99"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP8"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP9"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C92"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C93"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C90"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C91"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C96"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C97"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C94"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C95"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R46"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R47"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2k")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R44"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R45"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C120"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R42"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C121"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R43"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C122"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C123"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R40"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R41"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R48"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2k")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R49"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R82"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1 Ì")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1 ÌÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R83"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2K")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R80"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "4,7 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 4,7 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R81"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "10 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R84"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2K")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D4"
+ (compRef "ADF4360_1")
+ (originalName "ADF4360")
+ (compValue "ADF4360-8BCP")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADF4360-8BCP" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ (compInst "D5"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D6"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D7"
+ (compRef "LM1117_1")
+ (originalName "LM1117")
+ (compValue "LM1117DTX-3,3")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (textStyleRef "(Default)") )
+ )
+ (compInst "D1"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D2"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D3"
+ (compRef "74AC245_1")
+ (originalName "74AC245")
+ (compValue "SN74AC245DB")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ (compInst "D8"
+ (compRef "LM1117_1")
+ (originalName "LM1117")
+ (compValue "LM1117DTX-3,3")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D9"
+ (compRef "AD8009_1")
+ (originalName "AD8009")
+ (compValue "AD8009AR")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà AD8009AR" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP26"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP27"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP24"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP25"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP22"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP23"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP20"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "TP21"
+ (compRef "PIN40X40X24_1")
+ (originalName "PIN40X40X24")
+ (compValue "PIN40X40X24")
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ (compInst "L8"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L9"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L4"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "56 íÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 56 íÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L5"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "56 íÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 56 íÃ" (rotation 315.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 315.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L6"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L7"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L1"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "68 íÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 68 íÃ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L2"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "68 íÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 68 íÃ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (textStyleRef "H16 [1]") )
+ )
+ (compInst "L3"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "X1"
+ (compRef "USB_1")
+ (originalName "USB")
+ (compValue "URB-1001")
+ (attr "Íàèìåíîâàíèå " "USB B Connector URB-1001" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Newnex" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ (compInst "11"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "10"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 345.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "13"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "12"
+ (compRef "CABLE_1")
+ (originalName "CABLE")
+ (compValue "YESF-085/50")
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D26"
+ (compRef "LM1117_1")
+ (originalName "LM1117")
+ (compValue "LM1117DTX-3,3")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "D27"
+ (compRef "KXO-97_1")
+ (originalName "KXO-97")
+ (compValue "KXO-97- 60.000 MHz")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà KXO-97- 60.000 MHz" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "GEYER electronic" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D24"
+ (compRef "ADSP_BF533_1")
+ (originalName "ADSP_BF533")
+ (compValue "ADSP_BF533SBB500")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADSP_BF533SBB500" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D25"
+ (compRef "MT48LC16M16A2_1")
+ (originalName "MT48LC16M16A2")
+ (compValue "MT48LC16M16A2")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MT48LC16M16A2" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Micron" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "D22"
+ (compRef "M25P32_1")
+ (originalName "M25P32")
+ (compValue "M25P64V6MF")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà M25P64V6MF" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "STMicroelectronics" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D23"
+ (compRef "M25P32_1")
+ (originalName "M25P32")
+ (compValue "M25P64V6MF")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà M25P64V6MF" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "STMicroelectronics" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D20"
+ (compRef "EPM1270F256_1")
+ (originalName "EPM1270F256")
+ (compValue "EPM1270F256C4")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà EPM1270F256C4" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Altera" (textStyleRef "(Default)") )
+ )
+ (compInst "D21"
+ (compRef "LM1117-ADJ_1")
+ (originalName "LM1117-ADJ")
+ (compValue "LM1117DTX-3,3")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "D28"
+ (compRef "KXO-75_1")
+ (originalName "KXO-75")
+ (compValue "KXO-75- 10.000 MHz")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà KXO-75- 10.000 MHz" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "GEYER electronic" (textStyleRef "(Default)") )
+ )
+ (compInst "D29"
+ (compRef "LM1117-ADJ_1")
+ (originalName "LM1117-ADJ")
+ (compValue "LM1117-2,5")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-2.5" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C21"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C20"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C23"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C22"
+ (compRef "C+7343_1")
+ (originalName "C+7343")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C25"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 100 ïÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C24"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C27"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C26"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C29"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C28"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "1000")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO-1 íÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C65"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "220")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 220 ïÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C64"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C67"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C66"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C61"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C60"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C63"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C62"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C69"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C68"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R13"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R12"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "4,7 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 4,7 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R11"
+ (compRef "R_SMD0805_1")
+ (originalName "R_SMD0805")
+ (compValue "6,8 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð SMD-0805 - 6.8 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R10"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "470")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 470 Îì ± 5%" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ (compInst "R17"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "10 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R16"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "10 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R15"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R14"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R19"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "10 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R18"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R57"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R56"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "0")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 0 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R55"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "0")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 0 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C113"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R54"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C112"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R53"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R52"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C111"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,01 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "R51"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "510")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C110"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C117"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R50"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C116"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C115"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C114"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C119"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C118"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R59"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R58"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "U1"
+ (compRef "NDS8434A_1")
+ (originalName "NDS8434A")
+ (compValue "FDS9431A")
+ (attr "Íàèìåíîâàíèå " "Òðàíçèñòîð FDS9431A" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Fairchild Semiconductor" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "U2"
+ (compRef "NDS8434A_1")
+ (originalName "NDS8434A")
+ (compValue "FDS9431A")
+ (attr "Íàèìåíîâàíèå " "Òðàíçèñòîð FDS9431A" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Fairchild Semiconductor" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D35"
+ (compRef "ADM705_1")
+ (originalName "ADM705")
+ (compValue "ADM705AN")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADM705AN" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ (compInst "D34"
+ (compRef "FT-245RL_1")
+ (originalName "FT-245RL")
+ (compValue "FT-245RL")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà FT-245RL" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "FTDI" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "D33"
+ (compRef "100LVELT23_1")
+ (originalName "100LVELT23")
+ (compValue "MC100LVELT23")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVELT23D" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Motorola" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "D32"
+ (compRef "NET2272_1")
+ (originalName "NET2272")
+ (compValue "NET2272")
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà NET2272" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "PLX Tecnnology" (textStyleRef "(Default)") )
+ )
+ (compInst "D31"
+ (compRef "MC100LVEL22D_1")
+ (originalName "MC100LVEL22D")
+ (compValue "MC100LVEL22D")
+ (attr "Èçãîòîâèòåëü " "ON Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVEL22D" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "D30"
+ (compRef "MC100LVEL22D_1")
+ (originalName "MC100LVEL22D")
+ (compValue "MC100LVEL22D")
+ (attr "Èçãîòîâèòåëü " "ON Semiconductor" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVEL22D" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C30"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C31"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C32"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C33"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C34"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C35"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "C36"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C37"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C38"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C39"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C74"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C75"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C76"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C77"
+ (compRef "C_SMD0805_1")
+ (originalName "C_SMD0805")
+ (compValue "10 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C70"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C71"
+ (compRef "C+7343_1")
+ (originalName "C+7343")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C72"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C73"
+ (compRef "C+7343_1")
+ (originalName "C+7343")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C78"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C79"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R20"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 225.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 225.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R21"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R22"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R23"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R24"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R25"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R26"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R27"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 135.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 135.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R28"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R29"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R64"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R65"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R66"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,43 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,43 êÎì ± 1%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R67"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,5 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C102"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R60"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C103"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C100"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R61"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C101"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R62"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ (compInst "C106"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R63"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "100")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 315.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 315.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C107"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C104"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C105"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R68"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,5 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "C108"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R69"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "1,5 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "C109"
+ (compRef "C_SMD0603_1")
+ (originalName "C_SMD0603")
+ (compValue "0,1 ìê")
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L15"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "1 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü LK21251R0K-T" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L14"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "1 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü LK21251R0K-T" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L17"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "42 Îì ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü FBMJ2125HS420-T" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L16"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "42 Îì ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü FBMJ2125HS420-T" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (textStyleRef "H16 [1]") )
+ )
+ (compInst "L11"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L10"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L13"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "L12"
+ (compRef "L_SMD0805_1")
+ (originalName "L_SMD0805")
+ (compValue "10 ìêÃ")
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL4"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 srct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL5"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 gct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL6"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 gct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL7"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 srct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL1"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue "L-C170 gct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ (compInst "HL2"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 srct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL3"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 gct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL8"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 gct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "HL9"
+ (compRef "L-C170_1")
+ (originalName "L-C170")
+ (compValue " L-C170 srct")
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW6"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW5"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW4"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW3"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW2"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "XW1"
+ (compRef "SMB_JWHY_1")
+ (originalName "SMB_JWHY")
+ (compValue "C340-022D")
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R2"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R3"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ (compInst "R1"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R6"
+ (compRef "R_SMD0805_1")
+ (originalName "R_SMD0805")
+ (compValue "15 ê ")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð SMD-0805 - 15 êÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R7"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R4"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "51")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R5"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (compInst "R8"
+ (compRef "R_SMD0603_1")
+ (originalName "R_SMD0603")
+ (compValue "470")
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 470 Îì ± 5%" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ (compInst "R9"
+ (compRef "YC164_1")
+ (originalName "YC164")
+ (compValue "2,2 ê ")
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ (net "TP2"
+ (node "D14" "B11")
+ (node "TP2" "1")
+ )
+ (net "NET00001"
+ (node "12" "RF")
+ (node "R45" "A")
+ (node "R44" "A")
+ )
+ (net "NET00003"
+ (node "D19" "2")
+ (node "C65" "A")
+ (node "R44" "B")
+ )
+ (net "NET00006"
+ (node "D19" "18")
+ (node "D19" "8")
+ (node "D19" "7")
+ (node "D19" "6")
+ (node "D19" "5")
+ )
+ (net "NET00039"
+ (node "C2" "B")
+ (node "D4" "16")
+ )
+ (net "DA0"
+ (node "D14" "Y7")
+ (node "D17" "7")
+ )
+ (net "NET00022"
+ (node "R20" "A")
+ (node "C25" "B")
+ )
+ (net "~WDI"
+ (node "D20" "D6")
+ (node "D35" "6")
+ )
+ (net "NET00401"
+ (node "HL2" "2")
+ (node "R40" "A")
+ )
+ (net "I_10M"
+ (node "D14" "C1")
+ (node "D20" "D15")
+ (node "D3" "8")
+ )
+ (net "~P_ZAP"
+ (node "D14" "H14")
+ (node "D3" "4")
+ )
+ (net "4S"
+ (node "D20" "B11")
+ (node "D19" "11")
+ )
+ (net "2S"
+ (node "D20" "B12")
+ (node "D19" "13")
+ )
+ (net "A6"
+ (node "D14" "U9")
+ (node "D25" "31")
+ (node "D20" "R11")
+ (node "D24" "M16")
+ )
+ (net "A5"
+ (node "D14" "U10")
+ (node "D25" "30")
+ (node "D20" "P11")
+ (node "D24" "L17")
+ )
+ (net "I_1S"
+ (node "D14" "D1")
+ (node "D20" "D16")
+ (node "D3" "9")
+ )
+ (net "P_PUSK"
+ (node "D14" "H15")
+ (node "D3" "3")
+ )
+ (net "P_RES"
+ (node "D14" "H16")
+ (node "D3" "2")
+ )
+ (net "P_BLOK"
+ (node "D14" "H13")
+ (node "D3" "5")
+ )
+ (net "A3"
+ (node "D14" "T12")
+ (node "D25" "26")
+ (node "D20" "P12")
+ (node "D32" "29")
+ (node "D24" "K17")
+ )
+ (net "NET00004"
+ (node "D4" "4")
+ (node "C25" "A")
+ )
+ (net "NET00026"
+ (node "D4" "14")
+ (node "C18" "A")
+ (node "C19" "A")
+ )
+ (net "NET00007"
+ (node "L5" "A")
+ (node "D4" "5")
+ )
+ (net "NET00019"
+ (node "L5" "B")
+ (node "D4" "6")
+ (node "C18" "B")
+ (node "C19" "B")
+ (node "L4" "B")
+ )
+ (net "PUSK"
+ (node "XP7" "B19")
+ (node "D3" "17")
+ )
+ (net "NET00027"
+ (node "R6" "B")
+ (node "C5" "B")
+ (node "D4" "24")
+ (node "C4" "B")
+ )
+ (net "NET00028"
+ (node "R6" "A")
+ (node "D4" "7")
+ (node "C3" "B")
+ )
+ (net "BLOK"
+ (node "XP7" "B20")
+ (node "D3" "15")
+ )
+ (net "~RESET"
+ (node "XP7" "C19")
+ (node "D3" "18")
+ )
+ (net "+3,3V7" (planeColor "ff0000")
+ (node "XP3" "P4")
+ (node "D14" "G19")
+ (node "D14" "T19")
+ (node "D14" "C11")
+ (node "D14" "Y11")
+ (node "D14" "L20")
+ (node "D14" "W17")
+ (node "D14" "W6")
+ (node "D14" "L3")
+ (node "D14" "B22")
+ (node "D14" "A21")
+ (node "D14" "M20")
+ (node "D14" "AA22")
+ (node "D14" "AB21")
+ (node "D14" "C12")
+ (node "D14" "J16")
+ (node "D14" "D17")
+ (node "D14" "G14")
+ (node "D14" "E13")
+ (node "D14" "P16")
+ (node "D14" "T14")
+ (node "D14" "V13")
+ (node "D14" "Y12")
+ (node "D14" "C6")
+ (node "D14" "J7")
+ (node "D14" "G9")
+ (node "D14" "E10")
+ (node "D14" "T9")
+ (node "D14" "P7")
+ (node "D14" "V10")
+ (node "D14" "T4")
+ (node "D14" "B1")
+ (node "D14" "A2")
+ (node "D14" "M3")
+ (node "D14" "AB2")
+ (node "D14" "AA1")
+ (node "D18" "33")
+ (node "D18" "11")
+ (node "D17" "33")
+ (node "D17" "11")
+ (node "C36" "A")
+ (node "C41" "A")
+ (node "C52" "A")
+ (node "C61" "A")
+ (node "R37" "7")
+ (node "R37" "6")
+ (node "R37" "5")
+ (node "C47" "A")
+ (node "C57" "A")
+ (node "C54" "A")
+ (node "R39" "7")
+ (node "R39" "6")
+ (node "R39" "8")
+ (node "R39" "5")
+ (node "C58" "B")
+ (node "C60" "B")
+ (node "D15" "2")
+ (node "C39" "A")
+ (node "C38" "A")
+ (node "C62" "B")
+ (node "R38" "B")
+ (node "C64" "B")
+ (node "C63" "A")
+ )
+ (net "~ZAP"
+ (node "XP7" "C20")
+ (node "D3" "16")
+ )
+ (net "3_RQ"
+ (node "XP8" "B17")
+ (node "D11" "9")
+ )
+ (net "3_IO6"
+ (node "D14" "AA4")
+ (node "D10" "8")
+ )
+ (net "+3,3V2" (planeColor "ff0000")
+ (node "R31" "7")
+ (node "R31" "6")
+ (node "R31" "8")
+ (node "R31" "5")
+ (node "R26" "7")
+ (node "R26" "6")
+ (node "R26" "8")
+ (node "R26" "5")
+ (node "R18" "7")
+ (node "R18" "6")
+ (node "R18" "8")
+ (node "R18" "5")
+ (node "R15" "7")
+ (node "R15" "6")
+ (node "R15" "8")
+ (node "R15" "5")
+ (node "D2" "20")
+ (node "D12" "20")
+ (node "D5" "20")
+ (node "D1" "20")
+ (node "C12" "A")
+ (node "D6" "20")
+ (node "D3" "20")
+ (node "D8" "2")
+ (node "D10" "20")
+ (node "C13" "A")
+ (node "C15" "A")
+ (node "R34" "7")
+ (node "R34" "6")
+ (node "R34" "8")
+ (node "R34" "5")
+ (node "D11" "20")
+ (node "C16" "A")
+ (node "D13" "20")
+ (node "C7" "B")
+ (node "C8" "A")
+ (node "C10" "A")
+ (node "C21" "A")
+ (node "C14" "A")
+ (node "R35" "7")
+ (node "R35" "6")
+ (node "R35" "8")
+ (node "R35" "5")
+ (node "R3" "A")
+ (node "R5" "7")
+ (node "R5" "6")
+ (node "R5" "8")
+ (node "R5" "5")
+ (node "C9" "A")
+ (node "R1" "A")
+ (node "R22" "A")
+ (node "R2" "A")
+ (node "R9" "7")
+ (node "R9" "6")
+ (node "R9" "8")
+ (node "R9" "5")
+ (node "R32" "A")
+ (node "R13" "A")
+ (node "R14" "A")
+ (node "R24" "A")
+ (node "R33" "A")
+ )
+ (net "3_~OE1"
+ (node "D14" "N15")
+ (node "D10" "19")
+ (node "R22" "B")
+ )
+ (net "3_DIR1"
+ (node "D14" "P15")
+ (node "D10" "1")
+ )
+ (net "4_IO1"
+ (node "D14" "AB3")
+ (node "D12" "3")
+ )
+ (net "3_IO5"
+ (node "D14" "Y3")
+ (node "D10" "7")
+ )
+ (net "4_IO3"
+ (node "D14" "Y1")
+ (node "D12" "5")
+ )
+ (net "4_IO4"
+ (node "D14" "W2")
+ (node "D12" "6")
+ )
+ (net "3_IO2"
+ (node "D14" "V2")
+ (node "D10" "4")
+ )
+ (net "3_IO1"
+ (node "D14" "U3")
+ (node "D10" "3")
+ )
+ (net "3_P_RQ"
+ (node "D14" "P17")
+ (node "D11" "11")
+ )
+ (net "3_CW"
+ (node "XP8" "B18")
+ (node "D13" "12")
+ )
+ (net "3__A0"
+ (node "D14" "E19")
+ (node "D11" "5")
+ )
+ (net "3__A1"
+ (node "D14" "G18")
+ (node "D11" "7")
+ )
+ (net "3__A2"
+ (node "D14" "H19")
+ (node "D13" "2")
+ )
+ (net "4_IO7"
+ (node "D14" "U1")
+ (node "D12" "9")
+ )
+ (net "3_STR_0"
+ (node "D14" "D15")
+ (node "D11" "3")
+ )
+ (net "3_P_RDY"
+ (node "D14" "L19")
+ (node "D13" "6")
+ )
+ (net "3_P_R\\W"
+ (node "D14" "J18")
+ (node "D13" "4")
+ )
+ (net "3_P_A0"
+ (node "XP8" "B12")
+ (node "D11" "15")
+ )
+ (net "3_OUT1"
+ (node "R26" "4")
+ (node "D10" "17")
+ (node "XP8" "B4")
+ )
+ (net "3_OUT2"
+ (node "R31" "2")
+ (node "D10" "16")
+ (node "XP8" "B5")
+ )
+ (net "3_OUT0"
+ (node "R26" "2")
+ (node "D10" "18")
+ (node "XP8" "B3")
+ )
+ (net "3_OUT3"
+ (node "R31" "4")
+ (node "D10" "15")
+ (node "XP8" "B6")
+ )
+ (net "3_OUT4"
+ (node "D10" "14")
+ (node "XP8" "B7")
+ (node "R34" "2")
+ )
+ (net "3_STROB"
+ (node "XP8" "B11")
+ (node "D11" "17")
+ )
+ (net "3_OUT5"
+ (node "D10" "13")
+ (node "XP8" "B8")
+ (node "R34" "4")
+ )
+ (net "3_OUT6"
+ (node "D10" "12")
+ (node "XP8" "B9")
+ (node "R35" "2")
+ )
+ (net "3_OUT7"
+ (node "D10" "11")
+ (node "XP8" "B10")
+ (node "R35" "4")
+ )
+ (net "3_P_A1"
+ (node "XP8" "B13")
+ (node "D11" "13")
+ )
+ (net "3_P_A2"
+ (node "XP8" "B14")
+ (node "D13" "18")
+ )
+ (net "3_R\\W"
+ (node "XP8" "B15")
+ (node "D13" "16")
+ )
+ (net "3_RDY"
+ (node "XP8" "B16")
+ (node "D13" "14")
+ )
+ (net "3_P_CW1"
+ (node "D14" "M19")
+ (node "D13" "8")
+ )
+ (net "NET00140"
+ (node "4" "RF")
+ (node "R27" "B")
+ )
+ (net "NET00147"
+ (node "R29" "A")
+ (node "R28" "A")
+ (node "R27" "A")
+ (node "C33" "B")
+ (node "R30" "A")
+ )
+ (net "NET00158"
+ (node "D7" "2")
+ (node "C17" "A")
+ (node "C22" "1")
+ (node "L3" "A")
+ )
+ (net "NET00040"
+ (node "C1" "B")
+ (node "C2" "A")
+ (node "R4" "B")
+ )
+ (net "4_RQ"
+ (node "XP8" "C17")
+ (node "D13" "9")
+ )
+ (net "3_IO7"
+ (node "D14" "AB4")
+ (node "D10" "9")
+ )
+ (net "TCK7"
+ (node "XP3" "P1")
+ (node "D14" "K2")
+ (node "R37" "1")
+ )
+ (net "+1,2V7" (planeColor "ff0000")
+ (node "D14" "J11")
+ (node "D14" "P11")
+ (node "D14" "L14")
+ (node "D14" "L9")
+ (node "D14" "J12")
+ (node "D14" "J13")
+ (node "D14" "F17")
+ (node "D14" "K14")
+ (node "D14" "P12")
+ (node "D14" "U17")
+ (node "D14" "N14")
+ (node "D14" "M14")
+ (node "D14" "P13")
+ (node "D14" "E5")
+ (node "D14" "J10")
+ (node "D14" "K9")
+ (node "D14" "U6")
+ (node "D14" "N9")
+ (node "D14" "M9")
+ (node "D14" "P10")
+ (node "L7" "B")
+ (node "D16" "2")
+ (node "C40" "A")
+ (node "C55" "A")
+ (node "L10" "B")
+ (node "L8" "B")
+ (node "L9" "B")
+ (node "C37" "A")
+ (node "C53" "A")
+ (node "C59" "A")
+ (node "C46" "A")
+ (node "C56" "A")
+ )
+ (net "NET00402"
+ (node "HL3" "2")
+ (node "R41" "A")
+ )
+ (net "+3,3V" (planeColor "ff0000")
+ (node "R16" "B")
+ (node "C24" "A")
+ (node "D4" "21")
+ (node "D4" "23")
+ (node "D4" "2")
+ (node "C20" "A")
+ (node "C23" "A")
+ (node "C26" "A")
+ (node "L4" "A")
+ (node "L3" "B")
+ )
+ (net "DCLK7"
+ (node "D14" "L6")
+ (node "D20" "L15")
+ )
+ (net "7NCONF"
+ (node "D14" "L4")
+ (node "D20" "C13")
+ (node "R39" "2")
+ )
+ (net "7VPLL2"
+ (node "D14" "F16")
+ (node "C49" "A")
+ (node "L8" "A")
+ (node "C43" "A")
+ )
+ (net "NET00029"
+ (node "R11" "A")
+ (node "C4" "A")
+ )
+ (net "A2"
+ (node "D14" "T11")
+ (node "D25" "25")
+ (node "D20" "N12")
+ (node "D32" "30")
+ (node "D24" "K16")
+ )
+ (net "AA1"
+ (node "D14" "AB6")
+ (node "D17" "2")
+ )
+ (net "TP15"
+ (node "D20" "A5")
+ (node "TP15" "1")
+ )
+ (net "TP25"
+ (node "D20" "L1")
+ (node "TP25" "1")
+ )
+ (net "NET00031"
+ (node "R12" "B")
+ (node "D4" "13")
+ )
+ (net "TP18"
+ (node "D20" "B5")
+ (node "TP18" "1")
+ )
+ (net "7MSEL1"
+ (node "D14" "N17")
+ (node "R36" "A")
+ )
+ (net "TP3"
+ (node "D14" "F10")
+ (node "TP3" "1")
+ )
+ (net "TP4"
+ (node "D14" "D11")
+ (node "TP4" "1")
+ )
+ (net "7VPLL1"
+ (node "D14" "U7")
+ (node "C48" "A")
+ (node "L7" "A")
+ (node "C42" "A")
+ )
+ (net "TP5"
+ (node "D14" "F12")
+ (node "TP5" "1")
+ )
+ (net "CONFD7"
+ (node "D14" "N18")
+ (node "D20" "C14")
+ (node "R39" "3")
+ )
+ (net "7VPLL3"
+ (node "D14" "E6")
+ (node "L9" "A")
+ (node "C50" "A")
+ (node "C44" "A")
+ )
+ (net "7VPLL4"
+ (node "D14" "U16")
+ (node "C45" "A")
+ (node "L10" "A")
+ (node "C51" "A")
+ )
+ (net "TP26"
+ (node "D20" "L2")
+ (node "TP26" "1")
+ )
+ (net "TP6"
+ (node "D14" "D16")
+ (node "TP6" "1")
+ )
+ (net "TP7"
+ (node "D14" "C19")
+ (node "TP7" "1")
+ )
+ (net "TP8"
+ (node "D14" "F8")
+ (node "TP8" "1")
+ )
+ (net "TP9"
+ (node "D14" "F9")
+ (node "TP9" "1")
+ )
+ (net "TP10"
+ (node "D14" "E11")
+ (node "TP10" "1")
+ )
+ (net "CLKF"
+ (node "D14" "L2")
+ (node "D14" "L1")
+ (node "D20" "J16")
+ )
+ (net "A7"
+ (node "D14" "V9")
+ (node "D25" "32")
+ (node "D20" "R10")
+ (node "D24" "M17")
+ )
+ (net "A4"
+ (node "D14" "W9")
+ (node "D25" "29")
+ (node "D20" "N11")
+ (node "D32" "28")
+ (node "D24" "L16")
+ )
+ (net "A1"
+ (node "D14" "V11")
+ (node "D25" "24")
+ (node "D20" "N13")
+ (node "D32" "31")
+ (node "D24" "J17")
+ )
+ (net "TP23"
+ (node "D20" "K1")
+ (node "TP23" "1")
+ )
+ (net "H0"
+ (node "D14" "R1")
+ (node "D20" "L16")
+ )
+ (net "H1"
+ (node "D14" "T1")
+ (node "D20" "M16")
+ )
+ (net "H2"
+ (node "D14" "R2")
+ (node "D20" "L14")
+ )
+ (net "H3"
+ (node "D14" "E1")
+ (node "D20" "E16")
+ )
+ (net "TP11"
+ (node "D14" "F11")
+ (node "TP11" "1")
+ )
+ (net "NET00032"
+ (node "D4" "12")
+ (node "C6" "B")
+ )
+ (net "NET00033"
+ (node "D4" "9")
+ (node "R8" "A")
+ (node "L1" "A")
+ )
+ (net "TP12"
+ (node "D14" "F13")
+ (node "TP12" "1")
+ )
+ (net "TP13"
+ (node "D14" "B19")
+ (node "TP13" "1")
+ )
+ (net "NET00034"
+ (node "D4" "10")
+ (node "R10" "A")
+ (node "L2" "A")
+ )
+ (net "TP14"
+ (node "D14" "D19")
+ (node "TP14" "1")
+ )
+ (net "TP21"
+ (node "D20" "J1")
+ (node "TP21" "1")
+ )
+ (net "+5V" (planeColor "ff0000")
+ (node "D21" "3")
+ (node "XP8" "A29")
+ (node "XP8" "B29")
+ (node "XP8" "A30")
+ (node "XP8" "B30")
+ (node "XP8" "C29")
+ (node "XP8" "C30")
+ (node "C27" "A")
+ (node "D35" "2")
+ (node "D27" "4")
+ (node "D7" "3")
+ (node "D8" "3")
+ (node "D16" "3")
+ (node "C71" "1")
+ (node "D26" "3")
+ (node "C76" "A")
+ (node "D34" "20")
+ (node "C100" "A")
+ (node "D29" "3")
+ (node "XP4" "P4")
+ (node "R50" "7")
+ (node "R50" "6")
+ (node "R50" "5")
+ (node "R60" "B")
+ (node "C95" "A")
+ (node "C66" "A")
+ (node "C31" "A")
+ (node "D15" "3")
+ (node "C34" "A")
+ (node "C81" "A")
+ (node "C11" "A")
+ (node "L6" "A")
+ (node "C35" "A")
+ (node "C78" "A")
+ (node "C113" "A")
+ (node "R83" "A")
+ (node "C32" "A")
+ )
+ (net "TP16"
+ (node "D20" "A6")
+ (node "TP16" "1")
+ )
+ (net "TP17"
+ (node "D20" "A7")
+ (node "TP17" "1")
+ )
+ (net "TP24"
+ (node "D20" "K2")
+ (node "TP24" "1")
+ )
+ (net "TP22"
+ (node "D20" "J2")
+ (node "TP22" "1")
+ )
+ (net "AA2"
+ (node "D14" "AA6")
+ (node "D17" "3")
+ )
+ (net "AA3"
+ (node "D14" "Y6")
+ (node "D17" "4")
+ )
+ (net "D_ADF"
+ (node "D20" "F5")
+ (node "D4" "18")
+ )
+ (net "AA4"
+ (node "D14" "AB7")
+ (node "D17" "5")
+ )
+ (net "AA8"
+ (node "D14" "AA12")
+ (node "D17" "21")
+ )
+ (net "CLK_ADF"
+ (node "D20" "G5")
+ (node "D4" "17")
+ )
+ (net "AA7"
+ (node "D14" "AB12")
+ (node "D17" "20")
+ )
+ (net "AA5"
+ (node "D14" "AB11")
+ (node "D17" "18")
+ )
+ (net "AA6"
+ (node "D14" "AA11")
+ (node "D17" "19")
+ )
+ (net "AA16"
+ (node "D14" "AA17")
+ (node "D17" "43")
+ )
+ (net "AA15"
+ (node "D14" "AB17")
+ (node "D17" "42")
+ )
+ (net "AA14"
+ (node "D14" "AA19")
+ (node "D17" "27")
+ )
+ (net "AA12"
+ (node "D14" "AB20")
+ (node "D17" "25")
+ )
+ (net "AA13"
+ (node "D14" "Y19")
+ (node "D17" "26")
+ )
+ (net "AA11"
+ (node "D14" "AA20")
+ (node "D17" "24")
+ )
+ (net "AA9"
+ (node "D14" "AB13")
+ (node "D17" "22")
+ )
+ (net "AA10"
+ (node "D14" "Y20")
+ (node "D17" "23")
+ )
+ (net "AA0"
+ (node "D14" "Y5")
+ (node "D17" "1")
+ )
+ (net "AB0"
+ (node "D14" "K22")
+ (node "D18" "1")
+ )
+ (net "AA17"
+ (node "D14" "Y17")
+ (node "D17" "44")
+ )
+ (net "AA18"
+ (node "D14" "AB19")
+ (node "D17" "28")
+ )
+ (net "AB1"
+ (node "D14" "K21")
+ (node "D18" "2")
+ )
+ (net "BCE"
+ (node "D14" "R20")
+ (node "D18" "6")
+ )
+ (net "AOE"
+ (node "D14" "Y16")
+ (node "D17" "41")
+ )
+ (net "AWE"
+ (node "D14" "Y10")
+ (node "D17" "17")
+ )
+ (net "PF1"
+ (node "D20" "G13")
+ (node "D24" "C1")
+ )
+ (net "BOE"
+ (node "D14" "D20")
+ (node "D18" "41")
+ )
+ (net "BWE"
+ (node "D14" "V21")
+ (node "D18" "17")
+ )
+ (net "AB2"
+ (node "D14" "K20")
+ (node "D18" "3")
+ )
+ (net "AB3"
+ (node "D14" "N21")
+ (node "D18" "4")
+ )
+ (net "AB18"
+ (node "D14" "G20")
+ (node "D18" "28")
+ )
+ (net "AB17"
+ (node "D14" "C20")
+ (node "D18" "44")
+ )
+ (net "AB15"
+ (node "D14" "C22")
+ (node "D18" "42")
+ )
+ (net "AB14"
+ (node "D14" "G21")
+ (node "D18" "27")
+ )
+ (net "AB12"
+ (node "D14" "J20")
+ (node "D18" "25")
+ )
+ (net "AB11"
+ (node "D14" "J21")
+ (node "D18" "24")
+ )
+ (net "AB9"
+ (node "D14" "Y22")
+ (node "D18" "22")
+ )
+ (net "AB8"
+ (node "D14" "Y21")
+ (node "D18" "21")
+ )
+ (net "AB7"
+ (node "D14" "W22")
+ (node "D18" "20")
+ )
+ (net "AB6"
+ (node "D14" "W21")
+ (node "D18" "19")
+ )
+ (net "AB4"
+ (node "D14" "N22")
+ (node "D18" "5")
+ )
+ (net "AB5"
+ (node "D14" "V22")
+ (node "D18" "18")
+ )
+ (net "AB10"
+ (node "D14" "J22")
+ (node "D18" "23")
+ )
+ (net "AB13"
+ (node "D14" "G22")
+ (node "D18" "26")
+ )
+ (net "AB16"
+ (node "D14" "C21")
+ (node "D18" "43")
+ )
+ (net "ACE"
+ (node "D14" "AA7")
+ (node "D17" "6")
+ )
+ (net "PF4"
+ (node "D14" "V15")
+ (node "D24" "A1")
+ )
+ (net "PF5"
+ (node "D14" "W15")
+ (node "D24" "A2")
+ )
+ (net "PF7"
+ (node "D14" "T16")
+ (node "D24" "A3")
+ )
+ (net "DA1"
+ (node "D14" "AB8")
+ (node "D17" "8")
+ )
+ (net "DA2"
+ (node "D14" "AA8")
+ (node "D17" "9")
+ )
+ (net "DA3"
+ (node "D14" "AB9")
+ (node "D17" "10")
+ )
+ (net "DA4"
+ (node "D14" "AA9")
+ (node "D17" "13")
+ )
+ (net "DA8"
+ (node "D14" "Y18")
+ (node "D17" "29")
+ )
+ (net "DA7"
+ (node "D14" "AA10")
+ (node "D17" "16")
+ )
+ (net "DA5"
+ (node "D14" "Y9")
+ (node "D17" "14")
+ )
+ (net "DA6"
+ (node "D14" "AB10")
+ (node "D17" "15")
+ )
+ (net "LE_ADF"
+ (node "D20" "E5")
+ (node "D4" "19")
+ )
+ (net "H4"
+ (node "D14" "D2")
+ (node "D20" "E15")
+ )
+ (net "TP19"
+ (node "D20" "B6")
+ (node "TP19" "1")
+ )
+ (net "RS_I"
+ (node "D20" "C6")
+ (node "D35" "7")
+ )
+ (net "TP20"
+ (node "D20" "B7")
+ (node "TP20" "1")
+ )
+ (net "DB0"
+ (node "D14" "R21")
+ (node "D18" "7")
+ )
+ (net "DA15"
+ (node "D14" "AB15")
+ (node "D17" "38")
+ )
+ (net "DA14"
+ (node "D14" "Y14")
+ (node "D17" "37")
+ )
+ (net "DA12"
+ (node "D14" "AB14")
+ (node "D17" "35")
+ )
+ (net "DA13"
+ (node "D14" "AA14")
+ (node "D17" "36")
+ )
+ (net "DA11"
+ (node "D14" "Y13")
+ (node "D17" "32")
+ )
+ (net "DA9"
+ (node "D14" "AA18")
+ (node "D17" "30")
+ )
+ (net "DA10"
+ (node "D14" "AA13")
+ (node "D17" "31")
+ )
+ (net "NET00353"
+ (node "D35" "8")
+ (node "VD3" "2")
+ )
+ (net "4_~OE1"
+ (node "D14" "P18")
+ (node "D12" "19")
+ (node "R32" "B")
+ )
+ (net "4_DIR1"
+ (node "D14" "R18")
+ (node "D12" "1")
+ )
+ (net "3_IO4"
+ (node "D14" "Y4")
+ (node "D10" "6")
+ )
+ (net "4_IO0"
+ (node "D14" "AA3")
+ (node "D12" "2")
+ )
+ (net "4_IO2"
+ (node "D14" "Y2")
+ (node "D12" "4")
+ )
+ (net "H5"
+ (node "D14" "F1")
+ (node "D20" "F16")
+ )
+ (net "H6"
+ (node "D14" "E2")
+ (node "D20" "F15")
+ )
+ (net "DB15"
+ (node "D14" "D21")
+ (node "D18" "38")
+ )
+ (net "DB14"
+ (node "D14" "D22")
+ (node "D18" "37")
+ )
+ (net "DB12"
+ (node "D14" "E21")
+ (node "D18" "35")
+ )
+ (net "DB11"
+ (node "D14" "E22")
+ (node "D18" "32")
+ )
+ (net "DB9"
+ (node "D14" "F21")
+ (node "D18" "30")
+ )
+ (net "DB8"
+ (node "D14" "F22")
+ (node "D18" "29")
+ )
+ (net "DB7"
+ (node "D14" "V20")
+ (node "D18" "16")
+ )
+ (net "DB6"
+ (node "D14" "U22")
+ (node "D18" "15")
+ )
+ (net "DB4"
+ (node "D14" "U20")
+ (node "D18" "13")
+ )
+ (net "DB5"
+ (node "D14" "U21")
+ (node "D18" "14")
+ )
+ (net "DB3"
+ (node "D14" "T22")
+ (node "D18" "10")
+ )
+ (net "DB1"
+ (node "D14" "R22")
+ (node "D18" "8")
+ )
+ (net "DB2"
+ (node "D14" "T21")
+ (node "D18" "9")
+ )
+ (net "H7"
+ (node "D14" "H1")
+ (node "D20" "G16")
+ )
+ (net "DB13"
+ (node "D14" "E20")
+ (node "D18" "36")
+ )
+ (net "DB10"
+ (node "D14" "F20")
+ (node "D18" "31")
+ )
+ (net "H8"
+ (node "D14" "F2")
+ (node "D20" "G15")
+ )
+ (net "H9"
+ (node "D14" "J1")
+ (node "D20" "H16")
+ )
+ (net "H10"
+ (node "D14" "H2")
+ (node "D20" "H15")
+ )
+ (net "H11"
+ (node "D14" "J2")
+ (node "D20" "J15")
+ )
+ (net "H12"
+ (node "D14" "N1")
+ (node "D20" "K15")
+ )
+ (net "H13"
+ (node "D14" "P2")
+ (node "D20" "K16")
+ )
+ (net "NET00350"
+ (node "D35" "4")
+ (node "R84" "B")
+ (node "R83" "B")
+ )
+ (net "NET00352"
+ (node "D35" "1")
+ (node "VD3" "1")
+ (node "XP6" "1")
+ )
+ (net "NET00403"
+ (node "HL4" "2")
+ (node "R42" "A")
+ )
+ (net "TDI7"
+ (node "XP3" "P9")
+ (node "D14" "K5")
+ (node "R37" "4")
+ )
+ (net "TMS7"
+ (node "XP3" "P5")
+ (node "D14" "K6")
+ (node "R37" "3")
+ )
+ (net "NET00404"
+ (node "HL5" "2")
+ (node "R43" "A")
+ )
+ (net "7MSEL0"
+ (node "D14" "M17")
+ (node "R38" "A")
+ )
+ (net "TDO7"
+ (node "XP3" "P3")
+ (node "D14" "L5")
+ (node "R37" "2")
+ )
+ (net "VD6"
+ (node "D14" "G11")
+ (node "HL3" "1")
+ )
+ (net "TP1"
+ (node "D14" "E8")
+ (node "TP1" "1")
+ )
+ (net "VD7"
+ (node "D14" "H12")
+ (node "HL4" "1")
+ )
+ (net "VD8"
+ (node "D14" "H11")
+ (node "HL5" "1")
+ )
+ (net "VD5"
+ (node "D14" "G12")
+ (node "HL2" "1")
+ )
+ (net "3_IO3"
+ (node "D14" "W3")
+ (node "D10" "5")
+ )
+ (net "4_IO5"
+ (node "D14" "W1")
+ (node "D12" "7")
+ )
+ (net "4_IO6"
+ (node "D14" "V1")
+ (node "D12" "8")
+ )
+ (net "4_P_RQ"
+ (node "D14" "R19")
+ (node "D13" "11")
+ )
+ (net "RD_U"
+ (node "D20" "D2")
+ (node "D34" "13")
+ )
+ (net "USB-"
+ (node "D34" "16")
+ (node "XP4" "P8")
+ )
+ (net "4_CW"
+ (node "XP8" "C18")
+ (node "D13" "13")
+ )
+ (net "4__A0"
+ (node "D14" "E18")
+ (node "D11" "4")
+ )
+ (net "4__A1"
+ (node "D14" "F15")
+ (node "D11" "6")
+ )
+ (net "NSTAT7"
+ (node "D14" "N20")
+ (node "R39" "4")
+ )
+ (net "4__A2"
+ (node "D14" "G17")
+ (node "D11" "8")
+ )
+ (net "7DATA0"
+ (node "D14" "K4")
+ (node "D20" "C15")
+ )
+ (net "USB+"
+ (node "D34" "15")
+ (node "XP4" "P6")
+ )
+ (net "3_IO0"
+ (node "D14" "U2")
+ (node "D10" "2")
+ )
+ (net "4_STR_0"
+ (node "D14" "D14")
+ (node "D11" "2")
+ )
+ (net "4_P_RDY"
+ (node "D14" "J17")
+ (node "D13" "5")
+ )
+ (net "4_P_R\\W"
+ (node "D14" "H18")
+ (node "D13" "3")
+ )
+ (net "4_P_A0"
+ (node "XP8" "C12")
+ (node "D11" "16")
+ )
+ (net "4_OUT1"
+ (node "R26" "3")
+ (node "D12" "17")
+ (node "XP8" "C4")
+ )
+ (net "4_OUT2"
+ (node "R31" "1")
+ (node "D12" "16")
+ (node "XP8" "C5")
+ )
+ (net "4_OUT0"
+ (node "R26" "1")
+ (node "D12" "18")
+ (node "XP8" "C3")
+ )
+ (net "4_OUT3"
+ (node "R31" "3")
+ (node "D12" "15")
+ (node "XP8" "C6")
+ )
+ (net "4_OUT4"
+ (node "D12" "14")
+ (node "XP8" "C7")
+ (node "R34" "1")
+ )
+ (net "4_STROB"
+ (node "XP8" "C11")
+ (node "D11" "18")
+ )
+ (net "4_OUT5"
+ (node "D12" "13")
+ (node "XP8" "C8")
+ (node "R34" "3")
+ )
+ (net "4_OUT6"
+ (node "D12" "12")
+ (node "XP8" "C9")
+ (node "R35" "1")
+ )
+ (net "4_OUT7"
+ (node "D12" "11")
+ (node "XP8" "C10")
+ (node "R35" "3")
+ )
+ (net "4_P_A1"
+ (node "XP8" "C13")
+ (node "D11" "14")
+ )
+ (net "4_P_A2"
+ (node "XP8" "C14")
+ (node "D11" "12")
+ )
+ (net "4_R\\W"
+ (node "XP8" "C15")
+ (node "D13" "17")
+ )
+ (net "4_RDY"
+ (node "XP8" "C16")
+ (node "D13" "15")
+ )
+ (net "4_P_CW1"
+ (node "D14" "L18")
+ (node "D13" "7")
+ )
+ (net "2_RQ"
+ (node "XP7" "C17")
+ (node "D2" "8")
+ )
+ (net "1_IO1"
+ (node "D14" "B4")
+ (node "D1" "3")
+ )
+ (net "RXF"
+ (node "D20" "B1")
+ (node "D34" "23")
+ )
+ (net "2_~OE1"
+ (node "D14" "B7")
+ (node "D5" "19")
+ (node "R13" "B")
+ )
+ (net "2_DIR1"
+ (node "D14" "C7")
+ (node "D5" "1")
+ )
+ (net "1_IO3"
+ (node "D14" "A5")
+ (node "D1" "5")
+ )
+ (net "1_IO5"
+ (node "D14" "A6")
+ (node "D1" "7")
+ )
+ (net "1_IO7"
+ (node "D14" "A7")
+ (node "D1" "9")
+ )
+ (net "2_IO1"
+ (node "D14" "B8")
+ (node "D5" "3")
+ )
+ (net "2_IO3"
+ (node "D14" "B9")
+ (node "D5" "5")
+ )
+ (net "TXE"
+ (node "D20" "A2")
+ (node "D34" "22")
+ )
+ (net "D3"
+ (node "D14" "P3")
+ (node "D25" "7")
+ (node "D20" "T6")
+ (node "D32" "22")
+ (node "D24" "T11")
+ )
+ (net "RU"
+ (node "D20" "B3")
+ (node "D34" "19")
+ (node "R81" "B")
+ (node "R80" "B")
+ )
+ (net "PWR"
+ (node "D20" "D1")
+ (node "D34" "12")
+ )
+ (net "WR_U"
+ (node "D20" "C2")
+ (node "D34" "14")
+ )
+ (net "NET00002"
+ (node "C112" "A")
+ (node "D34" "17")
+ )
+ (net "DU1"
+ (node "D20" "G2")
+ (node "D34" "5")
+ )
+ (net "DU5"
+ (node "D20" "F2")
+ (node "D34" "9")
+ )
+ (net "DU3"
+ (node "D20" "E2")
+ (node "D34" "11")
+ )
+ (net "DU2"
+ (node "D20" "G1")
+ (node "D34" "3")
+ )
+ (net "NET00014"
+ (node "R17" "A")
+ (node "D4" "20")
+ )
+ (net "DU6"
+ (node "D20" "E1")
+ (node "D34" "10")
+ )
+ (net "DU7"
+ (node "D20" "F1")
+ (node "D34" "6")
+ )
+ (net "DU4"
+ (node "D20" "H2")
+ (node "D34" "2")
+ )
+ (net "DU0"
+ (node "D20" "H1")
+ (node "D34" "1")
+ )
+ (net "2_IO5"
+ (node "D14" "A10")
+ (node "D5" "7")
+ )
+ (net "1_P_RQ"
+ (node "D14" "B20")
+ (node "D6" "12")
+ )
+ (net "D1"
+ (node "D14" "H3")
+ (node "D25" "4")
+ (node "D20" "R7")
+ (node "D32" "20")
+ (node "D24" "T12")
+ )
+ (net "D2"
+ (node "D14" "P5")
+ (node "D25" "5")
+ (node "D20" "R6")
+ (node "D32" "21")
+ (node "D24" "U13")
+ )
+ (net "D0"
+ (node "D14" "D3")
+ (node "D25" "2")
+ (node "D20" "T7")
+ (node "D32" "19")
+ (node "D24" "U14")
+ )
+ (net "A17"
+ (node "D14" "W5")
+ (node "D25" "20")
+ (node "D20" "T5")
+ (node "D24" "U16")
+ )
+ (net "A16"
+ (node "D14" "U4")
+ (node "D20" "T10")
+ (node "D24" "T15")
+ )
+ (net "A18"
+ (node "D14" "J4")
+ (node "D25" "21")
+ (node "D20" "R8")
+ (node "D24" "T14")
+ )
+ (net "D10"
+ (node "D14" "N3")
+ (node "D25" "45")
+ (node "D20" "F4")
+ (node "D32" "43")
+ (node "D24" "T8")
+ )
+ (net "D9"
+ (node "D14" "E4")
+ (node "D25" "44")
+ (node "D20" "G3")
+ (node "D32" "39")
+ (node "D24" "U9")
+ )
+ (net "D8"
+ (node "D14" "N4")
+ (node "D25" "42")
+ (node "D20" "G4")
+ (node "D32" "38")
+ (node "D24" "T9")
+ )
+ (net "D7"
+ (node "D14" "E3")
+ (node "D25" "13")
+ (node "D20" "T4")
+ (node "D32" "37")
+ (node "D24" "U10")
+ )
+ (net "D6"
+ (node "D14" "T5")
+ (node "D25" "11")
+ (node "D20" "M4")
+ (node "D32" "36")
+ (node "D24" "T10")
+ )
+ (net "D5"
+ (node "D14" "D4")
+ (node "D25" "10")
+ (node "D20" "M3")
+ (node "D32" "35")
+ (node "D24" "U11")
+ )
+ (net "D4"
+ (node "D14" "C3")
+ (node "D25" "8")
+ (node "D20" "R5")
+ (node "D32" "23")
+ (node "D24" "U12")
+ )
+ (net "D15"
+ (node "D14" "M5")
+ (node "D25" "53")
+ (node "D20" "D4")
+ (node "D32" "49")
+ (node "D24" "T6")
+ )
+ (net "D14"
+ (node "D14" "G3")
+ (node "D25" "51")
+ (node "D20" "F3")
+ (node "D32" "47")
+ (node "D24" "U6")
+ )
+ (net "D13"
+ (node "D14" "M6")
+ (node "D25" "50")
+ (node "D20" "E4")
+ (node "D32" "46")
+ (node "D24" "T7")
+ )
+ (net "D12"
+ (node "D14" "F4")
+ (node "D25" "48")
+ (node "D20" "E3")
+ (node "D32" "45")
+ (node "D24" "U7")
+ )
+ (net "D11"
+ (node "D14" "F3")
+ (node "D25" "47")
+ (node "D20" "D3")
+ (node "D32" "44")
+ (node "D24" "U8")
+ )
+ (net "A0"
+ (node "D14" "U13")
+ (node "D25" "23")
+ (node "D20" "P13")
+ (node "D32" "32")
+ (node "D24" "J16")
+ )
+ (net "NET00308"
+ (node "D27" "1")
+ (node "R60" "A")
+ )
+ (net "60MHZ"
+ (node "D20" "J5")
+ (node "R63" "B")
+ )
+ (net "MAX-TDI"
+ (node "D20" "L6")
+ (node "XP4" "P9")
+ (node "R50" "4")
+ )
+ (net "~RSUSB"
+ (node "D20" "N2")
+ (node "D32" "58")
+ )
+ (net "30MHZ"
+ (node "D20" "C3")
+ (node "D32" "25")
+ )
+ (net "PPI"
+ (node "D20" "K14")
+ (node "D24" "B10")
+ )
+ (net "BMOD0"
+ (node "D20" "T8")
+ (node "D24" "U5")
+ )
+ (net "VD1"
+ (node "D20" "B9")
+ (node "HL6" "1")
+ )
+ (net "SA10"
+ (node "D25" "22")
+ (node "D24" "B15")
+ )
+ (net "MOSI"
+ (node "D22" "15")
+ (node "D24" "E1")
+ (node "D23" "15")
+ (node "R49" "4")
+ )
+ (net "MAX-TDO"
+ (node "D20" "M5")
+ (node "XP4" "P3")
+ (node "R50" "2")
+ )
+ (net "A10"
+ (node "D14" "W7")
+ (node "D24" "P17")
+ )
+ (net "~ABE1"
+ (node "D25" "39")
+ (node "D24" "H17")
+ )
+ (net "USB_DP"
+ (node "X1" "3")
+ (node "D32" "6")
+ (node "R78" "B")
+ (node "R79" "B")
+ )
+ (net "VDDEXT" (planeColor "ff0000")
+ (node "D25" "49")
+ (node "D25" "43")
+ (node "D25" "14")
+ (node "D25" "1")
+ (node "D25" "3")
+ (node "D25" "9")
+ (node "D25" "27")
+ (node "D22" "2")
+ (node "D24" "B2")
+ (node "D24" "T2")
+ (node "D24" "J6")
+ (node "D24" "F10")
+ (node "D24" "F9")
+ (node "D24" "F8")
+ (node "D24" "H6")
+ (node "D24" "G6")
+ (node "D24" "F7")
+ (node "D24" "F6")
+ (node "D24" "M8")
+ (node "D24" "M7")
+ (node "D24" "M6")
+ (node "D24" "L6")
+ (node "D24" "K6")
+ (node "D23" "2")
+ (node "R62" "3")
+ (node "R62" "2")
+ (node "R62" "4")
+ (node "R61" "3")
+ (node "R61" "2")
+ (node "R61" "1")
+ (node "R61" "4")
+ (node "C105" "A")
+ (node "C96" "A")
+ (node "C101" "A")
+ (node "C122" "A")
+ (node "C117" "A")
+ (node "R55" "A")
+ (node "C114" "A")
+ (node "C91" "A")
+ (node "C120" "A")
+ (node "C108" "A")
+ (node "C123" "A")
+ )
+ (net "~USB"
+ (node "D20" "N1")
+ (node "D32" "61")
+ )
+ (net "A11"
+ (node "D14" "W4")
+ (node "D25" "35")
+ (node "D24" "P16")
+ )
+ (net "~SRAS"
+ (node "D25" "18")
+ (node "D24" "A15")
+ )
+ (net "~SWE"
+ (node "D25" "16")
+ (node "D24" "B17")
+ )
+ (net "R6"
+ (node "D24" "C17")
+ (node "R62" "6")
+ )
+ (net "MISO"
+ (node "D22" "8")
+ (node "D24" "E2")
+ (node "D23" "8")
+ (node "R49" "1")
+ )
+ (net "~SMS"
+ (node "D25" "19")
+ (node "D24" "A17")
+ )
+ (net "VROUT"
+ (node "D24" "B13")
+ (node "D24" "B12")
+ (node "U2" "4")
+ )
+ (net "CLKIN"
+ (node "D20" "E14")
+ (node "D24" "A14")
+ )
+ (net "A12"
+ (node "D14" "V4")
+ (node "D25" "36")
+ (node "D24" "R17")
+ )
+ (net "BMOD1"
+ (node "D20" "T9")
+ (node "D24" "T5")
+ )
+ (net "~SCAS"
+ (node "D25" "17")
+ (node "D24" "A16")
+ )
+ (net "~ABE0"
+ (node "D25" "15")
+ (node "D24" "H16")
+ )
+ (net "SCK"
+ (node "D22" "16")
+ (node "D24" "D1")
+ (node "D23" "16")
+ (node "R49" "3")
+ )
+ (net "CLKOUT"
+ (node "D25" "38")
+ (node "D24" "D16")
+ )
+ (net "~ARE"
+ (node "D14" "W11")
+ (node "D20" "L12")
+ (node "D32" "59")
+ (node "D24" "G16")
+ )
+ (net "SCKE"
+ (node "D25" "37")
+ (node "D24" "B14")
+ )
+ (net "PF3"
+ (node "D24" "C2")
+ (node "D23" "7")
+ (node "R47" "A")
+ )
+ (net "~DRES"
+ (node "D20" "G14")
+ (node "D24" "A12")
+ )
+ (net "OUT"
+ (node "C72" "A")
+ (node "D24" "A13")
+ )
+ (net "PF13"
+ (node "D20" "J13")
+ (node "D24" "B6")
+ )
+ (net "BF_TRS"
+ (node "XP5" "P10")
+ (node "D24" "U2")
+ (node "R61" "6")
+ )
+ (net "BF_TDI"
+ (node "XP5" "P12")
+ (node "D24" "U3")
+ (node "R61" "5")
+ )
+ (net "A13"
+ (node "D14" "T3")
+ (node "D24" "R16")
+ )
+ (net "A14"
+ (node "D14" "H4")
+ (node "D24" "T17")
+ )
+ (net "A15"
+ (node "D14" "G5")
+ (node "D24" "U15")
+ )
+ (net "INT_USB"
+ (node "D20" "M1")
+ (node "D32" "63")
+ (node "R65" "B")
+ )
+ (net "~DMA_WR"
+ (node "D20" "C4")
+ (node "D32" "34")
+ )
+ (net "~DMA_RD"
+ (node "D20" "R1")
+ (node "D32" "50")
+ )
+ (net "MAX-TMS"
+ (node "D20" "N4")
+ (node "XP4" "P5")
+ (node "R50" "3")
+ )
+ (net "ALE"
+ (node "D20" "P2")
+ (node "D32" "53")
+ )
+ (net "R5"
+ (node "D24" "C16")
+ (node "R62" "7")
+ )
+ (net "DREQ"
+ (node "D20" "M2")
+ (node "D32" "62")
+ )
+ (net "+2,5V"
+ (node "D32" "48")
+ (node "D32" "1")
+ (node "D32" "3")
+ (node "D29" "2")
+ (node "C90" "A")
+ (node "C89" "A")
+ (node "L15" "A")
+ (node "C88" "A")
+ )
+ (net "RREF"
+ (node "D32" "13")
+ (node "R66" "B")
+ )
+ (net "PF2"
+ (node "D22" "7")
+ (node "D24" "B1")
+ (node "R49" "2")
+ )
+ (net "USB_DM"
+ (node "X1" "2")
+ (node "D32" "8")
+ (node "R77" "B")
+ )
+ (net "PF12"
+ (node "D20" "E13")
+ (node "D24" "A6")
+ )
+ (net "PF15"
+ (node "D14" "U19")
+ (node "D24" "B7")
+ )
+ (net "PF11"
+ (node "D14" "T18")
+ (node "D20" "F14")
+ (node "D24" "A5")
+ )
+ (net "PF14"
+ (node "D14" "V19")
+ (node "D24" "A7")
+ )
+ (net "R7"
+ (node "R59" "B")
+ (node "D24" "B11")
+ )
+ (net "~AOE"
+ (node "D14" "W20")
+ (node "D20" "D13")
+ (node "D24" "F17")
+ )
+ (net "PF0"
+ (node "D20" "H13")
+ (node "D24" "D2")
+ )
+ (net "PF8"
+ (node "D22" "1")
+ (node "D24" "B4")
+ (node "D23" "1")
+ (node "R48" "A")
+ )
+ (net "W/VP"
+ (node "D20" "D12")
+ (node "D22" "9")
+ (node "D23" "9")
+ )
+ (net "PF10"
+ (node "D20" "J14")
+ (node "D24" "B5")
+ )
+ (net "PF9"
+ (node "D14" "U18")
+ (node "D20" "F13")
+ (node "D24" "A4")
+ )
+ (net "A8"
+ (node "D14" "U8")
+ (node "D25" "33")
+ (node "D24" "N17")
+ )
+ (net "VD2"
+ (node "D20" "A9")
+ (node "HL7" "1")
+ )
+ (net "A9"
+ (node "D14" "T8")
+ (node "D25" "34")
+ (node "D24" "N16")
+ )
+ (net "VD3"
+ (node "D20" "B10")
+ (node "HL8" "1")
+ )
+ (net "PF6"
+ (node "D20" "H14")
+ (node "D24" "B3")
+ )
+ (net "VD4"
+ (node "D20" "A10")
+ (node "HL9" "1")
+ )
+ (net "VDDINT" (planeColor "ff0000")
+ (node "D24" "J12")
+ (node "D24" "H12")
+ (node "D24" "G12")
+ (node "D24" "F12")
+ (node "D24" "M12")
+ (node "D24" "M11")
+ (node "D24" "M10")
+ (node "D24" "L12")
+ (node "D24" "K12")
+ (node "C102" "A")
+ (node "C92" "A")
+ (node "C80" "1")
+ (node "C115" "A")
+ (node "C109" "A")
+ (node "L12" "A")
+ (node "C97" "A")
+ (node "C106" "A")
+ )
+ (net "BF_TCK"
+ (node "XP5" "P8")
+ (node "D24" "U4")
+ (node "R61" "7")
+ )
+ (net "~EMU"
+ (node "XP5" "P2")
+ (node "D24" "U1")
+ (node "R62" "8")
+ )
+ (net "BF_TDO"
+ (node "XP5" "P14")
+ (node "D24" "T4")
+ )
+ (net "BF_TMS"
+ (node "XP5" "P6")
+ (node "D24" "T3")
+ (node "R61" "8")
+ )
+ (net "R8"
+ (node "XP5" "P5")
+ (node "R62" "5")
+ )
+ (net "~AWE"
+ (node "D14" "U14")
+ (node "D20" "L11")
+ (node "D32" "60")
+ (node "D24" "G17")
+ )
+ (net "~AMS0"
+ (node "D20" "K13")
+ (node "D24" "D17")
+ )
+ (net "NET00312"
+ (node "U2" "3")
+ (node "U2" "1")
+ (node "U2" "2")
+ (node "C75" "A")
+ (node "R56" "B")
+ )
+ (net "+3,3VF" (planeColor "ff0000")
+ (node "D21" "2")
+ (node "D20" "J9")
+ (node "D20" "C16")
+ (node "D20" "P16")
+ (node "D20" "F9")
+ (node "D20" "C1")
+ (node "D20" "L9")
+ (node "D20" "P1")
+ (node "D20" "A14")
+ (node "D20" "J11")
+ (node "D20" "T14")
+ (node "D20" "A3")
+ (node "D20" "J6")
+ (node "D20" "J7")
+ (node "D20" "T3")
+ (node "D20" "H10")
+ (node "D20" "H11")
+ (node "D20" "F8")
+ (node "D20" "H6")
+ (node "D20" "H8")
+ (node "D20" "L8")
+ (node "C82" "A")
+ (node "D19" "20")
+ (node "D32" "42")
+ (node "D32" "27")
+ (node "D32" "55")
+ (node "D32" "7")
+ (node "C83" "B")
+ (node "D30" "8")
+ (node "U1" "3")
+ (node "U1" "1")
+ (node "U1" "2")
+ (node "R71" "B")
+ (node "R74" "A")
+ (node "R72" "B")
+ (node "D33" "8")
+ (node "D31" "8")
+ (node "C68" "B")
+ (node "C99" "A")
+ (node "C110" "A")
+ (node "C116" "A")
+ (node "D34" "4")
+ (node "C67" "A")
+ (node "C104" "A")
+ (node "C103" "A")
+ (node "C118" "A")
+ (node "C98" "A")
+ (node "R46" "B")
+ (node "C121" "A")
+ (node "C85" "A")
+ (node "C70" "A")
+ (node "C94" "A")
+ (node "R65" "A")
+ (node "R49" "7")
+ (node "R49" "6")
+ (node "R49" "8")
+ (node "R49" "5")
+ (node "C107" "A")
+ (node "C69" "A")
+ (node "R73" "A")
+ (node "R47" "B")
+ (node "R48" "B")
+ (node "R64" "B")
+ (node "C93" "A")
+ (node "L13" "A")
+ (node "R80" "A")
+ (node "C119" "A")
+ )
+ (net "3S"
+ (node "D20" "A11")
+ (node "D19" "12")
+ )
+ (net "SHIM"
+ (node "D20" "C7")
+ (node "U1" "4")
+ )
+ (net "NET00385"
+ (node "R7" "A")
+ (node "XP2" "2")
+ )
+ (net "NET00384"
+ (node "C1" "A")
+ (node "XP1" "2")
+ (node "XP2" "1")
+ )
+ (net "MAX-TCK"
+ (node "D20" "P3")
+ (node "XP4" "P1")
+ (node "R50" "1")
+ )
+ (net "NET00020"
+ (node "XW6" "1")
+ (node "13" "RF")
+ )
+ (net "D_IN"
+ (node "XP8" "B23")
+ (node "R70" "B")
+ (node "R74" "B")
+ (node "D33" "1")
+ )
+ (net "~D_IN"
+ (node "XP8" "C23")
+ (node "D33" "2")
+ (node "R69" "B")
+ (node "R73" "B")
+ )
+ (net "~AMS1"
+ (node "D14" "U15")
+ (node "D24" "E16")
+ )
+ (net "10M"
+ (node "XP7" "B29")
+ (node "D3" "12")
+ )
+ (net "20MHZ"
+ (node "D20" "D5")
+ (node "R7" "B")
+ )
+ (net "D_I"
+ (node "D20" "R16")
+ (node "D33" "7")
+ )
+ (net "10MHZ"
+ (node "D28" "4")
+ (node "D20" "D7")
+ )
+ (net "NET00375"
+ (node "D19" "1")
+ (node "R46" "A")
+ )
+ (net "NET00210"
+ (node "HL9" "2")
+ (node "R54" "A")
+ )
+ (net "NET00142"
+ (node "R28" "B")
+ (node "5" "RF")
+ )
+ (net "NET00144"
+ (node "XW4" "1")
+ (node "10" "RF")
+ )
+ (net "NET00541"
+ (node "D9" "3")
+ (node "C28" "A")
+ (node "R23" "A")
+ (node "R21" "A")
+ )
+ (net "NET00542"
+ (node "D9" "2")
+ (node "R20" "B")
+ (node "R25" "A")
+ )
+ (net "2_STROB"
+ (node "XP7" "C11")
+ (node "D2" "18")
+ )
+ (net "1__A0"
+ (node "D14" "B14")
+ (node "D2" "5")
+ )
+ (net "1__A1"
+ (node "D14" "B15")
+ (node "D2" "7")
+ )
+ (net "1__A2"
+ (node "D14" "B16")
+ (node "D6" "2")
+ )
+ (net "2_IO7"
+ (node "D14" "A11")
+ (node "D5" "9")
+ )
+ (net "1S"
+ (node "XP7" "C29")
+ (node "D20" "A12")
+ (node "D19" "14")
+ (node "D3" "11")
+ )
+ (net "NET00214"
+ (node "R52" "A")
+ (node "HL7" "2")
+ )
+ (net "NET00215"
+ (node "HL6" "2")
+ (node "R51" "A")
+ )
+ (net "NET00216"
+ (node "R53" "A")
+ (node "HL8" "2")
+ )
+ (net "1_STR_0"
+ (node "D14" "B13")
+ (node "D2" "3")
+ )
+ (net "1_P_RDY"
+ (node "D14" "C17")
+ (node "D6" "6")
+ )
+ (net "1_P_R\\W"
+ (node "D14" "A17")
+ (node "D6" "4")
+ )
+ (net "1_STROB"
+ (node "XP7" "B11")
+ (node "D2" "17")
+ )
+ (net "1_OUT1"
+ (node "D1" "17")
+ (node "XP7" "B4")
+ (node "R5" "4")
+ )
+ (net "NET00255"
+ (node "C73" "1")
+ (node "D26" "2")
+ (node "R55" "B")
+ (node "R56" "A")
+ )
+ (net "NET00256"
+ (node "X1" "1")
+ (node "L16" "A")
+ )
+ (net "RSDP"
+ (node "D32" "5")
+ (node "R78" "A")
+ )
+ (net "AVSS"
+ (node "D32" "12")
+ (node "D32" "14")
+ (node "D32" "16")
+ (node "C87" "B")
+ (node "C86" "B")
+ (node "C84" "B")
+ (node "L14" "B")
+ )
+ (net "PVDD"
+ (node "D32" "11")
+ (node "D32" "15")
+ (node "C87" "A")
+ (node "C86" "A")
+ (node "L15" "B")
+ (node "C84" "A")
+ )
+ (net "RPU"
+ (node "D32" "2")
+ (node "R79" "A")
+ )
+ (net "RSDM"
+ (node "D32" "9")
+ (node "R77" "A")
+ )
+ (net "NET00016"
+ (node "X1" "4")
+ (node "L17" "A")
+ )
+ (net "VBUS"
+ (node "D32" "64")
+ (node "R76" "A")
+ (node "L16" "B")
+ )
+ (net "NET00264"
+ (node "D28" "6")
+ (node "C79" "A")
+ (node "C77" "A")
+ (node "L13" "B")
+ )
+ (net "NET00265"
+ (node "U1" "6")
+ (node "U1" "8")
+ (node "U1" "7")
+ (node "U1" "5")
+ (node "L11" "B")
+ (node "VD1" "1")
+ )
+ (net "NET00266"
+ (node "D28" "1")
+ (node "R57" "B")
+ (node "C74" "A")
+ (node "L11" "A")
+ (node "R58" "B")
+ )
+ (net "NET00268"
+ (node "D27" "3")
+ (node "R63" "A")
+ )
+ (net "NET00271"
+ (node "VD2" "1")
+ (node "U2" "6")
+ (node "U2" "8")
+ (node "U2" "7")
+ (node "U2" "5")
+ (node "L12" "B")
+ )
+ (net "1_OUT2"
+ (node "D1" "16")
+ (node "XP7" "B5")
+ (node "R9" "2")
+ )
+ (net "1_OUT0"
+ (node "D1" "18")
+ (node "XP7" "B3")
+ (node "R5" "2")
+ )
+ (net "1_OUT3"
+ (node "D1" "15")
+ (node "XP7" "B6")
+ (node "R9" "4")
+ )
+ (net "1_OUT4"
+ (node "R15" "2")
+ (node "D1" "14")
+ (node "XP7" "B7")
+ )
+ (net "2_P_A0"
+ (node "XP7" "C12")
+ (node "D2" "16")
+ )
+ (net "1_OUT5"
+ (node "R15" "4")
+ (node "D1" "13")
+ (node "XP7" "B8")
+ )
+ (net "1_OUT6"
+ (node "R18" "2")
+ (node "D1" "12")
+ (node "XP7" "B9")
+ )
+ (net "1_OUT7"
+ (node "R18" "4")
+ (node "D1" "11")
+ (node "XP7" "B10")
+ )
+ (net "1_P_A0"
+ (node "XP7" "B12")
+ (node "D2" "15")
+ )
+ (net "2_P_A1"
+ (node "XP7" "C13")
+ (node "D2" "14")
+ )
+ (net "1_P_A1"
+ (node "XP7" "B13")
+ (node "D2" "13")
+ )
+ (net "2_P_A2"
+ (node "XP7" "C14")
+ (node "D2" "11")
+ )
+ (net "1_P_CW"
+ (node "D14" "A19")
+ (node "D6" "9")
+ )
+ (net "1_RQ"
+ (node "XP7" "B17")
+ (node "D6" "8")
+ )
+ (net "1_IO0"
+ (node "D14" "A4")
+ (node "D1" "2")
+ )
+ (net "1_~OE1"
+ (node "D14" "B3")
+ (node "D1" "19")
+ (node "R1" "B")
+ )
+ (net "1_DIR1"
+ (node "D14" "A3")
+ (node "D1" "1")
+ )
+ (net "1_IO2"
+ (node "D14" "C4")
+ (node "D1" "4")
+ )
+ (net "1_IO4"
+ (node "D14" "B5")
+ (node "D1" "6")
+ )
+ (net "1_IO6"
+ (node "D14" "B6")
+ (node "D1" "8")
+ )
+ (net "2_IO0"
+ (node "D14" "A8")
+ (node "D5" "2")
+ )
+ (net "2_IO2"
+ (node "D14" "A9")
+ (node "D5" "4")
+ )
+ (net "2_IO4"
+ (node "D14" "C9")
+ (node "D5" "6")
+ )
+ (net "2_P_RQ"
+ (node "D14" "A20")
+ (node "D2" "12")
+ )
+ (net "1_P_A2"
+ (node "XP7" "B14")
+ (node "D6" "18")
+ )
+ (net "2__A0"
+ (node "D14" "A14")
+ (node "D2" "4")
+ )
+ (net "2__A1"
+ (node "D14" "A15")
+ (node "D2" "6")
+ )
+ (net "2__A2"
+ (node "D14" "A16")
+ (node "D2" "9")
+ )
+ (net "2_IO6"
+ (node "D14" "B10")
+ (node "D5" "8")
+ )
+ (net "2_STR_0"
+ (node "D14" "A13")
+ (node "D2" "2")
+ )
+ (net "2_P_RDY"
+ (node "D14" "B17")
+ (node "D6" "5")
+ )
+ (net "2_P_R\\W"
+ (node "D14" "C16")
+ (node "D6" "3")
+ )
+ (net "2_R\\W"
+ (node "XP7" "C15")
+ (node "D6" "17")
+ )
+ (net "2_OUT1"
+ (node "D5" "17")
+ (node "XP7" "C4")
+ (node "R5" "3")
+ )
+ (net "2_OUT2"
+ (node "D5" "16")
+ (node "XP7" "C5")
+ (node "R9" "1")
+ )
+ (net "2_OUT0"
+ (node "D5" "18")
+ (node "XP7" "C3")
+ (node "R5" "1")
+ )
+ (net "2_OUT3"
+ (node "D5" "15")
+ (node "XP7" "C6")
+ (node "R9" "3")
+ )
+ (net "NET00544"
+ (node "D9" "6")
+ (node "R25" "B")
+ (node "C33" "A")
+ )
+ (net "2_OUT4"
+ (node "R15" "1")
+ (node "D5" "14")
+ (node "XP7" "C7")
+ )
+ (net "1_R\\W"
+ (node "XP7" "B15")
+ (node "D6" "16")
+ )
+ (net "2_OUT5"
+ (node "R15" "3")
+ (node "D5" "13")
+ (node "XP7" "C8")
+ )
+ (net "2_OUT6"
+ (node "R18" "1")
+ (node "D5" "12")
+ (node "XP7" "C9")
+ )
+ (net "2_OUT7"
+ (node "R18" "3")
+ (node "D5" "11")
+ (node "XP7" "C10")
+ )
+ (net "2_RDY"
+ (node "XP7" "C16")
+ (node "D6" "15")
+ )
+ (net "1_RDY"
+ (node "XP7" "B16")
+ (node "D6" "14")
+ )
+ (net "2_CW"
+ (node "XP7" "C18")
+ (node "D6" "13")
+ )
+ (net "1_CW"
+ (node "XP7" "B18")
+ (node "D6" "11")
+ )
+ (net "2_P_CW"
+ (node "D14" "C18")
+ (node "D6" "7")
+ )
+ (net "NET00146"
+ (node "XW5" "1")
+ (node "11" "RF")
+ )
+ (net "NET00143"
+ (node "D11" "1")
+ (node "R24" "B")
+ )
+ (net "NET00145"
+ (node "D3" "1")
+ (node "R2" "B")
+ )
+ (net "NET00148"
+ (node "D13" "1")
+ (node "R33" "B")
+ )
+ (net "NET001490"
+ (node "D6" "1")
+ (node "R14" "B")
+ )
+ (net "NET001500"
+ (node "D2" "1")
+ (node "R3" "B")
+ )
+ (net "NET00000"
+ (node "D28" "5")
+ (node "R64" "A")
+ )
+ (net "NET00013"
+ (node "XP1" "1")
+ (node "2" "RF")
+ )
+ (net "NET00152"
+ (node "D9" "7")
+ (node "C30" "A")
+ (node "R23" "B")
+ (node "C29" "A")
+ (node "L6" "B")
+ )
+ (net "DT_P"
+ (node "XP8" "B20")
+ (node "D30" "1")
+ )
+ (net "DT_N"
+ (node "XP8" "C20")
+ (node "D30" "2")
+ )
+ (net "RS"
+ (node "D30" "3")
+ (node "R71" "A")
+ (node "D33" "4")
+ (node "R67" "B")
+ )
+ (net "~RS"
+ (node "D30" "4")
+ (node "R72" "A")
+ (node "D33" "3")
+ (node "R68" "B")
+ )
+ (net "RSS"
+ (node "XP8" "B24")
+ (node "R75" "B")
+ )
+ (net "CLK_P"
+ (node "XP8" "B21")
+ (node "D31" "1")
+ )
+ (net "CLK_N"
+ (node "XP8" "C21")
+ (node "D31" "2")
+ )
+ (net "STR_P"
+ (node "XP8" "B22")
+ (node "D31" "3")
+ )
+ (net "STR_N"
+ (node "XP8" "C22")
+ (node "D31" "4")
+ )
+ (net "STP"
+ (node "D20" "N15")
+ (node "D31" "6")
+ )
+ (net "CKP"
+ (node "D20" "N16")
+ (node "D31" "7")
+ )
+ (net "_RSS"
+ (node "D20" "P15")
+ (node "D30" "6")
+ )
+ (net "DP"
+ (node "D20" "P14")
+ (node "D30" "7")
+ )
+ (net "NET00042"
+ (node "X1" "5")
+ (node "X1" "6")
+ (node "C111" "A")
+ (node "R82" "A")
+ )
+ (net "RSR"
+ (node "D33" "6")
+ (node "R75" "A")
+ )
+ (net "TP27"
+ (node "R57" "A")
+ (node "TP27" "1")
+ )
+ (net "NET00008"
+ (node "7" "RF")
+ (node "R30" "B")
+ )
+ (net "NET00009"
+ (node "R29" "B")
+ (node "6" "RF")
+ )
+ (net "NET00010"
+ (node "XW3" "1")
+ (node "9" "RF")
+ )
+ (net "NET00011"
+ (node "XW2" "1")
+ (node "8" "RF")
+ )
+ (net "NET00012"
+ (node "XW1" "1")
+ (node "1" "RF")
+ )
+ (net "NET00015"
+ (node "R16" "A")
+ (node "HL1" "1")
+ (node "R17" "B")
+ (node "R19" "A")
+ (node "3" "1")
+ )
+ (net "GND" (planeColor "ffffff")
+ (node "D21" "1")
+ (node "XW6" "5")
+ (node "XW6" "4")
+ (node "XW6" "2")
+ (node "XW6" "3")
+ (node "XW5" "5")
+ (node "XW5" "4")
+ (node "XW5" "2")
+ (node "XW5" "3")
+ (node "XW4" "5")
+ (node "XW4" "4")
+ (node "XW4" "2")
+ (node "XW4" "3")
+ (node "XW3" "5")
+ (node "XW3" "4")
+ (node "XW3" "2")
+ (node "XW3" "3")
+ (node "XW2" "5")
+ (node "XW2" "4")
+ (node "XW2" "2")
+ (node "XW2" "3")
+ (node "XW1" "5")
+ (node "XW1" "4")
+ (node "XW1" "2")
+ (node "XW1" "3")
+ (node "XP7" "A1")
+ (node "XP7" "B1")
+ (node "XP7" "A31")
+ (node "XP7" "B31")
+ (node "XP7" "C1")
+ (node "XP7" "C31")
+ (node "XP7" "A2")
+ (node "XP7" "B2")
+ (node "XP7" "A32")
+ (node "XP7" "B32")
+ (node "XP7" "C2")
+ (node "XP7" "C32")
+ (node "XP8" "A1")
+ (node "XP8" "B1")
+ (node "XP8" "A31")
+ (node "XP8" "B31")
+ (node "XP8" "C1")
+ (node "XP8" "C31")
+ (node "XP8" "A2")
+ (node "XP8" "B2")
+ (node "XP8" "A32")
+ (node "XP8" "B32")
+ (node "XP8" "C2")
+ (node "XP8" "C32")
+ (node "XP3" "P10")
+ (node "XP3" "P2")
+ (node "D28" "3")
+ (node "D14" "W19")
+ (node "D14" "L11")
+ (node "D14" "F19")
+ (node "D14" "K19")
+ (node "D14" "N19")
+ (node "D14" "K11")
+ (node "D14" "N11")
+ (node "D14" "M11")
+ (node "D14" "L12")
+ (node "D14" "L13")
+ (node "D14" "W13")
+ (node "D14" "L10")
+ (node "D14" "W10")
+ (node "D14" "B21")
+ (node "D14" "A22")
+ (node "D14" "H20")
+ (node "D14" "T20")
+ (node "D14" "AB22")
+ (node "D14" "AA21")
+ (node "D14" "C15")
+ (node "D14" "K12")
+ (node "D14" "E17")
+ (node "D14" "G13")
+ (node "D14" "D18")
+ (node "D14" "F18")
+ (node "D14" "E16")
+ (node "D14" "D13")
+ (node "D14" "K16")
+ (node "D14" "K13")
+ (node "D14" "N12")
+ (node "D14" "M12")
+ (node "D14" "T17")
+ (node "D14" "N16")
+ (node "D14" "N13")
+ (node "D14" "M13")
+ (node "D14" "T13")
+ (node "D14" "V17")
+ (node "D14" "V18")
+ (node "D14" "V16")
+ (node "D14" "Y15")
+ (node "D14" "C5")
+ (node "D14" "C8")
+ (node "D14" "F5")
+ (node "D14" "G10")
+ (node "D14" "D10")
+ (node "D14" "F7")
+ (node "D14" "F6")
+ (node "D14" "K10")
+ (node "D14" "K7")
+ (node "D14" "G4")
+ (node "D14" "U5")
+ (node "D14" "V5")
+ (node "D14" "N10")
+ (node "D14" "M10")
+ (node "D14" "T10")
+ (node "D14" "N7")
+ (node "D14" "V7")
+ (node "D14" "V6")
+ (node "D14" "M4")
+ (node "D14" "Y8")
+ (node "D14" "A1")
+ (node "D14" "B2")
+ (node "D14" "K3")
+ (node "D14" "K1")
+ (node "D14" "R3")
+ (node "D14" "V3")
+ (node "D14" "AA2")
+ (node "D14" "AB1")
+ (node "D25" "41")
+ (node "D25" "54")
+ (node "D25" "52")
+ (node "D25" "46")
+ (node "D25" "28")
+ (node "D25" "6")
+ (node "D25" "12")
+ (node "C27" "B")
+ (node "D18" "34")
+ (node "D18" "40")
+ (node "D18" "39")
+ (node "D18" "12")
+ (node "D20" "A16")
+ (node "D20" "T16")
+ (node "D20" "A1")
+ (node "D20" "T1")
+ (node "D20" "G9")
+ (node "D20" "H9")
+ (node "D20" "K9")
+ (node "D20" "J10")
+ (node "D20" "J8")
+ (node "D20" "G10")
+ (node "D20" "B15")
+ (node "D20" "K10")
+ (node "D20" "R15")
+ (node "D20" "B2")
+ (node "D20" "G7")
+ (node "D20" "G8")
+ (node "D20" "H7")
+ (node "D20" "R2")
+ (node "D20" "K7")
+ (node "D20" "K8")
+ (node "D17" "34")
+ (node "D17" "40")
+ (node "D17" "39")
+ (node "D17" "12")
+ (node "VD2" "3")
+ (node "XP5" "P1")
+ (node "XP5" "P7")
+ (node "XP5" "P13")
+ (node "XP5" "P9")
+ (node "XP5" "P11")
+ (node "XP5" "P4")
+ (node "C82" "B")
+ (node "D19" "19")
+ (node "D19" "10")
+ (node "D35" "3")
+ (node "D32" "41")
+ (node "D32" "40")
+ (node "D32" "33")
+ (node "D32" "24")
+ (node "D32" "18")
+ (node "D32" "17")
+ (node "D32" "56")
+ (node "D32" "54")
+ (node "D32" "4")
+ (node "D32" "10")
+ (node "D9" "4")
+ (node "C48" "B")
+ (node "R59" "A")
+ (node "C72" "B")
+ (node "C83" "A")
+ (node "C28" "B")
+ (node "D2" "19")
+ (node "D2" "10")
+ (node "D12" "10")
+ (node "D30" "5")
+ (node "D22" "10")
+ (node "D24" "J11")
+ (node "D24" "J10")
+ (node "D24" "J9")
+ (node "D24" "J8")
+ (node "D24" "J7")
+ (node "D24" "B16")
+ (node "D24" "H11")
+ (node "D24" "H10")
+ (node "D24" "G11")
+ (node "D24" "G10")
+ (node "D24" "F11")
+ (node "D24" "T16")
+ (node "D24" "L11")
+ (node "D24" "L10")
+ (node "D24" "K11")
+ (node "D24" "K10")
+ (node "D24" "H9")
+ (node "D24" "G9")
+ (node "D24" "H8")
+ (node "D24" "G8")
+ (node "D24" "H7")
+ (node "D24" "G7")
+ (node "D24" "M9")
+ (node "D24" "L9")
+ (node "D24" "K9")
+ (node "D24" "L8")
+ (node "D24" "K8")
+ (node "D24" "L7")
+ (node "D24" "K7")
+ (node "D27" "2")
+ (node "D7" "1")
+ (node "4" "GND")
+ (node "D5" "10")
+ (node "D1" "10")
+ (node "C12" "B")
+ (node "D6" "19")
+ (node "D6" "10")
+ (node "D3" "19")
+ (node "D3" "10")
+ (node "R41" "B")
+ (node "D8" "1")
+ (node "D10" "10")
+ (node "C13" "B")
+ (node "C15" "B")
+ (node "D11" "19")
+ (node "D11" "10")
+ (node "C16" "B")
+ (node "D13" "19")
+ (node "D13" "10")
+ (node "R70" "A")
+ (node "D33" "5")
+ (node "D31" "5")
+ (node "C36" "B")
+ (node "C41" "B")
+ (node "D16" "1")
+ (node "C49" "B")
+ (node "C40" "B")
+ (node "C45" "B")
+ (node "C52" "B")
+ (node "C55" "B")
+ (node "C61" "B")
+ (node "D23" "10")
+ (node "R62" "1")
+ (node "C68" "A")
+ (node "C79" "B")
+ (node "R53" "B")
+ (node "R37" "8")
+ (node "C99" "B")
+ (node "C110" "B")
+ (node "C116" "B")
+ (node "C105" "B")
+ (node "C102" "B")
+ (node "C96" "B")
+ (node "C101" "B")
+ (node "C92" "B")
+ (node "C80" "2")
+ (node "C73" "2")
+ (node "C71" "2")
+ (node "D26" "1")
+ (node "C74" "B")
+ (node "C76" "B")
+ (node "C112" "B")
+ (node "D34" "25")
+ (node "D34" "26")
+ (node "D34" "21")
+ (node "D34" "18")
+ (node "D34" "7")
+ (node "C67" "B")
+ (node "C104" "B")
+ (node "C103" "B")
+ (node "C100" "B")
+ (node "C118" "B")
+ (node "C122" "B")
+ (node "C98" "B")
+ (node "C65" "B")
+ (node "XP6" "2")
+ (node "R76" "B")
+ (node "C121" "B")
+ (node "D29" "1")
+ (node "HL1" "2")
+ (node "R4" "A")
+ (node "R12" "A")
+ (node "C24" "B")
+ (node "C17" "B")
+ (node "C5" "A")
+ (node "D4" "1")
+ (node "D4" "22")
+ (node "D4" "25")
+ (node "D4" "15")
+ (node "D4" "3")
+ (node "D4" "11")
+ (node "D4" "8")
+ (node "7" "GND")
+ (node "C30" "B")
+ (node "C22" "2")
+ (node "XP4" "P10")
+ (node "XP4" "P2")
+ (node "R50" "8")
+ (node "C7" "A")
+ (node "C8" "B")
+ (node "C10" "B")
+ (node "R40" "B")
+ (node "R43" "B")
+ (node "R42" "B")
+ (node "C21" "B")
+ (node "C14" "B")
+ (node "R67" "A")
+ (node "R69" "A")
+ (node "C85" "B")
+ (node "C47" "B")
+ (node "C57" "B")
+ (node "C54" "B")
+ (node "C42" "B")
+ (node "C77" "B")
+ (node "C58" "A")
+ (node "C60" "A")
+ (node "C115" "B")
+ (node "C109" "B")
+ (node "C117" "B")
+ (node "C70" "B")
+ (node "R51" "B")
+ (node "R81" "A")
+ (node "C94" "B")
+ (node "C95" "B")
+ (node "C90" "B")
+ (node "12" "GND")
+ (node "C66" "B")
+ (node "C89" "B")
+ (node "R66" "A")
+ (node "R11" "B")
+ (node "C20" "B")
+ (node "C23" "B")
+ (node "R8" "B")
+ (node "R10" "B")
+ (node "C6" "A")
+ (node "L2" "B")
+ (node "C26" "B")
+ (node "C31" "B")
+ (node "R21" "B")
+ (node "13" "GND")
+ (node "1" "GND")
+ (node "8" "GND")
+ (node "9" "GND")
+ (node "10" "GND")
+ (node "11" "GND")
+ (node "C111" "B")
+ (node "L17" "B")
+ (node "D15" "1")
+ (node "C114" "B")
+ (node "VD1" "3")
+ (node "C9" "B")
+ (node "C34" "B")
+ (node "C39" "B")
+ (node "C37" "B")
+ (node "C43" "B")
+ (node "C51" "B")
+ (node "R36" "B")
+ (node "C53" "B")
+ (node "C50" "B")
+ (node "C44" "B")
+ (node "C75" "B")
+ (node "C91" "B")
+ (node "R54" "B")
+ (node "R52" "B")
+ (node "C107" "B")
+ (node "C120" "B")
+ (node "R58" "A")
+ (node "C69" "B")
+ (node "R84" "A")
+ (node "R45" "B")
+ (node "C81" "B")
+ (node "2" "GND")
+ (node "R19" "B")
+ (node "C3" "A")
+ (node "C11" "B")
+ (node "C29" "B")
+ (node "6" "GND")
+ (node "R82" "B")
+ (node "R68" "A")
+ (node "C38" "B")
+ (node "C35" "B")
+ (node "C59" "B")
+ (node "C62" "A")
+ (node "C64" "A")
+ (node "C46" "B")
+ (node "C56" "B")
+ (node "C108" "B")
+ (node "C63" "B")
+ (node "C97" "B")
+ (node "C106" "B")
+ (node "C93" "B")
+ (node "C123" "B")
+ (node "C78" "B")
+ (node "C119" "B")
+ (node "C113" "B")
+ (node "L14" "A")
+ (node "C88" "B")
+ (node "L1" "B")
+ (node "C32" "B")
+ (node "5" "GND")
+ )
+)
+
+(pcbDesign "PcbDesign_1"
+ (pcbDesignHeader
+ (workspaceSize 1500.0 1500.0)
+ (gridDfns
+ (grid "0.5mm")
+ (grid "0.06mm")
+ (grid "0.12mm")
+ (grid "0.125mm")
+ (grid "0.1mm")
+ (grid "0.02mm")
+ (grid "0.04mm")
+ (grid "2.54mm")
+ )
+ (designInfo
+ (fieldSet "(Default)"
+ (fieldDef "Date" "")
+ (fieldDef "Time" "")
+ (fieldDef "Author" "")
+ (fieldDef "Revision" "")
+ (fieldDef "Title" "")
+ (fieldDef "Approved By" "")
+ (fieldDef "Checked By" "")
+ (fieldDef "Company Name" "")
+ (fieldDef "Drawing Number" "")
+ (fieldDef "Drawn By" "")
+ (fieldDef "Engineer" "")
+ (fieldDef "Variant Name" "")
+ (fieldDef "Variant Description" "")
+ )
+ )
+ (solderSwell 0.0)
+ (pasteSwell 0.0)
+ (planeSwell 0.15)
+ (refPointSize 2.54)
+ (infoPointSize 2.54)
+ (gluePointSize 2.54)
+ (pickPointSize 2.54)
+ (testPointSize 2.54)
+ (refPointSizePrint 2.54)
+ (infoPointSizePrint 2.54)
+ (gluePointSizePrint 2.54)
+ (pickPointSizePrint 2.54)
+ (testPointSizePrint 2.54)
+ (solderFlowDirection solderFlowTopToBottom)
+ (globalCopperPourCutoutBackoffFlag False)
+ )
+ (layerDef "Top Assy"
+ (layerNum 10)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Top Silk"
+ (layerNum 6)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Top Paste"
+ (layerNum 8)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Top Mask"
+ (layerNum 4)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Top"
+ (layerNum 1)
+ (layerType Signal)
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Power"
+ (layerNum 13)
+ (layerType Plane)
+ (netNameRef "+5V")
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "INT1"
+ (layerNum 15)
+ (layerType Signal)
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "INT2"
+ (layerNum 16)
+ (layerType Signal)
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "GND"
+ (layerNum 14)
+ (layerType Plane)
+ (netNameRef "GND")
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Bottom"
+ (layerNum 2)
+ (layerType Signal)
+ (attr "ViaToPadClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToPadClearance" "0.180mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "PadToLineClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "LineToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToLineClearance" "0.100mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (attr "ViaToViaClearance" "0.120mm" (textStyleRef "(Default)") (constraintUnits mil) )
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Bot Mask"
+ (layerNum 5)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Bot Paste"
+ (layerNum 9)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Bot Silk"
+ (layerNum 7)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Bot Assy"
+ (layerNum 11)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Board"
+ (layerNum 3)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "Work"
+ (layerNum 12)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (layerDef "kabel bot"
+ (layerNum 17)
+ (layerType NonSignal)
+ (fieldSetRef "(Default)")
+ )
+ (multiLayer
+ (via (viaStyleRef "D8d4") (pt 388.12 264.14) (netNameRef "+5V") )
+ (via (viaStyleRef "D8d4") (pt 386.64 286.6) (netNameRef "USB_DP") )
+ (via (viaStyleRef "D8d4") (pt 385.54 285.2) (netNameRef "USB_DM") )
+ (via (viaStyleRef "D10d5") (pt 385.24 295.76) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C111") (pt 383.04 295.74) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C111" (pt 0.06 -2.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "0,01 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 389.94 266.06) (netNameRef "MAX-TMS") )
+ (via (viaStyleRef "D8d4") (pt 389.46 260.72) (netNameRef "GND") )
+ (pattern (patternRef "CABLE_2") (refDesRef "5") (pt 409.36 331.14) (rotation 195.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "5" (pt -0.32871 -1.22674) (rotation 195.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.32871 1.22674) (rotation 195.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 195.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 415.1 311.3) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_2") (refDesRef "R30") (pt 413.46 325.0) (rotation 225.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "RefDes" "R30" (pt 1.04 -3.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0603" (pt -0.70711 0.70711) (rotation 225.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 225.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 225.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 416.0 332.4) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C33") (pt 417.1 329.4) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C33" (pt 0.02 0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 423.4 332.4) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 425.3 332.4) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C32") (pt 424.5 331.3) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C32" (pt 0.1 1.5) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 429.2 309.8) (netNameRef "NET00158") )
+ (via (viaStyleRef "D10d5") (pt 430.3 330.7) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 438.54 321.3) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 440.84 332.08) (netNameRef "NET00028") )
+ (via (viaStyleRef "D10d5") (pt 435.22 333.64) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C25") (pt 437.38 330.32) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "RefDes" "C25" (pt -0.1 0.96) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 1.2) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 100 ïÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 446.2 311.8) (netNameRef "NET00158") )
+ (via (viaStyleRef "D10d5") (pt 448.82 317.24) (netNameRef "+3,3V") )
+ (via (viaStyleRef "D10d5") (pt 446.1 313.9) (netNameRef "NET00158") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L3") (pt 448.02 314.84) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L3" (pt -0.1 2.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 447.56 326.7) (netNameRef "NET00032") )
+ (via (viaStyleRef "D10d5") (pt 443.78 327.02) (netNameRef "NET00028") )
+ (via (viaStyleRef "D10d5") (pt 444.84 322.02) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L1") (pt 445.78 324.38) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "68 íÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L1" (pt 0.52 -3.78) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt -2.6 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 68 íÃ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 444.16 333.42) (netNameRef "NET00027") )
+ (via (viaStyleRef "D8d4") (pt 445.42 332.88) (netNameRef "+3,3V") )
+ (via (viaStyleRef "D10d5") (pt 448.76 329.22) (netNameRef "NET00026") )
+ (via (viaStyleRef "D8d4") (pt 448.98 331.44) (netNameRef "D_ADF") )
+ (via (viaStyleRef "D8d4") (pt 448.12 332.34) (netNameRef "LE_ADF") )
+ (via (viaStyleRef "D10d5") (pt 442.46 328.32) (netNameRef "NET00019") )
+ (via (viaStyleRef "D10d5") (pt 444.94 329.56) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 445.96 329.56) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 444.92 330.56) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 445.9 330.52) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 443.2 341.9) (netNameRef "+3,3V") )
+ (via (viaStyleRef "D10d5") (pt 442.6 337.38) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_2") (refDesRef "3") (pt 447.7 338.9) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "3" (pt 0.1 0.9) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Type" "PIN40X40X24" (pt 0.0 0.7) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 448.3 345.6) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 443.2 343.7) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 451.32 311.74) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 451.4 325.5) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 450.32 320.78) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 453.74 329.42) (netNameRef "NET00040") )
+ (via (viaStyleRef "D8d4") (pt 450.34 331.06) (netNameRef "CLK_ADF") )
+ (via (viaStyleRef "D8d4") (pt 457.68 328.86) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 478.28 355.96) (netNameRef "GND") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 485.52 292.16) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 483.18 311.38) (netNameRef "+2,5V") )
+ (via (viaStyleRef "D10d5") (pt 485.66 311.36) (netNameRef "+2,5V") )
+ (via (viaStyleRef "D8d4") (pt 483.02 319.36) (netNameRef "USB_DM") )
+ (via (viaStyleRef "D10d5") (pt 483.14 317.48) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 481.32 326.18) (netNameRef "NET00256") )
+ (via (viaStyleRef "D8d4") (pt 483.06 321.38) (netNameRef "USB_DP") )
+ (via (viaStyleRef "D10d5") (pt 485.8 328.72) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 485.2 362.5) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R83") (pt 485.64 377.14) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R83" (pt -2.64 -0.74) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2K" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 482.82 410.82) (netNameRef "NET00003") )
+ (via (viaStyleRef "D8d4") (pt 482.74 405.64) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 484.5 416.18) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R44") (pt 481.74 413.46) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R44" (pt 2.86 -1.16) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 493.2 302.9) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C88") (pt 490.4 302.9) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C88" (pt 0.02 -1.1) (rotation 180.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 490.7 316.02) (netNameRef "AVSS") )
+ (via (viaStyleRef "D10d5") (pt 490.5 319.0) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 494.72 315.34) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L14") (pt 491.82 314.64) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "1 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L14" (pt 0.88 0.96) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 0.0 -2.6) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü LK21251R0K-T" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C84") (pt 489.58 317.58) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C84" (pt 3.62 -0.48) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "0,01 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 493.8 324.64) (netNameRef "~ARE") )
+ (via (viaStyleRef "P:OV05D03") (pt 493.4 323.74) (netNameRef "~AWE") )
+ (via (viaStyleRef "D10d5") (pt 490.5 323.06) (netNameRef "+2,5V") )
+ (via (viaStyleRef "D10d5") (pt 494.16 336.76) (netNameRef "+3,3VF") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP22") (pt 490.78 340.28) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP22" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP24") (pt 490.78 337.88) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP24" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 491.28 349.88) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 491.34 352.52) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 491.4 355.1) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 488.5 362.5) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 491.4 362.5) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 491.3 359.5) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C113") (pt 489.8 378.48) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C113" (pt 3.1 -1.08) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 494.34 407.6) (netNameRef "1S") )
+ (via (viaStyleRef "P:OV05D03") (pt 493.72 406.96) (netNameRef "2S") )
+ (via (viaStyleRef "P:OV05D03") (pt 493.14 406.28) (netNameRef "3S") )
+ (via (viaStyleRef "P:OV05D03") (pt 492.64 405.64) (netNameRef "4S") )
+ (via (viaStyleRef "D8d4") (pt 492.92 410.98) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 499.7 316.74) (netNameRef "~DMA_WR") )
+ (via (viaStyleRef "P:OV05D03") (pt 495.72 315.2) (netNameRef "30MHZ") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C119") (pt 496.9 325.78) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C119" (pt 2.6 -0.88) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 496.76 354.44) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 501.68 356.22) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 496.68 356.28) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R80") (pt 498.82 354.42) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R80" (pt -0.02 -2.52) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "4,7 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 4,7 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 502.0 359.6) (netNameRef "USB+") )
+ (via (viaStyleRef "P:OV05D03") (pt 501.1 358.94) (netNameRef "USB-") )
+ (via (viaStyleRef "D10d5") (pt 506.48 324.2) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 505.98 354.4) (netNameRef "RXF") )
+ (via (viaStyleRef "D10d5") (pt 509.5 353.08) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 509.48 355.04) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 504.74 352.86) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 504.86 357.62) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 504.8 356.02) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C94") (pt 508.32 354.06) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C94" (pt 0.6 1.6) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 508.02 370.5) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 508.4 398.72) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 514.1 306.1) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 514.22 318.4) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 514.58 321.6) (netNameRef "D11") )
+ (via (viaStyleRef "P:OV05D03") (pt 516.78 324.82) (netNameRef "D14") )
+ (via (viaStyleRef "P:OV05D03") (pt 516.22 324.02) (netNameRef "D13") )
+ (via (viaStyleRef "P:OV05D03") (pt 515.8 322.38) (netNameRef "D12") )
+ (via (viaStyleRef "P:OV05D03") (pt 514.58 326.4) (netNameRef "D15") )
+ (via (viaStyleRef "P:OV05D03") (pt 517.68 321.2) (netNameRef "D10") )
+ (via (viaStyleRef "D8d4") (pt 511.18 323.2) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 511.1 320.42) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 511.16 327.2) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 511.16 325.6) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 517.76 357.22) (netNameRef "RXF") )
+ (via (viaStyleRef "D10d5") (pt 512.54 371.2) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP18") (pt 516.08 369.24) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP18" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 512.6 376.56) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 517.2 376.6) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C78") (pt 514.96 376.62) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C78" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 515.1 395.24) (netNameRef "SHIM") )
+ (via (viaStyleRef "D10d5") (pt 512.6 398.66) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 512.38 412.76) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 525.2 295.66) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 520.74 290.66) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.4 304.4) (netNameRef "SCKE") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.3 306.4) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.0 308.9) (netNameRef "A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.8 309.7) (netNameRef "A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.3 310.4) (netNameRef "A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.0 308.1) (netNameRef "A3") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.0 318.2) (netNameRef "D5") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.08 318.2) (netNameRef "D6") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.1 318.22) (netNameRef "D7") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.0 316.8) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "D8d4") (pt 519.6 314.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.3 320.8) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.2 325.6) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.2 327.2) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.3 323.2) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C123") (pt 522.48 322.12) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C123" (pt -0.08 1.78) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 520.54 328.02) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.24 345.78) (netNameRef "MAX-TMS") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.22 346.76) (netNameRef "D5") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.26 346.76) (netNameRef "MAX-TDO") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.26 347.78) (netNameRef "MAX-TDI") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.24 344.76) (netNameRef "MAX-TCK") )
+ (via (viaStyleRef "P:OV05D03") (pt 524.14 349.78) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.24 346.76) (netNameRef "D6") )
+ (via (viaStyleRef "P:OV05D03") (pt 524.2 343.72) (netNameRef "D2") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.22 343.7) (netNameRef "D1") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.2 343.68) (netNameRef "D4") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.22 349.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 519.24 343.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.24 354.78) (netNameRef "D15") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.18 352.74) (netNameRef "D10") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.18 351.72) (netNameRef "D8") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.22 353.74) (netNameRef "D13") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.24 354.76) (netNameRef "20MHZ") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.22 353.74) (netNameRef "LE_ADF") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.22 356.68) (netNameRef "RS_I") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.18 355.74) (netNameRef "~WDI") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.18 356.72) (netNameRef "SHIM") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.22 351.72) (netNameRef "D9") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.2 354.76) (netNameRef "D11") )
+ (via (viaStyleRef "P:OV05D03") (pt 521.24 355.74) (netNameRef "~DMA_WR") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.22 355.74) (netNameRef "30MHZ") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.22 353.74) (netNameRef "D12") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.18 352.72) (netNameRef "D14") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.22 352.74) (netNameRef "D_ADF") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.2 351.72) (netNameRef "CLK_ADF") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.2 355.7) (netNameRef "10MHZ") )
+ (via (viaStyleRef "P:OV05D03") (pt 519.2 357.72) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.18 351.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 520.7 358.76) (netNameRef "+3,3VF") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP16") (pt 520.58 371.84) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP16" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP17") (pt 522.98 371.84) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP17" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP20") (pt 521.58 369.04) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP20" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 525.34 398.08) (netNameRef "10MHZ") )
+ (via (viaStyleRef "D8d4") (pt 522.7 399.38) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 523.4 410.2) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L13") (pt 523.4 407.7) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L13" (pt -2.6 -0.5) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 530.4 293.3) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.3 310.4) (netNameRef "SA10") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.9 311.6) (netNameRef "A17") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.82 310.78) (netNameRef "A14") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.08 305.3) (netNameRef "~ABE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.68 306.38) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.8 310.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.66 313.32) (netNameRef "D0") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.68 314.3) (netNameRef "D2") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.72 314.22) (netNameRef "D3") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.18 315.32) (netNameRef "D4") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.8 315.82) (netNameRef "D1") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.56 319.3) (netNameRef "D11") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.56 318.3) (netNameRef "D9") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.56 317.26) (netNameRef "D7") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.56 316.22) (netNameRef "D5") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.0 316.84) (netNameRef "D3") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.08 313.68) (netNameRef "A18") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.06 319.32) (netNameRef "D10") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.08 318.34) (netNameRef "D8") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.3 318.4) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 322.3) (netNameRef "BMOD0") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.8 324.8) (netNameRef "D1") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 324.3) (netNameRef "BF_TDI") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 325.3) (netNameRef "BF_TRS") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 326.3) (netNameRef "~EMU") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 323.3) (netNameRef "BF_TCK") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.42 322.4) (netNameRef "D3") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.46 321.6) (netNameRef "D4") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.6 321.28) (netNameRef "D14") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.8 325.8) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.3 324.0) (netNameRef "D2") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.1 326.4) (netNameRef "D0") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.0 321.34) (netNameRef "D15") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.98 322.3) (netNameRef "BMOD1") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.96 323.3) (netNameRef "BF_TDO") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.8 329.22) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.8 342.46) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.22 344.74) (netNameRef "A5") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.2 345.72) (netNameRef "A4") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.22 344.74) (netNameRef "A3") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.2 345.72) (netNameRef "A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.18 345.76) (netNameRef "A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.22 349.72) (netNameRef "PF10") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.2 349.78) (netNameRef "PF13") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.2 348.74) (netNameRef "PPI") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.2 348.78) (netNameRef "~AMS0") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.2 347.74) (netNameRef "~ARE") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.24 347.74) (netNameRef "~AWE") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.16 347.76) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.2 344.78) (netNameRef "A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.22 343.72) (netNameRef "A6") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.2 343.7) (netNameRef "A18") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.22 343.74) (netNameRef "A7") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.2 351.72) (netNameRef "~DRES") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.22 351.72) (netNameRef "PF1") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.2 352.74) (netNameRef "PF9") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.22 352.78) (netNameRef "PF11") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.2 353.74) (netNameRef "PF12") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.2 353.74) (netNameRef "CLKIN") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.18 354.72) (netNameRef "~AOE") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.16 356.68) (netNameRef "7NCONF") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.16 355.66) (netNameRef "W/VP") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.24 353.68) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.16 356.66) (netNameRef "CONFD7") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.24 357.68) (netNameRef "4S") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.2 357.7) (netNameRef "2S") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.16 351.76) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C93") (pt 527.22 353.48) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C93" (pt 0.58 2.02) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 531.7 358.9) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.7 358.96) (netNameRef "3S") )
+ (via (viaStyleRef "P:OV05D03") (pt 529.72 358.94) (netNameRef "1S") )
+ (via (viaStyleRef "D8d4") (pt 531.52 401.92) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R64") (pt 529.32 401.92) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R64" (pt 0.08 -3.12) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 529.2 404.9) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 539.58 295.6) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.76 310.82) (netNameRef "A10") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.78 310.82) (netNameRef "A8") )
+ (via (viaStyleRef "P:OV05D03") (pt 536.84 310.84) (netNameRef "A7") )
+ (via (viaStyleRef "P:OV05D03") (pt 537.78 310.82) (netNameRef "A5") )
+ (via (viaStyleRef "P:OV05D03") (pt 538.84 310.8) (netNameRef "A3") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.8 310.82) (netNameRef "A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 536.82 311.9) (netNameRef "A6") )
+ (via (viaStyleRef "P:OV05D03") (pt 537.8 311.96) (netNameRef "A4") )
+ (via (viaStyleRef "P:OV05D03") (pt 538.84 311.96) (netNameRef "A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.78 311.92) (netNameRef "A9") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.74 311.92) (netNameRef "A11") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.8 311.98) (netNameRef "A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.8 310.8) (netNameRef "A12") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.76 311.94) (netNameRef "A13") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.6 313.68) (netNameRef "A17") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.42 316.3) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.78 315.52) (netNameRef "~ABE0") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.82 318.18) (netNameRef "D6") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.32 313.68) (netNameRef "A16") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.8 314.8) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.36 317.3) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.76 316.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.78 318.74) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.62 318.3) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C106") (pt 538.74 316.54) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C106" (pt -0.44 -3.84) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 534.8 322.5) (netNameRef "BF_TMS") )
+ (via (viaStyleRef "P:OV05D03") (pt 535.6 321.3) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.8 321.7) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.44 345.26) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 534.5 356.22) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 539.92 359.9) (netNameRef "7NCONF") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 547.04 262.56) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 547.4 278.5) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "D10d5") (pt 544.2 276.4) (netNameRef "NET00255") )
+ (via (viaStyleRef "D10d5") (pt 545.62 288.48) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R56") (pt 543.4 286.64) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R56" (pt 3.3 -0.84) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 0 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 542.06 292.2) (netNameRef "VROUT") )
+ (via (viaStyleRef "P:OV05D03") (pt 544.3 309.7) (netNameRef "~AMS0") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.3 309.7) (netNameRef "~SMS") )
+ (via (viaStyleRef "P:OV05D03") (pt 543.3 312.04) (netNameRef "~AMS1") )
+ (via (viaStyleRef "P:OV05D03") (pt 546.76 310.84) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.7 317.3) (netNameRef "PPI") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 315.3) (netNameRef "VROUT") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.0 315.3) (netNameRef "~DRES") )
+ (via (viaStyleRef "P:OV05D03") (pt 543.02 315.46) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 543.14 318.3) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 541.84 314.74) (netNameRef "VDDINT") )
+ (via (viaStyleRef "P:OV05D03") (pt 542.98 316.3) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C97") (pt 543.84 316.12) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C97" (pt 2.46 -0.62) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 321.3) (netNameRef "PF13") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 322.3) (netNameRef "PF10") )
+ (via (viaStyleRef "P:OV05D03") (pt 544.3 324.7) (netNameRef "PF0") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.3 326.9) (netNameRef "PF1") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 322.3) (netNameRef "PF11") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 321.3) (netNameRef "PF12") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 326.3) (netNameRef "PF4") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 323.3) (netNameRef "PF9") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 324.3) (netNameRef "PF7") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 324.3) (netNameRef "PF6") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 325.3) (netNameRef "PF5") )
+ (via (viaStyleRef "P:OV05D03") (pt 546.8 325.8) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 320.4) (netNameRef "PF14") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.26 340.84) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.26 341.84) (netNameRef "4_IO3") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.22 348.32) (netNameRef "DCLK7") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.22 344.8) (netNameRef "4_IO7") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.26 343.88) (netNameRef "4_IO6") )
+ (via (viaStyleRef "D8d4") (pt 544.5 345.0) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 546.74 354.98) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.1 360.28) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 541.6 359.88) (netNameRef "NSTAT7") )
+ (via (viaStyleRef "D10d5") (pt 541.58 363.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.8 359.9) (netNameRef "7DATA0") )
+ (via (viaStyleRef "P:OV05D03") (pt 543.84 359.04) (netNameRef "I_10M") )
+ (via (viaStyleRef "D8d4") (pt 544.2 364.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.16 366.74) (netNameRef "TCK7") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.14 366.7) (netNameRef "TDO7") )
+ (via (viaStyleRef "D10d5") (pt 545.86 391.8) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 553.44 278.58) (netNameRef "SCK") )
+ (via (viaStyleRef "D10d5") (pt 553.34 287.48) (netNameRef "W/VP") )
+ (via (viaStyleRef "D10d5") (pt 553.44 301.3) (netNameRef "W/VP") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.64 303.64) (netNameRef "PF8") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.44 304.36) (netNameRef "PF2") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.1 309.0) (netNameRef "~SWE") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.2 313.3) (netNameRef "CLKIN") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.1 316.4) (netNameRef "R7") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.1 314.9) (netNameRef "OUT") )
+ (via (viaStyleRef "D10d5") (pt 553.0 313.1) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.3 339.86) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.26 341.84) (netNameRef "4_IO2") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.22 341.8) (netNameRef "3_IO4") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.26 341.82) (netNameRef "3_IO5") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.22 340.8) (netNameRef "4_IO0") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.22 340.74) (netNameRef "3_IO6") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.26 339.84) (netNameRef "4_IO1") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.24 339.8) (netNameRef "3_IO7") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.22 340.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.26 346.72) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.22 344.8) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.22 349.84) (netNameRef "D13") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.22 348.84) (netNameRef "D10") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.18 348.84) (netNameRef "D8") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.24 347.8) (netNameRef "D3") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.22 347.84) (netNameRef "D2") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.16 345.82) (netNameRef "A13") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.18 345.84) (netNameRef "D6") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.18 344.8) (netNameRef "A16") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.22 343.84) (netNameRef "A12") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.22 345.84) (netNameRef "A9") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.26 344.8) (netNameRef "A8") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.24 349.84) (netNameRef "D15") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.26 345.72) (netNameRef "7VPLL1") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.16 348.74) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.22 344.82) (netNameRef "3_IO0") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.22 344.8) (netNameRef "3_IO1") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.26 343.78) (netNameRef "3_IO2") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.14 349.72) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.2 346.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.3 343.88) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.18 343.86) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.2 356.84) (netNameRef "D9") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.2 355.84) (netNameRef "D12") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.22 354.82) (netNameRef "D14") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.2 354.8) (netNameRef "A15") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.18 353.8) (netNameRef "D1") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.22 353.82) (netNameRef "A14") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.18 352.8) (netNameRef "A18") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.2 351.78) (netNameRef "7DATA0") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.32 352.68) (netNameRef "TCK7") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.24 352.74) (netNameRef "TDI7") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.22 351.76) (netNameRef "TDO7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.24 352.72) (netNameRef "TMS7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.14 356.84) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.14 352.84) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.22 357.82) (netNameRef "D0") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.2 357.82) (netNameRef "D5") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.16 350.82) (netNameRef "7NCONF") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.16 357.74) (netNameRef "7VPLL3") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.2 356.84) (netNameRef "D7") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.18 355.84) (netNameRef "D11") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.14 351.82) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.14 355.84) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.26 351.84) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C63") (pt 554.3 352.4) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C63" (pt -2.4 0.4) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 550.18 358.82) (netNameRef "D4") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.7 361.96) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.18 359.76) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.14 361.82) (netNameRef "1_DIR1") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.18 360.76) (netNameRef "1_~OE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.16 360.76) (netNameRef "1_IO1") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.18 360.76) (netNameRef "1_IO4") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.18 359.76) (netNameRef "1_IO2") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.18 360.76) (netNameRef "1_IO6") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.18 360.74) (netNameRef "2_~OE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.2 359.78) (netNameRef "2_DIR1") )
+ (via (viaStyleRef "P:OV05D03") (pt 555.12 361.74) (netNameRef "1_IO7") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.08 361.8) (netNameRef "1_IO0") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.14 361.72) (netNameRef "1_IO3") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.14 361.72) (netNameRef "1_IO5") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.18 359.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.22 360.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.12 366.68) (netNameRef "TDI7") )
+ (via (viaStyleRef "D10d5") (pt 550.54 391.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 557.34 279.88) (netNameRef "MOSI") )
+ (via (viaStyleRef "D10d5") (pt 562.74 279.88) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "D10d5") (pt 561.58 277.02) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 560.76 286.26) (netNameRef "PF2") )
+ (via (viaStyleRef "D10d5") (pt 562.94 287.48) (netNameRef "MISO") )
+ (via (viaStyleRef "D10d5") (pt 556.8 286.2) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 562.84 293.7) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "D10d5") (pt 557.84 293.7) (netNameRef "MOSI") )
+ (via (viaStyleRef "D10d5") (pt 557.2 292.4) (netNameRef "SCK") )
+ (via (viaStyleRef "D10d5") (pt 560.06 294.9) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C108") (pt 560.86 293.76) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C108" (pt -0.06 -2.66) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 557.12 303.32) (netNameRef "MISO") )
+ (via (viaStyleRef "D10d5") (pt 562.92 301.32) (netNameRef "MISO") )
+ (via (viaStyleRef "D10d5") (pt 562.8 300.02) (netNameRef "PF3") )
+ (via (viaStyleRef "D10d5") (pt 556.98 300.0) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.16 341.84) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.98 336.86) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.16 341.82) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.16 343.84) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.18 344.84) (netNameRef "A5") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.2 345.8) (netNameRef "A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.2 345.86) (netNameRef "A3") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.2 344.84) (netNameRef "A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.18 343.82) (netNameRef "A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.2 344.82) (netNameRef "~AMS1") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.2 345.8) (netNameRef "PF7") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.24 348.78) (netNameRef "3_~OE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.22 347.82) (netNameRef "3_DIR1") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.16 347.84) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.12 349.82) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.16 349.8) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.2 345.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.2 343.82) (netNameRef "PF4") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.22 344.82) (netNameRef "~AWE") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.2 343.78) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.2 345.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.22 349.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.22 345.84) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C56") (pt 561.0 348.84) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C56" (pt -0.2 -2.34) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 563.12 355.86) (netNameRef "4__A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.22 356.8) (netNameRef "TP12") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.18 356.76) (netNameRef "TP5") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.2 356.8) (netNameRef "TP11") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.22 356.78) (netNameRef "TP9") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.16 354.82) (netNameRef "VD5") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.18 354.8) (netNameRef "VD6") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.16 353.84) (netNameRef "VD8") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.2 353.84) (netNameRef "VD7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.16 351.76) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.18 352.82) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.16 352.86) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.2 351.76) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.16 354.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.2 357.76) (netNameRef "TP10") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.18 357.76) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.16 357.78) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.22 355.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.18 356.8) (netNameRef "TP3") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.18 357.8) (netNameRef "3_STR_0") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.2 357.78) (netNameRef "4_STR_0") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.18 354.78) (netNameRef "P_BLOK") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.18 354.78) (netNameRef "P_PUSK") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.16 354.82) (netNameRef "~P_ZAP") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.24 350.82) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.18 355.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.24 354.78) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.24 351.82) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.26 352.74) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C46") (pt 561.98 353.54) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C46" (pt 1.48 -0.04) (rotation 90.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 560.16 359.74) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.16 360.74) (netNameRef "2_IO3") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.14 359.74) (netNameRef "2_IO4") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.18 360.74) (netNameRef "2_IO6") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.16 360.74) (netNameRef "1__A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.18 360.76) (netNameRef "1__A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.88 362.54) (netNameRef "2_IO7") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.24 361.76) (netNameRef "2_IO5") )
+ (via (viaStyleRef "P:OV05D03") (pt 557.18 361.76) (netNameRef "2_IO2") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.2 358.78) (netNameRef "TP4") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.28 361.86) (netNameRef "TP2") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.22 361.8) (netNameRef "2__A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.2 363.9) (netNameRef "1_STR_0") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.7 364.5) (netNameRef "2__A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 560.7 364.5) (netNameRef "2_STR_0") )
+ (via (viaStyleRef "P:OV05D03") (pt 559.68 363.26) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.16 358.74) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 563.16 359.74) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.16 358.74) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.92 263.82) (netNameRef "R6") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.54 262.7) (netNameRef "R5") )
+ (via (viaStyleRef "D10d5") (pt 566.02 267.86) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "D10d5") (pt 566.74 278.58) (netNameRef "PF8") )
+ (via (viaStyleRef "D10d5") (pt 566.54 292.4) (netNameRef "PF8") )
+ (via (viaStyleRef "D10d5") (pt 569.8 290.2) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 570.86 292.42) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R48") (pt 568.96 292.42) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R48" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2k" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 570.0 300.0) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R47") (pt 568.04 300.02) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R47" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2k" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 569.1 339.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 570.24 340.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 569.18 340.8) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C64") (pt 568.26 340.44) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C64" (pt -2.56 -0.94) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 343.84) (netNameRef "PF14") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.18 349.82) (netNameRef "3_P_CW1") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.26 349.7) (netNameRef "CONFD7") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.24 348.8) (netNameRef "NSTAT7") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.2 344.86) (netNameRef "PF9") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.2 347.82) (netNameRef "3_P_RQ") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 344.84) (netNameRef "PF15") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.14 345.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 345.82) (netNameRef "PF11") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.2 344.82) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.18 347.8) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.24 349.74) (netNameRef "7MSEL1") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.22 346.8) (netNameRef "4_DIR1") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 347.88) (netNameRef "4_~OE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.22 346.8) (netNameRef "4_P_RQ") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.2 348.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.24 346.78) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.22 343.84) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.18 343.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 568.1 346.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.24 349.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.16 355.78) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.12 355.84) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.2 354.8) (netNameRef "4__A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.2 353.8) (netNameRef "3__A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.18 352.8) (netNameRef "4_P_RDY") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.18 354.82) (netNameRef "3__A1") )
+ (via (viaStyleRef "P:OV05D03") (pt 568.12 350.86) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.16 350.84) (netNameRef "3_P_RDY") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 353.76) (netNameRef "4_P_R\\W") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.18 356.82) (netNameRef "4__A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.22 356.78) (netNameRef "3__A0") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.18 352.82) (netNameRef "3_P_R\\W") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.2 354.78) (netNameRef "P_RES") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.18 356.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 568.2 354.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.16 355.84) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.14 351.84) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R38") (pt 569.3 354.5) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R38" (pt 0.0 -3.1) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2k" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 567.22 358.84) (netNameRef "TP14") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.22 359.82) (netNameRef "TP7") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.24 360.78) (netNameRef "TP13") )
+ (via (viaStyleRef "P:OV05D03") (pt 568.7 361.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 570.36 360.38) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.18 358.76) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.2 358.82) (netNameRef "TP6") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.18 360.74) (netNameRef "1__A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.7 361.82) (netNameRef "1_P_CW") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.16 360.72) (netNameRef "2_P_RDY") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.18 359.76) (netNameRef "2_P_R\\W") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 359.78) (netNameRef "2_P_CW") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.14 359.72) (netNameRef "1_P_RDY") )
+ (via (viaStyleRef "P:OV05D03") (pt 568.2 360.76) (netNameRef "1_P_RQ") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.7 361.82) (netNameRef "2_P_RQ") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.2 361.78) (netNameRef "2__A2") )
+ (via (viaStyleRef "P:OV05D03") (pt 565.26 361.74) (netNameRef "1_P_R\\W") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.18 358.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 569.2 360.78) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C62") (pt 569.46 362.76) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C62" (pt 0.14 0.84) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 568.66 375.5) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "D10d5") (pt 569.8 379.3) (netNameRef "+1,2V7") )
+ (via (viaStyleRef "D10d5") (pt 569.8 384.6) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 575.88 265.68) (netNameRef "BF_TDI") )
+ (via (viaStyleRef "P:OV05D03") (pt 576.92 272.22) (netNameRef "~EMU") )
+ (via (viaStyleRef "D8d4") (pt 571.94 269.56) (netNameRef "BF_TMS") )
+ (via (viaStyleRef "D10d5") (pt 572.92 268.0) (netNameRef "VDDEXT") )
+ (via (viaStyleRef "P:OV05D03") (pt 572.72 341.48) (netNameRef "+1,2V7") )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C59") (pt 572.82 354.4) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C59" (pt 2.58 0.1) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 572.98 359.22) (netNameRef "+1,2V7") )
+ (pattern (patternRef "SMD0805_3") (refDesRef "C35") (pt 577.04 378.56) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C35" (pt -2.72 -0.52) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0805" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 583.38 323.9) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C38") (pt 582.42 322.06) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C38" (pt 2.58 -0.66) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 582.86 332.24) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 583.64 335.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 585.48 366.38) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP8") (pt 582.5 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP8" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP9") (pt 585.0 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP9" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 590.08 354.5) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 590.54 366.3) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 589.8 369.88) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP11") (pt 590.0 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP11" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP12") (pt 592.5 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP12" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 600.42 338.06) (netNameRef "GND") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 595.8 337.56) (netNameRef "+5V") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP14") (pt 597.5 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP14" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 606.38 278.72) (netNameRef "CKP") )
+ (via (viaStyleRef "P:OV05D03") (pt 608.16 277.66) (netNameRef "STP") )
+ (via (viaStyleRef "D10d5") (pt 603.8 340.9) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 606.26 348.82) (netNameRef "VD7") )
+ (via (viaStyleRef "P:OV05D03") (pt 606.26 346.3) (netNameRef "VD8") )
+ (via (viaStyleRef "P:OV05D03") (pt 606.2 353.66) (netNameRef "VD5") )
+ (via (viaStyleRef "P:OV05D03") (pt 606.26 351.32) (netNameRef "VD6") )
+ (via (viaStyleRef "D8d4") (pt 613.66 288.08) (netNameRef "3_P_R\\W") )
+ (via (viaStyleRef "D8d4") (pt 613.66 286.82) (netNameRef "3_P_RDY") )
+ (via (viaStyleRef "D8d4") (pt 615.06 286.2) (netNameRef "4_P_CW1") )
+ (via (viaStyleRef "D8d4") (pt 613.7 285.5) (netNameRef "3_P_CW1") )
+ (via (viaStyleRef "D8d4") (pt 615.06 287.48) (netNameRef "4_P_RDY") )
+ (via (viaStyleRef "D8d4") (pt 615.06 288.76) (netNameRef "4_P_R\\W") )
+ (via (viaStyleRef "D10d5") (pt 616.52 284.16) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 612.22 291.08) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 616.56 296.24) (netNameRef "3__A0") )
+ (via (viaStyleRef "D8d4") (pt 616.62 294.94) (netNameRef "3__A1") )
+ (via (viaStyleRef "D8d4") (pt 615.52 295.6) (netNameRef "4__A1") )
+ (via (viaStyleRef "D8d4") (pt 615.52 294.3) (netNameRef "4__A2") )
+ (via (viaStyleRef "D10d5") (pt 616.46 292.96) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R33") (pt 614.22 291.08) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R33" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 612.08 299.6) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 615.56 298.16) (netNameRef "4_STR_0") )
+ (via (viaStyleRef "D8d4") (pt 613.36 302.72) (netNameRef "4_IO7") )
+ (via (viaStyleRef "D8d4") (pt 616.08 303.98) (netNameRef "4_IO5") )
+ (via (viaStyleRef "D8d4") (pt 614.88 303.32) (netNameRef "4_IO6") )
+ (via (viaStyleRef "D10d5") (pt 616.46 302.02) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R24") (pt 614.14 299.58) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R24" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 614.94 307.22) (netNameRef "4_IO0") )
+ (via (viaStyleRef "D8d4") (pt 616.08 306.56) (netNameRef "4_IO1") )
+ (via (viaStyleRef "D8d4") (pt 614.9 305.92) (netNameRef "4_IO2") )
+ (via (viaStyleRef "D8d4") (pt 616.1 305.26) (netNameRef "4_IO3") )
+ (via (viaStyleRef "D10d5") (pt 616.48 311.6) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 614.96 316.82) (netNameRef "3_IO0") )
+ (via (viaStyleRef "D8d4") (pt 616.08 316.18) (netNameRef "3_IO1") )
+ (via (viaStyleRef "D8d4") (pt 614.86 315.52) (netNameRef "3_IO2") )
+ (via (viaStyleRef "D8d4") (pt 616.08 314.88) (netNameRef "3_IO3") )
+ (via (viaStyleRef "D8d4") (pt 614.94 314.24) (netNameRef "3_IO4") )
+ (via (viaStyleRef "D8d4") (pt 616.02 313.58) (netNameRef "3_IO5") )
+ (via (viaStyleRef "D8d4") (pt 614.78 312.94) (netNameRef "3_IO6") )
+ (via (viaStyleRef "D8d4") (pt 615.78 318.58) (netNameRef "3_DIR1") )
+ (via (viaStyleRef "P:OV05D03") (pt 615.62 406.84) (netNameRef "I_10M") )
+ (via (viaStyleRef "P:OV05D03") (pt 616.34 406.2) (netNameRef "I_1S") )
+ (via (viaStyleRef "D8d4") (pt 612.4 407.88) (netNameRef "1S") )
+ (via (viaStyleRef "D8d4") (pt 614.9 418.3) (netNameRef "1_P_R\\W") )
+ (via (viaStyleRef "D8d4") (pt 616.2 417.6) (netNameRef "2_P_RDY") )
+ (via (viaStyleRef "D8d4") (pt 614.9 416.9) (netNameRef "1_P_RDY") )
+ (via (viaStyleRef "D8d4") (pt 616.2 416.3) (netNameRef "2_P_CW") )
+ (via (viaStyleRef "D8d4") (pt 614.9 415.0) (netNameRef "1_P_CW") )
+ (via (viaStyleRef "D10d5") (pt 616.62 414.28) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 612.86 421.72) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 616.2 426.0) (netNameRef "1__A1") )
+ (via (viaStyleRef "D8d4") (pt 614.9 424.6) (netNameRef "2__A2") )
+ (via (viaStyleRef "D8d4") (pt 614.9 419.5) (netNameRef "1__A2") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R14") (pt 614.78 421.72) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R14" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 613.1 431.5) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 615.1 429.2) (netNameRef "2_STR_0") )
+ (via (viaStyleRef "D8d4") (pt 616.2 428.6) (netNameRef "1_STR_0") )
+ (via (viaStyleRef "D8d4") (pt 615.1 427.9) (netNameRef "2__A0") )
+ (via (viaStyleRef "D8d4") (pt 616.2 427.3) (netNameRef "1__A0") )
+ (via (viaStyleRef "D8d4") (pt 615.24 439.52) (netNameRef "2_DIR1") )
+ (via (viaStyleRef "D8d4") (pt 616.36 438.86) (netNameRef "2_IO0") )
+ (via (viaStyleRef "D8d4") (pt 615.22 438.2) (netNameRef "2_IO1") )
+ (via (viaStyleRef "D8d4") (pt 616.32 437.56) (netNameRef "2_IO2") )
+ (via (viaStyleRef "D8d4") (pt 615.2 436.92) (netNameRef "2_IO3") )
+ (via (viaStyleRef "D8d4") (pt 616.32 436.26) (netNameRef "2_IO4") )
+ (via (viaStyleRef "D8d4") (pt 615.18 435.62) (netNameRef "2_IO5") )
+ (via (viaStyleRef "D8d4") (pt 616.28 434.96) (netNameRef "2_IO6") )
+ (via (viaStyleRef "D8d4") (pt 615.42 448.22) (netNameRef "1_DIR1") )
+ (via (viaStyleRef "D8d4") (pt 616.38 447.58) (netNameRef "1_IO0") )
+ (via (viaStyleRef "D8d4") (pt 615.26 446.92) (netNameRef "1_IO1") )
+ (via (viaStyleRef "D8d4") (pt 616.36 446.3) (netNameRef "1_IO2") )
+ (via (viaStyleRef "D8d4") (pt 615.24 445.64) (netNameRef "1_IO3") )
+ (via (viaStyleRef "D8d4") (pt 616.34 445.0) (netNameRef "1_IO4") )
+ (via (viaStyleRef "D8d4") (pt 615.16 444.34) (netNameRef "1_IO5") )
+ (via (viaStyleRef "D8d4") (pt 616.3 443.68) (netNameRef "1_IO6") )
+ (via (viaStyleRef "D8d4") (pt 615.14 443.06) (netNameRef "1_IO7") )
+ (via (viaStyleRef "D8d4") (pt 624.38 265.4) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D8d4") (pt 621.9 262.0) (netNameRef "RSR") )
+ (via (viaStyleRef "D10d5") (pt 620.14 263.28) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R68") (pt 619.66 268.18) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R68" (pt -0.06 1.12) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,5 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 620.54 284.82) (netNameRef "4_RQ") )
+ (via (viaStyleRef "D8d4") (pt 623.2 284.62) (netNameRef "4_P_RQ") )
+ (via (viaStyleRef "D8d4") (pt 620.4 293.6) (netNameRef "3_RQ") )
+ (via (viaStyleRef "D8d4") (pt 623.18 293.08) (netNameRef "3_P_RQ") )
+ (via (viaStyleRef "D10d5") (pt 623.78 298.16) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 622.98 307.22) (netNameRef "4_~OE1") )
+ (via (viaStyleRef "D8d4") (pt 619.62 308.46) (netNameRef "4_DIR1") )
+ (via (viaStyleRef "D10d5") (pt 622.78 309.92) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 621.16 322.44) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 622.76 322.9) (netNameRef "3_~OE1") )
+ (via (viaStyleRef "D10d5") (pt 618.56 346.24) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 618.46 348.74) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 618.46 351.24) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 618.36 353.74) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 619.64 408.8) (netNameRef "P_BLOK") )
+ (via (viaStyleRef "P:OV05D03") (pt 619.66 410.1) (netNameRef "P_PUSK") )
+ (via (viaStyleRef "P:OV05D03") (pt 620.1 410.74) (netNameRef "P_RES") )
+ (via (viaStyleRef "P:OV05D03") (pt 620.1 409.44) (netNameRef "~P_ZAP") )
+ (via (viaStyleRef "D10d5") (pt 623.44 410.74) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 619.42 405.54) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 619.78 415.64) (netNameRef "1_RQ") )
+ (via (viaStyleRef "D8d4") (pt 621.7 413.22) (netNameRef "1_P_RQ") )
+ (via (viaStyleRef "D8d4") (pt 621.16 425.1) (netNameRef "2_RQ") )
+ (via (viaStyleRef "D8d4") (pt 623.46 424.64) (netNameRef "2_P_RQ") )
+ (via (viaStyleRef "D10d5") (pt 619.94 424.04) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 619.94 433.66) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 623.44 429.24) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 620.46 440.56) (netNameRef "2_~OE1") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R13") (pt 622.9 439.54) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R13" (pt 0.0 -2.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 621.2 447.56) (netNameRef "1_~OE1") )
+ (via (viaStyleRef "D8d4") (pt 621.44 451.26) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 627.4 256.34) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 630.0 256.32) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 627.38 263.8) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 631.8 260.94) (netNameRef "~D_IN") )
+ (via (viaStyleRef "D10d5") (pt 629.96 263.86) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R73") (pt 627.38 261.74) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R73" (pt 0.02 2.56) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "820" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 625.56 267.3) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 626.66 298.72) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "P:OV05D03") (pt 630.1 308.8) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 625.74 308.92) (netNameRef "+3,3V2") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R32") (pt 628.44 308.82) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R32" (pt -0.04 0.78) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 627.6 311.64) (netNameRef "3_OUT7") )
+ (via (viaStyleRef "D10d5") (pt 625.9 318.64) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.8 316.16) (netNameRef "3_OUT0") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.56 315.56) (netNameRef "3_OUT1") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.72 314.92) (netNameRef "3_OUT2") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.56 314.24) (netNameRef "3_OUT3") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.72 313.56) (netNameRef "3_OUT4") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.6 312.92) (netNameRef "3_OUT5") )
+ (pattern (patternRef "YC164_1") (refDesRef "R26") (pt 630.4 316.6) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R26" (pt -3.16 -1.14) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 625.86 322.68) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 631.8 340.4) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 626.7 340.4) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 631.6 346.0) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 627.2 360.9) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 631.4 360.9) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 627.92 406.18) (netNameRef "10M") )
+ (via (viaStyleRef "D8d4") (pt 626.64 405.54) (netNameRef "1S") )
+ (via (viaStyleRef "D10d5") (pt 626.9 420.14) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D10d5") (pt 626.84 429.88) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.6 433.68) (netNameRef "2_OUT7") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.6 434.96) (netNameRef "2_OUT5") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.32 435.64) (netNameRef "2_OUT4") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.6 436.28) (netNameRef "2_OUT3") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.28 436.92) (netNameRef "2_OUT2") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.6 437.6) (netNameRef "2_OUT1") )
+ (via (viaStyleRef "P:OV05D03") (pt 627.24 438.24) (netNameRef "2_OUT0") )
+ (pattern (patternRef "YC164_1") (refDesRef "R9") (pt 627.48 444.48) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R9" (pt 3.02 -0.68) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 636.8 346.0) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 639.18 348.58) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 381.8 273.88) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 385.2 297.56) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R82") (pt 382.98 297.56) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R82" (pt -0.08 1.14) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "1 Ì" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1 ÌÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "CABLE_3") (refDesRef "6") (pt 409.38 326.8) (rotation 165.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "6" (pt 0.32874 -1.22676) (rotation 165.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt -0.32874 1.22676) (rotation 165.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 165.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_2") (refDesRef "R27") (pt 413.48 333.2) (rotation 135.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "RefDes" "R27" (pt 2.12 0.6) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0603" (pt 0.70711 0.70711) (rotation 135.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 135.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 135.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 423.9 328.1) (netNameRef "NET00152") )
+ (via (viaStyleRef "D10d5") (pt 420.7 327.2) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L6") (pt 421.7 331.4) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L6" (pt 0.0 2.2) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C29") (pt 423.3 326.4) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C29" (pt 0.0 -2.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 -2.6) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 429.1 312.2) (netNameRef "NET00158") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 440.32 298.16) (netNameRef "+5V") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C11") (pt 437.04 298.2) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C11" (pt 0.18 -3.12) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0805_4") (refDesRef "L4") (pt 440.5 329.4) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "56 íÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L4" (pt -2.3 -0.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 56 íÃ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C3") (pt 437.64 333.66) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "0,022 ìêÔ" (textStyleRef "(Default)") )
+ (attr "RefDes" "C3" (pt 0.1 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 1.2) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 22 íÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C4") (pt 444.66 335.78) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "680" (textStyleRef "(Default)") )
+ (attr "RefDes" "C4" (pt 1.64 -0.48) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt -1.2 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 680 ïÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C19") (pt 445.8 328.1) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C19" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "0,01 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R19") (pt 445.3 343.7) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R19" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "10 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "2") (pt 454.9 341.12) (rotation 225.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "2" (pt -0.89803 -0.89803) (rotation 225.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.89803 0.89803) (rotation 225.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 225.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "XP2_1") (refDesRef "XP2") (pt 459.5 335.46) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "XP-JP" (textStyleRef "(Default)") )
+ (attr "RefDes" "XP2" (pt 1.44 1.5) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "XP-JP" (pt 4.064 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà JP2" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 467.4 335.52) (netNameRef "20MHZ") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 477.8 350.32) (netNameRef "+5V") )
+ (via (viaStyleRef "D8d4") (pt 478.82 411.44) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C81") (pt 482.36 292.2) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C81" (pt 0.04 -3.12) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L15") (pt 484.84 313.9) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "1 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L15" (pt -2.74 -0.64) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt -2.6 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü LK21251R0K-T" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L16") (pt 483.9 326.18) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "42 Îì " (textStyleRef "(Default)") )
+ (attr "RefDes" "L16" (pt -0.08 1.08) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 0.0 -2.6) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü FBMJ2125HS420-T" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R45") (pt 482.56 416.2) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R45" (pt -0.06 1.2) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 490.46 320.52) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 491.52 312.24) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP26") (pt 490.78 335.58) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP26" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R84") (pt 489.78 375.0) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R84" (pt 2.62 -0.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2K" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 489.84 411.32) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C69") (pt 490.92 410.12) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C69" (pt 0.16 0.82) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 499.44 320.4) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 495.98 312.26) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 496.54 358.14) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C122") (pt 512.5 318.38) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C122" (pt 0.1 1.12) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 517.46 388.48) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 514.68 411.78) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R58") (pt 514.68 409.8) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R58" (pt 0.72 2.7) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 518.86 319.84) (netNameRef "D8") )
+ (via (viaStyleRef "D8d4") (pt 521.9 312.1) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C120") (pt 521.4 327.24) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C120" (pt 0.0 0.86) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 520.7 342.66) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.2 350.74) (netNameRef "60MHZ") )
+ (via (viaStyleRef "P:OV05D03") (pt 522.22 342.64) (netNameRef "D7") )
+ (via (viaStyleRef "P:OV05D03") (pt 523.22 342.66) (netNameRef "A17") )
+ (via (viaStyleRef "P:OV05D03") (pt 524.18 342.66) (netNameRef "D3") )
+ (via (viaStyleRef "P:OV05D03") (pt 525.2 342.68) (netNameRef "D0") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C107") (pt 524.16 351.42) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C107" (pt -3.26 -2.02) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 525.12 388.34) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 521.24 388.44) (netNameRef "GND") )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL7") (pt 521.28 382.2) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL7" (pt -0.78 -3.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 srct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 1.2 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R52") (pt 521.22 386.26) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R52" (pt -0.02 2.44) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 526.2 304.9) (netNameRef "CLKOUT") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L12") (pt 530.36 290.78) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L12" (pt -0.06 -3.68) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt -2.6 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 530.7 312.3) (netNameRef "A15") )
+ (via (viaStyleRef "P:OV05D03") (pt 530.58 320.32) (netNameRef "D12") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.04 320.32) (netNameRef "D13") )
+ (via (viaStyleRef "P:OV05D03") (pt 532.2 350.72) (netNameRef "PF6") )
+ (via (viaStyleRef "P:OV05D03") (pt 531.18 350.76) (netNameRef "PF0") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.18 350.74) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.18 350.74) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 526.2 342.7) (netNameRef "BMOD0") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.18 342.66) (netNameRef "BMOD1") )
+ (via (viaStyleRef "P:OV05D03") (pt 528.22 342.72) (netNameRef "A16") )
+ (via (viaStyleRef "P:OV05D03") (pt 527.18 350.74) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 529.2 388.38) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R54") (pt 529.2 386.34) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R54" (pt 0.0 2.26) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL9") (pt 529.18 382.2) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL9" (pt 2.62 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 srct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 1.2 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 529.2 411.0) (rotation 90.0) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 535.0 281.8) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C91") (pt 536.4 320.3) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C91" (pt 0.2 1.5) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C75") (pt 543.4 288.46) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C75" (pt 0.0 0.84) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 312.3) (netNameRef "SA10") )
+ (via (viaStyleRef "P:OV05D03") (pt 545.6 320.3) (netNameRef "PF15") )
+ (via (viaStyleRef "P:OV05D03") (pt 547.9 312.3) (netNameRef "~SRAS") )
+ (via (viaStyleRef "P:OV05D03") (pt 543.98 357.88) (netNameRef "I_1S") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.24 342.82) (netNameRef "4_IO5") )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C44") (pt 546.3 357.6) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C44" (pt -2.7 -0.9) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 549.86 320.12) (netNameRef "~AOE") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.32 350.74) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 554.22 342.78) (netNameRef "A10") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.52 365.48) (netNameRef "TMS7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.18 350.8) (netNameRef "DCLK7") )
+ (via (viaStyleRef "P:OV05D03") (pt 553.24 342.86) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 549.34 342.84) (netNameRef "4_IO4") )
+ (via (viaStyleRef "P:OV05D03") (pt 550.26 342.82) (netNameRef "3_IO3") )
+ (via (viaStyleRef "P:OV05D03") (pt 552.2 342.82) (netNameRef "A17") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.18 342.84) (netNameRef "A11") )
+ (via (viaStyleRef "P:OV05D03") (pt 551.2 350.78) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C50") (pt 554.2 356.1) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C50" (pt -0.8 1.6) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 559.2 342.78) (netNameRef "~ARE") )
+ (via (viaStyleRef "P:OV05D03") (pt 562.26 342.82) (netNameRef "PF5") )
+ (via (viaStyleRef "P:OV05D03") (pt 561.16 342.8) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 558.16 342.84) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C53") (pt 558.28 348.88) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C53" (pt 0.42 1.52) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R36") (pt 562.14 350.64) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R36" (pt -3.04 0.36) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R49") (pt 567.3 289.0) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R49" (pt -0.1 -4.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt -2.3 3.025) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 565.16 342.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 567.18 342.78) (netNameRef "~AOE") )
+ (via (viaStyleRef "P:OV05D03") (pt 566.2 350.8) (netNameRef "4_P_CW1") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.22 350.76) (netNameRef "7MSEL0") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C51") (pt 568.22 344.26) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C51" (pt -2.62 0.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C43") (pt 568.64 358.62) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt -2.6 0.0) (rotation 90.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C43" (pt -3.04 2.08) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 568.76 373.22) (netNameRef "+1,2V7") )
+ (pattern (patternRef "SMD0805_3") (refDesRef "C37") (pt 569.8 382.1) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C37" (pt -2.8 -0.4) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 576.32 266.84) (netNameRef "BF_TRS") )
+ (via (viaStyleRef "D10d5") (pt 583.16 320.14) (netNameRef "+3,3V7") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C39") (pt 583.88 333.92) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C39" (pt -2.58 -0.72) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP1") (pt 582.5 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP1" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP2") (pt 585.0 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP2" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 590.44 357.96) (netNameRef "GND") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP4") (pt 590.0 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP4" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP5") (pt 592.5 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP5" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_3") (refDesRef "C34") (pt 598.88 336.4) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C34" (pt -0.1 -2.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0805" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 598.16 350.2) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 595.98 350.2) (netNameRef "+3,3V7") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP7") (pt 597.5 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP7" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 616.48 297.5) (netNameRef "3_STR_0") )
+ (via (viaStyleRef "D8d4") (pt 615.54 296.92) (netNameRef "4__A0") )
+ (via (viaStyleRef "D8d4") (pt 613.84 289.48) (netNameRef "3__A2") )
+ (via (viaStyleRef "D8d4") (pt 614.9 304.64) (netNameRef "4_IO4") )
+ (via (viaStyleRef "D8d4") (pt 613.4 312.3) (netNameRef "3_IO7") )
+ (via (viaStyleRef "D10d5") (pt 612.3 411.9) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "D8d4") (pt 615.0 426.6) (netNameRef "2__A1") )
+ (via (viaStyleRef "D8d4") (pt 616.2 418.9) (netNameRef "2_P_R\\W") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R2") (pt 615.22 411.98) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R2" (pt -0.72 0.98) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 615.16 434.32) (netNameRef "2_IO7") )
+ (via (viaStyleRef "D10d5") (pt 620.1 259.48) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D8d4") (pt 617.66 266.3) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 623.64 289.36) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R22") (pt 621.98 321.26) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R22" (pt -0.18 1.74) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 623.68 419.54) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 619.68 442.4) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R1") (pt 622.68 448.34) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R1" (pt 0.02 -3.44) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2êÎì ± 5%" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C9") (pt 622.88 441.48) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C9" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 631.88 259.08) (netNameRef "D_IN") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R75") (pt 628.22 262.0) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R75" (pt -0.02 -2.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "33" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 626.66 290.02) (netNameRef "+3,3V2") )
+ (via (viaStyleRef "P:OV05D03") (pt 626.72 312.28) (netNameRef "3_OUT6") )
+ (pattern (patternRef "YC164_1") (refDesRef "R31") (pt 630.4 312.24) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R31" (pt -3.16 -0.46) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 626.74 411.4) (netNameRef "+3,3V2") )
+ (pattern (patternRef "YC164_1") (refDesRef "R5") (pt 627.52 449.44) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R5" (pt 3.08 -0.84) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 627.36 434.32) (netNameRef "2_OUT6") )
+ (pattern (patternRef "XP2_1") (refDesRef "XP1") (pt 454.84 338.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "XP-JP" (textStyleRef "(Default)") )
+ (attr "RefDes" "XP1" (pt -3.24 -0.3) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "XP-JP" (pt 0.0 -4.064) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà JP2" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SOT-23_1") (refDesRef "VD1") (pt 507.42 403.38) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "VD1" (pt -2.42 -2.84) (isVisible True) (justify Left) (textStyleRef "H16 [1]") )
+ (attr "Value" "ZHCS1000" (textStyleRef "(Default)") )
+ (attr "Type" "ZHCS1000" (pt -3.302 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Äèîä ZHCS1000" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Zetex Semiconductors" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C114") (pt 561.58 278.98) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C114" (pt -0.08 1.72) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TO-252_2") (refDesRef "D15") (pt 598.16 344.98) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117-ADJ" (pt -5.125 -0.625) (rotation 90.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D15" (pt -0.36 6.92) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R3") (pt 615.0 431.48) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R3" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pad (padNum 0) (padStyleRef "P: MH_C5.0/2.8") (pt 374.5 239.7) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L17") (pt 381.8 276.64) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "42 Îì " (textStyleRef "(Default)") )
+ (attr "RefDes" "L17" (pt -2.78 0.78) (rotation 180.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü FBMJ2125HS420-T" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "TAIYO YUDEN" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "11") (pt 380.1 310.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "11" (pt 2.8 2.1) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.0 -1.27) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_4") (refDesRef "10") (pt 380.4 322.0) (rotation 345.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "10" (pt 2.2 2.8) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.32868 -1.22677) (rotation 345.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 345.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_2") (refDesRef "9") (pt 379.9 334.0) (rotation 15.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "9" (pt 2.7 1.7) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt -0.3287 -1.22673) (rotation 15.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 15.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "8") (pt 380.1 345.9) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "8" (pt 2.5 1.9) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.0 -1.27) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "1") (pt 379.94 368.86) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "1" (pt 0.0 1.27) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.0 -1.27) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "13") (pt 380.16 422.86) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "13" (pt 0.0 1.27) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.0 -1.27) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pad (padNum 0) (padStyleRef "P: MH_C5.0/2.8") (pt 374.5 461.95) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R25") (pt 425.8 324.6) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R25" (pt -0.1 -2.7) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 427.2 329.4) (netNameRef "NET00541") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R21") (pt 428.0 331.2) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R21" (pt 0.0 1.1) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C31") (pt 418.4 332.5) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C31" (pt -3.56 0.1) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 -2.6) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R28") (pt 413.06 330.22) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R28" (pt -3.26 -1.22) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 434.4 298.72) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C26") (pt 450.32 314.84) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C26" (pt 2.7 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt -2.6 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L2") (pt 449.3 322.16) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "68 íÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L2" (pt 3.1 -1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 0.0 -2.6) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 68 íÃ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_3") (refDesRef "C6") (pt 449.26 325.44) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C6" (pt 0.14 -2.94) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,01 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.2) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,01 ìêÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R10") (pt 449.32 324.32) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R10" (pt 3.78 -1.02) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "470" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 470 Îì ± 5%" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R8") (pt 443.8 324.8) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R8" (pt -2.84 -1.18) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "470" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.2 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 470 Îì ± 5%" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C18") (pt 444.5 325.2) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C18" (pt -3.8 -1.1) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 -2.6) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 442.36 330.82) (netNameRef "+3,3V") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C23") (pt 446.4 332.36) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C23" (pt 2.4 0.34) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C20") (pt 443.48 331.9) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C20" (pt -3.08 -1.6) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C2") (pt 451.14 329.42) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C2" (pt 0.66 1.08) (rotation 180.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1000" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.2) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO - 1000 ïÔ ± 10% " (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_3") (refDesRef "C1") (pt 454.86 331.7) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C1" (pt 2.44 -0.8) (rotation 270.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1000" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.2 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO - 1000 ïÔ ± 10% " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "R11") (pt 443.52 338.96) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "6,8 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R11" (pt -3.82 -0.86) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0805" (pt 0.0 1.2) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð SMD-0805 - 6.8 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 479.8 292.56) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 487.7 303.0) (netNameRef "+2,5V") )
+ (via (viaStyleRef "D10d5") (pt 487.4 316.46) (netNameRef "PVDD") )
+ (via (viaStyleRef "D10d5") (pt 487.38 318.5) (netNameRef "PVDD") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C86") (pt 487.92 315.08) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C86" (pt -2.72 1.02) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R66") (pt 485.14 317.48) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R66" (pt -4.24 -0.88) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,43 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,43 êÎì ± 1%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 487.5 322.32) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 472.2 323.1) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C89") (pt 488.58 323.52) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C89" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R79") (pt 485.14 323.12) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R79" (pt -4.14 -0.62) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,5 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R78") (pt 485.14 321.38) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R78" (pt -4.14 -0.78) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "39,2" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 39,2 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP23") (pt 487.98 339.08) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP23" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C66") (pt 478.04 353.48) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C66" (pt 2.9 -0.7) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 480.14 409.82) (netNameRef "GND") )
+ (pattern (patternRef "CABLE_1") (refDesRef "12") (pt 479.18 416.22) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "12" (pt 0.0 -1.27) (rotation 180.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.0 1.27) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pad (padNum 0) (padStyleRef "P: MH_C5.0/2.8") (pt 510.5 239.7) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 510.7 307.7) (netNameRef "A4") )
+ (via (viaStyleRef "D8d4") (pt 510.88 316.18) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 502.5 315.9) (netNameRef "GND") )
+ (via (viaStyleRef "D8d4") (pt 510.7 318.38) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 518.32 320.52) (netNameRef "D9") )
+ (via (viaStyleRef "D10d5") (pt 495.7 324.28) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D10d5") (pt 502.5 323.7) (netNameRef "+2,5V") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C90") (pt 504.46 323.74) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C90" (pt 0.02 0.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R65") (pt 496.18 336.82) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R65" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 517.98 345.22) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "P:OV05D03") (pt 517.94 356.22) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C95") (pt 503.2 354.7) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C95" (pt -0.64 -2.72) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R81") (pt 498.8 356.3) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R81" (pt -4.0 -0.9) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 518.44 361.84) (netNameRef "60MHZ") )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP15") (pt 517.98 371.84) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP15" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP19") (pt 518.88 369.14) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt -0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP19" (pt 0.7 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R60") (pt 510.3 376.56) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R60" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R51") (pt 517.46 386.3) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R51" (pt -2.46 -0.7) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C70") (pt 510.48 398.72) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C70" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 503.22 404.42) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L11") (pt 513.68 406.22) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L11" (pt -3.68 -0.88) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt 0.0 2.6) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP27") (pt 518.92 415.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP27" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pad (padNum 0) (padStyleRef "P: MH_C5.0/2.8") (pt 510.5 461.95) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 541.5 263.2) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R55") (pt 545.0 278.5) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R55" (pt 4.1 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 0 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 541.3 309.7) (netNameRef "~AWE") )
+ (via (viaStyleRef "P:OV05D03") (pt 548.5 311.3) (netNameRef "~SCAS") )
+ (via (viaStyleRef "P:OV05D03") (pt 540.76 310.8) (netNameRef "~ABE1") )
+ (via (viaStyleRef "P:OV05D03") (pt 541.3 312.0) (netNameRef "~ARE") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C117") (pt 524.94 306.38) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C117" (pt 0.0 1.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 533.4 315.58) (netNameRef "D2") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C109") (pt 536.44 317.34) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C109" (pt -1.34 -3.44) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C115") (pt 534.1 318.14) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C115" (pt -3.5 -0.44) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C60") (pt 547.62 339.8) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C60" (pt -3.52 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 533.14 343.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 533.2 357.72) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 540.72 359.88) (netNameRef "CONFD7") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C58") (pt 548.04 361.94) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C58" (pt 0.06 0.96) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R39") (pt 540.32 361.72) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R39" (pt -3.92 -1.02) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 3.025 -2.3) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 525.3 406.1) (netNameRef "NET00264") )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C77") (pt 528.1 406.7) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C77" (pt 3.9 -0.7) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 571.3 267.98) (netNameRef "BF_TCK") )
+ (via (viaStyleRef "D10d5") (pt 564.34 267.88) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.06 306.34) (netNameRef "PF3") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.14 341.86) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C42") (pt 555.88 340.24) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C42" (pt 3.82 0.06) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 556.24 345.86) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.18 344.84) (netNameRef "A6") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.2 343.84) (netNameRef "A7") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.14 345.72) (netNameRef "7VPLL4") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.16 352.82) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "P:OV05D03") (pt 564.16 355.82) (netNameRef "7VPLL2") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.18 357.78) (netNameRef "TP1") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.22 356.78) (netNameRef "TP8") )
+ (via (viaStyleRef "P:OV05D03") (pt 571.66 351.22) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C54") (pt 557.76 355.74) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C54" (pt -0.16 -2.54) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 556.18 360.76) (netNameRef "2_IO1") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.2 361.74) (netNameRef "2_IO0") )
+ (via (viaStyleRef "P:OV05D03") (pt 571.24 362.76) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.16 359.74) (netNameRef "GND") )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C57") (pt 560.86 361.78) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt -2.6 0.0) (rotation 90.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C57" (pt -3.16 1.92) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 578.76 379.52) (netNameRef "GND") )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 579.04 375.36) (netNameRef "+5V") )
+ (via (viaStyleRef "D10d5") (pt 594.36 348.56) (netNameRef "+3,3V7") )
+ (via (viaStyleRef "D10d5") (pt 602.3 344.5) (netNameRef "+3,3V7") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C47") (pt 589.34 367.9) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C47" (pt -2.54 -0.5) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP10") (pt 587.5 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP10" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP13") (pt 595.0 379.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP13" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C85") (pt 620.16 261.36) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C85" (pt -3.26 -0.76) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R69") (pt 629.96 261.76) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R69" (pt 2.44 -0.26) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,5 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 616.98 272.44) (netNameRef "+3,3VF") )
+ (via (viaStyleRef "D8d4") (pt 616.9 268.3) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R67") (pt 623.56 268.18) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R67" (pt 1.24 1.12) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,5 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 617.08 277.9) (netNameRef "GND") )
+ (pattern (patternRef "YC164_1") (refDesRef "R35") (pt 627.44 300.8) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R35" (pt -3.24 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C14") (pt 623.6 308.9) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C14" (pt -3.4 -0.6) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C21") (pt 634.2 346.0) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C21" (pt 0.0 1.3) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R42") (pt 616.3 348.7) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R42" (pt 4.6 -0.7) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R43") (pt 616.34 346.22) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R43" (pt 4.56 -0.82) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "P:REX20Y20D14") (pt 639.48 353.2) (netNameRef "+5V") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R40") (pt 616.38 353.72) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R40" (pt 4.32 -0.82) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C10") (pt 624.68 420.9) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C10" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C8") (pt 624.7 430.42) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C8" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 625.24 440.36) (netNameRef "+3,3V2") )
+ (pattern (patternRef "YC164_1") (refDesRef "R15") (pt 630.2 439.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R15" (pt 2.92 -0.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C7") (pt 623.64 451.16) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C7" (pt 0.04 0.82) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R50") (pt 387.34 261.9) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R50" (pt 0.06 -4.4) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt -2.3 3.025) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "BH10R_1") (refDesRef "XP4") (pt 383.14 257.26) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "BH10R" (pt -10.795 -5.715) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "BH10R" (textStyleRef "(Default)") )
+ (attr "RefDes" "XP4" (pt -1.84 14.54) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH10R" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R23") (pt 425.1 329.4) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R23" (pt 1.6 -2.5) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "C+7343_1") (refDesRef "C22") (pt 424.5 311.2) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C+7343" (pt -3.302 3.302) (rotation 180.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C22" (pt -3.0 3.4) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C30") (pt 421.6 328.3) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C30" (pt -3.3 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R29") (pt 413.12 328.12) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R29" (pt -3.38 -0.72) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "7") (pt 410.4 322.04) (rotation 135.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "7" (pt 0.89803 -0.89803) (rotation 135.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt -0.89803 0.89803) (rotation 135.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 135.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CP-24-1_1") (refDesRef "D4") (pt 443.58 331.3) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "ADF4360" (pt -0.35 -6.54) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D4" (pt 4.48 1.02) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "ADF4360-8BCP" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADF4360-8BCP" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C5") (pt 442.6 334.8) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "47" (textStyleRef "(Default)") )
+ (attr "RefDes" "C5" (pt -2.9 -0.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt -1.2 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 47 ïÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R17") (pt 447.7 335.7) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R17" (pt 2.5 -0.7) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "10 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C17") (pt 449.02 311.74) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C17" (pt 0.0 -2.5) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C24") (pt 450.32 318.74) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C24" (pt 2.58 -0.74) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R12") (pt 450.58 326.9) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R12" (pt 3.72 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "4,7 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.2) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 4,7 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_2") (refDesRef "R20") (pt 433.2 329.0) (rotation 225.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "1,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R20" (pt -0.5 1.6) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0603" (pt -0.70711 0.70711) (rotation 225.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,2 êÎì ± 5%" (rotation 225.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 225.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R4") (pt 455.86 328.84) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R4" (pt -0.06 -2.74) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "R6") (pt 441.86 333.66) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "15 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R6" (pt 0.0 0.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0805" (pt 0.0 1.2) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð SMD-0805 - 15 êÎì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "L5") (pt 440.86 327.72) (rotation 315.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "56 íÃ" (textStyleRef "(Default)") )
+ (attr "RefDes" "L5" (pt -3.16 -1.02) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "L_SMD0805" (pt -1.83848 -1.83848) (rotation 315.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 56 íÃ" (rotation 315.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 315.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL1") (pt 448.3 343.0) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL1" (pt 2.6 0.6) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "L-C170 gct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 1.2 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R16") (pt 445.3 341.9) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R16" (pt -4.3 -0.7) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "10 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 10 êÎì ± 5%" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "TO-252_2") (refDesRef "D29") (pt 483.2 299.7) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117-ADJ" (pt 5.125 -0.625) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D29" (pt 0.0 6.3) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117-2,5" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-2.5" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C121") (pt 488.94 320.36) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C121" (pt -2.64 -0.64) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C87") (pt 488.56 312.44) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C87" (pt 0.24 -3.04) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R7") (pt 465.3 335.52) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R7" (pt -0.1 -2.62) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "51" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 51 Îì ± 5%" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R76") (pt 486.94 326.96) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R76" (pt -0.14 2.04) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "47 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 47êÎì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_2") (refDesRef "R77") (pt 485.14 319.36) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "39,2" (textStyleRef "(Default)") )
+ (attr "RefDes" "R77" (pt -4.24 -0.76) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 39,2 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP25") (pt 487.98 336.38) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP25" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP21") (pt 488.08 341.78) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP21" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "XP2_1") (refDesRef "XP6") (pt 487.86 394.8) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "XP-JP" (textStyleRef "(Default)") )
+ (attr "RefDes" "XP6" (pt -3.16 0.5) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "XP-JP" (pt 0.0 4.064) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "JP2" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Ýëåìåíò" "Âèëêà" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9002" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R46") (pt 480.94 411.48) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R46" (pt -0.04 1.02) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C65") (pt 480.94 410.84) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C65" (pt 3.66 -0.94) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "220" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - NPO - 220 ïÔ" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 502.48 319.78) (netNameRef "GND") )
+ (via (viaStyleRef "D10d5") (pt 495.74 327.2) (netNameRef "GND") )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C98") (pt 494.86 313.04) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C98" (pt 2.54 0.06) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C118") (pt 501.36 320.92) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C118" (pt -0.1 0.76) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C100") (pt 502.76 357.48) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C100" (pt 0.84 1.02) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C103") (pt 519.0 358.78) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C103" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C104") (pt 517.94 343.62) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C104" (pt -2.74 -0.82) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C67") (pt 493.9 358.8) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C67" (pt 0.14 1.16) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SSOP28_1") (refDesRef "D34") (pt 510.72 351.12) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "FT-245RL" (pt -1.125 7.0) (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D34" (pt -5.12 9.28) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "FT-245RL" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà FT-245RL" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "FTDI" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C112") (pt 498.78 358.14) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C112" (pt -2.18 1.16) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_2") (refDesRef "R63") (pt 514.9 364.6) (rotation 315.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "RefDes" "R63" (pt 2.3 0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "R_SMD0603" (pt -0.70711 -0.70711) (rotation 315.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (rotation 315.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 315.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C76") (pt 512.54 373.94) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C76" (pt -2.74 -0.84) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL6") (pt 517.48 382.2) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL6" (pt -2.68 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 gct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 1.2 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C74") (pt 512.4 410.26) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C74" (pt -3.2 -0.82) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TO-252_2") (refDesRef "D26") (pt 544.2 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117" (pt 5.125 -0.625) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D26" (pt 5.4 0.3) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "C+7343_1") (refDesRef "C71") (pt 547.28 259.28) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C+7343" (pt -3.302 3.302) (rotation 180.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C71" (pt -3.4 -3.5) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "C+7343_1") (refDesRef "C73") (pt 544.2 281.9) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C+7343" (pt -3.302 3.302) (rotation 180.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C73" (pt 3.5 0.4) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "C+7343_1") (refDesRef "C80") (pt 530.44 295.6) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C+7343" (pt 3.302 -3.302) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C80" (pt 3.302 3.556) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð Tantal SMD-7343 - 10 Â - 100 ìêÔ" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SOIC-8_2") (refDesRef "U2") (pt 540.58 287.04) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "NDS8434A" (pt -2.948 1.8) (rotation 180.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "U2" (pt -4.18 4.56) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "FDS9431A" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Òðàíçèñòîð FDS9431A" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Fairchild Semiconductor" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C92") (pt 527.04 295.62) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C92" (pt -0.04 1.08) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C101") (pt 532.8 327.52) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C101" (pt 3.2 -0.52) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C96") (pt 540.58 320.42) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C96" (pt -0.28 1.48) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C102") (pt 540.94 315.8) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C102" (pt 1.76 -3.3) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C105") (pt 542.18 317.44) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C105" (pt 1.22 1.56) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_3") (refDesRef "L9") (pt 548.56 357.58) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "L9" (pt 0.04 -3.98) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C116") (pt 534.46 357.92) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C116" (pt -0.06 1.58) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C110") (pt 534.4 343.6) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C110" (pt 2.6 -0.7) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C99") (pt 527.2 348.84) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C99" (pt -1.4 -3.54) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL8") (pt 525.08 382.2) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL8" (pt -0.78 -3.9) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 gct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 1.2 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R37") (pt 548.14 392.6) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R37" (pt -0.04 1.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 3.025 2.3) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2K2" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R53") (pt 525.06 386.28) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R53" (pt 0.14 2.32) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C79") (pt 527.2 404.8) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C79" (pt 0.0 -2.7) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C68") (pt 526.4 409.9) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C68" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R61") (pt 571.78 265.66) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R61" (pt 0.12 -3.56) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 3.025 2.3) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R62") (pt 565.52 265.72) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R62" (pt -4.02 -0.82) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 3.025 2.3) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (rotation 270.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "P:OV05D03") (pt 556.54 304.8) (netNameRef "SCK") )
+ (pattern (patternRef "SO-16_W_1") (refDesRef "D23") (pt 564.74 292.4) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "M25P32" (pt -4.445 4.445) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "M25P64V6MF" (textStyleRef "(Default)") )
+ (attr "RefDes" "D23" (pt -4.54 11.1) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà M25P64V6MF" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "STMicroelectronics" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 578.66 335.68) (netNameRef "GND") )
+ (via (viaStyleRef "P:OV05D03") (pt 556.18 342.78) (netNameRef "A4") )
+ (pattern (patternRef "SMD0805_3") (refDesRef "L8") (pt 571.94 357.68) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "L8" (pt -0.14 1.02) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "Type" "L_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_3") (refDesRef "L10") (pt 572.72 343.86) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "L10" (pt 2.78 -0.86) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "Type" "L_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C61") (pt 569.82 350.82) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C61" (pt -0.02 -2.52) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C55") (pt 563.36 343.98) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C55" (pt -1.86 -3.28) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C52") (pt 563.8 351.94) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C52" (pt 2.0 -2.24) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C45") (pt 570.32 343.84) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt 2.6 0.0) (rotation 270.0) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C45" (pt -0.12 2.76) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C40") (pt 556.18 351.08) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C40" (pt -1.58 -3.18) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 270.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C49") (pt 565.0 357.7) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C49" (pt -3.4 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TO-252_2") (refDesRef "D16") (pt 573.94 375.5) (rotation 270.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117-ADJ" (pt 0.625 -5.125) (isFlipped True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D16" (pt -0.04 4.5) (isFlipped True) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-ADJ" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-ADJ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C41") (pt 589.18 356.62) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C41" (pt -2.68 -0.72) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_2") (refDesRef "C36") (pt 603.8 343.5) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "C_SMD0805" (pt -2.6 0.0) (rotation 270.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "C36" (pt -1.86 0.0) (rotation 90.0) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP3") (pt 587.5 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP3" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "PIN40X40X24_1") (refDesRef "TP6") (pt 595.0 381.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "PIN40X40X24" (pt 0.0 -0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "TP6" (pt 0.0 0.7) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "PIN40X40X24" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Êîíñòðóêòèâíûé ýëåìåíò PIN40X40X24" (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D8d4") (pt 617.0 274.04) (netNameRef "+3,3VF") )
+ (pattern (patternRef "SOIC-8_4") (refDesRef "D31") (pt 624.94 272.4) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "MC100LVEL22D" (textStyleRef "(Default)") )
+ (attr "RefDes" "D31" (pt -3.302 1.016) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Type" "MC100LVEL22D" (pt -3.302 -4.826) (isFlipped True) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Èçãîòîâèòåëü " "ON Semiconductor" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVEL22D" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SOIC-8_3") (refDesRef "D33") (pt 624.9 259.46) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "MC100LVELT23" (textStyleRef "(Default)") )
+ (attr "RefDes" "D33" (pt -3.1 4.44) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "100LVELT23" (pt -3.302 4.826) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVELT23D" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Motorola" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R72") (pt 619.64 266.34) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R72" (pt -4.14 -0.74) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "820" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 1.0) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R74") (pt 627.42 258.3) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R74" (pt -2.48 -2.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "820" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R70") (pt 630.0 258.3) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R70" (pt 2.5 -1.38) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1,5 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 1,5 êÎì ± 5%" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R71") (pt 623.56 266.36) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R71" (pt 3.84 -0.16) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "820" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 820 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D13") (pt 618.0 290.02) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D13" (pt 3.6 1.48) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C16") (pt 625.82 297.54) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C16" (pt -0.12 -2.54) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D11") (pt 618.08 298.8) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D11" (pt 3.62 1.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R34") (pt 627.48 306.04) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R34" (pt -3.18 -1.04) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C15") (pt 624.62 290.58) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C15" (pt -3.42 -0.78) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C13") (pt 625.88 320.7) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C13" (pt -2.18 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D10") (pt 617.96 317.48) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D10" (pt 3.74 1.62) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TO-252_1") (refDesRef "D8") (pt 631.96 350.8) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117" (pt 0.625 5.125) (rotation 180.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "RefDes" "D8" (pt 1.34 4.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R41") (pt 616.38 351.24) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R41" (pt 4.32 -0.84) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "510" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 510 Îì ± 5%" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D3") (pt 617.98 411.4) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D3" (pt 5.42 1.5) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D6") (pt 618.08 420.2) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D6" (pt 3.57632 1.95072) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C12") (pt 624.68 411.94) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C12" (pt 0.0 1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (via (viaStyleRef "D10d5") (pt 625.22 449.16) (netNameRef "+3,3V2") )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D1") (pt 618.0 448.24) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D1" (pt 3.5 1.56) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D5") (pt 618.08 439.52) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D5" (pt 3.72 1.48) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "YC164_1") (refDesRef "R18") (pt 630.2 433.92) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "RefDes" "R18" (pt 3.02 -0.52) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "YC164" (pt 2.3 -3.025) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ñáîðêà ðåçèñòîðîâ YC164-JRG07 2,2 êÎì " (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåü" "YAGEO" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "CABLE_1") (refDesRef "4") (pt 410.26 336.54) (rotation 225.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "4" (pt -0.89803 -0.89803) (rotation 225.0) (isFlipped True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "YESF-085/50" (textStyleRef "(Default)") )
+ (attr "Type" "CABLE" (pt 0.89803 0.89803) (rotation 225.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíòàêò ïîä êàáåëü" (rotation 225.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TO-252_1") (refDesRef "D7") (pt 437.6 305.8) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117" (pt 5.125 -0.625) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "RefDes" "D7" (pt 0.3 6.1) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "KXO-97_1") (refDesRef "D27") (pt 508.0 373.62) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "KXO-97- 60.000 MHz" (textStyleRef "(Default)") )
+ (attr "RefDes" "D27" (pt 8.0 -0.42) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "KXO-97" (pt -1.778 -2.54) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà KXO-97- 60.000 MHz" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "GEYER electronic" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SOIC-8_1") (refDesRef "U1") (pt 511.32 397.04) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "NDS8434A" (pt 1.8 2.948) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "U1" (pt 5.18 2.2) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Value" "FDS9431A" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Òðàíçèñòîð FDS9431A" (rotation 90.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Fairchild Semiconductor" (rotation 90.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "B-169_1") (refDesRef "D24") (pt 539.3 318.3) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "ADSP_BF533" (pt -11.5 3.0) (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D24" (pt 0.1 10.7) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "ADSP_BF533SBB500" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADSP_BF533SBB500" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SO-16_W_1") (refDesRef "D22") (pt 564.74 278.58) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "M25P32" (pt -4.445 4.445) (rotation 90.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "M25P64V6MF" (textStyleRef "(Default)") )
+ (attr "RefDes" "D22" (pt -4.64 11.02) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà M25P64V6MF" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "STMicroelectronics" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SOIC-8_5") (refDesRef "D30") (pt 624.9 274.06) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "MC100LVEL22D" (textStyleRef "(Default)") )
+ (attr "RefDes" "D30" (pt -3.2 5.04) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Type" "MC100LVEL22D" (pt -3.302 4.826) (rotation 180.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Èçãîòîâèòåëü " "ON Semiconductor" (rotation 180.0) (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MC100LVEL22D" (rotation 180.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D12") (pt 618.04 307.88) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D12" (pt 2.56 1.82) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D2") (pt 618.08 429.88) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D2" (pt 3.57632 1.95072) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C28") (pt 429.5 329.3) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C28" (pt 3.3 -1.0) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "1000" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - NPO-1 íÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C83") (pt 616.96 270.38) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C83" (pt -3.16 -0.68) (isVisible True) (justify LowerCenter) (textStyleRef "T:H60W6") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 1.0 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "T:H60W6") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C72") (pt 552.2 314.5) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C72" (pt 3.4 -0.9) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R59") (pt 552.2 316.3) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R59" (pt 3.3 -0.8) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "100" (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt 0.0 -1.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 100 Îì ± 5%" (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_3") (refDesRef "L7") (pt 555.9 337.92) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "L7" (pt -3.3 -0.92) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "10 ìêÃ" (textStyleRef "(Default)") )
+ (attr "Type" "L_SMD0805" (pt 0.0 2.6) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäóêòèâíîñòü SMD0805 10 ìêÃ" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "NIC Components Corporation" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL4") (pt 609.18 348.74) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL4" (pt 3.72 -0.94) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 srct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL5") (pt 609.2 346.22) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL5" (pt 3.8 -0.92) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 gct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C48") (pt 555.68 347.18) (rotation 180.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C48" (pt -3.48 -1.08) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt 0.0 1.0) (rotation 180.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 180.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL2") (pt 609.14 353.7) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL2" (pt 3.86 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 srct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 srct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW4") (pt 374.1 322.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW4" (pt 0.1 5.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW2") (pt 374.0 346.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW2" (pt 0.1 5.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW6") (pt 374.0 423.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW6" (pt 0.0 5.08) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "R8A_1") (refDesRef "D9") (pt 428.8 326.9) (rotation 180.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "AD8009AR" (textStyleRef "(Default)") )
+ (attr "RefDes" "D9" (pt -3.0 6.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "AD8009" (pt -3.302 4.826) (rotation 180.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà AD8009AR" (rotation 180.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (rotation 180.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TQFP-64(NET2272)_1") (refDesRef "D32") (pt 489.0 323.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "NET2272" (pt 7.2009 -7.2009) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "NET2272" (textStyleRef "(Default)") )
+ (attr "RefDes" "D32" (pt 5.3 4.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà NET2272" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "PLX Tecnnology" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "TO-252_2") (refDesRef "D21") (pt 485.52 352.5) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "LM1117-ADJ" (pt -0.625 -5.125) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D21" (pt 8.0 0.22) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "LM1117DTX-3,3" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà LM1117DTX-3,3" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "National Semiconductor" (rotation 90.0) (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "2D522B_1") (refDesRef "VD3") (pt 487.96 389.38) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "2D522B" (pt 3.556 0.0) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "2D522B" (textStyleRef "(Default)") )
+ (attr "RefDes" "VD3" (pt 3.683 2.032) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Äèîä 2D522B" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "DIP-8_1") (refDesRef "D35") (pt 488.1 381.9) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "ADM705" (pt -0.74999 -11.879) (textStyleRef "H16 [1]") )
+ (attr "Value" "ADM705AN" (textStyleRef "(Default)") )
+ (attr "RefDes" "D35" (pt 1.2 1.5) (isVisible True) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà ADM705AN" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Analog Devices" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "LSOP-20_1") (refDesRef "D19") (pt 484.26 411.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D19" (pt 3.42 1.44) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "SN74AC245DB" (textStyleRef "(Default)") )
+ (attr "Type" "74AC245" (pt 3.57632 -7.47776) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà SN74AC245DB" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Texas Instruments" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "C82") (pt 617.02 275.94) (rotation 90.0) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "C82" (pt -2.72 -0.54) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "0,1 ìê" (textStyleRef "(Default)") )
+ (attr "Type" "C_SMD0603" (pt -1.0 0.0) (rotation 90.0) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0603 - X7R - 0,1 ìêÔ" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 90.0) (isFlipped True) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "BH14_1") (refDesRef "XP5") (pt 563.08 255.82) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "BH14" (pt 20.32 0.0) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "XP5" (pt 7.52 5.68) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "BH-14" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH-14" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Harting" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SOT-23_1") (refDesRef "VD2") (pt 524.82 289.64) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "VD2" (pt -2.52 2.96) (isVisible True) (justify Left) (textStyleRef "H16 [1]") )
+ (attr "Value" "ZHCS1000" (textStyleRef "(Default)") )
+ (attr "Type" "ZHCS1000" (pt -3.302 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Äèîä ZHCS1000" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Zetex Semiconductors" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TSOP-44_1") (refDesRef "D17") (pt 574.86 321.99) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "IS61LV51216_1" (pt 8.8011 6.4008) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D17" (pt -2.86 4.81) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "IS61LV51216" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà IS61LV51216" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "ISSI" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "BC256_1") (refDesRef "D20") (pt 518.7 358.22) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "D20" (pt 7.5 2.5) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "EPM1270F256C4" (textStyleRef "(Default)") )
+ (attr "Type" "EPM1270F256" (pt 7.5 -17.5) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà EPM1270F256C4" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Altera" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "TSOP-44_2") (refDesRef "D18") (pt 581.76 356.18) (rotation 90.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "IS61LV51216_1" (pt 8.8011 6.4008) (rotation 90.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D18" (pt -2.66 5.72) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "IS61LV51216" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà IS61LV51216" (rotation 90.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "ISSI" (rotation 90.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "L-C170_1") (refDesRef "HL3") (pt 609.16 351.26) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "HL3" (pt 3.74 -0.96) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" " L-C170 gct" (textStyleRef "(Default)") )
+ (attr "Type" "L-C170" (pt 0.0 -1.2) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Èíäèêàòîð åäèíè÷íûé L-C170 gct" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Para Light Electronics" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0603_1") (refDesRef "R57") (pt 518.94 409.86) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "R57" (pt 2.66 1.44) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "2,2 ê " (textStyleRef "(Default)") )
+ (attr "Type" "R_SMD0603" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ðåçèñòîð 0603 - 2,2 êÎì ± 5%" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMD0805_1") (refDesRef "C27") (pt 641.0 350.08) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "10 ìê" (textStyleRef "(Default)") )
+ (attr "RefDes" "C27" (pt 2.7 -0.8) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Type" "C_SMD0805" (pt -1.0 0.0) (rotation 270.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Êîíäåíñàòîð 0805 - X5R - 10 ìêÔ" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Murata" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW1") (pt 374.0 368.8) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW1" (pt 0.0 5.08) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW3") (pt 374.0 334.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW3" (pt 0.1 5.6) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "SMB_JWHY_1") (refDesRef "XW5") (pt 374.1 310.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XW5" (pt 0.0 5.9) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "C340-022D" (textStyleRef "(Default)") )
+ (attr "Type" "SMB_JWHY" (pt 0.0 -5.08) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà SMA-R/A PCB JACK C340-022D" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "YEEUN TECH" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "TSOP-54_1") (refDesRef "D25") (pt 524.7 327.2) (isFlipped True)(patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "MT48LC16M16A2" (pt -6.4008 -8.8011) (isFlipped True) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "RefDes" "D25" (pt -6.2 1.4) (isFlipped True) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "MT48LC16M16A2" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà MT48LC16M16A2" (isFlipped True) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Micron" (isFlipped True) (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "F484_1") (refDesRef "D14") (pt 548.7 361.28) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Value" "EP2C20F484C7" (textStyleRef "(Default)") )
+ (attr "RefDes" "D14" (pt 8.4 2.52) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Type" "EP2C20F484" (pt 10.0 -23.5) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà EP2C2F484Ñ7" (textStyleRef "H16 [1]") )
+ (attr "Èçãîãîâèòåëü " "Altera" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "KXO-75_1") (refDesRef "D28") (pt 521.14 404.46) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "KXO-75" (pt 0.0 -10.16) (textStyleRef "(Default)") )
+ (attr "RefDes" "D28" (pt -0.54 -10.26) (isVisible True) (textStyleRef "(Default)") )
+ (attr "Value" "KXO-75- 10.000 MHz" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "Ìèêðîñõåìà KXO-75- 10.000 MHz" (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "GEYER electronic" (textStyleRef "(Default)") )
+ )
+ )
+ (pattern (patternRef "BH2-10_1") (refDesRef "XP3") (pt 544.38 397.44) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "RefDes" "XP3" (pt 4.0 4.0) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "Value" "BH2-10" (textStyleRef "(Default)") )
+ (attr "Type" "BH2-10" (pt 4.0 -2.0) (justify UpperCenter) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "Âèëêà BH2-10" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "Harting" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "DIN3X32_1") (refDesRef "XP8") (pt 643.9 323.5) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "DIN3X32P" (pt 5.08 -93.98) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "DIN EN 60603 121 A 10139 X" (pt 5.08 -86.36) (justify UpperCenter) (textStyleRef "(Default)") )
+ (attr "RefDes" "XP8" (pt -10.2 -3.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9001" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "DIN EN 60603 121 A 10139 X" (textStyleRef "(Default)") )
+ (attr "Ýëåìåíò" "Âèëêà DIN EN 60603 121 A 10139 X" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "CONEC" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "DIN3X32_1") (refDesRef "XP7") (pt 644.0 456.8) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "DIN3X32P" (pt 5.08 -93.98) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Value" "DIN EN 60603 121 A 10139 X" (pt 5.08 -86.36) (justify UpperCenter) (textStyleRef "(Default)") )
+ (attr "RefDes" "XP7" (pt -9.7 -7.1) (isVisible True) (justify LowerCenter) (textStyleRef "H16 [1]") )
+ (attr "ÃÎÑÒ; ÒÓ" "ISO 9001" (textStyleRef "(Default)") )
+ (attr "Íàèìåíîâàíèå " "DIN EN 60603 121 A 10139 X" (textStyleRef "(Default)") )
+ (attr "Ýëåìåíò" "Âèëêà DIN EN 60603 121 A 10139 X" (textStyleRef "H16 [1]") )
+ (attr "Èçãîòîâèòåëü " "CONEC" (textStyleRef "H16 [1]") )
+ )
+ )
+ (pattern (patternRef "USB_1") (refDesRef "X1") (pt 381.74 285.08) (rotation 270.0) (patternGraphicsNameRef "Primary")
+ (patternGraphicsRef
+ (patternGraphicsNameRef "Primary")
+ (attr "Type" "USB" (rotation 270.0) (textStyleRef "H16 [1]") )
+ (attr "Value" "URB-1001" (textStyleRef "(Default)") )
+ (attr "RefDes" "X1" (pt 8.96 1.52) (isVisible True) (justify Center) (textStyleRef "H16 [1]") )
+ (attr "Íàèìåíîâàíèå " "USB B Connector URB-1001" (rotation 270.0) (textStyleRef "(Default)") )
+ (attr "Èçãîòîâèòåëü " "Newnex" (rotation 270.0) (textStyleRef "(Default)") )
+ )
+ )
+ (fromTo (netNameRef "+3,3V2")(pt 625.88 318.66) (pt 625.9 318.64) )
+ (fromTo (netNameRef "+3,3V2")(pt 625.72 308.9) (pt 625.74 308.92) )
+ )
+ (layerContents (layerNumRef 1)
+ (line (pt 369.5 280.0) (pt 366.5 280.0) (width 0.2) )
+ (line (pt 383.14 262.34) (pt 386.86 266.06) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 409.38 326.8) (pt 411.0 326.8) (width 0.3) (netNameRef "NET00009") )
+ (line (pt 415.2 311.2) (pt 415.1 311.3) (width 1.0) (netNameRef "GND") )
+ (line (pt 417.515 311.2) (pt 415.2 311.2) (width 1.0) (netNameRef "GND") )
+ (line (pt 412.79431 324.43431) (pt 412.89431 324.43431) (width 0.3) (netNameRef "NET00008") )
+ (line (pt 414.02569 325.56569) (pt 414.0257 325.5657) (width 0.0) (netNameRef "NET00147") )
+ (line (pt 412.91431 333.88569) (pt 412.91431 333.76569) (width 0.3) (netNameRef "NET00140") )
+ (line (pt 416.3 327.84) (pt 416.3 329.4) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 413.92 328.12) (pt 415.02 328.12) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 415.02 328.12) (pt 416.3 329.4) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 413.86 330.22) (pt 415.48 330.22) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 415.48 330.22) (pt 416.3 329.4) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 416.3 330.38002) (pt 416.3 329.4) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 414.04569 332.63431) (pt 414.0457 332.63432) (width 0.0) (netNameRef "NET00147") )
+ (line (pt 414.0457 332.63432) (pt 416.3 330.38002) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 417.94 329.44) (pt 417.9 329.4) (width 0.3) (netNameRef "NET00544") )
+ (line (pt 424.16 329.44) (pt 425.0 328.6) (width 0.3) (netNameRef "NET00544") )
+ (line (pt 422.45 329.44) (pt 424.16 329.44) (width 0.3) (netNameRef "NET00544") )
+ (line (pt 423.83 328.17) (pt 423.9 328.1) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 422.45 328.17) (pt 423.83 328.17) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 427.67 328.17) (pt 428.8 328.17) (width 0.3) (netNameRef "NET00542") )
+ (line (pt 427.24 329.44) (pt 427.2 329.4) (width 0.5) (netNameRef "NET00541") )
+ (line (pt 428.8 329.44) (pt 427.24 329.44) (width 0.5) (netNameRef "NET00541") )
+ (line (pt 432.37 328.17) (pt 432.63431 328.43431) (width 0.3) (netNameRef "NET00542") )
+ (line (pt 428.8 328.17) (pt 432.37 328.17) (width 0.3) (netNameRef "NET00542") )
+ (line (pt 430.29 330.71) (pt 430.3 330.7) (width 0.5) (netNameRef "GND") )
+ (line (pt 428.8 330.71) (pt 430.29 330.71) (width 0.5) (netNameRef "GND") )
+ (line (pt 439.85 300.925) (pt 439.85 298.63) (width 1.0) (netNameRef "+5V") )
+ (line (pt 439.85 298.63) (pt 440.32 298.16) (width 1.0) (netNameRef "+5V") )
+ (line (pt 435.35 300.925) (pt 435.35 299.67) (width 1.0) (netNameRef "GND") )
+ (line (pt 441.56711 327.01289) (pt 441.56712 327.0129) (width 0.0) (netNameRef "NET00019") )
+ (line (pt 436.38 330.32) (pt 436.34 330.28) (width 0.3) (netNameRef "NET00022") )
+ (line (pt 436.38 330.32) (pt 434.52 330.32) (width 0.3) (netNameRef "NET00022") )
+ (line (pt 440.9 330.32) (pt 438.38 330.32) (width 0.3) (netNameRef "NET00004") )
+ (line (pt 441.42 329.8) (pt 440.9 330.32) (width 0.3) (netNameRef "NET00004") )
+ (line (pt 441.02578 329.3) (pt 440.15289 328.42711) (width 0.3) (netNameRef "NET00007") )
+ (line (pt 448.22 311.74) (pt 446.26 311.74) (width 0.8) (netNameRef "NET00158") )
+ (line (pt 446.26 311.74) (pt 446.2 311.8) (width 1.0) (netNameRef "NET00158") )
+ (line (pt 448.02 315.84) (pt 448.02 316.44) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 448.02 316.44) (pt 448.82 317.24) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 448.02 313.84) (pt 446.16 313.84) (width 1.0) (netNameRef "NET00158") )
+ (line (pt 446.16 313.84) (pt 446.1 313.9) (width 1.0) (netNameRef "NET00158") )
+ (line (pt 444.23 327.47) (pt 443.78 327.02) (width 0.3) (netNameRef "NET00028") )
+ (line (pt 448.3 322.16) (pt 448.3 324.1) (width 0.3) (netNameRef "NET00034") )
+ (line (pt 448.3 324.1) (pt 448.52 324.32) (width 0.3) (netNameRef "NET00034") )
+ (line (pt 445.78 325.38) (pt 445.23 325.93) (width 0.3) (netNameRef "NET00033") )
+ (line (pt 445.23 325.93) (pt 444.9 325.6) (width 0.3) (netNameRef "NET00033") )
+ (line (pt 444.9 325.6) (pt 443.8 325.6) (width 0.3) (netNameRef "NET00033") )
+ (line (pt 448.52 324.48) (pt 448.52 324.32) (width 0.3) (netNameRef "NET00034") )
+ (line (pt 445.73 327.27) (pt 448.52 324.48) (width 0.3) (netNameRef "NET00034") )
+ (line (pt 445.78 322.96) (pt 444.84 322.02) (width 0.4) (netNameRef "GND") )
+ (line (pt 443.8 323.06) (pt 444.84 322.02) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.78 323.38) (pt 445.78 322.96) (width 0.4) (netNameRef "GND") )
+ (line (pt 443.8 324.0) (pt 443.8 323.06) (width 0.5) (netNameRef "GND") )
+ (line (pt 442.38 330.8) (pt 442.36 330.82) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 443.78 333.8) (pt 444.16 333.42) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 444.66 334.78) (pt 444.66 333.92) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 444.66 333.92) (pt 444.16 333.42) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 444.23 333.35) (pt 444.16 333.42) (width 0.3) (netNameRef "NET00027") )
+ (line (pt 445.08 332.88) (pt 445.42 332.88) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 445.73 331.95) (pt 445.73 332.57) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 445.73 332.57) (pt 445.42 332.88) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 444.23 331.95) (pt 444.23 333.35) (width 0.3) (netNameRef "NET00027") )
+ (line (pt 444.73 331.95) (pt 444.73 332.53) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 444.73 332.53) (pt 445.08 332.88) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 448.68 329.3) (pt 448.76 329.22) (width 0.3) (netNameRef "NET00026") )
+ (line (pt 447.38 329.3) (pt 448.68 329.3) (width 0.3) (netNameRef "NET00026") )
+ (line (pt 447.38 331.3) (pt 448.84 331.3) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 448.84 331.3) (pt 448.98 331.44) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 446.73 331.95) (pt 447.12 332.34) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 447.12 332.34) (pt 448.12 332.34) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 443.58 330.8) (pt 442.38 330.8) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 442.6 333.8) (pt 443.78 333.8) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 446.23 331.95) (pt 446.23 333.43) (width 0.3) (netNameRef "NET00014") )
+ (line (pt 446.23 333.43) (pt 447.7 334.9) (width 0.3) (netNameRef "NET00014") )
+ (line (pt 443.58 328.8) (pt 442.94 328.8) (width 0.3) (netNameRef "NET00019") )
+ (line (pt 442.94 328.8) (pt 442.46 328.32) (width 0.3) (netNameRef "NET00019") )
+ (line (pt 445.47478 330.05522) (pt 445.9 330.52) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.9 330.52) (pt 445.47945 330.05055) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.47 330.05) (pt 445.47478 330.05522) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.47478 330.05522) (pt 445.23 330.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.47945 330.05055) (pt 445.47478 330.05522) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.48 330.05) (pt 445.47945 330.05055) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.47945 330.05055) (pt 445.47896 330.05) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.47896 330.05) (pt 445.47 330.05) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.23 330.3) (pt 445.23 331.95) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.23 330.3) (pt 443.58 330.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 444.23 331.3) (pt 445.23 330.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.48 330.05) (pt 445.47896 330.05) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.73 329.8) (pt 445.48 330.05) (width 0.4) (netNameRef "GND") )
+ (line (pt 445.47 330.04) (pt 445.48 330.05) (width 0.5) (netNameRef "GND") )
+ (line (pt 445.47896 330.05) (pt 445.47 330.04) (width 0.5) (netNameRef "GND") )
+ (line (pt 443.58 331.3) (pt 444.23 331.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.73 329.8) (pt 446.23 329.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 447.38 329.8) (pt 445.73 329.8) (width 0.3) (netNameRef "GND") )
+ (line (pt 445.47 330.04) (pt 444.73 329.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 446.23 329.3) (pt 446.23 328.15) (width 0.3) (netNameRef "GND") )
+ (line (pt 444.73 329.3) (pt 444.73 328.15) (width 0.3) (netNameRef "GND") )
+ (line (pt 444.66 338.82) (pt 444.52 338.96) (width 0.4) (netNameRef "NET00029") )
+ (line (pt 444.66 336.78) (pt 444.66 338.82) (width 0.4) (netNameRef "NET00029") )
+ (line (pt 447.7 336.5) (pt 447.7 338.9) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 448.3 342.0) (pt 448.3 339.5) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 448.3 339.5) (pt 447.7 338.9) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 446.1 341.9) (pt 448.2 341.9) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 448.2 341.9) (pt 448.3 342.0) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 444.5 341.9) (pt 443.2 341.9) (width 0.3) (netNameRef "+3,3V") )
+ (line (pt 442.52 337.46) (pt 442.6 337.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 442.6 335.8) (pt 442.6 337.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 442.52 338.96) (pt 442.52 337.46) (width 0.4) (netNameRef "GND") )
+ (line (pt 448.3 344.0) (pt 448.3 345.6) (width 0.3) (netNameRef "GND") )
+ (line (pt 444.5 343.7) (pt 443.2 343.7) (width 0.3) (netNameRef "GND") )
+ (line (pt 450.32 315.84) (pt 450.22 315.84) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 450.32 313.84) (pt 451.32 312.84) (width 0.5) (netNameRef "GND") )
+ (line (pt 451.38 325.64) (pt 451.4 325.5) (width 0.3) (netNameRef "GND") )
+ (line (pt 451.28 325.48) (pt 451.4 325.5) (width 0.3) (netNameRef "GND") )
+ (line (pt 450.3 320.8) (pt 450.32 320.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 451.38 326.9) (pt 451.38 325.64) (width 0.3) (netNameRef "GND") )
+ (line (pt 450.12 324.32) (pt 451.28 325.48) (width 0.3) (netNameRef "GND") )
+ (line (pt 450.3 322.16) (pt 450.3 320.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 450.08 330.8) (pt 450.34 331.06) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 451.94 329.42) (pt 453.74 329.42) (width 0.5) (netNameRef "NET00040") )
+ (line (pt 454.84 338.0) (pt 454.84 341.06) (width 0.5) (netNameRef "NET00013") )
+ (line (pt 454.84 341.06) (pt 454.9 341.12) (width 0.5) (netNameRef "NET00013") )
+ (line (pt 479.49 354.75) (pt 478.28 355.96) (width 1.0) (netNameRef "GND") )
+ (line (pt 480.95 294.825) (pt 480.95 293.71) (width 1.0) (netNameRef "GND") )
+ (line (pt 485.45 294.825) (pt 485.45 292.23) (width 1.0) (netNameRef "+5V") )
+ (line (pt 485.45 292.23) (pt 485.52 292.16) (width 1.0) (netNameRef "+5V") )
+ (line (pt 485.66 310.6) (pt 485.66 311.36) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 487.44 316.5) (pt 487.4 316.46) (width 0.3) (netNameRef "PVDD") )
+ (line (pt 485.96 317.5) (pt 485.94 317.48) (width 0.3) (netNameRef "RREF") )
+ (line (pt 484.33999 319.85999) (pt 484.33999 319.36) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 485.94001 319.36) (pt 485.94002 319.36) (width 0.3) (netNameRef "RSDM") )
+ (line (pt 485.94002 319.36) (pt 486.08002 319.5) (width 0.3) (netNameRef "RSDM") )
+ (line (pt 484.33999 319.36) (pt 484.34 319.36) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 484.34 319.36) (pt 483.02 319.36) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 484.34 317.48) (pt 483.14 317.48) (width 0.5) (netNameRef "GND") )
+ (line (pt 486.94 326.16) (pt 484.92 326.16) (width 0.3) (netNameRef "VBUS") )
+ (line (pt 484.92 326.16) (pt 484.9 326.18) (width 0.3) (netNameRef "VBUS") )
+ (line (pt 482.9 326.18) (pt 481.32 326.18) (width 0.3) (netNameRef "NET00256") )
+ (line (pt 486.04 323.02) (pt 485.94 323.12) (width 0.2) (netNameRef "RPU") )
+ (line (pt 486.06 321.5) (pt 485.94 321.38) (width 0.3) (netNameRef "RSDP") )
+ (line (pt 484.34 321.38) (pt 484.34 323.12) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 484.34 320.88) (pt 484.34 321.38) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 484.58 320.64) (pt 484.34 320.88) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 487.12 321.0) (pt 486.76 320.64) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 486.76 320.64) (pt 484.58 320.64) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 484.34 321.38) (pt 483.06 321.38) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 485.98 328.72) (pt 485.8 328.72) (width 0.4) (netNameRef "GND") )
+ (line (pt 485.64 377.94) (pt 487.06 379.36) (width 0.5) (netNameRef "+5V") )
+ (line (pt 484.26 406.94832) (pt 484.26 407.59856) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 484.26 407.59856) (pt 484.26 408.2488) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 484.26 408.2488) (pt 484.26 408.89904) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 484.26 408.89904) (pt 487.27904 408.89904) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 484.26 410.84976) (pt 482.84976 410.84976) (width 0.3) (netNameRef "NET00003") )
+ (line (pt 482.84976 410.84976) (pt 482.82 410.82) (width 0.3) (netNameRef "NET00003") )
+ (line (pt 482.74784 405.64784) (pt 482.74 405.64) (width 0.3) (netNameRef "GND") )
+ (line (pt 484.26 405.64784) (pt 482.74784 405.64784) (width 0.3) (netNameRef "GND") )
+ (line (pt 489.0 316.0) (pt 490.68 316.0) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.68 316.0) (pt 490.7 316.02) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 492.75 314.87) (pt 492.75 313.75) (width 0.127) (netNameRef "D1") )
+ (line (pt 494.28 316.4) (pt 492.75 314.87) (width 0.127) (netNameRef "D1") )
+ (line (pt 494.25 312.95) (pt 494.25 313.75) (width 0.127) (netNameRef "D4") )
+ (line (pt 489.0 318.0) (pt 490.42 318.0) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.42 318.0) (pt 490.7 317.72) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.68 317.0) (pt 489.0 317.0) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.7 316.98) (pt 490.68 317.0) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.7 317.72) (pt 490.7 316.98) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 490.7 316.98) (pt 490.7 316.02) (width 0.3) (netNameRef "AVSS") )
+ (line (pt 489.0 319.0) (pt 490.5 319.0) (width 0.3) (netNameRef "GND") )
+ (line (pt 494.75 315.31) (pt 494.72 315.34) (width 0.3) (netNameRef "GND") )
+ (line (pt 494.75 313.75) (pt 494.75 315.31) (width 0.3) (netNameRef "GND") )
+ (line (pt 488.75 323.5) (pt 490.06 323.5) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 490.06 323.5) (pt 490.5 323.06) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 489.0 322.5) (pt 489.94 322.5) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 489.94 322.5) (pt 490.5 323.06) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 489.0 320.5) (pt 490.44 320.5) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 490.44 320.5) (pt 490.46 320.52) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 493.25 325.75) (pt 493.25 323.89) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 493.25 323.89) (pt 493.4 323.74) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 493.75 325.75) (pt 493.75 324.69) (width 0.2) (netNameRef "~ARE") )
+ (line (pt 493.75 324.69) (pt 493.8 324.64) (width 0.2) (netNameRef "~ARE") )
+ (line (pt 491.25 325.75) (pt 491.25 325.81) (width 0.3) (netNameRef "VBUS") )
+ (line (pt 491.25 325.81) (pt 490.9 326.16) (width 0.3) (netNameRef "VBUS") )
+ (line (pt 489.0 323.0) (pt 488.98 323.02) (width 0.2) (netNameRef "RPU") )
+ (line (pt 487.98 336.38) (pt 491.94 336.38) (width 0.127) (netNameRef "TP25") )
+ (line (pt 490.78 337.88) (pt 493.08 337.88) (width 0.127) (netNameRef "TP24") )
+ (line (pt 490.78 340.28) (pt 494.76 340.28) (width 0.127) (netNameRef "TP22") )
+ (line (pt 491.82 335.58) (pt 490.78 335.58) (width 0.127) (netNameRef "TP26") )
+ (line (pt 494.22 336.82) (pt 494.16 336.76) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 487.98 339.08) (pt 493.92 339.08) (width 0.127) (netNameRef "TP23") )
+ (line (pt 489.64 349.88) (pt 491.28 349.88) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 491.32 352.5) (pt 491.34 352.52) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 489.62 355.1) (pt 491.4 355.1) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 488.1 389.24) (pt 487.96 389.38) (width 0.4) (netNameRef "NET00352") )
+ (line (pt 487.96 389.38) (pt 487.96 394.7) (width 0.4) (netNameRef "NET00352") )
+ (line (pt 491.41264 407.59856) (pt 494.33856 407.59856) (width 0.2) (netNameRef "1S") )
+ (line (pt 494.33856 407.59856) (pt 494.34 407.6) (width 0.2) (netNameRef "1S") )
+ (line (pt 491.41264 406.94832) (pt 493.70832 406.94832) (width 0.2) (netNameRef "2S") )
+ (line (pt 493.70832 406.94832) (pt 493.72 406.96) (width 0.2) (netNameRef "2S") )
+ (line (pt 491.41264 406.29808) (pt 493.12192 406.29808) (width 0.2) (netNameRef "3S") )
+ (line (pt 493.12192 406.29808) (pt 493.14 406.28) (width 0.2) (netNameRef "3S") )
+ (line (pt 491.41264 405.64784) (pt 492.63216 405.64784) (width 0.2) (netNameRef "4S") )
+ (line (pt 492.63216 405.64784) (pt 492.64 405.64) (width 0.2) (netNameRef "4S") )
+ (line (pt 488.57952 410.19952) (pt 491.41264 410.19952) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 492.78976 410.84976) (pt 492.92 410.98) (width 0.3) (netNameRef "GND") )
+ (line (pt 491.41264 410.84976) (pt 492.78976 410.84976) (width 0.3) (netNameRef "GND") )
+ (line (pt 500.78 309.5) (pt 498.25 312.03) (width 0.127) (netNameRef "A1") )
+ (line (pt 498.75 312.31) (pt 501.06 310.0) (width 0.127) (netNameRef "A0") )
+ (line (pt 497.75 311.61) (pt 500.46 308.9) (width 0.127) (netNameRef "A2") )
+ (line (pt 500.74 308.16) (pt 497.25 311.65) (width 0.127) (netNameRef "A3") )
+ (line (pt 500.58 307.7) (pt 496.75 311.53) (width 0.127) (netNameRef "A4") )
+ (line (pt 501.0 316.5) (pt 499.94 316.5) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 499.94 316.5) (pt 499.7 316.74) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 501.02 319.02) (pt 501.0 319.0) (width 0.127) (netNameRef "D9") )
+ (line (pt 502.2 319.5) (pt 502.48 319.78) (width 0.3) (netNameRef "GND") )
+ (line (pt 502.4 316.0) (pt 502.5 315.9) (width 0.3) (netNameRef "GND") )
+ (line (pt 501.0 319.5) (pt 502.2 319.5) (width 0.3) (netNameRef "GND") )
+ (line (pt 501.0 316.0) (pt 502.4 316.0) (width 0.3) (netNameRef "GND") )
+ (line (pt 501.0 320.5) (pt 499.54 320.5) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 499.54 320.5) (pt 499.44 320.4) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 501.0 323.5) (pt 502.3 323.5) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 502.3 323.5) (pt 502.5 323.7) (width 0.3) (netNameRef "+2,5V") )
+ (line (pt 495.75 325.75) (pt 495.75 324.33) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 495.75 324.33) (pt 495.7 324.28) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 501.0 322.0) (pt 501.02 322.02) (width 0.127) (netNameRef "D12") )
+ (line (pt 496.25 326.69) (pt 495.74 327.2) (width 0.3) (netNameRef "GND") )
+ (line (pt 496.25 325.75) (pt 496.25 326.69) (width 0.3) (netNameRef "GND") )
+ (line (pt 496.98 335.64) (pt 496.98 336.82) (width 0.127) (netNameRef "INT_USB") )
+ (line (pt 498.02 354.42) (pt 496.78 354.42) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 496.78 354.42) (pt 496.76 354.44) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 499.6 356.3) (pt 500.62 356.3) (width 0.2) (netNameRef "RU") )
+ (line (pt 499.6 356.3) (pt 499.6 354.44) (width 0.2) (netNameRef "RU") )
+ (line (pt 499.6 354.44) (pt 499.62 354.42) (width 0.2) (netNameRef "RU") )
+ (line (pt 501.805 356.345) (pt 501.68 356.22) (width 0.3) (netNameRef "+5V") )
+ (line (pt 500.62 356.3) (pt 501.315 356.995) (width 0.2) (netNameRef "RU") )
+ (line (pt 496.7 356.3) (pt 496.68 356.28) (width 0.4) (netNameRef "GND") )
+ (line (pt 498.0 356.3) (pt 496.7 356.3) (width 0.4) (netNameRef "GND") )
+ (line (pt 501.105 358.945) (pt 501.1 358.94) (width 0.3) (netNameRef "USB-") )
+ (line (pt 495.72 389.24) (pt 495.58 389.38) (width 0.4) (netNameRef "NET00353") )
+ (line (pt 505.7 317.1) (pt 505.3 317.5) (width 0.127) (netNameRef "D6") )
+ (line (pt 505.8 317.34) (pt 505.14 318.0) (width 0.127) (netNameRef "D7") )
+ (line (pt 509.16 318.5) (pt 510.06 317.6) (width 0.127) (netNameRef "D8") )
+ (line (pt 503.5 319.2) (pt 503.32 319.02) (width 0.127) (netNameRef "D9") )
+ (line (pt 503.62 316.86) (pt 503.48 317.0) (width 0.127) (netNameRef "D5") )
+ (line (pt 509.7 324.82) (pt 507.88 323.0) (width 0.127) (netNameRef "D14") )
+ (line (pt 509.47 325.75) (pt 509.96 326.24) (width 0.2) (netNameRef "D15") )
+ (line (pt 503.195 354.395) (pt 505.975 354.395) (width 0.127) (netNameRef "RXF") )
+ (line (pt 505.975 354.395) (pt 505.98 354.4) (width 0.127) (netNameRef "RXF") )
+ (line (pt 503.195 355.045) (pt 505.085 355.045) (width 0.127) (netNameRef "TXE") )
+ (line (pt 503.195 356.995) (pt 503.31 356.88) (width 0.127) (netNameRef "RU") )
+ (line (pt 503.31 356.88) (pt 505.42 356.88) (width 0.127) (netNameRef "RU") )
+ (line (pt 504.325 352.445) (pt 504.74 352.86) (width 0.3) (netNameRef "GND") )
+ (line (pt 504.505 353.095) (pt 504.74 352.86) (width 0.3) (netNameRef "GND") )
+ (line (pt 504.835 357.645) (pt 504.86 357.62) (width 0.3) (netNameRef "GND") )
+ (line (pt 504.475 355.695) (pt 504.8 356.02) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.195 352.445) (pt 504.325 352.445) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.195 353.095) (pt 504.505 353.095) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.195 357.645) (pt 504.835 357.645) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.195 355.695) (pt 504.475 355.695) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.195 358.945) (pt 503.695 358.945) (width 0.3) (netNameRef "USB-") )
+ (line (pt 503.6 358.295) (pt 503.195 358.295) (width 0.3) (netNameRef "NET00002") )
+ (line (pt 503.695 358.295) (pt 503.6 358.295) (width 0.2) (netNameRef "NET00002") )
+ (line (pt 503.695 358.295) (pt 503.195 358.295) (width 0.2) (netNameRef "NET00002") )
+ (line (pt 503.195 359.595) (pt 503.19 359.6) (width 0.15) (netNameRef "USB+") )
+ (line (pt 508.0 370.48) (pt 508.02 370.5) (width 0.3) (netNameRef "GND") )
+ (line (pt 508.0 370.48) (pt 508.02 370.5) (width 0.5) (netNameRef "GND") )
+ (line (pt 508.0 368.54) (pt 508.0 370.48) (width 0.3) (netNameRef "GND") )
+ (line (pt 508.0 368.52) (pt 508.0 370.48) (width 0.5) (netNameRef "GND") )
+ (line (pt 508.0 368.54) (pt 508.0 368.52) (width 0.3) (netNameRef "GND") )
+ (line (pt 508.0 375.06) (pt 509.5 376.56) (width 0.5) (netNameRef "NET00308") )
+ (line (pt 507.43 403.39) (pt 507.42 403.38) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 504.856 404.42) (pt 503.22 404.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 504.88 404.396) (pt 504.856 404.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 513.3 318.38) (pt 514.18 318.38) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 514.18 318.38) (pt 514.22 318.4) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 510.62 324.02) (pt 516.22 324.02) (width 0.127) (netNameRef "D13") )
+ (line (pt 517.48 321.0) (pt 517.68 321.2) (width 0.127) (netNameRef "D10") )
+ (line (pt 514.48 321.5) (pt 514.58 321.6) (width 0.127) (netNameRef "D11") )
+ (line (pt 515.44 322.02) (pt 515.8 322.38) (width 0.127) (netNameRef "D12") )
+ (line (pt 514.42 326.24) (pt 514.58 326.4) (width 0.2) (netNameRef "D15") )
+ (line (pt 514.6 321.62) (pt 514.58 321.6) (width 0.127) (netNameRef "D11") )
+ (line (pt 513.64 352.22) (pt 513.415 352.445) (width 0.127) (netNameRef "DU2") )
+ (line (pt 515.355 353.745) (pt 516.4 352.7) (width 0.127) (netNameRef "DU1") )
+ (line (pt 516.6 353.22) (pt 515.425 354.395) (width 0.127) (netNameRef "DU7") )
+ (line (pt 516.84 353.7) (pt 514.195 356.345) (width 0.127) (netNameRef "DU5") )
+ (line (pt 516.76 354.22) (pt 513.985 356.995) (width 0.127) (netNameRef "DU6") )
+ (line (pt 516.92 354.72) (pt 513.995 357.645) (width 0.127) (netNameRef "DU3") )
+ (line (pt 510.995 353.095) (pt 510.98 353.08) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 514.195 356.345) (pt 510.995 356.345) (width 0.127) (netNameRef "DU5") )
+ (line (pt 513.985 356.995) (pt 510.995 356.995) (width 0.127) (netNameRef "DU6") )
+ (line (pt 513.995 357.645) (pt 510.995 357.645) (width 0.127) (netNameRef "DU3") )
+ (line (pt 515.425 354.395) (pt 510.995 354.395) (width 0.127) (netNameRef "DU7") )
+ (line (pt 513.415 352.445) (pt 510.995 352.445) (width 0.127) (netNameRef "DU2") )
+ (line (pt 511.22 351.12) (pt 510.92 351.12) (width 0.127) (netNameRef "DU0") )
+ (line (pt 510.92 351.12) (pt 510.9 351.14) (width 0.127) (netNameRef "DU0") )
+ (line (pt 510.9 351.14) (pt 510.76 351.14) (width 0.127) (netNameRef "DU0") )
+ (line (pt 510.8 351.1) (pt 511.16 351.1) (width 0.127) (netNameRef "DU0") )
+ (line (pt 510.76 351.14) (pt 510.8 351.1) (width 0.127) (netNameRef "DU0") )
+ (line (pt 510.995 355.045) (pt 510.99 355.04) (width 0.3) (netNameRef "GND") )
+ (line (pt 514.085 358.295) (pt 510.995 358.295) (width 0.127) (netNameRef "PWR") )
+ (line (pt 514.375 358.945) (pt 510.995 358.945) (width 0.127) (netNameRef "RD_U") )
+ (line (pt 514.465 359.595) (pt 510.995 359.595) (width 0.127) (netNameRef "WR_U") )
+ (line (pt 510.68 360.64) (pt 517.28 360.64) (width 0.127) (netNameRef "TXE") )
+ (line (pt 517.66 361.84) (pt 515.46569 364.03431) (width 0.3) (netNameRef "60MHZ") )
+ (line (pt 514.33431 365.16569) (pt 514.33432 365.1657) (width 0.0) (netNameRef "NET00268") )
+ (line (pt 512.58 368.24) (pt 512.3 368.52) (width 0.3) (netNameRef "NET00268") )
+ (line (pt 512.3 367.20002) (pt 512.3 368.52) (width 0.3) (netNameRef "NET00268") )
+ (line (pt 514.16 376.62) (pt 512.66 376.62) (width 0.5) (netNameRef "+5V") )
+ (line (pt 512.66 376.62) (pt 512.6 376.56) (width 0.5) (netNameRef "+5V") )
+ (line (pt 511.1 376.56) (pt 512.6 376.56) (width 0.5) (netNameRef "+5V") )
+ (line (pt 512.572 376.532) (pt 512.6 376.56) (width 0.5) (netNameRef "+5V") )
+ (line (pt 512.6 373.92) (pt 512.6 376.56) (width 0.5) (netNameRef "+5V") )
+ (line (pt 517.18 376.62) (pt 517.2 376.6) (width 0.4) (netNameRef "GND") )
+ (line (pt 515.76 376.62) (pt 517.18 376.62) (width 0.4) (netNameRef "GND") )
+ (line (pt 517.48 383.2) (pt 517.48 385.48) (width 0.2) (netNameRef "NET00215") )
+ (line (pt 517.48 385.48) (pt 517.46 385.5) (width 0.2) (netNameRef "NET00215") )
+ (line (pt 513.86 397.04) (pt 512.59 397.04) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 512.59 397.04) (pt 511.32 397.04) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 512.59 397.04) (pt 512.59 398.65) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 512.59 398.65) (pt 512.6 398.66) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 511.32 403.39) (pt 512.59 403.39) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 512.59 403.39) (pt 513.86 403.39) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 515.1 397.01) (pt 515.13 397.04) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 513.86 403.39) (pt 515.13 403.39) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 512.59 406.13) (pt 512.68 406.22) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 512.66 409.0) (pt 512.4 409.26) (width 0.4) (netNameRef "NET00266") )
+ (line (pt 514.7 408.98) (pt 514.68 409.0) (width 0.4) (netNameRef "NET00266") )
+ (line (pt 514.68 406.22) (pt 514.68 409.0) (width 0.4) (netNameRef "NET00266") )
+ (line (pt 514.68 409.0) (pt 512.66 409.0) (width 0.4) (netNameRef "NET00266") )
+ (line (pt 514.7 408.98) (pt 514.68 409.0) (width 0.4) (netNameRef "NET00266") )
+ (line (pt 512.4 412.74) (pt 512.38 412.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 520.744 290.656) (pt 520.74 290.66) (width 0.4) (netNameRef "GND") )
+ (line (pt 522.28 290.656) (pt 520.744 290.656) (width 0.4) (netNameRef "GND") )
+ (line (pt 519.94 308.16) (pt 520.0 308.1) (width 0.127) (netNameRef "A3") )
+ (line (pt 521.8 309.7) (pt 521.6 309.5) (width 0.127) (netNameRef "A1") )
+ (line (pt 521.32 310.4) (pt 522.3 310.4) (width 0.127) (netNameRef "A0") )
+ (line (pt 520.92 310.0) (pt 521.32 310.4) (width 0.127) (netNameRef "A0") )
+ (line (pt 524.14 306.38) (pt 523.32 306.38) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.32 306.38) (pt 523.3 306.4) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 522.86 311.0) (pt 522.86 310.16) (width 0.127) (netNameRef "D4") )
+ (line (pt 522.86 310.16) (pt 519.98 307.28) (width 0.127) (netNameRef "D4") )
+ (line (pt 521.08 318.2) (pt 520.66 318.62) (width 0.127) (netNameRef "D6") )
+ (line (pt 521.9 316.3) (pt 520.0 318.2) (width 0.127) (netNameRef "D5") )
+ (line (pt 521.08 318.2) (pt 522.0 317.28) (width 0.127) (netNameRef "D6") )
+ (line (pt 521.12 319.84) (pt 518.86 319.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 522.1 318.22) (pt 521.36 318.96) (width 0.127) (netNameRef "D7") )
+ (line (pt 520.66 318.62) (pt 518.78 318.62) (width 0.127) (netNameRef "D6") )
+ (line (pt 521.36 318.96) (pt 518.26 318.96) (width 0.127) (netNameRef "D7") )
+ (line (pt 520.0 318.2) (pt 518.66 316.86) (width 0.127) (netNameRef "D5") )
+ (line (pt 518.54 319.84) (pt 518.86 319.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 522.0 317.28) (pt 524.32 317.28) (width 0.127) (netNameRef "D6") )
+ (line (pt 524.32 317.28) (pt 524.4 317.28) (width 0.127) (netNameRef "D6") )
+ (line (pt 522.1 318.22) (pt 522.78 317.54) (width 0.127) (netNameRef "D7") )
+ (line (pt 524.32 317.28) (pt 524.6 317.28) (width 0.127) (netNameRef "D6") )
+ (line (pt 522.78 317.54) (pt 524.7 317.54) (width 0.127) (netNameRef "D7") )
+ (line (pt 524.7 317.54) (pt 524.94 317.3) (width 0.127) (netNameRef "D7") )
+ (line (pt 524.6 317.28) (pt 525.08 316.8) (width 0.127) (netNameRef "D6") )
+ (line (pt 523.16 317.8) (pt 521.12 319.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 522.2 327.24) (pt 523.16 327.24) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.16 327.24) (pt 523.2 327.2) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 524.64 323.4) (pt 521.64 326.4) (width 0.127) (netNameRef "D15") )
+ (line (pt 524.64 323.04) (pt 522.86 324.82) (width 0.127) (netNameRef "D14") )
+ (line (pt 520.8 320.52) (pt 518.32 320.52) (width 0.127) (netNameRef "D9") )
+ (line (pt 522.1 320.3) (pt 520.02 322.38) (width 0.127) (netNameRef "D12") )
+ (line (pt 522.48 321.32) (pt 523.0 320.8) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.0 320.8) (pt 523.3 320.8) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.02 322.92) (pt 523.3 323.2) (width 0.3) (netNameRef "GND") )
+ (line (pt 520.6 327.24) (pt 520.54 327.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 522.48 322.92) (pt 523.02 322.92) (width 0.3) (netNameRef "GND") )
+ (line (pt 523.22 342.7) (pt 523.22 342.66) (width 0.2) (netNameRef "A17") )
+ (line (pt 524.18 342.74) (pt 524.18 342.66) (width 0.2) (netNameRef "D3") )
+ (line (pt 525.2 342.72) (pt 525.2 342.68) (width 0.2) (netNameRef "D0") )
+ (line (pt 519.7 348.22) (pt 519.2 347.72) (width 0.127) (netNameRef "TP26") )
+ (line (pt 519.22 348.74) (pt 519.7 349.22) (width 0.127) (netNameRef "TP24") )
+ (line (pt 519.2 349.72) (pt 519.7 350.22) (width 0.127) (netNameRef "TP22") )
+ (line (pt 519.2 345.72) (pt 519.7 346.22) (width 0.127) (netNameRef "~RSUSB") )
+ (line (pt 519.2 344.72) (pt 519.7 345.22) (width 0.127) (netNameRef "ALE") )
+ (line (pt 519.2 346.72) (pt 519.7 347.22) (width 0.127) (netNameRef "DREQ") )
+ (line (pt 523.7 348.22) (pt 523.26 347.78) (width 0.12) (netNameRef "MAX-TDI") )
+ (line (pt 522.7 350.26) (pt 522.7 350.22) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 522.7 350.22) (pt 522.7 350.24) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 523.7 350.22) (pt 524.14 349.78) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 524.7 350.22) (pt 524.26 349.78) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 524.26 349.78) (pt 524.14 349.78) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 520.7 345.22) (pt 520.24 344.76) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 521.7 346.22) (pt 521.26 345.78) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 521.26 345.78) (pt 521.24 345.78) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 522.7 347.22) (pt 522.26 346.78) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 522.26 346.78) (pt 522.26 346.76) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 521.7 347.22) (pt 521.24 346.76) (width 0.2) (netNameRef "D6") )
+ (line (pt 520.7 347.22) (pt 520.24 346.76) (width 0.2) (netNameRef "D5") )
+ (line (pt 520.24 346.76) (pt 520.22 346.76) (width 0.2) (netNameRef "D5") )
+ (line (pt 521.7 343.22) (pt 521.7 343.16) (width 0.2) (netNameRef "D7") )
+ (line (pt 522.7 344.22) (pt 522.7 344.18) (width 0.2) (netNameRef "D4") )
+ (line (pt 522.7 344.18) (pt 523.2 343.68) (width 0.2) (netNameRef "D4") )
+ (line (pt 523.7 344.22) (pt 524.2 343.72) (width 0.2) (netNameRef "D2") )
+ (line (pt 524.7 344.22) (pt 525.22 343.7) (width 0.2) (netNameRef "D1") )
+ (line (pt 524.74 349.22) (pt 525.22 349.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 518.7 343.22) (pt 519.24 343.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 519.7 344.22) (pt 519.24 343.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 524.7 349.22) (pt 524.74 349.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 523.7 357.22) (pt 523.22 357.7) (width 0.127) (netNameRef "TP19") )
+ (line (pt 522.7 357.22) (pt 522.22 357.7) (width 0.127) (netNameRef "TP18") )
+ (line (pt 520.22 357.7) (pt 520.7 357.22) (width 0.127) (netNameRef "RU") )
+ (line (pt 519.7 355.22) (pt 519.22 355.7) (width 0.127) (netNameRef "RD_U") )
+ (line (pt 519.7 354.22) (pt 519.2 354.72) (width 0.127) (netNameRef "DU3") )
+ (line (pt 519.7 353.22) (pt 519.22 353.7) (width 0.127) (netNameRef "DU5") )
+ (line (pt 519.22 352.7) (pt 519.7 352.22) (width 0.127) (netNameRef "DU1") )
+ (line (pt 519.7 356.22) (pt 519.22 356.7) (width 0.127) (netNameRef "WR_U") )
+ (line (pt 519.125 351.795) (pt 519.7 351.22) (width 0.127) (netNameRef "DU4") )
+ (line (pt 522.7 355.22) (pt 522.24 354.76) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 522.7 354.22) (pt 522.22 353.74) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 523.7 355.22) (pt 523.18 355.74) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 523.7 356.22) (pt 523.24 356.68) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 523.24 356.68) (pt 523.22 356.68) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 524.7 356.22) (pt 524.7 356.24) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 524.7 356.24) (pt 525.18 356.72) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 518.6 351.12) (pt 518.7 351.22) (width 0.127) (netNameRef "DU0") )
+ (line (pt 522.7 353.22) (pt 522.22 352.74) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 522.7 352.22) (pt 522.2 351.72) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 524.7 357.22) (pt 524.22 357.7) (width 0.127) (netNameRef "TP20") )
+ (line (pt 520.7 352.22) (pt 520.22 351.74) (width 0.2) (netNameRef "D9") )
+ (line (pt 520.22 351.74) (pt 520.22 351.72) (width 0.2) (netNameRef "D9") )
+ (line (pt 521.7 352.22) (pt 521.2 351.72) (width 0.2) (netNameRef "D8") )
+ (line (pt 521.2 351.72) (pt 521.18 351.72) (width 0.2) (netNameRef "D8") )
+ (line (pt 521.7 353.22) (pt 521.22 352.74) (width 0.2) (netNameRef "D10") )
+ (line (pt 521.22 352.74) (pt 521.18 352.74) (width 0.2) (netNameRef "D10") )
+ (line (pt 520.7 353.22) (pt 520.2 352.72) (width 0.2) (netNameRef "D14") )
+ (line (pt 520.2 352.72) (pt 520.18 352.72) (width 0.2) (netNameRef "D14") )
+ (line (pt 520.7 354.22) (pt 520.22 353.74) (width 0.2) (netNameRef "D12") )
+ (line (pt 521.7 354.22) (pt 521.22 353.74) (width 0.2) (netNameRef "D13") )
+ (line (pt 521.7 355.22) (pt 521.68 355.22) (width 0.2) (netNameRef "D15") )
+ (line (pt 521.68 355.22) (pt 521.24 354.78) (width 0.2) (netNameRef "D15") )
+ (line (pt 520.7 355.22) (pt 520.66 355.22) (width 0.2) (netNameRef "D11") )
+ (line (pt 520.66 355.22) (pt 520.2 354.76) (width 0.2) (netNameRef "D11") )
+ (line (pt 520.7 356.22) (pt 520.22 355.74) (width 0.2) (netNameRef "30MHZ") )
+ (line (pt 521.7 356.22) (pt 521.24 355.76) (width 0.2) (netNameRef "~DMA_WR") )
+ (line (pt 521.24 355.76) (pt 521.24 355.74) (width 0.2) (netNameRef "~DMA_WR") )
+ (line (pt 524.7 355.22) (pt 525.18 355.7) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 525.18 355.7) (pt 525.2 355.7) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 519.7 357.22) (pt 519.2 357.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 525.18 351.74) (pt 525.18 351.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 524.7 351.22) (pt 525.18 351.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 524.7 352.22) (pt 525.18 351.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 523.7 358.22) (pt 523.7 361.64) (width 0.127) (netNameRef "TP16") )
+ (line (pt 522.7 358.22) (pt 522.7 360.14) (width 0.127) (netNameRef "TP15") )
+ (line (pt 523.7 361.64) (pt 520.58 364.76) (width 0.127) (netNameRef "TP16") )
+ (line (pt 523.22 361.12) (pt 518.87 365.47) (width 0.127) (netNameRef "TP19") )
+ (line (pt 524.7 370.12) (pt 522.98 371.84) (width 0.127) (netNameRef "TP17") )
+ (line (pt 524.22 366.4) (pt 521.58 369.04) (width 0.127) (netNameRef "TP20") )
+ (line (pt 518.87 369.15) (pt 518.88 369.14) (width 0.127) (netNameRef "TP19") )
+ (line (pt 521.28 383.2) (pt 521.28 385.4) (width 0.2) (netNameRef "NET00214") )
+ (line (pt 521.28 385.4) (pt 521.22 385.46) (width 0.2) (netNameRef "NET00214") )
+ (line (pt 525.08 383.2) (pt 525.06 383.22) (width 0.2) (netNameRef "NET00216") )
+ (line (pt 525.06 383.22) (pt 525.06 385.48) (width 0.2) (netNameRef "NET00216") )
+ (line (pt 525.06 388.28) (pt 525.12 388.34) (width 0.3) (netNameRef "GND") )
+ (line (pt 521.22 388.42) (pt 521.24 388.44) (width 0.3) (netNameRef "GND") )
+ (line (pt 525.06 387.08) (pt 525.06 388.28) (width 0.3) (netNameRef "GND") )
+ (line (pt 521.22 387.06) (pt 521.22 388.42) (width 0.3) (netNameRef "GND") )
+ (line (pt 525.34 399.38) (pt 525.34 398.08) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 521.14 399.38) (pt 522.7 399.38) (width 0.5) (netNameRef "GND") )
+ (line (pt 518.88 409.0) (pt 518.94 409.06) (width 0.5) (netNameRef "NET00266") )
+ (line (pt 518.94 409.06) (pt 518.94 406.66) (width 0.5) (netNameRef "NET00266") )
+ (line (pt 518.94 406.66) (pt 521.14 404.46) (width 0.5) (netNameRef "NET00266") )
+ (line (pt 525.34 404.46) (pt 525.34 406.06) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 525.34 406.06) (pt 525.3 406.1) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 518.94 414.1) (pt 518.92 414.12) (width 0.5) (netNameRef "TP27") )
+ (line (pt 518.92 414.12) (pt 518.92 415.0) (width 0.5) (netNameRef "TP27") )
+ (line (pt 527.84 295.62) (pt 530.42 295.62) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.42 295.62) (pt 530.44 295.6) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.36 295.52) (pt 530.44 295.6) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.36 293.4) (pt 530.36 295.52) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.36 293.34) (pt 530.4 293.3) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.36 291.78) (pt 530.36 293.34) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.36 293.4) (pt 530.4 293.36) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 530.4 293.36) (pt 530.4 293.3) (width 0.6) (netNameRef "VDDINT") )
+ (line (pt 526.24 295.62) (pt 526.2 295.66) (width 0.6) (netNameRef "GND") )
+ (line (pt 531.3 311.3) (pt 529.2 311.3) (width 0.127) (netNameRef "A17") )
+ (line (pt 531.3 312.3) (pt 530.7 312.3) (width 0.127) (netNameRef "A15") )
+ (line (pt 529.2 311.3) (pt 528.9 311.6) (width 0.127) (netNameRef "A17") )
+ (line (pt 532.3 310.3) (pt 532.34 310.3) (width 0.127) (netNameRef "A14") )
+ (line (pt 532.34 310.3) (pt 532.82 310.78) (width 0.127) (netNameRef "A14") )
+ (line (pt 531.3 311.3) (pt 531.8 311.8) (width 0.127) (netNameRef "A17") )
+ (line (pt 533.3 311.3) (pt 533.3 311.48) (width 0.127) (netNameRef "A13") )
+ (line (pt 531.8 311.8) (pt 532.98 311.8) (width 0.127) (netNameRef "A17") )
+ (line (pt 532.3 312.3) (pt 532.94 312.3) (width 0.127) (netNameRef "A16") )
+ (line (pt 532.3 311.3) (pt 531.8 310.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 532.3 313.3) (pt 532.78 313.3) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.78 313.3) (pt 533.08 313.68) (width 0.127) (netNameRef "A18") )
+ (line (pt 530.66 313.32) (pt 531.28 313.32) (width 0.127) (netNameRef "D0") )
+ (line (pt 531.28 313.32) (pt 531.3 313.3) (width 0.127) (netNameRef "D0") )
+ (line (pt 530.66 313.32) (pt 530.62 313.32) (width 0.127) (netNameRef "D0") )
+ (line (pt 530.62 313.32) (pt 530.08 312.78) (width 0.127) (netNameRef "D0") )
+ (line (pt 530.08 312.78) (pt 529.2 312.78) (width 0.127) (netNameRef "D0") )
+ (line (pt 531.3 314.3) (pt 528.68 314.3) (width 0.127) (netNameRef "D2") )
+ (line (pt 532.3 316.3) (pt 532.46 316.3) (width 0.127) (netNameRef "D3") )
+ (line (pt 532.46 316.3) (pt 533.0 316.84) (width 0.127) (netNameRef "D3") )
+ (line (pt 531.3 315.3) (pt 531.28 315.32) (width 0.127) (netNameRef "D4") )
+ (line (pt 531.28 315.32) (pt 527.18 315.32) (width 0.127) (netNameRef "D4") )
+ (line (pt 532.3 315.3) (pt 532.3 315.32) (width 0.127) (netNameRef "D1") )
+ (line (pt 532.3 315.32) (pt 531.8 315.82) (width 0.127) (netNameRef "D1") )
+ (line (pt 532.3 319.3) (pt 533.04 319.3) (width 0.127) (netNameRef "D10") )
+ (line (pt 533.04 319.3) (pt 533.06 319.32) (width 0.127) (netNameRef "D10") )
+ (line (pt 532.3 318.3) (pt 533.04 318.3) (width 0.127) (netNameRef "D8") )
+ (line (pt 533.04 318.3) (pt 533.08 318.34) (width 0.127) (netNameRef "D8") )
+ (line (pt 531.3 314.3) (pt 531.8 314.8) (width 0.127) (netNameRef "D2") )
+ (line (pt 531.8 314.8) (pt 532.62 314.8) (width 0.127) (netNameRef "D2") )
+ (line (pt 531.3 318.3) (pt 530.56 318.3) (width 0.127) (netNameRef "D9") )
+ (line (pt 531.3 319.3) (pt 530.56 319.3) (width 0.127) (netNameRef "D11") )
+ (line (pt 531.3 316.3) (pt 530.56 316.3) (width 0.127) (netNameRef "D5") )
+ (line (pt 531.3 317.3) (pt 530.56 317.3) (width 0.127) (netNameRef "D7") )
+ (line (pt 530.56 316.3) (pt 530.56 316.22) (width 0.127) (netNameRef "D5") )
+ (line (pt 530.9 315.82) (pt 530.78 315.7) (width 0.127) (netNameRef "D1") )
+ (line (pt 531.8 315.82) (pt 530.9 315.82) (width 0.127) (netNameRef "D1") )
+ (line (pt 530.78 315.7) (pt 527.54 315.7) (width 0.127) (netNameRef "D1") )
+ (line (pt 527.54 315.7) (pt 527.4 315.84) (width 0.127) (netNameRef "D1") )
+ (line (pt 530.56 317.3) (pt 530.56 317.26) (width 0.127) (netNameRef "D7") )
+ (line (pt 530.56 318.3) (pt 527.84 318.3) (width 0.127) (netNameRef "D9") )
+ (line (pt 527.84 318.3) (pt 527.06 319.08) (width 0.127) (netNameRef "D9") )
+ (line (pt 531.8 316.8) (pt 532.3 317.3) (width 0.127) (netNameRef "D6") )
+ (line (pt 532.3 318.3) (pt 531.8 317.8) (width 0.127) (netNameRef "D8") )
+ (line (pt 532.3 319.3) (pt 531.8 318.8) (width 0.127) (netNameRef "D10") )
+ (line (pt 531.8 318.8) (pt 527.7 318.8) (width 0.127) (netNameRef "D10") )
+ (line (pt 527.7 318.8) (pt 527.16 319.34) (width 0.127) (netNameRef "D10") )
+ (line (pt 531.3 322.3) (pt 530.7 322.3) (width 0.127) (netNameRef "BMOD0") )
+ (line (pt 531.3 326.3) (pt 530.7 326.3) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 531.3 325.3) (pt 530.7 325.3) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 531.3 324.3) (pt 530.7 324.3) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 531.3 323.3) (pt 530.7 323.3) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 532.3 321.3) (pt 532.96 321.3) (width 0.127) (netNameRef "D15") )
+ (line (pt 532.96 321.3) (pt 533.0 321.34) (width 0.127) (netNameRef "D15") )
+ (line (pt 532.3 321.3) (pt 531.8 321.8) (width 0.127) (netNameRef "D15") )
+ (line (pt 532.3 320.3) (pt 533.02 320.3) (width 0.127) (netNameRef "D13") )
+ (line (pt 533.02 320.3) (pt 533.04 320.32) (width 0.127) (netNameRef "D13") )
+ (line (pt 530.8 320.3) (pt 531.3 320.3) (width 0.127) (netNameRef "D12") )
+ (line (pt 530.8 320.3) (pt 530.78 320.32) (width 0.127) (netNameRef "D12") )
+ (line (pt 530.78 320.32) (pt 530.58 320.32) (width 0.127) (netNameRef "D12") )
+ (line (pt 531.3 321.3) (pt 530.62 321.3) (width 0.127) (netNameRef "D14") )
+ (line (pt 530.62 321.3) (pt 530.6 321.28) (width 0.127) (netNameRef "D14") )
+ (line (pt 530.58 320.32) (pt 530.6 320.3) (width 0.127) (netNameRef "D12") )
+ (line (pt 531.84 320.76) (pt 532.3 320.3) (width 0.127) (netNameRef "D13") )
+ (line (pt 530.5 321.18) (pt 530.6 321.28) (width 0.127) (netNameRef "D14") )
+ (line (pt 532.3 322.3) (pt 532.98 322.3) (width 0.127) (netNameRef "BMOD1") )
+ (line (pt 532.3 323.3) (pt 532.96 323.3) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 532.3 324.3) (pt 533.0 324.3) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 532.3 325.3) (pt 532.8 325.8) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 526.46 320.76) (pt 531.84 320.76) (width 0.127) (netNameRef "D13") )
+ (line (pt 530.6 321.28) (pt 528.32 321.28) (width 0.127) (netNameRef "D14") )
+ (line (pt 531.8 321.8) (pt 528.36 321.8) (width 0.127) (netNameRef "D15") )
+ (line (pt 528.36 321.8) (pt 526.76 323.4) (width 0.127) (netNameRef "D15") )
+ (line (pt 528.32 321.28) (pt 526.56 323.04) (width 0.127) (netNameRef "D14") )
+ (line (pt 531.7 342.56) (pt 531.8 342.46) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 526.2 342.72) (pt 526.2 342.7) (width 0.2) (netNameRef "BMOD0") )
+ (line (pt 528.2 342.72) (pt 528.22 342.72) (width 0.2) (netNameRef "A16") )
+ (line (pt 532.7 349.22) (pt 533.2 349.72) (width 0.127) (netNameRef "H12") )
+ (line (pt 526.7 348.22) (pt 526.24 347.76) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 526.24 347.76) (pt 526.16 347.76) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 533.1 348.62) (pt 532.7 348.22) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 530.7 350.22) (pt 530.76 350.22) (width 0.2) (netNameRef "PF13") )
+ (line (pt 530.76 350.22) (pt 531.2 349.78) (width 0.2) (netNameRef "PF13") )
+ (line (pt 531.7 350.22) (pt 531.72 350.22) (width 0.2) (netNameRef "PF10") )
+ (line (pt 531.72 350.22) (pt 532.22 349.72) (width 0.2) (netNameRef "PF10") )
+ (line (pt 530.7 349.22) (pt 531.14 348.78) (width 0.2) (netNameRef "~AMS0") )
+ (line (pt 531.14 348.78) (pt 531.2 348.78) (width 0.2) (netNameRef "~AMS0") )
+ (line (pt 531.7 349.22) (pt 532.18 348.74) (width 0.2) (netNameRef "PPI") )
+ (line (pt 532.18 348.74) (pt 532.2 348.74) (width 0.2) (netNameRef "PPI") )
+ (line (pt 528.7 348.22) (pt 529.18 347.74) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 529.18 347.74) (pt 529.24 347.74) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 529.7 348.22) (pt 530.18 347.74) (width 0.2) (netNameRef "~ARE") )
+ (line (pt 530.18 347.74) (pt 530.2 347.74) (width 0.2) (netNameRef "~ARE") )
+ (line (pt 526.2 343.72) (pt 526.2 343.7) (width 0.2) (netNameRef "A18") )
+ (line (pt 526.7 343.22) (pt 526.7 343.14) (width 0.2) (netNameRef "BMOD1") )
+ (line (pt 527.7 344.22) (pt 528.18 343.74) (width 0.2) (netNameRef "A7") )
+ (line (pt 528.18 343.74) (pt 528.22 343.74) (width 0.2) (netNameRef "A7") )
+ (line (pt 528.7 344.22) (pt 529.2 343.72) (width 0.2) (netNameRef "A6") )
+ (line (pt 529.2 343.72) (pt 529.22 343.72) (width 0.2) (netNameRef "A6") )
+ (line (pt 528.7 345.22) (pt 529.18 344.74) (width 0.2) (netNameRef "A5") )
+ (line (pt 529.18 344.74) (pt 529.22 344.74) (width 0.2) (netNameRef "A5") )
+ (line (pt 529.7 345.22) (pt 530.18 344.74) (width 0.2) (netNameRef "A3") )
+ (line (pt 530.18 344.74) (pt 530.22 344.74) (width 0.2) (netNameRef "A3") )
+ (line (pt 530.7 345.22) (pt 531.14 344.78) (width 0.2) (netNameRef "A0") )
+ (line (pt 531.14 344.78) (pt 531.2 344.78) (width 0.2) (netNameRef "A0") )
+ (line (pt 530.7 346.22) (pt 530.72 346.22) (width 0.2) (netNameRef "A1") )
+ (line (pt 530.72 346.22) (pt 531.18 345.76) (width 0.2) (netNameRef "A1") )
+ (line (pt 529.7 346.22) (pt 530.2 345.72) (width 0.2) (netNameRef "A2") )
+ (line (pt 528.7 346.22) (pt 529.2 345.72) (width 0.2) (netNameRef "A4") )
+ (line (pt 532.2 344.72) (pt 531.7 345.22) (width 0.2) (netNameRef "DP") )
+ (line (pt 531.7 348.22) (pt 532.18 347.74) (width 0.127) (netNameRef "H2") )
+ (line (pt 533.2 345.72) (pt 532.7 345.22) (width 0.2) (netNameRef "_RSS") )
+ (line (pt 532.7 346.22) (pt 533.2 346.72) (width 0.2) (netNameRef "STP") )
+ (line (pt 533.14 343.78) (pt 533.14 343.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 533.16 343.76) (pt 533.14 343.76) (width 0.127) (netNameRef "GND") )
+ (line (pt 532.7 344.22) (pt 533.14 343.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 527.7 349.22) (pt 527.7 350.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 527.7 349.22) (pt 526.7 349.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 532.7 354.22) (pt 533.2 354.72) (width 0.127) (netNameRef "H4") )
+ (line (pt 532.7 352.22) (pt 533.2 352.72) (width 0.127) (netNameRef "H8") )
+ (line (pt 533.21999 351.73999) (pt 532.7 351.22) (width 0.127) (netNameRef "H10") )
+ (line (pt 533.22 353.74) (pt 532.7 353.22) (width 0.127) (netNameRef "H6") )
+ (line (pt 530.7 356.22) (pt 531.16 356.68) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 529.7 355.22) (pt 529.72 355.22) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 529.72 355.22) (pt 530.16 355.66) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 528.7 351.22) (pt 528.22 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 528.22 350.74) (pt 528.18 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 527.7 351.22) (pt 528.18 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 526.7 353.22) (pt 526.24 353.68) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 526.16 353.68) (pt 526.24 353.68) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 533.2 355.72) (pt 532.7 355.22) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 531.7 356.22) (pt 532.14 356.66) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 532.14 356.66) (pt 532.16 356.66) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 532.7 356.22) (pt 533.24 356.76) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 526.7 357.22) (pt 526.2 357.72) (width 0.2) (netNameRef "VD1") )
+ (line (pt 527.7 357.22) (pt 527.2 357.72) (width 0.2) (netNameRef "VD3") )
+ (line (pt 530.7 355.22) (pt 530.7 355.2) (width 0.2) (netNameRef "~AOE") )
+ (line (pt 530.7 355.2) (pt 531.18 354.72) (width 0.2) (netNameRef "~AOE") )
+ (line (pt 530.7 354.22) (pt 531.18 353.74) (width 0.2) (netNameRef "PF12") )
+ (line (pt 531.18 353.74) (pt 531.2 353.74) (width 0.2) (netNameRef "PF12") )
+ (line (pt 531.7 354.22) (pt 532.18 353.74) (width 0.2) (netNameRef "CLKIN") )
+ (line (pt 532.18 353.74) (pt 532.2 353.74) (width 0.2) (netNameRef "CLKIN") )
+ (line (pt 530.7 353.22) (pt 531.18 352.74) (width 0.2) (netNameRef "PF9") )
+ (line (pt 531.18 352.74) (pt 531.2 352.74) (width 0.2) (netNameRef "PF9") )
+ (line (pt 531.7 353.22) (pt 532.14 352.78) (width 0.2) (netNameRef "PF11") )
+ (line (pt 532.14 352.78) (pt 532.22 352.78) (width 0.2) (netNameRef "PF11") )
+ (line (pt 530.7 352.22) (pt 531.2 351.72) (width 0.2) (netNameRef "PF1") )
+ (line (pt 531.2 351.72) (pt 531.22 351.72) (width 0.2) (netNameRef "PF1") )
+ (line (pt 531.7 352.22) (pt 532.2 351.72) (width 0.2) (netNameRef "~DRES") )
+ (line (pt 530.7 351.22) (pt 531.16 350.76) (width 0.2) (netNameRef "PF0") )
+ (line (pt 531.16 350.76) (pt 531.18 350.76) (width 0.2) (netNameRef "PF0") )
+ (line (pt 531.7 351.22) (pt 532.2 350.72) (width 0.2) (netNameRef "PF6") )
+ (line (pt 528.7 357.22) (pt 528.24 357.68) (width 0.2) (netNameRef "4S") )
+ (line (pt 529.7 357.22) (pt 529.68 357.22) (width 0.2) (netNameRef "2S") )
+ (line (pt 529.68 357.22) (pt 529.2 357.7) (width 0.2) (netNameRef "2S") )
+ (line (pt 532.7 357.22) (pt 533.2 357.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 526.7 351.22) (pt 527.18 350.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 526.7 351.3) (pt 527.16 351.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 527.62 352.22) (pt 527.16 351.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 526.7 352.22) (pt 527.16 351.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 526.7 351.22) (pt 526.7 351.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 527.7 352.22) (pt 527.62 352.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 529.7 358.92) (pt 529.72 358.94) (width 0.2) (netNameRef "1S") )
+ (line (pt 529.18 383.2) (pt 529.18 385.52) (width 0.2) (netNameRef "NET00210") )
+ (line (pt 529.18 385.52) (pt 529.2 385.54) (width 0.2) (netNameRef "NET00210") )
+ (line (pt 529.2 387.14) (pt 529.2 388.38) (width 0.3) (netNameRef "GND") )
+ (line (pt 530.12 401.92) (pt 531.52 401.92) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 534.23 288.31) (pt 534.23 287.04) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 540.58 287.04) (pt 540.58 288.31) (width 0.6) (netNameRef "NET00312") )
+ (line (pt 537.425 295.6) (pt 539.58 295.6) (width 0.6) (netNameRef "GND") )
+ (line (pt 534.3 310.3) (pt 534.76 310.76) (width 0.127) (netNameRef "A10") )
+ (line (pt 534.76 310.76) (pt 534.76 310.82) (width 0.127) (netNameRef "A10") )
+ (line (pt 535.3 310.3) (pt 535.3 310.34) (width 0.127) (netNameRef "A8") )
+ (line (pt 535.3 310.34) (pt 535.78 310.82) (width 0.127) (netNameRef "A8") )
+ (line (pt 536.3 310.3) (pt 536.84 310.84) (width 0.127) (netNameRef "A7") )
+ (line (pt 537.3 310.3) (pt 537.3 310.34) (width 0.127) (netNameRef "A5") )
+ (line (pt 537.3 310.34) (pt 537.78 310.82) (width 0.127) (netNameRef "A5") )
+ (line (pt 538.3 310.3) (pt 538.8 310.8) (width 0.127) (netNameRef "A3") )
+ (line (pt 538.8 310.8) (pt 538.84 310.8) (width 0.127) (netNameRef "A3") )
+ (line (pt 538.3 311.3) (pt 538.3 311.42) (width 0.127) (netNameRef "A2") )
+ (line (pt 538.3 311.42) (pt 538.84 311.96) (width 0.127) (netNameRef "A2") )
+ (line (pt 539.3 311.3) (pt 539.3 311.48) (width 0.127) (netNameRef "A0") )
+ (line (pt 539.3 311.48) (pt 539.8 311.98) (width 0.127) (netNameRef "A0") )
+ (line (pt 539.3 310.3) (pt 539.3 310.32) (width 0.127) (netNameRef "A1") )
+ (line (pt 539.3 310.32) (pt 539.8 310.82) (width 0.127) (netNameRef "A1") )
+ (line (pt 540.3 310.3) (pt 540.3 310.34) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 540.3 310.34) (pt 540.76 310.8) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 535.3 305.3) (pt 540.3 310.3) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 534.3 311.3) (pt 534.3 311.48) (width 0.127) (netNameRef "A11") )
+ (line (pt 534.3 311.48) (pt 534.74 311.92) (width 0.127) (netNameRef "A11") )
+ (line (pt 535.3 311.3) (pt 535.3 311.44) (width 0.127) (netNameRef "A9") )
+ (line (pt 535.3 311.44) (pt 535.78 311.92) (width 0.127) (netNameRef "A9") )
+ (line (pt 536.3 311.3) (pt 536.3 311.38) (width 0.127) (netNameRef "A6") )
+ (line (pt 536.3 311.38) (pt 536.82 311.9) (width 0.127) (netNameRef "A6") )
+ (line (pt 537.3 311.3) (pt 537.3 311.46) (width 0.127) (netNameRef "A4") )
+ (line (pt 537.3 311.46) (pt 537.8 311.96) (width 0.127) (netNameRef "A4") )
+ (line (pt 540.3 311.3) (pt 540.32 311.32) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 540.32 311.32) (pt 540.32 312.2) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 534.94 313.02) (pt 535.6 313.68) (width 0.127) (netNameRef "A17") )
+ (line (pt 534.2 313.02) (pt 534.94 313.02) (width 0.127) (netNameRef "A17") )
+ (line (pt 536.3 317.3) (pt 536.3 316.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 536.3 316.3) (pt 536.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 536.3 316.3) (pt 535.42 316.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 536.3 315.3) (pt 537.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 537.3 315.3) (pt 538.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 538.3 315.3) (pt 539.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 539.3 315.3) (pt 540.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 533.94 317.3) (pt 534.82 318.18) (width 0.127) (netNameRef "D6") )
+ (line (pt 536.1 314.2) (pt 534.78 315.52) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 538.32 314.2) (pt 536.1 314.2) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 540.3 315.3) (pt 539.8 314.8) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 539.3 315.3) (pt 539.8 314.8) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 536.3 317.3) (pt 535.36 317.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 539.76 316.84) (pt 539.76 316.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 317.3) (pt 539.76 316.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.22 316.3) (pt 539.76 316.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 316.3) (pt 539.76 316.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.86 318.74) (pt 539.78 318.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.34 318.3) (pt 539.78 318.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 536.3 318.3) (pt 535.62 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 317.3) (pt 539.76 316.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 317.3) (pt 540.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 317.3) (pt 540.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 316.3) (pt 540.22 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 316.3) (pt 540.22 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 316.3) (pt 539.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 318.3) (pt 539.86 318.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 318.3) (pt 539.34 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.34 318.3) (pt 540.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 318.3) (pt 536.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 317.3) (pt 539.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 317.3) (pt 539.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 319.3) (pt 540.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 316.3) (pt 538.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 316.3) (pt 538.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 318.3) (pt 539.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 319.3) (pt 539.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 317.3) (pt 537.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 318.3) (pt 538.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 319.3) (pt 537.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 317.3) (pt 538.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 317.3) (pt 538.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 540.3 319.3) (pt 539.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 317.3) (pt 537.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 318.3) (pt 538.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 319.3) (pt 539.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 319.3) (pt 537.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 536.3 321.3) (pt 537.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 537.3 321.3) (pt 538.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 538.3 321.3) (pt 539.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 536.3 321.3) (pt 536.3 320.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 536.3 321.3) (pt 535.6 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 540.3 321.3) (pt 539.8 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 539.8 321.3) (pt 539.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 539.8 321.3) (pt 539.8 321.7) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 539.3 320.3) (pt 540.3 320.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 320.3) (pt 539.3 320.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 320.3) (pt 538.3 320.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 533.7 345.22) (pt 534.4 345.22) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 534.4 345.22) (pt 534.44 345.26) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 533.7 344.22) (pt 536.46 344.22) (width 0.2) (netNameRef "D_I") )
+ (line (pt 533.7 346.22) (pt 538.88 346.22) (width 0.2) (netNameRef "CKP") )
+ (line (pt 533.76 346.72) (pt 539.1 346.72) (width 0.2) (netNameRef "STP") )
+ (line (pt 539.1 346.72) (pt 539.84 345.98) (width 0.2) (netNameRef "STP") )
+ (line (pt 533.7 356.22) (pt 534.5 356.22) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 539.12 362.52) (pt 539.92 362.52) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 539.92 362.52) (pt 540.72 362.52) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 539.92 360.92) (pt 539.92 359.9) (width 0.2) (netNameRef "7NCONF") )
+ (line (pt 540.72 360.92) (pt 540.72 359.88) (width 0.2) (netNameRef "CONFD7") )
+ (line (pt 547.04 262.56) (pt 547.28 262.32) (width 1.0) (netNameRef "+5V") )
+ (line (pt 546.45 265.125) (pt 546.45 263.15) (width 1.0) (netNameRef "+5V") )
+ (line (pt 546.45 263.15) (pt 547.04 262.56) (width 1.0) (netNameRef "+5V") )
+ (line (pt 541.95 265.125) (pt 541.95 263.65) (width 1.0) (netNameRef "GND") )
+ (line (pt 544.2 278.5) (pt 544.2 276.4) (width 0.65) (netNameRef "NET00255") )
+ (line (pt 545.8 278.5) (pt 547.4 278.5) (width 0.65) (netNameRef "VDDEXT") )
+ (line (pt 542.6 286.64) (pt 542.6 288.46) (width 0.6) (netNameRef "NET00312") )
+ (line (pt 542.45 288.31) (pt 542.6 288.46) (width 0.6) (netNameRef "NET00312") )
+ (line (pt 545.6 288.46) (pt 545.62 288.48) (width 0.6) (netNameRef "GND") )
+ (line (pt 544.2 288.46) (pt 545.6 288.46) (width 0.6) (netNameRef "GND") )
+ (line (pt 545.3 293.16) (pt 547.56 290.9) (width 0.127) (netNameRef "R6") )
+ (line (pt 542.06 291.4) (pt 542.06 292.2) (width 0.6) (netNameRef "VROUT") )
+ (line (pt 541.51 290.85) (pt 542.06 291.4) (width 0.6) (netNameRef "VROUT") )
+ (line (pt 541.3 310.3) (pt 541.3 309.7) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 544.3 310.3) (pt 544.3 309.7) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 546.3 310.3) (pt 546.3 309.4) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 546.3 312.3) (pt 545.6 312.3) (width 0.127) (netNameRef "SA10") )
+ (line (pt 547.3 310.3) (pt 547.3 309.7) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 541.3 311.3) (pt 541.3 312.0) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 543.3 311.3) (pt 543.3 312.04) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 546.3 309.4) (pt 546.8 308.9) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 547.3 311.3) (pt 548.5 311.3) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 547.3 312.3) (pt 547.9 312.3) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 544.3 311.3) (pt 543.8 310.8) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 543.8 310.8) (pt 543.8 309.72) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 541.82 310.78) (pt 542.3 310.3) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 545.82 310.78) (pt 545.3 311.3) (width 0.127) (netNameRef "R5") )
+ (line (pt 546.3 311.3) (pt 546.76 310.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 546.3 314.3) (pt 546.3 315.3) (width 0.127) (netNameRef "VROUT") )
+ (line (pt 546.2 315.3) (pt 545.6 315.3) (width 0.127) (netNameRef "VROUT") )
+ (line (pt 546.3 314.3) (pt 546.2 314.3) (width 0.127) (netNameRef "VROUT") )
+ (line (pt 546.3 315.3) (pt 546.2 315.3) (width 0.127) (netNameRef "VROUT") )
+ (line (pt 545.6 313.3) (pt 546.3 313.3) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 546.3 317.3) (pt 545.7 317.3) (width 0.127) (netNameRef "PPI") )
+ (line (pt 545.52 318.78) (pt 544.46 317.72) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 546.3 316.3) (pt 546.8 316.8) (width 0.127) (netNameRef "R7") )
+ (line (pt 544.46 317.72) (pt 544.46 315.06) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 547.3 315.3) (pt 548.0 315.3) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 548.5 318.78) (pt 545.52 318.78) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 544.8 312.5) (pt 545.6 313.3) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 541.3 315.3) (pt 542.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.3 315.3) (pt 542.86 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.86 315.3) (pt 543.02 315.46) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.3 317.3) (pt 542.3 318.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 542.3 318.3) (pt 542.3 319.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 542.3 318.3) (pt 543.14 318.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 541.3 315.3) (pt 541.84 314.76) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 541.84 314.76) (pt 541.84 314.74) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.3 315.3) (pt 542.3 315.2) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.3 315.2) (pt 541.84 314.74) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 542.3 316.3) (pt 542.98 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 316.3) (pt 542.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 317.3) (pt 541.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 318.3) (pt 541.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 319.3) (pt 541.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 546.3 322.3) (pt 545.6 322.3) (width 0.127) (netNameRef "PF10") )
+ (line (pt 546.3 321.3) (pt 545.6 321.3) (width 0.127) (netNameRef "PF13") )
+ (line (pt 546.3 320.3) (pt 545.6 320.3) (width 0.127) (netNameRef "PF15") )
+ (line (pt 547.3 320.3) (pt 547.4 320.4) (width 0.127) (netNameRef "PF14") )
+ (line (pt 544.3 325.3) (pt 544.3 324.7) (width 0.127) (netNameRef "PF0") )
+ (line (pt 545.3 326.3) (pt 545.3 326.9) (width 0.127) (netNameRef "PF1") )
+ (line (pt 547.4 320.4) (pt 547.9 320.4) (width 0.127) (netNameRef "PF14") )
+ (line (pt 547.3 321.3) (pt 547.9 321.3) (width 0.127) (netNameRef "PF12") )
+ (line (pt 547.3 322.3) (pt 547.9 322.3) (width 0.127) (netNameRef "PF11") )
+ (line (pt 547.3 326.3) (pt 547.9 326.3) (width 0.127) (netNameRef "PF4") )
+ (line (pt 547.3 325.3) (pt 547.9 325.3) (width 0.127) (netNameRef "PF5") )
+ (line (pt 547.3 323.3) (pt 547.9 323.3) (width 0.127) (netNameRef "PF9") )
+ (line (pt 545.3 325.3) (pt 545.8 325.8) (width 0.127) (netNameRef "PF3") )
+ (line (pt 543.3 325.3) (pt 543.8 325.8) (width 0.127) (netNameRef "MISO") )
+ (line (pt 546.3 326.3) (pt 547.06 327.06) (width 0.127) (netNameRef "PF2") )
+ (line (pt 547.06 327.06) (pt 547.94 327.06) (width 0.127) (netNameRef "PF2") )
+ (line (pt 544.3 326.3) (pt 544.3 327.14) (width 0.127) (netNameRef "SCK") )
+ (line (pt 542.3 320.3) (pt 542.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 542.3 321.3) (pt 541.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 546.3 323.3) (pt 546.8 323.8) (width 0.127) (netNameRef "PF8") )
+ (line (pt 547.3 324.3) (pt 547.9 324.3) (width 0.127) (netNameRef "PF7") )
+ (line (pt 546.3 324.3) (pt 545.6 324.3) (width 0.127) (netNameRef "PF6") )
+ (line (pt 546.3 325.3) (pt 546.8 325.8) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 543.3 326.3) (pt 543.3 327.06) (width 0.127) (netNameRef "MOSI") )
+ (line (pt 543.8 325.8) (pt 543.8 327.06) (width 0.127) (netNameRef "MISO") )
+ (line (pt 545.8 325.8) (pt 545.8 326.8) (width 0.127) (netNameRef "PF3") )
+ (line (pt 545.8 326.8) (pt 546.34 327.34) (width 0.127) (netNameRef "PF3") )
+ (line (pt 546.34 327.34) (pt 548.22 327.34) (width 0.127) (netNameRef "PF3") )
+ (line (pt 544.66 328.42) (pt 548.56 328.42) (width 0.127) (netNameRef "MOSI") )
+ (line (pt 544.84 328.1) (pt 548.34 328.1) (width 0.127) (netNameRef "MISO") )
+ (line (pt 546.82 349.22) (pt 547.24 348.8) (width 0.127) (netNameRef "H13") )
+ (line (pt 547.04 349.72) (pt 547.48 349.28) (width 0.127) (netNameRef "H12") )
+ (line (pt 545.0 347.74) (pt 545.94 346.8) (width 0.127) (netNameRef "H2") )
+ (line (pt 547.22 348.32) (pt 546.92 348.62) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 546.02 347.28) (pt 545.08 348.22) (width 0.127) (netNameRef "H0") )
+ (line (pt 544.92 347.22) (pt 545.86 346.28) (width 0.127) (netNameRef "H1") )
+ (line (pt 546.2 354.28) (pt 544.14 352.22) (width 0.127) (netNameRef "H7") )
+ (line (pt 546.72 356.28) (pt 543.66 353.22) (width 0.127) (netNameRef "H5") )
+ (line (pt 546.16 357.28) (pt 543.1 354.22) (width 0.127) (netNameRef "H3") )
+ (line (pt 542.56 354.72) (pt 545.64 357.8) (width 0.127) (netNameRef "H4") )
+ (line (pt 546.16 353.8) (pt 544.09999 351.73999) (width 0.127) (netNameRef "H10") )
+ (line (pt 546.24 356.8) (pt 543.18 353.74) (width 0.127) (netNameRef "H6") )
+ (line (pt 546.48 353.28) (pt 544.42 351.22) (width 0.127) (netNameRef "H9") )
+ (line (pt 546.48 352.8) (pt 544.44 350.76) (width 0.127) (netNameRef "H11") )
+ (line (pt 543.96 357.88) (pt 543.98 357.88) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 541.3 355.22) (pt 543.96 357.88) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 543.88 352.72) (pt 546.96 355.8) (width 0.127) (netNameRef "H8") )
+ (line (pt 541.595 363.785) (pt 541.58 363.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 543.94 359.9) (pt 545.8 359.9) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 541.52 362.52) (pt 541.52 363.74) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 541.52 363.74) (pt 541.58 363.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 541.52 360.92) (pt 541.52 359.96) (width 0.2) (netNameRef "NSTAT7") )
+ (line (pt 541.52 359.96) (pt 541.6 359.88) (width 0.2) (netNameRef "NSTAT7") )
+ (line (pt 544.08 359.28) (pt 543.84 359.04) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 541.595 363.785) (pt 541.58 363.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 555.215 278.58) (pt 553.44 278.58) (width 0.2) (netNameRef "SCK") )
+ (line (pt 555.215 287.47) (pt 553.35 287.47) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 553.35 287.47) (pt 553.34 287.48) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 555.215 301.29) (pt 553.45 301.29) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 553.45 301.29) (pt 553.44 301.3) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 549.0 308.9) (pt 549.1 309.0) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 549.6 316.8) (pt 549.7 316.8) (width 0.127) (netNameRef "R7") )
+ (line (pt 549.7 316.8) (pt 550.1 316.4) (width 0.127) (netNameRef "R7") )
+ (line (pt 549.5 314.3) (pt 550.1 314.9) (width 0.2) (netNameRef "OUT") )
+ (line (pt 549.86 320.12) (pt 549.84 320.12) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 554.7 342.28) (pt 555.32 341.66) (width 0.12) (netNameRef "DA0") )
+ (line (pt 554.7 341.28) (pt 555.08 340.9) (width 0.12) (netNameRef "ACE") )
+ (line (pt 552.7 342.28) (pt 553.2 341.78) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 553.7 341.28) (pt 554.08 340.9) (width 0.12) (netNameRef "AA2") )
+ (line (pt 553.7 342.28) (pt 554.32 341.66) (width 0.12) (netNameRef "AA3") )
+ (line (pt 555.32 341.66) (pt 555.32 337.92) (width 0.12) (netNameRef "DA0") )
+ (line (pt 555.08 340.9) (pt 555.08 337.8) (width 0.12) (netNameRef "ACE") )
+ (line (pt 554.7 340.28) (pt 554.7 337.74) (width 0.12) (netNameRef "AA4") )
+ (line (pt 554.32 341.66) (pt 554.32 337.64) (width 0.12) (netNameRef "AA3") )
+ (line (pt 554.08 340.9) (pt 554.08 337.4) (width 0.12) (netNameRef "AA2") )
+ (line (pt 553.7 340.28) (pt 553.7 337.34) (width 0.12) (netNameRef "AA1") )
+ (line (pt 553.2 341.78) (pt 553.2 337.4) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 549.7 340.28) (pt 549.3 339.88) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 549.3 339.88) (pt 549.3 339.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 549.7 342.28) (pt 549.26 341.84) (width 0.2) (netNameRef "4_IO2") )
+ (line (pt 550.7 342.28) (pt 550.7 342.26) (width 0.2) (netNameRef "3_IO5") )
+ (line (pt 551.7 342.28) (pt 551.22 341.8) (width 0.2) (netNameRef "3_IO4") )
+ (line (pt 550.7 342.26) (pt 550.26 341.82) (width 0.2) (netNameRef "3_IO5") )
+ (line (pt 550.7 341.28) (pt 550.22 340.8) (width 0.2) (netNameRef "4_IO0") )
+ (line (pt 551.7 341.28) (pt 551.7 341.22) (width 0.2) (netNameRef "3_IO6") )
+ (line (pt 551.7 341.22) (pt 551.22 340.74) (width 0.2) (netNameRef "3_IO6") )
+ (line (pt 550.7 340.28) (pt 550.26 339.84) (width 0.2) (netNameRef "4_IO1") )
+ (line (pt 551.7 340.28) (pt 551.24 339.82) (width 0.2) (netNameRef "3_IO7") )
+ (line (pt 551.24 339.82) (pt 551.24 339.8) (width 0.2) (netNameRef "3_IO7") )
+ (line (pt 555.7 340.28) (pt 555.7 338.24) (width 0.12) (netNameRef "DA1") )
+ (line (pt 555.72 342.28) (pt 556.14 341.86) (width 0.2) (netNameRef "GND") )
+ (line (pt 549.7 341.28) (pt 549.22 340.8) (width 0.127) (netNameRef "GND") )
+ (line (pt 555.7 342.28) (pt 555.72 342.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.7 345.28) (pt 553.22 344.8) (width 0.127) (netNameRef "+1,2V7") )
+ (line (pt 549.7 348.28) (pt 549.18 348.8) (width 0.127) (netNameRef "H13") )
+ (line (pt 554.7 345.28) (pt 554.26 345.72) (width 0.2) (netNameRef "7VPLL1") )
+ (line (pt 554.7 348.28) (pt 555.16 348.74) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 549.22 346.8) (pt 549.7 347.28) (width 0.127) (netNameRef "H2") )
+ (line (pt 549.7 345.28) (pt 549.24 344.82) (width 0.2) (netNameRef "3_IO0") )
+ (line (pt 549.24 344.82) (pt 549.22 344.82) (width 0.2) (netNameRef "3_IO0") )
+ (line (pt 550.7 345.28) (pt 550.22 344.8) (width 0.2) (netNameRef "3_IO1") )
+ (line (pt 549.7 344.28) (pt 549.7 344.22) (width 0.2) (netNameRef "3_IO2") )
+ (line (pt 549.7 344.22) (pt 549.26 343.78) (width 0.2) (netNameRef "3_IO2") )
+ (line (pt 549.7 343.28) (pt 549.7 343.2) (width 0.2) (netNameRef "4_IO4") )
+ (line (pt 552.7 348.28) (pt 552.26 347.84) (width 0.2) (netNameRef "D2") )
+ (line (pt 552.26 347.84) (pt 552.22 347.84) (width 0.2) (netNameRef "D2") )
+ (line (pt 551.7 346.28) (pt 551.26 346.72) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 552.7 346.28) (pt 552.26 345.84) (width 0.2) (netNameRef "D6") )
+ (line (pt 552.26 345.84) (pt 552.18 345.84) (width 0.2) (netNameRef "D6") )
+ (line (pt 551.7 345.28) (pt 551.22 344.8) (width 0.2) (netNameRef "A16") )
+ (line (pt 551.22 344.8) (pt 551.18 344.8) (width 0.2) (netNameRef "A16") )
+ (line (pt 550.7 346.28) (pt 550.24 345.82) (width 0.2) (netNameRef "A13") )
+ (line (pt 550.24 345.82) (pt 550.16 345.82) (width 0.2) (netNameRef "A13") )
+ (line (pt 554.7 343.28) (pt 554.7 343.26) (width 0.2) (netNameRef "A10") )
+ (line (pt 555.7 345.28) (pt 555.26 344.84) (width 0.2) (netNameRef "A8") )
+ (line (pt 555.26 344.84) (pt 555.26 344.8) (width 0.2) (netNameRef "A8") )
+ (line (pt 555.7 346.28) (pt 555.26 345.84) (width 0.2) (netNameRef "A9") )
+ (line (pt 555.26 345.84) (pt 555.22 345.84) (width 0.2) (netNameRef "A9") )
+ (line (pt 551.7 349.28) (pt 551.26 348.84) (width 0.2) (netNameRef "D8") )
+ (line (pt 551.26 348.84) (pt 551.18 348.84) (width 0.2) (netNameRef "D8") )
+ (line (pt 550.7 349.28) (pt 550.66 349.28) (width 0.2) (netNameRef "D10") )
+ (line (pt 550.66 349.28) (pt 550.22 348.84) (width 0.2) (netNameRef "D10") )
+ (line (pt 550.7 348.28) (pt 550.24 347.82) (width 0.2) (netNameRef "D3") )
+ (line (pt 550.24 347.82) (pt 550.24 347.8) (width 0.2) (netNameRef "D3") )
+ (line (pt 552.7 350.28) (pt 552.68 350.28) (width 0.2) (netNameRef "D15") )
+ (line (pt 552.68 350.28) (pt 552.24 349.84) (width 0.2) (netNameRef "D15") )
+ (line (pt 553.7 350.28) (pt 553.66 350.28) (width 0.2) (netNameRef "D13") )
+ (line (pt 553.66 350.28) (pt 553.22 349.84) (width 0.2) (netNameRef "D13") )
+ (line (pt 550.7 350.28) (pt 550.7 350.36) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 551.7 344.28) (pt 551.26 343.84) (width 0.2) (netNameRef "A12") )
+ (line (pt 551.26 343.84) (pt 551.22 343.84) (width 0.2) (netNameRef "A12") )
+ (line (pt 551.7 343.28) (pt 551.62 343.28) (width 0.2) (netNameRef "A11") )
+ (line (pt 552.7 343.28) (pt 552.66 343.28) (width 0.2) (netNameRef "A17") )
+ (line (pt 553.7 343.28) (pt 553.66 343.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 554.7 349.28) (pt 555.14 349.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 550.68 347.28) (pt 550.2 346.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 550.7 344.28) (pt 550.3 343.88) (width 0.2) (netNameRef "GND") )
+ (line (pt 552.76 344.28) (pt 553.18 343.86) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.6 344.28) (pt 553.18 343.86) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.28 343.86) (pt 553.18 343.86) (width 0.127) (netNameRef "GND") )
+ (line (pt 553.28 343.86) (pt 553.18 343.86) (width 0.127) (netNameRef "GND") )
+ (line (pt 550.7 347.28) (pt 550.68 347.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 552.7 344.28) (pt 552.76 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.7 344.28) (pt 553.6 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 552.7 345.28) (pt 552.7 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 554.7 344.28) (pt 553.7 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 549.7 354.28) (pt 549.22 353.8) (width 0.127) (netNameRef "H10") )
+ (line (pt 549.22 355.8) (pt 549.7 356.28) (width 0.127) (netNameRef "H8") )
+ (line (pt 549.7 357.28) (pt 549.22 356.8) (width 0.127) (netNameRef "H6") )
+ (line (pt 549.7 353.28) (pt 549.32 353.28) (width 0.127) (netNameRef "H11") )
+ (line (pt 549.32 353.28) (pt 548.84 352.8) (width 0.127) (netNameRef "H11") )
+ (line (pt 553.7 357.28) (pt 554.16 357.74) (width 0.2) (netNameRef "7VPLL3") )
+ (line (pt 552.7 357.28) (pt 553.14 356.84) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 554.7 353.28) (pt 555.14 352.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 555.7 357.28) (pt 555.7 357.3) (width 0.2) (netNameRef "TP1") )
+ (line (pt 551.7 351.28) (pt 552.16 350.82) (width 0.2) (netNameRef "7NCONF") )
+ (line (pt 552.7 351.28) (pt 552.22 351.76) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 551.7 352.28) (pt 551.2 351.78) (width 0.2) (netNameRef "7DATA0") )
+ (line (pt 553.7 351.28) (pt 553.22 350.8) (width 0.2) (netNameRef "DCLK7") )
+ (line (pt 553.22 350.8) (pt 553.18 350.8) (width 0.2) (netNameRef "DCLK7") )
+ (line (pt 553.7 352.28) (pt 553.68 352.28) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 553.68 352.28) (pt 553.24 352.72) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 552.7 352.28) (pt 552.24 352.74) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 551.7 353.28) (pt 551.66 353.28) (width 0.2) (netNameRef "A18") )
+ (line (pt 551.66 353.28) (pt 551.18 352.8) (width 0.2) (netNameRef "A18") )
+ (line (pt 551.7 354.28) (pt 551.68 354.28) (width 0.2) (netNameRef "A14") )
+ (line (pt 551.68 354.28) (pt 551.22 353.82) (width 0.2) (netNameRef "A14") )
+ (line (pt 552.7 355.28) (pt 552.68 355.28) (width 0.2) (netNameRef "A15") )
+ (line (pt 552.68 355.28) (pt 552.2 354.8) (width 0.2) (netNameRef "A15") )
+ (line (pt 550.7 354.28) (pt 550.66 354.28) (width 0.2) (netNameRef "D1") )
+ (line (pt 550.66 354.28) (pt 550.18 353.8) (width 0.2) (netNameRef "D1") )
+ (line (pt 550.7 355.28) (pt 550.68 355.28) (width 0.2) (netNameRef "D14") )
+ (line (pt 550.68 355.28) (pt 550.22 354.82) (width 0.2) (netNameRef "D14") )
+ (line (pt 551.7 356.28) (pt 551.64 356.28) (width 0.2) (netNameRef "D12") )
+ (line (pt 551.64 356.28) (pt 551.2 355.84) (width 0.2) (netNameRef "D12") )
+ (line (pt 550.7 356.28) (pt 550.62 356.28) (width 0.2) (netNameRef "D11") )
+ (line (pt 550.62 356.28) (pt 550.18 355.84) (width 0.2) (netNameRef "D11") )
+ (line (pt 550.7 357.28) (pt 550.64 357.28) (width 0.2) (netNameRef "D7") )
+ (line (pt 550.64 357.28) (pt 550.2 356.84) (width 0.2) (netNameRef "D7") )
+ (line (pt 551.7 357.28) (pt 551.64 357.28) (width 0.2) (netNameRef "D9") )
+ (line (pt 551.64 357.28) (pt 551.2 356.84) (width 0.2) (netNameRef "D9") )
+ (line (pt 549.7 352.28) (pt 549.32 352.66) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 549.32 352.66) (pt 549.32 352.68) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 550.7 351.28) (pt 550.32 350.9) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 550.32 350.9) (pt 550.32 350.74) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 555.14 351.84) (pt 555.14 351.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 552.26 355.84) (pt 553.14 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.26 355.84) (pt 553.14 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 552.7 356.28) (pt 553.14 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 550.7 352.28) (pt 550.26 351.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 549.14 351.84) (pt 550.26 351.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 554.7 352.28) (pt 555.14 351.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 551.7 355.28) (pt 552.26 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 553.7 356.28) (pt 553.26 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 554.7 356.28) (pt 553.7 356.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 549.7 361.28) (pt 549.7 361.96) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 553.7 359.28) (pt 554.18 359.76) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 550.7 361.28) (pt 550.7 361.38) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 550.7 361.38) (pt 551.14 361.82) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 550.7 360.28) (pt 551.18 360.76) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 551.7 360.28) (pt 551.7 360.3) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 551.7 360.3) (pt 552.16 360.76) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 552.7 361.28) (pt 553.14 361.72) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 552.7 360.28) (pt 553.18 360.76) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 551.7 359.28) (pt 552.18 359.76) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 553.7 361.28) (pt 554.14 361.72) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 553.7 360.28) (pt 554.18 360.76) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 554.7 360.28) (pt 554.72 360.28) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 554.72 360.28) (pt 555.18 360.74) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 554.7 359.28) (pt 555.2 359.78) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 551.7 361.28) (pt 552.08 361.66) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 552.08 361.66) (pt 552.08 361.8) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 554.7 361.28) (pt 555.12 361.7) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 555.12 361.7) (pt 555.12 361.74) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 551.7 358.28) (pt 551.66 358.28) (width 0.2) (netNameRef "D5") )
+ (line (pt 550.7 358.28) (pt 550.68 358.28) (width 0.2) (netNameRef "D0") )
+ (line (pt 550.7 359.28) (pt 550.64 359.28) (width 0.2) (netNameRef "D4") )
+ (line (pt 550.64 359.28) (pt 550.18 358.82) (width 0.2) (netNameRef "D4") )
+ (line (pt 552.7 359.28) (pt 553.18 359.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 549.7 360.28) (pt 549.22 360.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.31 279.85) (pt 557.34 279.88) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 562.77 279.85) (pt 562.74 279.88) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 562.95 287.47) (pt 562.94 287.48) (width 0.2) (netNameRef "MISO") )
+ (line (pt 557.08 292.52) (pt 557.2 292.4) (width 0.127) (netNameRef "SCK") )
+ (line (pt 557.81 293.67) (pt 557.84 293.7) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 562.87 293.67) (pt 562.84 293.7) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 562.95 301.29) (pt 562.92 301.32) (width 0.2) (netNameRef "MISO") )
+ (line (pt 556.96 300.02) (pt 556.98 300.0) (width 0.4) (netNameRef "GND") )
+ (line (pt 560.7 342.28) (pt 561.32 341.66) (width 0.12) (netNameRef "DA11") )
+ (line (pt 560.7 341.28) (pt 561.08 340.9) (width 0.12) (netNameRef "DA10") )
+ (line (pt 561.32 341.66) (pt 561.32 339.12) (width 0.12) (netNameRef "DA11") )
+ (line (pt 559.84 341.28) (pt 559.7 341.28) (width 0.12) (netNameRef "AA8") )
+ (line (pt 560.28 340.84) (pt 559.84 341.28) (width 0.12) (netNameRef "AA8") )
+ (line (pt 558.7 341.28) (pt 559.2 340.78) (width 0.12) (netNameRef "AA6") )
+ (line (pt 558.32 341.66) (pt 557.7 342.28) (width 0.12) (netNameRef "AWE") )
+ (line (pt 557.7 341.28) (pt 558.08 340.9) (width 0.12) (netNameRef "DA7") )
+ (line (pt 560.28 339.0) (pt 560.28 340.84) (width 0.12) (netNameRef "AA8") )
+ (line (pt 556.7 342.28) (pt 557.32 341.66) (width 0.12) (netNameRef "DA5") )
+ (line (pt 561.08 340.9) (pt 561.08 339.0) (width 0.12) (netNameRef "DA10") )
+ (line (pt 560.7 339.02) (pt 560.7 340.28) (width 0.12) (netNameRef "AA9") )
+ (line (pt 557.08 340.9) (pt 556.7 341.28) (width 0.12) (netNameRef "DA4") )
+ (line (pt 562.32 339.2) (pt 562.32 341.66) (width 0.12) (netNameRef "DA14") )
+ (line (pt 562.7 339.18) (pt 562.7 340.28) (width 0.12) (netNameRef "DA15") )
+ (line (pt 562.32 341.66) (pt 561.7 342.28) (width 0.12) (netNameRef "DA14") )
+ (line (pt 561.7 341.28) (pt 562.08 340.9) (width 0.12) (netNameRef "DA13") )
+ (line (pt 562.08 340.9) (pt 562.08 339.08) (width 0.12) (netNameRef "DA13") )
+ (line (pt 561.7 340.28) (pt 561.7 339.12) (width 0.12) (netNameRef "DA12") )
+ (line (pt 559.7 339.14) (pt 559.7 340.28) (width 0.12) (netNameRef "AA7") )
+ (line (pt 559.2 340.78) (pt 559.2 339.12) (width 0.12) (netNameRef "AA6") )
+ (line (pt 558.32 339.18) (pt 558.32 341.66) (width 0.12) (netNameRef "AWE") )
+ (line (pt 558.08 340.9) (pt 558.08 339.08) (width 0.12) (netNameRef "DA7") )
+ (line (pt 558.7 339.14) (pt 558.7 340.28) (width 0.12) (netNameRef "AA5") )
+ (line (pt 557.7 339.12) (pt 557.7 340.28) (width 0.12) (netNameRef "DA6") )
+ (line (pt 557.32 341.66) (pt 557.32 339.16) (width 0.12) (netNameRef "DA5") )
+ (line (pt 557.08 339.06) (pt 557.08 340.9) (width 0.12) (netNameRef "DA4") )
+ (line (pt 556.7 340.28) (pt 556.7 339.1) (width 0.12) (netNameRef "DA3") )
+ (line (pt 559.7 342.28) (pt 559.26 341.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 559.26 341.84) (pt 559.16 341.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 558.7 342.28) (pt 558.72 342.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 558.72 342.28) (pt 559.16 341.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 562.7 342.28) (pt 563.16 341.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 348.28) (pt 558.7 348.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 558.7 348.28) (pt 558.72 348.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 558.72 348.28) (pt 559.16 347.84) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 559.7 348.28) (pt 559.6 348.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 559.6 348.28) (pt 559.16 347.84) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 560.7 348.28) (pt 559.7 348.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 556.7 349.28) (pt 557.12 349.7) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 557.12 349.7) (pt 557.12 349.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 556.7 350.28) (pt 557.12 349.86) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 557.12 349.86) (pt 557.12 349.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 350.28) (pt 561.7 350.26) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 350.26) (pt 562.16 349.8) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 349.28) (pt 562.16 349.74) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 562.16 349.74) (pt 562.16 349.8) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 346.28) (pt 561.22 345.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 561.22 345.8) (pt 561.2 345.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 560.7 344.28) (pt 560.2 343.78) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 556.7 345.28) (pt 556.62 345.28) (width 0.2) (netNameRef "A6") )
+ (line (pt 556.7 344.28) (pt 556.64 344.28) (width 0.2) (netNameRef "A7") )
+ (line (pt 557.7 344.28) (pt 557.72 344.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 557.72 344.28) (pt 558.16 343.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 558.7 344.28) (pt 558.72 344.28) (width 0.2) (netNameRef "A1") )
+ (line (pt 558.72 344.28) (pt 559.18 343.82) (width 0.2) (netNameRef "A1") )
+ (line (pt 557.7 345.28) (pt 557.26 344.84) (width 0.2) (netNameRef "A5") )
+ (line (pt 557.26 344.84) (pt 557.18 344.84) (width 0.2) (netNameRef "A5") )
+ (line (pt 558.7 346.28) (pt 558.22 345.8) (width 0.2) (netNameRef "A2") )
+ (line (pt 558.22 345.8) (pt 558.2 345.8) (width 0.2) (netNameRef "A2") )
+ (line (pt 559.7 346.28) (pt 559.28 345.86) (width 0.2) (netNameRef "A3") )
+ (line (pt 559.28 345.86) (pt 559.2 345.86) (width 0.2) (netNameRef "A3") )
+ (line (pt 560.7 345.28) (pt 560.26 344.84) (width 0.2) (netNameRef "A0") )
+ (line (pt 560.26 344.84) (pt 560.2 344.84) (width 0.2) (netNameRef "A0") )
+ (line (pt 562.7 344.28) (pt 562.66 344.28) (width 0.2) (netNameRef "PF4") )
+ (line (pt 562.66 344.28) (pt 562.2 343.82) (width 0.2) (netNameRef "PF4") )
+ (line (pt 562.7 345.28) (pt 562.24 344.82) (width 0.2) (netNameRef "~AMS1") )
+ (line (pt 562.24 344.82) (pt 562.2 344.82) (width 0.2) (netNameRef "~AMS1") )
+ (line (pt 561.7 345.28) (pt 561.24 344.82) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 561.24 344.82) (pt 561.22 344.82) (width 0.2) (netNameRef "~AWE") )
+ (line (pt 563.7 346.28) (pt 563.22 345.8) (width 0.2) (netNameRef "PF7") )
+ (line (pt 563.22 345.8) (pt 563.2 345.8) (width 0.2) (netNameRef "PF7") )
+ (line (pt 562.7 349.28) (pt 563.2 348.78) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 563.2 348.78) (pt 563.24 348.78) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 562.7 348.28) (pt 562.76 348.28) (width 0.2) (netNameRef "3_DIR1") )
+ (line (pt 562.76 348.28) (pt 563.22 347.82) (width 0.2) (netNameRef "3_DIR1") )
+ (line (pt 556.7 343.28) (pt 556.68 343.28) (width 0.2) (netNameRef "A4") )
+ (line (pt 560.68 346.28) (pt 560.2 345.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.18 349.76) (pt 559.22 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 350.28) (pt 559.22 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.7 350.24) (pt 559.22 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.7 349.28) (pt 559.22 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.26 345.84) (pt 557.22 345.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 343.28) (pt 560.7 343.26) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.7 349.28) (pt 563.7 349.26) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 350.28) (pt 558.7 350.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 346.28) (pt 560.68 346.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 349.28) (pt 559.18 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.7 350.28) (pt 559.7 350.24) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 349.28) (pt 559.7 349.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 346.28) (pt 557.26 345.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 350.28) (pt 559.7 350.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 349.28) (pt 557.7 349.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 556.7 351.28) (pt 557.16 351.74) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 557.16 351.74) (pt 557.16 351.76) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 556.7 352.28) (pt 557.16 351.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 557.16 351.82) (pt 557.16 351.76) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 557.7 353.28) (pt 558.16 352.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 558.16 352.82) (pt 558.18 352.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 558.7 353.28) (pt 558.24 352.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 558.24 352.82) (pt 558.18 352.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 559.7 353.28) (pt 559.74 353.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 559.74 353.28) (pt 560.16 352.86) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 560.7 353.28) (pt 560.58 353.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 560.58 353.28) (pt 560.16 352.86) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 352.28) (pt 561.7 352.26) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 352.26) (pt 562.2 351.76) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.7 351.28) (pt 561.72 351.28) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 561.72 351.28) (pt 562.2 351.76) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 556.7 355.28) (pt 557.16 354.82) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 560.7 357.28) (pt 560.7 357.32) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 560.7 357.32) (pt 561.16 357.78) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 561.7 355.28) (pt 562.22 355.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 556.7 356.28) (pt 557.2 356.78) (width 0.2) (netNameRef "TP9") )
+ (line (pt 557.2 356.78) (pt 557.22 356.78) (width 0.2) (netNameRef "TP9") )
+ (line (pt 557.7 356.28) (pt 558.18 356.76) (width 0.2) (netNameRef "TP3") )
+ (line (pt 558.18 356.76) (pt 558.18 356.8) (width 0.2) (netNameRef "TP3") )
+ (line (pt 557.7 357.28) (pt 558.18 357.76) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 562.7 356.28) (pt 563.12 355.86) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 560.7 356.28) (pt 561.22 356.8) (width 0.2) (netNameRef "TP12") )
+ (line (pt 559.7 356.28) (pt 560.18 356.76) (width 0.2) (netNameRef "TP5") )
+ (line (pt 558.7 356.28) (pt 559.2 356.78) (width 0.2) (netNameRef "TP11") )
+ (line (pt 559.2 356.78) (pt 559.2 356.8) (width 0.2) (netNameRef "TP11") )
+ (line (pt 558.7 357.28) (pt 559.18 357.76) (width 0.2) (netNameRef "TP10") )
+ (line (pt 559.18 357.76) (pt 559.2 357.76) (width 0.2) (netNameRef "TP10") )
+ (line (pt 558.7 354.28) (pt 559.14 353.84) (width 0.2) (netNameRef "VD8") )
+ (line (pt 559.14 353.84) (pt 559.16 353.84) (width 0.2) (netNameRef "VD8") )
+ (line (pt 559.7 354.28) (pt 560.14 353.84) (width 0.2) (netNameRef "VD7") )
+ (line (pt 560.14 353.84) (pt 560.2 353.84) (width 0.2) (netNameRef "VD7") )
+ (line (pt 559.7 355.28) (pt 560.16 354.82) (width 0.2) (netNameRef "VD5") )
+ (line (pt 558.7 355.28) (pt 559.18 354.8) (width 0.2) (netNameRef "VD6") )
+ (line (pt 560.7 354.28) (pt 561.18 354.76) (width 0.2) (netNameRef "P_BLOK") )
+ (line (pt 561.18 354.76) (pt 561.18 354.78) (width 0.2) (netNameRef "P_BLOK") )
+ (line (pt 562.7 354.28) (pt 563.18 354.76) (width 0.2) (netNameRef "P_PUSK") )
+ (line (pt 563.18 354.76) (pt 563.18 354.78) (width 0.2) (netNameRef "P_PUSK") )
+ (line (pt 561.7 354.28) (pt 562.16 354.74) (width 0.2) (netNameRef "~P_ZAP") )
+ (line (pt 562.16 354.74) (pt 562.16 354.82) (width 0.2) (netNameRef "~P_ZAP") )
+ (line (pt 559.24 350.82) (pt 559.24 350.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.16 350.82) (pt 559.24 350.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.7 351.28) (pt 559.24 350.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 355.28) (pt 560.18 355.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.74 355.28) (pt 558.24 354.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.24 351.82) (pt 559.24 351.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 351.28) (pt 559.24 351.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.16 351.82) (pt 559.24 351.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.7 352.28) (pt 559.24 351.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.26 352.72) (pt 563.26 352.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 351.28) (pt 559.16 350.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 351.28) (pt 559.7 351.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.24 351.74) (pt 559.7 351.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 355.28) (pt 557.74 355.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 351.28) (pt 558.7 351.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 352.28) (pt 559.16 351.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 352.28) (pt 559.7 352.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.7 352.28) (pt 563.26 352.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 352.28) (pt 558.7 352.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 359.28) (pt 559.7 359.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 559.7 359.28) (pt 560.16 359.74) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 556.7 360.28) (pt 557.16 360.74) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 556.7 359.28) (pt 557.14 359.72) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 557.14 359.72) (pt 557.14 359.74) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 557.7 360.28) (pt 558.16 360.74) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 558.16 360.74) (pt 558.18 360.74) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 562.7 360.28) (pt 563.16 360.74) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 562.7 361.28) (pt 563.22 361.8) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 561.7 360.28) (pt 562.18 360.76) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 557.7 361.28) (pt 557.76 361.28) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 557.76 361.28) (pt 558.24 361.76) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 558.7 362.36) (pt 558.88 362.54) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 556.7 361.28) (pt 557.18 361.76) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 558.7 361.28) (pt 558.7 362.36) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 558.7 358.28) (pt 559.2 358.78) (width 0.2) (netNameRef "TP4") )
+ (line (pt 558.7 360.28) (pt 559.2 360.78) (width 0.2) (netNameRef "TP2") )
+ (line (pt 559.2 361.78) (pt 559.28 361.86) (width 0.2) (netNameRef "TP2") )
+ (line (pt 559.2 360.78) (pt 559.2 361.78) (width 0.2) (netNameRef "TP2") )
+ (line (pt 560.7 360.28) (pt 561.2 360.78) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 561.2 360.78) (pt 561.2 363.9) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 561.7 364.5) (pt 561.7 361.28) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 560.7 364.5) (pt 560.7 361.28) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 557.7 358.28) (pt 558.16 358.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 562.7 359.28) (pt 563.16 359.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 560.7 358.28) (pt 561.16 358.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 571.3 258.96) (pt 570.7 258.36) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 567.52 262.1) (pt 566.34 260.92) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 566.34 260.92) (pt 564.34 260.92) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 567.52 266.44) (pt 567.52 262.1) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 566.54 262.7) (pt 566.54 264.2) (width 0.127) (netNameRef "R5") )
+ (line (pt 564.74 278.58) (pt 566.74 278.58) (width 0.2) (netNameRef "PF8") )
+ (line (pt 564.74 286.2) (pt 564.68 286.26) (width 0.2) (netNameRef "PF2") )
+ (line (pt 564.74 292.4) (pt 566.54 292.4) (width 0.2) (netNameRef "PF8") )
+ (line (pt 566.54 292.4) (pt 568.14 292.4) (width 0.2) (netNameRef "PF8") )
+ (line (pt 568.14 292.4) (pt 568.16 292.42) (width 0.2) (netNameRef "PF8") )
+ (line (pt 569.76 292.42) (pt 570.86 292.42) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 564.74 300.02) (pt 567.24 300.02) (width 0.2) (netNameRef "PF3") )
+ (line (pt 568.84 300.02) (pt 569.98 300.02) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 569.98 300.02) (pt 570.0 300.0) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 570.84 331.41) (pt 570.83 331.41) (width 0.12) (netNameRef "AOE") )
+ (line (pt 570.83 331.41) (pt 570.8 331.44) (width 0.12) (netNameRef "AOE") )
+ (line (pt 567.7 341.28) (pt 568.08 340.9) (width 0.12) (netNameRef "AA11") )
+ (line (pt 568.08 340.9) (pt 568.08 340.01) (width 0.12) (netNameRef "AA11") )
+ (line (pt 568.08 340.01) (pt 569.28 338.81) (width 0.12) (netNameRef "AA11") )
+ (line (pt 566.7 342.28) (pt 567.32 341.66) (width 0.12) (netNameRef "AA13") )
+ (line (pt 567.7 340.28) (pt 567.7 339.94) (width 0.12) (netNameRef "AA12") )
+ (line (pt 567.7 339.94) (pt 569.13 338.51) (width 0.12) (netNameRef "AA12") )
+ (line (pt 566.32 341.66) (pt 565.7 342.28) (width 0.12) (netNameRef "DA8") )
+ (line (pt 565.7 341.28) (pt 566.08 340.9) (width 0.12) (netNameRef "DA9") )
+ (line (pt 566.7 340.28) (pt 566.7 339.54) (width 0.12) (netNameRef "AA18") )
+ (line (pt 566.7 339.54) (pt 568.63 337.61) (width 0.12) (netNameRef "AA18") )
+ (line (pt 564.7 342.28) (pt 565.32 341.66) (width 0.12) (netNameRef "AA17") )
+ (line (pt 564.28 337.97) (pt 564.28 341.7) (width 0.12) (netNameRef "AOE") )
+ (line (pt 568.7 340.28) (pt 568.7 340.2) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 568.7 340.2) (pt 569.1 339.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 569.7 341.28) (pt 569.76 341.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 569.76 341.28) (pt 570.24 340.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 564.7 341.28) (pt 565.08 340.9) (width 0.12) (netNameRef "AA16") )
+ (line (pt 566.08 340.9) (pt 566.08 339.4) (width 0.12) (netNameRef "DA9") )
+ (line (pt 566.32 339.56) (pt 566.32 341.66) (width 0.12) (netNameRef "DA8") )
+ (line (pt 568.57 337.31) (pt 566.32 339.56) (width 0.12) (netNameRef "DA8") )
+ (line (pt 566.08 339.4) (pt 568.47 337.01) (width 0.12) (netNameRef "DA9") )
+ (line (pt 565.84 337.16) (pt 565.85 337.16) (width 0.12) (netNameRef "AA16") )
+ (line (pt 565.08 337.92) (pt 565.84 337.16) (width 0.12) (netNameRef "AA16") )
+ (line (pt 565.08 340.9) (pt 565.08 337.92) (width 0.12) (netNameRef "AA16") )
+ (line (pt 565.32 341.66) (pt 565.32 339.4) (width 0.12) (netNameRef "AA17") )
+ (line (pt 565.32 339.4) (pt 568.18 336.54) (width 0.12) (netNameRef "AA17") )
+ (line (pt 567.7 342.28) (pt 568.16 341.82) (width 0.12) (netNameRef "AA10") )
+ (line (pt 568.16 341.82) (pt 571.16 341.82) (width 0.12) (netNameRef "AA10") )
+ (line (pt 567.08 340.9) (pt 567.08 339.6) (width 0.12) (netNameRef "AA14") )
+ (line (pt 566.7 341.28) (pt 567.08 340.9) (width 0.12) (netNameRef "AA14") )
+ (line (pt 567.32 339.77) (pt 568.88 338.21) (width 0.12) (netNameRef "AA13") )
+ (line (pt 567.32 341.66) (pt 567.32 339.77) (width 0.12) (netNameRef "AA13") )
+ (line (pt 567.08 339.6) (pt 568.77 337.91) (width 0.12) (netNameRef "AA14") )
+ (line (pt 564.7 340.28) (pt 564.7 337.98) (width 0.12) (netNameRef "AA15") )
+ (line (pt 567.2 342.78) (pt 567.18 342.78) (width 0.2) (netNameRef "~AOE") )
+ (line (pt 569.2 342.78) (pt 568.7 342.28) (width 0.12) (netNameRef "AB8") )
+ (line (pt 569.7 340.28) (pt 569.18 340.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 568.7 341.28) (pt 569.18 340.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 568.7 349.28) (pt 569.32 349.9) (width 0.12) (netNameRef "AB3") )
+ (line (pt 567.7 347.28) (pt 568.32 347.9) (width 0.12) (netNameRef "BCE") )
+ (line (pt 568.7 347.28) (pt 569.08 347.66) (width 0.12) (netNameRef "DB0") )
+ (line (pt 568.7 346.28) (pt 569.22 346.8) (width 0.12) (netNameRef "DB2") )
+ (line (pt 567.7 344.28) (pt 568.32 344.9) (width 0.12) (netNameRef "DB7") )
+ (line (pt 568.7 344.28) (pt 569.08 344.66) (width 0.12) (netNameRef "BWE") )
+ (line (pt 569.86 349.9) (pt 570.24 350.28) (width 0.12) (netNameRef "AB3") )
+ (line (pt 569.32 349.9) (pt 569.86 349.9) (width 0.12) (netNameRef "AB3") )
+ (line (pt 569.7 349.28) (pt 570.4 349.98) (width 0.12) (netNameRef "AB4") )
+ (line (pt 564.7 345.28) (pt 564.2 344.82) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 566.7 346.28) (pt 567.14 345.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 567.14 345.84) (pt 567.14 345.82) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 568.7 345.28) (pt 569.08 345.66) (width 0.12) (netNameRef "DB5") )
+ (line (pt 567.7 345.28) (pt 568.32 345.9) (width 0.12) (netNameRef "DB4") )
+ (line (pt 566.7 345.28) (pt 566.64 345.28) (width 0.2) (netNameRef "PF15") )
+ (line (pt 566.64 345.28) (pt 566.2 344.84) (width 0.2) (netNameRef "PF15") )
+ (line (pt 565.7 345.28) (pt 565.62 345.28) (width 0.2) (netNameRef "PF9") )
+ (line (pt 565.62 345.28) (pt 565.2 344.86) (width 0.2) (netNameRef "PF9") )
+ (line (pt 566.7 344.28) (pt 566.64 344.28) (width 0.2) (netNameRef "PF14") )
+ (line (pt 566.64 344.28) (pt 566.2 343.84) (width 0.2) (netNameRef "PF14") )
+ (line (pt 565.7 346.28) (pt 566.16 345.82) (width 0.2) (netNameRef "PF11") )
+ (line (pt 566.16 345.82) (pt 566.2 345.82) (width 0.2) (netNameRef "PF11") )
+ (line (pt 566.7 347.28) (pt 567.18 346.8) (width 0.2) (netNameRef "4_P_RQ") )
+ (line (pt 567.18 346.8) (pt 567.22 346.8) (width 0.2) (netNameRef "4_P_RQ") )
+ (line (pt 565.7 347.28) (pt 566.18 346.8) (width 0.2) (netNameRef "4_DIR1") )
+ (line (pt 566.18 346.8) (pt 566.22 346.8) (width 0.2) (netNameRef "4_DIR1") )
+ (line (pt 565.7 348.28) (pt 566.1 347.88) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 566.1 347.88) (pt 566.2 347.88) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 564.7 348.28) (pt 564.74 348.28) (width 0.2) (netNameRef "3_P_RQ") )
+ (line (pt 564.74 348.28) (pt 565.2 347.82) (width 0.2) (netNameRef "3_P_RQ") )
+ (line (pt 567.7 349.28) (pt 567.7 349.26) (width 0.2) (netNameRef "NSTAT7") )
+ (line (pt 567.7 349.26) (pt 567.24 348.8) (width 0.2) (netNameRef "NSTAT7") )
+ (line (pt 566.7 350.28) (pt 566.72 350.28) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 566.72 350.28) (pt 567.18 349.82) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 565.7 349.28) (pt 565.68 349.28) (width 0.2) (netNameRef "CONFD7") )
+ (line (pt 565.68 349.28) (pt 565.26 349.7) (width 0.2) (netNameRef "CONFD7") )
+ (line (pt 564.7 349.28) (pt 564.24 349.74) (width 0.2) (netNameRef "7MSEL1") )
+ (line (pt 568.7 343.28) (pt 569.2 343.78) (width 0.12) (netNameRef "AB6") )
+ (line (pt 564.7 346.32) (pt 564.24 346.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.26 343.84) (pt 564.22 343.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.7 343.28) (pt 567.18 343.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 568.1 346.68) (pt 568.1 346.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.24 349.74) (pt 566.24 349.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.7 346.28) (pt 564.7 346.32) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.7 344.28) (pt 564.26 343.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 567.7 346.28) (pt 568.1 346.68) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.7 349.28) (pt 566.24 349.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 565.7 344.28) (pt 564.7 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 567.7 357.28) (pt 568.32 357.9) (width 0.12) (netNameRef "DB13") )
+ (line (pt 569.08 357.66) (pt 568.7 357.28) (width 0.12) (netNameRef "DB12") )
+ (line (pt 567.7 356.28) (pt 568.32 356.9) (width 0.12) (netNameRef "DB10") )
+ (line (pt 568.7 356.28) (pt 569.08 356.66) (width 0.12) (netNameRef "DB9") )
+ (line (pt 568.32 355.9) (pt 567.7 355.28) (width 0.12) (netNameRef "AB18") )
+ (line (pt 567.7 353.28) (pt 568.32 353.9) (width 0.12) (netNameRef "AB12") )
+ (line (pt 568.7 353.28) (pt 569.08 353.66) (width 0.12) (netNameRef "AB11") )
+ (line (pt 567.7 352.28) (pt 568.32 351.66) (width 0.12) (netNameRef "AB2") )
+ (line (pt 569.08 351.9) (pt 568.7 352.28) (width 0.12) (netNameRef "AB1") )
+ (line (pt 568.7 355.28) (pt 569.08 355.66) (width 0.12) (netNameRef "AB14") )
+ (line (pt 569.7 356.28) (pt 569.72 356.26) (width 0.127) (netNameRef "DB8") )
+ (line (pt 565.7 357.28) (pt 565.72 357.28) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 565.72 357.28) (pt 566.18 356.82) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 566.7 357.28) (pt 566.72 357.28) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 566.72 357.28) (pt 567.22 356.78) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 565.7 351.28) (pt 565.72 351.28) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 565.72 351.28) (pt 566.2 350.8) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 566.7 351.28) (pt 566.72 351.28) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 566.72 351.28) (pt 567.16 350.84) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 568.12 350.7) (pt 568.12 350.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 567.7 351.28) (pt 568.12 350.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 565.7 353.28) (pt 565.72 353.28) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 565.72 353.28) (pt 566.18 352.82) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 564.7 353.28) (pt 565.18 352.8) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 565.7 354.28) (pt 566.2 353.78) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 566.2 353.78) (pt 566.2 353.76) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 566.7 354.28) (pt 567.18 353.8) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 567.18 353.8) (pt 567.2 353.8) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 566.7 355.28) (pt 566.7 355.32) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 566.7 355.32) (pt 567.16 355.78) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 565.7 355.28) (pt 565.72 355.28) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 565.72 355.28) (pt 566.18 354.82) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 564.7 355.28) (pt 564.72 355.28) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 564.72 355.28) (pt 565.2 354.8) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 564.7 356.28) (pt 565.12 355.86) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 565.12 355.86) (pt 565.12 355.84) (width 0.2) (netNameRef "+1,2V7") )
+ (line (pt 564.16 356.82) (pt 564.18 356.8) (width 0.127) (netNameRef "GND") )
+ (line (pt 564.66 357.28) (pt 564.18 356.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.16 356.82) (pt 564.18 356.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 568.2 354.78) (pt 568.2 354.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.14 355.84) (pt 566.16 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.6 356.28) (pt 566.16 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.7 352.28) (pt 567.14 351.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.62 357.28) (pt 564.16 356.82) (width 0.127) (netNameRef "GND") )
+ (line (pt 564.7 357.28) (pt 564.66 357.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 564.7 357.28) (pt 564.66 357.28) (width 0.127) (netNameRef "GND") )
+ (line (pt 564.66 357.28) (pt 564.62 357.28) (width 0.127) (netNameRef "GND") )
+ (line (pt 567.7 354.28) (pt 568.2 354.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 565.7 356.28) (pt 566.14 355.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 566.7 356.28) (pt 566.6 356.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 569.08 359.66) (pt 568.7 359.28) (width 0.12) (netNameRef "AB16") )
+ (line (pt 567.7 358.28) (pt 568.32 358.9) (width 0.12) (netNameRef "BOE") )
+ (line (pt 568.7 358.28) (pt 569.08 358.66) (width 0.12) (netNameRef "DB15") )
+ (line (pt 564.2 358.78) (pt 564.2 358.82) (width 0.127) (netNameRef "TP6") )
+ (line (pt 566.7 360.28) (pt 567.2 360.78) (width 0.127) (netNameRef "TP13") )
+ (line (pt 567.2 360.78) (pt 567.24 360.78) (width 0.127) (netNameRef "TP13") )
+ (line (pt 566.7 359.28) (pt 566.7 359.3) (width 0.127) (netNameRef "TP7") )
+ (line (pt 566.7 359.3) (pt 567.22 359.82) (width 0.127) (netNameRef "TP7") )
+ (line (pt 566.7 358.28) (pt 566.7 358.32) (width 0.127) (netNameRef "TP14") )
+ (line (pt 566.7 358.32) (pt 567.22 358.84) (width 0.127) (netNameRef "TP14") )
+ (line (pt 567.7 359.28) (pt 568.32 359.9) (width 0.12) (netNameRef "AB17") )
+ (line (pt 568.7 361.28) (pt 568.7 361.82) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 569.7 360.28) (pt 569.8 360.38) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 569.8 360.38) (pt 570.36 360.38) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 568.32 359.9) (pt 571.02 359.9) (width 0.12) (netNameRef "AB17") )
+ (line (pt 571.18 359.66) (pt 569.08 359.66) (width 0.12) (netNameRef "AB16") )
+ (line (pt 564.7 358.28) (pt 565.18 358.76) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 564.16 360.74) (pt 564.18 360.74) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 566.7 361.28) (pt 566.7 361.82) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 564.7 360.28) (pt 564.72 360.28) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 564.72 360.28) (pt 565.16 360.72) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 565.7 359.28) (pt 566.2 359.78) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 564.7 359.28) (pt 565.14 359.72) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 567.7 360.28) (pt 568.18 360.76) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 568.18 360.76) (pt 568.2 360.76) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 567.7 361.28) (pt 567.7 361.82) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 564.7 361.28) (pt 565.16 361.74) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 565.16 361.74) (pt 565.26 361.74) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 568.32 358.9) (pt 571.32 358.9) (width 0.12) (netNameRef "BOE") )
+ (line (pt 569.7 359.28) (pt 571.3 359.28) (width 0.12) (netNameRef "AB15") )
+ (line (pt 565.7 358.28) (pt 566.18 358.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 569.7 361.28) (pt 569.2 360.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 568.7 360.28) (pt 569.2 360.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 569.8 383.1) (pt 569.8 384.6) (width 0.65) (netNameRef "GND") )
+ (line (pt 575.88 258.46) (pt 575.78 258.36) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 576.92 272.22) (pt 573.3 272.22) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 574.51 323.61) (pt 574.88 323.24) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 574.88 322.01) (pt 574.86 321.99) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 574.88 323.24) (pt 574.88 322.01) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 574.89 323.91) (pt 575.6801 323.1199) (width 0.12) (netNameRef "AA1") )
+ (line (pt 575.6801 322.01) (pt 575.6601 321.99) (width 0.12) (netNameRef "AA1") )
+ (line (pt 575.6801 323.1199) (pt 575.6801 322.01) (width 0.12) (netNameRef "AA1") )
+ (line (pt 575.63 324.21) (pt 576.4802 323.3598) (width 0.12) (netNameRef "AA2") )
+ (line (pt 576.4802 322.01) (pt 576.4602 321.99) (width 0.12) (netNameRef "AA2") )
+ (line (pt 576.4802 323.3598) (pt 576.4802 322.01) (width 0.12) (netNameRef "AA2") )
+ (line (pt 576.31 324.51) (pt 577.2803 323.5397) (width 0.12) (netNameRef "AA3") )
+ (line (pt 577.2803 322.01) (pt 577.2603 321.99) (width 0.12) (netNameRef "AA3") )
+ (line (pt 577.2803 323.5397) (pt 577.2803 322.01) (width 0.12) (netNameRef "AA3") )
+ (line (pt 576.71 324.81) (pt 578.0804 323.4396) (width 0.12) (netNameRef "AA4") )
+ (line (pt 578.0804 322.01) (pt 578.0604 321.99) (width 0.12) (netNameRef "AA4") )
+ (line (pt 578.0804 323.4396) (pt 578.0804 322.01) (width 0.12) (netNameRef "AA4") )
+ (line (pt 577.01 325.11) (pt 578.8805 323.2395) (width 0.12) (netNameRef "ACE") )
+ (line (pt 578.8805 322.01) (pt 578.8605 321.99) (width 0.12) (netNameRef "ACE") )
+ (line (pt 578.8805 323.2395) (pt 578.8805 322.01) (width 0.12) (netNameRef "ACE") )
+ (line (pt 575.6801 334.0115) (pt 575.6601 333.9915) (width 0.12) (netNameRef "AA16") )
+ (line (pt 575.6801 333.3101) (pt 575.6801 334.0115) (width 0.12) (netNameRef "AA16") )
+ (line (pt 575.6601 332.7001) (pt 575.6601 333.9915) (width 0.12) (netNameRef "AA16") )
+ (line (pt 574.97 332.01) (pt 575.6601 332.7001) (width 0.12) (netNameRef "AA16") )
+ (line (pt 576.4602 332.5002) (pt 576.4602 333.9915) (width 0.12) (netNameRef "AA15") )
+ (line (pt 575.74 331.78) (pt 576.4602 332.5002) (width 0.12) (netNameRef "AA15") )
+ (line (pt 577.2603 332.4803) (pt 577.2603 333.9915) (width 0.12) (netNameRef "AOE") )
+ (line (pt 576.19 331.41) (pt 577.2603 332.4803) (width 0.12) (netNameRef "AOE") )
+ (line (pt 573.66 336.54) (pt 574.86 335.34) (width 0.12) (netNameRef "AA17") )
+ (line (pt 573.58 356.26) (pt 573.7 356.38) (width 0.127) (netNameRef "DB8") )
+ (line (pt 577.04 377.56) (pt 577.04 377.36) (width 1.0) (netNameRef "+5V") )
+ (line (pt 581.2808 322.01) (pt 581.2608 321.99) (width 0.12) (netNameRef "DA2") )
+ (line (pt 581.2808 323.6592) (pt 581.2808 322.01) (width 0.12) (netNameRef "DA2") )
+ (line (pt 580.4807 322.01) (pt 580.4607 321.99) (width 0.12) (netNameRef "DA1") )
+ (line (pt 580.4807 323.7393) (pt 580.4807 322.01) (width 0.12) (netNameRef "DA1") )
+ (line (pt 579.6806 322.01) (pt 579.6606 321.99) (width 0.12) (netNameRef "DA0") )
+ (line (pt 579.6806 323.4194) (pt 579.6806 322.01) (width 0.12) (netNameRef "DA0") )
+ (line (pt 584.84 327.1) (pt 585.2813 326.6587) (width 0.12) (netNameRef "DA5") )
+ (line (pt 586.0814 326.1986) (pt 584.94 327.34) (width 0.12) (netNameRef "DA6") )
+ (line (pt 586.0814 322.01) (pt 586.0614 321.99) (width 0.12) (netNameRef "DA6") )
+ (line (pt 586.0814 322.01) (pt 586.0814 326.1986) (width 0.12) (netNameRef "DA6") )
+ (line (pt 585.2813 322.01) (pt 585.2613 321.99) (width 0.12) (netNameRef "DA5") )
+ (line (pt 585.2813 326.6587) (pt 585.2813 322.01) (width 0.12) (netNameRef "DA5") )
+ (line (pt 582.0809 322.01) (pt 582.0609 321.99) (width 0.12) (netNameRef "DA3") )
+ (line (pt 582.0809 323.9991) (pt 582.0809 322.01) (width 0.12) (netNameRef "DA3") )
+ (line (pt 584.4812 324.8788) (pt 582.75 326.61) (width 0.12) (netNameRef "DA4") )
+ (line (pt 584.4812 322.01) (pt 584.4612 321.99) (width 0.12) (netNameRef "DA4") )
+ (line (pt 584.4812 322.01) (pt 584.4812 324.8788) (width 0.12) (netNameRef "DA4") )
+ (line (pt 579.77 326.31) (pt 582.0809 323.9991) (width 0.12) (netNameRef "DA3") )
+ (line (pt 582.861 321.99) (pt 582.861 320.439) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 583.6611 323.6189) (pt 583.38 323.9) (width 0.4) (netNameRef "GND") )
+ (line (pt 583.6611 321.99) (pt 583.6611 323.6189) (width 0.4) (netNameRef "GND") )
+ (line (pt 579.42 330.68) (pt 581.2808 332.5408) (width 0.12) (netNameRef "DA13") )
+ (line (pt 581.2808 334.0115) (pt 581.2608 333.9915) (width 0.12) (netNameRef "DA13") )
+ (line (pt 581.2808 332.5408) (pt 581.2808 334.0115) (width 0.12) (netNameRef "DA13") )
+ (line (pt 580.4807 334.0115) (pt 580.4607 333.9915) (width 0.12) (netNameRef "DA14") )
+ (line (pt 580.4807 334.0115) (pt 580.4807 332.6607) (width 0.12) (netNameRef "DA14") )
+ (line (pt 579.6806 334.0115) (pt 579.6606 333.9915) (width 0.12) (netNameRef "DA15") )
+ (line (pt 579.6806 334.0115) (pt 579.6806 332.6206) (width 0.12) (netNameRef "DA15") )
+ (line (pt 582.76 329.72) (pt 585.2813 332.2413) (width 0.12) (netNameRef "DA10") )
+ (line (pt 585.2813 334.0115) (pt 585.2613 333.9915) (width 0.12) (netNameRef "DA10") )
+ (line (pt 585.2813 332.2413) (pt 585.2813 334.0115) (width 0.12) (netNameRef "DA10") )
+ (line (pt 581.8 329.96) (pt 584.4812 332.6412) (width 0.12) (netNameRef "DA11") )
+ (line (pt 584.4812 334.0115) (pt 584.4612 333.9915) (width 0.12) (netNameRef "DA11") )
+ (line (pt 584.4812 332.6412) (pt 584.4812 334.0115) (width 0.12) (netNameRef "DA11") )
+ (line (pt 582.0809 334.0115) (pt 582.0609 333.9915) (width 0.12) (netNameRef "DA12") )
+ (line (pt 582.0809 332.3609) (pt 582.0809 334.0115) (width 0.12) (netNameRef "DA12") )
+ (line (pt 580.16 330.44) (pt 582.0809 332.3609) (width 0.12) (netNameRef "DA12") )
+ (line (pt 586.0814 334.0115) (pt 586.0614 333.9915) (width 0.12) (netNameRef "DA9") )
+ (line (pt 582.861 332.241) (pt 582.86 332.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 582.861 333.9915) (pt 582.861 332.241) (width 0.4) (netNameRef "GND") )
+ (line (pt 585.58 337.01) (pt 586.0814 336.5086) (width 0.12) (netNameRef "DA9") )
+ (line (pt 583.6611 335.7989) (pt 583.64 335.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 579.48 352.28) (pt 581.76 354.56) (width 0.12) (netNameRef "AB0") )
+ (line (pt 581.76 354.56) (pt 581.76 356.18) (width 0.12) (netNameRef "AB0") )
+ (line (pt 586.5606 352.2406) (pt 586.5606 356.18) (width 0.12) (netNameRef "DB0") )
+ (line (pt 584.1603 353.7803) (pt 584.1603 356.18) (width 0.12) (netNameRef "AB3") )
+ (line (pt 584.9604 351.3804) (pt 584.9604 356.18) (width 0.12) (netNameRef "AB4") )
+ (line (pt 585.7605 351.7805) (pt 585.7605 356.18) (width 0.12) (netNameRef "BCE") )
+ (line (pt 582.5601 356.18) (pt 582.5601 355.0201) (width 0.12) (netNameRef "AB1") )
+ (line (pt 582.5601 355.0201) (pt 579.44 351.9) (width 0.12) (netNameRef "AB1") )
+ (line (pt 583.3602 354.7202) (pt 583.3602 356.18) (width 0.12) (netNameRef "AB2") )
+ (line (pt 580.3 351.66) (pt 583.3602 354.7202) (width 0.12) (netNameRef "AB2") )
+ (line (pt 582.56 363.48) (pt 583.3602 364.2802) (width 0.12) (netNameRef "AB15") )
+ (line (pt 582.66 363.18) (pt 584.1603 364.6803) (width 0.12) (netNameRef "BOE") )
+ (line (pt 582.5601 364.8801) (pt 581.46 363.78) (width 0.12) (netNameRef "AB16") )
+ (line (pt 580.44 364.08) (pt 581.76 365.4) (width 0.12) (netNameRef "AB17") )
+ (line (pt 586.5606 366.5206) (pt 586.5606 368.1815) (width 0.12) (netNameRef "DB15") )
+ (line (pt 584.9604 366.8996) (pt 585.48 366.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 585.7605 366.6605) (pt 585.48 366.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 584.9604 368.1815) (pt 584.9604 366.8996) (width 0.4) (netNameRef "GND") )
+ (line (pt 585.7605 368.1815) (pt 585.7605 366.6605) (width 0.4) (netNameRef "GND") )
+ (line (pt 586.8815 322.01) (pt 586.8615 321.99) (width 0.12) (netNameRef "DA7") )
+ (line (pt 586.8815 325.7385) (pt 586.8815 322.01) (width 0.12) (netNameRef "DA7") )
+ (line (pt 587.6816 322.01) (pt 587.6616 321.99) (width 0.12) (netNameRef "AWE") )
+ (line (pt 587.6816 322.01) (pt 587.6816 325.2784) (width 0.12) (netNameRef "AWE") )
+ (line (pt 588.4817 322.01) (pt 588.4617 321.99) (width 0.12) (netNameRef "AA5") )
+ (line (pt 588.4817 322.01) (pt 588.4817 324.8183) (width 0.12) (netNameRef "AA5") )
+ (line (pt 589.2818 322.01) (pt 589.2618 321.99) (width 0.12) (netNameRef "AA6") )
+ (line (pt 589.2818 324.3582) (pt 589.2818 322.01) (width 0.12) (netNameRef "AA6") )
+ (line (pt 590.0819 322.01) (pt 590.0619 321.99) (width 0.12) (netNameRef "AA7") )
+ (line (pt 590.0819 322.01) (pt 590.0819 323.8981) (width 0.12) (netNameRef "AA7") )
+ (line (pt 590.882 322.01) (pt 590.862 321.99) (width 0.12) (netNameRef "AA8") )
+ (line (pt 590.882 322.01) (pt 590.882 323.438) (width 0.12) (netNameRef "AA8") )
+ (line (pt 591.6821 322.01) (pt 591.6621 321.99) (width 0.12) (netNameRef "AA9") )
+ (line (pt 591.6821 322.01) (pt 591.6821 322.9779) (width 0.12) (netNameRef "AA9") )
+ (line (pt 588.4817 334.0115) (pt 588.4617 333.9915) (width 0.12) (netNameRef "AA14") )
+ (line (pt 587.6816 334.0115) (pt 587.6616 333.9915) (width 0.12) (netNameRef "AA18") )
+ (line (pt 586.8615 333.9915) (pt 586.8815 334.0115) (width 0.12) (netNameRef "DA8") )
+ (line (pt 591.6821 334.0115) (pt 591.6621 333.9915) (width 0.12) (netNameRef "AA10") )
+ (line (pt 590.882 334.0115) (pt 590.862 333.9915) (width 0.12) (netNameRef "AA11") )
+ (line (pt 590.0819 334.0115) (pt 590.0619 333.9915) (width 0.12) (netNameRef "AA12") )
+ (line (pt 589.2818 334.0115) (pt 589.2618 333.9915) (width 0.12) (netNameRef "AA13") )
+ (line (pt 588.08 338.21) (pt 589.2818 337.0082) (width 0.12) (netNameRef "AA13") )
+ (line (pt 588.13 338.51) (pt 590.0819 336.5581) (width 0.12) (netNameRef "AA12") )
+ (line (pt 588.17 338.81) (pt 590.882 336.098) (width 0.12) (netNameRef "AA11") )
+ (line (pt 588.54 339.16) (pt 591.6821 336.0179) (width 0.12) (netNameRef "AA10") )
+ (line (pt 591.3612 351.8412) (pt 591.3612 356.18) (width 0.12) (netNameRef "DB4") )
+ (line (pt 593.7615 353.1615) (pt 593.7615 356.18) (width 0.12) (netNameRef "DB7") )
+ (line (pt 592.9614 352.7014) (pt 592.9614 356.18) (width 0.12) (netNameRef "DB6") )
+ (line (pt 592.1613 352.2413) (pt 592.1613 356.18) (width 0.12) (netNameRef "DB5") )
+ (line (pt 588.1608 353.1608) (pt 588.1608 356.18) (width 0.12) (netNameRef "DB2") )
+ (line (pt 587.3607 352.7007) (pt 587.3607 356.18) (width 0.12) (netNameRef "DB1") )
+ (line (pt 589.761 356.18) (pt 589.761 354.819) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.761 354.819) (pt 590.08 354.5) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 590.5611 356.18) (pt 590.5611 357.8389) (width 0.4) (netNameRef "GND") )
+ (line (pt 588.2 361.42) (pt 592.1613 365.3813) (width 0.12) (netNameRef "DB10") )
+ (line (pt 589.96 360.98) (pt 592.9614 363.9814) (width 0.12) (netNameRef "DB9") )
+ (line (pt 590.06 360.68) (pt 593.7615 364.3815) (width 0.12) (netNameRef "DB8") )
+ (line (pt 588.08 361.7) (pt 591.3612 364.9812) (width 0.12) (netNameRef "DB11") )
+ (line (pt 590.5611 368.1815) (pt 590.5611 366.3211) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 590.5611 366.3211) (pt 590.54 366.3) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.761 369.841) (pt 589.8 369.88) (width 0.4) (netNameRef "GND") )
+ (line (pt 589.761 368.1815) (pt 589.761 369.841) (width 0.4) (netNameRef "GND") )
+ (line (pt 598.5621 354.6221) (pt 598.5621 356.18) (width 0.12) (netNameRef "AB9") )
+ (line (pt 597.762 356.18) (pt 597.762 354.162) (width 0.12) (netNameRef "AB8") )
+ (line (pt 596.9619 353.7019) (pt 596.9619 356.18) (width 0.12) (netNameRef "AB7") )
+ (line (pt 596.1618 353.2418) (pt 596.1618 356.18) (width 0.12) (netNameRef "AB6") )
+ (line (pt 594.5616 353.6216) (pt 594.5616 356.18) (width 0.12) (netNameRef "BWE") )
+ (line (pt 595.3617 356.18) (pt 595.3617 352.7817) (width 0.12) (netNameRef "AB5") )
+ (line (pt 596.9619 365.9819) (pt 596.9619 368.1815) (width 0.12) (netNameRef "AB12") )
+ (line (pt 597.762 366.382) (pt 597.762 368.1815) (width 0.12) (netNameRef "AB11") )
+ (line (pt 598.5621 366.7821) (pt 598.5621 368.1815) (width 0.12) (netNameRef "AB10") )
+ (line (pt 603.8 342.5) (pt 603.8 340.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 608.18 348.74) (pt 606.34 348.74) (width 0.2) (netNameRef "VD7") )
+ (line (pt 606.34 348.74) (pt 606.26 348.82) (width 0.2) (netNameRef "VD7") )
+ (line (pt 608.2 346.22) (pt 606.34 346.22) (width 0.2) (netNameRef "VD8") )
+ (line (pt 606.34 346.22) (pt 606.26 346.3) (width 0.2) (netNameRef "VD8") )
+ (line (pt 603.8 344.5) (pt 602.3 344.5) (width 0.5) (netNameRef "+3,3V7") )
+ (line (pt 608.14 353.7) (pt 606.24 353.7) (width 0.2) (netNameRef "VD5") )
+ (line (pt 606.24 353.7) (pt 606.2 353.66) (width 0.2) (netNameRef "VD5") )
+ (line (pt 608.16 351.26) (pt 608.1 351.32) (width 0.2) (netNameRef "VD6") )
+ (line (pt 608.1 351.32) (pt 606.26 351.32) (width 0.2) (netNameRef "VD6") )
+ (line (pt 610.9 266.06) (pt 616.23 260.73) (width 0.2) (netNameRef "D_I") )
+ (line (pt 616.96 271.18) (pt 616.96 272.42) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 616.96 268.36) (pt 616.9 268.3) (width 0.5) (netNameRef "GND") )
+ (line (pt 616.96 269.58) (pt 616.96 268.36) (width 0.5) (netNameRef "GND") )
+ (line (pt 615.10048 288.71952) (pt 615.06 288.76) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 615.12096 287.41904) (pt 615.06 287.48) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 613.68 286.8) (pt 613.66 286.82) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 615.14144 286.11856) (pt 615.06 286.2) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 613.73168 285.46832) (pt 613.7 285.5) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 616.52784 284.16784) (pt 616.52 284.16) (width 0.4) (netNameRef "GND") )
+ (line (pt 616.08 290.02) (pt 615.02 291.08) (width 0.2) (netNameRef "NET00148") )
+ (line (pt 613.42 291.08) (pt 612.22 291.08) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 615.57168 294.24832) (pt 615.52 294.3) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 616.66144 294.89856) (pt 616.62 294.94) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 615.5712 295.5488) (pt 615.52 295.6) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 616.60096 296.19904) (pt 616.56 296.24) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 615.61072 296.84928) (pt 615.54 296.92) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 616.47216 292.94784) (pt 616.46 292.96) (width 0.4) (netNameRef "GND") )
+ (line (pt 613.34 299.58) (pt 612.1 299.58) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 612.1 299.58) (pt 612.08 299.6) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 614.94 299.58) (pt 616.14 299.58) (width 0.2) (netNameRef "NET00143") )
+ (line (pt 616.14 299.58) (pt 616.92 298.8) (width 0.2) (netNameRef "NET00143") )
+ (line (pt 614.9112 304.6288) (pt 614.9 304.64) (width 0.2) (netNameRef "4_IO4") )
+ (line (pt 616.08144 303.97856) (pt 616.08 303.98) (width 0.2) (netNameRef "4_IO5") )
+ (line (pt 614.88832 303.32832) (pt 614.88 303.32) (width 0.2) (netNameRef "4_IO6") )
+ (line (pt 616.48048 297.49952) (pt 616.48 297.5) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 615.57024 298.14976) (pt 615.56 298.16) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 616.46784 302.02784) (pt 616.46 302.02) (width 0.4) (netNameRef "GND") )
+ (line (pt 614.94976 307.22976) (pt 614.94 307.22) (width 0.2) (netNameRef "4_IO0") )
+ (line (pt 616.09952 306.57952) (pt 616.08 306.56) (width 0.2) (netNameRef "4_IO1") )
+ (line (pt 614.90928 305.92928) (pt 614.9 305.92) (width 0.2) (netNameRef "4_IO2") )
+ (line (pt 616.11904 305.27904) (pt 616.1 305.26) (width 0.2) (netNameRef "4_IO3") )
+ (line (pt 616.50784 311.62784) (pt 616.48 311.6) (width 0.4) (netNameRef "GND") )
+ (line (pt 614.96976 316.82976) (pt 614.96 316.82) (width 0.2) (netNameRef "3_IO0") )
+ (line (pt 616.08048 316.17952) (pt 616.08 316.18) (width 0.2) (netNameRef "3_IO1") )
+ (line (pt 614.86928 315.52928) (pt 614.86 315.52) (width 0.2) (netNameRef "3_IO2") )
+ (line (pt 616.08096 314.87904) (pt 616.08 314.88) (width 0.2) (netNameRef "3_IO3") )
+ (line (pt 614.9512 314.2288) (pt 614.94 314.24) (width 0.2) (netNameRef "3_IO4") )
+ (line (pt 616.02144 313.57856) (pt 616.02 313.58) (width 0.2) (netNameRef "3_IO5") )
+ (line (pt 614.79168 312.92832) (pt 614.78 312.94) (width 0.2) (netNameRef "3_IO6") )
+ (line (pt 615.78 318.54) (pt 615.78 318.58) (width 0.2) (netNameRef "3_DIR1") )
+ (line (pt 616.84 317.48) (pt 615.78 318.54) (width 0.2) (netNameRef "3_DIR1") )
+ (line (pt 610.2 346.22) (pt 615.54 346.22) (width 0.2) (netNameRef "NET00404") )
+ (line (pt 610.18 348.74) (pt 615.46 348.74) (width 0.2) (netNameRef "NET00403") )
+ (line (pt 615.46 348.74) (pt 615.5 348.7) (width 0.2) (netNameRef "NET00403") )
+ (line (pt 610.16 351.26) (pt 615.56 351.26) (width 0.2) (netNameRef "NET00402") )
+ (line (pt 615.56 351.26) (pt 615.58 351.24) (width 0.2) (netNameRef "NET00402") )
+ (line (pt 610.14 353.7) (pt 615.56 353.7) (width 0.2) (netNameRef "NET00401") )
+ (line (pt 615.56 353.7) (pt 615.58 353.72) (width 0.2) (netNameRef "NET00401") )
+ (line (pt 615.62832 406.84832) (pt 615.62 406.84) (width 0.2) (netNameRef "I_10M") )
+ (line (pt 616.34192 406.19808) (pt 616.34 406.2) (width 0.2) (netNameRef "I_1S") )
+ (line (pt 616.2 404.08) (pt 612.4 407.88) (width 0.2) (netNameRef "1S") )
+ (line (pt 614.42 411.98) (pt 612.38 411.98) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 612.38 411.98) (pt 612.3 411.9) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 616.20048 418.89952) (pt 616.2 418.9) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 614.95072 418.24928) (pt 614.9 418.3) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 616.20096 417.59904) (pt 616.2 417.6) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 614.9488 416.9488) (pt 614.9 416.9) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 616.20144 416.29856) (pt 616.2 416.3) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 614.90192 414.99808) (pt 614.9 415.0) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 616.68784 414.34784) (pt 616.62 414.28) (width 0.4) (netNameRef "GND") )
+ (line (pt 617.1 420.2) (pt 615.58 421.72) (width 0.2) (netNameRef "NET001490") )
+ (line (pt 613.98 421.72) (pt 612.86 421.72) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 616.22144 425.97856) (pt 616.2 426.0) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 614.97808 424.67808) (pt 614.9 424.6) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 614.94976 419.54976) (pt 614.9 419.5) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 614.2 431.48) (pt 614.18 431.5) (width 0.2) (netNameRef "+3,3V2") )
+ (line (pt 614.18 431.5) (pt 613.1 431.5) (width 0.2) (netNameRef "+3,3V2") )
+ (line (pt 615.12976 429.22976) (pt 615.1 429.2) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 615.12928 427.92928) (pt 615.1 427.9) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 616.22096 427.27904) (pt 616.2 427.3) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 616.36976 438.86976) (pt 616.36 438.86) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 615.23952 438.21952) (pt 615.22 438.2) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 616.32928 437.56928) (pt 616.32 437.56) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 615.20096 436.91904) (pt 615.2 436.92) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 616.3288 436.2688) (pt 616.32 436.26) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 615.18144 435.61856) (pt 615.18 435.62) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 616.28832 434.96832) (pt 616.28 434.96) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 615.44 448.24) (pt 615.42 448.22) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 616.38976 447.58976) (pt 616.38 447.58) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 615.27952 446.93952) (pt 615.26 446.92) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 616.37072 446.28928) (pt 616.36 446.3) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 615.24096 445.63904) (pt 615.24 445.64) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 616.3512 444.9888) (pt 616.34 445.0) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 615.16144 444.33856) (pt 615.16 444.34) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 616.30832 443.68832) (pt 616.3 443.68) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 615.16192 443.03808) (pt 615.14 443.06) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 618.55 259.46) (pt 620.08 259.46) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 620.08 259.46) (pt 620.1 259.48) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 623.27 263.27) (pt 622.76 263.78) (width 0.2) (netNameRef "RS") )
+ (line (pt 622.76 263.78) (pt 622.76 266.36) (width 0.2) (netNameRef "RS") )
+ (line (pt 618.84 266.34) (pt 618.8 266.3) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 618.8 266.3) (pt 617.66 266.3) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 624.36 266.36) (pt 624.38 266.34) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 624.38 266.34) (pt 624.38 265.4) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 618.55 262.0) (pt 621.9 262.0) (width 0.2) (netNameRef "RSR") )
+ (line (pt 623.2 262.0) (pt 620.44 264.76) (width 0.2) (netNameRef "~RS") )
+ (line (pt 620.44 264.76) (pt 620.44 266.34) (width 0.2) (netNameRef "~RS") )
+ (line (pt 620.13 263.27) (pt 620.14 263.28) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.55 263.27) (pt 620.13 263.27) (width 0.4) (netNameRef "GND") )
+ (line (pt 620.44 268.16) (pt 620.46 268.18) (width 0.2) (netNameRef "~RS") )
+ (line (pt 622.74 268.2) (pt 622.76 268.18) (width 0.2) (netNameRef "RS") )
+ (line (pt 622.99 277.87) (pt 620.46 275.34) (width 0.2) (netNameRef "~RS") )
+ (line (pt 623.38 276.6) (pt 622.74 275.96) (width 0.2) (netNameRef "RS") )
+ (line (pt 617.93904 287.48) (pt 618.0 287.41904) (width 0.127) (netNameRef "4_P_RDY") )
+ (line (pt 617.91856 286.2) (pt 618.0 286.11856) (width 0.127) (netNameRef "4_P_CW1") )
+ (line (pt 618.0 284.81808) (pt 620.53808 284.81808) (width 0.2) (netNameRef "4_RQ") )
+ (line (pt 620.53808 284.81808) (pt 620.54 284.82) (width 0.2) (netNameRef "4_RQ") )
+ (line (pt 623.65216 284.16784) (pt 623.2 284.62) (width 0.2) (netNameRef "4_P_RQ") )
+ (line (pt 618.0 288.06928) (pt 617.98928 288.08) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 618.0 286.7688) (pt 617.9688 286.8) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 618.08 293.59808) (pt 620.39808 293.59808) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 620.39808 293.59808) (pt 620.4 293.6) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 623.31216 292.94784) (pt 623.18 293.08) (width 0.2) (netNameRef "3_P_RQ") )
+ (line (pt 617.93808 302.78) (pt 618.04 302.67808) (width 0.12) (netNameRef "4_IO7") )
+ (line (pt 618.04 302.67808) (pt 617.99808 302.72) (width 0.2) (netNameRef "4_IO7") )
+ (line (pt 623.79024 298.14976) (pt 623.78 298.16) (width 0.4) (netNameRef "GND") )
+ (line (pt 617.96 312.27808) (pt 617.93808 312.3) (width 0.2) (netNameRef "3_IO7") )
+ (line (pt 619.61 308.47) (pt 619.62 308.46) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 618.04 307.88) (pt 619.04 307.88) (width 0.2) (netNameRef "4_DIR1") )
+ (line (pt 619.04 307.88) (pt 619.62 308.46) (width 0.2) (netNameRef "4_DIR1") )
+ (line (pt 622.98976 307.22976) (pt 622.98 307.22) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 623.77024 316.82976) (pt 622.78 317.82) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 621.18 321.26) (pt 621.18 322.42) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 621.18 322.42) (pt 621.16 322.44) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 622.78 321.26) (pt 622.78 322.88) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 622.78 322.88) (pt 622.76 322.9) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 618.54 346.22) (pt 618.56 346.24) (width 0.2) (netNameRef "GND") )
+ (line (pt 618.34 353.72) (pt 618.36 353.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 617.98 408.79904) (pt 619.63904 408.79904) (width 0.2) (netNameRef "P_BLOK") )
+ (line (pt 619.63904 408.79904) (pt 619.64 408.8) (width 0.2) (netNameRef "P_BLOK") )
+ (line (pt 617.98 409.44928) (pt 620.09072 409.44928) (width 0.2) (netNameRef "~P_ZAP") )
+ (line (pt 620.09072 409.44928) (pt 620.1 409.44) (width 0.2) (netNameRef "~P_ZAP") )
+ (line (pt 617.98 410.09952) (pt 619.65952 410.09952) (width 0.2) (netNameRef "P_PUSK") )
+ (line (pt 619.65952 410.09952) (pt 619.66 410.1) (width 0.2) (netNameRef "P_PUSK") )
+ (line (pt 617.98 410.74976) (pt 620.09024 410.74976) (width 0.2) (netNameRef "P_RES") )
+ (line (pt 620.09024 410.74976) (pt 620.1 410.74) (width 0.2) (netNameRef "P_RES") )
+ (line (pt 621.54784 405.54784) (pt 620.08 404.08) (width 0.2) (netNameRef "1S") )
+ (line (pt 623.44976 410.74976) (pt 623.44 410.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 619.41216 405.54784) (pt 619.42 405.54) (width 0.4) (netNameRef "GND") )
+ (line (pt 617.98 405.54784) (pt 619.41216 405.54784) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.08 415.64832) (pt 619.77168 415.64832) (width 0.2) (netNameRef "1_RQ") )
+ (line (pt 619.77168 415.64832) (pt 619.78 415.64) (width 0.2) (netNameRef "1_RQ") )
+ (line (pt 623.47808 414.99808) (pt 621.7 413.22) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 618.08 425.32832) (pt 620.93168 425.32832) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 620.93168 425.32832) (pt 621.16 425.1) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 623.49808 424.67808) (pt 623.46 424.64) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 623.68976 419.54976) (pt 623.68 419.54) (width 0.4) (netNameRef "GND") )
+ (line (pt 619.92784 424.02784) (pt 619.94 424.04) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.08 424.02784) (pt 619.92784 424.02784) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.08 429.88) (pt 617.4 429.88) (width 0.2) (netNameRef "NET001500") )
+ (line (pt 618.08 428.57952) (pt 618.05952 428.6) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 619.93216 433.66784) (pt 619.94 433.66) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.45024 429.22976) (pt 623.44 429.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.08 433.66784) (pt 619.93216 433.66784) (width 0.4) (netNameRef "GND") )
+ (line (pt 620.18 440.84) (pt 620.46 440.56) (width 0.12) (netNameRef "2_~OE1") )
+ (line (pt 620.46 440.56) (pt 622.15024 438.86976) (width 0.12) (netNameRef "2_~OE1") )
+ (line (pt 619.66784 442.38784) (pt 619.68 442.4) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.0 442.38784) (pt 619.66784 442.38784) (width 0.4) (netNameRef "GND") )
+ (line (pt 627.42 257.5) (pt 627.42 256.36) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 627.42 256.36) (pt 627.4 256.34) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 630.0 257.5) (pt 630.0 256.32) (width 0.4) (netNameRef "GND") )
+ (line (pt 627.17 260.73) (pt 627.38 260.94) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 627.38 260.94) (pt 629.94 260.94) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 629.94 260.94) (pt 629.96 260.96) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 627.38 262.54) (pt 627.38 263.8) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 631.78 260.96) (pt 631.8 260.94) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 629.96 260.96) (pt 631.78 260.96) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 629.96 262.56) (pt 629.96 263.86) (width 0.4) (netNameRef "GND") )
+ (line (pt 630.56144 286.11856) (pt 625.15264 286.11856) (width 0.2) (netNameRef "3_RDY") )
+ (line (pt 625.15264 285.46832) (pt 630.21168 285.46832) (width 0.2) (netNameRef "4_CW") )
+ (line (pt 625.15264 284.81808) (pt 629.64192 284.81808) (width 0.2) (netNameRef "3_CW") )
+ (line (pt 625.24192 296.84) (pt 625.23264 296.84928) (width 0.2) (netNameRef "3_STROB") )
+ (line (pt 629.61168 294.24832) (pt 625.23264 294.24832) (width 0.2) (netNameRef "3_P_A1") )
+ (line (pt 632.1 291.76) (pt 629.61168 294.24832) (width 0.2) (netNameRef "3_P_A1") )
+ (line (pt 628.96192 293.59808) (pt 632.08 290.48) (width 0.2) (netNameRef "4_P_A2") )
+ (line (pt 625.23264 293.59808) (pt 628.96192 293.59808) (width 0.2) (netNameRef "4_P_A2") )
+ (line (pt 625.15264 290.02) (pt 626.66 290.02) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.23264 298.8) (pt 626.58 298.8) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.58 298.8) (pt 626.66 298.72) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.19264 304.6288) (pt 631.1088 304.6288) (width 0.2) (netNameRef "4_OUT3") )
+ (line (pt 629.24 308.82) (pt 630.08 308.82) (width 0.2) (netNameRef "+3,3V2") )
+ (line (pt 630.08 308.82) (pt 630.1 308.8) (width 0.2) (netNameRef "+3,3V2") )
+ (line (pt 625.19264 307.88) (pt 625.19264 308.37264) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.19264 308.37264) (pt 625.74 308.92) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.19264 305.27904) (pt 629.47904 305.27904) (width 0.2) (netNameRef "4_OUT2") )
+ (line (pt 625.19264 305.92928) (pt 628.76928 305.92928) (width 0.2) (netNameRef "4_OUT1") )
+ (line (pt 625.19264 306.57952) (pt 628.73952 306.57952) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 625.19264 307.22976) (pt 626.04976 307.22976) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 626.04976 307.22976) (pt 627.64 308.82) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 625.11264 312.27808) (pt 626.71808 312.27808) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 626.71808 312.27808) (pt 626.72 312.28) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 625.11264 311.62784) (pt 627.58784 311.62784) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 627.58784 311.62784) (pt 627.6 311.64) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 625.11264 317.48) (pt 625.11264 317.85264) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.11264 317.85264) (pt 625.9 318.64) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.11264 316.17952) (pt 626.78048 316.17952) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 626.78048 316.17952) (pt 626.8 316.16) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 625.11264 315.52928) (pt 627.52928 315.52928) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 627.52928 315.52928) (pt 627.56 315.56) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 625.11264 314.87904) (pt 626.67904 314.87904) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 626.67904 314.87904) (pt 626.72 314.92) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 625.11264 314.2288) (pt 627.5488 314.2288) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 627.5488 314.2288) (pt 627.56 314.24) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 625.11264 313.57856) (pt 626.70144 313.57856) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 626.70144 313.57856) (pt 626.72 313.56) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 625.11264 312.92832) (pt 627.59168 312.92832) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 627.59168 312.92832) (pt 627.6 312.92) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 630.46 347.14) (pt 631.6 346.0) (width 1.0) (netNameRef "+3,3V2") )
+ (line (pt 625.13264 406.19808) (pt 627.90192 406.19808) (width 0.2) (netNameRef "10M") )
+ (line (pt 627.90192 406.19808) (pt 627.92 406.18) (width 0.2) (netNameRef "10M") )
+ (line (pt 625.13264 405.54784) (pt 626.63216 405.54784) (width 0.2) (netNameRef "1S") )
+ (line (pt 626.63216 405.54784) (pt 626.64 405.54) (width 0.2) (netNameRef "1S") )
+ (line (pt 625.23264 418.89952) (pt 630.77952 418.89952) (width 0.2) (netNameRef "1_P_A2") )
+ (line (pt 625.23264 418.24928) (pt 631.48928 418.24928) (width 0.2) (netNameRef "2_R\\W") )
+ (line (pt 625.23264 417.59904) (pt 632.23904 417.59904) (width 0.2) (netNameRef "1_R\\W") )
+ (line (pt 625.23264 420.2) (pt 626.84 420.2) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.84 420.2) (pt 626.9 420.14) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.23264 428.57952) (pt 631.89952 428.57952) (width 0.2) (netNameRef "2_STROB") )
+ (line (pt 625.23264 429.88) (pt 626.84 429.88) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.23264 433.66784) (pt 626.58784 433.66784) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 626.58784 433.66784) (pt 626.6 433.68) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 625.23264 439.52) (pt 625.24 439.52736) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.24 439.52736) (pt 625.24 440.36) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.23264 434.96832) (pt 626.59168 434.96832) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 626.59168 434.96832) (pt 626.6 434.96) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 625.23264 435.61856) (pt 627.29856 435.61856) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 627.29856 435.61856) (pt 627.32 435.64) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 625.23264 436.2688) (pt 626.5888 436.2688) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 626.5888 436.2688) (pt 626.6 436.28) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 625.23264 436.91904) (pt 627.27904 436.91904) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 627.27904 436.91904) (pt 627.28 436.92) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 625.23264 437.56928) (pt 626.56928 437.56928) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 626.56928 437.56928) (pt 626.6 437.6) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 625.23264 438.21952) (pt 627.21952 438.21952) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 627.21952 438.21952) (pt 627.24 438.24) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 625.15264 448.24) (pt 625.15264 449.09264) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.15264 449.09264) (pt 625.22 449.16) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.12288 447.56) (pt 625.15264 447.58976) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 625.15264 446.93952) (pt 630.93952 446.93952) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 625.15264 443.68832) (pt 631.35168 443.68832) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 625.15264 443.03808) (pt 628.92192 443.03808) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 627.49216 442.38784) (pt 625.15264 442.38784) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 635.36 280.32) (pt 638.82 280.32) (width 0.2) (netNameRef "4_CW") )
+ (line (pt 638.73 275.33) (pt 638.82 275.24) (width 0.2) (netNameRef "DT_N") )
+ (line (pt 635.35952 288.71952) (pt 635.84 289.2) (width 0.2) (netNameRef "3_P_A2") )
+ (line (pt 638.69072 288.06928) (pt 638.82 287.94) (width 0.2) (netNameRef "4_R\\W") )
+ (line (pt 635.46096 287.41904) (pt 636.2 286.68) (width 0.2) (netNameRef "3_R\\W") )
+ (line (pt 635.36 285.4) (pt 638.82 285.4) (width 0.2) (netNameRef "4_RDY") )
+ (line (pt 633.9912 286.7688) (pt 635.36 285.4) (width 0.2) (netNameRef "4_RDY") )
+ (line (pt 638.18096 296.19904) (pt 638.82 295.56) (width 0.2) (netNameRef "4_P_A0") )
+ (line (pt 635.2112 295.5488) (pt 636.44 294.32) (width 0.2) (netNameRef "3_P_A0") )
+ (line (pt 636.6 293.02) (pt 638.82 293.02) (width 0.2) (netNameRef "4_P_A1") )
+ (line (pt 634.72144 294.89856) (pt 636.6 293.02) (width 0.2) (netNameRef "4_P_A1") )
+ (line (pt 634.58 298.1) (pt 638.82 298.1) (width 0.2) (netNameRef "4_STROB") )
+ (line (pt 633.97952 297.49952) (pt 634.58 298.1) (width 0.2) (netNameRef "4_STROB") )
+ (line (pt 637.43216 302.02784) (pt 638.82 300.64) (width 0.2) (netNameRef "4_OUT7") )
+ (line (pt 638.31808 302.67808) (pt 638.82 303.18) (width 0.2) (netNameRef "4_OUT6") )
+ (line (pt 638.0 305.72) (pt 638.82 305.72) (width 0.2) (netNameRef "4_OUT5") )
+ (line (pt 637.26 308.26) (pt 638.82 308.26) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 637.28 310.8) (pt 638.82 310.8) (width 0.2) (netNameRef "4_OUT3") )
+ (line (pt 637.54 313.34) (pt 638.82 313.34) (width 0.2) (netNameRef "4_OUT2") )
+ (line (pt 638.72 315.88) (pt 638.82 315.88) (width 0.2) (netNameRef "4_OUT1") )
+ (line (pt 634.36 314.36) (pt 638.42 318.42) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 638.42 318.42) (pt 638.82 318.42) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 636.835 348.55) (pt 639.15 348.55) (width 1.0) (netNameRef "GND") )
+ (line (pt 639.15 348.55) (pt 639.18 348.58) (width 1.0) (netNameRef "GND") )
+ (line (pt 636.835 353.05) (pt 639.33 353.05) (width 1.0) (netNameRef "+5V") )
+ (line (pt 639.33 353.05) (pt 639.48 353.2) (width 1.0) (netNameRef "+5V") )
+ (line (pt 635.34 411.08) (pt 638.92 411.08) (width 0.2) (netNameRef "~RESET") )
+ (line (pt 634.35952 410.09952) (pt 635.34 411.08) (width 0.2) (netNameRef "~RESET") )
+ (line (pt 636.22928 409.44928) (pt 636.64 409.86) (width 0.2) (netNameRef "PUSK") )
+ (line (pt 638.66096 408.79904) (pt 638.92 408.54) (width 0.2) (netNameRef "~ZAP") )
+ (line (pt 636.0912 408.1488) (pt 636.88 407.36) (width 0.2) (netNameRef "BLOK") )
+ (line (pt 634.5 418.7) (pt 638.92 418.7) (width 0.2) (netNameRef "2_RDY") )
+ (line (pt 632.7488 416.9488) (pt 634.5 418.7) (width 0.2) (netNameRef "2_RDY") )
+ (line (pt 633.57856 416.29856) (pt 634.76 417.48) (width 0.2) (netNameRef "1_RDY") )
+ (line (pt 636.89168 415.64832) (pt 638.92 413.62) (width 0.2) (netNameRef "2_CW") )
+ (line (pt 635.57216 414.34784) (pt 637.52 412.4) (width 0.2) (netNameRef "1_CW") )
+ (line (pt 638.57856 425.97856) (pt 638.92 426.32) (width 0.2) (netNameRef "2_P_A1") )
+ (line (pt 635.47168 425.32832) (pt 635.76 425.04) (width 0.2) (netNameRef "1_P_A1") )
+ (line (pt 638.67216 424.02784) (pt 638.92 423.78) (width 0.2) (netNameRef "2_P_A2") )
+ (line (pt 634.48 421.24) (pt 638.92 421.24) (width 0.2) (netNameRef "2_R\\W") )
+ (line (pt 634.72 431.4) (pt 638.92 431.4) (width 0.2) (netNameRef "2_STROB") )
+ (line (pt 635.6 430.16) (pt 639.88 430.16) (width 0.2) (netNameRef "1_STROB") )
+ (line (pt 633.36928 427.92928) (pt 635.6 430.16) (width 0.2) (netNameRef "1_STROB") )
+ (line (pt 637.86 428.86) (pt 638.92 428.86) (width 0.2) (netNameRef "2_P_A0") )
+ (line (pt 636.27904 427.27904) (pt 637.86 428.86) (width 0.2) (netNameRef "2_P_A0") )
+ (line (pt 633.56928 446.28928) (pt 635.2 447.92) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 636.04096 445.63904) (pt 636.28 445.4) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 634.8112 444.9888) (pt 636.92 442.88) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 641.0 351.08) (pt 641.0 351.68) (width 1.0) (netNameRef "+5V") )
+ (line (pt 640.24 409.86) (pt 641.46 411.08) (width 0.2) (netNameRef "PUSK") )
+ (line (pt 640.28 407.36) (pt 641.46 408.54) (width 0.2) (netNameRef "BLOK") )
+ (line (pt 640.24 417.48) (pt 641.46 418.7) (width 0.2) (netNameRef "1_RDY") )
+ (line (pt 640.24 412.4) (pt 641.46 413.62) (width 0.2) (netNameRef "1_CW") )
+ (line (pt 640.18 425.04) (pt 641.46 426.32) (width 0.2) (netNameRef "1_P_A1") )
+ (line (pt 640.24 422.56) (pt 641.46 423.78) (width 0.2) (netNameRef "1_P_A2") )
+ (line (pt 640.18 419.96) (pt 641.46 421.24) (width 0.2) (netNameRef "1_R\\W") )
+ (line (pt 641.12 431.4) (pt 641.46 431.4) (width 0.2) (netNameRef "1_STROB") )
+ (line (pt 640.24 427.64) (pt 641.46 428.86) (width 0.2) (netNameRef "1_P_A0") )
+ (line (pt 641.46 433.94) (pt 640.28 432.76) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 640.22 440.32) (pt 641.46 441.56) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 640.2 437.76) (pt 641.46 439.02) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 640.22 435.24) (pt 641.46 436.48) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 640.2 447.92) (pt 641.46 449.18) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 640.22 445.4) (pt 641.46 446.64) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 640.24 442.88) (pt 641.46 444.1) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 640.26 450.52) (pt 641.46 451.72) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 414.0257 325.5657) (pt 416.3 327.84) (width 0.3) (netNameRef "NET00147") )
+ (line (pt 425.0 328.6) (pt 425.0 324.6) (width 0.3) (netNameRef "NET00544") )
+ (line (pt 428.1 311.2) (pt 429.1 312.2) (width 1.0) (netNameRef "NET00158") )
+ (line (pt 446.73 327.53) (pt 447.56 326.7) (width 0.3) (netNameRef "NET00032") )
+ (line (pt 444.23 328.15) (pt 444.23 327.47) (width 0.3) (netNameRef "NET00028") )
+ (line (pt 446.73 328.15) (pt 446.73 327.53) (width 0.3) (netNameRef "NET00032") )
+ (line (pt 447.38 328.8) (pt 449.28 326.9) (width 0.3) (netNameRef "NET00031") )
+ (line (pt 445.23 328.15) (pt 445.23 325.93) (width 0.3) (netNameRef "NET00033") )
+ (line (pt 445.73 328.15) (pt 445.73 327.27) (width 0.3) (netNameRef "NET00034") )
+ (line (pt 442.46 327.90578) (pt 442.46 328.32) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 446.1 343.7) (pt 446.1 341.9) (width 0.3) (netNameRef "NET00015") )
+ (line (pt 450.32 319.54) (pt 450.32 320.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 451.32 312.84) (pt 451.32 311.74) (width 0.5) (netNameRef "GND") )
+ (line (pt 477.87 350.25) (pt 477.8 350.32) (width 1.0) (netNameRef "+5V") )
+ (line (pt 478.86 411.48) (pt 478.82 411.44) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 486.8 320.0) (pt 486.66 320.14) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 486.66 320.14) (pt 484.62 320.14) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 484.33999 319.85999) (pt 484.62 320.14) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 486.94 327.76) (pt 485.98 328.72) (width 0.4) (netNameRef "GND") )
+ (line (pt 484.26 411.5) (pt 481.76 411.5) (width 0.3) (netNameRef "NET00375") )
+ (line (pt 481.76 411.5) (pt 481.74 411.48) (width 0.3) (netNameRef "NET00375") )
+ (line (pt 492.25 312.05) (pt 492.25 313.75) (width 0.127) (netNameRef "D0") )
+ (line (pt 493.75 312.37) (pt 493.75 313.75) (width 0.127) (netNameRef "D3") )
+ (line (pt 493.25 311.39) (pt 493.25 313.75) (width 0.127) (netNameRef "D2") )
+ (line (pt 494.25 325.75) (pt 494.25 329.39) (width 0.127) (netNameRef "~RSUSB") )
+ (line (pt 492.25 329.03) (pt 492.25 325.75) (width 0.127) (netNameRef "DREQ") )
+ (line (pt 492.75 328.67) (pt 492.75 325.75) (width 0.127) (netNameRef "~USB") )
+ (line (pt 491.75 325.75) (pt 491.75 330.41) (width 0.127) (netNameRef "INT_USB") )
+ (line (pt 491.75 312.47) (pt 491.52 312.24) (width 0.3) (netNameRef "GND") )
+ (line (pt 491.25 312.51) (pt 491.52 312.24) (width 0.3) (netNameRef "GND") )
+ (line (pt 491.52 312.16) (pt 491.52 312.24) (width 0.9) (netNameRef "GND") )
+ (line (pt 491.52 312.16) (pt 491.52 312.24) (width 0.9) (netNameRef "GND") )
+ (line (pt 491.75 313.75) (pt 491.75 312.47) (width 0.3) (netNameRef "GND") )
+ (line (pt 491.25 313.75) (pt 491.25 312.51) (width 0.3) (netNameRef "GND") )
+ (line (pt 488.1 381.9) (pt 488.1 389.24) (width 0.4) (netNameRef "NET00352") )
+ (line (pt 491.41264 411.5) (pt 490.02 411.5) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 490.02 411.5) (pt 489.84 411.32) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 502.28 312.04) (pt 497.92 316.4) (width 0.127) (netNameRef "D1") )
+ (line (pt 498.25 312.03) (pt 498.25 313.75) (width 0.127) (netNameRef "A1") )
+ (line (pt 498.75 313.75) (pt 498.75 312.31) (width 0.127) (netNameRef "A0") )
+ (line (pt 497.75 313.75) (pt 497.75 311.61) (width 0.127) (netNameRef "A2") )
+ (line (pt 497.25 313.75) (pt 497.25 311.65) (width 0.127) (netNameRef "A3") )
+ (line (pt 496.75 311.53) (pt 496.75 313.75) (width 0.127) (netNameRef "A4") )
+ (line (pt 498.25 331.23) (pt 498.25 325.75) (width 0.127) (netNameRef "~DMA_RD") )
+ (line (pt 496.75 325.75) (pt 496.75 331.15) (width 0.127) (netNameRef "ALE") )
+ (line (pt 496.25 313.75) (pt 496.25 312.53) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 496.25 312.53) (pt 495.98 312.26) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 502.26 320.0) (pt 502.48 319.78) (width 0.3) (netNameRef "GND") )
+ (line (pt 501.0 320.0) (pt 502.26 320.0) (width 0.3) (netNameRef "GND") )
+ (line (pt 499.735 358.295) (pt 499.58 358.14) (width 0.2) (netNameRef "NET00002") )
+ (line (pt 497.98 358.14) (pt 496.54 358.14) (width 0.4) (netNameRef "GND") )
+ (line (pt 495.72 381.9) (pt 495.72 389.24) (width 0.4) (netNameRef "NET00353") )
+ (line (pt 505.42 356.88) (pt 509.58 361.04) (width 0.127) (netNameRef "RU") )
+ (line (pt 508.0 373.62) (pt 508.0 375.06) (width 0.5) (netNameRef "NET00308") )
+ (line (pt 516.08 365.26) (pt 516.08 369.24) (width 0.127) (netNameRef "TP18") )
+ (line (pt 517.16 355.22) (pt 514.085 358.295) (width 0.127) (netNameRef "PWR") )
+ (line (pt 517.62 355.7) (pt 514.375 358.945) (width 0.127) (netNameRef "RD_U") )
+ (line (pt 517.36 356.7) (pt 514.465 359.595) (width 0.127) (netNameRef "WR_U") )
+ (line (pt 514.33432 365.1657) (pt 512.3 367.20002) (width 0.3) (netNameRef "NET00268") )
+ (line (pt 517.48 379.36) (pt 517.48 381.2) (width 0.2) (netNameRef "VD1") )
+ (line (pt 515.1 395.24) (pt 515.1 397.01) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 512.3 373.62) (pt 512.6 373.92) (width 0.5) (netNameRef "+5V") )
+ (line (pt 517.46 387.1) (pt 517.46 388.48) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.59 403.39) (pt 512.59 406.13) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 514.68 410.6) (pt 514.68 411.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 512.4 411.26) (pt 512.4 412.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 523.5 315.84) (pt 519.7 312.04) (width 0.127) (netNameRef "D1") )
+ (line (pt 522.24 319.08) (pt 520.8 320.52) (width 0.127) (netNameRef "D9") )
+ (line (pt 522.34 319.34) (pt 520.48 321.2) (width 0.127) (netNameRef "D10") )
+ (line (pt 522.0 320.04) (pt 520.42 321.62) (width 0.127) (netNameRef "D11") )
+ (line (pt 520.54 327.3) (pt 520.54 328.02) (width 0.3) (netNameRef "GND") )
+ (line (pt 523.22 357.7) (pt 523.22 361.12) (width 0.127) (netNameRef "TP19") )
+ (line (pt 520.7 358.22) (pt 520.7 358.76) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 520.7 343.22) (pt 520.7 342.66) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 522.7 350.24) (pt 523.2 350.74) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 522.22 357.7) (pt 522.22 359.12) (width 0.127) (netNameRef "TP18") )
+ (line (pt 520.22 358.26) (pt 520.22 357.7) (width 0.127) (netNameRef "RU") )
+ (line (pt 523.7 351.22) (pt 523.7 350.22) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 524.22 366.4) (pt 524.22 357.7) (width 0.127) (netNameRef "TP20") )
+ (line (pt 518.87 365.47) (pt 518.87 369.15) (width 0.127) (netNameRef "TP19") )
+ (line (pt 521.7 343.16) (pt 522.22 342.64) (width 0.2) (netNameRef "D7") )
+ (line (pt 522.7 343.22) (pt 523.22 342.7) (width 0.2) (netNameRef "A17") )
+ (line (pt 523.7 343.22) (pt 524.18 342.74) (width 0.2) (netNameRef "D3") )
+ (line (pt 524.7 343.22) (pt 525.2 342.72) (width 0.2) (netNameRef "D0") )
+ (line (pt 518.7 358.22) (pt 519.2 357.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 521.28 381.2) (pt 521.28 377.56) (width 0.2) (netNameRef "VD2") )
+ (line (pt 525.08 377.06) (pt 525.08 381.2) (width 0.2) (netNameRef "VD3") )
+ (line (pt 518.94 410.66) (pt 518.94 414.1) (width 0.5) (netNameRef "TP27") )
+ (line (pt 526.26 304.84) (pt 526.2 304.9) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 530.22 289.64) (pt 530.36 289.78) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 530.36 289.78) (pt 530.56 289.58) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 529.2 312.78) (pt 527.3 310.88) (width 0.127) (netNameRef "D0") )
+ (line (pt 530.56 319.3) (pt 529.82 320.04) (width 0.127) (netNameRef "D11") )
+ (line (pt 533.24 350.76) (pt 532.7 350.22) (width 0.127) (netNameRef "H11") )
+ (line (pt 526.7 350.22) (pt 526.18 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 528.7 350.22) (pt 528.18 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 531.7 358.22) (pt 531.7 358.9) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 531.7 343.22) (pt 531.7 342.56) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 526.7 343.14) (pt 527.18 342.66) (width 0.2) (netNameRef "BMOD1") )
+ (line (pt 527.7 343.22) (pt 528.2 342.72) (width 0.2) (netNameRef "A16") )
+ (line (pt 528.7 358.22) (pt 528.7 358.96) (width 0.2) (netNameRef "3S") )
+ (line (pt 529.7 358.22) (pt 529.7 358.92) (width 0.2) (netNameRef "1S") )
+ (line (pt 527.7 350.22) (pt 527.18 350.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 529.18 381.2) (pt 529.18 373.48) (width 0.2) (netNameRef "VD4") )
+ (line (pt 529.18 373.48) (pt 527.7 372.0) (width 0.2) (netNameRef "VD4") )
+ (line (pt 540.295 259.28) (pt 540.295 261.995) (width 1.0) (netNameRef "GND") )
+ (line (pt 534.23 290.85) (pt 534.23 289.58) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 534.23 289.58) (pt 534.23 288.31) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 540.58 288.31) (pt 540.58 289.58) (width 0.6) (netNameRef "NET00312") )
+ (line (pt 535.1 281.9) (pt 535.0 281.8) (width 0.9) (netNameRef "GND") )
+ (line (pt 537.215 281.9) (pt 535.1 281.9) (width 0.9) (netNameRef "GND") )
+ (line (pt 536.3 320.3) (pt 536.3 319.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 540.32 312.2) (pt 538.32 314.2) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 540.3 320.3) (pt 540.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 539.3 320.3) (pt 539.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 537.3 320.3) (pt 537.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 538.3 320.3) (pt 538.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 544.2 271.5) (pt 544.2 276.4) (width 0.65) (netNameRef "NET00255") )
+ (line (pt 547.28 262.32) (pt 547.28 259.28) (width 1.0) (netNameRef "+5V") )
+ (line (pt 547.56 290.9) (pt 547.56 282.18) (width 0.127) (netNameRef "R6") )
+ (line (pt 544.2 286.64) (pt 544.2 281.9) (width 0.65) (netNameRef "NET00255") )
+ (line (pt 544.2 281.9) (pt 544.2 278.5) (width 0.65) (netNameRef "NET00255") )
+ (line (pt 544.46 315.06) (pt 541.82 312.42) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 541.82 312.42) (pt 541.82 310.78) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 544.8 309.4) (pt 544.8 312.5) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 544.3 327.14) (pt 544.86 327.7) (width 0.127) (netNameRef "SCK") )
+ (line (pt 544.86 327.7) (pt 548.26 327.7) (width 0.127) (netNameRef "SCK") )
+ (line (pt 542.3 319.3) (pt 542.3 320.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 543.3 327.06) (pt 544.66 328.42) (width 0.127) (netNameRef "MOSI") )
+ (line (pt 543.8 327.06) (pt 544.84 328.1) (width 0.127) (netNameRef "MISO") )
+ (line (pt 541.3 320.3) (pt 541.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 545.98 350.22) (pt 547.04 351.28) (width 0.127) (netNameRef "CLKF") )
+ (line (pt 543.98 357.88) (pt 544.38 358.28) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 548.96 323.8) (pt 554.64 318.12) (width 0.127) (netNameRef "PF8") )
+ (line (pt 549.22 357.8) (pt 549.7 358.28) (width 0.127) (netNameRef "H4") )
+ (line (pt 549.7 343.2) (pt 549.34 342.84) (width 0.2) (netNameRef "4_IO4") )
+ (line (pt 550.7 343.28) (pt 550.26 342.84) (width 0.2) (netNameRef "3_IO3") )
+ (line (pt 550.26 342.84) (pt 550.26 342.82) (width 0.2) (netNameRef "3_IO3") )
+ (line (pt 554.7 343.26) (pt 554.22 342.78) (width 0.2) (netNameRef "A10") )
+ (line (pt 551.66 358.28) (pt 551.2 357.82) (width 0.2) (netNameRef "D5") )
+ (line (pt 550.68 358.28) (pt 550.22 357.82) (width 0.2) (netNameRef "D0") )
+ (line (pt 550.7 350.36) (pt 550.32 350.74) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 551.62 343.28) (pt 551.18 342.84) (width 0.2) (netNameRef "A11") )
+ (line (pt 552.66 343.28) (pt 552.2 342.82) (width 0.2) (netNameRef "A17") )
+ (line (pt 553.66 343.28) (pt 553.24 342.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 551.7 350.28) (pt 551.2 350.78) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.08 259.66) (pt 563.08 258.36) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 561.7 358.28) (pt 562.2 357.78) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 562.7 358.28) (pt 563.18 357.8) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 558.7 343.28) (pt 559.2 342.78) (width 0.2) (netNameRef "~ARE") )
+ (line (pt 562.7 343.28) (pt 562.26 342.84) (width 0.2) (netNameRef "PF5") )
+ (line (pt 562.26 342.84) (pt 562.26 342.82) (width 0.2) (netNameRef "PF5") )
+ (line (pt 560.7 343.26) (pt 561.16 342.8) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.14 342.84) (pt 558.16 342.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 558.7 350.28) (pt 559.24 350.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 557.7 343.28) (pt 558.14 342.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 559.24 350.74) (pt 559.7 350.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 571.3 267.98) (pt 571.3 258.96) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 568.16 265.78) (pt 568.16 258.36) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 570.84 331.41) (pt 564.28 337.97) (width 0.12) (netNameRef "AOE") )
+ (line (pt 565.85 337.16) (pt 571.0 332.01) (width 0.12) (netNameRef "AA16") )
+ (line (pt 564.7 337.98) (pt 570.9 331.78) (width 0.12) (netNameRef "AA15") )
+ (line (pt 564.7 343.28) (pt 565.16 342.82) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 564.7 350.28) (pt 564.22 350.76) (width 0.2) (netNameRef "7MSEL0") )
+ (line (pt 567.7 350.28) (pt 568.12 350.7) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 567.7 343.28) (pt 567.2 342.78) (width 0.2) (netNameRef "~AOE") )
+ (line (pt 569.8 381.1) (pt 569.8 379.3) (width 0.65) (netNameRef "+1,2V7") )
+ (line (pt 575.88 265.68) (pt 575.88 258.46) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 576.32 266.84) (pt 573.24 263.76) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 573.24 263.76) (pt 573.24 258.36) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 574.86 335.34) (pt 574.86 333.9915) (width 0.12) (netNameRef "AA17") )
+ (line (pt 578.0604 335.0804) (pt 578.66 335.68) (width 0.4) (netNameRef "GND") )
+ (line (pt 578.8605 335.4795) (pt 578.66 335.68) (width 0.4) (netNameRef "GND") )
+ (line (pt 578.0604 333.9915) (pt 578.0604 335.0804) (width 0.4) (netNameRef "GND") )
+ (line (pt 578.8605 333.9915) (pt 578.8605 335.4795) (width 0.4) (netNameRef "GND") )
+ (line (pt 573.0 353.28) (pt 578.6 358.88) (width 0.12) (netNameRef "AB10") )
+ (line (pt 572.98 353.66) (pt 578.5 359.18) (width 0.12) (netNameRef "AB11") )
+ (line (pt 572.82 353.9) (pt 578.4 359.48) (width 0.12) (netNameRef "AB12") )
+ (line (pt 573.74 355.28) (pt 578.24 359.78) (width 0.12) (netNameRef "AB13") )
+ (line (pt 573.78 355.66) (pt 578.2 360.08) (width 0.12) (netNameRef "AB14") )
+ (line (pt 578.1 360.38) (pt 573.62 355.9) (width 0.12) (netNameRef "AB18") )
+ (line (pt 573.7 356.38) (pt 578.0 360.68) (width 0.12) (netNameRef "DB8") )
+ (line (pt 573.58 356.66) (pt 577.9 360.98) (width 0.12) (netNameRef "DB9") )
+ (line (pt 572.32 356.9) (pt 576.84 361.42) (width 0.12) (netNameRef "DB10") )
+ (line (pt 572.3 357.28) (pt 576.72 361.7) (width 0.12) (netNameRef "DB11") )
+ (line (pt 576.64 361.98) (pt 572.32 357.66) (width 0.12) (netNameRef "DB12") )
+ (line (pt 572.24 357.9) (pt 576.62 362.28) (width 0.12) (netNameRef "DB13") )
+ (line (pt 586.0814 336.5086) (pt 586.0814 334.0115) (width 0.12) (netNameRef "DA9") )
+ (line (pt 582.861 320.439) (pt 583.16 320.14) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 583.6611 333.9915) (pt 583.6611 335.7989) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 580.66 350.28) (pt 584.1603 353.7803) (width 0.12) (netNameRef "AB3") )
+ (line (pt 581.88 347.9) (pt 585.7605 351.7805) (width 0.12) (netNameRef "BCE") )
+ (line (pt 581.98 347.66) (pt 586.5606 352.2406) (width 0.12) (netNameRef "DB0") )
+ (line (pt 582.5601 368.1815) (pt 582.5601 364.8801) (width 0.12) (netNameRef "AB16") )
+ (line (pt 583.3602 364.2802) (pt 583.3602 368.1815) (width 0.12) (netNameRef "AB15") )
+ (line (pt 584.1603 364.6803) (pt 584.1603 368.1815) (width 0.12) (netNameRef "BOE") )
+ (line (pt 583.56 349.98) (pt 584.9604 351.3804) (width 0.12) (netNameRef "AB4") )
+ (line (pt 581.76 365.4) (pt 581.76 368.1815) (width 0.12) (netNameRef "AB17") )
+ (line (pt 582.92 362.88) (pt 586.5606 366.5206) (width 0.12) (netNameRef "DB15") )
+ (line (pt 588.4817 335.3083) (pt 588.4817 334.0115) (width 0.12) (netNameRef "AA14") )
+ (line (pt 587.6816 335.7084) (pt 587.6816 334.0115) (width 0.12) (netNameRef "AA18") )
+ (line (pt 586.8815 334.0115) (pt 586.8815 336.1085) (width 0.12) (netNameRef "DA8") )
+ (line (pt 589.2818 337.0082) (pt 589.2818 334.0115) (width 0.12) (netNameRef "AA13") )
+ (line (pt 590.0819 336.5581) (pt 590.0819 334.0115) (width 0.12) (netNameRef "AA12") )
+ (line (pt 590.882 336.098) (pt 590.882 334.0115) (width 0.12) (netNameRef "AA11") )
+ (line (pt 591.6821 336.0179) (pt 591.6821 334.0115) (width 0.12) (netNameRef "AA10") )
+ (line (pt 588.9609 356.18) (pt 588.9609 349.7809) (width 0.12) (netNameRef "DB3") )
+ (line (pt 592.1613 365.3813) (pt 592.1613 368.1815) (width 0.12) (netNameRef "DB10") )
+ (line (pt 593.7615 364.3815) (pt 593.7615 368.1815) (width 0.12) (netNameRef "DB8") )
+ (line (pt 592.9614 363.9814) (pt 592.9614 368.1815) (width 0.12) (netNameRef "DB9") )
+ (line (pt 587.3607 368.1815) (pt 587.3607 365.1607) (width 0.12) (netNameRef "DB14") )
+ (line (pt 588.1608 365.3808) (pt 588.1608 368.1815) (width 0.12) (netNameRef "DB13") )
+ (line (pt 588.9609 368.1815) (pt 588.9609 364.6409) (width 0.12) (netNameRef "DB12") )
+ (line (pt 591.3612 364.9812) (pt 591.3612 368.1815) (width 0.12) (netNameRef "DB11") )
+ (line (pt 590.5611 357.8389) (pt 590.44 357.96) (width 0.4) (netNameRef "GND") )
+ (line (pt 596.1618 365.5818) (pt 596.1618 368.1815) (width 0.12) (netNameRef "AB13") )
+ (line (pt 595.3617 365.1817) (pt 595.3617 368.1815) (width 0.12) (netNameRef "AB14") )
+ (line (pt 594.5616 368.1815) (pt 594.5616 364.7816) (width 0.12) (netNameRef "AB18") )
+ (line (pt 610.9 269.78) (pt 610.9 266.06) (width 0.2) (netNameRef "D_I") )
+ (line (pt 613.95024 289.36976) (pt 613.84 289.48) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 616.6 411.4) (pt 616.02 411.98) (width 0.4) (netNameRef "NET00145") )
+ (line (pt 615.0288 426.6288) (pt 615.0 426.6) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 615.16192 434.31808) (pt 615.16 434.32) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 622.76 266.36) (pt 622.76 268.18) (width 0.2) (netNameRef "RS") )
+ (line (pt 620.44 266.34) (pt 620.44 268.16) (width 0.2) (netNameRef "~RS") )
+ (line (pt 620.46 275.34) (pt 620.46 268.18) (width 0.2) (netNameRef "~RS") )
+ (line (pt 622.74 275.96) (pt 622.74 268.2) (width 0.2) (netNameRef "RS") )
+ (line (pt 623.64976 289.36976) (pt 623.64 289.36) (width 0.4) (netNameRef "GND") )
+ (line (pt 622.78 317.82) (pt 622.78 321.26) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 627.06 259.46) (pt 627.42 259.1) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 627.42 259.1) (pt 630.0 259.1) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 631.86 259.1) (pt 631.88 259.08) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 630.0 259.1) (pt 631.86 259.1) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 630.46 350.8) (pt 630.46 347.14) (width 1.0) (netNameRef "+3,3V2") )
+ (line (pt 625.13264 411.4) (pt 626.74 411.4) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.23264 434.31808) (pt 627.35808 434.31808) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 627.35808 434.31808) (pt 627.36 434.32) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 635.60832 303.32832) (pt 638.0 305.72) (width 0.2) (netNameRef "4_OUT5") )
+ (line (pt 632.97856 303.97856) (pt 637.26 308.26) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 634.36 312.2) (pt 634.36 314.36) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 636.1088 426.6288) (pt 637.12 427.64) (width 0.2) (netNameRef "1_P_A0") )
+ (line (pt 633.10144 444.33856) (pt 637.12 440.32) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 640.18 274.06) (pt 641.36 275.24) (width 0.2) (netNameRef "DT_P") )
+ (line (pt 517.98 364.86) (pt 517.98 371.84) (width 0.127) (netNameRef "TP15") )
+ (line (pt 520.58 364.76) (pt 520.58 371.84) (width 0.127) (netNameRef "TP16") )
+ (line (pt 524.7 358.22) (pt 524.7 370.12) (width 0.127) (netNameRef "TP17") )
+ (line (pt 526.2 357.72) (pt 526.2 370.64) (width 0.2) (netNameRef "VD1") )
+ (line (pt 526.7 372.14) (pt 526.7 358.22) (width 0.2) (netNameRef "VD2") )
+ (line (pt 527.2 357.72) (pt 527.2 374.94) (width 0.2) (netNameRef "VD3") )
+ (line (pt 527.7 372.0) (pt 527.7 358.22) (width 0.2) (netNameRef "VD4") )
+ (line (pt 545.3 310.3) (pt 545.3 293.16) (width 0.127) (netNameRef "R6") )
+ (line (pt 545.82 294.32) (pt 545.82 310.78) (width 0.127) (netNameRef "R5") )
+ (line (pt 556.06 319.5) (pt 556.06 306.34) (width 0.127) (netNameRef "PF3") )
+ (line (pt 555.44 319.56) (pt 555.44 304.36) (width 0.127) (netNameRef "PF2") )
+ (line (pt 554.64 318.12) (pt 554.64 303.64) (width 0.127) (netNameRef "PF8") )
+ (line (pt 556.54 319.42) (pt 556.54 304.8) (width 0.127) (netNameRef "SCK") )
+ (line (pt 557.84 319.14) (pt 557.84 293.7) (width 0.127) (netNameRef "MOSI") )
+ (line (pt 557.12 319.32) (pt 557.12 303.32) (width 0.127) (netNameRef "MISO") )
+ (line (pt 386.86 266.06) (pt 389.94 266.06) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 424.5 311.2) (pt 428.1 311.2) (width 1.0) (netNameRef "NET00158") )
+ (line (pt 426.6 324.6) (pt 426.6 327.1) (width 0.3) (netNameRef "NET00542") )
+ (line (pt 410.4 322.04) (pt 412.79431 324.43431) (width 0.3) (netNameRef "NET00008") )
+ (line (pt 409.36 331.14) (pt 411.34 331.14) (width 0.3) (netNameRef "NET00142") )
+ (line (pt 411.34 331.14) (pt 412.26 330.22) (width 0.3) (netNameRef "NET00142") )
+ (line (pt 422.45 329.44) (pt 417.94 329.44) (width 0.3) (netNameRef "NET00544") )
+ (line (pt 435.35 299.67) (pt 434.4 298.72) (width 1.0) (netNameRef "GND") )
+ (line (pt 449.82 311.74) (pt 451.32 311.74) (width 0.5) (netNameRef "GND") )
+ (line (pt 449.52 317.94) (pt 448.82 317.24) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 450.22 315.84) (pt 448.82 317.24) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 450.32 317.94) (pt 449.52 317.94) (width 0.6) (netNameRef "+3,3V") )
+ (line (pt 449.28 326.9) (pt 449.78 326.9) (width 0.3) (netNameRef "NET00031") )
+ (line (pt 447.38 330.8) (pt 450.08 330.8) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 443.58 329.8) (pt 441.42 329.8) (width 0.3) (netNameRef "NET00004") )
+ (line (pt 434.52 330.32) (pt 433.76569 329.56569) (width 0.3) (netNameRef "NET00022") )
+ (line (pt 443.58 329.3) (pt 441.02578 329.3) (width 0.3) (netNameRef "NET00007") )
+ (line (pt 449.46 330.3) (pt 450.34 329.42) (width 0.3) (netNameRef "NET00039") )
+ (line (pt 447.38 330.3) (pt 449.46 330.3) (width 0.3) (netNameRef "NET00039") )
+ (line (pt 480.95 293.71) (pt 479.8 292.56) (width 1.0) (netNameRef "GND") )
+ (line (pt 489.0 316.5) (pt 487.44 316.5) (width 0.3) (netNameRef "PVDD") )
+ (line (pt 489.0 317.5) (pt 485.96 317.5) (width 0.3) (netNameRef "RREF") )
+ (line (pt 489.0 318.5) (pt 487.38 318.5) (width 0.3) (netNameRef "PVDD") )
+ (line (pt 486.08002 319.5) (pt 489.0 319.5) (width 0.3) (netNameRef "RSDM") )
+ (line (pt 490.9 326.16) (pt 486.94 326.16) (width 0.3) (netNameRef "VBUS") )
+ (line (pt 488.98 323.02) (pt 486.04 323.02) (width 0.2) (netNameRef "RPU") )
+ (line (pt 489.0 321.5) (pt 486.06 321.5) (width 0.3) (netNameRef "RSDP") )
+ (line (pt 489.0 321.0) (pt 487.12 321.0) (width 0.3) (netNameRef "USB_DP") )
+ (line (pt 487.82 322.0) (pt 487.5 322.32) (width 0.3) (netNameRef "GND") )
+ (line (pt 489.0 322.0) (pt 487.82 322.0) (width 0.3) (netNameRef "GND") )
+ (line (pt 487.02 352.5) (pt 489.62 355.1) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 480.645 354.75) (pt 479.49 354.75) (width 1.0) (netNameRef "GND") )
+ (line (pt 488.1 374.28) (pt 487.7 374.28) (width 0.5) (netNameRef "NET00350") )
+ (line (pt 487.7 374.28) (pt 485.64 376.34) (width 0.5) (netNameRef "NET00350") )
+ (line (pt 487.06 379.36) (pt 488.1 379.36) (width 0.5) (netNameRef "+5V") )
+ (line (pt 487.96 394.7) (pt 487.86 394.8) (width 0.4) (netNameRef "NET00352") )
+ (line (pt 487.27904 408.89904) (pt 488.57952 410.19952) (width 0.3) (netNameRef "NET00006") )
+ (line (pt 519.7 312.04) (pt 502.28 312.04) (width 0.127) (netNameRef "D1") )
+ (line (pt 521.6 309.5) (pt 500.78 309.5) (width 0.127) (netNameRef "A1") )
+ (line (pt 501.06 310.0) (pt 520.92 310.0) (width 0.127) (netNameRef "A0") )
+ (line (pt 497.84 306.8) (pt 493.25 311.39) (width 0.127) (netNameRef "D2") )
+ (line (pt 497.74 306.56) (pt 492.25 312.05) (width 0.127) (netNameRef "D0") )
+ (line (pt 521.5 306.56) (pt 497.74 306.56) (width 0.127) (netNameRef "D0") )
+ (line (pt 521.18 306.8) (pt 497.84 306.8) (width 0.127) (netNameRef "D2") )
+ (line (pt 520.54 307.04) (pt 499.08 307.04) (width 0.127) (netNameRef "D3") )
+ (line (pt 519.98 307.28) (pt 499.92 307.28) (width 0.127) (netNameRef "D4") )
+ (line (pt 500.46 308.9) (pt 521.0 308.9) (width 0.127) (netNameRef "A2") )
+ (line (pt 519.94 308.16) (pt 500.74 308.16) (width 0.127) (netNameRef "A3") )
+ (line (pt 510.7 307.7) (pt 500.58 307.7) (width 0.127) (netNameRef "A4") )
+ (line (pt 497.92 316.4) (pt 494.28 316.4) (width 0.127) (netNameRef "D1") )
+ (line (pt 501.0 318.5) (pt 509.16 318.5) (width 0.127) (netNameRef "D8") )
+ (line (pt 505.3 317.5) (pt 501.0 317.5) (width 0.127) (netNameRef "D6") )
+ (line (pt 505.14 318.0) (pt 501.0 318.0) (width 0.127) (netNameRef "D7") )
+ (line (pt 518.26 318.96) (pt 516.64 317.34) (width 0.127) (netNameRef "D7") )
+ (line (pt 518.78 318.62) (pt 517.26 317.1) (width 0.127) (netNameRef "D6") )
+ (line (pt 517.26 317.1) (pt 505.7 317.1) (width 0.127) (netNameRef "D6") )
+ (line (pt 516.64 317.34) (pt 505.8 317.34) (width 0.127) (netNameRef "D7") )
+ (line (pt 510.06 317.6) (pt 516.3 317.6) (width 0.127) (netNameRef "D8") )
+ (line (pt 516.3 317.6) (pt 518.54 319.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 503.32 319.02) (pt 501.02 319.02) (width 0.127) (netNameRef "D9") )
+ (line (pt 517.0 319.2) (pt 503.5 319.2) (width 0.127) (netNameRef "D9") )
+ (line (pt 495.25 313.75) (pt 495.25 314.73) (width 0.2) (netNameRef "30MHZ") )
+ (line (pt 495.25 314.73) (pt 495.72 315.2) (width 0.2) (netNameRef "30MHZ") )
+ (line (pt 511.7 318.38) (pt 510.7 318.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 518.66 316.86) (pt 503.62 316.86) (width 0.127) (netNameRef "D5") )
+ (line (pt 503.48 317.0) (pt 501.0 317.0) (width 0.127) (netNameRef "D5") )
+ (line (pt 516.78 324.82) (pt 509.7 324.82) (width 0.127) (netNameRef "D14") )
+ (line (pt 521.64 326.4) (pt 514.58 326.4) (width 0.127) (netNameRef "D15") )
+ (line (pt 520.48 321.2) (pt 517.68 321.2) (width 0.127) (netNameRef "D10") )
+ (line (pt 520.02 322.38) (pt 515.8 322.38) (width 0.127) (netNameRef "D12") )
+ (line (pt 501.0 321.0) (pt 517.48 321.0) (width 0.127) (netNameRef "D10") )
+ (line (pt 501.0 321.5) (pt 514.48 321.5) (width 0.127) (netNameRef "D11") )
+ (line (pt 501.02 322.02) (pt 515.44 322.02) (width 0.127) (netNameRef "D12") )
+ (line (pt 501.0 322.5) (pt 509.1 322.5) (width 0.127) (netNameRef "D13") )
+ (line (pt 509.1 322.5) (pt 510.62 324.02) (width 0.127) (netNameRef "D13") )
+ (line (pt 507.88 323.0) (pt 501.0 323.0) (width 0.127) (netNameRef "D14") )
+ (line (pt 498.75 325.75) (pt 509.47 325.75) (width 0.2) (netNameRef "D15") )
+ (line (pt 509.96 326.24) (pt 514.42 326.24) (width 0.2) (netNameRef "D15") )
+ (line (pt 520.42 321.62) (pt 514.6 321.62) (width 0.127) (netNameRef "D11") )
+ (line (pt 495.25 326.71) (pt 495.74 327.2) (width 0.3) (netNameRef "GND") )
+ (line (pt 495.25 325.75) (pt 495.25 326.71) (width 0.3) (netNameRef "GND") )
+ (line (pt 495.38 336.82) (pt 494.22 336.82) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 510.32 344.72) (pt 519.2 344.72) (width 0.127) (netNameRef "ALE") )
+ (line (pt 518.7 344.22) (pt 511.24 344.22) (width 0.127) (netNameRef "~DMA_RD") )
+ (line (pt 503.8 350.22) (pt 518.7 350.22) (width 0.127) (netNameRef "TP21") )
+ (line (pt 504.2 349.72) (pt 519.2 349.72) (width 0.127) (netNameRef "TP22") )
+ (line (pt 504.06 349.22) (pt 518.7 349.22) (width 0.127) (netNameRef "TP23") )
+ (line (pt 503.94 348.74) (pt 519.22 348.74) (width 0.127) (netNameRef "TP24") )
+ (line (pt 503.78 348.22) (pt 518.7 348.22) (width 0.127) (netNameRef "TP25") )
+ (line (pt 507.38 347.22) (pt 518.7 347.22) (width 0.127) (netNameRef "INT_USB") )
+ (line (pt 503.96 347.72) (pt 519.2 347.72) (width 0.127) (netNameRef "TP26") )
+ (line (pt 518.7 345.22) (pt 517.98 345.22) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 510.58 345.72) (pt 519.2 345.72) (width 0.127) (netNameRef "~RSUSB") )
+ (line (pt 518.7 346.22) (pt 510.3 346.22) (width 0.127) (netNameRef "~USB") )
+ (line (pt 509.94 346.72) (pt 519.2 346.72) (width 0.127) (netNameRef "DREQ") )
+ (line (pt 518.7 352.22) (pt 513.64 352.22) (width 0.127) (netNameRef "DU2") )
+ (line (pt 516.4 352.7) (pt 519.22 352.7) (width 0.127) (netNameRef "DU1") )
+ (line (pt 518.7 353.22) (pt 516.6 353.22) (width 0.127) (netNameRef "DU7") )
+ (line (pt 519.22 353.7) (pt 516.84 353.7) (width 0.127) (netNameRef "DU5") )
+ (line (pt 518.7 354.22) (pt 516.76 354.22) (width 0.127) (netNameRef "DU6") )
+ (line (pt 519.2 354.72) (pt 516.92 354.72) (width 0.127) (netNameRef "DU3") )
+ (line (pt 518.7 355.22) (pt 517.16 355.22) (width 0.127) (netNameRef "PWR") )
+ (line (pt 519.22 355.7) (pt 517.62 355.7) (width 0.127) (netNameRef "RD_U") )
+ (line (pt 519.22 356.7) (pt 517.36 356.7) (width 0.127) (netNameRef "WR_U") )
+ (line (pt 518.7 357.22) (pt 517.76 357.22) (width 0.127) (netNameRef "RXF") )
+ (line (pt 518.7 356.22) (pt 517.94 356.22) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 503.195 356.345) (pt 501.805 356.345) (width 0.3) (netNameRef "+5V") )
+ (line (pt 510.98 353.08) (pt 509.5 353.08) (width 0.3) (netNameRef "+3,3VF") )
+ (line (pt 510.58 354.395) (pt 510.495 354.395) (width 0.127) (netNameRef "DU7") )
+ (line (pt 510.58 354.395) (pt 510.995 354.395) (width 0.127) (netNameRef "DU7") )
+ (line (pt 510.56 353.745) (pt 515.355 353.745) (width 0.127) (netNameRef "DU1") )
+ (line (pt 510.495 353.745) (pt 510.995 353.745) (width 0.127) (netNameRef "DU1") )
+ (line (pt 510.56 353.745) (pt 510.995 353.745) (width 0.127) (netNameRef "DU1") )
+ (line (pt 510.56 352.445) (pt 510.495 352.445) (width 0.127) (netNameRef "DU2") )
+ (line (pt 510.56 352.445) (pt 510.995 352.445) (width 0.127) (netNameRef "DU2") )
+ (line (pt 510.56 351.795) (pt 519.125 351.795) (width 0.127) (netNameRef "DU4") )
+ (line (pt 510.495 351.795) (pt 510.995 351.795) (width 0.127) (netNameRef "DU4") )
+ (line (pt 510.56 351.795) (pt 510.995 351.795) (width 0.127) (netNameRef "DU4") )
+ (line (pt 511.22 351.12) (pt 518.6 351.12) (width 0.127) (netNameRef "DU0") )
+ (line (pt 501.315 356.995) (pt 503.195 356.995) (width 0.2) (netNameRef "RU") )
+ (line (pt 510.99 355.04) (pt 509.48 355.04) (width 0.3) (netNameRef "GND") )
+ (line (pt 503.6 358.295) (pt 499.735 358.295) (width 0.2) (netNameRef "NET00002") )
+ (line (pt 517.44 361.04) (pt 520.22 358.26) (width 0.127) (netNameRef "RU") )
+ (line (pt 509.58 361.04) (pt 517.44 361.04) (width 0.127) (netNameRef "RU") )
+ (line (pt 517.28 360.64) (pt 519.7 358.22) (width 0.127) (netNameRef "TXE") )
+ (line (pt 503.195 358.945) (pt 501.105 358.945) (width 0.3) (netNameRef "USB-") )
+ (line (pt 518.44 361.84) (pt 517.66 361.84) (width 0.3) (netNameRef "60MHZ") )
+ (line (pt 503.19 359.6) (pt 502.0 359.6) (width 0.15) (netNameRef "USB+") )
+ (line (pt 511.32 403.39) (pt 507.43 403.39) (width 0.4) (netNameRef "NET00265") )
+ (line (pt 514.68 409.0) (pt 518.88 409.0) (width 0.5) (netNameRef "NET00266") )
+ (line (pt 541.95 263.65) (pt 541.5 263.2) (width 1.0) (netNameRef "GND") )
+ (line (pt 540.295 261.995) (pt 541.5 263.2) (width 1.0) (netNameRef "GND") )
+ (line (pt 540.58 288.31) (pt 542.45 288.31) (width 0.6) (netNameRef "NET00312") )
+ (line (pt 548.6 291.54) (pt 545.82 294.32) (width 0.127) (netNameRef "R5") )
+ (line (pt 540.58 290.85) (pt 541.51 290.85) (width 0.6) (netNameRef "VROUT") )
+ (line (pt 526.2 295.66) (pt 525.2 295.66) (width 0.6) (netNameRef "GND") )
+ (line (pt 525.4 304.4) (pt 539.8 304.4) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 546.8 308.9) (pt 549.0 308.9) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 533.3 310.3) (pt 533.8 310.8) (width 0.127) (netNameRef "A12") )
+ (line (pt 527.08 305.3) (pt 535.3 305.3) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 527.3 310.88) (pt 525.82 310.88) (width 0.127) (netNameRef "D0") )
+ (line (pt 533.3 311.48) (pt 533.76 311.94) (width 0.127) (netNameRef "A13") )
+ (line (pt 525.74 306.38) (pt 526.68 306.38) (width 0.3) (netNameRef "GND") )
+ (line (pt 547.3 313.3) (pt 549.2 313.3) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 532.62 314.8) (pt 533.4 315.58) (width 0.127) (netNameRef "D2") )
+ (line (pt 540.3 315.3) (pt 541.3 315.3) (width 0.2) (netNameRef "VDDINT") )
+ (line (pt 532.3 317.3) (pt 533.94 317.3) (width 0.127) (netNameRef "D6") )
+ (line (pt 527.4 315.84) (pt 523.5 315.84) (width 0.127) (netNameRef "D1") )
+ (line (pt 527.06 319.08) (pt 522.24 319.08) (width 0.127) (netNameRef "D9") )
+ (line (pt 527.16 319.34) (pt 522.34 319.34) (width 0.127) (netNameRef "D10") )
+ (line (pt 546.8 316.8) (pt 549.6 316.8) (width 0.127) (netNameRef "R7") )
+ (line (pt 547.3 314.3) (pt 549.5 314.3) (width 0.2) (netNameRef "OUT") )
+ (line (pt 541.3 317.3) (pt 540.3 317.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 316.3) (pt 540.3 316.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 318.3) (pt 540.3 318.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 541.3 319.3) (pt 540.3 319.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 524.94 317.3) (pt 530.56 317.3) (width 0.127) (netNameRef "D7") )
+ (line (pt 525.08 316.8) (pt 531.8 316.8) (width 0.127) (netNameRef "D6") )
+ (line (pt 531.8 317.8) (pt 523.16 317.8) (width 0.127) (netNameRef "D8") )
+ (line (pt 533.0 324.3) (pt 534.8 322.5) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 541.3 321.3) (pt 540.3 321.3) (width 0.2) (netNameRef "VDDEXT") )
+ (line (pt 546.8 323.8) (pt 548.96 323.8) (width 0.127) (netNameRef "PF8") )
+ (line (pt 523.2 324.02) (pt 526.46 320.76) (width 0.127) (netNameRef "D13") )
+ (line (pt 526.76 323.4) (pt 524.64 323.4) (width 0.127) (netNameRef "D15") )
+ (line (pt 526.56 323.04) (pt 524.64 323.04) (width 0.127) (netNameRef "D14") )
+ (line (pt 530.6 320.3) (pt 522.1 320.3) (width 0.127) (netNameRef "D12") )
+ (line (pt 540.3 320.3) (pt 541.3 320.3) (width 0.2) (netNameRef "GND") )
+ (line (pt 548.7 341.28) (pt 548.26 340.84) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 548.7 342.28) (pt 548.26 341.84) (width 0.2) (netNameRef "4_IO3") )
+ (line (pt 548.7 340.28) (pt 549.22 340.8) (width 0.127) (netNameRef "GND") )
+ (line (pt 549.18 348.8) (pt 547.24 348.8) (width 0.127) (netNameRef "H13") )
+ (line (pt 547.48 349.28) (pt 548.7 349.28) (width 0.127) (netNameRef "H12") )
+ (line (pt 533.2 349.72) (pt 547.04 349.72) (width 0.127) (netNameRef "H12") )
+ (line (pt 533.7 350.22) (pt 545.98 350.22) (width 0.127) (netNameRef "CLKF") )
+ (line (pt 525.7 348.22) (pt 526.16 347.76) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 545.86 346.28) (pt 548.7 346.28) (width 0.127) (netNameRef "H1") )
+ (line (pt 545.94 346.8) (pt 549.22 346.8) (width 0.127) (netNameRef "H2") )
+ (line (pt 548.7 347.28) (pt 546.02 347.28) (width 0.127) (netNameRef "H0") )
+ (line (pt 548.7 345.28) (pt 548.22 344.8) (width 0.2) (netNameRef "4_IO7") )
+ (line (pt 548.7 344.28) (pt 548.66 344.28) (width 0.2) (netNameRef "4_IO6") )
+ (line (pt 548.66 344.28) (pt 548.26 343.88) (width 0.2) (netNameRef "4_IO6") )
+ (line (pt 525.7 344.22) (pt 526.2 343.72) (width 0.2) (netNameRef "A18") )
+ (line (pt 533.7 349.22) (pt 546.82 349.22) (width 0.127) (netNameRef "H13") )
+ (line (pt 546.92 348.62) (pt 533.1 348.62) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 545.08 348.22) (pt 533.7 348.22) (width 0.127) (netNameRef "H0") )
+ (line (pt 532.18 347.74) (pt 545.0 347.74) (width 0.127) (netNameRef "H2") )
+ (line (pt 533.7 347.22) (pt 544.92 347.22) (width 0.127) (netNameRef "H1") )
+ (line (pt 537.88 344.72) (pt 532.2 344.72) (width 0.2) (netNameRef "DP") )
+ (line (pt 538.52 345.72) (pt 533.2 345.72) (width 0.2) (netNameRef "_RSS") )
+ (line (pt 533.2 346.72) (pt 533.76 346.72) (width 0.2) (netNameRef "STP") )
+ (line (pt 538.88 346.22) (pt 541.84 343.26) (width 0.2) (netNameRef "CKP") )
+ (line (pt 525.7 349.22) (pt 525.22 349.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 525.7 350.18) (pt 525.22 349.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 533.7 343.22) (pt 533.16 343.76) (width 0.127) (netNameRef "GND") )
+ (line (pt 526.7 349.22) (pt 525.7 349.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 525.7 350.22) (pt 525.7 350.18) (width 0.2) (netNameRef "GND") )
+ (line (pt 548.7 357.28) (pt 546.16 357.28) (width 0.127) (netNameRef "H3") )
+ (line (pt 549.22 356.8) (pt 546.24 356.8) (width 0.127) (netNameRef "H6") )
+ (line (pt 548.7 356.28) (pt 546.72 356.28) (width 0.127) (netNameRef "H5") )
+ (line (pt 548.7 354.28) (pt 546.2 354.28) (width 0.127) (netNameRef "H7") )
+ (line (pt 545.64 357.8) (pt 549.22 357.8) (width 0.127) (netNameRef "H4") )
+ (line (pt 549.22 353.8) (pt 546.16 353.8) (width 0.127) (netNameRef "H10") )
+ (line (pt 544.09999 351.73999) (pt 533.21999 351.73999) (width 0.127) (netNameRef "H10") )
+ (line (pt 544.14 352.22) (pt 533.7 352.22) (width 0.127) (netNameRef "H7") )
+ (line (pt 543.66 353.22) (pt 533.7 353.22) (width 0.127) (netNameRef "H5") )
+ (line (pt 543.18 353.74) (pt 533.22 353.74) (width 0.127) (netNameRef "H6") )
+ (line (pt 543.1 354.22) (pt 533.7 354.22) (width 0.127) (netNameRef "H3") )
+ (line (pt 533.2 354.72) (pt 542.56 354.72) (width 0.127) (netNameRef "H4") )
+ (line (pt 549.7 351.28) (pt 548.7 351.28) (width 0.127) (netNameRef "CLKF") )
+ (line (pt 548.7 353.28) (pt 546.48 353.28) (width 0.127) (netNameRef "H9") )
+ (line (pt 544.42 351.22) (pt 533.7 351.22) (width 0.127) (netNameRef "H9") )
+ (line (pt 547.04 351.28) (pt 548.7 351.28) (width 0.127) (netNameRef "CLKF") )
+ (line (pt 544.44 350.76) (pt 533.24 350.76) (width 0.127) (netNameRef "H11") )
+ (line (pt 548.84 352.8) (pt 546.48 352.8) (width 0.127) (netNameRef "H11") )
+ (line (pt 525.7 351.22) (pt 526.18 350.74) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 525.7 353.22) (pt 526.16 353.68) (width 0.2) (netNameRef "+3,3VF") )
+ (line (pt 533.7 355.22) (pt 541.3 355.22) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 540.52 355.72) (pt 533.2 355.72) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 533.24 356.76) (pt 540.8 356.76) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 533.2 352.72) (pt 543.88 352.72) (width 0.127) (netNameRef "H8") )
+ (line (pt 546.96 355.8) (pt 549.22 355.8) (width 0.127) (netNameRef "H8") )
+ (line (pt 525.7 352.22) (pt 525.18 351.7) (width 0.2) (netNameRef "GND") )
+ (line (pt 548.7 352.28) (pt 549.14 351.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 525.7 352.22) (pt 526.7 352.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 548.7 360.28) (pt 548.1 360.28) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 544.38 358.28) (pt 548.7 358.28) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 540.72 362.52) (pt 541.52 362.52) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 548.7 359.28) (pt 544.08 359.28) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 548.7 361.28) (pt 549.22 360.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 527.2 374.94) (pt 525.08 377.06) (width 0.2) (netNameRef "VD3") )
+ (line (pt 525.34 401.92) (pt 528.52 401.92) (width 0.5) (netNameRef "NET00000") )
+ (line (pt 564.34 260.92) (pt 563.08 259.66) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 555.215 279.85) (pt 557.31 279.85) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 564.74 279.85) (pt 562.77 279.85) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 564.68 286.26) (pt 560.76 286.26) (width 0.2) (netNameRef "PF2") )
+ (line (pt 564.74 287.47) (pt 562.95 287.47) (width 0.2) (netNameRef "MISO") )
+ (line (pt 555.215 286.2) (pt 556.8 286.2) (width 0.4) (netNameRef "GND") )
+ (line (pt 557.2 292.4) (pt 555.215 292.4) (width 0.2) (netNameRef "SCK") )
+ (line (pt 555.215 293.67) (pt 557.81 293.67) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 564.74 293.67) (pt 562.87 293.67) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 564.74 301.29) (pt 562.95 301.29) (width 0.2) (netNameRef "MISO") )
+ (line (pt 564.74 300.02) (pt 562.8 300.02) (width 0.2) (netNameRef "PF3") )
+ (line (pt 555.215 300.02) (pt 556.96 300.02) (width 0.4) (netNameRef "GND") )
+ (line (pt 566.99 323.61) (pt 574.51 323.61) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 574.89 323.91) (pt 567.13 323.91) (width 0.12) (netNameRef "AA1") )
+ (line (pt 567.27 324.21) (pt 575.63 324.21) (width 0.12) (netNameRef "AA2") )
+ (line (pt 576.31 324.51) (pt 567.45 324.51) (width 0.12) (netNameRef "AA3") )
+ (line (pt 567.63 324.81) (pt 576.71 324.81) (width 0.12) (netNameRef "AA4") )
+ (line (pt 567.77 325.11) (pt 577.01 325.11) (width 0.12) (netNameRef "ACE") )
+ (line (pt 582.75 326.61) (pt 569.53 326.61) (width 0.12) (netNameRef "DA4") )
+ (line (pt 569.49 326.31) (pt 579.77 326.31) (width 0.12) (netNameRef "DA3") )
+ (line (pt 578.93 326.01) (pt 581.2808 323.6592) (width 0.12) (netNameRef "DA2") )
+ (line (pt 578.51 325.71) (pt 580.4807 323.7393) (width 0.12) (netNameRef "DA1") )
+ (line (pt 567.83 325.41) (pt 577.69 325.41) (width 0.12) (netNameRef "DA0") )
+ (line (pt 577.69 325.41) (pt 579.6806 323.4194) (width 0.12) (netNameRef "DA0") )
+ (line (pt 568.23 325.71) (pt 578.51 325.71) (width 0.12) (netNameRef "DA1") )
+ (line (pt 568.25 326.01) (pt 578.93 326.01) (width 0.12) (netNameRef "DA2") )
+ (line (pt 570.48 330.68) (pt 579.42 330.68) (width 0.12) (netNameRef "DA13") )
+ (line (pt 570.36 329.72) (pt 582.76 329.72) (width 0.12) (netNameRef "DA10") )
+ (line (pt 570.48 329.96) (pt 581.8 329.96) (width 0.12) (netNameRef "DA11") )
+ (line (pt 570.38 330.44) (pt 580.16 330.44) (width 0.12) (netNameRef "DA12") )
+ (line (pt 578.74 330.92) (pt 570.6 330.92) (width 0.12) (netNameRef "DA14") )
+ (line (pt 580.4807 332.6607) (pt 578.74 330.92) (width 0.12) (netNameRef "DA14") )
+ (line (pt 570.72 331.16) (pt 578.22 331.16) (width 0.12) (netNameRef "DA15") )
+ (line (pt 578.22 331.16) (pt 579.6806 332.6206) (width 0.12) (netNameRef "DA15") )
+ (line (pt 571.0 332.01) (pt 574.97 332.01) (width 0.12) (netNameRef "AA16") )
+ (line (pt 570.9 331.78) (pt 575.74 331.78) (width 0.12) (netNameRef "AA15") )
+ (line (pt 570.84 331.41) (pt 576.19 331.41) (width 0.12) (netNameRef "AOE") )
+ (line (pt 555.7 341.28) (pt 556.2 340.78) (width 0.12) (netNameRef "DA2") )
+ (line (pt 564.28 341.7) (pt 563.7 342.28) (width 0.12) (netNameRef "AOE") )
+ (line (pt 568.18 336.54) (pt 573.66 336.54) (width 0.12) (netNameRef "AA17") )
+ (line (pt 571.16 341.82) (pt 573.82 339.16) (width 0.12) (netNameRef "AA10") )
+ (line (pt 556.2 340.78) (pt 556.2 338.06) (width 0.12) (netNameRef "DA2") )
+ (line (pt 563.7 345.28) (pt 564.14 345.72) (width 0.2) (netNameRef "7VPLL4") )
+ (line (pt 569.7 347.28) (pt 581.94 347.28) (width 0.12) (netNameRef "DB1") )
+ (line (pt 580.66 350.28) (pt 570.24 350.28) (width 0.12) (netNameRef "AB3") )
+ (line (pt 568.32 347.9) (pt 581.88 347.9) (width 0.12) (netNameRef "BCE") )
+ (line (pt 569.08 347.66) (pt 581.98 347.66) (width 0.12) (netNameRef "DB0") )
+ (line (pt 569.22 346.8) (pt 581.8 346.8) (width 0.12) (netNameRef "DB2") )
+ (line (pt 556.62 345.28) (pt 556.18 344.84) (width 0.2) (netNameRef "A6") )
+ (line (pt 556.64 344.28) (pt 556.2 343.84) (width 0.2) (netNameRef "A7") )
+ (line (pt 556.7 346.28) (pt 556.28 345.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 556.28 345.86) (pt 556.24 345.86) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 563.7 348.28) (pt 564.18 347.8) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 563.7 349.26) (pt 564.2 348.76) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.78 344.28) (pt 564.22 343.84) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.7 344.28) (pt 563.78 344.28) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.7 356.28) (pt 564.16 355.82) (width 0.2) (netNameRef "7VPLL2") )
+ (line (pt 569.72 356.26) (pt 573.58 356.26) (width 0.127) (netNameRef "DB8") )
+ (line (pt 569.7 353.28) (pt 573.0 353.28) (width 0.12) (netNameRef "AB10") )
+ (line (pt 569.08 356.66) (pt 573.58 356.66) (width 0.12) (netNameRef "DB9") )
+ (line (pt 568.32 353.9) (pt 572.82 353.9) (width 0.12) (netNameRef "AB12") )
+ (line (pt 569.08 353.66) (pt 572.98 353.66) (width 0.12) (netNameRef "AB11") )
+ (line (pt 569.7 352.28) (pt 579.48 352.28) (width 0.12) (netNameRef "AB0") )
+ (line (pt 579.44 351.9) (pt 569.08 351.9) (width 0.12) (netNameRef "AB1") )
+ (line (pt 573.62 355.9) (pt 568.32 355.9) (width 0.12) (netNameRef "AB18") )
+ (line (pt 569.08 355.66) (pt 573.78 355.66) (width 0.12) (netNameRef "AB14") )
+ (line (pt 569.7 355.28) (pt 573.74 355.28) (width 0.12) (netNameRef "AB13") )
+ (line (pt 568.32 351.66) (pt 580.3 351.66) (width 0.12) (netNameRef "AB2") )
+ (line (pt 555.7 357.3) (pt 556.18 357.78) (width 0.2) (netNameRef "TP1") )
+ (line (pt 555.7 356.28) (pt 556.2 356.78) (width 0.2) (netNameRef "TP8") )
+ (line (pt 556.2 356.78) (pt 556.22 356.78) (width 0.2) (netNameRef "TP8") )
+ (line (pt 569.7 357.28) (pt 572.3 357.28) (width 0.12) (netNameRef "DB11") )
+ (line (pt 568.32 356.9) (pt 572.32 356.9) (width 0.12) (netNameRef "DB10") )
+ (line (pt 572.32 357.66) (pt 569.08 357.66) (width 0.12) (netNameRef "DB12") )
+ (line (pt 568.32 357.9) (pt 572.24 357.9) (width 0.12) (netNameRef "DB13") )
+ (line (pt 563.7 353.28) (pt 564.16 352.82) (width 0.2) (netNameRef "+3,3V7") )
+ (line (pt 563.7 354.28) (pt 564.2 354.78) (width 0.2) (netNameRef "P_RES") )
+ (line (pt 563.7 357.28) (pt 564.16 356.82) (width 0.127) (netNameRef "GND") )
+ (line (pt 563.7 357.28) (pt 564.16 356.82) (width 0.2) (netNameRef "GND") )
+ (line (pt 563.7 358.28) (pt 564.2 358.78) (width 0.127) (netNameRef "TP6") )
+ (line (pt 571.02 359.9) (pt 575.2 364.08) (width 0.12) (netNameRef "AB17") )
+ (line (pt 575.3 363.78) (pt 571.18 359.66) (width 0.12) (netNameRef "AB16") )
+ (line (pt 581.46 363.78) (pt 575.3 363.78) (width 0.12) (netNameRef "AB16") )
+ (line (pt 575.2 364.08) (pt 580.44 364.08) (width 0.12) (netNameRef "AB17") )
+ (line (pt 563.7 360.28) (pt 564.16 360.74) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 563.7 359.28) (pt 564.18 359.76) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 555.7 361.28) (pt 556.16 361.74) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 555.7 360.28) (pt 556.18 360.76) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 556.16 361.74) (pt 556.2 361.74) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 563.7 361.28) (pt 564.2 361.78) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 569.08 358.66) (pt 571.48 358.66) (width 0.12) (netNameRef "DB15") )
+ (line (pt 575.6 363.18) (pt 582.66 363.18) (width 0.12) (netNameRef "BOE") )
+ (line (pt 575.5 363.48) (pt 582.56 363.48) (width 0.12) (netNameRef "AB15") )
+ (line (pt 571.3 359.28) (pt 575.5 363.48) (width 0.12) (netNameRef "AB15") )
+ (line (pt 571.32 358.9) (pt 575.6 363.18) (width 0.12) (netNameRef "BOE") )
+ (line (pt 571.48 358.66) (pt 575.7 362.88) (width 0.12) (netNameRef "DB15") )
+ (line (pt 571.46 358.28) (pt 569.7 358.28) (width 0.12) (netNameRef "DB14") )
+ (line (pt 575.76 362.58) (pt 571.46 358.28) (width 0.12) (netNameRef "DB14") )
+ (line (pt 555.7 359.28) (pt 556.16 359.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 577.04 377.36) (pt 579.04 375.36) (width 1.0) (netNameRef "+5V") )
+ (line (pt 577.04 379.56) (pt 578.72 379.56) (width 1.0) (netNameRef "GND") )
+ (line (pt 578.72 379.56) (pt 578.76 379.52) (width 1.0) (netNameRef "GND") )
+ (line (pt 585.04 327.58) (pt 586.8815 325.7385) (width 0.12) (netNameRef "DA7") )
+ (line (pt 585.78 337.61) (pt 587.6816 335.7084) (width 0.12) (netNameRef "AA18") )
+ (line (pt 586.8815 336.1085) (pt 585.68 337.31) (width 0.12) (netNameRef "DA8") )
+ (line (pt 585.46 346.28) (pt 588.9609 349.7809) (width 0.12) (netNameRef "DB3") )
+ (line (pt 590.36 359.78) (pt 596.1618 365.5818) (width 0.12) (netNameRef "AB13") )
+ (line (pt 594.5616 364.7816) (pt 590.16 360.38) (width 0.12) (netNameRef "AB18") )
+ (line (pt 590.26 360.08) (pt 595.3617 365.1817) (width 0.12) (netNameRef "AB14") )
+ (line (pt 587.3607 365.1607) (pt 584.78 362.58) (width 0.12) (netNameRef "DB14") )
+ (line (pt 585.06 362.28) (pt 588.1608 365.3808) (width 0.12) (netNameRef "DB13") )
+ (line (pt 588.9609 364.6409) (pt 586.3 361.98) (width 0.12) (netNameRef "DB12") )
+ (line (pt 624.9 260.73) (pt 627.17 260.73) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 624.9 259.46) (pt 627.06 259.46) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 616.23 260.73) (pt 618.55 260.73) (width 0.2) (netNameRef "D_I") )
+ (line (pt 624.9 263.27) (pt 623.27 263.27) (width 0.2) (netNameRef "RS") )
+ (line (pt 624.9 262.0) (pt 623.2 262.0) (width 0.2) (netNameRef "~RS") )
+ (line (pt 624.9 274.06) (pt 640.18 274.06) (width 0.2) (netNameRef "DT_P") )
+ (line (pt 618.55 274.06) (pt 617.02 274.06) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 617.02 274.06) (pt 617.0 274.04) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 616.96 272.42) (pt 616.98 272.44) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 617.02 268.18) (pt 616.9 268.3) (width 0.5) (netNameRef "GND") )
+ (line (pt 624.68 268.18) (pt 625.56 267.3) (width 0.5) (netNameRef "GND") )
+ (line (pt 618.86 268.18) (pt 617.02 268.18) (width 0.5) (netNameRef "GND") )
+ (line (pt 624.36 268.18) (pt 624.68 268.18) (width 0.5) (netNameRef "GND") )
+ (line (pt 640.16 279.12) (pt 641.36 280.32) (width 0.2) (netNameRef "3_CW") )
+ (line (pt 635.34 279.12) (pt 640.16 279.12) (width 0.2) (netNameRef "3_CW") )
+ (line (pt 624.9 277.87) (pt 622.99 277.87) (width 0.2) (netNameRef "~RS") )
+ (line (pt 624.9 276.6) (pt 623.38 276.6) (width 0.2) (netNameRef "RS") )
+ (line (pt 624.9 275.33) (pt 638.73 275.33) (width 0.2) (netNameRef "DT_N") )
+ (line (pt 617.11 277.87) (pt 617.08 277.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 618.55 277.87) (pt 617.11 277.87) (width 0.5) (netNameRef "GND") )
+ (line (pt 625.15264 288.71952) (pt 635.35952 288.71952) (width 0.2) (netNameRef "3_P_A2") )
+ (line (pt 635.84 289.2) (pt 640.08 289.2) (width 0.2) (netNameRef "3_P_A2") )
+ (line (pt 625.15264 288.06928) (pt 638.69072 288.06928) (width 0.2) (netNameRef "4_R\\W") )
+ (line (pt 625.15264 287.41904) (pt 635.46096 287.41904) (width 0.2) (netNameRef "3_R\\W") )
+ (line (pt 640.1 286.68) (pt 641.36 287.94) (width 0.2) (netNameRef "3_R\\W") )
+ (line (pt 636.2 286.68) (pt 640.1 286.68) (width 0.2) (netNameRef "3_R\\W") )
+ (line (pt 625.15264 286.7688) (pt 633.9912 286.7688) (width 0.2) (netNameRef "4_RDY") )
+ (line (pt 641.36 285.4) (pt 640.06 284.1) (width 0.2) (netNameRef "3_RDY") )
+ (line (pt 640.06 284.1) (pt 632.58 284.1) (width 0.2) (netNameRef "3_RDY") )
+ (line (pt 632.58 284.1) (pt 630.56144 286.11856) (width 0.2) (netNameRef "3_RDY") )
+ (line (pt 625.15264 284.16784) (pt 623.65216 284.16784) (width 0.2) (netNameRef "4_P_RQ") )
+ (line (pt 618.0 289.36976) (pt 613.95024 289.36976) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 618.0 288.71952) (pt 615.10048 288.71952) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 617.98928 288.08) (pt 613.66 288.08) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 618.0 287.41904) (pt 615.12096 287.41904) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 617.9688 286.8) (pt 613.68 286.8) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 618.0 286.11856) (pt 615.14144 286.11856) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 618.0 285.46832) (pt 613.73168 285.46832) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 618.0 284.16784) (pt 616.52784 284.16784) (width 0.4) (netNameRef "GND") )
+ (line (pt 640.1 296.84) (pt 625.24192 296.84) (width 0.2) (netNameRef "3_STROB") )
+ (line (pt 625.23264 296.19904) (pt 638.18096 296.19904) (width 0.2) (netNameRef "4_P_A0") )
+ (line (pt 625.23264 295.5488) (pt 635.2112 295.5488) (width 0.2) (netNameRef "3_P_A0") )
+ (line (pt 640.12 294.32) (pt 641.36 295.56) (width 0.2) (netNameRef "3_P_A0") )
+ (line (pt 636.44 294.32) (pt 640.12 294.32) (width 0.2) (netNameRef "3_P_A0") )
+ (line (pt 625.23264 294.89856) (pt 634.72144 294.89856) (width 0.2) (netNameRef "4_P_A1") )
+ (line (pt 641.36 293.02) (pt 640.1 291.76) (width 0.2) (netNameRef "3_P_A1") )
+ (line (pt 640.1 291.76) (pt 632.1 291.76) (width 0.2) (netNameRef "3_P_A1") )
+ (line (pt 632.08 290.48) (pt 638.82 290.48) (width 0.2) (netNameRef "4_P_A2") )
+ (line (pt 618.0 290.02) (pt 616.08 290.02) (width 0.2) (netNameRef "NET00148") )
+ (line (pt 618.08 294.24832) (pt 615.57168 294.24832) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 618.08 294.89856) (pt 616.66144 294.89856) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 618.08 295.5488) (pt 615.5712 295.5488) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 618.08 296.19904) (pt 616.60096 296.19904) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 618.08 296.84928) (pt 615.61072 296.84928) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 625.23264 292.94784) (pt 623.31216 292.94784) (width 0.2) (netNameRef "3_P_RQ") )
+ (line (pt 618.08 292.94784) (pt 616.47216 292.94784) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.23264 297.49952) (pt 633.97952 297.49952) (width 0.2) (netNameRef "4_STROB") )
+ (line (pt 616.92 298.8) (pt 618.08 298.8) (width 0.2) (netNameRef "NET00143") )
+ (line (pt 618.04 304.6288) (pt 614.9112 304.6288) (width 0.2) (netNameRef "4_IO4") )
+ (line (pt 618.04 303.97856) (pt 616.08144 303.97856) (width 0.2) (netNameRef "4_IO5") )
+ (line (pt 618.04 303.32832) (pt 614.88832 303.32832) (width 0.2) (netNameRef "4_IO6") )
+ (line (pt 618.08 297.49952) (pt 616.48048 297.49952) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 618.08 298.14976) (pt 615.57024 298.14976) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 625.23264 298.14976) (pt 623.79024 298.14976) (width 0.4) (netNameRef "GND") )
+ (line (pt 618.04 302.02784) (pt 616.46784 302.02784) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.19264 302.02784) (pt 637.43216 302.02784) (width 0.2) (netNameRef "4_OUT7") )
+ (line (pt 625.19264 302.67808) (pt 638.31808 302.67808) (width 0.2) (netNameRef "4_OUT6") )
+ (line (pt 625.19264 303.32832) (pt 635.60832 303.32832) (width 0.2) (netNameRef "4_OUT5") )
+ (line (pt 625.19264 303.97856) (pt 632.97856 303.97856) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 618.04 307.22976) (pt 614.94976 307.22976) (width 0.2) (netNameRef "4_IO0") )
+ (line (pt 618.04 306.57952) (pt 616.09952 306.57952) (width 0.2) (netNameRef "4_IO1") )
+ (line (pt 618.04 305.92928) (pt 614.90928 305.92928) (width 0.2) (netNameRef "4_IO2") )
+ (line (pt 618.04 305.27904) (pt 616.11904 305.27904) (width 0.2) (netNameRef "4_IO3") )
+ (line (pt 625.19264 307.22976) (pt 622.98976 307.22976) (width 0.2) (netNameRef "4_~OE1") )
+ (line (pt 617.96 311.62784) (pt 616.50784 311.62784) (width 0.4) (netNameRef "GND") )
+ (line (pt 628.73952 306.57952) (pt 634.36 312.2) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 625.11264 316.82976) (pt 623.77024 316.82976) (width 0.2) (netNameRef "3_~OE1") )
+ (line (pt 617.96 316.82976) (pt 614.96976 316.82976) (width 0.2) (netNameRef "3_IO0") )
+ (line (pt 617.96 316.17952) (pt 616.08048 316.17952) (width 0.2) (netNameRef "3_IO1") )
+ (line (pt 617.96 315.52928) (pt 614.86928 315.52928) (width 0.2) (netNameRef "3_IO2") )
+ (line (pt 617.96 314.87904) (pt 616.08096 314.87904) (width 0.2) (netNameRef "3_IO3") )
+ (line (pt 617.96 314.2288) (pt 614.9512 314.2288) (width 0.2) (netNameRef "3_IO4") )
+ (line (pt 617.96 313.57856) (pt 616.02144 313.57856) (width 0.2) (netNameRef "3_IO5") )
+ (line (pt 617.96 312.92832) (pt 614.79168 312.92832) (width 0.2) (netNameRef "3_IO6") )
+ (line (pt 617.96 317.48) (pt 616.84 317.48) (width 0.2) (netNameRef "3_DIR1") )
+ (line (pt 617.14 348.74) (pt 618.46 348.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 617.14 346.22) (pt 618.54 346.22) (width 0.2) (netNameRef "GND") )
+ (line (pt 617.1 348.7) (pt 617.14 348.74) (width 0.2) (netNameRef "GND") )
+ (line (pt 641.0 349.08) (pt 639.68 349.08) (width 1.0) (netNameRef "GND") )
+ (line (pt 639.68 349.08) (pt 639.18 348.58) (width 1.0) (netNameRef "GND") )
+ (line (pt 617.18 351.24) (pt 618.46 351.24) (width 0.2) (netNameRef "GND") )
+ (line (pt 617.18 353.72) (pt 618.34 353.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 641.0 351.68) (pt 639.48 353.2) (width 1.0) (netNameRef "+5V") )
+ (line (pt 625.13264 410.09952) (pt 634.35952 410.09952) (width 0.2) (netNameRef "~RESET") )
+ (line (pt 625.13264 409.44928) (pt 636.22928 409.44928) (width 0.2) (netNameRef "PUSK") )
+ (line (pt 636.64 409.86) (pt 640.24 409.86) (width 0.2) (netNameRef "PUSK") )
+ (line (pt 625.13264 408.79904) (pt 638.66096 408.79904) (width 0.2) (netNameRef "~ZAP") )
+ (line (pt 625.13264 408.1488) (pt 636.0912 408.1488) (width 0.2) (netNameRef "BLOK") )
+ (line (pt 636.88 407.36) (pt 640.28 407.36) (width 0.2) (netNameRef "BLOK") )
+ (line (pt 617.98 406.84832) (pt 615.62832 406.84832) (width 0.2) (netNameRef "I_10M") )
+ (line (pt 617.98 406.19808) (pt 616.34192 406.19808) (width 0.2) (netNameRef "I_1S") )
+ (line (pt 625.13264 405.54784) (pt 621.54784 405.54784) (width 0.2) (netNameRef "1S") )
+ (line (pt 620.08 404.08) (pt 616.2 404.08) (width 0.2) (netNameRef "1S") )
+ (line (pt 625.13264 410.74976) (pt 623.44976 410.74976) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.23264 416.9488) (pt 632.7488 416.9488) (width 0.2) (netNameRef "2_RDY") )
+ (line (pt 625.23264 416.29856) (pt 633.57856 416.29856) (width 0.2) (netNameRef "1_RDY") )
+ (line (pt 634.76 417.48) (pt 640.24 417.48) (width 0.2) (netNameRef "1_RDY") )
+ (line (pt 625.23264 415.64832) (pt 636.89168 415.64832) (width 0.2) (netNameRef "2_CW") )
+ (line (pt 625.23264 414.34784) (pt 635.57216 414.34784) (width 0.2) (netNameRef "1_CW") )
+ (line (pt 637.52 412.4) (pt 640.24 412.4) (width 0.2) (netNameRef "1_CW") )
+ (line (pt 618.08 418.89952) (pt 616.20048 418.89952) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 618.08 418.24928) (pt 614.95072 418.24928) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 618.08 417.59904) (pt 616.20096 417.59904) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 618.08 416.9488) (pt 614.9488 416.9488) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 618.08 416.29856) (pt 616.20144 416.29856) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 618.08 414.99808) (pt 614.90192 414.99808) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 625.23264 414.99808) (pt 623.47808 414.99808) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 618.08 414.34784) (pt 616.68784 414.34784) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.23264 425.97856) (pt 638.57856 425.97856) (width 0.2) (netNameRef "2_P_A1") )
+ (line (pt 625.23264 425.32832) (pt 635.47168 425.32832) (width 0.2) (netNameRef "1_P_A1") )
+ (line (pt 635.76 425.04) (pt 640.18 425.04) (width 0.2) (netNameRef "1_P_A1") )
+ (line (pt 625.23264 424.02784) (pt 638.67216 424.02784) (width 0.2) (netNameRef "2_P_A2") )
+ (line (pt 634.44 422.56) (pt 640.24 422.56) (width 0.2) (netNameRef "1_P_A2") )
+ (line (pt 634.6 419.96) (pt 640.18 419.96) (width 0.2) (netNameRef "1_R\\W") )
+ (line (pt 618.08 420.2) (pt 617.1 420.2) (width 0.2) (netNameRef "NET001490") )
+ (line (pt 618.08 425.97856) (pt 616.22144 425.97856) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 618.08 424.67808) (pt 614.97808 424.67808) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 618.08 419.54976) (pt 614.94976 419.54976) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 625.23264 424.67808) (pt 623.49808 424.67808) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 625.23264 419.54976) (pt 623.68976 419.54976) (width 0.4) (netNameRef "GND") )
+ (line (pt 631.89952 428.57952) (pt 634.72 431.4) (width 0.2) (netNameRef "2_STROB") )
+ (line (pt 625.23264 427.92928) (pt 633.36928 427.92928) (width 0.2) (netNameRef "1_STROB") )
+ (line (pt 639.88 430.16) (pt 641.12 431.4) (width 0.2) (netNameRef "1_STROB") )
+ (line (pt 625.23264 427.27904) (pt 636.27904 427.27904) (width 0.2) (netNameRef "2_P_A0") )
+ (line (pt 637.12 427.64) (pt 640.24 427.64) (width 0.2) (netNameRef "1_P_A0") )
+ (line (pt 617.4 429.88) (pt 615.8 431.48) (width 0.2) (netNameRef "NET001500") )
+ (line (pt 618.08 429.22976) (pt 615.12976 429.22976) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 618.05952 428.6) (pt 616.2 428.6) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 618.08 427.92928) (pt 615.12928 427.92928) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 618.08 427.27904) (pt 616.22096 427.27904) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 625.23264 429.22976) (pt 623.45024 429.22976) (width 0.4) (netNameRef "GND") )
+ (line (pt 640.28 432.76) (pt 637.12 432.76) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 622.15024 438.86976) (pt 625.23264 438.86976) (width 0.12) (netNameRef "2_~OE1") )
+ (line (pt 618.08 439.52) (pt 615.24 439.52) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 618.08 438.86976) (pt 616.36976 438.86976) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 618.08 438.21952) (pt 615.23952 438.21952) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 618.08 437.56928) (pt 616.32928 437.56928) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 618.08 436.91904) (pt 615.20096 436.91904) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 618.08 436.2688) (pt 616.3288 436.2688) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 618.08 435.61856) (pt 615.18144 435.61856) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 618.08 434.96832) (pt 616.28832 434.96832) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 637.12 440.32) (pt 640.22 440.32) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 637.28 437.76) (pt 640.2 437.76) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 636.72 435.24) (pt 640.22 435.24) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 618.0 448.24) (pt 615.44 448.24) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 618.0 447.58976) (pt 616.38976 447.58976) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 618.0 446.93952) (pt 615.27952 446.93952) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 618.0 446.28928) (pt 616.37072 446.28928) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 618.0 445.63904) (pt 615.24096 445.63904) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 618.0 444.9888) (pt 616.3512 444.9888) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 618.0 444.33856) (pt 615.16144 444.33856) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 618.0 443.68832) (pt 616.30832 443.68832) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 618.0 443.03808) (pt 615.16192 443.03808) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 621.2 447.56) (pt 625.12288 447.56) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 625.15264 446.28928) (pt 633.56928 446.28928) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 635.2 447.92) (pt 640.2 447.92) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 625.15264 445.63904) (pt 636.04096 445.63904) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 636.28 445.4) (pt 640.22 445.4) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 625.15264 444.9888) (pt 634.8112 444.9888) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 636.92 442.88) (pt 640.24 442.88) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 625.15264 444.33856) (pt 633.10144 444.33856) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 634.52 450.52) (pt 640.26 450.52) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 426.6 327.1) (pt 427.67 328.17) (width 0.3) (netNameRef "NET00542") )
+ (line (pt 411.0 326.8) (pt 412.32 328.12) (width 0.3) (netNameRef "NET00009") )
+ (line (pt 410.26 336.54) (pt 412.91431 333.88569) (width 0.3) (netNameRef "NET00140") )
+ (line (pt 441.56712 327.0129) (pt 442.46 327.90578) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 489.0 320.0) (pt 486.8 320.0) (width 0.3) (netNameRef "USB_DM") )
+ (line (pt 487.02 352.5) (pt 489.64 349.88) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 480.645 350.25) (pt 477.87 350.25) (width 1.0) (netNameRef "+5V") )
+ (line (pt 480.14 411.48) (pt 478.86 411.48) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 518.32 320.52) (pt 517.0 319.2) (width 0.127) (netNameRef "D9") )
+ (line (pt 491.75 330.41) (pt 496.98 335.64) (width 0.127) (netNameRef "INT_USB") )
+ (line (pt 495.36 341.78) (pt 503.8 350.22) (width 0.127) (netNameRef "TP21") )
+ (line (pt 494.76 340.28) (pt 504.2 349.72) (width 0.127) (netNameRef "TP22") )
+ (line (pt 505.085 355.045) (pt 510.68 360.64) (width 0.127) (netNameRef "TXE") )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "NET00255")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval None)
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 551.9 277.0)
+ (pt 535.5 277.0)
+ (pt 535.5 267.8)
+ (pt 551.9 267.8)
+ (netNameRef "NET00255")
+ )
+ (island
+ (islandOutline
+ (pt 551.9 277.0)
+ (pt 535.5 277.0)
+ (pt 535.5 267.8)
+ (pt 551.9 267.8)
+ )
+ )
+ )
+ (line (pt 538.92 304.84) (pt 526.26 304.84) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 548.6 282.14) (pt 548.6 291.54) (width 0.127) (netNameRef "R5") )
+ (line (pt 524.82 289.64) (pt 530.22 289.64) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 530.56 289.58) (pt 534.23 289.58) (width 0.6) (netNameRef "NET00271") )
+ (line (pt 549.84 320.12) (pt 548.5 318.78) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 532.98 311.8) (pt 534.2 313.02) (width 0.127) (netNameRef "A17") )
+ (line (pt 532.94 312.3) (pt 534.32 313.68) (width 0.127) (netNameRef "A16") )
+ (line (pt 527.18 315.32) (pt 522.86 311.0) (width 0.127) (netNameRef "D4") )
+ (line (pt 540.8 356.76) (pt 543.94 359.9) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 548.7 343.28) (pt 548.24 342.82) (width 0.2) (netNameRef "4_IO5") )
+ (line (pt 525.7 343.22) (pt 526.2 342.72) (width 0.2) (netNameRef "BMOD0") )
+ (line (pt 543.84 359.04) (pt 540.52 355.72) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 533.7 358.22) (pt 533.2 357.72) (width 0.2) (netNameRef "GND") )
+ (line (pt 573.3 272.22) (pt 567.52 266.44) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 571.94 269.56) (pt 568.16 265.78) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 561.08 339.0) (pt 570.36 329.72) (width 0.12) (netNameRef "DA10") )
+ (line (pt 570.41 329.31) (pt 560.7 339.02) (width 0.12) (netNameRef "AA9") )
+ (line (pt 570.27 329.01) (pt 560.28 339.0) (width 0.12) (netNameRef "AA8") )
+ (line (pt 555.32 337.92) (pt 567.83 325.41) (width 0.12) (netNameRef "DA0") )
+ (line (pt 555.08 337.8) (pt 567.77 325.11) (width 0.12) (netNameRef "ACE") )
+ (line (pt 554.7 337.74) (pt 567.63 324.81) (width 0.12) (netNameRef "AA4") )
+ (line (pt 554.32 337.64) (pt 567.45 324.51) (width 0.12) (netNameRef "AA3") )
+ (line (pt 554.08 337.4) (pt 567.27 324.21) (width 0.12) (netNameRef "AA2") )
+ (line (pt 553.7 337.34) (pt 567.13 323.91) (width 0.12) (netNameRef "AA1") )
+ (line (pt 553.2 337.4) (pt 566.99 323.61) (width 0.12) (netNameRef "AA0") (isFixed True) )
+ (line (pt 555.7 338.24) (pt 568.23 325.71) (width 0.12) (netNameRef "DA1") )
+ (line (pt 556.2 338.06) (pt 568.25 326.01) (width 0.12) (netNameRef "DA2") )
+ (line (pt 556.68 343.28) (pt 556.18 342.78) (width 0.2) (netNameRef "A4") )
+ (line (pt 587.6816 325.2784) (pt 585.14 327.82) (width 0.12) (netNameRef "AWE") )
+ (line (pt 588.4817 324.8183) (pt 585.19 328.11) (width 0.12) (netNameRef "AA5") )
+ (line (pt 585.23 328.41) (pt 589.2818 324.3582) (width 0.12) (netNameRef "AA6") )
+ (line (pt 590.0819 323.8981) (pt 585.27 328.71) (width 0.12) (netNameRef "AA7") )
+ (line (pt 590.882 323.438) (pt 585.31 329.01) (width 0.12) (netNameRef "AA8") )
+ (line (pt 591.6821 322.9779) (pt 585.35 329.31) (width 0.12) (netNameRef "AA9") )
+ (line (pt 585.88 337.91) (pt 588.4817 335.3083) (width 0.12) (netNameRef "AA14") )
+ (line (pt 586.86 344.28) (pt 595.3617 352.7817) (width 0.12) (netNameRef "AB5") )
+ (line (pt 586.22 342.28) (pt 598.5621 354.6221) (width 0.12) (netNameRef "AB9") )
+ (line (pt 590.66 358.88) (pt 598.5621 366.7821) (width 0.12) (netNameRef "AB10") )
+ (line (pt 590.56 359.18) (pt 597.762 366.382) (width 0.12) (netNameRef "AB11") )
+ (line (pt 590.46 359.48) (pt 596.9619 365.9819) (width 0.12) (netNameRef "AB12") )
+ (line (pt 586.54 343.28) (pt 596.9619 353.7019) (width 0.12) (netNameRef "AB7") )
+ (line (pt 585.6 344.66) (pt 594.5616 353.6216) (width 0.12) (netNameRef "BWE") )
+ (line (pt 585.5 344.9) (pt 593.7615 353.1615) (width 0.12) (netNameRef "DB7") )
+ (line (pt 585.54 345.28) (pt 592.9614 352.7014) (width 0.12) (netNameRef "DB6") )
+ (line (pt 585.42 345.9) (pt 591.3612 351.8412) (width 0.12) (netNameRef "DB4") )
+ (line (pt 585.58 345.66) (pt 592.1613 352.2413) (width 0.12) (netNameRef "DB5") )
+ (line (pt 597.762 354.162) (pt 586.38 342.78) (width 0.12) (netNameRef "AB8") )
+ (line (pt 586.7 343.78) (pt 596.1618 353.2418) (width 0.12) (netNameRef "AB6") )
+ (line (pt 641.36 298.1) (pt 640.1 296.84) (width 0.2) (netNameRef "3_STROB") )
+ (line (pt 640.08 289.2) (pt 641.36 290.48) (width 0.2) (netNameRef "3_P_A2") )
+ (line (pt 630.21168 285.46832) (pt 635.36 280.32) (width 0.2) (netNameRef "4_CW") )
+ (line (pt 629.64192 284.81808) (pt 635.34 279.12) (width 0.2) (netNameRef "3_CW") )
+ (line (pt 625.15264 289.36976) (pt 623.64976 289.36976) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.23264 426.6288) (pt 636.1088 426.6288) (width 0.2) (netNameRef "1_P_A0") )
+ (line (pt 630.77952 418.89952) (pt 634.44 422.56) (width 0.2) (netNameRef "1_P_A2") )
+ (line (pt 631.48928 418.24928) (pt 634.48 421.24) (width 0.2) (netNameRef "2_R\\W") )
+ (line (pt 632.23904 417.59904) (pt 634.6 419.96) (width 0.2) (netNameRef "1_R\\W") )
+ (line (pt 617.98 411.4) (pt 616.6 411.4) (width 0.4) (netNameRef "NET00145") )
+ (line (pt 618.08 426.6288) (pt 615.0288 426.6288) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 618.08 434.31808) (pt 615.16192 434.31808) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 630.93952 446.93952) (pt 634.52 450.52) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 631.35168 443.68832) (pt 637.28 437.76) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 628.92192 443.03808) (pt 636.72 435.24) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 637.12 432.76) (pt 627.49216 442.38784) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 493.92 339.08) (pt 504.06 349.22) (width 0.127) (netNameRef "TP23") )
+ (line (pt 493.08 337.88) (pt 503.94 348.74) (width 0.127) (netNameRef "TP24") )
+ (line (pt 491.94 336.38) (pt 503.78 348.22) (width 0.127) (netNameRef "TP25") )
+ (line (pt 496.98 336.82) (pt 507.38 347.22) (width 0.127) (netNameRef "INT_USB") )
+ (line (pt 503.96 347.72) (pt 491.82 335.58) (width 0.127) (netNameRef "TP26") )
+ (line (pt 499.92 307.28) (pt 494.25 312.95) (width 0.127) (netNameRef "D4") )
+ (line (pt 499.08 307.04) (pt 493.75 312.37) (width 0.127) (netNameRef "D3") )
+ (line (pt 511.24 344.22) (pt 498.25 331.23) (width 0.127) (netNameRef "~DMA_RD") )
+ (line (pt 496.75 331.15) (pt 510.32 344.72) (width 0.127) (netNameRef "ALE") )
+ (line (pt 494.25 329.39) (pt 510.58 345.72) (width 0.127) (netNameRef "~RSUSB") )
+ (line (pt 510.3 346.22) (pt 492.75 328.67) (width 0.127) (netNameRef "~USB") )
+ (line (pt 509.94 346.72) (pt 492.25 329.03) (width 0.127) (netNameRef "DREQ") )
+ (line (pt 543.8 309.72) (pt 538.92 304.84) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 539.8 304.4) (pt 544.8 309.4) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 570.72 331.16) (pt 562.7 339.18) (width 0.12) (netNameRef "DA15") )
+ (line (pt 570.6 330.92) (pt 562.32 339.2) (width 0.12) (netNameRef "DA14") )
+ (line (pt 562.08 339.08) (pt 570.48 330.68) (width 0.12) (netNameRef "DA13") )
+ (line (pt 561.32 339.12) (pt 570.48 329.96) (width 0.12) (netNameRef "DA11") )
+ (line (pt 561.7 339.12) (pt 570.38 330.44) (width 0.12) (netNameRef "DA12") )
+ (line (pt 570.13 328.71) (pt 559.7 339.14) (width 0.12) (netNameRef "AA7") )
+ (line (pt 558.08 339.08) (pt 569.58 327.58) (width 0.12) (netNameRef "DA7") )
+ (line (pt 559.2 339.12) (pt 569.91 328.41) (width 0.12) (netNameRef "AA6") )
+ (line (pt 569.73 328.11) (pt 558.7 339.14) (width 0.12) (netNameRef "AA5") )
+ (line (pt 569.68 327.82) (pt 558.32 339.18) (width 0.12) (netNameRef "AWE") )
+ (line (pt 569.48 327.34) (pt 557.7 339.12) (width 0.12) (netNameRef "DA6") )
+ (line (pt 557.32 339.16) (pt 569.38 327.1) (width 0.12) (netNameRef "DA5") )
+ (line (pt 569.53 326.61) (pt 557.08 339.06) (width 0.12) (netNameRef "DA4") )
+ (line (pt 556.7 339.1) (pt 569.49 326.31) (width 0.12) (netNameRef "DA3") )
+ (text (pt 604.7 246.4) ".467444.160\r\n\r\nVer. 1" (textStyleRef "T:H80W8") (justify Center) (extent 15.01562 6.8125) )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "+3,3V2")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval None)
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 624.1 362.7)
+ (pt 624.1 339.4)
+ (pt 633.4 339.4)
+ (pt 633.4 362.7)
+ (netNameRef "+3,3V2")
+ )
+ (island
+ (islandOutline
+ (pt 624.1 362.7)
+ (pt 624.1 339.4)
+ (pt 633.4 339.4)
+ (pt 633.4 362.7)
+ )
+ )
+ )
+ (line (pt 631.1088 304.6288) (pt 637.28 310.8) (width 0.2) (netNameRef "4_OUT3") )
+ (line (pt 629.47904 305.27904) (pt 637.54 313.34) (width 0.2) (netNameRef "4_OUT2") )
+ (line (pt 628.76928 305.92928) (pt 638.72 315.88) (width 0.2) (netNameRef "4_OUT1") )
+ (line (pt 488.08 341.78) (pt 495.36 341.78) (width 0.127) (netNameRef "TP21") )
+ (line (pt 487.02 352.5) (pt 491.32 352.5) (width 0.6) (netNameRef "+3,3VF") )
+ (line (pt 618.55 275.33) (pt 607.27 275.33) (width 0.2) (netNameRef "DP") )
+ (line (pt 618.55 276.6) (pt 607.64 276.6) (width 0.2) (netNameRef "_RSS") )
+ (line (pt 617.99808 302.72) (pt 613.36 302.72) (width 0.2) (netNameRef "4_IO7") )
+ (line (pt 525.82 310.88) (pt 521.5 306.56) (width 0.127) (netNameRef "D0") )
+ (line (pt 617.93808 312.3) (pt 613.4 312.3) (width 0.2) (netNameRef "3_IO7") )
+ (line (pt 530.56 316.3) (pt 521.9 316.3) (width 0.127) (netNameRef "D5") )
+ (line (pt 569.38 327.1) (pt 584.84 327.1) (width 0.12) (netNameRef "DA5") )
+ (line (pt 584.94 327.34) (pt 569.48 327.34) (width 0.12) (netNameRef "DA6") )
+ (line (pt 569.58 327.58) (pt 585.04 327.58) (width 0.12) (netNameRef "DA7") )
+ (line (pt 516.22 324.02) (pt 523.2 324.02) (width 0.127) (netNameRef "D13") )
+ (line (pt 522.86 324.82) (pt 516.78 324.82) (width 0.127) (netNameRef "D14") )
+ (line (pt 585.14 327.82) (pt 569.68 327.82) (width 0.12) (netNameRef "AWE") )
+ (line (pt 585.19 328.11) (pt 569.73 328.11) (width 0.12) (netNameRef "AA5") )
+ (line (pt 569.91 328.41) (pt 585.23 328.41) (width 0.12) (netNameRef "AA6") )
+ (line (pt 585.27 328.71) (pt 570.13 328.71) (width 0.12) (netNameRef "AA7") )
+ (line (pt 585.31 329.01) (pt 570.27 329.01) (width 0.12) (netNameRef "AA8") )
+ (line (pt 585.35 329.31) (pt 570.41 329.31) (width 0.12) (netNameRef "AA9") )
+ (line (pt 569.7 342.28) (pt 586.22 342.28) (width 0.12) (netNameRef "AB9") )
+ (line (pt 569.28 338.81) (pt 588.17 338.81) (width 0.12) (netNameRef "AA11") )
+ (line (pt 568.63 337.61) (pt 585.78 337.61) (width 0.12) (netNameRef "AA18") )
+ (line (pt 568.47 337.01) (pt 585.58 337.01) (width 0.12) (netNameRef "DA9") )
+ (line (pt 585.68 337.31) (pt 568.57 337.31) (width 0.12) (netNameRef "DA8") )
+ (line (pt 568.77 337.91) (pt 585.88 337.91) (width 0.12) (netNameRef "AA14") )
+ (line (pt 568.88 338.21) (pt 588.08 338.21) (width 0.12) (netNameRef "AA13") )
+ (line (pt 569.13 338.51) (pt 588.13 338.51) (width 0.12) (netNameRef "AA12") )
+ (line (pt 573.82 339.16) (pt 588.54 339.16) (width 0.12) (netNameRef "AA10") )
+ (line (pt 586.38 342.78) (pt 569.2 342.78) (width 0.12) (netNameRef "AB8") )
+ (line (pt 568.32 344.9) (pt 585.5 344.9) (width 0.12) (netNameRef "DB7") )
+ (line (pt 569.7 343.28) (pt 586.54 343.28) (width 0.12) (netNameRef "AB7") )
+ (line (pt 583.56 349.98) (pt 570.4 349.98) (width 0.12) (netNameRef "AB4") )
+ (line (pt 569.7 344.28) (pt 586.86 344.28) (width 0.12) (netNameRef "AB5") )
+ (line (pt 569.08 344.66) (pt 585.6 344.66) (width 0.12) (netNameRef "BWE") )
+ (line (pt 569.7 345.28) (pt 585.54 345.28) (width 0.12) (netNameRef "DB6") )
+ (line (pt 569.7 346.28) (pt 585.46 346.28) (width 0.12) (netNameRef "DB3") )
+ (line (pt 569.08 345.66) (pt 585.58 345.66) (width 0.12) (netNameRef "DB5") )
+ (line (pt 568.32 345.9) (pt 585.42 345.9) (width 0.12) (netNameRef "DB4") )
+ (line (pt 569.2 343.78) (pt 586.7 343.78) (width 0.12) (netNameRef "AB6") )
+ (line (pt 522.7 360.14) (pt 517.98 364.86) (width 0.127) (netNameRef "TP15") )
+ (line (pt 522.22 359.12) (pt 516.08 365.26) (width 0.127) (netNameRef "TP18") )
+ (line (pt 578.6 358.88) (pt 590.66 358.88) (width 0.12) (netNameRef "AB10") )
+ (line (pt 578.5 359.18) (pt 590.56 359.18) (width 0.12) (netNameRef "AB11") )
+ (line (pt 578.4 359.48) (pt 590.46 359.48) (width 0.12) (netNameRef "AB12") )
+ (line (pt 577.9 360.98) (pt 589.96 360.98) (width 0.12) (netNameRef "DB9") )
+ (line (pt 578.0 360.68) (pt 590.06 360.68) (width 0.12) (netNameRef "DB8") )
+ (line (pt 590.16 360.38) (pt 578.1 360.38) (width 0.12) (netNameRef "AB18") )
+ (line (pt 578.2 360.08) (pt 590.26 360.08) (width 0.12) (netNameRef "AB14") )
+ (line (pt 578.24 359.78) (pt 590.36 359.78) (width 0.12) (netNameRef "AB13") )
+ (line (pt 575.7 362.88) (pt 582.92 362.88) (width 0.12) (netNameRef "DB15") )
+ (line (pt 576.72 361.7) (pt 588.08 361.7) (width 0.12) (netNameRef "DB11") )
+ (line (pt 576.84 361.42) (pt 588.2 361.42) (width 0.12) (netNameRef "DB10") )
+ (line (pt 584.78 362.58) (pt 575.76 362.58) (width 0.12) (netNameRef "DB14") )
+ (line (pt 586.3 361.98) (pt 576.64 361.98) (width 0.12) (netNameRef "DB12") )
+ (line (pt 576.62 362.28) (pt 585.06 362.28) (width 0.12) (netNameRef "DB13") )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "+3,3VF")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval None)
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 482.9 360.3)
+ (pt 482.9 345.2)
+ (pt 495.1 345.2)
+ (pt 495.1 363.9)
+ (pt 482.9 363.9)
+ (netNameRef "+3,3VF")
+ )
+ (island
+ (islandOutline
+ (pt 482.9 345.2)
+ (pt 495.1 345.2)
+ (pt 495.1 363.9)
+ (pt 482.9 363.9)
+ )
+ )
+ )
+ (line (pt 548.22 327.34) (pt 556.06 319.5) (width 0.127) (netNameRef "PF3") )
+ (line (pt 547.94 327.06) (pt 555.44 319.56) (width 0.127) (netNameRef "PF2") )
+ (line (pt 529.82 320.04) (pt 522.0 320.04) (width 0.127) (netNameRef "D11") )
+ (line (pt 548.26 327.7) (pt 556.54 319.42) (width 0.127) (netNameRef "SCK") )
+ (line (pt 548.34 328.1) (pt 557.12 319.32) (width 0.127) (netNameRef "MISO") )
+ (line (pt 548.56 328.42) (pt 557.84 319.14) (width 0.127) (netNameRef "MOSI") )
+ (line (pt 581.8 346.8) (pt 588.1608 353.1608) (width 0.12) (netNameRef "DB2") )
+ (line (pt 581.94 347.28) (pt 587.3607 352.7007) (width 0.12) (netNameRef "DB1") )
+ (line (pt 526.2 370.64) (pt 517.48 379.36) (width 0.2) (netNameRef "VD1") )
+ (line (pt 521.28 377.56) (pt 526.7 372.14) (width 0.2) (netNameRef "VD2") )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "NET00158")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 3)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval None)
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 427.5 320.0)
+ (pt 427.5 304.2)
+ (pt 446.7 304.2)
+ (pt 446.7 320.0)
+ (netNameRef "NET00158")
+ )
+ (island
+ (islandOutline
+ (pt 427.5 320.0)
+ (pt 427.5 304.2)
+ (pt 446.7 304.2)
+ (pt 446.7 320.0)
+ )
+ )
+ )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "+2,5V")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval None)
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 471.4 308.6)
+ (pt 471.4 298.0)
+ (pt 491.9 298.0)
+ (pt 491.9 308.6)
+ (pt 486.2 308.6)
+ (pt 486.2 312.5)
+ (pt 472.6 312.5)
+ (pt 471.4 312.5)
+ (netNameRef "+2,5V")
+ )
+ (island
+ (islandOutline
+ (pt 471.4 298.0)
+ (pt 491.9 298.0)
+ (pt 491.9 308.6)
+ (pt 486.2 308.6)
+ (pt 486.2 312.5)
+ (pt 471.4 312.5)
+ )
+ )
+ )
+ (polyCutOut
+ (pcbPoly
+ (pt 595.9 241.2)
+ (pt 614.3 241.2)
+ (pt 614.3 251.4)
+ (pt 595.9 251.4)
+ )
+ )
+ (line (pt 547.56 282.18) (pt 565.92 263.82) (width 0.127) (netNameRef "R6") )
+ (line (pt 566.54 264.2) (pt 548.6 282.14) (width 0.127) (netNameRef "R5") )
+ (line (pt 528.68 314.3) (pt 521.18 306.8) (width 0.127) (netNameRef "D2") )
+ (line (pt 527.72 314.22) (pt 520.54 307.04) (width 0.127) (netNameRef "D3") )
+ (line (pt 536.46 344.22) (pt 610.9 269.78) (width 0.2) (netNameRef "D_I") )
+ (line (pt 607.27 275.33) (pt 537.88 344.72) (width 0.2) (netNameRef "DP") )
+ (line (pt 607.64 276.6) (pt 538.52 345.72) (width 0.2) (netNameRef "_RSS") )
+ (line (pt 541.84 343.26) (pt 606.38 278.72) (width 0.2) (netNameRef "CKP") )
+ (line (pt 539.84 345.98) (pt 608.16 277.66) (width 0.2) (netNameRef "STP") )
+ (copperPour95
+ (pourType Hatch45Pour)
+ (netNameRef "GND")
+ (width 0.2)
+ (pourSpacing 0.5)
+ (pourBackoff 0.3)
+ (useDesignRules False)
+ (pourSmoothness 3)
+ (thermalType Therm45)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval unconnected)
+ (viaThermalType Therm45)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 370.0 464.5)
+ (pt 369.9 237.1)
+ (pt 649.1 237.1)
+ (pt 649.1 464.6)
+ (netNameRef "GND")
+ )
+ (island
+ (islandOutline
+ (pt 443.40607 336.77679)
+ (pt 443.53838 336.68838)
+ (pt 443.60217 336.59292)
+ (pt 443.60217 337.38)
+ (pt 443.63321 337.53607)
+ (pt 443.72162 337.66838)
+ (pt 443.85393 337.75679)
+ (pt 444.01 337.78783)
+ (pt 444.01056 337.78783)
+ (pt 444.01056 337.90217)
+ (pt 443.92 337.90217)
+ (pt 443.76393 337.93321)
+ (pt 443.72384 337.96)
+ (pt 443.31616 337.96)
+ (pt 443.30144 337.95016)
+ (pt 443.44778 337.73116)
+ (pt 443.51763 337.38)
+ (pt 443.44778 337.02884)
+ (pt 443.29423 336.79903)
+ )
+ (thermal (pt 442.85 337.63) (pt 443.30144 337.95016) (thermalWidth 0.381))
+ (thermal (pt 442.85 337.13) (pt 443.29423 336.79903) (thermalWidth 0.381))
+ (thermal (pt 443.0595 336.2095) (pt 443.53838 336.68838) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 495.83543 356.63596)
+ (pt 496.03114 356.92886)
+ (pt 496.32884 357.12778)
+ (pt 496.68 357.19763)
+ (pt 497.03116 357.12778)
+ (pt 497.28945 356.9552)
+ (pt 497.31162 356.98838)
+ (pt 497.44393 357.07679)
+ (pt 497.6 357.10783)
+ (pt 498.4 357.10783)
+ (pt 498.55607 357.07679)
+ (pt 498.68838 356.98838)
+ (pt 498.74744 356.9)
+ (pt 498.85256 356.9)
+ (pt 498.91162 356.98838)
+ (pt 499.04393 357.07679)
+ (pt 499.2 357.10783)
+ (pt 500.0 357.10783)
+ (pt 500.15607 357.07679)
+ (pt 500.28838 356.98838)
+ (pt 500.37679 356.85607)
+ (pt 500.37975 356.8412)
+ (pt 500.39582 356.8412)
+ (pt 500.93231 357.37769)
+ (pt 501.315 357.5362)
+ (pt 502.05489 357.5362)
+ (pt 502.03325 357.645)
+ (pt 502.05489 357.7538)
+ (pt 500.38783 357.7538)
+ (pt 500.38783 357.74)
+ (pt 500.35679 357.58393)
+ (pt 500.26838 357.45162)
+ (pt 500.13607 357.36321)
+ (pt 499.98 357.33217)
+ (pt 499.18 357.33217)
+ (pt 499.02393 357.36321)
+ (pt 498.89162 357.45162)
+ (pt 498.83256 357.54)
+ (pt 498.72744 357.54)
+ (pt 498.66838 357.45162)
+ (pt 498.53607 357.36321)
+ (pt 498.38 357.33217)
+ (pt 497.58 357.33217)
+ (pt 497.42393 357.36321)
+ (pt 497.29162 357.45162)
+ (pt 497.22704 357.54827)
+ (pt 497.18886 357.49114)
+ (pt 496.89116 357.29222)
+ (pt 496.54 357.22237)
+ (pt 496.18884 357.29222)
+ (pt 495.89114 357.49114)
+ (pt 495.83543 357.57451)
+ )
+ (thermal (pt 496.93 356.53) (pt 497.28945 356.9552) (thermalWidth 0.381))
+ (thermal (pt 496.43 356.53) (pt 496.03114 356.92886) (thermalWidth 0.381))
+ (thermal (pt 496.29 357.89) (pt 495.89114 357.49114) (thermalWidth 0.381))
+ (thermal (pt 496.79 357.89) (pt 497.18886 357.49114) (thermalWidth 0.381))
+ (thermal (pt 497.7905 356.5095) (pt 497.31162 356.98838) (thermalWidth 0.381))
+ (thermal (pt 497.7705 357.9305) (pt 497.29162 357.45162) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 520.13257 343.65257)
+ (pt 520.2 343.55165)
+ (pt 520.26743 343.65257)
+ (pt 520.36835 343.72)
+ (pt 520.26743 343.78743)
+ (pt 520.2 343.88835)
+ (pt 520.13257 343.78743)
+ (pt 520.03165 343.72)
+ )
+ (thermal (pt 519.8 344.12) (pt 520.13257 343.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 524.13257 348.65257)
+ (pt 524.2 348.55165)
+ (pt 524.26743 348.65257)
+ (pt 524.36835 348.72)
+ (pt 524.26743 348.78743)
+ (pt 524.2 348.88835)
+ (pt 524.13257 348.78743)
+ (pt 524.03165 348.72)
+ )
+ (thermal (pt 524.6 349.12) (pt 524.26743 348.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 524.13257 351.78743)
+ (pt 524.03165 351.72)
+ (pt 524.13257 351.65257)
+ (pt 524.2 351.55165)
+ (pt 524.26743 351.65257)
+ (pt 524.36835 351.72)
+ (pt 524.26743 351.78743)
+ (pt 524.2 351.88835)
+ )
+ (thermal (pt 524.6 351.32) (pt 524.26743 351.65257) (thermalWidth 0.381))
+ (thermal (pt 524.6 352.12) (pt 524.26743 351.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 524.13257 352.78743)
+ (pt 524.03165 352.72)
+ (pt 524.13257 352.65257)
+ (pt 524.2 352.55165)
+ (pt 524.26743 352.65257)
+ (pt 524.36835 352.72)
+ (pt 524.26743 352.78743)
+ (pt 524.2 352.88835)
+ )
+ (thermal (pt 524.6 352.32) (pt 524.26743 352.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 520.13257 356.65257)
+ (pt 520.2 356.55165)
+ (pt 520.26743 356.65257)
+ (pt 520.36835 356.72)
+ (pt 520.26743 356.78743)
+ (pt 520.2 356.88835)
+ (pt 520.13257 356.78743)
+ (pt 520.03165 356.72)
+ )
+ (thermal (pt 519.8 357.12) (pt 520.13257 356.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 532.13257 343.65257)
+ (pt 532.2 343.55165)
+ (pt 532.26743 343.65257)
+ (pt 532.36835 343.72)
+ (pt 532.26743 343.78743)
+ (pt 532.2 343.88835)
+ (pt 532.13257 343.78743)
+ (pt 532.03165 343.72)
+ )
+ (thermal (pt 532.6 344.12) (pt 532.26743 343.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 528.13257 348.65257)
+ (pt 528.2 348.55165)
+ (pt 528.26743 348.65257)
+ (pt 528.36835 348.72)
+ (pt 528.26743 348.78743)
+ (pt 528.2 348.88835)
+ (pt 528.13257 348.78743)
+ (pt 528.03165 348.72)
+ )
+ (thermal (pt 527.8 349.12) (pt 528.13257 348.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 528.13257 349.78743)
+ (pt 528.03165 349.72)
+ (pt 528.13257 349.65257)
+ (pt 528.2 349.55165)
+ (pt 528.26743 349.65257)
+ (pt 528.36835 349.72)
+ (pt 528.26743 349.78743)
+ (pt 528.2 349.88835)
+ )
+ (thermal (pt 527.8 349.32) (pt 528.13257 349.65257) (thermalWidth 0.381))
+ (thermal (pt 527.8 350.12) (pt 528.13257 349.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 527.13257 348.65257)
+ (pt 527.2 348.55165)
+ (pt 527.26743 348.65257)
+ (pt 527.36835 348.72)
+ (pt 527.26743 348.78743)
+ (pt 527.2 348.88835)
+ (pt 527.13257 348.78743)
+ (pt 527.03165 348.72)
+ )
+ (thermal (pt 527.6 349.12) (pt 527.26743 348.78743) (thermalWidth 0.381))
+ (thermal (pt 526.8 349.12) (pt 527.13257 348.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 527.13257 349.78743)
+ (pt 527.03165 349.72)
+ (pt 527.13257 349.65257)
+ (pt 527.2 349.55165)
+ (pt 527.26743 349.65257)
+ (pt 527.36835 349.72)
+ (pt 527.26743 349.78743)
+ (pt 527.2 349.88835)
+ )
+ (thermal (pt 527.6 349.32) (pt 527.26743 349.65257) (thermalWidth 0.381))
+ (thermal (pt 527.6 350.12) (pt 527.26743 349.78743) (thermalWidth 0.381))
+ (thermal (pt 526.8 349.32) (pt 527.13257 349.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 528.13257 351.78743)
+ (pt 528.03165 351.72)
+ (pt 528.13257 351.65257)
+ (pt 528.2 351.55165)
+ (pt 528.26743 351.65257)
+ (pt 528.36835 351.72)
+ (pt 528.26743 351.78743)
+ (pt 528.2 351.88835)
+ )
+ (thermal (pt 527.8 352.12) (pt 528.13257 351.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 528.13257 352.78743)
+ (pt 528.03165 352.72)
+ (pt 528.13257 352.65257)
+ (pt 528.2 352.55165)
+ (pt 528.26743 352.65257)
+ (pt 528.36835 352.72)
+ (pt 528.26743 352.78743)
+ (pt 528.2 352.88835)
+ )
+ (thermal (pt 527.8 352.32) (pt 528.13257 352.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 532.13257 357.78743)
+ (pt 532.03165 357.72)
+ (pt 532.13257 357.65257)
+ (pt 532.2 357.55165)
+ (pt 532.26743 357.65257)
+ (pt 532.36835 357.72)
+ (pt 532.26743 357.78743)
+ (pt 532.2 357.88835)
+ )
+ (thermal (pt 532.6 357.32) (pt 532.26743 357.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 527.13257 352.78743)
+ (pt 527.03165 352.72)
+ (pt 527.13257 352.65257)
+ (pt 527.2 352.55165)
+ (pt 527.26743 352.65257)
+ (pt 527.36835 352.72)
+ (pt 527.26743 352.78743)
+ (pt 527.2 352.88835)
+ )
+ (thermal (pt 527.6 352.32) (pt 527.26743 352.65257) (thermalWidth 0.381))
+ (thermal (pt 526.8 352.32) (pt 527.13257 352.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 538.80975 318.79025)
+ (pt 538.82434 318.8)
+ (pt 538.80975 318.80975)
+ (pt 538.8 318.82434)
+ (pt 538.79025 318.80975)
+ (pt 538.77566 318.8)
+ (pt 538.79025 318.79025)
+ (pt 538.8 318.77566)
+ )
+ (thermal (pt 538.44 319.16) (pt 538.79025 318.80975) (thermalWidth 0.381))
+ (thermal (pt 538.44 318.44) (pt 538.79025 318.79025) (thermalWidth 0.381))
+ (thermal (pt 539.16 319.16) (pt 538.80975 318.80975) (thermalWidth 0.381))
+ (thermal (pt 539.16 318.44) (pt 538.80975 318.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 537.79025 318.79025)
+ (pt 537.8 318.77566)
+ (pt 537.80975 318.79025)
+ (pt 537.82434 318.8)
+ (pt 537.80975 318.80975)
+ (pt 537.8 318.82434)
+ (pt 537.79025 318.80975)
+ (pt 537.77566 318.8)
+ )
+ (thermal (pt 538.16 319.16) (pt 537.80975 318.80975) (thermalWidth 0.381))
+ (thermal (pt 537.44 319.16) (pt 537.79025 318.80975) (thermalWidth 0.381))
+ (thermal (pt 538.16 318.44) (pt 537.80975 318.79025) (thermalWidth 0.381))
+ (thermal (pt 537.44 318.44) (pt 537.79025 318.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 536.79025 318.79025)
+ (pt 536.8 318.77566)
+ (pt 536.80975 318.79025)
+ (pt 536.82434 318.8)
+ (pt 536.80975 318.80975)
+ (pt 536.8 318.82434)
+ (pt 536.79025 318.80975)
+ (pt 536.77566 318.8)
+ )
+ (thermal (pt 537.16 319.16) (pt 536.80975 318.80975) (thermalWidth 0.381))
+ (thermal (pt 537.16 318.44) (pt 536.80975 318.79025) (thermalWidth 0.381))
+ (thermal (pt 536.44 318.44) (pt 536.79025 318.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 538.80975 317.79025)
+ (pt 538.82434 317.8)
+ (pt 538.80975 317.80975)
+ (pt 538.8 317.82434)
+ (pt 538.79025 317.80975)
+ (pt 538.77566 317.8)
+ (pt 538.79025 317.79025)
+ (pt 538.8 317.77566)
+ )
+ (thermal (pt 538.44 318.16) (pt 538.79025 317.80975) (thermalWidth 0.381))
+ (thermal (pt 538.44 317.44) (pt 538.79025 317.79025) (thermalWidth 0.381))
+ (thermal (pt 539.16 318.16) (pt 538.80975 317.80975) (thermalWidth 0.381))
+ (thermal (pt 539.16 317.44) (pt 538.80975 317.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 537.79025 317.79025)
+ (pt 537.8 317.77566)
+ (pt 537.80975 317.79025)
+ (pt 537.82434 317.8)
+ (pt 537.80975 317.80975)
+ (pt 537.8 317.82434)
+ (pt 537.79025 317.80975)
+ (pt 537.77566 317.8)
+ )
+ (thermal (pt 538.16 318.16) (pt 537.80975 317.80975) (thermalWidth 0.381))
+ (thermal (pt 537.44 318.16) (pt 537.79025 317.80975) (thermalWidth 0.381))
+ (thermal (pt 538.16 317.44) (pt 537.80975 317.79025) (thermalWidth 0.381))
+ (thermal (pt 537.44 317.44) (pt 537.79025 317.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 536.79025 317.79025)
+ (pt 536.8 317.77566)
+ (pt 536.80975 317.79025)
+ (pt 536.82434 317.8)
+ (pt 536.80975 317.80975)
+ (pt 536.8 317.82434)
+ (pt 536.79025 317.80975)
+ (pt 536.77566 317.8)
+ )
+ (thermal (pt 537.16 318.16) (pt 536.80975 317.80975) (thermalWidth 0.381))
+ (thermal (pt 536.44 318.16) (pt 536.79025 317.80975) (thermalWidth 0.381))
+ (thermal (pt 537.16 317.44) (pt 536.80975 317.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 539.79025 317.79025)
+ (pt 539.8 317.77566)
+ (pt 539.80975 317.79025)
+ (pt 539.82434 317.8)
+ (pt 539.80975 317.80975)
+ (pt 539.8 317.82434)
+ (pt 539.79025 317.80975)
+ (pt 539.77566 317.8)
+ )
+ (thermal (pt 540.16 318.16) (pt 539.80975 317.80975) (thermalWidth 0.381))
+ (thermal (pt 540.16 317.44) (pt 539.80975 317.79025) (thermalWidth 0.381))
+ (thermal (pt 539.44 318.16) (pt 539.79025 317.80975) (thermalWidth 0.381))
+ (thermal (pt 539.44 317.44) (pt 539.79025 317.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 538.80975 316.79025)
+ (pt 538.82434 316.8)
+ (pt 538.80975 316.80975)
+ (pt 538.8 316.82434)
+ (pt 538.79025 316.80975)
+ (pt 538.77566 316.8)
+ (pt 538.79025 316.79025)
+ (pt 538.8 316.77566)
+ )
+ (thermal (pt 538.44 317.16) (pt 538.79025 316.80975) (thermalWidth 0.381))
+ (thermal (pt 538.44 316.44) (pt 538.79025 316.79025) (thermalWidth 0.381))
+ (thermal (pt 539.16 317.16) (pt 538.80975 316.80975) (thermalWidth 0.381))
+ (thermal (pt 539.16 316.44) (pt 538.80975 316.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 537.79025 316.79025)
+ (pt 537.8 316.77566)
+ (pt 537.80975 316.79025)
+ (pt 537.82434 316.8)
+ (pt 537.80975 316.80975)
+ (pt 537.8 316.82434)
+ (pt 537.79025 316.80975)
+ (pt 537.77566 316.8)
+ )
+ (thermal (pt 538.16 317.16) (pt 537.80975 316.80975) (thermalWidth 0.381))
+ (thermal (pt 538.16 316.44) (pt 537.80975 316.79025) (thermalWidth 0.381))
+ (thermal (pt 537.44 317.16) (pt 537.79025 316.80975) (thermalWidth 0.381))
+ (thermal (pt 537.44 316.44) (pt 537.79025 316.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 546.80975 311.80975)
+ (pt 546.8 311.82434)
+ (pt 546.79025 311.80975)
+ (pt 546.77566 311.8)
+ (pt 546.79025 311.79025)
+ (pt 546.8 311.77566)
+ (pt 546.80975 311.79025)
+ (pt 546.82434 311.8)
+ )
+ (thermal (pt 546.44 311.44) (pt 546.79025 311.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 541.79025 316.79025)
+ (pt 541.8 316.77566)
+ (pt 541.80975 316.79025)
+ (pt 541.82434 316.8)
+ (pt 541.80975 316.80975)
+ (pt 541.8 316.82434)
+ (pt 541.79025 316.80975)
+ (pt 541.77566 316.8)
+ )
+ (thermal (pt 542.16 316.44) (pt 541.80975 316.79025) (thermalWidth 0.381))
+ (thermal (pt 541.44 317.16) (pt 541.79025 316.80975) (thermalWidth 0.381))
+ (thermal (pt 541.44 316.44) (pt 541.79025 316.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 544.98 398.44783)
+ (pt 545.13607 398.41679)
+ (pt 545.26838 398.32838)
+ (pt 545.35679 398.19607)
+ (pt 545.38783 398.04)
+ (pt 545.38783 397.57783)
+ (pt 545.43803 397.83018)
+ (pt 545.65904 398.16096)
+ (pt 545.98982 398.38197)
+ (pt 546.28153 398.44)
+ (pt 545.98982 398.49803)
+ (pt 545.65904 398.71904)
+ (pt 545.43803 399.04982)
+ (pt 545.38 399.34153)
+ (pt 545.32197 399.04982)
+ (pt 545.10096 398.71904)
+ (pt 544.77018 398.49803)
+ (pt 544.51783 398.44783)
+ )
+ (thermal (pt 544.68 399.14) (pt 545.10096 398.71904) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.26743 349.84743)
+ (pt 551.2 349.94835)
+ (pt 551.13257 349.84743)
+ (pt 551.03165 349.78)
+ (pt 551.13257 349.71257)
+ (pt 551.2 349.61165)
+ (pt 551.26743 349.71257)
+ (pt 551.36835 349.78)
+ )
+ (thermal (pt 551.6 350.18) (pt 551.26743 349.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.26743 347.71257)
+ (pt 551.36835 347.78)
+ (pt 551.26743 347.84743)
+ (pt 551.2 347.94835)
+ (pt 551.13257 347.84743)
+ (pt 551.03165 347.78)
+ (pt 551.13257 347.71257)
+ (pt 551.2 347.61165)
+ )
+ (thermal (pt 550.8 347.38) (pt 551.13257 347.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.26743 343.71257)
+ (pt 552.36835 343.78)
+ (pt 552.26743 343.84743)
+ (pt 552.2 343.94835)
+ (pt 552.13257 343.84743)
+ (pt 552.03165 343.78)
+ (pt 552.13257 343.71257)
+ (pt 552.2 343.61165)
+ )
+ (thermal (pt 552.6 344.18) (pt 552.26743 343.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.26743 344.84743)
+ (pt 552.2 344.94835)
+ (pt 552.13257 344.84743)
+ (pt 552.03165 344.78)
+ (pt 552.13257 344.71257)
+ (pt 552.2 344.61165)
+ (pt 552.26743 344.71257)
+ (pt 552.36835 344.78)
+ )
+ (thermal (pt 552.6 344.38) (pt 552.26743 344.71257) (thermalWidth 0.381))
+ (thermal (pt 552.6 345.18) (pt 552.26743 344.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 343.71257)
+ (pt 554.36835 343.78)
+ (pt 554.26743 343.84743)
+ (pt 554.2 343.94835)
+ (pt 554.13257 343.84743)
+ (pt 554.03165 343.78)
+ (pt 554.13257 343.71257)
+ (pt 554.2 343.61165)
+ )
+ (thermal (pt 553.8 344.18) (pt 554.13257 343.84743) (thermalWidth 0.381))
+ (thermal (pt 554.6 344.18) (pt 554.26743 343.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 344.84743)
+ (pt 554.2 344.94835)
+ (pt 554.13257 344.84743)
+ (pt 554.03165 344.78)
+ (pt 554.13257 344.71257)
+ (pt 554.2 344.61165)
+ (pt 554.26743 344.71257)
+ (pt 554.36835 344.78)
+ )
+ (thermal (pt 553.8 344.38) (pt 554.13257 344.71257) (thermalWidth 0.381))
+ (thermal (pt 554.6 344.38) (pt 554.26743 344.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.26743 343.71257)
+ (pt 555.36835 343.78)
+ (pt 555.26743 343.84743)
+ (pt 555.2 343.94835)
+ (pt 555.13257 343.84743)
+ (pt 555.03165 343.78)
+ (pt 555.13257 343.71257)
+ (pt 555.2 343.61165)
+ )
+ (thermal (pt 554.8 344.18) (pt 555.13257 343.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 553.13257 345.71257)
+ (pt 553.2 345.61165)
+ (pt 553.26743 345.71257)
+ (pt 553.36835 345.78)
+ (pt 553.26743 345.84743)
+ (pt 553.2 345.94835)
+ (pt 553.13257 345.84743)
+ (pt 553.03165 345.78)
+ )
+ (thermal (pt 552.8 345.38) (pt 553.13257 345.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 348.71257)
+ (pt 554.36835 348.78)
+ (pt 554.26743 348.84743)
+ (pt 554.2 348.94835)
+ (pt 554.13257 348.84743)
+ (pt 554.03165 348.78)
+ (pt 554.13257 348.71257)
+ (pt 554.2 348.61165)
+ )
+ (thermal (pt 554.6 349.18) (pt 554.26743 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 349.84743)
+ (pt 554.2 349.94835)
+ (pt 554.13257 349.84743)
+ (pt 554.03165 349.78)
+ (pt 554.13257 349.71257)
+ (pt 554.2 349.61165)
+ (pt 554.26743 349.71257)
+ (pt 554.36835 349.78)
+ )
+ (thermal (pt 554.6 349.38) (pt 554.26743 349.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 550.13257 352.84743)
+ (pt 550.03165 352.78)
+ (pt 550.13257 352.71257)
+ (pt 550.2 352.61165)
+ (pt 550.26743 352.71257)
+ (pt 550.36835 352.78)
+ (pt 550.26743 352.84743)
+ (pt 550.2 352.94835)
+ )
+ (thermal (pt 550.6 352.38) (pt 550.26743 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.26743 354.84743)
+ (pt 551.2 354.94835)
+ (pt 551.13257 354.84743)
+ (pt 551.03165 354.78)
+ (pt 551.13257 354.71257)
+ (pt 551.2 354.61165)
+ (pt 551.26743 354.71257)
+ (pt 551.36835 354.78)
+ )
+ (thermal (pt 551.6 355.18) (pt 551.26743 354.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.26743 356.71257)
+ (pt 552.36835 356.78)
+ (pt 552.26743 356.84743)
+ (pt 552.2 356.94835)
+ (pt 552.13257 356.84743)
+ (pt 552.03165 356.78)
+ (pt 552.13257 356.71257)
+ (pt 552.2 356.61165)
+ )
+ (thermal (pt 552.6 356.38) (pt 552.26743 356.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.26743 355.71257)
+ (pt 552.36835 355.78)
+ (pt 552.26743 355.84743)
+ (pt 552.2 355.94835)
+ (pt 552.13257 355.84743)
+ (pt 552.03165 355.78)
+ (pt 552.13257 355.71257)
+ (pt 552.2 355.61165)
+ )
+ (thermal (pt 551.8 355.38) (pt 552.13257 355.71257) (thermalWidth 0.381))
+ (thermal (pt 552.6 356.18) (pt 552.26743 355.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 351.71257)
+ (pt 554.36835 351.78)
+ (pt 554.26743 351.84743)
+ (pt 554.2 351.94835)
+ (pt 554.13257 351.84743)
+ (pt 554.03165 351.78)
+ (pt 554.13257 351.71257)
+ (pt 554.2 351.61165)
+ )
+ (thermal (pt 554.6 352.18) (pt 554.26743 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 352.84743)
+ (pt 554.2 352.94835)
+ (pt 554.13257 352.84743)
+ (pt 554.03165 352.78)
+ (pt 554.13257 352.71257)
+ (pt 554.2 352.61165)
+ (pt 554.26743 352.71257)
+ (pt 554.36835 352.78)
+ )
+ (thermal (pt 554.6 352.38) (pt 554.26743 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 356.71257)
+ (pt 554.36835 356.78)
+ (pt 554.26743 356.84743)
+ (pt 554.2 356.94835)
+ (pt 554.13257 356.84743)
+ (pt 554.03165 356.78)
+ (pt 554.13257 356.71257)
+ (pt 554.2 356.61165)
+ )
+ (thermal (pt 553.8 356.38) (pt 554.13257 356.71257) (thermalWidth 0.381))
+ (thermal (pt 554.6 356.38) (pt 554.26743 356.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 554.26743 355.71257)
+ (pt 554.36835 355.78)
+ (pt 554.26743 355.84743)
+ (pt 554.2 355.94835)
+ (pt 554.13257 355.84743)
+ (pt 554.03165 355.78)
+ (pt 554.13257 355.71257)
+ (pt 554.2 355.61165)
+ )
+ (thermal (pt 553.8 356.18) (pt 554.13257 355.84743) (thermalWidth 0.381))
+ (thermal (pt 554.6 356.18) (pt 554.26743 355.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.26743 356.71257)
+ (pt 555.36835 356.78)
+ (pt 555.26743 356.84743)
+ (pt 555.2 356.94835)
+ (pt 555.13257 356.84743)
+ (pt 555.03165 356.78)
+ (pt 555.13257 356.71257)
+ (pt 555.2 356.61165)
+ )
+ (thermal (pt 554.8 356.38) (pt 555.13257 356.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.26743 355.71257)
+ (pt 555.36835 355.78)
+ (pt 555.26743 355.84743)
+ (pt 555.2 355.94835)
+ (pt 555.13257 355.84743)
+ (pt 555.03165 355.78)
+ (pt 555.13257 355.71257)
+ (pt 555.2 355.61165)
+ )
+ (thermal (pt 554.8 356.18) (pt 555.13257 355.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 550.13257 359.84743)
+ (pt 550.03165 359.78)
+ (pt 550.13257 359.71257)
+ (pt 550.2 359.61165)
+ (pt 550.26743 359.71257)
+ (pt 550.36835 359.78)
+ (pt 550.26743 359.84743)
+ (pt 550.2 359.94835)
+ )
+ (thermal (pt 549.8 360.18) (pt 550.13257 359.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 549.13257 359.84743)
+ (pt 549.03165 359.78)
+ (pt 549.13257 359.71257)
+ (pt 549.2 359.61165)
+ (pt 549.26743 359.71257)
+ (pt 549.36835 359.78)
+ (pt 549.26743 359.84743)
+ (pt 549.2 359.94835)
+ )
+ (thermal (pt 549.6 360.18) (pt 549.26743 359.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 550.13257 360.71257)
+ (pt 550.2 360.61165)
+ (pt 550.26743 360.71257)
+ (pt 550.36835 360.78)
+ (pt 550.26743 360.84743)
+ (pt 550.2 360.94835)
+ (pt 550.13257 360.84743)
+ (pt 550.03165 360.78)
+ )
+ (thermal (pt 549.8 360.38) (pt 550.13257 360.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.26743 358.71257)
+ (pt 552.36835 358.78)
+ (pt 552.26743 358.84743)
+ (pt 552.2 358.94835)
+ (pt 552.13257 358.84743)
+ (pt 552.03165 358.78)
+ (pt 552.13257 358.71257)
+ (pt 552.2 358.61165)
+ )
+ (thermal (pt 552.6 359.18) (pt 552.26743 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 553.13257 358.71257)
+ (pt 553.2 358.61165)
+ (pt 553.26743 358.71257)
+ (pt 553.36835 358.78)
+ (pt 553.26743 358.84743)
+ (pt 553.2 358.94835)
+ (pt 553.13257 358.84743)
+ (pt 553.03165 358.78)
+ )
+ (thermal (pt 552.8 359.18) (pt 553.13257 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.26743 358.71257)
+ (pt 555.36835 358.78)
+ (pt 555.26743 358.84743)
+ (pt 555.2 358.94835)
+ (pt 555.13257 358.84743)
+ (pt 555.03165 358.78)
+ (pt 555.13257 358.71257)
+ (pt 555.2 358.61165)
+ )
+ (thermal (pt 555.6 359.18) (pt 555.26743 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.43803 397.83018)
+ (pt 551.65904 398.16096)
+ (pt 551.98982 398.38197)
+ (pt 552.28153 398.44)
+ (pt 551.98982 398.49803)
+ (pt 551.65904 398.71904)
+ (pt 551.43803 399.04982)
+ (pt 551.38 399.34153)
+ (pt 551.32197 399.04982)
+ (pt 551.10096 398.71904)
+ (pt 550.77018 398.49803)
+ (pt 550.47847 398.44)
+ (pt 550.77018 398.38197)
+ (pt 551.10096 398.16096)
+ (pt 551.32197 397.83018)
+ (pt 551.38 397.53847)
+ )
+ (thermal (pt 552.08 399.14) (pt 551.65904 398.71904) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 348.84743)
+ (pt 558.2 348.94835)
+ (pt 558.13257 348.84743)
+ (pt 558.09331 348.8212)
+ (pt 558.30669 348.8212)
+ )
+ (thermal (pt 557.8 349.18) (pt 558.13257 348.84743) (thermalWidth 0.381))
+ (thermal (pt 558.6 349.18) (pt 558.26743 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 348.84743)
+ (pt 560.09331 348.8212)
+ (pt 560.30669 348.8212)
+ (pt 560.26743 348.84743)
+ (pt 560.2 348.94835)
+ )
+ (thermal (pt 560.6 349.18) (pt 560.26743 348.84743) (thermalWidth 0.381))
+ (thermal (pt 559.8 349.18) (pt 560.13257 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 343.71257)
+ (pt 557.2 343.61165)
+ (pt 557.26743 343.71257)
+ (pt 557.36835 343.78)
+ (pt 557.26743 343.84743)
+ (pt 557.2 343.94835)
+ (pt 557.13257 343.84743)
+ (pt 557.03165 343.78)
+ )
+ (thermal (pt 557.6 343.38) (pt 557.26743 343.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 346.84743)
+ (pt 557.03165 346.78)
+ (pt 557.13257 346.71257)
+ (pt 557.2 346.61165)
+ (pt 557.26743 346.71257)
+ (pt 557.36835 346.78)
+ (pt 557.26743 346.84743)
+ (pt 557.2 346.94835)
+ )
+ (thermal (pt 557.6 346.38) (pt 557.26743 346.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 346.84743)
+ (pt 558.2 346.94835)
+ (pt 558.13257 346.84743)
+ (pt 558.03165 346.78)
+ (pt 558.13257 346.71257)
+ (pt 558.2 346.61165)
+ (pt 558.26743 346.71257)
+ (pt 558.36835 346.78)
+ )
+ (thermal (pt 557.8 346.38) (pt 558.13257 346.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 348.71257)
+ (pt 557.2 348.61165)
+ (pt 557.26743 348.71257)
+ (pt 557.36835 348.78)
+ (pt 557.26743 348.84743)
+ (pt 557.2 348.94835)
+ (pt 557.13257 348.84743)
+ (pt 557.03165 348.78)
+ )
+ (thermal (pt 557.6 349.18) (pt 557.26743 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 349.84743)
+ (pt 558.2 349.94835)
+ (pt 558.13257 349.84743)
+ (pt 558.03165 349.78)
+ (pt 558.13257 349.71257)
+ (pt 558.2 349.61165)
+ (pt 558.26743 349.71257)
+ (pt 558.36835 349.78)
+ )
+ (thermal (pt 557.8 350.18) (pt 558.13257 349.84743) (thermalWidth 0.381))
+ (thermal (pt 557.8 349.38) (pt 558.13257 349.71257) (thermalWidth 0.381))
+ (thermal (pt 558.6 350.18) (pt 558.26743 349.84743) (thermalWidth 0.381))
+ (thermal (pt 558.6 349.38) (pt 558.26743 349.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 343.71257)
+ (pt 561.36835 343.78)
+ (pt 561.26743 343.84743)
+ (pt 561.2 343.94835)
+ (pt 561.13257 343.84743)
+ (pt 561.03165 343.78)
+ (pt 561.13257 343.71257)
+ (pt 561.2 343.61165)
+ )
+ (thermal (pt 560.8 343.38) (pt 561.13257 343.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 343.71257)
+ (pt 563.36835 343.78)
+ (pt 563.26743 343.84743)
+ (pt 563.2 343.94835)
+ (pt 563.13257 343.84743)
+ (pt 563.03165 343.78)
+ (pt 563.13257 343.71257)
+ (pt 563.2 343.61165)
+ )
+ (thermal (pt 563.6 344.18) (pt 563.26743 343.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 344.84743)
+ (pt 563.2 344.94835)
+ (pt 563.13257 344.84743)
+ (pt 563.03165 344.78)
+ (pt 563.13257 344.71257)
+ (pt 563.2 344.61165)
+ (pt 563.26743 344.71257)
+ (pt 563.36835 344.78)
+ )
+ (thermal (pt 563.6 344.38) (pt 563.26743 344.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 346.84743)
+ (pt 560.03165 346.78)
+ (pt 560.13257 346.71257)
+ (pt 560.2 346.61165)
+ (pt 560.26743 346.71257)
+ (pt 560.36835 346.78)
+ (pt 560.26743 346.84743)
+ (pt 560.2 346.94835)
+ )
+ (thermal (pt 560.6 346.38) (pt 560.26743 346.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 346.84743)
+ (pt 561.2 346.94835)
+ (pt 561.13257 346.84743)
+ (pt 561.03165 346.78)
+ (pt 561.13257 346.71257)
+ (pt 561.2 346.61165)
+ (pt 561.26743 346.71257)
+ (pt 561.36835 346.78)
+ )
+ (thermal (pt 560.8 346.38) (pt 561.13257 346.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 349.84743)
+ (pt 560.03165 349.78)
+ (pt 560.13257 349.71257)
+ (pt 560.2 349.61165)
+ (pt 560.26743 349.71257)
+ (pt 560.36835 349.78)
+ (pt 560.26743 349.84743)
+ (pt 560.2 349.94835)
+ )
+ (thermal (pt 560.6 350.18) (pt 560.26743 349.84743) (thermalWidth 0.381))
+ (thermal (pt 560.6 349.38) (pt 560.26743 349.71257) (thermalWidth 0.381))
+ (thermal (pt 559.8 350.18) (pt 560.13257 349.84743) (thermalWidth 0.381))
+ (thermal (pt 559.8 349.38) (pt 560.13257 349.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 348.71257)
+ (pt 561.36835 348.78)
+ (pt 561.26743 348.84743)
+ (pt 561.2 348.94835)
+ (pt 561.13257 348.84743)
+ (pt 561.03165 348.78)
+ (pt 561.13257 348.71257)
+ (pt 561.2 348.61165)
+ )
+ (thermal (pt 560.8 349.18) (pt 561.13257 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 349.84743)
+ (pt 561.2 349.94835)
+ (pt 561.13257 349.84743)
+ (pt 561.03165 349.78)
+ (pt 561.13257 349.71257)
+ (pt 561.2 349.61165)
+ (pt 561.26743 349.71257)
+ (pt 561.36835 349.78)
+ )
+ (thermal (pt 560.8 350.18) (pt 561.13257 349.84743) (thermalWidth 0.381))
+ (thermal (pt 560.8 349.38) (pt 561.13257 349.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 349.84743)
+ (pt 563.2 349.94835)
+ (pt 563.13257 349.84743)
+ (pt 563.03165 349.78)
+ (pt 563.13257 349.71257)
+ (pt 563.2 349.61165)
+ (pt 563.26743 349.71257)
+ (pt 563.36835 349.78)
+ )
+ (thermal (pt 563.6 349.38) (pt 563.26743 349.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 559.13257 348.71257)
+ (pt 559.18649 348.63187)
+ (pt 559.21731 348.66269)
+ (pt 559.24053 348.67231)
+ (pt 559.26743 348.71257)
+ (pt 559.36835 348.78)
+ (pt 559.26743 348.84743)
+ (pt 559.2 348.94835)
+ (pt 559.13257 348.84743)
+ (pt 559.03165 348.78)
+ )
+ (thermal (pt 559.6 349.18) (pt 559.26743 348.84743) (thermalWidth 0.381))
+ (thermal (pt 558.8 349.18) (pt 559.13257 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 352.84743)
+ (pt 557.03165 352.78)
+ (pt 557.13257 352.71257)
+ (pt 557.2 352.61165)
+ (pt 557.26743 352.71257)
+ (pt 557.36835 352.78)
+ (pt 557.26743 352.84743)
+ (pt 557.2 352.94835)
+ )
+ (thermal (pt 557.6 352.38) (pt 557.26743 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 351.71257)
+ (pt 558.36835 351.78)
+ (pt 558.26743 351.84743)
+ (pt 558.2 351.94835)
+ (pt 558.13257 351.84743)
+ (pt 558.03165 351.78)
+ (pt 558.13257 351.71257)
+ (pt 558.2 351.61165)
+ )
+ (thermal (pt 557.8 352.18) (pt 558.13257 351.84743) (thermalWidth 0.381))
+ (thermal (pt 557.8 351.38) (pt 558.13257 351.71257) (thermalWidth 0.381))
+ (thermal (pt 558.6 352.18) (pt 558.26743 351.84743) (thermalWidth 0.381))
+ (thermal (pt 558.6 351.38) (pt 558.26743 351.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 355.71257)
+ (pt 557.2 355.61165)
+ (pt 557.26743 355.71257)
+ (pt 557.36835 355.78)
+ (pt 557.26743 355.84743)
+ (pt 557.2 355.94835)
+ (pt 557.13257 355.84743)
+ (pt 557.03165 355.78)
+ )
+ (thermal (pt 557.6 355.38) (pt 557.26743 355.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 355.71257)
+ (pt 558.36835 355.78)
+ (pt 558.26743 355.84743)
+ (pt 558.2 355.94835)
+ (pt 558.13257 355.84743)
+ (pt 558.03165 355.78)
+ (pt 558.13257 355.71257)
+ (pt 558.2 355.61165)
+ )
+ (thermal (pt 557.8 355.38) (pt 558.13257 355.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 351.71257)
+ (pt 560.2 351.61165)
+ (pt 560.26743 351.71257)
+ (pt 560.36835 351.78)
+ (pt 560.26743 351.84743)
+ (pt 560.2 351.94835)
+ (pt 560.13257 351.84743)
+ (pt 560.03165 351.78)
+ )
+ (thermal (pt 560.6 352.18) (pt 560.26743 351.84743) (thermalWidth 0.381))
+ (thermal (pt 559.8 352.18) (pt 560.13257 351.84743) (thermalWidth 0.381))
+ (thermal (pt 560.6 351.38) (pt 560.26743 351.71257) (thermalWidth 0.381))
+ (thermal (pt 559.8 351.38) (pt 560.13257 351.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 351.71257)
+ (pt 561.36835 351.78)
+ (pt 561.26743 351.84743)
+ (pt 561.2 351.94835)
+ (pt 561.13257 351.84743)
+ (pt 561.03165 351.78)
+ (pt 561.13257 351.71257)
+ (pt 561.2 351.61165)
+ )
+ (thermal (pt 560.8 352.18) (pt 561.13257 351.84743) (thermalWidth 0.381))
+ (thermal (pt 560.8 351.38) (pt 561.13257 351.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 352.84743)
+ (pt 561.2 352.94835)
+ (pt 561.13257 352.84743)
+ (pt 561.03165 352.78)
+ (pt 561.13257 352.71257)
+ (pt 561.2 352.61165)
+ (pt 561.26743 352.71257)
+ (pt 561.36835 352.78)
+ )
+ (thermal (pt 560.8 352.38) (pt 561.13257 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 351.71257)
+ (pt 563.36835 351.78)
+ (pt 563.26743 351.84743)
+ (pt 563.2 351.94835)
+ (pt 563.13257 351.84743)
+ (pt 563.03165 351.78)
+ (pt 563.13257 351.71257)
+ (pt 563.2 351.61165)
+ )
+ (thermal (pt 563.6 352.18) (pt 563.26743 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 355.71257)
+ (pt 561.36835 355.78)
+ (pt 561.26743 355.84743)
+ (pt 561.2 355.94835)
+ (pt 561.13257 355.84743)
+ (pt 561.03165 355.78)
+ (pt 561.13257 355.71257)
+ (pt 561.2 355.61165)
+ )
+ (thermal (pt 560.8 355.38) (pt 561.13257 355.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 356.71257)
+ (pt 563.36835 356.78)
+ (pt 563.26743 356.84743)
+ (pt 563.2 356.94835)
+ (pt 563.13257 356.84743)
+ (pt 563.03165 356.78)
+ (pt 563.13257 356.71257)
+ (pt 563.2 356.61165)
+ )
+ (thermal (pt 563.6 357.18) (pt 563.26743 356.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 559.13257 352.84743)
+ (pt 559.03165 352.78)
+ (pt 559.13257 352.71257)
+ (pt 559.2 352.61165)
+ (pt 559.26743 352.71257)
+ (pt 559.36835 352.78)
+ (pt 559.26743 352.84743)
+ (pt 559.2 352.94835)
+ )
+ (thermal (pt 559.6 352.38) (pt 559.26743 352.71257) (thermalWidth 0.381))
+ (thermal (pt 558.8 352.38) (pt 559.13257 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 361.71257)
+ (pt 560.1588 361.67331)
+ (pt 560.1588 362.80662)
+ (pt 560.14862 362.79138)
+ (pt 559.93361 362.64772)
+ (pt 559.68 362.59727)
+ (pt 559.52521 362.62806)
+ (pt 559.54273 362.54)
+ (pt 559.52942 362.47311)
+ (pt 559.53361 362.47228)
+ (pt 559.74862 362.32862)
+ (pt 559.89228 362.11361)
+ (pt 559.94273 361.86)
+ (pt 559.93912 361.84183)
+ )
+ (thermal (pt 559.805 363.135) (pt 560.14862 362.79138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 358.71257)
+ (pt 557.2 358.61165)
+ (pt 557.26743 358.71257)
+ (pt 557.36835 358.78)
+ (pt 557.26743 358.84743)
+ (pt 557.2 358.94835)
+ (pt 557.13257 358.84743)
+ (pt 557.03165 358.78)
+ )
+ (thermal (pt 557.6 358.38) (pt 557.26743 358.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 358.71257)
+ (pt 560.2 358.61165)
+ (pt 560.26743 358.71257)
+ (pt 560.36835 358.78)
+ (pt 560.26743 358.84743)
+ (pt 560.2 358.94835)
+ (pt 560.13257 358.84743)
+ (pt 560.03165 358.78)
+ )
+ (thermal (pt 560.6 358.38) (pt 560.26743 358.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 562.26743 358.71257)
+ (pt 562.36835 358.78)
+ (pt 562.26743 358.84743)
+ (pt 562.2 358.94835)
+ (pt 562.13257 358.84743)
+ (pt 562.03165 358.78)
+ (pt 562.13257 358.71257)
+ (pt 562.2 358.61165)
+ )
+ (thermal (pt 562.6 359.18) (pt 562.26743 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 562.26743 359.84743)
+ (pt 562.2 359.94835)
+ (pt 562.13257 359.84743)
+ (pt 562.03165 359.78)
+ (pt 562.13257 359.71257)
+ (pt 562.2 359.61165)
+ (pt 562.26743 359.71257)
+ (pt 562.36835 359.78)
+ )
+ (thermal (pt 562.6 359.38) (pt 562.26743 359.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 358.71257)
+ (pt 563.36835 358.78)
+ (pt 563.26743 358.84743)
+ (pt 563.2 358.94835)
+ (pt 563.13257 358.84743)
+ (pt 563.03165 358.78)
+ (pt 563.13257 358.71257)
+ (pt 563.2 358.61165)
+ )
+ (thermal (pt 562.8 359.18) (pt 563.13257 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 569.67912 257.33912)
+ (pt 569.43 257.71196)
+ (pt 569.18088 257.33912)
+ (pt 568.80804 257.09)
+ (pt 569.18088 256.84088)
+ (pt 569.43 256.46804)
+ (pt 569.67912 256.84088)
+ (pt 570.05196 257.09)
+ )
+ (thermal (pt 570.192 256.328) (pt 569.67912 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.64088 257.33912)
+ (pt 566.26804 257.09)
+ (pt 566.64088 256.84088)
+ (pt 566.89 256.46804)
+ (pt 567.13912 256.84088)
+ (pt 567.51196 257.09)
+ (pt 567.13912 257.33912)
+ (pt 566.89 257.71196)
+ )
+ (thermal (pt 566.128 257.852) (pt 566.64088 257.33912) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.13257 343.71257)
+ (pt 565.2 343.61165)
+ (pt 565.26743 343.71257)
+ (pt 565.36835 343.78)
+ (pt 565.26743 343.84743)
+ (pt 565.2 343.94835)
+ (pt 565.13257 343.84743)
+ (pt 565.03165 343.78)
+ )
+ (thermal (pt 565.6 344.18) (pt 565.26743 343.84743) (thermalWidth 0.381))
+ (thermal (pt 564.8 344.18) (pt 565.13257 343.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.13257 346.84743)
+ (pt 565.03165 346.78)
+ (pt 565.13257 346.71257)
+ (pt 565.2 346.61165)
+ (pt 565.26743 346.71257)
+ (pt 565.36835 346.78)
+ (pt 565.26743 346.84743)
+ (pt 565.2 346.94835)
+ )
+ (thermal (pt 564.8 346.38) (pt 565.13257 346.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.13257 345.71257)
+ (pt 565.1945 345.61988)
+ (pt 565.22764 345.65302)
+ (pt 565.26743 345.71257)
+ (pt 565.36835 345.78)
+ (pt 565.26743 345.84743)
+ (pt 565.2 345.94835)
+ (pt 565.13257 345.84743)
+ (pt 565.03165 345.78)
+ )
+ (thermal (pt 564.8 346.18) (pt 565.13257 345.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.26743 348.71257)
+ (pt 566.36835 348.78)
+ (pt 566.26743 348.84743)
+ (pt 566.2 348.94835)
+ (pt 566.13257 348.84743)
+ (pt 566.03165 348.78)
+ (pt 566.13257 348.71257)
+ (pt 566.2 348.61165)
+ )
+ (thermal (pt 566.6 349.18) (pt 566.26743 348.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.26743 351.71257)
+ (pt 566.36835 351.78)
+ (pt 566.26743 351.84743)
+ (pt 566.2 351.94835)
+ (pt 566.13257 351.84743)
+ (pt 566.03165 351.78)
+ (pt 566.13257 351.71257)
+ (pt 566.2 351.61165)
+ )
+ (thermal (pt 566.6 352.18) (pt 566.26743 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.13257 356.71257)
+ (pt 565.2 356.61165)
+ (pt 565.26743 356.71257)
+ (pt 565.36835 356.78)
+ (pt 565.26743 356.84743)
+ (pt 565.2 356.94835)
+ (pt 565.13257 356.84743)
+ (pt 565.03165 356.78)
+ )
+ (thermal (pt 565.6 356.38) (pt 565.26743 356.71257) (thermalWidth 0.381))
+ (thermal (pt 564.8 357.18) (pt 565.13257 356.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 567.13257 352.84743)
+ (pt 567.03165 352.78)
+ (pt 567.13257 352.71257)
+ (pt 567.2 352.61165)
+ (pt 567.26743 352.71257)
+ (pt 567.36835 352.78)
+ (pt 567.26743 352.84743)
+ (pt 567.2 352.94835)
+ )
+ (thermal (pt 566.8 352.38) (pt 567.13257 352.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 567.13257 354.84743)
+ (pt 567.03165 354.78)
+ (pt 567.13257 354.71257)
+ (pt 567.2 354.61165)
+ (pt 567.26743 354.71257)
+ (pt 567.36835 354.78)
+ (pt 567.26743 354.84743)
+ (pt 567.2 354.94835)
+ )
+ (thermal (pt 567.6 354.38) (pt 567.26743 354.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 577.29912 257.33912)
+ (pt 577.05 257.71196)
+ (pt 576.80088 257.33912)
+ (pt 576.42804 257.09)
+ (pt 576.80088 256.84088)
+ (pt 577.05 256.46804)
+ (pt 577.29912 256.84088)
+ (pt 577.67196 257.09)
+ )
+ (thermal (pt 576.288 256.328) (pt 576.80088 256.84088) (thermalWidth 0.381))
+ (thermal (pt 577.812 256.328) (pt 577.29912 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 574.26088 257.33912)
+ (pt 573.88804 257.09)
+ (pt 574.26088 256.84088)
+ (pt 574.51 256.46804)
+ (pt 574.75912 256.84088)
+ (pt 575.13196 257.09)
+ (pt 574.75912 257.33912)
+ (pt 574.51 257.71196)
+ )
+ (thermal (pt 575.272 256.328) (pt 574.75912 256.84088) (thermalWidth 0.381))
+ (thermal (pt 573.748 256.328) (pt 574.26088 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 578.8605 332.56269)
+ (pt 578.60533 332.61345)
+ (pt 578.46045 332.71026)
+ (pt 578.31557 332.61345)
+ (pt 578.0604 332.56269)
+ (pt 577.80523 332.61345)
+ (pt 577.7582 332.64488)
+ (pt 577.7582 332.4803)
+ (pt 577.61237 332.12823)
+ (pt 577.14204 331.6579)
+ (pt 578.01376 331.6579)
+ (pt 578.93297 332.57711)
+ )
+ (thermal (pt 578.7335 333.1025) (pt 578.46045 332.71026) (thermalWidth 0.381))
+ (thermal (pt 578.1874 333.1025) (pt 578.46045 332.71026) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 580.67204 326.1121)
+ (pt 582.43297 324.35117)
+ (pt 582.51346 324.15685)
+ (pt 582.53222 324.25116)
+ (pt 582.73114 324.54886)
+ (pt 583.02884 324.74778)
+ (pt 583.38 324.81763)
+ (pt 583.73116 324.74778)
+ (pt 583.9833 324.5793)
+ (pt 583.9833 324.67256)
+ (pt 582.54376 326.1121)
+ )
+ (thermal (pt 583.63 324.15) (pt 583.9833 324.5793) (thermalWidth 0.381))
+ (thermal (pt 583.13 324.15) (pt 582.73114 324.54886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 581.59376 330.4579)
+ (pt 582.52489 331.38903)
+ (pt 582.50884 331.39222)
+ (pt 582.21114 331.59114)
+ (pt 582.13269 331.70855)
+ (pt 580.88204 330.4579)
+ )
+ (thermal (pt 582.61 331.99) (pt 582.21114 331.59114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 619.5 262.5412)
+ (pt 619.62574 262.5412)
+ (pt 619.49114 262.63114)
+ (pt 619.44876 262.69457)
+ (pt 619.35961 262.635)
+ )
+ (thermal (pt 619.89 263.03) (pt 619.49114 262.63114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 620.98778 262.92884)
+ (pt 620.78886 262.63114)
+ (pt 620.65426 262.5412)
+ (pt 621.29948 262.5412)
+ (pt 621.32324 262.57676)
+ (pt 621.58786 262.75358)
+ (pt 621.66558 262.76904)
+ (pt 621.03355 263.40107)
+ (pt 621.05763 263.28)
+ )
+ (thermal (pt 620.39 263.03) (pt 620.78886 262.63114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 619.30114 424.69554)
+ (pt 619.43819 424.78712)
+ (pt 619.28292 424.78712)
+ )
+ (thermal (pt 619.69 424.29) (pt 619.30114 424.69554) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 445.18838 343.01162)
+ (pt 445.05607 342.92321)
+ (pt 444.9 342.89217)
+ (pt 444.1 342.89217)
+ (pt 443.94393 342.92321)
+ (pt 443.81162 343.01162)
+ (pt 443.80486 343.02174)
+ (pt 443.55116 342.85222)
+ (pt 443.28863 342.8)
+ (pt 443.55116 342.74778)
+ (pt 443.80486 342.57826)
+ (pt 443.81162 342.58838)
+ (pt 443.94393 342.67679)
+ (pt 444.1 342.70783)
+ (pt 444.9 342.70783)
+ (pt 445.05607 342.67679)
+ (pt 445.18838 342.58838)
+ (pt 445.24744 342.5)
+ (pt 445.35256 342.5)
+ (pt 445.41162 342.58838)
+ (pt 445.50468 342.65056)
+ (pt 445.50468 342.94944)
+ (pt 445.41162 343.01162)
+ (pt 445.35256 343.1)
+ (pt 445.24744 343.1)
+ )
+ (thermal (pt 443.45 343.45) (pt 443.80486 343.02174) (thermalWidth 0.381))
+ (thermal (pt 444.2905 343.4905) (pt 443.81162 343.01162) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 509.85482 350.8859)
+ (pt 509.80825 351.12)
+ (pt 509.85482 351.3541)
+ (pt 509.93641 351.47621)
+ (pt 509.87982 351.5609)
+ (pt 509.83325 351.795)
+ (pt 509.87982 352.0291)
+ (pt 509.94056 352.12)
+ (pt 509.87982 352.2109)
+ (pt 509.87271 352.24662)
+ (pt 509.85116 352.23222)
+ (pt 509.5 352.16237)
+ (pt 509.14884 352.23222)
+ (pt 508.85114 352.43114)
+ (pt 508.65222 352.72884)
+ (pt 508.58237 353.08)
+ (pt 508.65222 353.43116)
+ (pt 508.85114 353.72886)
+ (pt 509.14884 353.92778)
+ (pt 509.5 353.99763)
+ (pt 509.85116 353.92778)
+ (pt 509.86745 353.9169)
+ (pt 509.87982 353.9791)
+ (pt 509.94056 354.07)
+ (pt 509.87982 354.1609)
+ (pt 509.86861 354.21724)
+ (pt 509.83116 354.19222)
+ (pt 509.48 354.12237)
+ (pt 509.12884 354.19222)
+ (pt 508.83114 354.39114)
+ (pt 508.63222 354.68884)
+ (pt 508.56237 355.04)
+ (pt 508.63222 355.39116)
+ (pt 508.83114 355.68886)
+ (pt 509.12884 355.88778)
+ (pt 509.48 355.95763)
+ (pt 509.83116 355.88778)
+ (pt 509.86686 355.86393)
+ (pt 509.87982 355.9291)
+ (pt 509.94056 356.02)
+ (pt 509.87982 356.1109)
+ (pt 509.83325 356.345)
+ (pt 509.87982 356.5791)
+ (pt 509.94056 356.67)
+ (pt 509.87982 356.7609)
+ (pt 509.83325 356.995)
+ (pt 509.87982 357.2291)
+ (pt 509.94056 357.32)
+ (pt 509.87982 357.4109)
+ (pt 509.83325 357.645)
+ (pt 509.87982 357.8791)
+ (pt 509.94056 357.97)
+ (pt 509.87982 358.0609)
+ (pt 509.83325 358.295)
+ (pt 509.87982 358.5291)
+ (pt 509.94056 358.62)
+ (pt 509.87982 358.7109)
+ (pt 509.83325 358.945)
+ (pt 509.86771 359.11821)
+ (pt 505.77057 355.02107)
+ (pt 505.98 355.06273)
+ (pt 506.23361 355.01228)
+ (pt 506.44862 354.86862)
+ (pt 506.59228 354.65361)
+ (pt 506.64273 354.4)
+ (pt 506.59228 354.14639)
+ (pt 506.44862 353.93138)
+ (pt 506.23361 353.78772)
+ (pt 505.98 353.73727)
+ (pt 505.72639 353.78772)
+ (pt 505.56836 353.89331)
+ (pt 504.32725 353.89331)
+ (pt 504.35675 353.745)
+ (pt 504.34329 353.67734)
+ (pt 504.38884 353.70778)
+ (pt 504.74 353.77763)
+ (pt 505.09116 353.70778)
+ (pt 505.38886 353.50886)
+ (pt 505.58778 353.21116)
+ (pt 505.65763 352.86)
+ (pt 505.58778 352.50884)
+ (pt 505.38886 352.21114)
+ (pt 505.09116 352.01222)
+ (pt 504.74 351.94237)
+ (pt 504.38884 352.01222)
+ (pt 504.26711 352.09356)
+ (pt 504.31018 352.0291)
+ (pt 504.35675 351.795)
+ (pt 504.31018 351.5609)
+ (pt 504.24944 351.47)
+ (pt 504.31018 351.3791)
+ (pt 504.35675 351.145)
+ (pt 504.31018 350.9109)
+ (pt 504.18376 350.72169)
+ (pt 509.96454 350.72169)
+ )
+ (thermal (pt 509.23 355.29) (pt 508.83114 355.68886) (thermalWidth 0.381))
+ (thermal (pt 509.23 354.79) (pt 508.83114 354.39114) (thermalWidth 0.381))
+ (thermal (pt 504.99 353.11) (pt 505.38886 353.50886) (thermalWidth 0.381))
+ (thermal (pt 504.99 352.61) (pt 505.38886 352.21114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 524.26743 350.65257)
+ (pt 524.36835 350.72)
+ (pt 524.26743 350.78743)
+ (pt 524.2412 350.82669)
+ (pt 524.2412 350.61331)
+ )
+ (thermal (pt 524.6 351.12) (pt 524.26743 350.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 538.80975 319.80975)
+ (pt 538.8 319.82434)
+ (pt 538.79025 319.80975)
+ (pt 538.77566 319.8)
+ (pt 538.79025 319.79025)
+ (pt 538.8 319.77566)
+ (pt 538.80975 319.79025)
+ (pt 538.82434 319.8)
+ )
+ (thermal (pt 538.44 320.16) (pt 538.79025 319.80975) (thermalWidth 0.381))
+ (thermal (pt 538.44 319.44) (pt 538.79025 319.79025) (thermalWidth 0.381))
+ (thermal (pt 539.16 320.16) (pt 538.80975 319.80975) (thermalWidth 0.381))
+ (thermal (pt 539.16 319.44) (pt 538.80975 319.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 537.79025 319.80975)
+ (pt 537.77566 319.8)
+ (pt 537.79025 319.79025)
+ (pt 537.8 319.77566)
+ (pt 537.80975 319.79025)
+ (pt 537.82434 319.8)
+ (pt 537.80975 319.80975)
+ (pt 537.8 319.82434)
+ )
+ (thermal (pt 538.16 320.16) (pt 537.80975 319.80975) (thermalWidth 0.381))
+ (thermal (pt 537.44 320.16) (pt 537.79025 319.80975) (thermalWidth 0.381))
+ (thermal (pt 538.16 319.44) (pt 537.80975 319.79025) (thermalWidth 0.381))
+ (thermal (pt 537.44 319.44) (pt 537.79025 319.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 539.79025 319.80975)
+ (pt 539.77566 319.8)
+ (pt 539.79025 319.79025)
+ (pt 539.8 319.77566)
+ (pt 539.80975 319.79025)
+ (pt 539.82434 319.8)
+ (pt 539.80975 319.80975)
+ (pt 539.8 319.82434)
+ )
+ (thermal (pt 540.16 320.16) (pt 539.80975 319.80975) (thermalWidth 0.381))
+ (thermal (pt 540.16 319.44) (pt 539.80975 319.79025) (thermalWidth 0.381))
+ (thermal (pt 539.44 320.16) (pt 539.79025 319.80975) (thermalWidth 0.381))
+ (thermal (pt 539.44 319.44) (pt 539.79025 319.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.26743 342.84743)
+ (pt 555.2 342.94835)
+ (pt 555.13257 342.84743)
+ (pt 555.03165 342.78)
+ (pt 555.13257 342.71257)
+ (pt 555.2 342.61165)
+ (pt 555.26743 342.71257)
+ (pt 555.36835 342.78)
+ )
+ (thermal (pt 555.6 342.38) (pt 555.26743 342.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 357.84743)
+ (pt 557.03165 357.78)
+ (pt 557.13257 357.71257)
+ (pt 557.2 357.61165)
+ (pt 557.26743 357.71257)
+ (pt 557.36835 357.78)
+ (pt 557.26743 357.84743)
+ (pt 557.2 357.94835)
+ )
+ (thermal (pt 557.6 358.18) (pt 557.26743 357.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 357.84743)
+ (pt 560.03165 357.78)
+ (pt 560.13257 357.71257)
+ (pt 560.2 357.61165)
+ (pt 560.26743 357.71257)
+ (pt 560.36835 357.78)
+ (pt 560.26743 357.84743)
+ (pt 560.2 357.94835)
+ )
+ (thermal (pt 560.6 358.18) (pt 560.26743 357.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 342.84743)
+ (pt 557.03165 342.78)
+ (pt 557.13257 342.71257)
+ (pt 557.2 342.61165)
+ (pt 557.26743 342.71257)
+ (pt 557.36835 342.78)
+ (pt 557.26743 342.84743)
+ (pt 557.2 342.94835)
+ )
+ (thermal (pt 557.6 343.18) (pt 557.26743 342.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 342.84743)
+ (pt 560.03165 342.78)
+ (pt 560.13257 342.71257)
+ (pt 560.2 342.61165)
+ (pt 560.26743 342.71257)
+ (pt 560.36835 342.78)
+ (pt 560.26743 342.84743)
+ (pt 560.2 342.94835)
+ )
+ (thermal (pt 560.6 343.18) (pt 560.26743 342.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.26743 342.84743)
+ (pt 563.2 342.94835)
+ (pt 563.13257 342.84743)
+ (pt 563.03165 342.78)
+ (pt 563.13257 342.71257)
+ (pt 563.2 342.61165)
+ (pt 563.26743 342.71257)
+ (pt 563.36835 342.78)
+ )
+ (thermal (pt 562.8 342.38) (pt 563.13257 342.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 557.13257 350.71257)
+ (pt 557.2 350.61165)
+ (pt 557.26743 350.71257)
+ (pt 557.36835 350.78)
+ (pt 557.26743 350.84743)
+ (pt 557.2 350.94835)
+ (pt 557.13257 350.84743)
+ (pt 557.03165 350.78)
+ )
+ (thermal (pt 557.6 350.38) (pt 557.26743 350.71257) (thermalWidth 0.381))
+ (thermal (pt 557.6 351.18) (pt 557.26743 350.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.26743 350.71257)
+ (pt 558.36835 350.78)
+ (pt 558.26743 350.84743)
+ (pt 558.2 350.94835)
+ (pt 558.13257 350.84743)
+ (pt 558.03165 350.78)
+ (pt 558.13257 350.71257)
+ (pt 558.2 350.61165)
+ )
+ (thermal (pt 557.8 350.38) (pt 558.13257 350.71257) (thermalWidth 0.381))
+ (thermal (pt 557.8 351.18) (pt 558.13257 350.84743) (thermalWidth 0.381))
+ (thermal (pt 558.6 350.38) (pt 558.26743 350.71257) (thermalWidth 0.381))
+ (thermal (pt 558.6 351.18) (pt 558.26743 350.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.13257 350.71257)
+ (pt 560.2 350.61165)
+ (pt 560.26743 350.71257)
+ (pt 560.36835 350.78)
+ (pt 560.26743 350.84743)
+ (pt 560.2 350.94835)
+ (pt 560.13257 350.84743)
+ (pt 560.03165 350.78)
+ )
+ (thermal (pt 560.6 350.38) (pt 560.26743 350.71257) (thermalWidth 0.381))
+ (thermal (pt 559.8 350.38) (pt 560.13257 350.71257) (thermalWidth 0.381))
+ (thermal (pt 560.6 351.18) (pt 560.26743 350.84743) (thermalWidth 0.381))
+ (thermal (pt 559.8 351.18) (pt 560.13257 350.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 561.26743 350.71257)
+ (pt 561.36835 350.78)
+ (pt 561.26743 350.84743)
+ (pt 561.2 350.94835)
+ (pt 561.13257 350.84743)
+ (pt 561.03165 350.78)
+ (pt 561.13257 350.71257)
+ (pt 561.2 350.61165)
+ )
+ (thermal (pt 560.8 350.38) (pt 561.13257 350.71257) (thermalWidth 0.381))
+ (thermal (pt 560.8 351.18) (pt 561.13257 350.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.13257 357.84743)
+ (pt 565.03165 357.78)
+ (pt 565.13257 357.71257)
+ (pt 565.2 357.61165)
+ (pt 565.26743 357.71257)
+ (pt 565.36835 357.78)
+ (pt 565.26743 357.84743)
+ (pt 565.2 357.94835)
+ )
+ (thermal (pt 565.6 358.18) (pt 565.26743 357.84743) (thermalWidth 0.381))
+ (thermal (pt 564.8 357.38) (pt 565.13257 357.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.26743 357.84743)
+ (pt 566.2 357.94835)
+ (pt 566.13257 357.84743)
+ (pt 566.03165 357.78)
+ (pt 566.13257 357.71257)
+ (pt 566.2 357.61165)
+ (pt 566.26743 357.71257)
+ (pt 566.36835 357.78)
+ )
+ (thermal (pt 565.8 358.18) (pt 566.13257 357.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.26743 342.84743)
+ (pt 566.2 342.94835)
+ (pt 566.13257 342.84743)
+ (pt 566.03165 342.78)
+ (pt 566.13257 342.71257)
+ (pt 566.2 342.61165)
+ (pt 566.26743 342.71257)
+ (pt 566.36835 342.78)
+ )
+ (thermal (pt 566.6 343.18) (pt 566.26743 342.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 574.39204 336.5121)
+ (pt 575.21207 335.69207)
+ (pt 575.3579 335.34)
+ (pt 575.3579 335.33812)
+ (pt 575.40493 335.36955)
+ (pt 575.6601 335.42031)
+ (pt 575.91527 335.36955)
+ (pt 576.06015 335.27274)
+ (pt 576.20503 335.36955)
+ (pt 576.4602 335.42031)
+ (pt 576.71537 335.36955)
+ (pt 576.86025 335.27274)
+ (pt 577.00513 335.36955)
+ (pt 577.2603 335.42031)
+ (pt 577.51547 335.36955)
+ (pt 577.66035 335.27274)
+ (pt 577.80425 335.3689)
+ (pt 577.74237 335.68)
+ (pt 577.81222 336.03116)
+ (pt 578.01114 336.32886)
+ (pt 578.28537 336.5121)
+ )
+ (thermal (pt 578.41 335.93) (pt 578.01114 336.32886) (thermalWidth 0.381))
+ (thermal (pt 577.9334 334.8805) (pt 577.66035 335.27274) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 584.97253 365.63667)
+ (pt 584.83114 365.73114)
+ (pt 584.6582 365.98996)
+ (pt 584.6582 365.32234)
+ )
+ (thermal (pt 585.23 366.13) (pt 584.83114 365.73114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 450.46838 326.21162)
+ (pt 450.33607 326.12321)
+ (pt 450.18 326.09217)
+ (pt 449.38 326.09217)
+ (pt 449.22393 326.12321)
+ (pt 449.09162 326.21162)
+ (pt 449.00321 326.34393)
+ (pt 448.98687 326.4261)
+ (pt 448.85905 326.47905)
+ (pt 448.43778 326.90032)
+ (pt 448.47763 326.7)
+ (pt 448.40778 326.34884)
+ (pt 448.20886 326.05114)
+ (pt 447.95823 325.88367)
+ (pt 448.71407 325.12783)
+ (pt 448.92 325.12783)
+ (pt 449.07607 325.09679)
+ (pt 449.20838 325.00838)
+ (pt 449.26744 324.92)
+ (pt 449.37256 324.92)
+ (pt 449.43162 325.00838)
+ (pt 449.56393 325.09679)
+ (pt 449.72 325.12783)
+ (pt 450.52 325.12783)
+ (pt 450.57335 325.11722)
+ (pt 450.55222 325.14884)
+ (pt 450.48237 325.5)
+ (pt 450.55222 325.85116)
+ (pt 450.75114 326.14886)
+ (pt 450.76834 326.16035)
+ (pt 450.69162 326.21162)
+ (pt 450.63256 326.3)
+ (pt 450.52744 326.3)
+ )
+ (thermal (pt 451.15 325.75) (pt 450.75114 326.14886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 540.80975 318.79025)
+ (pt 540.82434 318.8)
+ (pt 540.80975 318.80975)
+ (pt 540.8 318.82434)
+ (pt 540.79025 318.80975)
+ (pt 540.77566 318.8)
+ (pt 540.79025 318.79025)
+ (pt 540.8 318.77566)
+ )
+ (thermal (pt 541.16 319.16) (pt 540.80975 318.80975) (thermalWidth 0.381))
+ (thermal (pt 540.44 319.16) (pt 540.79025 318.80975) (thermalWidth 0.381))
+ (thermal (pt 541.16 318.44) (pt 540.80975 318.79025) (thermalWidth 0.381))
+ (thermal (pt 540.44 318.44) (pt 540.79025 318.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 540.80975 317.79025)
+ (pt 540.82434 317.8)
+ (pt 540.80975 317.80975)
+ (pt 540.8 317.82434)
+ (pt 540.79025 317.80975)
+ (pt 540.77566 317.8)
+ (pt 540.79025 317.79025)
+ (pt 540.8 317.77566)
+ )
+ (thermal (pt 541.16 318.16) (pt 540.80975 317.80975) (thermalWidth 0.381))
+ (thermal (pt 540.44 318.16) (pt 540.79025 317.80975) (thermalWidth 0.381))
+ (thermal (pt 541.16 317.44) (pt 540.80975 317.79025) (thermalWidth 0.381))
+ (thermal (pt 540.44 317.44) (pt 540.79025 317.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 540.80975 316.79025)
+ (pt 540.82434 316.8)
+ (pt 540.80975 316.80975)
+ (pt 540.8 316.82434)
+ (pt 540.79025 316.80975)
+ (pt 540.77566 316.8)
+ (pt 540.79025 316.79025)
+ (pt 540.8 316.77566)
+ )
+ (thermal (pt 541.16 317.16) (pt 540.80975 316.80975) (thermalWidth 0.381))
+ (thermal (pt 541.16 316.44) (pt 540.80975 316.79025) (thermalWidth 0.381))
+ (thermal (pt 540.44 317.16) (pt 540.79025 316.80975) (thermalWidth 0.381))
+ (thermal (pt 540.44 316.44) (pt 540.79025 316.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 525.70881 320.80169)
+ (pt 523.77283 322.73767)
+ (pt 523.76862 322.73138)
+ (pt 523.55361 322.58772)
+ (pt 523.3 322.53727)
+ (pt 523.28783 322.53969)
+ (pt 523.28783 322.52)
+ (pt 523.25679 322.36393)
+ (pt 523.16838 322.23162)
+ (pt 523.08 322.17256)
+ (pt 523.08 322.06744)
+ (pt 523.16838 322.00838)
+ (pt 523.25679 321.87607)
+ (pt 523.28783 321.72)
+ (pt 523.28783 321.46031)
+ (pt 523.3 321.46273)
+ (pt 523.55361 321.41228)
+ (pt 523.76862 321.26862)
+ (pt 523.91228 321.05361)
+ (pt 523.96239 320.80169)
+ )
+ (thermal (pt 523.425 323.075) (pt 523.76862 322.73138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 525.26743 348.65257)
+ (pt 525.36835 348.72)
+ (pt 525.26743 348.78743)
+ (pt 525.2 348.88835)
+ (pt 525.13257 348.78743)
+ (pt 525.03165 348.72)
+ (pt 525.13257 348.65257)
+ (pt 525.2 348.55165)
+ )
+ (thermal (pt 525.6 349.12) (pt 525.26743 348.78743) (thermalWidth 0.381))
+ (thermal (pt 524.8 349.12) (pt 525.13257 348.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.13257 348.65257)
+ (pt 526.2 348.55165)
+ (pt 526.26743 348.65257)
+ (pt 526.36835 348.72)
+ (pt 526.26743 348.78743)
+ (pt 526.2 348.88835)
+ (pt 526.13257 348.78743)
+ (pt 526.03165 348.72)
+ )
+ (thermal (pt 525.8 349.12) (pt 526.13257 348.78743) (thermalWidth 0.381))
+ (thermal (pt 526.6 349.12) (pt 526.26743 348.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.13257 349.78743)
+ (pt 526.03165 349.72)
+ (pt 526.13257 349.65257)
+ (pt 526.2 349.55165)
+ (pt 526.26743 349.65257)
+ (pt 526.36835 349.72)
+ (pt 526.26743 349.78743)
+ (pt 526.2 349.88835)
+ )
+ (thermal (pt 525.8 349.32) (pt 526.13257 349.65257) (thermalWidth 0.381))
+ (thermal (pt 525.8 350.12) (pt 526.13257 349.78743) (thermalWidth 0.381))
+ (thermal (pt 526.6 349.32) (pt 526.26743 349.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 525.26743 352.78743)
+ (pt 525.2 352.88835)
+ (pt 525.13257 352.78743)
+ (pt 525.03165 352.72)
+ (pt 525.13257 352.65257)
+ (pt 525.2 352.55165)
+ (pt 525.26743 352.65257)
+ (pt 525.36835 352.72)
+ )
+ (thermal (pt 525.6 352.32) (pt 525.26743 352.65257) (thermalWidth 0.381))
+ (thermal (pt 524.8 352.32) (pt 525.13257 352.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.13257 351.78743)
+ (pt 526.03165 351.72)
+ (pt 526.13257 351.65257)
+ (pt 526.2 351.55165)
+ (pt 526.26743 351.65257)
+ (pt 526.36835 351.72)
+ (pt 526.26743 351.78743)
+ (pt 526.2 351.88835)
+ )
+ (thermal (pt 525.8 352.12) (pt 526.13257 351.78743) (thermalWidth 0.381))
+ (thermal (pt 526.6 351.32) (pt 526.26743 351.65257) (thermalWidth 0.381))
+ (thermal (pt 526.6 352.12) (pt 526.26743 351.78743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.13257 352.78743)
+ (pt 526.03165 352.72)
+ (pt 526.13257 352.65257)
+ (pt 526.2 352.55165)
+ (pt 526.26743 352.65257)
+ (pt 526.36835 352.72)
+ (pt 526.26743 352.78743)
+ (pt 526.2 352.88835)
+ )
+ (thermal (pt 525.8 352.32) (pt 526.13257 352.65257) (thermalWidth 0.381))
+ (thermal (pt 526.6 352.32) (pt 526.26743 352.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 545.77219 350.72169)
+ (pt 546.68525 351.63475)
+ (pt 547.04 351.78169)
+ (pt 548.36582 351.78169)
+ (pt 548.26743 351.84743)
+ (pt 548.13482 352.0459)
+ (pt 548.08825 352.28)
+ (pt 548.09189 352.29831)
+ (pt 546.68781 352.29831)
+ (pt 545.11119 350.72169)
+ )
+ (thermal (pt 548.6 352.18) (pt 548.26743 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 549.13257 351.84743)
+ (pt 549.03418 351.78169)
+ (pt 549.36582 351.78169)
+ (pt 549.26743 351.84743)
+ (pt 549.2 351.94835)
+ )
+ (thermal (pt 548.8 352.18) (pt 549.13257 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.10088 257.33912)
+ (pt 563.95826 257.24383)
+ (pt 564.096 257.24383)
+ (pt 564.25207 257.21279)
+ (pt 564.38438 257.12438)
+ (pt 564.47279 256.99207)
+ (pt 564.50383 256.836)
+ (pt 564.50383 256.69826)
+ (pt 564.59912 256.84088)
+ (pt 564.97196 257.09)
+ (pt 564.59912 257.33912)
+ (pt 564.35 257.71196)
+ )
+ (thermal (pt 565.112 257.852) (pt 564.59912 257.33912) (thermalWidth 0.381))
+ (thermal (pt 563.9055 256.6455) (pt 564.38438 257.12438) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 571.72088 257.33912)
+ (pt 571.34804 257.09)
+ (pt 571.72088 256.84088)
+ (pt 571.97 256.46804)
+ (pt 572.21912 256.84088)
+ (pt 572.59196 257.09)
+ (pt 572.21912 257.33912)
+ (pt 571.97 257.71196)
+ )
+ (thermal (pt 572.732 256.328) (pt 572.21912 256.84088) (thermalWidth 0.381))
+ (thermal (pt 571.208 256.328) (pt 571.72088 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 572.96796 339.3079)
+ (pt 570.95376 341.3221)
+ (pt 570.62858 341.3221)
+ (pt 570.70862 341.26862)
+ (pt 570.85228 341.05361)
+ (pt 570.90273 340.8)
+ (pt 570.85228 340.54639)
+ (pt 570.70862 340.33138)
+ (pt 570.49361 340.18772)
+ (pt 570.28514 340.14625)
+ (pt 570.26518 340.0459)
+ (pt 570.13257 339.84743)
+ (pt 569.9341 339.71482)
+ (pt 569.73803 339.67581)
+ (pt 569.71228 339.54639)
+ (pt 569.56862 339.33138)
+ (pt 569.53348 339.3079)
+ )
+ (thermal (pt 569.8 340.18) (pt 570.13257 339.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.13257 351.71257)
+ (pt 564.2 351.61165)
+ (pt 564.26743 351.71257)
+ (pt 564.36835 351.78)
+ (pt 564.26743 351.84743)
+ (pt 564.2 351.94835)
+ (pt 564.13257 351.84743)
+ (pt 564.03165 351.78)
+ )
+ (thermal (pt 563.8 352.18) (pt 564.13257 351.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.13257 357.84743)
+ (pt 564.03165 357.78)
+ (pt 564.13257 357.71257)
+ (pt 564.2 357.61165)
+ (pt 564.26743 357.71257)
+ (pt 564.36835 357.78)
+ (pt 564.26743 357.84743)
+ (pt 564.2 357.94835)
+ )
+ (thermal (pt 563.8 357.38) (pt 564.13257 357.71257) (thermalWidth 0.381))
+ (thermal (pt 564.6 357.38) (pt 564.26743 357.71257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 571.17366 350.7779)
+ (pt 571.04772 350.96639)
+ (pt 571.00879 351.1621)
+ (pt 570.2883 351.1621)
+ (pt 570.26518 351.0459)
+ (pt 570.13257 350.84743)
+ (pt 570.03165 350.78)
+ (pt 570.11332 350.72543)
+ (pt 570.24 350.7779)
+ )
+ (thermal (pt 571.535 351.095) (pt 571.17366 350.7779) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 556.26743 358.71257)
+ (pt 556.36835 358.78)
+ (pt 556.26743 358.84743)
+ (pt 556.2 358.94835)
+ (pt 556.13257 358.84743)
+ (pt 556.03165 358.78)
+ (pt 556.13257 358.71257)
+ (pt 556.2 358.61165)
+ )
+ (thermal (pt 555.8 359.18) (pt 556.13257 358.84743) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 617.6 277.1412)
+ (pt 617.74039 277.235)
+ (pt 617.63254 277.30706)
+ (pt 617.39214 277.14642)
+ (pt 617.3659 277.1412)
+ )
+ (thermal (pt 617.28 277.7) (pt 617.74039 277.235) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 381.62088 258.77912)
+ (pt 381.24804 258.53)
+ (pt 381.62088 258.28088)
+ (pt 381.71617 258.13826)
+ (pt 381.71617 258.276)
+ (pt 381.74721 258.43207)
+ (pt 381.83562 258.56438)
+ (pt 381.96793 258.65279)
+ (pt 382.124 258.68383)
+ (pt 382.26174 258.68383)
+ (pt 382.11912 258.77912)
+ (pt 381.87 259.15196)
+ )
+ (thermal (pt 381.108 257.768) (pt 381.62088 258.28088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 381.62088 266.39912)
+ (pt 381.24804 266.15)
+ (pt 381.62088 265.90088)
+ (pt 381.87 265.52804)
+ (pt 382.11912 265.90088)
+ (pt 382.49196 266.15)
+ (pt 382.11912 266.39912)
+ (pt 381.87 266.77196)
+ )
+ (thermal (pt 381.108 266.912) (pt 381.62088 266.39912) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 494.75169 329.18219)
+ (pt 494.75169 326.91043)
+ (pt 494.88525 326.88386)
+ (pt 494.82237 327.2)
+ (pt 494.89222 327.55116)
+ (pt 495.09114 327.84886)
+ (pt 495.38884 328.04778)
+ (pt 495.74 328.11763)
+ (pt 496.09116 328.04778)
+ (pt 496.24831 327.94277)
+ (pt 496.24831 330.67881)
+ )
+ (thermal (pt 495.49 327.45) (pt 495.09114 327.84886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 503.37146 319.64845)
+ (pt 503.5 319.70169)
+ (pt 516.79219 319.70169)
+ (pt 517.63644 320.54594)
+ (pt 517.60843 320.55151)
+ (pt 517.48 320.49831)
+ (pt 511.74715 320.49831)
+ (pt 511.76273 320.42)
+ (pt 511.71228 320.16639)
+ (pt 511.56862 319.95138)
+ (pt 511.35361 319.80772)
+ (pt 511.1 319.75727)
+ (pt 510.84639 319.80772)
+ (pt 510.63138 319.95138)
+ (pt 510.48772 320.16639)
+ (pt 510.43727 320.42)
+ (pt 510.45285 320.49831)
+ (pt 503.02492 320.49831)
+ (pt 503.12886 320.42886)
+ (pt 503.32778 320.13116)
+ (pt 503.39763 319.78)
+ )
+ (thermal (pt 510.975 320.295) (pt 510.63138 319.95138) (thermalWidth 0.381))
+ (thermal (pt 511.225 320.295) (pt 511.56862 319.95138) (thermalWidth 0.381))
+ (thermal (pt 502.73 320.03) (pt 503.12886 320.42886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 518.08772 358.47361)
+ (pt 518.23138 358.68862)
+ (pt 518.40552 358.80498)
+ (pt 517.07219 360.13831)
+ (pt 511.81183 360.13831)
+ (pt 511.87412 360.09669)
+ (pt 514.465 360.09669)
+ (pt 514.81975 359.94975)
+ (pt 517.20707 357.56243)
+ (pt 517.29138 357.68862)
+ (pt 517.50639 357.83228)
+ (pt 517.76 357.88273)
+ (pt 518.01361 357.83228)
+ (pt 518.17913 357.72169)
+ (pt 518.27582 357.72169)
+ (pt 518.23138 357.75138)
+ (pt 518.08772 357.96639)
+ (pt 518.03727 358.22)
+ )
+ (thermal (pt 518.575 358.095) (pt 518.23138 357.75138) (thermalWidth 0.381))
+ (thermal (pt 518.575 358.345) (pt 518.23138 358.68862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 540.80975 319.80975)
+ (pt 540.8 319.82434)
+ (pt 540.79025 319.80975)
+ (pt 540.77566 319.8)
+ (pt 540.79025 319.79025)
+ (pt 540.8 319.77566)
+ (pt 540.80975 319.79025)
+ (pt 540.82434 319.8)
+ )
+ (thermal (pt 541.16 320.16) (pt 540.80975 319.80975) (thermalWidth 0.381))
+ (thermal (pt 540.44 320.16) (pt 540.79025 319.80975) (thermalWidth 0.381))
+ (thermal (pt 541.16 319.44) (pt 540.80975 319.79025) (thermalWidth 0.381))
+ (thermal (pt 540.44 319.44) (pt 540.79025 319.79025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 540.83138 312.46862)
+ (pt 541.04639 312.61228)
+ (pt 541.3 312.66273)
+ (pt 541.4098 312.64089)
+ (pt 541.46525 312.77475)
+ (pt 543.95831 315.26781)
+ (pt 543.95831 317.72)
+ (pt 544.10525 318.07475)
+ (pt 545.16525 319.13475)
+ (pt 545.52 319.28169)
+ (pt 545.61032 319.28169)
+ (pt 545.60668 319.3)
+ (pt 545.65946 319.56532)
+ (pt 545.72402 319.66194)
+ (pt 545.6 319.63727)
+ (pt 545.34639 319.68772)
+ (pt 545.13138 319.83138)
+ (pt 544.98772 320.04639)
+ (pt 544.93727 320.3)
+ (pt 544.98772 320.55361)
+ (pt 545.13138 320.76862)
+ (pt 545.17835 320.8)
+ (pt 545.13138 320.83138)
+ (pt 544.98772 321.04639)
+ (pt 544.93727 321.3)
+ (pt 544.98772 321.55361)
+ (pt 545.13138 321.76862)
+ (pt 545.17835 321.8)
+ (pt 545.13138 321.83138)
+ (pt 544.98772 322.04639)
+ (pt 544.93727 322.3)
+ (pt 544.98772 322.55361)
+ (pt 545.13138 322.76862)
+ (pt 545.34639 322.91228)
+ (pt 545.6 322.96273)
+ (pt 545.72402 322.93806)
+ (pt 545.65946 323.03468)
+ (pt 545.60668 323.3)
+ (pt 545.65946 323.56532)
+ (pt 545.72402 323.66194)
+ (pt 545.6 323.63727)
+ (pt 545.34639 323.68772)
+ (pt 545.13138 323.83138)
+ (pt 544.98772 324.04639)
+ (pt 544.93727 324.3)
+ (pt 544.98772 324.55361)
+ (pt 545.05566 324.65529)
+ (pt 545.03468 324.65946)
+ (pt 544.961 324.70869)
+ (pt 544.96273 324.7)
+ (pt 544.91228 324.44639)
+ (pt 544.76862 324.23138)
+ (pt 544.55361 324.08772)
+ (pt 544.3 324.03727)
+ (pt 544.04639 324.08772)
+ (pt 543.83138 324.23138)
+ (pt 543.68772 324.44639)
+ (pt 543.63727 324.7)
+ (pt 543.639 324.70869)
+ (pt 543.56532 324.65946)
+ (pt 543.3 324.60668)
+ (pt 543.03468 324.65946)
+ (pt 542.80975 324.80975)
+ (pt 542.8 324.82434)
+ (pt 542.79025 324.80975)
+ (pt 542.56532 324.65946)
+ (pt 542.3 324.60668)
+ (pt 542.03468 324.65946)
+ (pt 541.80975 324.80975)
+ (pt 541.8 324.82434)
+ (pt 541.79025 324.80975)
+ (pt 541.56532 324.65946)
+ (pt 541.3 324.60668)
+ (pt 541.03468 324.65946)
+ (pt 540.80975 324.80975)
+ (pt 540.8 324.82434)
+ (pt 540.79025 324.80975)
+ (pt 540.56532 324.65946)
+ (pt 540.3 324.60668)
+ (pt 540.03468 324.65946)
+ (pt 539.80975 324.80975)
+ (pt 539.8 324.82434)
+ (pt 539.79025 324.80975)
+ (pt 539.56532 324.65946)
+ (pt 539.3 324.60668)
+ (pt 539.03468 324.65946)
+ (pt 538.80975 324.80975)
+ (pt 538.8 324.82434)
+ (pt 538.79025 324.80975)
+ (pt 538.56532 324.65946)
+ (pt 538.3 324.60668)
+ (pt 538.03468 324.65946)
+ (pt 537.80975 324.80975)
+ (pt 537.8 324.82434)
+ (pt 537.79025 324.80975)
+ (pt 537.56532 324.65946)
+ (pt 537.3 324.60668)
+ (pt 537.03468 324.65946)
+ (pt 536.80975 324.80975)
+ (pt 536.8 324.82434)
+ (pt 536.79025 324.80975)
+ (pt 536.56532 324.65946)
+ (pt 536.3 324.60668)
+ (pt 536.03468 324.65946)
+ (pt 535.80975 324.80975)
+ (pt 535.8 324.82434)
+ (pt 535.79025 324.80975)
+ (pt 535.56532 324.65946)
+ (pt 535.3 324.60668)
+ (pt 535.03468 324.65946)
+ (pt 534.80975 324.80975)
+ (pt 534.8 324.82434)
+ (pt 534.79025 324.80975)
+ (pt 534.56532 324.65946)
+ (pt 534.3 324.60668)
+ (pt 534.03468 324.65946)
+ (pt 533.80975 324.80975)
+ (pt 533.8 324.82434)
+ (pt 533.79025 324.80975)
+ (pt 533.56532 324.65946)
+ (pt 533.38576 324.62374)
+ (pt 534.85838 323.15112)
+ (pt 535.05361 323.11228)
+ (pt 535.26862 322.96862)
+ (pt 535.41228 322.75361)
+ (pt 535.46273 322.5)
+ (pt 535.41228 322.24639)
+ (pt 535.26862 322.03138)
+ (pt 535.05361 321.88772)
+ (pt 534.8 321.83727)
+ (pt 534.54639 321.88772)
+ (pt 534.33138 322.03138)
+ (pt 534.18772 322.24639)
+ (pt 534.14888 322.44162)
+ (pt 533.561 323.0295)
+ (pt 533.42862 322.83138)
+ (pt 533.39165 322.80668)
+ (pt 533.44862 322.76862)
+ (pt 533.59228 322.55361)
+ (pt 533.64273 322.3)
+ (pt 533.59228 322.04639)
+ (pt 533.44862 321.83138)
+ (pt 533.44159 321.82668)
+ (pt 533.46862 321.80862)
+ (pt 533.61228 321.59361)
+ (pt 533.66273 321.34)
+ (pt 533.61228 321.08639)
+ (pt 533.46862 320.87138)
+ (pt 533.42669 320.84336)
+ (pt 533.50862 320.78862)
+ (pt 533.65228 320.57361)
+ (pt 533.70273 320.32)
+ (pt 533.65228 320.06639)
+ (pt 533.50862 319.85138)
+ (pt 533.47165 319.82668)
+ (pt 533.52862 319.78862)
+ (pt 533.67228 319.57361)
+ (pt 533.72273 319.32)
+ (pt 533.67228 319.06639)
+ (pt 533.52862 318.85138)
+ (pt 533.50662 318.83668)
+ (pt 533.54862 318.80862)
+ (pt 533.69228 318.59361)
+ (pt 533.74273 318.34)
+ (pt 533.69228 318.08639)
+ (pt 533.54862 317.87138)
+ (pt 533.44432 317.80169)
+ (pt 533.73219 317.80169)
+ (pt 534.16888 318.23838)
+ (pt 534.20772 318.43361)
+ (pt 534.35138 318.64862)
+ (pt 534.56639 318.79228)
+ (pt 534.82 318.84273)
+ (pt 535.07361 318.79228)
+ (pt 535.13831 318.74905)
+ (pt 535.15138 318.76862)
+ (pt 535.36639 318.91228)
+ (pt 535.62 318.96273)
+ (pt 535.72095 318.94265)
+ (pt 535.65946 319.03468)
+ (pt 535.60668 319.3)
+ (pt 535.65946 319.56532)
+ (pt 535.7588 319.714)
+ (pt 535.7588 319.886)
+ (pt 535.65946 320.03468)
+ (pt 535.60668 320.3)
+ (pt 535.65946 320.56532)
+ (pt 535.72402 320.66194)
+ (pt 535.6 320.63727)
+ (pt 535.34639 320.68772)
+ (pt 535.13138 320.83138)
+ (pt 534.98772 321.04639)
+ (pt 534.93727 321.3)
+ (pt 534.98772 321.55361)
+ (pt 535.13138 321.76862)
+ (pt 535.34639 321.91228)
+ (pt 535.6 321.96273)
+ (pt 535.85361 321.91228)
+ (pt 535.923 321.86592)
+ (pt 536.03468 321.94054)
+ (pt 536.3 321.99332)
+ (pt 536.56532 321.94054)
+ (pt 536.714 321.8412)
+ (pt 536.886 321.8412)
+ (pt 537.03468 321.94054)
+ (pt 537.3 321.99332)
+ (pt 537.56532 321.94054)
+ (pt 537.714 321.8412)
+ (pt 537.886 321.8412)
+ (pt 538.03468 321.94054)
+ (pt 538.3 321.99332)
+ (pt 538.56532 321.94054)
+ (pt 538.714 321.8412)
+ (pt 538.886 321.8412)
+ (pt 539.03468 321.94054)
+ (pt 539.20111 321.97365)
+ (pt 539.33138 322.16862)
+ (pt 539.54639 322.31228)
+ (pt 539.8 322.36273)
+ (pt 540.05361 322.31228)
+ (pt 540.26862 322.16862)
+ (pt 540.39889 321.97365)
+ (pt 540.56532 321.94054)
+ (pt 540.714 321.8412)
+ (pt 540.886 321.8412)
+ (pt 541.03468 321.94054)
+ (pt 541.3 321.99332)
+ (pt 541.56532 321.94054)
+ (pt 541.714 321.8412)
+ (pt 541.886 321.8412)
+ (pt 542.03468 321.94054)
+ (pt 542.3 321.99332)
+ (pt 542.56532 321.94054)
+ (pt 542.79025 321.79025)
+ (pt 542.94054 321.56532)
+ (pt 542.99332 321.3)
+ (pt 542.94054 321.03468)
+ (pt 542.8412 320.886)
+ (pt 542.8412 320.714)
+ (pt 542.94054 320.56532)
+ (pt 542.99332 320.3)
+ (pt 542.94054 320.03468)
+ (pt 542.8412 319.886)
+ (pt 542.8412 319.714)
+ (pt 542.94054 319.56532)
+ (pt 542.99332 319.3)
+ (pt 542.94054 319.03468)
+ (pt 542.8412 318.886)
+ (pt 542.8412 318.88209)
+ (pt 542.88639 318.91228)
+ (pt 543.14 318.96273)
+ (pt 543.39361 318.91228)
+ (pt 543.60862 318.76862)
+ (pt 543.75228 318.55361)
+ (pt 543.80273 318.3)
+ (pt 543.75228 318.04639)
+ (pt 543.60862 317.83138)
+ (pt 543.39361 317.68772)
+ (pt 543.14 317.63727)
+ (pt 542.88639 317.68772)
+ (pt 542.8412 317.71791)
+ (pt 542.8412 317.714)
+ (pt 542.94054 317.56532)
+ (pt 542.99332 317.3)
+ (pt 542.94054 317.03468)
+ (pt 542.87905 316.94265)
+ (pt 542.98 316.96273)
+ (pt 543.23361 316.91228)
+ (pt 543.44862 316.76862)
+ (pt 543.59228 316.55361)
+ (pt 543.64273 316.3)
+ (pt 543.59228 316.04639)
+ (pt 543.50111 315.90993)
+ (pt 543.63228 315.71361)
+ (pt 543.68273 315.46)
+ (pt 543.63228 315.20639)
+ (pt 543.48862 314.99138)
+ (pt 543.27361 314.84772)
+ (pt 543.02 314.79727)
+ (pt 542.97466 314.80629)
+ (pt 542.86 314.7588)
+ (pt 542.714 314.7588)
+ (pt 542.56532 314.65946)
+ (pt 542.51479 314.64941)
+ (pt 542.47724 314.61186)
+ (pt 542.45228 314.48639)
+ (pt 542.30862 314.27138)
+ (pt 542.09361 314.12772)
+ (pt 541.84 314.07727)
+ (pt 541.58639 314.12772)
+ (pt 541.37138 314.27138)
+ (pt 541.22772 314.48639)
+ (pt 541.19983 314.62661)
+ (pt 541.03468 314.65946)
+ (pt 540.886 314.7588)
+ (pt 540.714 314.7588)
+ (pt 540.56532 314.65946)
+ (pt 540.42939 314.63242)
+ (pt 540.41228 314.54639)
+ (pt 540.26862 314.33138)
+ (pt 540.05361 314.18772)
+ (pt 539.8 314.13727)
+ (pt 539.54639 314.18772)
+ (pt 539.33138 314.33138)
+ (pt 539.18772 314.54639)
+ (pt 539.17061 314.63242)
+ (pt 539.03468 314.65946)
+ (pt 538.886 314.7588)
+ (pt 538.714 314.7588)
+ (pt 538.56532 314.65946)
+ (pt 538.46847 314.64019)
+ (pt 538.67475 314.55475)
+ (pt 540.67475 312.55475)
+ (pt 540.75671 312.35687)
+ )
+ (thermal (pt 535.495 318.425) (pt 535.15138 318.76862) (thermalWidth 0.381))
+ (thermal (pt 543.105 316.425) (pt 543.44862 316.76862) (thermalWidth 0.381))
+ (thermal (pt 543.105 316.175) (pt 543.50111 315.90993) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 525.26743 350.65257)
+ (pt 525.36835 350.72)
+ (pt 525.26743 350.78743)
+ (pt 525.2 350.88835)
+ (pt 525.13257 350.78743)
+ (pt 525.03165 350.72)
+ (pt 525.13257 350.65257)
+ (pt 525.2 350.55165)
+ )
+ (thermal (pt 524.8 351.12) (pt 525.13257 350.78743) (thermalWidth 0.381))
+ (thermal (pt 525.6 350.32) (pt 525.26743 350.65257) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.10088 259.38088)
+ (pt 564.35 259.00804)
+ (pt 564.59912 259.38088)
+ (pt 565.06751 259.69384)
+ (pt 565.62 259.80374)
+ (pt 566.17249 259.69384)
+ (pt 566.64088 259.38088)
+ (pt 566.89 259.00804)
+ (pt 567.13912 259.38088)
+ (pt 567.60751 259.69384)
+ (pt 567.65831 259.70395)
+ (pt 567.65831 261.52881)
+ (pt 566.69475 260.56525)
+ (pt 566.34 260.41831)
+ (pt 564.54781 260.41831)
+ (pt 563.7469 259.6174)
+ )
+ (thermal (pt 566.128 258.868) (pt 566.64088 259.38088) (thermalWidth 0.381))
+ (thermal (pt 565.112 258.868) (pt 564.59912 259.38088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 556.40572 298.02072)
+ (pt 556.57148 297.77263)
+ (pt 556.62969 297.48)
+ (pt 556.57148 297.18737)
+ (pt 556.40572 296.93928)
+ (pt 556.26461 296.845)
+ (pt 556.40572 296.75072)
+ (pt 556.57148 296.50263)
+ (pt 556.62969 296.21)
+ (pt 556.57148 295.91737)
+ (pt 556.40572 295.66928)
+ (pt 556.26461 295.575)
+ (pt 556.40572 295.48072)
+ (pt 556.57148 295.23263)
+ (pt 556.62969 294.94)
+ (pt 556.57148 294.64737)
+ (pt 556.40572 294.39928)
+ (pt 556.26461 294.305)
+ (pt 556.405 294.2112)
+ (pt 557.09916 294.2112)
+ (pt 557.19114 294.34886)
+ (pt 557.33831 294.4472)
+ (pt 557.33831 299.157)
+ (pt 557.33116 299.15222)
+ (pt 556.98 299.08237)
+ (pt 556.62884 299.15222)
+ (pt 556.33114 299.35114)
+ (pt 556.29496 299.40528)
+ (pt 556.26461 299.385)
+ (pt 556.40572 299.29072)
+ (pt 556.57148 299.04263)
+ (pt 556.62969 298.75)
+ (pt 556.57148 298.45737)
+ (pt 556.40572 298.20928)
+ (pt 556.26461 298.115)
+ )
+ (thermal (pt 556.73 299.75) (pt 556.33114 299.35114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 580.45376 350.7779)
+ (pt 583.6624 353.98654)
+ (pt 583.6624 354.31826)
+ (pt 580.65207 351.30793)
+ (pt 580.3 351.1621)
+ (pt 572.31121 351.1621)
+ (pt 572.27228 350.96639)
+ (pt 572.14634 350.7779)
+ )
+ (thermal (pt 571.785 351.095) (pt 572.14634 350.7779) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.48881 315.33831)
+ (pt 523.70781 315.33831)
+ (pt 520.05475 311.68525)
+ (pt 519.7 311.53831)
+ (pt 502.28 311.53831)
+ (pt 501.92525 311.68525)
+ (pt 499.31077 314.29973)
+ (pt 499.31077 313.15)
+ (pt 499.26808 312.93541)
+ (pt 499.25169 312.91088)
+ (pt 499.25169 312.51781)
+ (pt 501.26781 310.50169)
+ (pt 520.71219 310.50169)
+ (pt 520.96525 310.75475)
+ (pt 521.32 310.90169)
+ (pt 521.88087 310.90169)
+ (pt 522.04639 311.01228)
+ (pt 522.3 311.06273)
+ (pt 522.37788 311.04724)
+ (pt 522.50525 311.35475)
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.65358 311.78786)
+ (pt 522.47676 311.52324)
+ (pt 522.21214 311.34642)
+ (pt 521.9 311.28433)
+ (pt 521.58786 311.34642)
+ (pt 521.32324 311.52324)
+ (pt 521.14642 311.78786)
+ (pt 521.08433 312.1)
+ (pt 521.14642 312.41214)
+ (pt 521.32324 312.67676)
+ (pt 521.58786 312.85358)
+ (pt 521.9 312.91567)
+ (pt 522.21214 312.85358)
+ (pt 522.47676 312.67676)
+ (pt 522.65358 312.41214)
+ (pt 522.71567 312.1)
+ )
+ )
+ (thermal (pt 522.1 312.3) (pt 522.47676 312.67676) (thermalWidth 0.381))
+ (thermal (pt 521.7 312.3) (pt 521.32324 312.67676) (thermalWidth 0.381))
+ (thermal (pt 521.7 311.9) (pt 521.32324 311.52324) (thermalWidth 0.381))
+ (thermal (pt 522.1 311.9) (pt 522.47676 311.52324) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 579.03463 336.5121)
+ (pt 579.30886 336.32886)
+ (pt 579.50778 336.03116)
+ (pt 579.57763 335.68)
+ (pt 579.52043 335.39243)
+ (pt 579.6606 335.42031)
+ (pt 579.91577 335.36955)
+ (pt 580.06065 335.27274)
+ (pt 580.20553 335.36955)
+ (pt 580.4607 335.42031)
+ (pt 580.71587 335.36955)
+ (pt 580.86075 335.27274)
+ (pt 581.00563 335.36955)
+ (pt 581.2608 335.42031)
+ (pt 581.51597 335.36955)
+ (pt 581.66085 335.27274)
+ (pt 581.80573 335.36955)
+ (pt 582.0609 335.42031)
+ (pt 582.31607 335.36955)
+ (pt 582.46095 335.27274)
+ (pt 582.60583 335.36955)
+ (pt 582.82891 335.41393)
+ (pt 582.79222 335.46884)
+ (pt 582.72237 335.82)
+ (pt 582.79222 336.17116)
+ (pt 582.99114 336.46886)
+ (pt 583.05585 336.5121)
+ )
+ (thermal (pt 578.91 335.93) (pt 579.30886 336.32886) (thermalWidth 0.381))
+ (thermal (pt 582.734 334.8805) (pt 582.46095 335.27274) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 513.23174 460.81848)
+ (pt 512.59078 459.85922)
+ (pt 511.63152 459.21826)
+ (pt 510.5 458.99319)
+ (pt 509.36848 459.21826)
+ (pt 508.40922 459.85922)
+ (pt 507.76826 460.81848)
+ (pt 507.54319 461.95)
+ (pt 507.76826 463.08152)
+ (pt 508.40922 464.04078)
+ (pt 509.17111 464.54986)
+ (pt 375.90035 464.50211)
+ (pt 376.59078 464.04078)
+ (pt 377.23174 463.08152)
+ (pt 377.45681 461.95)
+ (pt 377.23174 460.81848)
+ (pt 376.59078 459.85922)
+ (pt 375.63152 459.21826)
+ (pt 374.5 458.99319)
+ (pt 373.36848 459.21826)
+ (pt 372.40922 459.85922)
+ (pt 371.76826 460.81848)
+ (pt 371.54319 461.95)
+ (pt 371.76826 463.08152)
+ (pt 372.40922 464.04078)
+ (pt 373.09815 464.50111)
+ (pt 370.0 464.5)
+ (pt 369.919 280.29504)
+ (pt 370.0412 280.0)
+ (pt 369.91874 279.70433)
+ (pt 369.9 237.1)
+ (pt 373.17132 237.1)
+ (pt 372.40922 237.60922)
+ (pt 371.76826 238.56848)
+ (pt 371.54319 239.7)
+ (pt 371.76826 240.83152)
+ (pt 372.40922 241.79078)
+ (pt 373.36848 242.43174)
+ (pt 374.5 242.65681)
+ (pt 375.63152 242.43174)
+ (pt 376.59078 241.79078)
+ (pt 377.23174 240.83152)
+ (pt 377.45681 239.7)
+ (pt 377.23174 238.56848)
+ (pt 376.59078 237.60922)
+ (pt 375.82868 237.1)
+ (pt 509.17132 237.1)
+ (pt 508.40922 237.60922)
+ (pt 507.76826 238.56848)
+ (pt 507.54319 239.7)
+ (pt 507.76826 240.83152)
+ (pt 508.40922 241.79078)
+ (pt 509.36848 242.43174)
+ (pt 510.5 242.65681)
+ (pt 511.63152 242.43174)
+ (pt 512.59078 241.79078)
+ (pt 513.23174 240.83152)
+ (pt 513.45681 239.7)
+ (pt 513.23174 238.56848)
+ (pt 512.59078 237.60922)
+ (pt 511.82868 237.1)
+ (pt 649.1 237.1)
+ (pt 649.1 464.6)
+ (pt 511.82746 464.55082)
+ (pt 512.59078 464.04078)
+ (pt 513.23174 463.08152)
+ (pt 513.45681 461.95)
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 330.91375)
+ (pt 372.46934 330.45066)
+ (pt 372.00625 330.14123)
+ (pt 371.46 330.03258)
+ (pt 370.91375 330.14123)
+ (pt 370.45066 330.45066)
+ (pt 370.14123 330.91375)
+ (pt 370.03258 331.46)
+ (pt 370.14123 332.00625)
+ (pt 370.45066 332.46934)
+ (pt 370.91375 332.77877)
+ (pt 371.46 332.88742)
+ (pt 372.00625 332.77877)
+ (pt 372.46934 332.46934)
+ (pt 372.77877 332.00625)
+ (pt 372.88742 331.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 347.99375)
+ (pt 372.46934 347.53066)
+ (pt 372.00625 347.22123)
+ (pt 371.46 347.11258)
+ (pt 370.91375 347.22123)
+ (pt 370.45066 347.53066)
+ (pt 370.14123 347.99375)
+ (pt 370.03258 348.54)
+ (pt 370.14123 349.08625)
+ (pt 370.45066 349.54934)
+ (pt 370.91375 349.85877)
+ (pt 371.46 349.96742)
+ (pt 372.00625 349.85877)
+ (pt 372.46934 349.54934)
+ (pt 372.77877 349.08625)
+ (pt 372.88742 348.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 370.79375)
+ (pt 372.46934 370.33066)
+ (pt 372.00625 370.02123)
+ (pt 371.46 369.91258)
+ (pt 370.91375 370.02123)
+ (pt 370.45066 370.33066)
+ (pt 370.14123 370.79375)
+ (pt 370.03258 371.34)
+ (pt 370.14123 371.88625)
+ (pt 370.45066 372.34934)
+ (pt 370.91375 372.65877)
+ (pt 371.46 372.76742)
+ (pt 372.00625 372.65877)
+ (pt 372.46934 372.34934)
+ (pt 372.77877 371.88625)
+ (pt 372.88742 371.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.96509 290.15511)
+ (pt 375.16063 290.69263)
+ (pt 374.62311 291.49709)
+ (pt 374.43436 292.446)
+ (pt 374.62311 293.39491)
+ (pt 375.16063 294.19937)
+ (pt 375.96509 294.73689)
+ (pt 376.914 294.92564)
+ (pt 377.86291 294.73689)
+ (pt 378.66737 294.19937)
+ (pt 379.20489 293.39491)
+ (pt 379.39364 292.446)
+ (pt 379.20489 291.49709)
+ (pt 378.66737 290.69263)
+ (pt 377.86291 290.15511)
+ (pt 376.914 289.96636)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 323.99375)
+ (pt 372.56934 323.53066)
+ (pt 372.10625 323.22123)
+ (pt 371.56 323.11258)
+ (pt 371.01375 323.22123)
+ (pt 370.55066 323.53066)
+ (pt 370.24123 323.99375)
+ (pt 370.13258 324.54)
+ (pt 370.24123 325.08625)
+ (pt 370.55066 325.54934)
+ (pt 371.01375 325.85877)
+ (pt 371.56 325.96742)
+ (pt 372.10625 325.85877)
+ (pt 372.56934 325.54934)
+ (pt 372.87877 325.08625)
+ (pt 372.98742 324.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 306.91375)
+ (pt 377.64934 306.45066)
+ (pt 377.18625 306.14123)
+ (pt 376.64 306.03258)
+ (pt 376.09375 306.14123)
+ (pt 375.63066 306.45066)
+ (pt 375.32123 306.91375)
+ (pt 375.21258 307.46)
+ (pt 375.32123 308.00625)
+ (pt 375.63066 308.46934)
+ (pt 376.09375 308.77877)
+ (pt 376.64 308.88742)
+ (pt 377.18625 308.77877)
+ (pt 377.64934 308.46934)
+ (pt 377.95877 308.00625)
+ (pt 378.06742 307.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 323.99375)
+ (pt 377.64934 323.53066)
+ (pt 377.18625 323.22123)
+ (pt 376.64 323.11258)
+ (pt 376.09375 323.22123)
+ (pt 375.63066 323.53066)
+ (pt 375.32123 323.99375)
+ (pt 375.21258 324.54)
+ (pt 375.32123 325.08625)
+ (pt 375.63066 325.54934)
+ (pt 376.09375 325.85877)
+ (pt 376.64 325.96742)
+ (pt 377.18625 325.85877)
+ (pt 377.64934 325.54934)
+ (pt 377.95877 325.08625)
+ (pt 378.06742 324.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 330.91375)
+ (pt 377.54934 330.45066)
+ (pt 377.08625 330.14123)
+ (pt 376.54 330.03258)
+ (pt 375.99375 330.14123)
+ (pt 375.53066 330.45066)
+ (pt 375.22123 330.91375)
+ (pt 375.11258 331.46)
+ (pt 375.22123 332.00625)
+ (pt 375.53066 332.46934)
+ (pt 375.99375 332.77877)
+ (pt 376.54 332.88742)
+ (pt 377.08625 332.77877)
+ (pt 377.54934 332.46934)
+ (pt 377.85877 332.00625)
+ (pt 377.96742 331.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 347.99375)
+ (pt 377.54934 347.53066)
+ (pt 377.08625 347.22123)
+ (pt 376.54 347.11258)
+ (pt 375.99375 347.22123)
+ (pt 375.53066 347.53066)
+ (pt 375.22123 347.99375)
+ (pt 375.11258 348.54)
+ (pt 375.22123 349.08625)
+ (pt 375.53066 349.54934)
+ (pt 375.99375 349.85877)
+ (pt 376.54 349.96742)
+ (pt 377.08625 349.85877)
+ (pt 377.54934 349.54934)
+ (pt 377.85877 349.08625)
+ (pt 377.96742 348.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.44 369.76783)
+ (pt 380.59607 369.73679)
+ (pt 380.72838 369.64838)
+ (pt 380.81679 369.51607)
+ (pt 380.84783 369.36)
+ (pt 380.84783 368.36)
+ (pt 380.81679 368.20393)
+ (pt 380.72838 368.07162)
+ (pt 380.59607 367.98321)
+ (pt 380.44 367.95217)
+ (pt 379.44 367.95217)
+ (pt 379.28393 367.98321)
+ (pt 379.15162 368.07162)
+ (pt 379.06321 368.20393)
+ (pt 379.03217 368.36)
+ (pt 379.03217 369.36)
+ (pt 379.06321 369.51607)
+ (pt 379.15162 369.64838)
+ (pt 379.28393 369.73679)
+ (pt 379.44 369.76783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 370.79375)
+ (pt 377.54934 370.33066)
+ (pt 377.08625 370.02123)
+ (pt 376.54 369.91258)
+ (pt 375.99375 370.02123)
+ (pt 375.53066 370.33066)
+ (pt 375.22123 370.79375)
+ (pt 375.11258 371.34)
+ (pt 375.22123 371.88625)
+ (pt 375.53066 372.34934)
+ (pt 375.99375 372.65877)
+ (pt 376.54 372.76742)
+ (pt 377.08625 372.65877)
+ (pt 377.54934 372.34934)
+ (pt 377.85877 371.88625)
+ (pt 377.96742 371.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 598.0 379.90783)
+ (pt 598.15607 379.87679)
+ (pt 598.28838 379.78838)
+ (pt 598.37679 379.65607)
+ (pt 598.40783 379.5)
+ (pt 598.40783 378.5)
+ (pt 598.37679 378.34393)
+ (pt 598.28838 378.21162)
+ (pt 598.15607 378.12321)
+ (pt 598.0 378.09217)
+ (pt 597.0 378.09217)
+ (pt 596.84393 378.12321)
+ (pt 596.71162 378.21162)
+ (pt 596.62321 378.34393)
+ (pt 596.59217 378.5)
+ (pt 596.59217 379.5)
+ (pt 596.62321 379.65607)
+ (pt 596.71162 379.78838)
+ (pt 596.84393 379.87679)
+ (pt 597.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 426.82054 320.28144)
+ (pt 426.97997 320.52003)
+ (pt 427.21856 320.67946)
+ (pt 427.5 320.73544)
+ (pt 427.5 320.73543)
+ (pt 437.83482 320.73543)
+ (pt 437.69222 320.94884)
+ (pt 437.62237 321.3)
+ (pt 437.69222 321.65116)
+ (pt 437.89114 321.94886)
+ (pt 438.18884 322.14778)
+ (pt 438.54 322.21763)
+ (pt 438.89116 322.14778)
+ (pt 439.18886 321.94886)
+ (pt 439.38778 321.65116)
+ (pt 439.45763 321.3)
+ (pt 439.38778 320.94884)
+ (pt 439.24518 320.73543)
+ (pt 446.7 320.73543)
+ (pt 446.7 320.73544)
+ (pt 446.98144 320.67946)
+ (pt 447.22003 320.52003)
+ (pt 447.37946 320.28144)
+ (pt 447.43544 320.0)
+ (pt 447.43543 320.0)
+ (pt 447.43543 316.85789)
+ (pt 447.48425 316.97575)
+ (pt 447.94058 317.43208)
+ (pt 447.97222 317.59116)
+ (pt 448.17114 317.88886)
+ (pt 448.46884 318.08778)
+ (pt 448.62792 318.11942)
+ (pt 448.98425 318.47575)
+ (pt 449.52 318.69767)
+ (pt 449.72 318.69767)
+ (pt 449.72 318.79256)
+ (pt 449.63162 318.85162)
+ (pt 449.54321 318.98393)
+ (pt 449.51217 319.14)
+ (pt 449.51217 319.94)
+ (pt 449.54321 320.09607)
+ (pt 449.61889 320.20933)
+ (pt 449.47222 320.42884)
+ (pt 449.40237 320.78)
+ (pt 449.47222 321.13116)
+ (pt 449.49149 321.16)
+ (pt 449.09616 321.16)
+ (pt 449.05607 321.13321)
+ (pt 448.9 321.10217)
+ (pt 447.7 321.10217)
+ (pt 447.54393 321.13321)
+ (pt 447.41162 321.22162)
+ (pt 447.32321 321.35393)
+ (pt 447.29217 321.51)
+ (pt 447.29217 322.81)
+ (pt 447.32321 322.96607)
+ (pt 447.41162 323.09838)
+ (pt 447.54393 323.18679)
+ (pt 447.7 323.21783)
+ (pt 447.70468 323.21783)
+ (pt 447.70468 324.1)
+ (pt 447.71217 324.11808)
+ (pt 447.71217 324.44593)
+ (pt 446.83783 325.32027)
+ (pt 446.83783 324.78)
+ (pt 446.80679 324.62393)
+ (pt 446.78 324.58384)
+ (pt 446.78 324.17616)
+ (pt 446.80679 324.13607)
+ (pt 446.83783 323.98)
+ (pt 446.83783 322.78)
+ (pt 446.80679 322.62393)
+ (pt 446.71838 322.49162)
+ (pt 446.58607 322.40321)
+ (pt 446.43 322.37217)
+ (pt 445.68711 322.37217)
+ (pt 445.68778 322.37116)
+ (pt 445.75763 322.02)
+ (pt 445.68778 321.66884)
+ (pt 445.48886 321.37114)
+ (pt 445.19116 321.17222)
+ (pt 444.84 321.10237)
+ (pt 444.48884 321.17222)
+ (pt 444.19114 321.37114)
+ (pt 443.99222 321.66884)
+ (pt 443.92237 322.02)
+ (pt 443.99222 322.37116)
+ (pt 444.19114 322.66886)
+ (pt 444.48884 322.86778)
+ (pt 444.72217 322.91419)
+ (pt 444.72217 323.98)
+ (pt 444.75321 324.13607)
+ (pt 444.78 324.17616)
+ (pt 444.78 324.58384)
+ (pt 444.75321 324.62393)
+ (pt 444.72217 324.78)
+ (pt 444.72217 325.00468)
+ (pt 444.55056 325.00468)
+ (pt 444.48838 324.91162)
+ (pt 444.4 324.85256)
+ (pt 444.4 324.74744)
+ (pt 444.48838 324.68838)
+ (pt 444.57679 324.55607)
+ (pt 444.60783 324.4)
+ (pt 444.60783 323.6)
+ (pt 444.57679 323.44393)
+ (pt 444.48838 323.31162)
+ (pt 444.35607 323.22321)
+ (pt 444.2 323.19217)
+ (pt 443.4 323.19217)
+ (pt 443.24393 323.22321)
+ (pt 443.11162 323.31162)
+ (pt 443.02321 323.44393)
+ (pt 442.99217 323.6)
+ (pt 442.99217 324.4)
+ (pt 443.02321 324.55607)
+ (pt 443.11162 324.68838)
+ (pt 443.2 324.74744)
+ (pt 443.2 324.85256)
+ (pt 443.11162 324.91162)
+ (pt 443.02321 325.04393)
+ (pt 442.99217 325.2)
+ (pt 442.99217 326.0)
+ (pt 443.02321 326.15607)
+ (pt 443.11162 326.28838)
+ (pt 443.18331 326.33628)
+ (pt 443.13114 326.37114)
+ (pt 442.93222 326.66884)
+ (pt 442.86237 327.02)
+ (pt 442.93222 327.37116)
+ (pt 442.95614 327.40696)
+ (pt 442.79803 327.24885)
+ (pt 442.82778 327.20432)
+ (pt 442.85882 327.04825)
+ (pt 442.82778 326.89217)
+ (pt 442.73937 326.75987)
+ (pt 441.82013 325.84063)
+ (pt 441.68783 325.75222)
+ (pt 441.53175 325.72118)
+ (pt 441.37568 325.75222)
+ (pt 441.24338 325.84063)
+ (pt 440.39485 326.68916)
+ (pt 440.30644 326.82146)
+ (pt 440.29703 326.86876)
+ (pt 440.00876 327.15703)
+ (pt 439.96146 327.16644)
+ (pt 439.82916 327.25485)
+ (pt 438.98063 328.10338)
+ (pt 438.89222 328.23568)
+ (pt 438.86118 328.39175)
+ (pt 438.89222 328.54783)
+ (pt 438.98063 328.68013)
+ (pt 439.89987 329.59937)
+ (pt 440.03217 329.68778)
+ (pt 440.18825 329.71882)
+ (pt 440.34432 329.68778)
+ (pt 440.47662 329.59937)
+ (pt 440.47994 329.59606)
+ (pt 440.60483 329.72095)
+ (pt 440.61383 329.72468)
+ (pt 439.38783 329.72468)
+ (pt 439.38783 329.67)
+ (pt 439.35679 329.51393)
+ (pt 439.26838 329.38162)
+ (pt 439.13607 329.29321)
+ (pt 438.98 329.26217)
+ (pt 437.78 329.26217)
+ (pt 437.62393 329.29321)
+ (pt 437.58384 329.32)
+ (pt 437.17616 329.32)
+ (pt 437.13607 329.29321)
+ (pt 436.98 329.26217)
+ (pt 435.78 329.26217)
+ (pt 435.62393 329.29321)
+ (pt 435.49162 329.38162)
+ (pt 435.40321 329.51393)
+ (pt 435.37217 329.67)
+ (pt 435.37217 329.72468)
+ (pt 434.76658 329.72468)
+ (pt 434.71737 329.67547)
+ (pt 434.73921 329.56569)
+ (pt 434.70816 329.40962)
+ (pt 434.61975 329.27731)
+ (pt 434.05407 328.71163)
+ (pt 433.92176 328.62322)
+ (pt 433.76569 328.59217)
+ (pt 433.66144 328.61291)
+ (pt 433.58709 328.53856)
+ (pt 433.60783 328.43431)
+ (pt 433.57678 328.27824)
+ (pt 433.48837 328.14593)
+ (pt 432.92269 327.58025)
+ (pt 432.79038 327.49184)
+ (pt 432.63431 327.46079)
+ (pt 432.47824 327.49184)
+ (pt 432.35427 327.57468)
+ (pt 429.669 327.57468)
+ (pt 429.60961 327.535)
+ (pt 429.80467 327.40467)
+ (pt 429.95938 327.17312)
+ (pt 430.01371 326.9)
+ (pt 429.95938 326.62688)
+ (pt 429.80467 326.39533)
+ (pt 429.57312 326.24062)
+ (pt 429.3 326.18629)
+ (pt 428.3 326.18629)
+ (pt 428.02688 326.24062)
+ (pt 427.79533 326.39533)
+ (pt 427.64062 326.62688)
+ (pt 427.58629 326.9)
+ (pt 427.64062 327.17312)
+ (pt 427.79533 327.40467)
+ (pt 427.99039 327.535)
+ (pt 427.931 327.57468)
+ (pt 427.91658 327.57468)
+ (pt 427.19532 326.85342)
+ (pt 427.19532 325.35056)
+ (pt 427.28838 325.28838)
+ (pt 427.37679 325.15607)
+ (pt 427.40783 325.0)
+ (pt 427.40783 324.2)
+ (pt 427.37679 324.04393)
+ (pt 427.28838 323.91162)
+ (pt 427.15607 323.82321)
+ (pt 427.0 323.79217)
+ (pt 426.2 323.79217)
+ (pt 426.04393 323.82321)
+ (pt 425.91162 323.91162)
+ (pt 425.85256 324.0)
+ (pt 425.74744 324.0)
+ (pt 425.68838 323.91162)
+ (pt 425.55607 323.82321)
+ (pt 425.4 323.79217)
+ (pt 424.6 323.79217)
+ (pt 424.44393 323.82321)
+ (pt 424.31162 323.91162)
+ (pt 424.22321 324.04393)
+ (pt 424.19217 324.2)
+ (pt 424.19217 325.0)
+ (pt 424.22321 325.15607)
+ (pt 424.31162 325.28838)
+ (pt 424.40468 325.35056)
+ (pt 424.40468 327.3548)
+ (pt 424.25116 327.25222)
+ (pt 423.9 327.18237)
+ (pt 423.55771 327.25046)
+ (pt 423.60938 327.17312)
+ (pt 423.66371 326.9)
+ (pt 423.60938 326.62688)
+ (pt 423.45467 326.39533)
+ (pt 423.22312 326.24062)
+ (pt 422.95 326.18629)
+ (pt 421.95 326.18629)
+ (pt 421.67688 326.24062)
+ (pt 421.44533 326.39533)
+ (pt 421.34358 326.54761)
+ (pt 421.05116 326.35222)
+ (pt 420.7 326.28237)
+ (pt 420.34884 326.35222)
+ (pt 420.05114 326.55114)
+ (pt 419.85222 326.84884)
+ (pt 419.78237 327.2)
+ (pt 419.85222 327.55116)
+ (pt 420.05114 327.84886)
+ (pt 420.34884 328.04778)
+ (pt 420.7 328.11763)
+ (pt 421.05116 328.04778)
+ (pt 421.30161 327.88043)
+ (pt 421.29062 327.89688)
+ (pt 421.23629 328.17)
+ (pt 421.29062 328.44312)
+ (pt 421.44533 328.67467)
+ (pt 421.64039 328.805)
+ (pt 421.581 328.84468)
+ (pt 418.67694 328.84468)
+ (pt 418.67679 328.84393)
+ (pt 418.58838 328.71162)
+ (pt 418.45607 328.62321)
+ (pt 418.3 328.59217)
+ (pt 417.5 328.59217)
+ (pt 417.34393 328.62321)
+ (pt 417.21162 328.71162)
+ (pt 417.15256 328.8)
+ (pt 417.04744 328.8)
+ (pt 416.98838 328.71162)
+ (pt 416.89532 328.64944)
+ (pt 416.89532 327.84)
+ (pt 416.72095 327.41905)
+ (pt 414.97737 325.67547)
+ (pt 414.99921 325.56569)
+ (pt 414.96816 325.40962)
+ (pt 414.87975 325.27731)
+ (pt 414.31407 324.71163)
+ (pt 414.18176 324.62322)
+ (pt 414.02569 324.59217)
+ (pt 413.92144 324.61291)
+ (pt 413.84709 324.53856)
+ (pt 413.86783 324.43431)
+ (pt 413.83678 324.27824)
+ (pt 413.74837 324.14593)
+ (pt 413.18269 323.58025)
+ (pt 413.05038 323.49184)
+ (pt 412.89431 323.46079)
+ (pt 412.73824 323.49184)
+ (pt 412.71156 323.50966)
+ (pt 411.44948 322.24758)
+ (pt 411.4839 322.19607)
+ (pt 411.51494 322.04)
+ (pt 411.4839 321.88393)
+ (pt 411.39549 321.75162)
+ (pt 410.68838 321.04451)
+ (pt 410.55607 320.9561)
+ (pt 410.4 320.92506)
+ (pt 410.24393 320.9561)
+ (pt 410.11162 321.04451)
+ (pt 409.40451 321.75162)
+ (pt 409.3161 321.88393)
+ (pt 409.28506 322.04)
+ (pt 409.3161 322.19607)
+ (pt 409.40451 322.32838)
+ (pt 410.11162 323.03549)
+ (pt 410.24393 323.1239)
+ (pt 410.4 323.15494)
+ (pt 410.55607 323.1239)
+ (pt 410.60758 323.08948)
+ (pt 411.92604 324.40794)
+ (pt 411.92079 324.43431)
+ (pt 411.95184 324.59038)
+ (pt 412.04025 324.72269)
+ (pt 412.60593 325.28837)
+ (pt 412.73824 325.37678)
+ (pt 412.89431 325.40783)
+ (pt 412.99856 325.38709)
+ (pt 413.07291 325.46144)
+ (pt 413.05217 325.56569)
+ (pt 413.08322 325.72176)
+ (pt 413.17163 325.85407)
+ (pt 413.73731 326.41975)
+ (pt 413.86962 326.50816)
+ (pt 414.02569 326.53921)
+ (pt 414.13547 326.51737)
+ (pt 415.2296 327.6115)
+ (pt 415.02 327.52468)
+ (pt 414.67056 327.52468)
+ (pt 414.60838 327.43162)
+ (pt 414.47607 327.34321)
+ (pt 414.32 327.31217)
+ (pt 413.52 327.31217)
+ (pt 413.36393 327.34321)
+ (pt 413.23162 327.43162)
+ (pt 413.17256 327.52)
+ (pt 413.06744 327.52)
+ (pt 413.00838 327.43162)
+ (pt 412.87607 327.34321)
+ (pt 412.72 327.31217)
+ (pt 412.35407 327.31217)
+ (pt 411.42095 326.37905)
+ (pt 411.0 326.20468)
+ (pt 410.31237 326.20468)
+ (pt 410.24064 326.12289)
+ (pt 410.09793 326.05251)
+ (pt 409.132 325.79369)
+ (pt 408.97321 325.78328)
+ (pt 408.82253 325.83444)
+ (pt 408.70289 325.93936)
+ (pt 408.63251 326.08207)
+ (pt 408.37369 327.048)
+ (pt 408.36328 327.20679)
+ (pt 408.41444 327.35747)
+ (pt 408.51936 327.47711)
+ (pt 408.66207 327.54749)
+ (pt 409.628 327.80631)
+ (pt 409.78679 327.81672)
+ (pt 409.93747 327.76556)
+ (pt 410.05711 327.66064)
+ (pt 410.12749 327.51793)
+ (pt 410.16034 327.39532)
+ (pt 410.75342 327.39532)
+ (pt 411.51217 328.15407)
+ (pt 411.51217 328.52)
+ (pt 411.54321 328.67607)
+ (pt 411.63162 328.80838)
+ (pt 411.76393 328.89679)
+ (pt 411.92 328.92783)
+ (pt 412.72 328.92783)
+ (pt 412.87607 328.89679)
+ (pt 413.00838 328.80838)
+ (pt 413.06744 328.72)
+ (pt 413.17256 328.72)
+ (pt 413.23162 328.80838)
+ (pt 413.36393 328.89679)
+ (pt 413.52 328.92783)
+ (pt 414.32 328.92783)
+ (pt 414.47607 328.89679)
+ (pt 414.60838 328.80838)
+ (pt 414.67056 328.71532)
+ (pt 414.77342 328.71532)
+ (pt 415.4581 329.4)
+ (pt 415.23342 329.62468)
+ (pt 414.61056 329.62468)
+ (pt 414.54838 329.53162)
+ (pt 414.41607 329.44321)
+ (pt 414.26 329.41217)
+ (pt 413.46 329.41217)
+ (pt 413.30393 329.44321)
+ (pt 413.17162 329.53162)
+ (pt 413.11256 329.62)
+ (pt 413.00744 329.62)
+ (pt 412.94838 329.53162)
+ (pt 412.81607 329.44321)
+ (pt 412.66 329.41217)
+ (pt 411.86 329.41217)
+ (pt 411.70393 329.44321)
+ (pt 411.57162 329.53162)
+ (pt 411.48321 329.66393)
+ (pt 411.45217 329.82)
+ (pt 411.45217 330.18593)
+ (pt 411.09342 330.54468)
+ (pt 410.14034 330.54468)
+ (pt 410.10749 330.42207)
+ (pt 410.03711 330.27936)
+ (pt 409.91747 330.17444)
+ (pt 409.76679 330.12328)
+ (pt 409.608 330.13369)
+ (pt 408.64207 330.39251)
+ (pt 408.49936 330.46289)
+ (pt 408.39444 330.58253)
+ (pt 408.34328 330.73321)
+ (pt 408.35369 330.892)
+ (pt 408.61251 331.85793)
+ (pt 408.68289 332.00064)
+ (pt 408.80253 332.10556)
+ (pt 408.95321 332.15672)
+ (pt 409.112 332.14631)
+ (pt 410.07793 331.88749)
+ (pt 410.22064 331.81711)
+ (pt 410.29237 331.73532)
+ (pt 411.34 331.73532)
+ (pt 411.76095 331.56095)
+ (pt 412.29407 331.02783)
+ (pt 412.66 331.02783)
+ (pt 412.81607 330.99679)
+ (pt 412.94838 330.90838)
+ (pt 413.00744 330.82)
+ (pt 413.11256 330.82)
+ (pt 413.17162 330.90838)
+ (pt 413.30393 330.99679)
+ (pt 413.46 331.02783)
+ (pt 414.26 331.02783)
+ (pt 414.41607 330.99679)
+ (pt 414.54838 330.90838)
+ (pt 414.61056 330.81532)
+ (pt 415.0228 330.81532)
+ (pt 414.15549 331.68263)
+ (pt 414.04569 331.66079)
+ (pt 413.88962 331.69184)
+ (pt 413.75731 331.78025)
+ (pt 413.19163 332.34593)
+ (pt 413.10322 332.47824)
+ (pt 413.07217 332.63431)
+ (pt 413.09291 332.73856)
+ (pt 413.01856 332.81291)
+ (pt 412.91431 332.79217)
+ (pt 412.75824 332.82322)
+ (pt 412.62593 332.91163)
+ (pt 412.06025 333.47731)
+ (pt 411.97184 333.60962)
+ (pt 411.94079 333.76569)
+ (pt 411.97184 333.92176)
+ (pt 411.99768 333.96042)
+ (pt 410.46758 335.49052)
+ (pt 410.41607 335.4561)
+ (pt 410.26 335.42506)
+ (pt 410.10393 335.4561)
+ (pt 409.97162 335.54451)
+ (pt 409.26451 336.25162)
+ (pt 409.1761 336.38393)
+ (pt 409.14506 336.54)
+ (pt 409.1761 336.69607)
+ (pt 409.26451 336.82838)
+ (pt 409.97162 337.53549)
+ (pt 410.10393 337.6239)
+ (pt 410.26 337.65494)
+ (pt 410.41607 337.6239)
+ (pt 410.54838 337.53549)
+ (pt 411.25549 336.82838)
+ (pt 411.3439 336.69607)
+ (pt 411.37494 336.54)
+ (pt 411.3439 336.38393)
+ (pt 411.30948 336.33242)
+ (pt 412.90462 334.73728)
+ (pt 412.91431 334.73921)
+ (pt 413.07038 334.70816)
+ (pt 413.20269 334.61975)
+ (pt 413.76837 334.05407)
+ (pt 413.85678 333.92176)
+ (pt 413.88783 333.76569)
+ (pt 413.86709 333.66144)
+ (pt 413.94144 333.58709)
+ (pt 414.04569 333.60783)
+ (pt 414.20176 333.57678)
+ (pt 414.33407 333.48837)
+ (pt 414.89975 332.92269)
+ (pt 414.98816 332.79038)
+ (pt 415.01921 332.63431)
+ (pt 414.99737 332.52455)
+ (pt 415.08893 332.43299)
+ (pt 415.15222 332.75116)
+ (pt 415.35114 333.04886)
+ (pt 415.64884 333.24778)
+ (pt 416.0 333.31763)
+ (pt 416.35116 333.24778)
+ (pt 416.64886 333.04886)
+ (pt 416.84778 332.75116)
+ (pt 416.91763 332.4)
+ (pt 416.84778 332.04884)
+ (pt 416.64886 331.75114)
+ (pt 416.35116 331.55222)
+ (pt 416.03299 331.48893)
+ (pt 416.72095 330.80097)
+ (pt 416.89532 330.38002)
+ (pt 416.89532 330.15056)
+ (pt 416.98838 330.08838)
+ (pt 417.04744 330.0)
+ (pt 417.15256 330.0)
+ (pt 417.21162 330.08838)
+ (pt 417.34393 330.17679)
+ (pt 417.5 330.20783)
+ (pt 418.3 330.20783)
+ (pt 418.45607 330.17679)
+ (pt 418.58838 330.08838)
+ (pt 418.62383 330.03532)
+ (pt 421.581 330.03532)
+ (pt 421.64039 330.075)
+ (pt 421.44533 330.20533)
+ (pt 421.29062 330.43688)
+ (pt 421.23629 330.71)
+ (pt 421.29062 330.98312)
+ (pt 421.44533 331.21467)
+ (pt 421.67688 331.36938)
+ (pt 421.95 331.42371)
+ (pt 422.95 331.42371)
+ (pt 423.22312 331.36938)
+ (pt 423.45467 331.21467)
+ (pt 423.60938 330.98312)
+ (pt 423.66371 330.71)
+ (pt 423.60938 330.43688)
+ (pt 423.45467 330.20533)
+ (pt 423.25961 330.075)
+ (pt 423.319 330.03532)
+ (pt 424.16 330.03532)
+ (pt 424.58095 329.86095)
+ (pt 425.42095 329.02095)
+ (pt 425.59532 328.6)
+ (pt 425.59532 325.35056)
+ (pt 425.68838 325.28838)
+ (pt 425.74744 325.2)
+ (pt 425.85256 325.2)
+ (pt 425.91162 325.28838)
+ (pt 426.00468 325.35056)
+ (pt 426.00468 327.1)
+ (pt 426.17905 327.52095)
+ (pt 427.15035 328.49225)
+ (pt 426.84884 328.55222)
+ (pt 426.55114 328.75114)
+ (pt 426.35222 329.04884)
+ (pt 426.28237 329.4)
+ (pt 426.35222 329.75116)
+ (pt 426.55114 330.04886)
+ (pt 426.84884 330.24778)
+ (pt 427.2 330.31763)
+ (pt 427.55116 330.24778)
+ (pt 427.70715 330.14355)
+ (pt 427.88779 330.14355)
+ (pt 427.79533 330.20533)
+ (pt 427.64062 330.43688)
+ (pt 427.58629 330.71)
+ (pt 427.64062 330.98312)
+ (pt 427.79533 331.21467)
+ (pt 428.02688 331.36938)
+ (pt 428.3 331.42371)
+ (pt 429.3 331.42371)
+ (pt 429.57312 331.36938)
+ (pt 429.63654 331.32701)
+ (pt 429.65114 331.34886)
+ (pt 429.94884 331.54778)
+ (pt 430.3 331.61763)
+ (pt 430.65116 331.54778)
+ (pt 430.94886 331.34886)
+ (pt 431.14778 331.05116)
+ (pt 431.21763 330.7)
+ (pt 431.14778 330.34884)
+ (pt 430.94886 330.05114)
+ (pt 430.65116 329.85222)
+ (pt 430.3 329.78237)
+ (pt 429.94884 329.85222)
+ (pt 429.65114 330.05114)
+ (pt 429.6273 330.08682)
+ (pt 429.60961 330.075)
+ (pt 429.80467 329.94467)
+ (pt 429.95938 329.71312)
+ (pt 430.01371 329.44)
+ (pt 429.95938 329.16688)
+ (pt 429.80467 328.93533)
+ (pt 429.60961 328.805)
+ (pt 429.669 328.76532)
+ (pt 431.82288 328.76532)
+ (pt 432.34593 329.28837)
+ (pt 432.47824 329.37678)
+ (pt 432.63431 329.40783)
+ (pt 432.73856 329.38709)
+ (pt 432.81291 329.46144)
+ (pt 432.79217 329.56569)
+ (pt 432.82322 329.72176)
+ (pt 432.91163 329.85407)
+ (pt 433.47731 330.41975)
+ (pt 433.60962 330.50816)
+ (pt 433.76569 330.53921)
+ (pt 433.87547 330.51737)
+ (pt 434.09905 330.74095)
+ (pt 434.52 330.91532)
+ (pt 435.37217 330.91532)
+ (pt 435.37217 330.97)
+ (pt 435.40321 331.12607)
+ (pt 435.49162 331.25838)
+ (pt 435.62393 331.34679)
+ (pt 435.78 331.37783)
+ (pt 436.98 331.37783)
+ (pt 437.13607 331.34679)
+ (pt 437.17616 331.32)
+ (pt 437.58384 331.32)
+ (pt 437.62393 331.34679)
+ (pt 437.78 331.37783)
+ (pt 438.98 331.37783)
+ (pt 439.13607 331.34679)
+ (pt 439.26838 331.25838)
+ (pt 439.35679 331.12607)
+ (pt 439.38783 330.97)
+ (pt 439.38783 330.91532)
+ (pt 440.9 330.91532)
+ (pt 441.32095 330.74095)
+ (pt 441.49215 330.56975)
+ (pt 441.44237 330.82)
+ (pt 441.51222 331.17116)
+ (pt 441.71114 331.46886)
+ (pt 442.00884 331.66778)
+ (pt 442.36 331.73763)
+ (pt 442.71116 331.66778)
+ (pt 442.92072 331.52776)
+ (pt 443.03348 331.69652)
+ (pt 443.21541 331.81808)
+ (pt 443.43 331.86077)
+ (pt 443.66923 331.86077)
+ (pt 443.66923 331.86659)
+ (pt 443.63468 331.95)
+ (pt 443.63468 332.68859)
+ (pt 443.51114 332.77114)
+ (pt 443.45465 332.85567)
+ (pt 443.40607 332.82321)
+ (pt 443.25 332.79217)
+ (pt 441.95 332.79217)
+ (pt 441.79393 332.82321)
+ (pt 441.66162 332.91162)
+ (pt 441.57321 333.04393)
+ (pt 441.54217 333.2)
+ (pt 441.54217 334.4)
+ (pt 441.57321 334.55607)
+ (pt 441.6 334.59616)
+ (pt 441.6 335.00384)
+ (pt 441.57321 335.04393)
+ (pt 441.54217 335.2)
+ (pt 441.54217 336.4)
+ (pt 441.57321 336.55607)
+ (pt 441.66162 336.68838)
+ (pt 441.79393 336.77679)
+ (pt 441.90577 336.79903)
+ (pt 441.75222 337.02884)
+ (pt 441.68237 337.38)
+ (pt 441.75222 337.73116)
+ (pt 441.87276 337.91156)
+ (pt 441.76393 337.93321)
+ (pt 441.63162 338.02162)
+ (pt 441.54321 338.15393)
+ (pt 441.51217 338.31)
+ (pt 441.51217 339.61)
+ (pt 441.54321 339.76607)
+ (pt 441.63162 339.89838)
+ (pt 441.76393 339.98679)
+ (pt 441.92 340.01783)
+ (pt 443.12 340.01783)
+ (pt 443.27607 339.98679)
+ (pt 443.31616 339.96)
+ (pt 443.72384 339.96)
+ (pt 443.76393 339.98679)
+ (pt 443.92 340.01783)
+ (pt 445.12 340.01783)
+ (pt 445.27607 339.98679)
+ (pt 445.40838 339.89838)
+ (pt 445.49679 339.76607)
+ (pt 445.52783 339.61)
+ (pt 445.52783 338.31)
+ (pt 445.49679 338.15393)
+ (pt 445.40838 338.02162)
+ (pt 445.30944 337.95551)
+ (pt 445.30944 337.78783)
+ (pt 445.31 337.78783)
+ (pt 445.46607 337.75679)
+ (pt 445.59838 337.66838)
+ (pt 445.68679 337.53607)
+ (pt 445.71783 337.38)
+ (pt 445.71783 336.18)
+ (pt 445.68679 336.02393)
+ (pt 445.66 335.98384)
+ (pt 445.66 335.57616)
+ (pt 445.68679 335.53607)
+ (pt 445.71783 335.38)
+ (pt 445.71783 334.18)
+ (pt 445.68679 334.02393)
+ (pt 445.59838 333.89162)
+ (pt 445.46607 333.80321)
+ (pt 445.31 333.77217)
+ (pt 445.24821 333.77217)
+ (pt 445.19825 333.65156)
+ (pt 445.42 333.69567)
+ (pt 445.72001 333.63599)
+ (pt 445.80905 333.85095)
+ (pt 446.89217 334.93407)
+ (pt 446.89217 335.3)
+ (pt 446.92321 335.45607)
+ (pt 447.01162 335.58838)
+ (pt 447.1 335.64744)
+ (pt 447.1 335.75256)
+ (pt 447.01162 335.81162)
+ (pt 446.92321 335.94393)
+ (pt 446.89217 336.1)
+ (pt 446.89217 336.9)
+ (pt 446.92321 337.05607)
+ (pt 447.01162 337.18838)
+ (pt 447.10468 337.25056)
+ (pt 447.10468 338.01113)
+ (pt 447.04393 338.02321)
+ (pt 446.91162 338.11162)
+ (pt 446.82321 338.24393)
+ (pt 446.79217 338.4)
+ (pt 446.79217 339.4)
+ (pt 446.82321 339.55607)
+ (pt 446.91162 339.68838)
+ (pt 447.04393 339.77679)
+ (pt 447.2 339.80783)
+ (pt 447.70468 339.80783)
+ (pt 447.70468 340.99217)
+ (pt 447.65 340.99217)
+ (pt 447.49393 341.02321)
+ (pt 447.36162 341.11162)
+ (pt 447.27321 341.24393)
+ (pt 447.26113 341.30468)
+ (pt 446.85056 341.30468)
+ (pt 446.78838 341.21162)
+ (pt 446.65607 341.12321)
+ (pt 446.5 341.09217)
+ (pt 445.7 341.09217)
+ (pt 445.54393 341.12321)
+ (pt 445.41162 341.21162)
+ (pt 445.35256 341.3)
+ (pt 445.24744 341.3)
+ (pt 445.18838 341.21162)
+ (pt 445.05607 341.12321)
+ (pt 444.9 341.09217)
+ (pt 444.1 341.09217)
+ (pt 443.94393 341.12321)
+ (pt 443.81162 341.21162)
+ (pt 443.80486 341.22174)
+ (pt 443.55116 341.05222)
+ (pt 443.2 340.98237)
+ (pt 442.84884 341.05222)
+ (pt 442.55114 341.25114)
+ (pt 442.35222 341.54884)
+ (pt 442.28237 341.9)
+ (pt 442.35222 342.25116)
+ (pt 442.55114 342.54886)
+ (pt 442.84884 342.74778)
+ (pt 443.11137 342.8)
+ (pt 442.84884 342.85222)
+ (pt 442.55114 343.05114)
+ (pt 442.35222 343.34884)
+ (pt 442.28237 343.7)
+ (pt 442.35222 344.05116)
+ (pt 442.55114 344.34886)
+ (pt 442.84884 344.54778)
+ (pt 443.2 344.61763)
+ (pt 443.55116 344.54778)
+ (pt 443.80486 344.37826)
+ (pt 443.81162 344.38838)
+ (pt 443.94393 344.47679)
+ (pt 444.1 344.50783)
+ (pt 444.9 344.50783)
+ (pt 445.05607 344.47679)
+ (pt 445.18838 344.38838)
+ (pt 445.24744 344.3)
+ (pt 445.35256 344.3)
+ (pt 445.41162 344.38838)
+ (pt 445.54393 344.47679)
+ (pt 445.7 344.50783)
+ (pt 446.5 344.50783)
+ (pt 446.65607 344.47679)
+ (pt 446.78838 344.38838)
+ (pt 446.87679 344.25607)
+ (pt 446.90783 344.1)
+ (pt 446.90783 343.3)
+ (pt 446.87679 343.14393)
+ (pt 446.78838 343.01162)
+ (pt 446.69532 342.94944)
+ (pt 446.69532 342.65056)
+ (pt 446.78838 342.58838)
+ (pt 446.85056 342.49532)
+ (pt 447.24217 342.49532)
+ (pt 447.24217 342.6)
+ (pt 447.27321 342.75607)
+ (pt 447.3 342.79616)
+ (pt 447.3 343.20384)
+ (pt 447.27321 343.24393)
+ (pt 447.24217 343.4)
+ (pt 447.24217 344.6)
+ (pt 447.27321 344.75607)
+ (pt 447.36162 344.88838)
+ (pt 447.49393 344.97679)
+ (pt 447.61757 345.00138)
+ (pt 447.45222 345.24884)
+ (pt 447.38237 345.6)
+ (pt 447.45222 345.95116)
+ (pt 447.65114 346.24886)
+ (pt 447.94884 346.44778)
+ (pt 448.3 346.51763)
+ (pt 448.65116 346.44778)
+ (pt 448.94886 346.24886)
+ (pt 449.14778 345.95116)
+ (pt 449.21763 345.6)
+ (pt 449.14778 345.24884)
+ (pt 448.98243 345.00138)
+ (pt 449.10607 344.97679)
+ (pt 449.23838 344.88838)
+ (pt 449.32679 344.75607)
+ (pt 449.35783 344.6)
+ (pt 449.35783 343.4)
+ (pt 449.32679 343.24393)
+ (pt 449.3 343.20384)
+ (pt 449.3 342.79616)
+ (pt 449.32679 342.75607)
+ (pt 449.35783 342.6)
+ (pt 449.35783 341.4)
+ (pt 449.32679 341.24393)
+ (pt 449.23838 341.11162)
+ (pt 449.10607 341.02321)
+ (pt 448.95 340.99217)
+ (pt 448.89532 340.99217)
+ (pt 448.89532 339.5)
+ (pt 448.72095 339.07905)
+ (pt 448.60783 338.96593)
+ (pt 448.60783 338.4)
+ (pt 448.57679 338.24393)
+ (pt 448.48838 338.11162)
+ (pt 448.35607 338.02321)
+ (pt 448.29532 338.01113)
+ (pt 448.29532 337.25056)
+ (pt 448.38838 337.18838)
+ (pt 448.47679 337.05607)
+ (pt 448.50783 336.9)
+ (pt 448.50783 336.1)
+ (pt 448.47679 335.94393)
+ (pt 448.38838 335.81162)
+ (pt 448.3 335.75256)
+ (pt 448.3 335.64744)
+ (pt 448.38838 335.58838)
+ (pt 448.47679 335.45607)
+ (pt 448.50783 335.3)
+ (pt 448.50783 334.5)
+ (pt 448.47679 334.34393)
+ (pt 448.38838 334.21162)
+ (pt 448.25607 334.12321)
+ (pt 448.1 334.09217)
+ (pt 447.73407 334.09217)
+ (pt 446.82532 333.18342)
+ (pt 446.82532 332.75914)
+ (pt 447.12 332.8812)
+ (pt 447.51948 332.8812)
+ (pt 447.54324 332.91676)
+ (pt 447.80786 333.09358)
+ (pt 448.12 333.15567)
+ (pt 448.43214 333.09358)
+ (pt 448.69676 332.91676)
+ (pt 448.87358 332.65214)
+ (pt 448.93567 332.34)
+ (pt 448.91638 332.24301)
+ (pt 448.98 332.25567)
+ (pt 449.29214 332.19358)
+ (pt 449.55676 332.01676)
+ (pt 449.73358 331.75214)
+ (pt 449.75807 331.62902)
+ (pt 449.76324 331.63676)
+ (pt 450.02786 331.81358)
+ (pt 450.34 331.87567)
+ (pt 450.65214 331.81358)
+ (pt 450.91676 331.63676)
+ (pt 451.09358 331.37214)
+ (pt 451.15567 331.06)
+ (pt 451.09358 330.74786)
+ (pt 450.91676 330.48324)
+ (pt 450.65214 330.30642)
+ (pt 450.35465 330.24725)
+ (pt 450.37407 330.22783)
+ (pt 450.74 330.22783)
+ (pt 450.89607 330.19679)
+ (pt 451.02838 330.10838)
+ (pt 451.08744 330.02)
+ (pt 451.19256 330.02)
+ (pt 451.25162 330.10838)
+ (pt 451.38393 330.19679)
+ (pt 451.54 330.22783)
+ (pt 452.34 330.22783)
+ (pt 452.49607 330.19679)
+ (pt 452.60568 330.12355)
+ (pt 453.35299 330.12355)
+ (pt 453.42786 330.17358)
+ (pt 453.74 330.23567)
+ (pt 454.05214 330.17358)
+ (pt 454.31676 329.99676)
+ (pt 454.49358 329.73214)
+ (pt 454.55567 329.42)
+ (pt 454.49358 329.10786)
+ (pt 454.31676 328.84324)
+ (pt 454.05214 328.66642)
+ (pt 453.74 328.60433)
+ (pt 453.42786 328.66642)
+ (pt 453.35299 328.71645)
+ (pt 452.60568 328.71645)
+ (pt 452.49607 328.64321)
+ (pt 452.34 328.61217)
+ (pt 451.54 328.61217)
+ (pt 451.38393 328.64321)
+ (pt 451.25162 328.73162)
+ (pt 451.19256 328.82)
+ (pt 451.08744 328.82)
+ (pt 451.02838 328.73162)
+ (pt 450.89607 328.64321)
+ (pt 450.74 328.61217)
+ (pt 449.94 328.61217)
+ (pt 449.78393 328.64321)
+ (pt 449.65162 328.73162)
+ (pt 449.58385 328.83303)
+ (pt 449.40886 328.57114)
+ (pt 449.11116 328.37222)
+ (pt 448.76 328.30237)
+ (pt 448.70948 328.31242)
+ (pt 449.32501 327.69689)
+ (pt 449.38 327.70783)
+ (pt 450.18 327.70783)
+ (pt 450.33607 327.67679)
+ (pt 450.46838 327.58838)
+ (pt 450.52744 327.5)
+ (pt 450.63256 327.5)
+ (pt 450.69162 327.58838)
+ (pt 450.82393 327.67679)
+ (pt 450.98 327.70783)
+ (pt 451.78 327.70783)
+ (pt 451.93607 327.67679)
+ (pt 452.06838 327.58838)
+ (pt 452.15679 327.45607)
+ (pt 452.18783 327.3)
+ (pt 452.18783 326.5)
+ (pt 452.15679 326.34393)
+ (pt 452.06838 326.21162)
+ (pt 452.01166 326.17372)
+ (pt 452.04886 326.14886)
+ (pt 452.24778 325.85116)
+ (pt 452.31763 325.5)
+ (pt 452.24778 325.14884)
+ (pt 452.04886 324.85114)
+ (pt 451.75116 324.65222)
+ (pt 451.4 324.58237)
+ (pt 451.04884 324.65222)
+ (pt 450.92483 324.73508)
+ (pt 450.92783 324.72)
+ (pt 450.92783 323.92)
+ (pt 450.89679 323.76393)
+ (pt 450.80838 323.63162)
+ (pt 450.67607 323.54321)
+ (pt 450.52 323.51217)
+ (pt 449.72 323.51217)
+ (pt 449.56393 323.54321)
+ (pt 449.43162 323.63162)
+ (pt 449.37256 323.72)
+ (pt 449.26744 323.72)
+ (pt 449.20838 323.63162)
+ (pt 449.07607 323.54321)
+ (pt 448.92 323.51217)
+ (pt 448.89532 323.51217)
+ (pt 448.89532 323.21783)
+ (pt 448.9 323.21783)
+ (pt 449.05607 323.18679)
+ (pt 449.09616 323.16)
+ (pt 449.50384 323.16)
+ (pt 449.54393 323.18679)
+ (pt 449.7 323.21783)
+ (pt 450.9 323.21783)
+ (pt 451.05607 323.18679)
+ (pt 451.18838 323.09838)
+ (pt 451.27679 322.96607)
+ (pt 451.30783 322.81)
+ (pt 451.30783 321.51)
+ (pt 451.27679 321.35393)
+ (pt 451.18838 321.22162)
+ (pt 451.13235 321.18418)
+ (pt 451.16778 321.13116)
+ (pt 451.23763 320.78)
+ (pt 451.16778 320.42884)
+ (pt 451.02111 320.20933)
+ (pt 451.09679 320.09607)
+ (pt 451.12783 319.94)
+ (pt 451.12783 319.14)
+ (pt 451.09679 318.98393)
+ (pt 451.00838 318.85162)
+ (pt 450.92 318.79256)
+ (pt 450.92 318.68744)
+ (pt 451.00838 318.62838)
+ (pt 451.09679 318.49607)
+ (pt 451.12783 318.34)
+ (pt 451.12783 317.54)
+ (pt 451.09679 317.38393)
+ (pt 451.00838 317.25162)
+ (pt 450.87607 317.16321)
+ (pt 450.72 317.13217)
+ (pt 449.99933 317.13217)
+ (pt 450.28367 316.84783)
+ (pt 450.97 316.84783)
+ (pt 451.12607 316.81679)
+ (pt 451.25838 316.72838)
+ (pt 451.34679 316.59607)
+ (pt 451.37783 316.44)
+ (pt 451.37783 315.24)
+ (pt 451.34679 315.08393)
+ (pt 451.32 315.04384)
+ (pt 451.32 314.63616)
+ (pt 451.34679 314.59607)
+ (pt 451.37783 314.44)
+ (pt 451.37783 313.24)
+ (pt 451.34679 313.08393)
+ (pt 451.25838 312.95162)
+ (pt 451.12607 312.86321)
+ (pt 450.97 312.83217)
+ (pt 449.67 312.83217)
+ (pt 449.51393 312.86321)
+ (pt 449.38162 312.95162)
+ (pt 449.29321 313.08393)
+ (pt 449.26217 313.24)
+ (pt 449.26217 314.44)
+ (pt 449.29321 314.59607)
+ (pt 449.32 314.63616)
+ (pt 449.32 315.04384)
+ (pt 449.29321 315.08393)
+ (pt 449.26217 315.24)
+ (pt 449.26217 315.72633)
+ (pt 449.07783 315.91067)
+ (pt 449.07783 315.24)
+ (pt 449.04679 315.08393)
+ (pt 449.02 315.04384)
+ (pt 449.02 314.63616)
+ (pt 449.04679 314.59607)
+ (pt 449.07783 314.44)
+ (pt 449.07783 313.24)
+ (pt 449.04679 313.08393)
+ (pt 448.95838 312.95162)
+ (pt 448.82607 312.86321)
+ (pt 448.67 312.83217)
+ (pt 447.43543 312.83217)
+ (pt 447.43543 312.60591)
+ (pt 448.22 312.60591)
+ (pt 448.36022 312.54783)
+ (pt 448.62 312.54783)
+ (pt 448.77607 312.51679)
+ (pt 448.90838 312.42838)
+ (pt 448.96744 312.34)
+ (pt 449.07256 312.34)
+ (pt 449.13162 312.42838)
+ (pt 449.26393 312.51679)
+ (pt 449.42 312.54783)
+ (pt 450.22 312.54783)
+ (pt 450.37607 312.51679)
+ (pt 450.50838 312.42838)
+ (pt 450.59679 312.29607)
+ (pt 450.59962 312.28183)
+ (pt 450.67114 312.38886)
+ (pt 450.96884 312.58778)
+ (pt 451.32 312.65763)
+ (pt 451.67116 312.58778)
+ (pt 451.96886 312.38886)
+ (pt 452.16778 312.09116)
+ (pt 452.23763 311.74)
+ (pt 452.16778 311.38884)
+ (pt 451.96886 311.09114)
+ (pt 451.67116 310.89222)
+ (pt 451.32 310.82237)
+ (pt 450.96884 310.89222)
+ (pt 450.67114 311.09114)
+ (pt 450.59962 311.19817)
+ (pt 450.59679 311.18393)
+ (pt 450.50838 311.05162)
+ (pt 450.37607 310.96321)
+ (pt 450.22 310.93217)
+ (pt 449.42 310.93217)
+ (pt 449.26393 310.96321)
+ (pt 449.13162 311.05162)
+ (pt 449.07256 311.14)
+ (pt 448.96744 311.14)
+ (pt 448.90838 311.05162)
+ (pt 448.77607 310.96321)
+ (pt 448.62 310.93217)
+ (pt 448.36022 310.93217)
+ (pt 448.22 310.87409)
+ (pt 447.43543 310.87409)
+ (pt 447.43543 304.2)
+ (pt 447.43544 304.2)
+ (pt 447.37946 303.91856)
+ (pt 447.22003 303.67997)
+ (pt 446.98144 303.52054)
+ (pt 446.7 303.46456)
+ (pt 446.7 303.46457)
+ (pt 427.5 303.46457)
+ (pt 427.5 303.46456)
+ (pt 427.21856 303.52054)
+ (pt 426.97997 303.67997)
+ (pt 426.82054 303.91856)
+ (pt 426.76456 304.2)
+ (pt 426.76457 304.2)
+ (pt 426.76457 310.22585)
+ (pt 426.43183 310.22585)
+ (pt 426.43183 309.676)
+ (pt 426.40079 309.51993)
+ (pt 426.31238 309.38762)
+ (pt 426.18007 309.29921)
+ (pt 426.024 309.26817)
+ (pt 422.976 309.26817)
+ (pt 422.81993 309.29921)
+ (pt 422.68762 309.38762)
+ (pt 422.59921 309.51993)
+ (pt 422.56817 309.676)
+ (pt 422.56817 312.724)
+ (pt 422.59921 312.88007)
+ (pt 422.68762 313.01238)
+ (pt 422.81993 313.10079)
+ (pt 422.976 313.13183)
+ (pt 426.024 313.13183)
+ (pt 426.18007 313.10079)
+ (pt 426.31238 313.01238)
+ (pt 426.40079 312.88007)
+ (pt 426.43183 312.724)
+ (pt 426.43183 312.17415)
+ (pt 426.76457 312.17415)
+ (pt 426.76457 320.0)
+ (pt 426.76456 320.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 387.39358 286.28786)
+ (pt 387.21676 286.02324)
+ (pt 386.95214 285.84642)
+ (pt 386.64 285.78433)
+ (pt 386.32786 285.84642)
+ (pt 386.06324 286.02324)
+ (pt 385.88642 286.28786)
+ (pt 385.82433 286.6)
+ (pt 385.88642 286.91214)
+ (pt 386.06324 287.17676)
+ (pt 386.32786 287.35358)
+ (pt 386.64 287.41567)
+ (pt 386.95214 287.35358)
+ (pt 387.21676 287.17676)
+ (pt 387.39358 286.91214)
+ (pt 387.45567 286.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 386.29358 284.88786)
+ (pt 386.11676 284.62324)
+ (pt 385.85214 284.44642)
+ (pt 385.54 284.38433)
+ (pt 385.22786 284.44642)
+ (pt 384.96324 284.62324)
+ (pt 384.78642 284.88786)
+ (pt 384.72433 285.2)
+ (pt 384.78642 285.51214)
+ (pt 384.96324 285.77676)
+ (pt 385.22786 285.95358)
+ (pt 385.54 286.01567)
+ (pt 385.85214 285.95358)
+ (pt 386.11676 285.77676)
+ (pt 386.29358 285.51214)
+ (pt 386.35567 285.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.04783 309.0)
+ (pt 384.01679 308.84393)
+ (pt 383.92838 308.71162)
+ (pt 383.79607 308.62321)
+ (pt 383.64 308.59217)
+ (pt 381.64 308.59217)
+ (pt 381.48393 308.62321)
+ (pt 381.35162 308.71162)
+ (pt 381.26321 308.84393)
+ (pt 381.23217 309.0)
+ (pt 381.23217 311.0)
+ (pt 381.26321 311.15607)
+ (pt 381.35162 311.28838)
+ (pt 381.48393 311.37679)
+ (pt 381.64 311.40783)
+ (pt 383.64 311.40783)
+ (pt 383.79607 311.37679)
+ (pt 383.92838 311.28838)
+ (pt 384.01679 311.15607)
+ (pt 384.04783 311.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.23477 323.25895)
+ (pt 381.22436 323.41774)
+ (pt 381.27551 323.56842)
+ (pt 381.38043 323.68806)
+ (pt 381.52315 323.75844)
+ (pt 383.455 324.27608)
+ (pt 383.61379 324.28649)
+ (pt 383.76447 324.23534)
+ (pt 383.88411 324.13042)
+ (pt 383.95449 323.9877)
+ (pt 384.47213 322.05585)
+ (pt 384.48254 321.89706)
+ (pt 384.43139 321.74638)
+ (pt 384.32647 321.62674)
+ (pt 384.18375 321.55636)
+ (pt 382.2519 321.03872)
+ (pt 382.09311 321.02831)
+ (pt 381.94243 321.07946)
+ (pt 381.82279 321.18438)
+ (pt 381.75241 321.3271)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.04783 344.9)
+ (pt 384.01679 344.74393)
+ (pt 383.92838 344.61162)
+ (pt 383.79607 344.52321)
+ (pt 383.64 344.49217)
+ (pt 381.64 344.49217)
+ (pt 381.48393 344.52321)
+ (pt 381.35162 344.61162)
+ (pt 381.26321 344.74393)
+ (pt 381.23217 344.9)
+ (pt 381.23217 346.9)
+ (pt 381.26321 347.05607)
+ (pt 381.35162 347.18838)
+ (pt 381.48393 347.27679)
+ (pt 381.64 347.30783)
+ (pt 383.64 347.30783)
+ (pt 383.79607 347.27679)
+ (pt 383.92838 347.18838)
+ (pt 384.01679 347.05607)
+ (pt 384.04783 346.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.10783 421.86)
+ (pt 384.07679 421.70393)
+ (pt 383.98838 421.57162)
+ (pt 383.85607 421.48321)
+ (pt 383.7 421.45217)
+ (pt 381.7 421.45217)
+ (pt 381.54393 421.48321)
+ (pt 381.41162 421.57162)
+ (pt 381.32321 421.70393)
+ (pt 381.29217 421.86)
+ (pt 381.29217 423.86)
+ (pt 381.32321 424.01607)
+ (pt 381.41162 424.14838)
+ (pt 381.54393 424.23679)
+ (pt 381.7 424.26783)
+ (pt 383.7 424.26783)
+ (pt 383.85607 424.23679)
+ (pt 383.98838 424.14838)
+ (pt 384.07679 424.01607)
+ (pt 384.10783 423.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.00759 330.4671)
+ (pt 407.93721 330.32438)
+ (pt 407.81757 330.21946)
+ (pt 407.66689 330.16831)
+ (pt 407.5081 330.17872)
+ (pt 405.57625 330.69636)
+ (pt 405.43353 330.76674)
+ (pt 405.32861 330.88638)
+ (pt 405.27746 331.03706)
+ (pt 405.28787 331.19585)
+ (pt 405.80551 333.1277)
+ (pt 405.87589 333.27042)
+ (pt 405.99553 333.37534)
+ (pt 406.14621 333.42649)
+ (pt 406.305 333.41608)
+ (pt 408.23685 332.89844)
+ (pt 408.37957 332.82806)
+ (pt 408.48449 332.70842)
+ (pt 408.53564 332.55774)
+ (pt 408.52523 332.39895)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.75233 336.63346)
+ (pt 408.62002 336.54505)
+ (pt 408.46395 336.51401)
+ (pt 408.30788 336.54505)
+ (pt 408.17557 336.63346)
+ (pt 406.76136 338.04767)
+ (pt 406.67295 338.17998)
+ (pt 406.64191 338.33605)
+ (pt 406.67295 338.49212)
+ (pt 406.76136 338.62443)
+ (pt 408.17557 340.03864)
+ (pt 408.30788 340.12705)
+ (pt 408.46395 340.15809)
+ (pt 408.62002 340.12705)
+ (pt 408.75233 340.03864)
+ (pt 410.16654 338.62443)
+ (pt 410.25495 338.49212)
+ (pt 410.28599 338.33605)
+ (pt 410.25495 338.17998)
+ (pt 410.16654 338.04767)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 424.24778 332.04884)
+ (pt 424.04886 331.75114)
+ (pt 423.75116 331.55222)
+ (pt 423.4 331.48237)
+ (pt 423.04884 331.55222)
+ (pt 422.75114 331.75114)
+ (pt 422.55222 332.04884)
+ (pt 422.48237 332.4)
+ (pt 422.55222 332.75116)
+ (pt 422.75114 333.04886)
+ (pt 423.04884 333.24778)
+ (pt 423.4 333.31763)
+ (pt 423.75116 333.24778)
+ (pt 424.04886 333.04886)
+ (pt 424.24778 332.75116)
+ (pt 424.31763 332.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 426.14778 332.04884)
+ (pt 425.94886 331.75114)
+ (pt 425.65116 331.55222)
+ (pt 425.3 331.48237)
+ (pt 424.94884 331.55222)
+ (pt 424.65114 331.75114)
+ (pt 424.45222 332.04884)
+ (pt 424.38237 332.4)
+ (pt 424.45222 332.75116)
+ (pt 424.65114 333.04886)
+ (pt 424.94884 333.24778)
+ (pt 425.3 333.31763)
+ (pt 425.65116 333.24778)
+ (pt 425.94886 333.04886)
+ (pt 426.14778 332.75116)
+ (pt 426.21763 332.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 441.68778 331.72884)
+ (pt 441.48886 331.43114)
+ (pt 441.19116 331.23222)
+ (pt 440.84 331.16237)
+ (pt 440.48884 331.23222)
+ (pt 440.19114 331.43114)
+ (pt 439.99222 331.72884)
+ (pt 439.92237 332.08)
+ (pt 439.99222 332.43116)
+ (pt 440.19114 332.72886)
+ (pt 440.48884 332.92778)
+ (pt 440.84 332.99763)
+ (pt 441.19116 332.92778)
+ (pt 441.48886 332.72886)
+ (pt 441.68778 332.43116)
+ (pt 441.75763 332.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.2578 426.86415)
+ (pt 619.30461 426.6288)
+ (pt 619.2578 426.39345)
+ (pt 619.19782 426.30368)
+ (pt 619.2578 426.21391)
+ (pt 619.30461 425.97856)
+ (pt 619.28292 425.86952)
+ (pt 620.92799 425.86952)
+ (pt 621.16 425.91567)
+ (pt 621.47214 425.85358)
+ (pt 621.73676 425.67676)
+ (pt 621.91358 425.41214)
+ (pt 621.97567 425.1)
+ (pt 621.91358 424.78786)
+ (pt 621.73676 424.52324)
+ (pt 621.47214 424.34642)
+ (pt 621.16 424.28433)
+ (pt 620.84786 424.34642)
+ (pt 620.78883 424.38586)
+ (pt 620.85763 424.04)
+ (pt 620.78778 423.68884)
+ (pt 620.58886 423.39114)
+ (pt 620.29116 423.19222)
+ (pt 619.94 423.12237)
+ (pt 619.58884 423.19222)
+ (pt 619.29114 423.39114)
+ (pt 619.14038 423.61676)
+ (pt 619.12448 423.59296)
+ (pt 618.92495 423.45964)
+ (pt 618.6896 423.41283)
+ (pt 617.4704 423.41283)
+ (pt 617.23505 423.45964)
+ (pt 617.03552 423.59296)
+ (pt 616.9022 423.79249)
+ (pt 616.85539 424.02784)
+ (pt 616.87708 424.13688)
+ (pt 615.55269 424.13688)
+ (pt 615.47676 424.02324)
+ (pt 615.21214 423.84642)
+ (pt 614.9 423.78433)
+ (pt 614.58786 423.84642)
+ (pt 614.32324 424.02324)
+ (pt 614.14642 424.28786)
+ (pt 614.08433 424.6)
+ (pt 614.14642 424.91214)
+ (pt 614.32324 425.17676)
+ (pt 614.58786 425.35358)
+ (pt 614.9 425.41567)
+ (pt 615.21214 425.35358)
+ (pt 615.41313 425.21928)
+ (pt 616.0243 425.21928)
+ (pt 615.88786 425.24642)
+ (pt 615.62324 425.42324)
+ (pt 615.44642 425.68786)
+ (pt 615.40283 425.90702)
+ (pt 615.31214 425.84642)
+ (pt 615.0 425.78433)
+ (pt 614.68786 425.84642)
+ (pt 614.42324 426.02324)
+ (pt 614.24642 426.28786)
+ (pt 614.18433 426.6)
+ (pt 614.24642 426.91214)
+ (pt 614.42324 427.17676)
+ (pt 614.58285 427.28341)
+ (pt 614.52324 427.32324)
+ (pt 614.34642 427.58786)
+ (pt 614.28433 427.9)
+ (pt 614.34642 428.21214)
+ (pt 614.52324 428.47676)
+ (pt 614.63285 428.55)
+ (pt 614.52324 428.62324)
+ (pt 614.34642 428.88786)
+ (pt 614.28433 429.2)
+ (pt 614.34642 429.51214)
+ (pt 614.52324 429.77676)
+ (pt 614.78786 429.95358)
+ (pt 615.1 430.01567)
+ (pt 615.41214 429.95358)
+ (pt 615.67676 429.77676)
+ (pt 615.68064 429.77096)
+ (pt 616.74366 429.77096)
+ (pt 615.84245 430.67217)
+ (pt 615.4 430.67217)
+ (pt 615.24393 430.70321)
+ (pt 615.11162 430.79162)
+ (pt 615.05256 430.88)
+ (pt 614.94744 430.88)
+ (pt 614.88838 430.79162)
+ (pt 614.75607 430.70321)
+ (pt 614.6 430.67217)
+ (pt 613.8 430.67217)
+ (pt 613.64393 430.70321)
+ (pt 613.5857 430.74212)
+ (pt 613.45116 430.65222)
+ (pt 613.1 430.58237)
+ (pt 612.74884 430.65222)
+ (pt 612.45114 430.85114)
+ (pt 612.25222 431.14884)
+ (pt 612.18237 431.5)
+ (pt 612.25222 431.85116)
+ (pt 612.45114 432.14886)
+ (pt 612.74884 432.34778)
+ (pt 613.1 432.41763)
+ (pt 613.45116 432.34778)
+ (pt 613.61563 432.23788)
+ (pt 613.64393 432.25679)
+ (pt 613.8 432.28783)
+ (pt 614.6 432.28783)
+ (pt 614.75607 432.25679)
+ (pt 614.88838 432.16838)
+ (pt 614.94744 432.08)
+ (pt 615.05256 432.08)
+ (pt 615.11162 432.16838)
+ (pt 615.24393 432.25679)
+ (pt 615.4 432.28783)
+ (pt 616.2 432.28783)
+ (pt 616.35607 432.25679)
+ (pt 616.48838 432.16838)
+ (pt 616.57679 432.03607)
+ (pt 616.60783 431.88)
+ (pt 616.60783 431.43755)
+ (pt 617.55037 430.49501)
+ (pt 618.6896 430.49501)
+ (pt 618.92495 430.4482)
+ (pt 619.12448 430.31488)
+ (pt 619.2578 430.11535)
+ (pt 619.30461 429.88)
+ (pt 619.2578 429.64465)
+ (pt 619.19782 429.55488)
+ (pt 619.2578 429.46511)
+ (pt 619.30461 429.22976)
+ (pt 619.2578 428.99441)
+ (pt 619.19782 428.90464)
+ (pt 619.2578 428.81487)
+ (pt 619.30461 428.57952)
+ (pt 619.2578 428.34417)
+ (pt 619.19782 428.2544)
+ (pt 619.2578 428.16463)
+ (pt 619.30461 427.92928)
+ (pt 619.2578 427.69393)
+ (pt 619.19782 427.60416)
+ (pt 619.2578 427.51439)
+ (pt 619.30461 427.27904)
+ (pt 619.2578 427.04369)
+ (pt 619.19782 426.95392)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.9 251.4)
+ (pt 614.3 251.4)
+ (pt 614.3 241.2)
+ (pt 595.9 241.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.07603 303.2612)
+ (pt 614.06433 303.32)
+ (pt 614.12642 303.63214)
+ (pt 614.30324 303.89676)
+ (pt 614.43781 303.98668)
+ (pt 614.32324 304.06324)
+ (pt 614.14642 304.32786)
+ (pt 614.08433 304.64)
+ (pt 614.14642 304.95214)
+ (pt 614.32324 305.21676)
+ (pt 614.41788 305.28)
+ (pt 614.32324 305.34324)
+ (pt 614.14642 305.60786)
+ (pt 614.08433 305.92)
+ (pt 614.14642 306.23214)
+ (pt 614.32324 306.49676)
+ (pt 614.45285 306.58336)
+ (pt 614.36324 306.64324)
+ (pt 614.18642 306.90786)
+ (pt 614.12433 307.22)
+ (pt 614.18642 307.53214)
+ (pt 614.36324 307.79676)
+ (pt 614.62786 307.97358)
+ (pt 614.94 308.03567)
+ (pt 615.25214 307.97358)
+ (pt 615.51676 307.79676)
+ (pt 615.534 307.77096)
+ (pt 616.83708 307.77096)
+ (pt 616.81539 307.88)
+ (pt 616.8622 308.11535)
+ (pt 616.99552 308.31488)
+ (pt 617.19505 308.4482)
+ (pt 617.4304 308.49501)
+ (pt 618.6496 308.49501)
+ (pt 618.80514 308.46407)
+ (pt 618.86642 308.77214)
+ (pt 619.04324 309.03676)
+ (pt 619.30786 309.21358)
+ (pt 619.62 309.27567)
+ (pt 619.93214 309.21358)
+ (pt 620.19676 309.03676)
+ (pt 620.37358 308.77214)
+ (pt 620.43567 308.46)
+ (pt 620.37358 308.14786)
+ (pt 620.19676 307.88324)
+ (pt 619.93214 307.70642)
+ (pt 619.62 307.64433)
+ (pt 619.57805 307.65267)
+ (pt 619.42269 307.49731)
+ (pt 619.22748 307.41645)
+ (pt 619.26461 307.22976)
+ (pt 619.2178 306.99441)
+ (pt 619.15782 306.90464)
+ (pt 619.2178 306.81487)
+ (pt 619.26461 306.57952)
+ (pt 619.2178 306.34417)
+ (pt 619.15782 306.2544)
+ (pt 619.2178 306.16463)
+ (pt 619.26461 305.92928)
+ (pt 619.2178 305.69393)
+ (pt 619.15782 305.60416)
+ (pt 619.2178 305.51439)
+ (pt 619.26461 305.27904)
+ (pt 619.2178 305.04369)
+ (pt 619.15782 304.95392)
+ (pt 619.2178 304.86415)
+ (pt 619.26461 304.6288)
+ (pt 619.2178 304.39345)
+ (pt 619.15782 304.30368)
+ (pt 619.2178 304.21391)
+ (pt 619.26461 303.97856)
+ (pt 619.2178 303.74321)
+ (pt 619.15782 303.65344)
+ (pt 619.2178 303.56367)
+ (pt 619.26461 303.32832)
+ (pt 619.2178 303.09297)
+ (pt 619.15782 303.0032)
+ (pt 619.2178 302.91343)
+ (pt 619.26461 302.67808)
+ (pt 619.2178 302.44273)
+ (pt 619.15782 302.35296)
+ (pt 619.2178 302.26319)
+ (pt 619.26461 302.02784)
+ (pt 619.2178 301.79249)
+ (pt 619.08448 301.59296)
+ (pt 618.88495 301.45964)
+ (pt 618.6496 301.41283)
+ (pt 617.4304 301.41283)
+ (pt 617.19505 301.45964)
+ (pt 617.17635 301.47214)
+ (pt 617.10886 301.37114)
+ (pt 616.81116 301.17222)
+ (pt 616.46 301.10237)
+ (pt 616.10884 301.17222)
+ (pt 615.81114 301.37114)
+ (pt 615.61222 301.66884)
+ (pt 615.54237 302.02)
+ (pt 615.57396 302.1788)
+ (pt 613.96052 302.1788)
+ (pt 613.93676 302.14324)
+ (pt 613.67214 301.96642)
+ (pt 613.36 301.90433)
+ (pt 613.04786 301.96642)
+ (pt 612.78324 302.14324)
+ (pt 612.60642 302.40786)
+ (pt 612.54433 302.72)
+ (pt 612.60642 303.03214)
+ (pt 612.78324 303.29676)
+ (pt 613.04786 303.47358)
+ (pt 613.36 303.53567)
+ (pt 613.67214 303.47358)
+ (pt 613.93676 303.29676)
+ (pt 613.96052 303.2612)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 510.63602 404.03944)
+ (pt 510.66062 404.16312)
+ (pt 510.81533 404.39467)
+ (pt 511.04688 404.54938)
+ (pt 511.32 404.60371)
+ (pt 511.59312 404.54938)
+ (pt 511.82467 404.39467)
+ (pt 511.94056 404.22122)
+ (pt 511.94056 405.1899)
+ (pt 511.92393 405.19321)
+ (pt 511.79162 405.28162)
+ (pt 511.70321 405.41393)
+ (pt 511.67217 405.57)
+ (pt 511.67217 406.87)
+ (pt 511.70321 407.02607)
+ (pt 511.79162 407.15838)
+ (pt 511.92393 407.24679)
+ (pt 512.08 407.27783)
+ (pt 513.28 407.27783)
+ (pt 513.43607 407.24679)
+ (pt 513.47616 407.22)
+ (pt 513.88384 407.22)
+ (pt 513.92393 407.24679)
+ (pt 514.03056 407.268)
+ (pt 514.03056 408.2856)
+ (pt 513.99162 408.31162)
+ (pt 513.9656 408.35056)
+ (pt 513.30686 408.35056)
+ (pt 513.20607 408.28321)
+ (pt 513.05 408.25217)
+ (pt 511.75 408.25217)
+ (pt 511.59393 408.28321)
+ (pt 511.46162 408.37162)
+ (pt 511.37321 408.50393)
+ (pt 511.34217 408.66)
+ (pt 511.34217 409.86)
+ (pt 511.37321 410.01607)
+ (pt 511.4 410.05616)
+ (pt 511.4 410.46384)
+ (pt 511.37321 410.50393)
+ (pt 511.34217 410.66)
+ (pt 511.34217 411.86)
+ (pt 511.37321 412.01607)
+ (pt 511.46162 412.14838)
+ (pt 511.59393 412.23679)
+ (pt 511.64094 412.24614)
+ (pt 511.53222 412.40884)
+ (pt 511.46237 412.76)
+ (pt 511.53222 413.11116)
+ (pt 511.73114 413.40886)
+ (pt 512.02884 413.60778)
+ (pt 512.38 413.67763)
+ (pt 512.73116 413.60778)
+ (pt 513.02886 413.40886)
+ (pt 513.22778 413.11116)
+ (pt 513.29763 412.76)
+ (pt 513.22778 412.40884)
+ (pt 513.12376 412.25316)
+ (pt 513.20607 412.23679)
+ (pt 513.33838 412.14838)
+ (pt 513.42679 412.01607)
+ (pt 513.45783 411.86)
+ (pt 513.45783 410.66)
+ (pt 513.42679 410.50393)
+ (pt 513.4 410.46384)
+ (pt 513.4 410.05616)
+ (pt 513.42679 410.01607)
+ (pt 513.45783 409.86)
+ (pt 513.45783 409.64944)
+ (pt 513.9656 409.64944)
+ (pt 513.99162 409.68838)
+ (pt 514.08 409.74744)
+ (pt 514.08 409.85256)
+ (pt 513.99162 409.91162)
+ (pt 513.90321 410.04393)
+ (pt 513.87217 410.2)
+ (pt 513.87217 411.0)
+ (pt 513.90321 411.15607)
+ (pt 513.95885 411.23933)
+ (pt 513.83222 411.42884)
+ (pt 513.76237 411.78)
+ (pt 513.83222 412.13116)
+ (pt 514.03114 412.42886)
+ (pt 514.32884 412.62778)
+ (pt 514.68 412.69763)
+ (pt 515.03116 412.62778)
+ (pt 515.32886 412.42886)
+ (pt 515.52778 412.13116)
+ (pt 515.59763 411.78)
+ (pt 515.52778 411.42884)
+ (pt 515.40115 411.23933)
+ (pt 515.45679 411.15607)
+ (pt 515.48783 411.0)
+ (pt 515.48783 410.2)
+ (pt 515.45679 410.04393)
+ (pt 515.36838 409.91162)
+ (pt 515.28 409.85256)
+ (pt 515.28 409.74744)
+ (pt 515.34568 409.70355)
+ (pt 518.22166 409.70355)
+ (pt 518.25162 409.74838)
+ (pt 518.34 409.80744)
+ (pt 518.34 409.91256)
+ (pt 518.25162 409.97162)
+ (pt 518.16321 410.10393)
+ (pt 518.13217 410.26)
+ (pt 518.13217 411.06)
+ (pt 518.16321 411.21607)
+ (pt 518.23645 411.32568)
+ (pt 518.23645 414.07172)
+ (pt 518.21645 414.12)
+ (pt 518.21645 414.15494)
+ (pt 518.13162 414.21162)
+ (pt 518.04321 414.34393)
+ (pt 518.01217 414.5)
+ (pt 518.01217 415.5)
+ (pt 518.04321 415.65607)
+ (pt 518.13162 415.78838)
+ (pt 518.26393 415.87679)
+ (pt 518.42 415.90783)
+ (pt 519.42 415.90783)
+ (pt 519.57607 415.87679)
+ (pt 519.70838 415.78838)
+ (pt 519.79679 415.65607)
+ (pt 519.82783 415.5)
+ (pt 519.82783 414.5)
+ (pt 519.79679 414.34393)
+ (pt 519.70838 414.21162)
+ (pt 519.62355 414.15494)
+ (pt 519.62355 414.14828)
+ (pt 519.64355 414.1)
+ (pt 519.64355 411.32568)
+ (pt 519.71679 411.21607)
+ (pt 519.74783 411.06)
+ (pt 519.74783 410.26)
+ (pt 519.71679 410.10393)
+ (pt 519.62838 409.97162)
+ (pt 519.54 409.91256)
+ (pt 519.54 409.80744)
+ (pt 519.62838 409.74838)
+ (pt 519.71679 409.61607)
+ (pt 519.74783 409.46)
+ (pt 519.74783 408.66)
+ (pt 519.71679 408.50393)
+ (pt 519.64355 408.39432)
+ (pt 519.64355 406.95141)
+ (pt 520.82713 405.76783)
+ (pt 522.14 405.76783)
+ (pt 522.29607 405.73679)
+ (pt 522.42838 405.64838)
+ (pt 522.51679 405.51607)
+ (pt 522.54783 405.36)
+ (pt 522.54783 403.56)
+ (pt 522.51679 403.40393)
+ (pt 522.42838 403.27162)
+ (pt 522.30623 403.19)
+ (pt 522.42838 403.10838)
+ (pt 522.51679 402.97607)
+ (pt 522.54783 402.82)
+ (pt 522.54783 401.02)
+ (pt 522.51679 400.86393)
+ (pt 522.42838 400.73162)
+ (pt 522.30623 400.65)
+ (pt 522.42838 400.56838)
+ (pt 522.51679 400.43607)
+ (pt 522.54783 400.28)
+ (pt 522.54783 400.1654)
+ (pt 522.7 400.19567)
+ (pt 523.01214 400.13358)
+ (pt 523.27676 399.95676)
+ (pt 523.45358 399.69214)
+ (pt 523.51567 399.38)
+ (pt 523.45358 399.06786)
+ (pt 523.27676 398.80324)
+ (pt 523.01214 398.62642)
+ (pt 522.7 398.56433)
+ (pt 522.54783 398.5946)
+ (pt 522.54783 398.48)
+ (pt 522.51679 398.32393)
+ (pt 522.42838 398.19162)
+ (pt 522.29607 398.10321)
+ (pt 522.14 398.07217)
+ (pt 520.14 398.07217)
+ (pt 519.98393 398.10321)
+ (pt 519.85162 398.19162)
+ (pt 519.76321 398.32393)
+ (pt 519.73217 398.48)
+ (pt 519.73217 400.28)
+ (pt 519.76321 400.43607)
+ (pt 519.85162 400.56838)
+ (pt 519.97377 400.65)
+ (pt 519.85162 400.73162)
+ (pt 519.76321 400.86393)
+ (pt 519.73217 401.02)
+ (pt 519.73217 402.82)
+ (pt 519.76321 402.97607)
+ (pt 519.85162 403.10838)
+ (pt 519.97377 403.19)
+ (pt 519.85162 403.27162)
+ (pt 519.76321 403.40393)
+ (pt 519.73217 403.56)
+ (pt 519.73217 404.87287)
+ (pt 518.44252 406.16252)
+ (pt 518.23645 406.66)
+ (pt 518.23645 408.29645)
+ (pt 515.34568 408.29645)
+ (pt 515.32944 408.2856)
+ (pt 515.32944 407.268)
+ (pt 515.43607 407.24679)
+ (pt 515.56838 407.15838)
+ (pt 515.65679 407.02607)
+ (pt 515.68783 406.87)
+ (pt 515.68783 405.57)
+ (pt 515.65679 405.41393)
+ (pt 515.56838 405.28162)
+ (pt 515.43607 405.19321)
+ (pt 515.28 405.16217)
+ (pt 514.08 405.16217)
+ (pt 513.92393 405.19321)
+ (pt 513.88384 405.22)
+ (pt 513.47616 405.22)
+ (pt 513.43607 405.19321)
+ (pt 513.28 405.16217)
+ (pt 513.23944 405.16217)
+ (pt 513.23944 404.22122)
+ (pt 513.35533 404.39467)
+ (pt 513.58688 404.54938)
+ (pt 513.86 404.60371)
+ (pt 514.13312 404.54938)
+ (pt 514.36467 404.39467)
+ (pt 514.495 404.19961)
+ (pt 514.62533 404.39467)
+ (pt 514.85688 404.54938)
+ (pt 515.13 404.60371)
+ (pt 515.40312 404.54938)
+ (pt 515.63467 404.39467)
+ (pt 515.78938 404.16312)
+ (pt 515.84371 403.89)
+ (pt 515.84371 402.89)
+ (pt 515.78938 402.61688)
+ (pt 515.63467 402.38533)
+ (pt 515.40312 402.23062)
+ (pt 515.13 402.17629)
+ (pt 514.85688 402.23062)
+ (pt 514.62533 402.38533)
+ (pt 514.495 402.58039)
+ (pt 514.36467 402.38533)
+ (pt 514.13312 402.23062)
+ (pt 513.86 402.17629)
+ (pt 513.58688 402.23062)
+ (pt 513.35533 402.38533)
+ (pt 513.225 402.58039)
+ (pt 513.09467 402.38533)
+ (pt 512.86312 402.23062)
+ (pt 512.59 402.17629)
+ (pt 512.31688 402.23062)
+ (pt 512.08533 402.38533)
+ (pt 511.955 402.58039)
+ (pt 511.82467 402.38533)
+ (pt 511.59312 402.23062)
+ (pt 511.32 402.17629)
+ (pt 511.04688 402.23062)
+ (pt 510.81533 402.38533)
+ (pt 510.66062 402.61688)
+ (pt 510.63602 402.74056)
+ (pt 508.15296 402.74056)
+ (pt 507.98214 402.62642)
+ (pt 507.67 402.56433)
+ (pt 507.17 402.56433)
+ (pt 506.85786 402.62642)
+ (pt 506.59324 402.80324)
+ (pt 506.41642 403.06786)
+ (pt 506.35433 403.38)
+ (pt 506.41642 403.69214)
+ (pt 506.59324 403.95676)
+ (pt 506.85786 404.13358)
+ (pt 507.17 404.19567)
+ (pt 507.67 404.19567)
+ (pt 507.98214 404.13358)
+ (pt 508.12303 404.03944)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 470.66457 298.0)
+ (pt 470.66457 312.5)
+ (pt 470.66456 312.5)
+ (pt 470.72054 312.78144)
+ (pt 470.87997 313.02003)
+ (pt 471.11856 313.17946)
+ (pt 471.4 313.23544)
+ (pt 471.4 313.23543)
+ (pt 486.2 313.23543)
+ (pt 486.2 313.23544)
+ (pt 486.48144 313.17946)
+ (pt 486.72003 313.02003)
+ (pt 486.87946 312.78144)
+ (pt 486.93544 312.5)
+ (pt 486.93543 312.5)
+ (pt 486.93543 309.33543)
+ (pt 491.9 309.33543)
+ (pt 491.9 309.33544)
+ (pt 492.18144 309.27946)
+ (pt 492.42003 309.12003)
+ (pt 492.57946 308.88144)
+ (pt 492.63544 308.6)
+ (pt 492.63543 308.6)
+ (pt 492.63543 303.60518)
+ (pt 492.84884 303.74778)
+ (pt 493.2 303.81763)
+ (pt 493.55116 303.74778)
+ (pt 493.84886 303.54886)
+ (pt 494.04778 303.25116)
+ (pt 494.11763 302.9)
+ (pt 494.04778 302.54884)
+ (pt 493.84886 302.25114)
+ (pt 493.55116 302.05222)
+ (pt 493.2 301.98237)
+ (pt 492.84884 302.05222)
+ (pt 492.63543 302.19482)
+ (pt 492.63543 298.0)
+ (pt 492.63544 298.0)
+ (pt 492.57946 297.71856)
+ (pt 492.42003 297.47997)
+ (pt 492.18144 297.32054)
+ (pt 491.9 297.26456)
+ (pt 491.9 297.26457)
+ (pt 471.4 297.26457)
+ (pt 471.4 297.26456)
+ (pt 471.11856 297.32054)
+ (pt 470.87997 297.47997)
+ (pt 470.72054 297.71856)
+ (pt 470.66456 298.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 479.12778 355.60884)
+ (pt 478.92886 355.31114)
+ (pt 478.63116 355.11222)
+ (pt 478.28 355.04237)
+ (pt 477.92884 355.11222)
+ (pt 477.63114 355.31114)
+ (pt 477.43222 355.60884)
+ (pt 477.36237 355.96)
+ (pt 477.43222 356.31116)
+ (pt 477.63114 356.60886)
+ (pt 477.92884 356.80778)
+ (pt 478.28 356.87763)
+ (pt 478.63116 356.80778)
+ (pt 478.92886 356.60886)
+ (pt 479.12778 356.31116)
+ (pt 479.19763 355.96)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 478.04783 415.22)
+ (pt 478.01679 415.06393)
+ (pt 477.92838 414.93162)
+ (pt 477.79607 414.84321)
+ (pt 477.64 414.81217)
+ (pt 475.64 414.81217)
+ (pt 475.48393 414.84321)
+ (pt 475.35162 414.93162)
+ (pt 475.26321 415.06393)
+ (pt 475.23217 415.22)
+ (pt 475.23217 417.22)
+ (pt 475.26321 417.37607)
+ (pt 475.35162 417.50838)
+ (pt 475.48393 417.59679)
+ (pt 475.64 417.62783)
+ (pt 477.64 417.62783)
+ (pt 477.79607 417.59679)
+ (pt 477.92838 417.50838)
+ (pt 478.01679 417.37607)
+ (pt 478.04783 417.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 486.48283 293.825)
+ (pt 486.45179 293.66893)
+ (pt 486.42415 293.62757)
+ (pt 486.42415 293.56783)
+ (pt 486.52 293.56783)
+ (pt 486.67607 293.53679)
+ (pt 486.80838 293.44838)
+ (pt 486.89679 293.31607)
+ (pt 486.92783 293.16)
+ (pt 486.92783 291.16)
+ (pt 486.89679 291.00393)
+ (pt 486.80838 290.87162)
+ (pt 486.67607 290.78321)
+ (pt 486.52 290.75217)
+ (pt 484.52 290.75217)
+ (pt 484.36393 290.78321)
+ (pt 484.23162 290.87162)
+ (pt 484.14321 291.00393)
+ (pt 484.11217 291.16)
+ (pt 484.11217 293.16)
+ (pt 484.14321 293.31607)
+ (pt 484.23162 293.44838)
+ (pt 484.36393 293.53679)
+ (pt 484.47585 293.55905)
+ (pt 484.47585 293.62757)
+ (pt 484.44821 293.66893)
+ (pt 484.41717 293.825)
+ (pt 484.41717 295.825)
+ (pt 484.44821 295.98107)
+ (pt 484.53662 296.11338)
+ (pt 484.66893 296.20179)
+ (pt 484.825 296.23283)
+ (pt 486.075 296.23283)
+ (pt 486.23107 296.20179)
+ (pt 486.36338 296.11338)
+ (pt 486.45179 295.98107)
+ (pt 486.48283 295.825)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 618.5896 412.01501)
+ (pt 618.82495 411.9682)
+ (pt 619.02448 411.83488)
+ (pt 619.1578 411.63535)
+ (pt 619.20461 411.4)
+ (pt 619.18292 411.29096)
+ (pt 619.75461 411.29096)
+ (pt 619.84639 411.35228)
+ (pt 620.1 411.40273)
+ (pt 620.35361 411.35228)
+ (pt 620.56862 411.20862)
+ (pt 620.71228 410.99361)
+ (pt 620.76273 410.74)
+ (pt 620.71228 410.48639)
+ (pt 620.56862 410.27138)
+ (pt 620.35361 410.12772)
+ (pt 620.3186 410.12076)
+ (pt 620.32273 410.1)
+ (pt 620.31477 410.06001)
+ (pt 620.35361 410.05228)
+ (pt 620.56862 409.90862)
+ (pt 620.71228 409.69361)
+ (pt 620.76273 409.44)
+ (pt 620.71228 409.18639)
+ (pt 620.56862 408.97138)
+ (pt 620.35361 408.82772)
+ (pt 620.29936 408.81693)
+ (pt 620.30273 408.8)
+ (pt 620.25228 408.54639)
+ (pt 620.10862 408.33138)
+ (pt 619.89361 408.18772)
+ (pt 619.64 408.13727)
+ (pt 619.38639 408.18772)
+ (pt 619.28144 408.25784)
+ (pt 619.18292 408.25784)
+ (pt 619.20461 408.1488)
+ (pt 619.1578 407.91345)
+ (pt 619.09782 407.82368)
+ (pt 619.1578 407.73391)
+ (pt 619.20461 407.49856)
+ (pt 619.1578 407.26321)
+ (pt 619.09782 407.17344)
+ (pt 619.1578 407.08367)
+ (pt 619.20461 406.84832)
+ (pt 619.1578 406.61297)
+ (pt 619.09782 406.5232)
+ (pt 619.1578 406.43343)
+ (pt 619.16315 406.40654)
+ (pt 619.42 406.45763)
+ (pt 619.77116 406.38778)
+ (pt 620.06886 406.18886)
+ (pt 620.26778 405.89116)
+ (pt 620.33763 405.54)
+ (pt 620.26778 405.18884)
+ (pt 620.06886 404.89114)
+ (pt 619.77116 404.69222)
+ (pt 619.42 404.62237)
+ (pt 619.06884 404.69222)
+ (pt 618.77114 404.89114)
+ (pt 618.72525 404.95981)
+ (pt 618.5896 404.93283)
+ (pt 617.3704 404.93283)
+ (pt 617.13505 404.97964)
+ (pt 616.93552 405.11296)
+ (pt 616.8022 405.31249)
+ (pt 616.75539 405.54784)
+ (pt 616.77708 405.65688)
+ (pt 616.69712 405.65688)
+ (pt 616.59361 405.58772)
+ (pt 616.34 405.53727)
+ (pt 616.08639 405.58772)
+ (pt 615.87138 405.73138)
+ (pt 615.72772 405.94639)
+ (pt 615.67944 406.18909)
+ (pt 615.62 406.17727)
+ (pt 615.36639 406.22772)
+ (pt 615.15138 406.37138)
+ (pt 615.00772 406.58639)
+ (pt 614.95727 406.84)
+ (pt 615.00772 407.09361)
+ (pt 615.15138 407.30862)
+ (pt 615.36639 407.45228)
+ (pt 615.62 407.50273)
+ (pt 615.87361 407.45228)
+ (pt 615.96754 407.38952)
+ (pt 616.77708 407.38952)
+ (pt 616.75539 407.49856)
+ (pt 616.8022 407.73391)
+ (pt 616.86218 407.82368)
+ (pt 616.8022 407.91345)
+ (pt 616.75539 408.1488)
+ (pt 616.8022 408.38415)
+ (pt 616.86218 408.47392)
+ (pt 616.8022 408.56369)
+ (pt 616.75539 408.79904)
+ (pt 616.8022 409.03439)
+ (pt 616.86218 409.12416)
+ (pt 616.8022 409.21393)
+ (pt 616.75539 409.44928)
+ (pt 616.8022 409.68463)
+ (pt 616.86218 409.7744)
+ (pt 616.8022 409.86417)
+ (pt 616.75539 410.09952)
+ (pt 616.8022 410.33487)
+ (pt 616.86218 410.42464)
+ (pt 616.8022 410.51441)
+ (pt 616.75539 410.74976)
+ (pt 616.75555 410.75056)
+ (pt 616.6 410.75056)
+ (pt 616.14078 410.94078)
+ (pt 615.90939 411.17217)
+ (pt 615.62 411.17217)
+ (pt 615.46393 411.20321)
+ (pt 615.33162 411.29162)
+ (pt 615.27256 411.38)
+ (pt 615.16744 411.38)
+ (pt 615.10838 411.29162)
+ (pt 614.97607 411.20321)
+ (pt 614.82 411.17217)
+ (pt 614.02 411.17217)
+ (pt 613.86393 411.20321)
+ (pt 613.73162 411.29162)
+ (pt 613.7056 411.33056)
+ (pt 613.00193 411.33056)
+ (pt 612.94886 411.25114)
+ (pt 612.65116 411.05222)
+ (pt 612.3 410.98237)
+ (pt 611.94884 411.05222)
+ (pt 611.65114 411.25114)
+ (pt 611.45222 411.54884)
+ (pt 611.38237 411.9)
+ (pt 611.45222 412.25116)
+ (pt 611.65114 412.54886)
+ (pt 611.94884 412.74778)
+ (pt 612.3 412.81763)
+ (pt 612.65116 412.74778)
+ (pt 612.82827 412.62944)
+ (pt 613.7056 412.62944)
+ (pt 613.73162 412.66838)
+ (pt 613.86393 412.75679)
+ (pt 614.02 412.78783)
+ (pt 614.82 412.78783)
+ (pt 614.97607 412.75679)
+ (pt 615.10838 412.66838)
+ (pt 615.16744 412.58)
+ (pt 615.27256 412.58)
+ (pt 615.33162 412.66838)
+ (pt 615.46393 412.75679)
+ (pt 615.62 412.78783)
+ (pt 616.42 412.78783)
+ (pt 616.57607 412.75679)
+ (pt 616.70838 412.66838)
+ (pt 616.79679 412.53607)
+ (pt 616.82783 412.38)
+ (pt 616.82783 412.09061)
+ (pt 616.869 412.04944)
+ (pt 617.98 412.04944)
+ (pt 618.06312 412.01501)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 485.25358 415.86786)
+ (pt 485.07676 415.60324)
+ (pt 484.81214 415.42642)
+ (pt 484.5 415.36433)
+ (pt 484.18786 415.42642)
+ (pt 483.92324 415.60324)
+ (pt 483.74642 415.86786)
+ (pt 483.68433 416.18)
+ (pt 483.74642 416.49214)
+ (pt 483.92324 416.75676)
+ (pt 484.18786 416.93358)
+ (pt 484.5 416.99567)
+ (pt 484.81214 416.93358)
+ (pt 485.07676 416.75676)
+ (pt 485.25358 416.49214)
+ (pt 485.31567 416.18)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.2578 419.78511)
+ (pt 619.30461 419.54976)
+ (pt 619.2578 419.31441)
+ (pt 619.19782 419.22464)
+ (pt 619.2578 419.13487)
+ (pt 619.30461 418.89952)
+ (pt 619.2578 418.66417)
+ (pt 619.19782 418.5744)
+ (pt 619.2578 418.48463)
+ (pt 619.30461 418.24928)
+ (pt 619.2578 418.01393)
+ (pt 619.19782 417.92416)
+ (pt 619.2578 417.83439)
+ (pt 619.30461 417.59904)
+ (pt 619.2578 417.36369)
+ (pt 619.19782 417.27392)
+ (pt 619.2578 417.18415)
+ (pt 619.30461 416.9488)
+ (pt 619.2578 416.71345)
+ (pt 619.19782 416.62368)
+ (pt 619.2578 416.53391)
+ (pt 619.30461 416.29856)
+ (pt 619.30138 416.28234)
+ (pt 619.46786 416.39358)
+ (pt 619.78 416.45567)
+ (pt 620.09214 416.39358)
+ (pt 620.35676 416.21676)
+ (pt 620.53358 415.95214)
+ (pt 620.59567 415.64)
+ (pt 620.53358 415.32786)
+ (pt 620.35676 415.06324)
+ (pt 620.09214 414.88642)
+ (pt 619.78 414.82433)
+ (pt 619.46786 414.88642)
+ (pt 619.30416 414.99581)
+ (pt 619.2578 414.76273)
+ (pt 619.19782 414.67296)
+ (pt 619.2578 414.58319)
+ (pt 619.30461 414.34784)
+ (pt 619.2578 414.11249)
+ (pt 619.12448 413.91296)
+ (pt 618.92495 413.77964)
+ (pt 618.6896 413.73283)
+ (pt 617.4704 413.73283)
+ (pt 617.35248 413.75628)
+ (pt 617.26886 413.63114)
+ (pt 616.97116 413.43222)
+ (pt 616.62 413.36237)
+ (pt 616.26884 413.43222)
+ (pt 615.97114 413.63114)
+ (pt 615.77222 413.92884)
+ (pt 615.70237 414.28)
+ (pt 615.73755 414.45688)
+ (pt 615.49924 414.45688)
+ (pt 615.47676 414.42324)
+ (pt 615.21214 414.24642)
+ (pt 614.9 414.18433)
+ (pt 614.58786 414.24642)
+ (pt 614.32324 414.42324)
+ (pt 614.14642 414.68786)
+ (pt 614.08433 415.0)
+ (pt 614.14642 415.31214)
+ (pt 614.32324 415.57676)
+ (pt 614.58786 415.75358)
+ (pt 614.9 415.81567)
+ (pt 615.21214 415.75358)
+ (pt 615.47676 415.57676)
+ (pt 615.5018 415.53928)
+ (pt 615.92375 415.53928)
+ (pt 615.88786 415.54642)
+ (pt 615.62324 415.72324)
+ (pt 615.44642 415.98786)
+ (pt 615.39109 416.266)
+ (pt 615.21214 416.14642)
+ (pt 614.9 416.08433)
+ (pt 614.58786 416.14642)
+ (pt 614.32324 416.32324)
+ (pt 614.14642 416.58786)
+ (pt 614.08433 416.9)
+ (pt 614.14642 417.21214)
+ (pt 614.32324 417.47676)
+ (pt 614.50767 417.6)
+ (pt 614.32324 417.72324)
+ (pt 614.14642 417.98786)
+ (pt 614.08433 418.3)
+ (pt 614.14642 418.61214)
+ (pt 614.32324 418.87676)
+ (pt 614.35802 418.9)
+ (pt 614.32324 418.92324)
+ (pt 614.14642 419.18786)
+ (pt 614.08433 419.5)
+ (pt 614.14642 419.81214)
+ (pt 614.32324 420.07676)
+ (pt 614.58786 420.25358)
+ (pt 614.9 420.31567)
+ (pt 615.21214 420.25358)
+ (pt 615.45551 420.09096)
+ (pt 616.44366 420.09096)
+ (pt 615.62245 420.91217)
+ (pt 615.18 420.91217)
+ (pt 615.02393 420.94321)
+ (pt 614.89162 421.03162)
+ (pt 614.83256 421.12)
+ (pt 614.72744 421.12)
+ (pt 614.66838 421.03162)
+ (pt 614.53607 420.94321)
+ (pt 614.38 420.91217)
+ (pt 613.58 420.91217)
+ (pt 613.42393 420.94321)
+ (pt 613.37067 420.9788)
+ (pt 613.21116 420.87222)
+ (pt 612.86 420.80237)
+ (pt 612.50884 420.87222)
+ (pt 612.21114 421.07114)
+ (pt 612.01222 421.36884)
+ (pt 611.94237 421.72)
+ (pt 612.01222 422.07116)
+ (pt 612.21114 422.36886)
+ (pt 612.50884 422.56778)
+ (pt 612.86 422.63763)
+ (pt 613.21116 422.56778)
+ (pt 613.37067 422.4612)
+ (pt 613.42393 422.49679)
+ (pt 613.58 422.52783)
+ (pt 614.38 422.52783)
+ (pt 614.53607 422.49679)
+ (pt 614.66838 422.40838)
+ (pt 614.72744 422.32)
+ (pt 614.83256 422.32)
+ (pt 614.89162 422.40838)
+ (pt 615.02393 422.49679)
+ (pt 615.18 422.52783)
+ (pt 615.98 422.52783)
+ (pt 616.13607 422.49679)
+ (pt 616.26838 422.40838)
+ (pt 616.35679 422.27607)
+ (pt 616.38783 422.12)
+ (pt 616.38783 421.67755)
+ (pt 617.28687 420.77851)
+ (pt 617.4704 420.81501)
+ (pt 618.6896 420.81501)
+ (pt 618.92495 420.7682)
+ (pt 619.12448 420.63488)
+ (pt 619.2578 420.43535)
+ (pt 619.30461 420.2)
+ (pt 619.2578 419.96465)
+ (pt 619.19782 419.87488)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.86838 350.55162)
+ (pt 617.73607 350.46321)
+ (pt 617.58 350.43217)
+ (pt 616.78 350.43217)
+ (pt 616.62393 350.46321)
+ (pt 616.49162 350.55162)
+ (pt 616.43256 350.64)
+ (pt 616.32744 350.64)
+ (pt 616.26838 350.55162)
+ (pt 616.13607 350.46321)
+ (pt 615.98 350.43217)
+ (pt 615.18 350.43217)
+ (pt 615.02393 350.46321)
+ (pt 614.89162 350.55162)
+ (pt 614.80321 350.68393)
+ (pt 614.79627 350.7188)
+ (pt 611.16783 350.7188)
+ (pt 611.16783 350.61)
+ (pt 611.13679 350.45393)
+ (pt 611.04838 350.32162)
+ (pt 610.91607 350.23321)
+ (pt 610.76 350.20217)
+ (pt 609.56 350.20217)
+ (pt 609.40393 350.23321)
+ (pt 609.36384 350.26)
+ (pt 608.95616 350.26)
+ (pt 608.91607 350.23321)
+ (pt 608.76 350.20217)
+ (pt 607.56 350.20217)
+ (pt 607.40393 350.23321)
+ (pt 607.27162 350.32162)
+ (pt 607.18321 350.45393)
+ (pt 607.15217 350.61)
+ (pt 607.15217 350.7788)
+ (pt 606.61999 350.7788)
+ (pt 606.51361 350.70772)
+ (pt 606.26 350.65727)
+ (pt 606.00639 350.70772)
+ (pt 605.79138 350.85138)
+ (pt 605.64772 351.06639)
+ (pt 605.59727 351.32)
+ (pt 605.64772 351.57361)
+ (pt 605.79138 351.78862)
+ (pt 606.00639 351.93228)
+ (pt 606.26 351.98273)
+ (pt 606.51361 351.93228)
+ (pt 606.61999 351.8612)
+ (pt 607.15217 351.8612)
+ (pt 607.15217 351.91)
+ (pt 607.18321 352.06607)
+ (pt 607.27162 352.19838)
+ (pt 607.40393 352.28679)
+ (pt 607.56 352.31783)
+ (pt 608.76 352.31783)
+ (pt 608.91607 352.28679)
+ (pt 608.95616 352.26)
+ (pt 609.36384 352.26)
+ (pt 609.40393 352.28679)
+ (pt 609.56 352.31783)
+ (pt 610.76 352.31783)
+ (pt 610.91607 352.28679)
+ (pt 611.04838 352.19838)
+ (pt 611.13679 352.06607)
+ (pt 611.16783 351.91)
+ (pt 611.16783 351.8012)
+ (pt 614.80664 351.8012)
+ (pt 614.89162 351.92838)
+ (pt 615.02393 352.01679)
+ (pt 615.18 352.04783)
+ (pt 615.98 352.04783)
+ (pt 616.13607 352.01679)
+ (pt 616.26838 351.92838)
+ (pt 616.32744 351.84)
+ (pt 616.43256 351.84)
+ (pt 616.49162 351.92838)
+ (pt 616.62393 352.01679)
+ (pt 616.78 352.04783)
+ (pt 617.58 352.04783)
+ (pt 617.73607 352.01679)
+ (pt 617.86838 351.92838)
+ (pt 617.86897 351.9275)
+ (pt 618.10884 352.08778)
+ (pt 618.46 352.15763)
+ (pt 618.81116 352.08778)
+ (pt 619.10886 351.88886)
+ (pt 619.30778 351.59116)
+ (pt 619.37763 351.24)
+ (pt 619.30778 350.88884)
+ (pt 619.10886 350.59114)
+ (pt 618.81116 350.39222)
+ (pt 618.46 350.32237)
+ (pt 618.10884 350.39222)
+ (pt 617.86897 350.5525)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.00052 311.7588)
+ (pt 613.97676 311.72324)
+ (pt 613.71214 311.54642)
+ (pt 613.4 311.48433)
+ (pt 613.08786 311.54642)
+ (pt 612.82324 311.72324)
+ (pt 612.64642 311.98786)
+ (pt 612.58433 312.3)
+ (pt 612.64642 312.61214)
+ (pt 612.82324 312.87676)
+ (pt 613.08786 313.05358)
+ (pt 613.4 313.11567)
+ (pt 613.71214 313.05358)
+ (pt 613.97676 312.87676)
+ (pt 613.97697 312.87644)
+ (pt 613.96433 312.94)
+ (pt 614.02642 313.25214)
+ (pt 614.20324 313.51676)
+ (pt 614.39285 313.64346)
+ (pt 614.36324 313.66324)
+ (pt 614.18642 313.92786)
+ (pt 614.12433 314.24)
+ (pt 614.18642 314.55214)
+ (pt 614.36324 314.81676)
+ (pt 614.41788 314.85327)
+ (pt 614.28324 314.94324)
+ (pt 614.10642 315.20786)
+ (pt 614.04433 315.52)
+ (pt 614.10642 315.83214)
+ (pt 614.28324 316.09676)
+ (pt 614.44285 316.20341)
+ (pt 614.38324 316.24324)
+ (pt 614.20642 316.50786)
+ (pt 614.14433 316.82)
+ (pt 614.20642 317.13214)
+ (pt 614.38324 317.39676)
+ (pt 614.64786 317.57358)
+ (pt 614.96 317.63567)
+ (pt 615.27214 317.57358)
+ (pt 615.53676 317.39676)
+ (pt 615.554 317.37096)
+ (pt 616.18366 317.37096)
+ (pt 615.78858 317.76604)
+ (pt 615.78 317.76433)
+ (pt 615.46786 317.82642)
+ (pt 615.20324 318.00324)
+ (pt 615.02642 318.26786)
+ (pt 614.96433 318.58)
+ (pt 615.02642 318.89214)
+ (pt 615.20324 319.15676)
+ (pt 615.46786 319.33358)
+ (pt 615.78 319.39567)
+ (pt 616.09214 319.33358)
+ (pt 616.35676 319.15676)
+ (pt 616.53358 318.89214)
+ (pt 616.59567 318.58)
+ (pt 616.58069 318.50469)
+ (pt 617.06418 318.0212)
+ (pt 617.07464 318.0212)
+ (pt 617.11505 318.0482)
+ (pt 617.3504 318.09501)
+ (pt 618.5696 318.09501)
+ (pt 618.80495 318.0482)
+ (pt 619.00448 317.91488)
+ (pt 619.1378 317.71535)
+ (pt 619.18461 317.48)
+ (pt 619.1378 317.24465)
+ (pt 619.07782 317.15488)
+ (pt 619.1378 317.06511)
+ (pt 619.18461 316.82976)
+ (pt 619.1378 316.59441)
+ (pt 619.07782 316.50464)
+ (pt 619.1378 316.41487)
+ (pt 619.18461 316.17952)
+ (pt 619.1378 315.94417)
+ (pt 619.07782 315.8544)
+ (pt 619.1378 315.76463)
+ (pt 619.18461 315.52928)
+ (pt 619.1378 315.29393)
+ (pt 619.07782 315.20416)
+ (pt 619.1378 315.11439)
+ (pt 619.18461 314.87904)
+ (pt 619.1378 314.64369)
+ (pt 619.07782 314.55392)
+ (pt 619.1378 314.46415)
+ (pt 619.18461 314.2288)
+ (pt 619.1378 313.99345)
+ (pt 619.07782 313.90368)
+ (pt 619.1378 313.81391)
+ (pt 619.18461 313.57856)
+ (pt 619.1378 313.34321)
+ (pt 619.07782 313.25344)
+ (pt 619.1378 313.16367)
+ (pt 619.18461 312.92832)
+ (pt 619.1378 312.69297)
+ (pt 619.07782 312.6032)
+ (pt 619.1378 312.51343)
+ (pt 619.18461 312.27808)
+ (pt 619.1378 312.04273)
+ (pt 619.07782 311.95296)
+ (pt 619.1378 311.86319)
+ (pt 619.18461 311.62784)
+ (pt 619.1378 311.39249)
+ (pt 619.00448 311.19296)
+ (pt 618.80495 311.05964)
+ (pt 618.5696 311.01283)
+ (pt 617.3504 311.01283)
+ (pt 617.19123 311.04449)
+ (pt 617.12886 310.95114)
+ (pt 616.83116 310.75222)
+ (pt 616.48 310.68237)
+ (pt 616.12884 310.75222)
+ (pt 615.83114 310.95114)
+ (pt 615.63222 311.24884)
+ (pt 615.56237 311.6)
+ (pt 615.59396 311.7588)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.38891 330.87089)
+ (pt 648.19337 330.33337)
+ (pt 648.73089 329.52891)
+ (pt 648.91964 328.58)
+ (pt 648.73089 327.63109)
+ (pt 648.19337 326.82663)
+ (pt 647.38891 326.28911)
+ (pt 646.44 326.10036)
+ (pt 645.49109 326.28911)
+ (pt 644.68663 326.82663)
+ (pt 644.14911 327.63109)
+ (pt 643.96036 328.58)
+ (pt 644.14911 329.52891)
+ (pt 644.68663 330.33337)
+ (pt 645.49109 330.87089)
+ (pt 646.44 331.05964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.27935 284.92712)
+ (pt 614.27676 284.92324)
+ (pt 614.01214 284.74642)
+ (pt 613.7 284.68433)
+ (pt 613.38786 284.74642)
+ (pt 613.12324 284.92324)
+ (pt 612.94642 285.18786)
+ (pt 612.88433 285.5)
+ (pt 612.94642 285.81214)
+ (pt 613.12324 286.07676)
+ (pt 613.22781 286.14664)
+ (pt 613.08324 286.24324)
+ (pt 612.90642 286.50786)
+ (pt 612.84433 286.82)
+ (pt 612.90642 287.13214)
+ (pt 613.08324 287.39676)
+ (pt 613.16292 287.45)
+ (pt 613.08324 287.50324)
+ (pt 612.90642 287.76786)
+ (pt 612.84433 288.08)
+ (pt 612.90642 288.39214)
+ (pt 613.08324 288.65676)
+ (pt 613.34786 288.83358)
+ (pt 613.36299 288.83659)
+ (pt 613.26324 288.90324)
+ (pt 613.08642 289.16786)
+ (pt 613.02433 289.48)
+ (pt 613.08642 289.79214)
+ (pt 613.26324 290.05676)
+ (pt 613.52786 290.23358)
+ (pt 613.72186 290.27217)
+ (pt 613.02 290.27217)
+ (pt 612.86393 290.30321)
+ (pt 612.77067 290.36553)
+ (pt 612.57116 290.23222)
+ (pt 612.22 290.16237)
+ (pt 611.86884 290.23222)
+ (pt 611.57114 290.43114)
+ (pt 611.37222 290.72884)
+ (pt 611.30237 291.08)
+ (pt 611.37222 291.43116)
+ (pt 611.57114 291.72886)
+ (pt 611.86884 291.92778)
+ (pt 612.22 291.99763)
+ (pt 612.57116 291.92778)
+ (pt 612.77067 291.79447)
+ (pt 612.86393 291.85679)
+ (pt 613.02 291.88783)
+ (pt 613.82 291.88783)
+ (pt 613.97607 291.85679)
+ (pt 614.10838 291.76838)
+ (pt 614.16744 291.68)
+ (pt 614.27256 291.68)
+ (pt 614.33162 291.76838)
+ (pt 614.46393 291.85679)
+ (pt 614.62 291.88783)
+ (pt 615.42 291.88783)
+ (pt 615.57607 291.85679)
+ (pt 615.70838 291.76838)
+ (pt 615.79679 291.63607)
+ (pt 615.82783 291.48)
+ (pt 615.82783 291.03755)
+ (pt 616.30418 290.5612)
+ (pt 617.11464 290.5612)
+ (pt 617.15505 290.5882)
+ (pt 617.3904 290.63501)
+ (pt 618.6096 290.63501)
+ (pt 618.84495 290.5882)
+ (pt 619.04448 290.45488)
+ (pt 619.1778 290.25535)
+ (pt 619.22461 290.02)
+ (pt 619.1778 289.78465)
+ (pt 619.11782 289.69488)
+ (pt 619.1778 289.60511)
+ (pt 619.22461 289.36976)
+ (pt 619.1778 289.13441)
+ (pt 619.11782 289.04464)
+ (pt 619.1778 288.95487)
+ (pt 619.22461 288.71952)
+ (pt 619.1778 288.48417)
+ (pt 619.11782 288.3944)
+ (pt 619.1778 288.30463)
+ (pt 619.22461 288.06928)
+ (pt 619.1778 287.83393)
+ (pt 619.11782 287.74416)
+ (pt 619.1778 287.65439)
+ (pt 619.22461 287.41904)
+ (pt 619.1778 287.18369)
+ (pt 619.11782 287.09392)
+ (pt 619.1778 287.00415)
+ (pt 619.22461 286.7688)
+ (pt 619.1778 286.53345)
+ (pt 619.11782 286.44368)
+ (pt 619.1778 286.35391)
+ (pt 619.22461 286.11856)
+ (pt 619.1778 285.88321)
+ (pt 619.11782 285.79344)
+ (pt 619.1778 285.70367)
+ (pt 619.22461 285.46832)
+ (pt 619.20292 285.35928)
+ (pt 619.9382 285.35928)
+ (pt 619.96324 285.39676)
+ (pt 620.22786 285.57358)
+ (pt 620.54 285.63567)
+ (pt 620.85214 285.57358)
+ (pt 621.11676 285.39676)
+ (pt 621.29358 285.13214)
+ (pt 621.35567 284.82)
+ (pt 621.29358 284.50786)
+ (pt 621.11676 284.24324)
+ (pt 620.85214 284.06642)
+ (pt 620.54 284.00433)
+ (pt 620.22786 284.06642)
+ (pt 619.96324 284.24324)
+ (pt 619.94076 284.27688)
+ (pt 619.20292 284.27688)
+ (pt 619.22461 284.16784)
+ (pt 619.1778 283.93249)
+ (pt 619.04448 283.73296)
+ (pt 618.84495 283.59964)
+ (pt 618.6096 283.55283)
+ (pt 617.3904 283.55283)
+ (pt 617.21944 283.58683)
+ (pt 617.16886 283.51114)
+ (pt 616.87116 283.31222)
+ (pt 616.52 283.24237)
+ (pt 616.16884 283.31222)
+ (pt 615.87114 283.51114)
+ (pt 615.67222 283.80884)
+ (pt 615.60237 284.16)
+ (pt 615.67222 284.51116)
+ (pt 615.87114 284.80886)
+ (pt 616.04813 284.92712)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 479.58393 412.25679)
+ (pt 479.74 412.28783)
+ (pt 480.54 412.28783)
+ (pt 480.69607 412.25679)
+ (pt 480.82838 412.16838)
+ (pt 480.88744 412.08)
+ (pt 480.99256 412.08)
+ (pt 481.05162 412.16838)
+ (pt 481.18393 412.25679)
+ (pt 481.34 412.28783)
+ (pt 482.14 412.28783)
+ (pt 482.29607 412.25679)
+ (pt 482.42838 412.16838)
+ (pt 482.4772 412.09532)
+ (pt 483.5514 412.09532)
+ (pt 483.6504 412.11501)
+ (pt 484.8696 412.11501)
+ (pt 485.10495 412.0682)
+ (pt 485.30448 411.93488)
+ (pt 485.4378 411.73535)
+ (pt 485.48461 411.5)
+ (pt 485.4378 411.26465)
+ (pt 485.37782 411.17488)
+ (pt 485.4378 411.08511)
+ (pt 485.48461 410.84976)
+ (pt 485.4378 410.61441)
+ (pt 485.37782 410.52464)
+ (pt 485.4378 410.43487)
+ (pt 485.48461 410.19952)
+ (pt 485.4378 409.96417)
+ (pt 485.37782 409.8744)
+ (pt 485.4378 409.78463)
+ (pt 485.48461 409.54928)
+ (pt 485.47369 409.49436)
+ (pt 487.03246 409.49436)
+ (pt 488.15857 410.62047)
+ (pt 488.57952 410.79484)
+ (pt 489.22876 410.79484)
+ (pt 489.08642 411.00786)
+ (pt 489.02433 411.32)
+ (pt 489.08642 411.63214)
+ (pt 489.26324 411.89676)
+ (pt 489.52786 412.07358)
+ (pt 489.84 412.13567)
+ (pt 490.04285 412.09532)
+ (pt 490.70404 412.09532)
+ (pt 490.80304 412.11501)
+ (pt 492.02224 412.11501)
+ (pt 492.25759 412.0682)
+ (pt 492.45712 411.93488)
+ (pt 492.59044 411.73535)
+ (pt 492.59279 411.72351)
+ (pt 492.60786 411.73358)
+ (pt 492.92 411.79567)
+ (pt 493.23214 411.73358)
+ (pt 493.49676 411.55676)
+ (pt 493.67358 411.29214)
+ (pt 493.73567 410.98)
+ (pt 493.67358 410.66786)
+ (pt 493.49676 410.40324)
+ (pt 493.23214 410.22642)
+ (pt 492.92 410.16433)
+ (pt 492.63289 410.22144)
+ (pt 492.63725 410.19952)
+ (pt 492.59044 409.96417)
+ (pt 492.53046 409.8744)
+ (pt 492.59044 409.78463)
+ (pt 492.63725 409.54928)
+ (pt 492.59044 409.31393)
+ (pt 492.53046 409.22416)
+ (pt 492.59044 409.13439)
+ (pt 492.63725 408.89904)
+ (pt 492.59044 408.66369)
+ (pt 492.53046 408.57392)
+ (pt 492.59044 408.48415)
+ (pt 492.63725 408.2488)
+ (pt 492.61556 408.13976)
+ (pt 493.97785 408.13976)
+ (pt 494.08639 408.21228)
+ (pt 494.34 408.26273)
+ (pt 494.59361 408.21228)
+ (pt 494.80862 408.06862)
+ (pt 494.95228 407.85361)
+ (pt 495.00273 407.6)
+ (pt 494.95228 407.34639)
+ (pt 494.80862 407.13138)
+ (pt 494.59361 406.98772)
+ (pt 494.37978 406.94518)
+ (pt 494.33228 406.70639)
+ (pt 494.18862 406.49138)
+ (pt 493.97361 406.34772)
+ (pt 493.79628 406.31244)
+ (pt 493.80273 406.28)
+ (pt 493.75228 406.02639)
+ (pt 493.60862 405.81138)
+ (pt 493.39361 405.66772)
+ (pt 493.30089 405.64927)
+ (pt 493.30273 405.64)
+ (pt 493.25228 405.38639)
+ (pt 493.10862 405.17138)
+ (pt 492.89361 405.02772)
+ (pt 492.64 404.97727)
+ (pt 492.38639 405.02772)
+ (pt 492.28314 405.09671)
+ (pt 492.25759 405.07964)
+ (pt 492.02224 405.03283)
+ (pt 490.80304 405.03283)
+ (pt 490.56769 405.07964)
+ (pt 490.36816 405.21296)
+ (pt 490.23484 405.41249)
+ (pt 490.18803 405.64784)
+ (pt 490.23484 405.88319)
+ (pt 490.29482 405.97296)
+ (pt 490.23484 406.06273)
+ (pt 490.18803 406.29808)
+ (pt 490.23484 406.53343)
+ (pt 490.29482 406.6232)
+ (pt 490.23484 406.71297)
+ (pt 490.18803 406.94832)
+ (pt 490.23484 407.18367)
+ (pt 490.29482 407.27344)
+ (pt 490.23484 407.36321)
+ (pt 490.18803 407.59856)
+ (pt 490.23484 407.83391)
+ (pt 490.29482 407.92368)
+ (pt 490.23484 408.01345)
+ (pt 490.18803 408.2488)
+ (pt 490.23484 408.48415)
+ (pt 490.29482 408.57392)
+ (pt 490.23484 408.66369)
+ (pt 490.18803 408.89904)
+ (pt 490.23484 409.13439)
+ (pt 490.29482 409.22416)
+ (pt 490.23484 409.31393)
+ (pt 490.18803 409.54928)
+ (pt 490.19895 409.6042)
+ (pt 488.8261 409.6042)
+ (pt 487.69999 408.47809)
+ (pt 487.27904 408.30372)
+ (pt 485.47369 408.30372)
+ (pt 485.48461 408.2488)
+ (pt 485.4378 408.01345)
+ (pt 485.37782 407.92368)
+ (pt 485.4378 407.83391)
+ (pt 485.48461 407.59856)
+ (pt 485.4378 407.36321)
+ (pt 485.37782 407.27344)
+ (pt 485.4378 407.18367)
+ (pt 485.48461 406.94832)
+ (pt 485.4378 406.71297)
+ (pt 485.37782 406.6232)
+ (pt 485.4378 406.53343)
+ (pt 485.48461 406.29808)
+ (pt 485.4378 406.06273)
+ (pt 485.37782 405.97296)
+ (pt 485.4378 405.88319)
+ (pt 485.48461 405.64784)
+ (pt 485.4378 405.41249)
+ (pt 485.30448 405.21296)
+ (pt 485.10495 405.07964)
+ (pt 484.8696 405.03283)
+ (pt 483.6504 405.03283)
+ (pt 483.41505 405.07964)
+ (pt 483.35467 405.11998)
+ (pt 483.31676 405.06324)
+ (pt 483.05214 404.88642)
+ (pt 482.74 404.82433)
+ (pt 482.42786 404.88642)
+ (pt 482.16324 405.06324)
+ (pt 481.98642 405.32786)
+ (pt 481.92433 405.64)
+ (pt 481.98642 405.95214)
+ (pt 482.16324 406.21676)
+ (pt 482.42786 406.39358)
+ (pt 482.74 406.45567)
+ (pt 483.05214 406.39358)
+ (pt 483.05412 406.39226)
+ (pt 483.0822 406.53343)
+ (pt 483.14218 406.6232)
+ (pt 483.0822 406.71297)
+ (pt 483.03539 406.94832)
+ (pt 483.0822 407.18367)
+ (pt 483.14218 407.27344)
+ (pt 483.0822 407.36321)
+ (pt 483.03539 407.59856)
+ (pt 483.0822 407.83391)
+ (pt 483.14218 407.92368)
+ (pt 483.0822 408.01345)
+ (pt 483.03539 408.2488)
+ (pt 483.0822 408.48415)
+ (pt 483.14218 408.57392)
+ (pt 483.0822 408.66369)
+ (pt 483.03539 408.89904)
+ (pt 483.0822 409.13439)
+ (pt 483.14218 409.22416)
+ (pt 483.0822 409.31393)
+ (pt 483.03539 409.54928)
+ (pt 483.0822 409.78463)
+ (pt 483.14218 409.8744)
+ (pt 483.0822 409.96417)
+ (pt 483.03539 410.19952)
+ (pt 483.03551 410.20014)
+ (pt 482.82 410.15727)
+ (pt 482.56639 410.20772)
+ (pt 482.35138 410.35138)
+ (pt 482.20772 410.56639)
+ (pt 482.1849 410.6811)
+ (pt 482.14 410.67217)
+ (pt 481.34 410.67217)
+ (pt 481.18393 410.70321)
+ (pt 481.05162 410.79162)
+ (pt 480.99256 410.88)
+ (pt 480.88744 410.88)
+ (pt 480.82838 410.79162)
+ (pt 480.69607 410.70321)
+ (pt 480.54 410.67217)
+ (pt 479.74 410.67217)
+ (pt 479.58393 410.70321)
+ (pt 479.47432 410.77645)
+ (pt 479.26687 410.77645)
+ (pt 479.13214 410.68642)
+ (pt 478.82 410.62433)
+ (pt 478.50786 410.68642)
+ (pt 478.24324 410.86324)
+ (pt 478.06642 411.12786)
+ (pt 478.00433 411.44)
+ (pt 478.06642 411.75214)
+ (pt 478.24324 412.01676)
+ (pt 478.50786 412.19358)
+ (pt 478.82 412.25567)
+ (pt 479.13214 412.19358)
+ (pt 479.14715 412.18355)
+ (pt 479.47432 412.18355)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.2578 297.08463)
+ (pt 619.30461 296.84928)
+ (pt 619.2578 296.61393)
+ (pt 619.19782 296.52416)
+ (pt 619.2578 296.43439)
+ (pt 619.30461 296.19904)
+ (pt 619.2578 295.96369)
+ (pt 619.19782 295.87392)
+ (pt 619.2578 295.78415)
+ (pt 619.30461 295.5488)
+ (pt 619.2578 295.31345)
+ (pt 619.19782 295.22368)
+ (pt 619.2578 295.13391)
+ (pt 619.30461 294.89856)
+ (pt 619.2578 294.66321)
+ (pt 619.19782 294.57344)
+ (pt 619.2578 294.48367)
+ (pt 619.30461 294.24832)
+ (pt 619.28292 294.13928)
+ (pt 619.7982 294.13928)
+ (pt 619.82324 294.17676)
+ (pt 620.08786 294.35358)
+ (pt 620.4 294.41567)
+ (pt 620.71214 294.35358)
+ (pt 620.97676 294.17676)
+ (pt 621.15358 293.91214)
+ (pt 621.21567 293.6)
+ (pt 621.15358 293.28786)
+ (pt 620.97676 293.02324)
+ (pt 620.71214 292.84642)
+ (pt 620.4 292.78433)
+ (pt 620.08786 292.84642)
+ (pt 619.82324 293.02324)
+ (pt 619.80076 293.05688)
+ (pt 619.28292 293.05688)
+ (pt 619.30461 292.94784)
+ (pt 619.2578 292.71249)
+ (pt 619.12448 292.51296)
+ (pt 618.92495 292.37964)
+ (pt 618.6896 292.33283)
+ (pt 617.4704 292.33283)
+ (pt 617.23505 292.37964)
+ (pt 617.17945 292.41679)
+ (pt 617.10886 292.31114)
+ (pt 616.81116 292.11222)
+ (pt 616.46 292.04237)
+ (pt 616.10884 292.11222)
+ (pt 615.81114 292.31114)
+ (pt 615.61222 292.60884)
+ (pt 615.54237 292.96)
+ (pt 615.61222 293.31116)
+ (pt 615.7598 293.53203)
+ (pt 615.52 293.48433)
+ (pt 615.20786 293.54642)
+ (pt 614.94324 293.72324)
+ (pt 614.76642 293.98786)
+ (pt 614.70433 294.3)
+ (pt 614.76642 294.61214)
+ (pt 614.94324 294.87676)
+ (pt 615.05285 294.95)
+ (pt 614.94324 295.02324)
+ (pt 614.76642 295.28786)
+ (pt 614.70433 295.6)
+ (pt 614.76642 295.91214)
+ (pt 614.94324 296.17676)
+ (pt 615.07781 296.26668)
+ (pt 614.96324 296.34324)
+ (pt 614.78642 296.60786)
+ (pt 614.72433 296.92)
+ (pt 614.78642 297.23214)
+ (pt 614.96324 297.49676)
+ (pt 615.03795 297.54668)
+ (pt 614.98324 297.58324)
+ (pt 614.80642 297.84786)
+ (pt 614.74433 298.16)
+ (pt 614.80642 298.47214)
+ (pt 614.98324 298.73676)
+ (pt 615.03623 298.77217)
+ (pt 614.54 298.77217)
+ (pt 614.38393 298.80321)
+ (pt 614.25162 298.89162)
+ (pt 614.19256 298.98)
+ (pt 614.08744 298.98)
+ (pt 614.02838 298.89162)
+ (pt 613.89607 298.80321)
+ (pt 613.74 298.77217)
+ (pt 612.94 298.77217)
+ (pt 612.78393 298.80321)
+ (pt 612.65162 298.89162)
+ (pt 612.64797 298.89709)
+ (pt 612.43116 298.75222)
+ (pt 612.08 298.68237)
+ (pt 611.72884 298.75222)
+ (pt 611.43114 298.95114)
+ (pt 611.23222 299.24884)
+ (pt 611.16237 299.6)
+ (pt 611.23222 299.95116)
+ (pt 611.43114 300.24886)
+ (pt 611.72884 300.44778)
+ (pt 612.08 300.51763)
+ (pt 612.43116 300.44778)
+ (pt 612.67563 300.28443)
+ (pt 612.78393 300.35679)
+ (pt 612.94 300.38783)
+ (pt 613.74 300.38783)
+ (pt 613.89607 300.35679)
+ (pt 614.02838 300.26838)
+ (pt 614.08744 300.18)
+ (pt 614.19256 300.18)
+ (pt 614.25162 300.26838)
+ (pt 614.38393 300.35679)
+ (pt 614.54 300.38783)
+ (pt 615.34 300.38783)
+ (pt 615.49607 300.35679)
+ (pt 615.62838 300.26838)
+ (pt 615.71679 300.13607)
+ (pt 615.71975 300.1212)
+ (pt 616.14 300.1212)
+ (pt 616.52269 299.96269)
+ (pt 617.14418 299.3412)
+ (pt 617.19464 299.3412)
+ (pt 617.23505 299.3682)
+ (pt 617.4704 299.41501)
+ (pt 618.6896 299.41501)
+ (pt 618.92495 299.3682)
+ (pt 619.12448 299.23488)
+ (pt 619.2578 299.03535)
+ (pt 619.30461 298.8)
+ (pt 619.2578 298.56465)
+ (pt 619.19782 298.47488)
+ (pt 619.2578 298.38511)
+ (pt 619.30461 298.14976)
+ (pt 619.2578 297.91441)
+ (pt 619.19782 297.82464)
+ (pt 619.2578 297.73487)
+ (pt 619.30461 297.49952)
+ (pt 619.2578 297.26417)
+ (pt 619.19782 297.1744)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.82838 345.53162)
+ (pt 617.69607 345.44321)
+ (pt 617.54 345.41217)
+ (pt 616.74 345.41217)
+ (pt 616.58393 345.44321)
+ (pt 616.45162 345.53162)
+ (pt 616.39256 345.62)
+ (pt 616.28744 345.62)
+ (pt 616.22838 345.53162)
+ (pt 616.09607 345.44321)
+ (pt 615.94 345.41217)
+ (pt 615.14 345.41217)
+ (pt 614.98393 345.44321)
+ (pt 614.85162 345.53162)
+ (pt 614.76321 345.66393)
+ (pt 614.76025 345.6788)
+ (pt 611.20783 345.6788)
+ (pt 611.20783 345.57)
+ (pt 611.17679 345.41393)
+ (pt 611.08838 345.28162)
+ (pt 610.95607 345.19321)
+ (pt 610.8 345.16217)
+ (pt 609.6 345.16217)
+ (pt 609.44393 345.19321)
+ (pt 609.40384 345.22)
+ (pt 608.99616 345.22)
+ (pt 608.95607 345.19321)
+ (pt 608.8 345.16217)
+ (pt 607.6 345.16217)
+ (pt 607.44393 345.19321)
+ (pt 607.31162 345.28162)
+ (pt 607.22321 345.41393)
+ (pt 607.19217 345.57)
+ (pt 607.19217 345.6788)
+ (pt 606.46877 345.6788)
+ (pt 606.26 345.63727)
+ (pt 606.00639 345.68772)
+ (pt 605.79138 345.83138)
+ (pt 605.64772 346.04639)
+ (pt 605.59727 346.3)
+ (pt 605.64772 346.55361)
+ (pt 605.79138 346.76862)
+ (pt 606.00639 346.91228)
+ (pt 606.26 346.96273)
+ (pt 606.51361 346.91228)
+ (pt 606.72862 346.76862)
+ (pt 606.73358 346.7612)
+ (pt 607.19217 346.7612)
+ (pt 607.19217 346.87)
+ (pt 607.22321 347.02607)
+ (pt 607.31162 347.15838)
+ (pt 607.44393 347.24679)
+ (pt 607.6 347.27783)
+ (pt 608.8 347.27783)
+ (pt 608.95607 347.24679)
+ (pt 608.99616 347.22)
+ (pt 609.40384 347.22)
+ (pt 609.44393 347.24679)
+ (pt 609.6 347.27783)
+ (pt 610.8 347.27783)
+ (pt 610.95607 347.24679)
+ (pt 611.08838 347.15838)
+ (pt 611.17679 347.02607)
+ (pt 611.20783 346.87)
+ (pt 611.20783 346.7612)
+ (pt 614.76025 346.7612)
+ (pt 614.76321 346.77607)
+ (pt 614.85162 346.90838)
+ (pt 614.98393 346.99679)
+ (pt 615.14 347.02783)
+ (pt 615.94 347.02783)
+ (pt 616.09607 346.99679)
+ (pt 616.22838 346.90838)
+ (pt 616.28744 346.82)
+ (pt 616.39256 346.82)
+ (pt 616.45162 346.90838)
+ (pt 616.58393 346.99679)
+ (pt 616.74 347.02783)
+ (pt 617.54 347.02783)
+ (pt 617.69607 346.99679)
+ (pt 617.82838 346.90838)
+ (pt 617.87628 346.83669)
+ (pt 617.91114 346.88886)
+ (pt 618.20884 347.08778)
+ (pt 618.56 347.15763)
+ (pt 618.91116 347.08778)
+ (pt 619.20886 346.88886)
+ (pt 619.40778 346.59116)
+ (pt 619.47763 346.24)
+ (pt 619.40778 345.88884)
+ (pt 619.20886 345.59114)
+ (pt 618.91116 345.39222)
+ (pt 618.56 345.32237)
+ (pt 618.20884 345.39222)
+ (pt 617.91114 345.59114)
+ (pt 617.88965 345.62331)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.78838 348.01162)
+ (pt 617.65607 347.92321)
+ (pt 617.5 347.89217)
+ (pt 616.7 347.89217)
+ (pt 616.54393 347.92321)
+ (pt 616.41162 348.01162)
+ (pt 616.35256 348.1)
+ (pt 616.24744 348.1)
+ (pt 616.18838 348.01162)
+ (pt 616.05607 347.92321)
+ (pt 615.9 347.89217)
+ (pt 615.1 347.89217)
+ (pt 614.94393 347.92321)
+ (pt 614.81162 348.01162)
+ (pt 614.72321 348.14393)
+ (pt 614.7123 348.1988)
+ (pt 611.18783 348.1988)
+ (pt 611.18783 348.09)
+ (pt 611.15679 347.93393)
+ (pt 611.06838 347.80162)
+ (pt 610.93607 347.71321)
+ (pt 610.78 347.68217)
+ (pt 609.58 347.68217)
+ (pt 609.42393 347.71321)
+ (pt 609.38384 347.74)
+ (pt 608.97616 347.74)
+ (pt 608.93607 347.71321)
+ (pt 608.78 347.68217)
+ (pt 607.58 347.68217)
+ (pt 607.42393 347.71321)
+ (pt 607.29162 347.80162)
+ (pt 607.20321 347.93393)
+ (pt 607.17217 348.09)
+ (pt 607.17217 348.1988)
+ (pt 606.46877 348.1988)
+ (pt 606.26 348.15727)
+ (pt 606.00639 348.20772)
+ (pt 605.79138 348.35138)
+ (pt 605.64772 348.56639)
+ (pt 605.59727 348.82)
+ (pt 605.64772 349.07361)
+ (pt 605.79138 349.28862)
+ (pt 606.00639 349.43228)
+ (pt 606.26 349.48273)
+ (pt 606.51361 349.43228)
+ (pt 606.72862 349.28862)
+ (pt 606.73358 349.2812)
+ (pt 607.17217 349.2812)
+ (pt 607.17217 349.39)
+ (pt 607.20321 349.54607)
+ (pt 607.29162 349.67838)
+ (pt 607.42393 349.76679)
+ (pt 607.58 349.79783)
+ (pt 608.78 349.79783)
+ (pt 608.93607 349.76679)
+ (pt 608.97616 349.74)
+ (pt 609.38384 349.74)
+ (pt 609.42393 349.76679)
+ (pt 609.58 349.79783)
+ (pt 610.78 349.79783)
+ (pt 610.93607 349.76679)
+ (pt 611.06838 349.67838)
+ (pt 611.15679 349.54607)
+ (pt 611.18783 349.39)
+ (pt 611.18783 349.2812)
+ (pt 614.74 349.2812)
+ (pt 614.81162 349.38838)
+ (pt 614.94393 349.47679)
+ (pt 615.1 349.50783)
+ (pt 615.9 349.50783)
+ (pt 616.05607 349.47679)
+ (pt 616.18838 349.38838)
+ (pt 616.24744 349.3)
+ (pt 616.35256 349.3)
+ (pt 616.41162 349.38838)
+ (pt 616.54393 349.47679)
+ (pt 616.7 349.50783)
+ (pt 617.5 349.50783)
+ (pt 617.65607 349.47679)
+ (pt 617.78838 349.38838)
+ (pt 617.7996 349.37159)
+ (pt 617.81114 349.38886)
+ (pt 618.10884 349.58778)
+ (pt 618.46 349.65763)
+ (pt 618.81116 349.58778)
+ (pt 619.10886 349.38886)
+ (pt 619.30778 349.09116)
+ (pt 619.37763 348.74)
+ (pt 619.30778 348.38884)
+ (pt 619.10886 348.09114)
+ (pt 618.81116 347.89222)
+ (pt 618.46 347.82237)
+ (pt 618.10884 347.89222)
+ (pt 617.83214 348.07711)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 507.0 367.21217)
+ (pt 506.84393 367.24321)
+ (pt 506.71162 367.33162)
+ (pt 506.62321 367.46393)
+ (pt 506.59217 367.62)
+ (pt 506.59217 369.42)
+ (pt 506.62321 369.57607)
+ (pt 506.71162 369.70838)
+ (pt 506.84393 369.79679)
+ (pt 507.0 369.82783)
+ (pt 507.40603 369.82783)
+ (pt 507.37114 369.85114)
+ (pt 507.17222 370.14884)
+ (pt 507.10237 370.5)
+ (pt 507.17222 370.85116)
+ (pt 507.37114 371.14886)
+ (pt 507.66884 371.34778)
+ (pt 508.02 371.41763)
+ (pt 508.37116 371.34778)
+ (pt 508.66886 371.14886)
+ (pt 508.86778 370.85116)
+ (pt 508.93763 370.5)
+ (pt 508.86778 370.14884)
+ (pt 508.66886 369.85114)
+ (pt 508.63397 369.82783)
+ (pt 509.0 369.82783)
+ (pt 509.15607 369.79679)
+ (pt 509.28838 369.70838)
+ (pt 509.37679 369.57607)
+ (pt 509.40783 369.42)
+ (pt 509.40783 367.62)
+ (pt 509.37679 367.46393)
+ (pt 509.28838 367.33162)
+ (pt 509.15607 367.24321)
+ (pt 509.0 367.21217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 509.24778 398.36884)
+ (pt 509.04886 398.07114)
+ (pt 508.75116 397.87222)
+ (pt 508.4 397.80237)
+ (pt 508.04884 397.87222)
+ (pt 507.75114 398.07114)
+ (pt 507.55222 398.36884)
+ (pt 507.48237 398.72)
+ (pt 507.55222 399.07116)
+ (pt 507.75114 399.36886)
+ (pt 508.04884 399.56778)
+ (pt 508.4 399.63763)
+ (pt 508.75116 399.56778)
+ (pt 509.04886 399.36886)
+ (pt 509.24778 399.07116)
+ (pt 509.31763 398.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 504.63 401.54833)
+ (pt 504.31786 401.61042)
+ (pt 504.05324 401.78724)
+ (pt 503.87642 402.05186)
+ (pt 503.81433 402.364)
+ (pt 503.87642 402.67614)
+ (pt 504.05324 402.94076)
+ (pt 504.31786 403.11758)
+ (pt 504.63 403.17967)
+ (pt 505.13 403.17967)
+ (pt 505.44214 403.11758)
+ (pt 505.70676 402.94076)
+ (pt 505.88358 402.67614)
+ (pt 505.94567 402.364)
+ (pt 505.88358 402.05186)
+ (pt 505.70676 401.78724)
+ (pt 505.44214 401.61042)
+ (pt 505.13 401.54833)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 487.38192 323.71459)
+ (pt 487.50348 323.89652)
+ (pt 487.68541 324.01808)
+ (pt 487.9 324.06077)
+ (pt 488.66659 324.06077)
+ (pt 488.75 324.09532)
+ (pt 490.06 324.09532)
+ (pt 490.39469 323.95668)
+ (pt 490.5 323.97763)
+ (pt 490.85116 323.90778)
+ (pt 491.14886 323.70886)
+ (pt 491.34778 323.41116)
+ (pt 491.41763 323.06)
+ (pt 491.34778 322.70884)
+ (pt 491.14886 322.41114)
+ (pt 490.85116 322.21222)
+ (pt 490.5 322.14237)
+ (pt 490.43683 322.15493)
+ (pt 490.36095 322.07905)
+ (pt 490.15993 321.99578)
+ (pt 490.11808 321.78541)
+ (pt 490.09442 321.75)
+ (pt 490.11808 321.71459)
+ (pt 490.16077 321.5)
+ (pt 490.13552 321.37309)
+ (pt 490.46 321.43763)
+ (pt 490.81116 321.36778)
+ (pt 491.10886 321.16886)
+ (pt 491.30778 320.87116)
+ (pt 491.37763 320.52)
+ (pt 491.30778 320.16884)
+ (pt 491.10886 319.87114)
+ (pt 490.96253 319.77336)
+ (pt 491.14886 319.64886)
+ (pt 491.34778 319.35116)
+ (pt 491.41763 319.0)
+ (pt 491.34778 318.64884)
+ (pt 491.14886 318.35114)
+ (pt 491.00613 318.25577)
+ (pt 491.12095 318.14095)
+ (pt 491.29532 317.72)
+ (pt 491.29532 316.70463)
+ (pt 491.34886 316.66886)
+ (pt 491.54778 316.37116)
+ (pt 491.61763 316.02)
+ (pt 491.54778 315.66884)
+ (pt 491.34886 315.37114)
+ (pt 491.05116 315.17222)
+ (pt 490.7 315.10237)
+ (pt 490.34884 315.17222)
+ (pt 490.05114 315.37114)
+ (pt 490.02873 315.40468)
+ (pt 489.0 315.40468)
+ (pt 488.91659 315.43923)
+ (pt 488.4 315.43923)
+ (pt 488.18541 315.48192)
+ (pt 488.00348 315.60348)
+ (pt 487.92156 315.72608)
+ (pt 487.75116 315.61222)
+ (pt 487.4 315.54237)
+ (pt 487.04884 315.61222)
+ (pt 486.75114 315.81114)
+ (pt 486.55222 316.10884)
+ (pt 486.48237 316.46)
+ (pt 486.53606 316.72993)
+ (pt 486.49607 316.70321)
+ (pt 486.34 316.67217)
+ (pt 485.54 316.67217)
+ (pt 485.38393 316.70321)
+ (pt 485.25162 316.79162)
+ (pt 485.19256 316.88)
+ (pt 485.08744 316.88)
+ (pt 485.02838 316.79162)
+ (pt 484.89607 316.70321)
+ (pt 484.74 316.67217)
+ (pt 483.94 316.67217)
+ (pt 483.78393 316.70321)
+ (pt 483.69067 316.76553)
+ (pt 483.49116 316.63222)
+ (pt 483.14 316.56237)
+ (pt 482.78884 316.63222)
+ (pt 482.49114 316.83114)
+ (pt 482.29222 317.12884)
+ (pt 482.22237 317.48)
+ (pt 482.29222 317.83116)
+ (pt 482.49114 318.12886)
+ (pt 482.78884 318.32778)
+ (pt 483.14 318.39763)
+ (pt 483.49116 318.32778)
+ (pt 483.69067 318.19447)
+ (pt 483.78393 318.25679)
+ (pt 483.94 318.28783)
+ (pt 484.74 318.28783)
+ (pt 484.89607 318.25679)
+ (pt 485.02838 318.16838)
+ (pt 485.08744 318.08)
+ (pt 485.19256 318.08)
+ (pt 485.25162 318.16838)
+ (pt 485.38393 318.25679)
+ (pt 485.54 318.28783)
+ (pt 486.34 318.28783)
+ (pt 486.49607 318.25679)
+ (pt 486.513 318.24548)
+ (pt 486.46237 318.5)
+ (pt 486.47821 318.57966)
+ (pt 486.34001 318.55217)
+ (pt 485.54001 318.55217)
+ (pt 485.38394 318.58321)
+ (pt 485.25163 318.67162)
+ (pt 485.19257 318.76)
+ (pt 485.08743 318.76)
+ (pt 485.02837 318.67162)
+ (pt 484.89606 318.58321)
+ (pt 484.73999 318.55217)
+ (pt 483.93999 318.55217)
+ (pt 483.78392 318.58321)
+ (pt 483.65161 318.67162)
+ (pt 483.58943 318.76468)
+ (pt 483.56898 318.76468)
+ (pt 483.33214 318.60642)
+ (pt 483.02 318.54433)
+ (pt 482.70786 318.60642)
+ (pt 482.44324 318.78324)
+ (pt 482.26642 319.04786)
+ (pt 482.20433 319.36)
+ (pt 482.26642 319.67214)
+ (pt 482.44324 319.93676)
+ (pt 482.70786 320.11358)
+ (pt 483.02 320.17567)
+ (pt 483.33214 320.11358)
+ (pt 483.56898 319.95532)
+ (pt 483.58943 319.95532)
+ (pt 483.65161 320.04838)
+ (pt 483.78392 320.13679)
+ (pt 483.8661 320.15313)
+ (pt 483.91904 320.28094)
+ (pt 484.0081 320.37)
+ (pt 483.91905 320.45905)
+ (pt 483.8661 320.58687)
+ (pt 483.78393 320.60321)
+ (pt 483.65162 320.69162)
+ (pt 483.59547 320.77565)
+ (pt 483.37214 320.62642)
+ (pt 483.06 320.56433)
+ (pt 482.74786 320.62642)
+ (pt 482.48324 320.80324)
+ (pt 482.30642 321.06786)
+ (pt 482.24433 321.38)
+ (pt 482.30642 321.69214)
+ (pt 482.48324 321.95676)
+ (pt 482.74786 322.13358)
+ (pt 483.06 322.19567)
+ (pt 483.37214 322.13358)
+ (pt 483.59547 321.98435)
+ (pt 483.65162 322.06838)
+ (pt 483.74468 322.13056)
+ (pt 483.74468 322.36944)
+ (pt 483.65162 322.43162)
+ (pt 483.56321 322.56393)
+ (pt 483.53217 322.72)
+ (pt 483.53217 323.52)
+ (pt 483.56321 323.67607)
+ (pt 483.65162 323.80838)
+ (pt 483.78393 323.89679)
+ (pt 483.94 323.92783)
+ (pt 484.74 323.92783)
+ (pt 484.89607 323.89679)
+ (pt 485.02838 323.80838)
+ (pt 485.08744 323.72)
+ (pt 485.19256 323.72)
+ (pt 485.25162 323.80838)
+ (pt 485.38393 323.89679)
+ (pt 485.54 323.92783)
+ (pt 486.34 323.92783)
+ (pt 486.49607 323.89679)
+ (pt 486.62838 323.80838)
+ (pt 486.71679 323.67607)
+ (pt 486.73964 323.5612)
+ (pt 487.3514 323.5612)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.38891 241.97089)
+ (pt 648.19337 241.43337)
+ (pt 648.73089 240.62891)
+ (pt 648.91964 239.68)
+ (pt 648.73089 238.73109)
+ (pt 648.19337 237.92663)
+ (pt 647.38891 237.38911)
+ (pt 646.44 237.20036)
+ (pt 645.49109 237.38911)
+ (pt 644.68663 237.92663)
+ (pt 644.14911 238.73109)
+ (pt 643.96036 239.68)
+ (pt 644.14911 240.62891)
+ (pt 644.68663 241.43337)
+ (pt 645.49109 241.97089)
+ (pt 646.44 242.15964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 549.32197 397.04982)
+ (pt 549.10096 396.71904)
+ (pt 548.77018 396.49803)
+ (pt 548.38 396.42041)
+ (pt 547.98982 396.49803)
+ (pt 547.65904 396.71904)
+ (pt 547.43803 397.04982)
+ (pt 547.38 397.34153)
+ (pt 547.32197 397.04982)
+ (pt 547.10096 396.71904)
+ (pt 546.77018 396.49803)
+ (pt 546.38 396.42041)
+ (pt 545.98982 396.49803)
+ (pt 545.65904 396.71904)
+ (pt 545.43803 397.04982)
+ (pt 545.38783 397.30217)
+ (pt 545.38783 396.84)
+ (pt 545.35679 396.68393)
+ (pt 545.26838 396.55162)
+ (pt 545.13607 396.46321)
+ (pt 544.98 396.43217)
+ (pt 543.78 396.43217)
+ (pt 543.62393 396.46321)
+ (pt 543.49162 396.55162)
+ (pt 543.40321 396.68393)
+ (pt 543.37217 396.84)
+ (pt 543.37217 398.04)
+ (pt 543.40321 398.19607)
+ (pt 543.49162 398.32838)
+ (pt 543.62393 398.41679)
+ (pt 543.78 398.44783)
+ (pt 544.24217 398.44783)
+ (pt 543.98982 398.49803)
+ (pt 543.65904 398.71904)
+ (pt 543.43803 399.04982)
+ (pt 543.36041 399.44)
+ (pt 543.43803 399.83018)
+ (pt 543.65904 400.16096)
+ (pt 543.98982 400.38197)
+ (pt 544.38 400.45959)
+ (pt 544.77018 400.38197)
+ (pt 545.10096 400.16096)
+ (pt 545.32197 399.83018)
+ (pt 545.38 399.53847)
+ (pt 545.43803 399.83018)
+ (pt 545.65904 400.16096)
+ (pt 545.98982 400.38197)
+ (pt 546.38 400.45959)
+ (pt 546.77018 400.38197)
+ (pt 547.10096 400.16096)
+ (pt 547.32197 399.83018)
+ (pt 547.38 399.53847)
+ (pt 547.43803 399.83018)
+ (pt 547.65904 400.16096)
+ (pt 547.98982 400.38197)
+ (pt 548.38 400.45959)
+ (pt 548.77018 400.38197)
+ (pt 549.10096 400.16096)
+ (pt 549.32197 399.83018)
+ (pt 549.38 399.53847)
+ (pt 549.43803 399.83018)
+ (pt 549.65904 400.16096)
+ (pt 549.98982 400.38197)
+ (pt 550.38 400.45959)
+ (pt 550.77018 400.38197)
+ (pt 551.10096 400.16096)
+ (pt 551.32197 399.83018)
+ (pt 551.38 399.53847)
+ (pt 551.43803 399.83018)
+ (pt 551.65904 400.16096)
+ (pt 551.98982 400.38197)
+ (pt 552.38 400.45959)
+ (pt 552.77018 400.38197)
+ (pt 553.10096 400.16096)
+ (pt 553.32197 399.83018)
+ (pt 553.39959 399.44)
+ (pt 553.32197 399.04982)
+ (pt 553.10096 398.71904)
+ (pt 552.77018 398.49803)
+ (pt 552.47847 398.44)
+ (pt 552.77018 398.38197)
+ (pt 553.10096 398.16096)
+ (pt 553.32197 397.83018)
+ (pt 553.39959 397.44)
+ (pt 553.32197 397.04982)
+ (pt 553.10096 396.71904)
+ (pt 552.77018 396.49803)
+ (pt 552.38 396.42041)
+ (pt 551.98982 396.49803)
+ (pt 551.65904 396.71904)
+ (pt 551.43803 397.04982)
+ (pt 551.38 397.34153)
+ (pt 551.32197 397.04982)
+ (pt 551.10096 396.71904)
+ (pt 550.77018 396.49803)
+ (pt 550.38 396.42041)
+ (pt 549.98982 396.49803)
+ (pt 549.65904 396.71904)
+ (pt 549.43803 397.04982)
+ (pt 549.38 397.34153)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 513.38778 370.84884)
+ (pt 513.18886 370.55114)
+ (pt 512.89116 370.35222)
+ (pt 512.54 370.28237)
+ (pt 512.18884 370.35222)
+ (pt 511.89114 370.55114)
+ (pt 511.69222 370.84884)
+ (pt 511.62237 371.2)
+ (pt 511.69222 371.55116)
+ (pt 511.89114 371.84886)
+ (pt 512.18884 372.04778)
+ (pt 512.54 372.11763)
+ (pt 512.89116 372.04778)
+ (pt 513.18886 371.84886)
+ (pt 513.38778 371.55116)
+ (pt 513.45763 371.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.03 287.80833)
+ (pt 521.71786 287.87042)
+ (pt 521.45324 288.04724)
+ (pt 521.27642 288.31186)
+ (pt 521.21433 288.624)
+ (pt 521.27642 288.93614)
+ (pt 521.45324 289.20076)
+ (pt 521.71786 289.37758)
+ (pt 522.03 289.43967)
+ (pt 522.53 289.43967)
+ (pt 522.84214 289.37758)
+ (pt 523.10676 289.20076)
+ (pt 523.28358 288.93614)
+ (pt 523.34567 288.624)
+ (pt 523.28358 288.31186)
+ (pt 523.10676 288.04724)
+ (pt 522.84214 287.87042)
+ (pt 522.53 287.80833)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.03 289.84033)
+ (pt 521.71786 289.90242)
+ (pt 521.45324 290.07924)
+ (pt 521.4438 290.09336)
+ (pt 521.38886 290.01114)
+ (pt 521.09116 289.81222)
+ (pt 520.74 289.74237)
+ (pt 520.38884 289.81222)
+ (pt 520.09114 290.01114)
+ (pt 519.89222 290.30884)
+ (pt 519.82237 290.66)
+ (pt 519.89222 291.01116)
+ (pt 520.09114 291.30886)
+ (pt 520.38884 291.50778)
+ (pt 520.74 291.57763)
+ (pt 521.09116 291.50778)
+ (pt 521.38886 291.30886)
+ (pt 521.44647 291.22264)
+ (pt 521.45324 291.23276)
+ (pt 521.71786 291.40958)
+ (pt 522.03 291.47167)
+ (pt 522.53 291.47167)
+ (pt 522.84214 291.40958)
+ (pt 523.10676 291.23276)
+ (pt 523.28358 290.96814)
+ (pt 523.34567 290.656)
+ (pt 523.28358 290.34386)
+ (pt 523.10676 290.07924)
+ (pt 522.84214 289.90242)
+ (pt 522.53 289.84033)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 520.35358 314.38786)
+ (pt 520.17676 314.12324)
+ (pt 519.91214 313.94642)
+ (pt 519.6 313.88433)
+ (pt 519.28786 313.94642)
+ (pt 519.02324 314.12324)
+ (pt 518.84642 314.38786)
+ (pt 518.78433 314.7)
+ (pt 518.84642 315.01214)
+ (pt 519.02324 315.27676)
+ (pt 519.28786 315.45358)
+ (pt 519.6 315.51567)
+ (pt 519.91214 315.45358)
+ (pt 520.17676 315.27676)
+ (pt 520.35358 315.01214)
+ (pt 520.41567 314.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.42054 362.98144)
+ (pt 623.57997 363.22003)
+ (pt 623.81856 363.37946)
+ (pt 624.1 363.43544)
+ (pt 624.1 363.43543)
+ (pt 633.4 363.43543)
+ (pt 633.4 363.43544)
+ (pt 633.68144 363.37946)
+ (pt 633.92003 363.22003)
+ (pt 634.07946 362.98144)
+ (pt 634.13544 362.7)
+ (pt 634.13543 362.7)
+ (pt 634.13543 339.4)
+ (pt 634.13544 339.4)
+ (pt 634.07946 339.11856)
+ (pt 633.92003 338.87997)
+ (pt 633.68144 338.72054)
+ (pt 633.4 338.66456)
+ (pt 633.4 338.66457)
+ (pt 624.1 338.66457)
+ (pt 624.1 338.66456)
+ (pt 623.81856 338.72054)
+ (pt 623.57997 338.87997)
+ (pt 623.42054 339.11856)
+ (pt 623.36456 339.4)
+ (pt 623.36457 339.4)
+ (pt 623.36457 362.7)
+ (pt 623.36456 362.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.05484 297.26417)
+ (pt 624.04855 297.29579)
+ (pt 623.78 297.24237)
+ (pt 623.42884 297.31222)
+ (pt 623.13114 297.51114)
+ (pt 622.93222 297.80884)
+ (pt 622.86237 298.16)
+ (pt 622.93222 298.51116)
+ (pt 623.13114 298.80886)
+ (pt 623.42884 299.00778)
+ (pt 623.78 299.07763)
+ (pt 624.05247 299.02343)
+ (pt 624.05484 299.03535)
+ (pt 624.18816 299.23488)
+ (pt 624.38769 299.3682)
+ (pt 624.62304 299.41501)
+ (pt 625.14952 299.41501)
+ (pt 625.23264 299.44944)
+ (pt 626.13173 299.44944)
+ (pt 626.30884 299.56778)
+ (pt 626.66 299.63763)
+ (pt 627.01116 299.56778)
+ (pt 627.30886 299.36886)
+ (pt 627.50778 299.07116)
+ (pt 627.57763 298.72)
+ (pt 627.50778 298.36884)
+ (pt 627.30886 298.07114)
+ (pt 627.26333 298.04072)
+ (pt 633.75534 298.04072)
+ (pt 634.19731 298.48269)
+ (pt 634.58 298.6412)
+ (pt 637.723 298.6412)
+ (pt 637.94562 298.97438)
+ (pt 638.34679 299.24243)
+ (pt 638.82 299.33656)
+ (pt 639.29321 299.24243)
+ (pt 639.69438 298.97438)
+ (pt 639.96243 298.57321)
+ (pt 640.05656 298.1)
+ (pt 639.96243 297.62679)
+ (pt 639.79833 297.3812)
+ (pt 639.87582 297.3812)
+ (pt 640.20162 297.707)
+ (pt 640.12344 298.1)
+ (pt 640.21757 298.57321)
+ (pt 640.48562 298.97438)
+ (pt 640.88679 299.24243)
+ (pt 641.36 299.33656)
+ (pt 641.83321 299.24243)
+ (pt 642.23438 298.97438)
+ (pt 642.50243 298.57321)
+ (pt 642.59656 298.1)
+ (pt 642.50243 297.62679)
+ (pt 642.23438 297.22562)
+ (pt 641.83321 296.95757)
+ (pt 641.36 296.86344)
+ (pt 640.967 296.94162)
+ (pt 640.48269 296.45731)
+ (pt 640.1 296.2988)
+ (pt 639.78497 296.2988)
+ (pt 639.96243 296.03321)
+ (pt 640.05656 295.56)
+ (pt 639.96243 295.08679)
+ (pt 639.8117 294.8612)
+ (pt 639.89582 294.8612)
+ (pt 640.20162 295.167)
+ (pt 640.12344 295.56)
+ (pt 640.21757 296.03321)
+ (pt 640.48562 296.43438)
+ (pt 640.88679 296.70243)
+ (pt 641.36 296.79656)
+ (pt 641.83321 296.70243)
+ (pt 642.23438 296.43438)
+ (pt 642.50243 296.03321)
+ (pt 642.59656 295.56)
+ (pt 642.50243 295.08679)
+ (pt 642.23438 294.68562)
+ (pt 641.83321 294.41757)
+ (pt 641.36 294.32344)
+ (pt 640.967 294.40162)
+ (pt 640.50269 293.93731)
+ (pt 640.12 293.7788)
+ (pt 639.77161 293.7788)
+ (pt 639.96243 293.49321)
+ (pt 640.05656 293.02)
+ (pt 639.96243 292.54679)
+ (pt 639.79833 292.3012)
+ (pt 639.87582 292.3012)
+ (pt 640.20162 292.627)
+ (pt 640.12344 293.02)
+ (pt 640.21757 293.49321)
+ (pt 640.48562 293.89438)
+ (pt 640.88679 294.16243)
+ (pt 641.36 294.25656)
+ (pt 641.83321 294.16243)
+ (pt 642.23438 293.89438)
+ (pt 642.50243 293.49321)
+ (pt 642.59656 293.02)
+ (pt 642.50243 292.54679)
+ (pt 642.23438 292.14562)
+ (pt 641.83321 291.87757)
+ (pt 641.36 291.78344)
+ (pt 640.967 291.86162)
+ (pt 640.48269 291.37731)
+ (pt 640.1 291.2188)
+ (pt 639.78497 291.2188)
+ (pt 639.96243 290.95321)
+ (pt 640.05656 290.48)
+ (pt 639.96243 290.00679)
+ (pt 639.78497 289.7412)
+ (pt 639.85582 289.7412)
+ (pt 640.20162 290.087)
+ (pt 640.12344 290.48)
+ (pt 640.21757 290.95321)
+ (pt 640.48562 291.35438)
+ (pt 640.88679 291.62243)
+ (pt 641.36 291.71656)
+ (pt 641.83321 291.62243)
+ (pt 642.23438 291.35438)
+ (pt 642.50243 290.95321)
+ (pt 642.59656 290.48)
+ (pt 642.50243 290.00679)
+ (pt 642.23438 289.60562)
+ (pt 641.83321 289.33757)
+ (pt 641.36 289.24344)
+ (pt 640.967 289.32162)
+ (pt 640.46269 288.81731)
+ (pt 640.08 288.6588)
+ (pt 639.79833 288.6588)
+ (pt 639.96243 288.41321)
+ (pt 640.05656 287.94)
+ (pt 639.96243 287.46679)
+ (pt 639.79833 287.2212)
+ (pt 639.87582 287.2212)
+ (pt 640.20162 287.547)
+ (pt 640.12344 287.94)
+ (pt 640.21757 288.41321)
+ (pt 640.48562 288.81438)
+ (pt 640.88679 289.08243)
+ (pt 641.36 289.17656)
+ (pt 641.83321 289.08243)
+ (pt 642.23438 288.81438)
+ (pt 642.50243 288.41321)
+ (pt 642.59656 287.94)
+ (pt 642.50243 287.46679)
+ (pt 642.23438 287.06562)
+ (pt 641.83321 286.79757)
+ (pt 641.36 286.70344)
+ (pt 640.967 286.78162)
+ (pt 640.48269 286.29731)
+ (pt 640.1 286.1388)
+ (pt 639.78497 286.1388)
+ (pt 639.96243 285.87321)
+ (pt 640.05656 285.4)
+ (pt 639.96243 284.92679)
+ (pt 639.77161 284.6412)
+ (pt 639.83582 284.6412)
+ (pt 640.20162 285.007)
+ (pt 640.12344 285.4)
+ (pt 640.21757 285.87321)
+ (pt 640.48562 286.27438)
+ (pt 640.88679 286.54243)
+ (pt 641.36 286.63656)
+ (pt 641.83321 286.54243)
+ (pt 642.23438 286.27438)
+ (pt 642.50243 285.87321)
+ (pt 642.59656 285.4)
+ (pt 642.50243 284.92679)
+ (pt 642.23438 284.52562)
+ (pt 641.83321 284.25757)
+ (pt 641.36 284.16344)
+ (pt 640.967 284.24162)
+ (pt 640.44269 283.71731)
+ (pt 640.06 283.5588)
+ (pt 639.8117 283.5588)
+ (pt 639.96243 283.33321)
+ (pt 640.05656 282.86)
+ (pt 639.96243 282.38679)
+ (pt 639.69438 281.98562)
+ (pt 639.29321 281.71757)
+ (pt 638.82 281.62344)
+ (pt 638.34679 281.71757)
+ (pt 637.94562 281.98562)
+ (pt 637.67757 282.38679)
+ (pt 637.58344 282.86)
+ (pt 637.67757 283.33321)
+ (pt 637.8283 283.5588)
+ (pt 632.88658 283.5588)
+ (pt 635.58418 280.8612)
+ (pt 637.723 280.8612)
+ (pt 637.94562 281.19438)
+ (pt 638.34679 281.46243)
+ (pt 638.82 281.55656)
+ (pt 639.29321 281.46243)
+ (pt 639.69438 281.19438)
+ (pt 639.96243 280.79321)
+ (pt 640.05656 280.32)
+ (pt 639.96243 279.84679)
+ (pt 639.83842 279.6612)
+ (pt 639.93582 279.6612)
+ (pt 640.20162 279.927)
+ (pt 640.12344 280.32)
+ (pt 640.21757 280.79321)
+ (pt 640.48562 281.19438)
+ (pt 640.88679 281.46243)
+ (pt 641.36 281.55656)
+ (pt 641.83321 281.46243)
+ (pt 642.23438 281.19438)
+ (pt 642.50243 280.79321)
+ (pt 642.59656 280.32)
+ (pt 642.50243 279.84679)
+ (pt 642.23438 279.44562)
+ (pt 641.83321 279.17757)
+ (pt 641.36 279.08344)
+ (pt 640.967 279.16162)
+ (pt 640.54269 278.73731)
+ (pt 640.16 278.5788)
+ (pt 639.74488 278.5788)
+ (pt 639.96243 278.25321)
+ (pt 640.05656 277.78)
+ (pt 639.96243 277.30679)
+ (pt 639.69438 276.90562)
+ (pt 639.29321 276.63757)
+ (pt 638.82 276.54344)
+ (pt 638.34679 276.63757)
+ (pt 637.94562 276.90562)
+ (pt 637.67757 277.30679)
+ (pt 637.58344 277.78)
+ (pt 637.67757 278.25321)
+ (pt 637.89512 278.5788)
+ (pt 635.34 278.5788)
+ (pt 634.95731 278.73731)
+ (pt 629.41774 284.27688)
+ (pt 626.35556 284.27688)
+ (pt 626.37725 284.16784)
+ (pt 626.33044 283.93249)
+ (pt 626.19712 283.73296)
+ (pt 625.99759 283.59964)
+ (pt 625.76224 283.55283)
+ (pt 624.54304 283.55283)
+ (pt 624.30769 283.59964)
+ (pt 624.26728 283.62664)
+ (pt 623.65216 283.62664)
+ (pt 623.26947 283.78515)
+ (pt 623.24195 283.81267)
+ (pt 623.2 283.80433)
+ (pt 622.88786 283.86642)
+ (pt 622.62324 284.04324)
+ (pt 622.44642 284.30786)
+ (pt 622.38433 284.62)
+ (pt 622.44642 284.93214)
+ (pt 622.62324 285.19676)
+ (pt 622.88786 285.37358)
+ (pt 623.2 285.43567)
+ (pt 623.51214 285.37358)
+ (pt 623.77676 285.19676)
+ (pt 623.95137 284.93544)
+ (pt 623.97484 285.05343)
+ (pt 624.03482 285.1432)
+ (pt 623.97484 285.23297)
+ (pt 623.92803 285.46832)
+ (pt 623.97484 285.70367)
+ (pt 624.03482 285.79344)
+ (pt 623.97484 285.88321)
+ (pt 623.92803 286.11856)
+ (pt 623.97484 286.35391)
+ (pt 624.03482 286.44368)
+ (pt 623.97484 286.53345)
+ (pt 623.92803 286.7688)
+ (pt 623.97484 287.00415)
+ (pt 624.03482 287.09392)
+ (pt 623.97484 287.18369)
+ (pt 623.92803 287.41904)
+ (pt 623.97484 287.65439)
+ (pt 624.03482 287.74416)
+ (pt 623.97484 287.83393)
+ (pt 623.92803 288.06928)
+ (pt 623.97484 288.30463)
+ (pt 624.03482 288.3944)
+ (pt 623.97484 288.48417)
+ (pt 623.97009 288.50803)
+ (pt 623.64 288.44237)
+ (pt 623.28884 288.51222)
+ (pt 622.99114 288.71114)
+ (pt 622.79222 289.00884)
+ (pt 622.72237 289.36)
+ (pt 622.79222 289.71116)
+ (pt 622.99114 290.00886)
+ (pt 623.28884 290.20778)
+ (pt 623.64 290.27763)
+ (pt 623.96636 290.21271)
+ (pt 623.97484 290.25535)
+ (pt 624.10816 290.45488)
+ (pt 624.30769 290.5882)
+ (pt 624.54304 290.63501)
+ (pt 625.06952 290.63501)
+ (pt 625.15264 290.66944)
+ (pt 626.01201 290.66944)
+ (pt 626.30884 290.86778)
+ (pt 626.66 290.93763)
+ (pt 627.01116 290.86778)
+ (pt 627.30886 290.66886)
+ (pt 627.50778 290.37116)
+ (pt 627.57763 290.02)
+ (pt 627.50778 289.66884)
+ (pt 627.30886 289.37114)
+ (pt 627.14361 289.26072)
+ (pt 635.13534 289.26072)
+ (pt 635.45731 289.58269)
+ (pt 635.84 289.7412)
+ (pt 637.85503 289.7412)
+ (pt 637.723 289.9388)
+ (pt 632.08 289.9388)
+ (pt 631.69731 290.09731)
+ (pt 628.73774 293.05688)
+ (pt 626.43556 293.05688)
+ (pt 626.45725 292.94784)
+ (pt 626.41044 292.71249)
+ (pt 626.27712 292.51296)
+ (pt 626.07759 292.37964)
+ (pt 625.84224 292.33283)
+ (pt 624.62304 292.33283)
+ (pt 624.38769 292.37964)
+ (pt 624.34728 292.40664)
+ (pt 623.61219 292.40664)
+ (pt 623.49214 292.32642)
+ (pt 623.18 292.26433)
+ (pt 622.86786 292.32642)
+ (pt 622.60324 292.50324)
+ (pt 622.42642 292.76786)
+ (pt 622.36433 293.08)
+ (pt 622.42642 293.39214)
+ (pt 622.60324 293.65676)
+ (pt 622.86786 293.83358)
+ (pt 623.18 293.89567)
+ (pt 623.49214 293.83358)
+ (pt 623.75676 293.65676)
+ (pt 623.86883 293.48904)
+ (pt 624.02972 293.48904)
+ (pt 624.00803 293.59808)
+ (pt 624.05484 293.83343)
+ (pt 624.11482 293.9232)
+ (pt 624.05484 294.01297)
+ (pt 624.00803 294.24832)
+ (pt 624.05484 294.48367)
+ (pt 624.11482 294.57344)
+ (pt 624.05484 294.66321)
+ (pt 624.00803 294.89856)
+ (pt 624.05484 295.13391)
+ (pt 624.11482 295.22368)
+ (pt 624.05484 295.31345)
+ (pt 624.00803 295.5488)
+ (pt 624.05484 295.78415)
+ (pt 624.11482 295.87392)
+ (pt 624.05484 295.96369)
+ (pt 624.00803 296.19904)
+ (pt 624.05484 296.43439)
+ (pt 624.11482 296.52416)
+ (pt 624.05484 296.61393)
+ (pt 624.00803 296.84928)
+ (pt 624.05484 297.08463)
+ (pt 624.11482 297.1744)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 637.64502 315.5704)
+ (pt 637.58344 315.88)
+ (pt 637.67757 316.35321)
+ (pt 637.94562 316.75438)
+ (pt 638.34679 317.02243)
+ (pt 638.82 317.11656)
+ (pt 639.29321 317.02243)
+ (pt 639.69438 316.75438)
+ (pt 639.96243 316.35321)
+ (pt 640.05656 315.88)
+ (pt 639.96243 315.40679)
+ (pt 639.69438 315.00562)
+ (pt 639.29321 314.73757)
+ (pt 638.82 314.64344)
+ (pt 638.34679 314.73757)
+ (pt 638.34449 314.73911)
+ (pt 637.44881 313.84343)
+ (pt 637.54 313.8812)
+ (pt 637.723 313.8812)
+ (pt 637.94562 314.21438)
+ (pt 638.34679 314.48243)
+ (pt 638.82 314.57656)
+ (pt 639.29321 314.48243)
+ (pt 639.69438 314.21438)
+ (pt 639.96243 313.81321)
+ (pt 640.05656 313.34)
+ (pt 639.96243 312.86679)
+ (pt 639.69438 312.46562)
+ (pt 639.29321 312.19757)
+ (pt 638.82 312.10344)
+ (pt 638.34679 312.19757)
+ (pt 637.94562 312.46562)
+ (pt 637.73949 312.77411)
+ (pt 630.13538 305.17)
+ (pt 630.88462 305.17)
+ (pt 636.89731 311.18269)
+ (pt 637.28 311.3412)
+ (pt 637.723 311.3412)
+ (pt 637.94562 311.67438)
+ (pt 638.34679 311.94243)
+ (pt 638.82 312.03656)
+ (pt 639.29321 311.94243)
+ (pt 639.69438 311.67438)
+ (pt 639.96243 311.27321)
+ (pt 640.05656 310.8)
+ (pt 639.96243 310.32679)
+ (pt 639.69438 309.92562)
+ (pt 639.29321 309.65757)
+ (pt 638.82 309.56344)
+ (pt 638.34679 309.65757)
+ (pt 637.94562 309.92562)
+ (pt 637.723 310.2588)
+ (pt 637.50418 310.2588)
+ (pt 631.76514 304.51976)
+ (pt 632.75438 304.51976)
+ (pt 636.87731 308.64269)
+ (pt 637.26 308.8012)
+ (pt 637.723 308.8012)
+ (pt 637.94562 309.13438)
+ (pt 638.34679 309.40243)
+ (pt 638.82 309.49656)
+ (pt 639.29321 309.40243)
+ (pt 639.69438 309.13438)
+ (pt 639.96243 308.73321)
+ (pt 640.05656 308.26)
+ (pt 639.96243 307.78679)
+ (pt 639.69438 307.38562)
+ (pt 639.29321 307.11757)
+ (pt 638.82 307.02344)
+ (pt 638.34679 307.11757)
+ (pt 637.94562 307.38562)
+ (pt 637.723 307.7188)
+ (pt 637.48418 307.7188)
+ (pt 633.6349 303.86952)
+ (pt 635.38414 303.86952)
+ (pt 637.61731 306.10269)
+ (pt 637.66336 306.12176)
+ (pt 637.67757 306.19321)
+ (pt 637.94562 306.59438)
+ (pt 638.34679 306.86243)
+ (pt 638.82 306.95656)
+ (pt 639.29321 306.86243)
+ (pt 639.69438 306.59438)
+ (pt 639.96243 306.19321)
+ (pt 640.05656 305.72)
+ (pt 639.96243 305.24679)
+ (pt 639.69438 304.84562)
+ (pt 639.29321 304.57757)
+ (pt 638.82 304.48344)
+ (pt 638.34679 304.57757)
+ (pt 637.94562 304.84562)
+ (pt 637.92374 304.87836)
+ (pt 636.26466 303.21928)
+ (pt 637.59125 303.21928)
+ (pt 637.67757 303.65321)
+ (pt 637.94562 304.05438)
+ (pt 638.34679 304.32243)
+ (pt 638.82 304.41656)
+ (pt 639.29321 304.32243)
+ (pt 639.69438 304.05438)
+ (pt 639.96243 303.65321)
+ (pt 640.05656 303.18)
+ (pt 639.96243 302.70679)
+ (pt 639.69438 302.30562)
+ (pt 639.29321 302.03757)
+ (pt 638.82 301.94344)
+ (pt 638.34679 302.03757)
+ (pt 638.19816 302.13688)
+ (pt 638.0885 302.13688)
+ (pt 638.427 301.79838)
+ (pt 638.82 301.87656)
+ (pt 639.29321 301.78243)
+ (pt 639.69438 301.51438)
+ (pt 639.96243 301.11321)
+ (pt 640.05656 300.64)
+ (pt 639.96243 300.16679)
+ (pt 639.69438 299.76562)
+ (pt 639.29321 299.49757)
+ (pt 638.82 299.40344)
+ (pt 638.34679 299.49757)
+ (pt 637.94562 299.76562)
+ (pt 637.67757 300.16679)
+ (pt 637.58344 300.64)
+ (pt 637.66162 301.033)
+ (pt 637.20798 301.48664)
+ (pt 626.078 301.48664)
+ (pt 626.03759 301.45964)
+ (pt 625.80224 301.41283)
+ (pt 624.58304 301.41283)
+ (pt 624.34769 301.45964)
+ (pt 624.14816 301.59296)
+ (pt 624.01484 301.79249)
+ (pt 623.96803 302.02784)
+ (pt 624.01484 302.26319)
+ (pt 624.07482 302.35296)
+ (pt 624.01484 302.44273)
+ (pt 623.96803 302.67808)
+ (pt 624.01484 302.91343)
+ (pt 624.07482 303.0032)
+ (pt 624.01484 303.09297)
+ (pt 623.96803 303.32832)
+ (pt 624.01484 303.56367)
+ (pt 624.07482 303.65344)
+ (pt 624.01484 303.74321)
+ (pt 623.96803 303.97856)
+ (pt 624.01484 304.21391)
+ (pt 624.07482 304.30368)
+ (pt 624.01484 304.39345)
+ (pt 623.96803 304.6288)
+ (pt 624.01484 304.86415)
+ (pt 624.07482 304.95392)
+ (pt 624.01484 305.04369)
+ (pt 623.96803 305.27904)
+ (pt 624.01484 305.51439)
+ (pt 624.07482 305.60416)
+ (pt 624.01484 305.69393)
+ (pt 623.96803 305.92928)
+ (pt 624.01484 306.16463)
+ (pt 624.07482 306.2544)
+ (pt 624.01484 306.34417)
+ (pt 623.96803 306.57952)
+ (pt 623.98972 306.68856)
+ (pt 623.58704 306.68856)
+ (pt 623.55676 306.64324)
+ (pt 623.29214 306.46642)
+ (pt 622.98 306.40433)
+ (pt 622.66786 306.46642)
+ (pt 622.40324 306.64324)
+ (pt 622.22642 306.90786)
+ (pt 622.16433 307.22)
+ (pt 622.22642 307.53214)
+ (pt 622.40324 307.79676)
+ (pt 622.66786 307.97358)
+ (pt 622.98 308.03567)
+ (pt 623.29214 307.97358)
+ (pt 623.55676 307.79676)
+ (pt 623.574 307.77096)
+ (pt 623.98972 307.77096)
+ (pt 623.96803 307.88)
+ (pt 624.01484 308.11535)
+ (pt 624.14816 308.31488)
+ (pt 624.34769 308.4482)
+ (pt 624.58304 308.49501)
+ (pt 624.59389 308.49501)
+ (pt 624.73342 308.83186)
+ (pt 624.82257 308.92101)
+ (pt 624.89222 309.27116)
+ (pt 625.09114 309.56886)
+ (pt 625.38884 309.76778)
+ (pt 625.74 309.83763)
+ (pt 626.09116 309.76778)
+ (pt 626.38886 309.56886)
+ (pt 626.58778 309.27116)
+ (pt 626.65763 308.92)
+ (pt 626.58778 308.56884)
+ (pt 626.51593 308.46131)
+ (pt 626.83217 308.77755)
+ (pt 626.83217 309.22)
+ (pt 626.86321 309.37607)
+ (pt 626.95162 309.50838)
+ (pt 627.08393 309.59679)
+ (pt 627.24 309.62783)
+ (pt 628.04 309.62783)
+ (pt 628.19607 309.59679)
+ (pt 628.32838 309.50838)
+ (pt 628.38744 309.42)
+ (pt 628.49256 309.42)
+ (pt 628.55162 309.50838)
+ (pt 628.68393 309.59679)
+ (pt 628.84 309.62783)
+ (pt 629.64 309.62783)
+ (pt 629.79607 309.59679)
+ (pt 629.92838 309.50838)
+ (pt 629.97544 309.43795)
+ (pt 630.1 309.46273)
+ (pt 630.35361 309.41228)
+ (pt 630.56862 309.26862)
+ (pt 630.60652 309.2119)
+ (pt 633.8188 312.42418)
+ (pt 633.8188 314.36)
+ (pt 633.97731 314.74269)
+ (pt 637.59525 318.36063)
+ (pt 637.58344 318.42)
+ (pt 637.67757 318.89321)
+ (pt 637.94562 319.29438)
+ (pt 638.34679 319.56243)
+ (pt 638.82 319.65656)
+ (pt 639.29321 319.56243)
+ (pt 639.69438 319.29438)
+ (pt 639.96243 318.89321)
+ (pt 640.05656 318.42)
+ (pt 639.96243 317.94679)
+ (pt 639.69438 317.54562)
+ (pt 639.29321 317.27757)
+ (pt 638.82 317.18344)
+ (pt 638.34679 317.27757)
+ (pt 638.16465 317.39927)
+ (pt 634.9012 314.13582)
+ (pt 634.9012 312.82658)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 565.93072 282.93072)
+ (pt 566.09648 282.68263)
+ (pt 566.15469 282.39)
+ (pt 566.09648 282.09737)
+ (pt 565.93072 281.84928)
+ (pt 565.78961 281.755)
+ (pt 565.93072 281.66072)
+ (pt 566.09648 281.41263)
+ (pt 566.15469 281.12)
+ (pt 566.09648 280.82737)
+ (pt 565.93072 280.57928)
+ (pt 565.78961 280.485)
+ (pt 565.93072 280.39072)
+ (pt 566.09648 280.14263)
+ (pt 566.15469 279.85)
+ (pt 566.09648 279.55737)
+ (pt 565.93072 279.30928)
+ (pt 565.78961 279.215)
+ (pt 565.93 279.1212)
+ (pt 566.0192 279.1212)
+ (pt 566.09114 279.22886)
+ (pt 566.38884 279.42778)
+ (pt 566.74 279.49763)
+ (pt 567.09116 279.42778)
+ (pt 567.38886 279.22886)
+ (pt 567.58778 278.93116)
+ (pt 567.65763 278.58)
+ (pt 567.58778 278.22884)
+ (pt 567.38886 277.93114)
+ (pt 567.09116 277.73222)
+ (pt 566.74 277.66237)
+ (pt 566.38884 277.73222)
+ (pt 566.09114 277.93114)
+ (pt 566.0192 278.0388)
+ (pt 565.93 278.0388)
+ (pt 565.68263 277.87352)
+ (pt 565.39 277.81531)
+ (pt 564.09 277.81531)
+ (pt 563.79737 277.87352)
+ (pt 563.54928 278.03928)
+ (pt 563.38352 278.28737)
+ (pt 563.32531 278.58)
+ (pt 563.38352 278.87263)
+ (pt 563.54928 279.12072)
+ (pt 563.69039 279.215)
+ (pt 563.631 279.25468)
+ (pt 563.40459 279.25468)
+ (pt 563.38886 279.23114)
+ (pt 563.09116 279.03222)
+ (pt 562.74 278.96237)
+ (pt 562.38884 279.03222)
+ (pt 562.09114 279.23114)
+ (pt 561.89222 279.52884)
+ (pt 561.82237 279.88)
+ (pt 561.89222 280.23116)
+ (pt 562.09114 280.52886)
+ (pt 562.38884 280.72778)
+ (pt 562.74 280.79763)
+ (pt 563.09116 280.72778)
+ (pt 563.38886 280.52886)
+ (pt 563.44468 280.44532)
+ (pt 563.631 280.44532)
+ (pt 563.69039 280.485)
+ (pt 563.54928 280.57928)
+ (pt 563.38352 280.82737)
+ (pt 563.32531 281.12)
+ (pt 563.38352 281.41263)
+ (pt 563.54928 281.66072)
+ (pt 563.69039 281.755)
+ (pt 563.54928 281.84928)
+ (pt 563.38352 282.09737)
+ (pt 563.32531 282.39)
+ (pt 563.38352 282.68263)
+ (pt 563.54928 282.93072)
+ (pt 563.69039 283.025)
+ (pt 563.54928 283.11928)
+ (pt 563.38352 283.36737)
+ (pt 563.32531 283.66)
+ (pt 563.38352 283.95263)
+ (pt 563.54928 284.20072)
+ (pt 563.69039 284.295)
+ (pt 563.54928 284.38928)
+ (pt 563.38352 284.63737)
+ (pt 563.32531 284.93)
+ (pt 563.38352 285.22263)
+ (pt 563.54928 285.47072)
+ (pt 563.69039 285.565)
+ (pt 563.54928 285.65928)
+ (pt 563.50951 285.7188)
+ (pt 561.4808 285.7188)
+ (pt 561.40886 285.61114)
+ (pt 561.11116 285.41222)
+ (pt 560.76 285.34237)
+ (pt 560.40884 285.41222)
+ (pt 560.11114 285.61114)
+ (pt 559.91222 285.90884)
+ (pt 559.84237 286.26)
+ (pt 559.91222 286.61116)
+ (pt 560.11114 286.90886)
+ (pt 560.40884 287.10778)
+ (pt 560.76 287.17763)
+ (pt 561.11116 287.10778)
+ (pt 561.40886 286.90886)
+ (pt 561.4808 286.8012)
+ (pt 562.33595 286.8012)
+ (pt 562.29114 286.83114)
+ (pt 562.09222 287.12884)
+ (pt 562.02237 287.48)
+ (pt 562.09222 287.83116)
+ (pt 562.29114 288.12886)
+ (pt 562.58884 288.32778)
+ (pt 562.94 288.39763)
+ (pt 563.29116 288.32778)
+ (pt 563.58886 288.12886)
+ (pt 563.63122 288.06547)
+ (pt 563.79737 288.17648)
+ (pt 564.09 288.23469)
+ (pt 565.39 288.23469)
+ (pt 565.68263 288.17648)
+ (pt 565.93072 288.01072)
+ (pt 566.09648 287.76263)
+ (pt 566.15469 287.47)
+ (pt 566.09648 287.17737)
+ (pt 565.93072 286.92928)
+ (pt 565.78961 286.835)
+ (pt 565.93072 286.74072)
+ (pt 566.09648 286.49263)
+ (pt 566.15469 286.2)
+ (pt 566.09648 285.90737)
+ (pt 565.93072 285.65928)
+ (pt 565.78961 285.565)
+ (pt 565.93072 285.47072)
+ (pt 566.09648 285.22263)
+ (pt 566.15469 284.93)
+ (pt 566.09648 284.63737)
+ (pt 565.93072 284.38928)
+ (pt 565.78961 284.295)
+ (pt 565.93072 284.20072)
+ (pt 566.09648 283.95263)
+ (pt 566.15469 283.66)
+ (pt 566.09648 283.36737)
+ (pt 565.93072 283.11928)
+ (pt 565.78961 283.025)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.79627 354.2412)
+ (pt 614.80321 354.27607)
+ (pt 614.89162 354.40838)
+ (pt 615.02393 354.49679)
+ (pt 615.18 354.52783)
+ (pt 615.98 354.52783)
+ (pt 616.13607 354.49679)
+ (pt 616.26838 354.40838)
+ (pt 616.32744 354.32)
+ (pt 616.43256 354.32)
+ (pt 616.49162 354.40838)
+ (pt 616.62393 354.49679)
+ (pt 616.78 354.52783)
+ (pt 617.58 354.52783)
+ (pt 617.73607 354.49679)
+ (pt 617.80437 354.45115)
+ (pt 618.00884 354.58778)
+ (pt 618.36 354.65763)
+ (pt 618.71116 354.58778)
+ (pt 619.00886 354.38886)
+ (pt 619.20778 354.09116)
+ (pt 619.27763 353.74)
+ (pt 619.20778 353.38884)
+ (pt 619.00886 353.09114)
+ (pt 618.71116 352.89222)
+ (pt 618.36 352.82237)
+ (pt 618.00884 352.89222)
+ (pt 617.8343 353.00885)
+ (pt 617.73607 352.94321)
+ (pt 617.58 352.91217)
+ (pt 616.78 352.91217)
+ (pt 616.62393 352.94321)
+ (pt 616.49162 353.03162)
+ (pt 616.43256 353.12)
+ (pt 616.32744 353.12)
+ (pt 616.26838 353.03162)
+ (pt 616.13607 352.94321)
+ (pt 615.98 352.91217)
+ (pt 615.18 352.91217)
+ (pt 615.02393 352.94321)
+ (pt 614.89162 353.03162)
+ (pt 614.80664 353.1588)
+ (pt 611.14783 353.1588)
+ (pt 611.14783 353.05)
+ (pt 611.11679 352.89393)
+ (pt 611.02838 352.76162)
+ (pt 610.89607 352.67321)
+ (pt 610.74 352.64217)
+ (pt 609.54 352.64217)
+ (pt 609.38393 352.67321)
+ (pt 609.34384 352.7)
+ (pt 608.93616 352.7)
+ (pt 608.89607 352.67321)
+ (pt 608.74 352.64217)
+ (pt 607.54 352.64217)
+ (pt 607.38393 352.67321)
+ (pt 607.25162 352.76162)
+ (pt 607.16321 352.89393)
+ (pt 607.13217 353.05)
+ (pt 607.13217 353.1588)
+ (pt 606.61986 353.1588)
+ (pt 606.45361 353.04772)
+ (pt 606.2 352.99727)
+ (pt 605.94639 353.04772)
+ (pt 605.73138 353.19138)
+ (pt 605.58772 353.40639)
+ (pt 605.53727 353.66)
+ (pt 605.58772 353.91361)
+ (pt 605.73138 354.12862)
+ (pt 605.94639 354.27228)
+ (pt 606.2 354.32273)
+ (pt 606.45361 354.27228)
+ (pt 606.50013 354.2412)
+ (pt 607.13217 354.2412)
+ (pt 607.13217 354.35)
+ (pt 607.16321 354.50607)
+ (pt 607.25162 354.63838)
+ (pt 607.38393 354.72679)
+ (pt 607.54 354.75783)
+ (pt 608.74 354.75783)
+ (pt 608.89607 354.72679)
+ (pt 608.93616 354.7)
+ (pt 609.34384 354.7)
+ (pt 609.38393 354.72679)
+ (pt 609.54 354.75783)
+ (pt 610.74 354.75783)
+ (pt 610.89607 354.72679)
+ (pt 611.02838 354.63838)
+ (pt 611.11679 354.50607)
+ (pt 611.14783 354.35)
+ (pt 611.14783 354.2412)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.48891 375.27089)
+ (pt 648.29337 374.73337)
+ (pt 648.83089 373.92891)
+ (pt 649.01964 372.98)
+ (pt 648.83089 372.03109)
+ (pt 648.29337 371.22663)
+ (pt 647.48891 370.68911)
+ (pt 646.54 370.50036)
+ (pt 645.59109 370.68911)
+ (pt 644.78663 371.22663)
+ (pt 644.24911 372.03109)
+ (pt 644.06036 372.98)
+ (pt 644.24911 373.92891)
+ (pt 644.78663 374.73337)
+ (pt 645.59109 375.27089)
+ (pt 646.54 375.45964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.05484 434.08273)
+ (pt 624.00803 434.31808)
+ (pt 624.05484 434.55343)
+ (pt 624.11482 434.6432)
+ (pt 624.05484 434.73297)
+ (pt 624.00803 434.96832)
+ (pt 624.05484 435.20367)
+ (pt 624.11482 435.29344)
+ (pt 624.05484 435.38321)
+ (pt 624.00803 435.61856)
+ (pt 624.05484 435.85391)
+ (pt 624.11482 435.94368)
+ (pt 624.05484 436.03345)
+ (pt 624.00803 436.2688)
+ (pt 624.05484 436.50415)
+ (pt 624.11482 436.59392)
+ (pt 624.05484 436.68369)
+ (pt 624.00803 436.91904)
+ (pt 624.05484 437.15439)
+ (pt 624.11482 437.24416)
+ (pt 624.05484 437.33393)
+ (pt 624.00803 437.56928)
+ (pt 624.05484 437.80463)
+ (pt 624.11482 437.8944)
+ (pt 624.05484 437.98417)
+ (pt 624.00803 438.21952)
+ (pt 624.03833 438.37186)
+ (pt 622.15024 438.37186)
+ (pt 621.79817 438.51769)
+ (pt 620.55303 439.76283)
+ (pt 620.46 439.74433)
+ (pt 620.14786 439.80642)
+ (pt 619.88324 439.98324)
+ (pt 619.70642 440.24786)
+ (pt 619.64433 440.56)
+ (pt 619.69421 440.81076)
+ (pt 619.6821 440.84)
+ (pt 619.82793 441.19207)
+ (pt 620.18 441.3379)
+ (pt 620.20924 441.32579)
+ (pt 620.46 441.37567)
+ (pt 620.77214 441.31358)
+ (pt 621.03676 441.13676)
+ (pt 621.21358 440.87214)
+ (pt 621.27567 440.56)
+ (pt 621.25717 440.46697)
+ (pt 622.35648 439.36766)
+ (pt 624.03833 439.36766)
+ (pt 624.00803 439.52)
+ (pt 624.05484 439.75535)
+ (pt 624.18816 439.95488)
+ (pt 624.37775 440.08156)
+ (pt 624.32237 440.36)
+ (pt 624.39222 440.71116)
+ (pt 624.59114 441.00886)
+ (pt 624.88884 441.20778)
+ (pt 625.24 441.27763)
+ (pt 625.59116 441.20778)
+ (pt 625.88886 441.00886)
+ (pt 626.08778 440.71116)
+ (pt 626.15763 440.36)
+ (pt 626.10052 440.07288)
+ (pt 626.27712 439.95488)
+ (pt 626.41044 439.75535)
+ (pt 626.45725 439.52)
+ (pt 626.41044 439.28465)
+ (pt 626.35046 439.19488)
+ (pt 626.41044 439.10511)
+ (pt 626.45725 438.86976)
+ (pt 626.43556 438.76072)
+ (pt 626.84936 438.76072)
+ (pt 626.98639 438.85228)
+ (pt 627.24 438.90273)
+ (pt 627.49361 438.85228)
+ (pt 627.70862 438.70862)
+ (pt 627.85228 438.49361)
+ (pt 627.90273 438.24)
+ (pt 627.85228 437.98639)
+ (pt 627.70862 437.77138)
+ (pt 627.49361 437.62772)
+ (pt 627.25896 437.58104)
+ (pt 627.25844 437.57844)
+ (pt 627.28 437.58273)
+ (pt 627.53361 437.53228)
+ (pt 627.74862 437.38862)
+ (pt 627.89228 437.17361)
+ (pt 627.94273 436.92)
+ (pt 627.89228 436.66639)
+ (pt 627.74862 436.45138)
+ (pt 627.53361 436.30772)
+ (pt 627.41426 436.28398)
+ (pt 627.57361 436.25228)
+ (pt 627.78862 436.10862)
+ (pt 627.93228 435.89361)
+ (pt 627.98273 435.64)
+ (pt 627.93228 435.38639)
+ (pt 627.78862 435.17138)
+ (pt 627.57361 435.02772)
+ (pt 627.32 434.97727)
+ (pt 627.25679 434.98984)
+ (pt 627.26208 434.96325)
+ (pt 627.36 434.98273)
+ (pt 627.61361 434.93228)
+ (pt 627.82862 434.78862)
+ (pt 627.97228 434.57361)
+ (pt 628.02273 434.32)
+ (pt 627.97228 434.06639)
+ (pt 627.82862 433.85138)
+ (pt 627.61361 433.70772)
+ (pt 627.36 433.65727)
+ (pt 627.26208 433.67675)
+ (pt 627.21228 433.42639)
+ (pt 627.06862 433.21138)
+ (pt 626.85361 433.06772)
+ (pt 626.6 433.01727)
+ (pt 626.34639 433.06772)
+ (pt 626.25821 433.12664)
+ (pt 626.118 433.12664)
+ (pt 626.07759 433.09964)
+ (pt 625.84224 433.05283)
+ (pt 624.62304 433.05283)
+ (pt 624.38769 433.09964)
+ (pt 624.18816 433.23296)
+ (pt 624.05484 433.43249)
+ (pt 624.00803 433.66784)
+ (pt 624.05484 433.90319)
+ (pt 624.11482 433.99296)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.3904 441.77283)
+ (pt 617.15505 441.81964)
+ (pt 616.95552 441.95296)
+ (pt 616.8222 442.15249)
+ (pt 616.77539 442.38784)
+ (pt 616.79708 442.49688)
+ (pt 615.72587 442.49688)
+ (pt 615.71676 442.48324)
+ (pt 615.45214 442.30642)
+ (pt 615.14 442.24433)
+ (pt 614.82786 442.30642)
+ (pt 614.56324 442.48324)
+ (pt 614.38642 442.74786)
+ (pt 614.32433 443.06)
+ (pt 614.38642 443.37214)
+ (pt 614.56324 443.63676)
+ (pt 614.66788 443.70668)
+ (pt 614.58324 443.76324)
+ (pt 614.40642 444.02786)
+ (pt 614.34433 444.34)
+ (pt 614.40642 444.65214)
+ (pt 614.58324 444.91676)
+ (pt 614.73285 445.01673)
+ (pt 614.66324 445.06324)
+ (pt 614.48642 445.32786)
+ (pt 614.42433 445.64)
+ (pt 614.48642 445.95214)
+ (pt 614.66324 446.21676)
+ (pt 614.76788 446.28668)
+ (pt 614.68324 446.34324)
+ (pt 614.50642 446.60786)
+ (pt 614.44433 446.92)
+ (pt 614.50642 447.23214)
+ (pt 614.68324 447.49676)
+ (pt 614.87285 447.62346)
+ (pt 614.84324 447.64324)
+ (pt 614.66642 447.90786)
+ (pt 614.60433 448.22)
+ (pt 614.66642 448.53214)
+ (pt 614.84324 448.79676)
+ (pt 615.10786 448.97358)
+ (pt 615.42 449.03567)
+ (pt 615.73214 448.97358)
+ (pt 615.99676 448.79676)
+ (pt 616.00716 448.7812)
+ (pt 617.11464 448.7812)
+ (pt 617.15505 448.8082)
+ (pt 617.3904 448.85501)
+ (pt 618.6096 448.85501)
+ (pt 618.84495 448.8082)
+ (pt 619.04448 448.67488)
+ (pt 619.1778 448.47535)
+ (pt 619.22461 448.24)
+ (pt 619.1778 448.00465)
+ (pt 619.11782 447.91488)
+ (pt 619.1778 447.82511)
+ (pt 619.22461 447.58976)
+ (pt 619.1778 447.35441)
+ (pt 619.11782 447.26464)
+ (pt 619.1778 447.17487)
+ (pt 619.22461 446.93952)
+ (pt 619.1778 446.70417)
+ (pt 619.11782 446.6144)
+ (pt 619.1778 446.52463)
+ (pt 619.22461 446.28928)
+ (pt 619.1778 446.05393)
+ (pt 619.11782 445.96416)
+ (pt 619.1778 445.87439)
+ (pt 619.22461 445.63904)
+ (pt 619.1778 445.40369)
+ (pt 619.11782 445.31392)
+ (pt 619.1778 445.22415)
+ (pt 619.22461 444.9888)
+ (pt 619.1778 444.75345)
+ (pt 619.11782 444.66368)
+ (pt 619.1778 444.57391)
+ (pt 619.22461 444.33856)
+ (pt 619.1778 444.10321)
+ (pt 619.11782 444.01344)
+ (pt 619.1778 443.92367)
+ (pt 619.22461 443.68832)
+ (pt 619.1778 443.45297)
+ (pt 619.11782 443.3632)
+ (pt 619.1778 443.27343)
+ (pt 619.20002 443.1617)
+ (pt 619.32884 443.24778)
+ (pt 619.68 443.31763)
+ (pt 620.03116 443.24778)
+ (pt 620.32886 443.04886)
+ (pt 620.52778 442.75116)
+ (pt 620.59763 442.4)
+ (pt 620.52778 442.04884)
+ (pt 620.32886 441.75114)
+ (pt 620.03116 441.55222)
+ (pt 619.68 441.48237)
+ (pt 619.32884 441.55222)
+ (pt 619.03114 441.75114)
+ (pt 618.94203 441.8845)
+ (pt 618.84495 441.81964)
+ (pt 618.6096 441.77283)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.2578 434.55343)
+ (pt 619.30461 434.31808)
+ (pt 619.30456 434.31783)
+ (pt 619.58884 434.50778)
+ (pt 619.94 434.57763)
+ (pt 620.29116 434.50778)
+ (pt 620.58886 434.30886)
+ (pt 620.78778 434.01116)
+ (pt 620.85763 433.66)
+ (pt 620.78778 433.30884)
+ (pt 620.58886 433.01114)
+ (pt 620.29116 432.81222)
+ (pt 619.94 432.74237)
+ (pt 619.58884 432.81222)
+ (pt 619.29114 433.01114)
+ (pt 619.1337 433.24676)
+ (pt 619.12448 433.23296)
+ (pt 618.92495 433.09964)
+ (pt 618.6896 433.05283)
+ (pt 617.4704 433.05283)
+ (pt 617.23505 433.09964)
+ (pt 617.03552 433.23296)
+ (pt 616.9022 433.43249)
+ (pt 616.85539 433.66784)
+ (pt 616.87708 433.77688)
+ (pt 615.75924 433.77688)
+ (pt 615.73676 433.74324)
+ (pt 615.47214 433.56642)
+ (pt 615.16 433.50433)
+ (pt 614.84786 433.56642)
+ (pt 614.58324 433.74324)
+ (pt 614.40642 434.00786)
+ (pt 614.34433 434.32)
+ (pt 614.40642 434.63214)
+ (pt 614.58324 434.89676)
+ (pt 614.70285 434.97668)
+ (pt 614.60324 435.04324)
+ (pt 614.42642 435.30786)
+ (pt 614.36433 435.62)
+ (pt 614.42642 435.93214)
+ (pt 614.60324 436.19676)
+ (pt 614.72285 436.27668)
+ (pt 614.62324 436.34324)
+ (pt 614.44642 436.60786)
+ (pt 614.38433 436.92)
+ (pt 614.44642 437.23214)
+ (pt 614.62324 437.49676)
+ (pt 614.72788 437.56668)
+ (pt 614.64324 437.62324)
+ (pt 614.46642 437.88786)
+ (pt 614.40433 438.2)
+ (pt 614.46642 438.51214)
+ (pt 614.64324 438.77676)
+ (pt 614.77781 438.86668)
+ (pt 614.66324 438.94324)
+ (pt 614.48642 439.20786)
+ (pt 614.42433 439.52)
+ (pt 614.48642 439.83214)
+ (pt 614.66324 440.09676)
+ (pt 614.92786 440.27358)
+ (pt 615.24 440.33567)
+ (pt 615.55214 440.27358)
+ (pt 615.81676 440.09676)
+ (pt 615.84052 440.0612)
+ (pt 617.19464 440.0612)
+ (pt 617.23505 440.0882)
+ (pt 617.4704 440.13501)
+ (pt 618.6896 440.13501)
+ (pt 618.92495 440.0882)
+ (pt 619.12448 439.95488)
+ (pt 619.2578 439.75535)
+ (pt 619.30461 439.52)
+ (pt 619.2578 439.28465)
+ (pt 619.19782 439.19488)
+ (pt 619.2578 439.10511)
+ (pt 619.30461 438.86976)
+ (pt 619.2578 438.63441)
+ (pt 619.19782 438.54464)
+ (pt 619.2578 438.45487)
+ (pt 619.30461 438.21952)
+ (pt 619.2578 437.98417)
+ (pt 619.19782 437.8944)
+ (pt 619.2578 437.80463)
+ (pt 619.30461 437.56928)
+ (pt 619.2578 437.33393)
+ (pt 619.19782 437.24416)
+ (pt 619.2578 437.15439)
+ (pt 619.30461 436.91904)
+ (pt 619.2578 436.68369)
+ (pt 619.19782 436.59392)
+ (pt 619.2578 436.50415)
+ (pt 619.30461 436.2688)
+ (pt 619.2578 436.03345)
+ (pt 619.19782 435.94368)
+ (pt 619.2578 435.85391)
+ (pt 619.30461 435.61856)
+ (pt 619.2578 435.38321)
+ (pt 619.19782 435.29344)
+ (pt 619.2578 435.20367)
+ (pt 619.30461 434.96832)
+ (pt 619.2578 434.73297)
+ (pt 619.19782 434.6432)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 404.60243)
+ (pt 639.79438 404.33438)
+ (pt 640.06243 403.93321)
+ (pt 640.15656 403.46)
+ (pt 640.06243 402.98679)
+ (pt 639.79438 402.58562)
+ (pt 639.39321 402.31757)
+ (pt 638.92 402.22344)
+ (pt 638.44679 402.31757)
+ (pt 638.04562 402.58562)
+ (pt 637.77757 402.98679)
+ (pt 637.68344 403.46)
+ (pt 637.77757 403.93321)
+ (pt 638.04562 404.33438)
+ (pt 638.44679 404.60243)
+ (pt 638.92 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 396.98243)
+ (pt 639.79438 396.71438)
+ (pt 640.06243 396.31321)
+ (pt 640.15656 395.84)
+ (pt 640.06243 395.36679)
+ (pt 639.79438 394.96562)
+ (pt 639.39321 394.69757)
+ (pt 638.92 394.60344)
+ (pt 638.44679 394.69757)
+ (pt 638.04562 394.96562)
+ (pt 637.77757 395.36679)
+ (pt 637.68344 395.84)
+ (pt 637.77757 396.31321)
+ (pt 638.04562 396.71438)
+ (pt 638.44679 396.98243)
+ (pt 638.92 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 389.36243)
+ (pt 639.79438 389.09438)
+ (pt 640.06243 388.69321)
+ (pt 640.15656 388.22)
+ (pt 640.06243 387.74679)
+ (pt 639.79438 387.34562)
+ (pt 639.39321 387.07757)
+ (pt 638.92 386.98344)
+ (pt 638.44679 387.07757)
+ (pt 638.04562 387.34562)
+ (pt 637.77757 387.74679)
+ (pt 637.68344 388.22)
+ (pt 637.77757 388.69321)
+ (pt 638.04562 389.09438)
+ (pt 638.44679 389.36243)
+ (pt 638.92 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 381.74243)
+ (pt 639.79438 381.47438)
+ (pt 640.06243 381.07321)
+ (pt 640.15656 380.6)
+ (pt 640.06243 380.12679)
+ (pt 639.79438 379.72562)
+ (pt 639.39321 379.45757)
+ (pt 638.92 379.36344)
+ (pt 638.44679 379.45757)
+ (pt 638.04562 379.72562)
+ (pt 637.77757 380.12679)
+ (pt 637.68344 380.6)
+ (pt 637.77757 381.07321)
+ (pt 638.04562 381.47438)
+ (pt 638.44679 381.74243)
+ (pt 638.92 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.97321 350.32393)
+ (pt 639.94217 350.48)
+ (pt 639.94217 351.36017)
+ (pt 639.51017 351.79217)
+ (pt 638.48 351.79217)
+ (pt 638.32393 351.82321)
+ (pt 638.19162 351.91162)
+ (pt 638.10321 352.04393)
+ (pt 638.09686 352.07585)
+ (pt 638.03243 352.07585)
+ (pt 637.99107 352.04821)
+ (pt 637.835 352.01717)
+ (pt 635.835 352.01717)
+ (pt 635.67893 352.04821)
+ (pt 635.54662 352.13662)
+ (pt 635.45821 352.26893)
+ (pt 635.42717 352.425)
+ (pt 635.42717 353.675)
+ (pt 635.45821 353.83107)
+ (pt 635.54662 353.96338)
+ (pt 635.67893 354.05179)
+ (pt 635.835 354.08283)
+ (pt 637.835 354.08283)
+ (pt 637.99107 354.05179)
+ (pt 638.03243 354.02415)
+ (pt 638.07217 354.02415)
+ (pt 638.07217 354.2)
+ (pt 638.10321 354.35607)
+ (pt 638.19162 354.48838)
+ (pt 638.32393 354.57679)
+ (pt 638.48 354.60783)
+ (pt 640.48 354.60783)
+ (pt 640.63607 354.57679)
+ (pt 640.76838 354.48838)
+ (pt 640.85679 354.35607)
+ (pt 640.88783 354.2)
+ (pt 640.88783 353.16983)
+ (pt 641.68883 352.36883)
+ (pt 641.82268 352.04569)
+ (pt 641.93838 351.96838)
+ (pt 642.02679 351.83607)
+ (pt 642.05783 351.68)
+ (pt 642.05783 350.48)
+ (pt 642.02679 350.32393)
+ (pt 642.0 350.28384)
+ (pt 642.0 349.87616)
+ (pt 642.02679 349.83607)
+ (pt 642.05783 349.68)
+ (pt 642.05783 348.48)
+ (pt 642.02679 348.32393)
+ (pt 641.93838 348.19162)
+ (pt 641.80607 348.10321)
+ (pt 641.65 348.07217)
+ (pt 640.35 348.07217)
+ (pt 640.19393 348.10321)
+ (pt 640.06162 348.19162)
+ (pt 640.02984 348.23918)
+ (pt 640.02778 348.22884)
+ (pt 639.82886 347.93114)
+ (pt 639.53116 347.73222)
+ (pt 639.18 347.66237)
+ (pt 638.82884 347.73222)
+ (pt 638.53114 347.93114)
+ (pt 638.33222 348.22884)
+ (pt 638.26237 348.58)
+ (pt 638.33222 348.93116)
+ (pt 638.53114 349.22886)
+ (pt 638.82884 349.42778)
+ (pt 639.18 349.49763)
+ (pt 639.53116 349.42778)
+ (pt 639.82886 349.22886)
+ (pt 639.94217 349.05928)
+ (pt 639.94217 349.68)
+ (pt 639.97321 349.83607)
+ (pt 640.0 349.87616)
+ (pt 640.0 350.28384)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 322.10243)
+ (pt 642.23438 321.83438)
+ (pt 642.50243 321.43321)
+ (pt 642.59656 320.96)
+ (pt 642.50243 320.48679)
+ (pt 642.23438 320.08562)
+ (pt 641.83321 319.81757)
+ (pt 641.36 319.72344)
+ (pt 640.88679 319.81757)
+ (pt 640.48562 320.08562)
+ (pt 640.21757 320.48679)
+ (pt 640.12344 320.96)
+ (pt 640.21757 321.43321)
+ (pt 640.48562 321.83438)
+ (pt 640.88679 322.10243)
+ (pt 641.36 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 314.48243)
+ (pt 642.23438 314.21438)
+ (pt 642.50243 313.81321)
+ (pt 642.59656 313.34)
+ (pt 642.50243 312.86679)
+ (pt 642.23438 312.46562)
+ (pt 641.83321 312.19757)
+ (pt 641.36 312.10344)
+ (pt 640.88679 312.19757)
+ (pt 640.48562 312.46562)
+ (pt 640.21757 312.86679)
+ (pt 640.12344 313.34)
+ (pt 640.21757 313.81321)
+ (pt 640.48562 314.21438)
+ (pt 640.88679 314.48243)
+ (pt 641.36 314.57656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 322.10243)
+ (pt 639.69438 321.83438)
+ (pt 639.96243 321.43321)
+ (pt 640.05656 320.96)
+ (pt 639.96243 320.48679)
+ (pt 639.69438 320.08562)
+ (pt 639.29321 319.81757)
+ (pt 638.82 319.72344)
+ (pt 638.34679 319.81757)
+ (pt 637.94562 320.08562)
+ (pt 637.67757 320.48679)
+ (pt 637.58344 320.96)
+ (pt 637.67757 321.43321)
+ (pt 637.94562 321.83438)
+ (pt 638.34679 322.10243)
+ (pt 638.82 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.93484 312.69297)
+ (pt 623.88803 312.92832)
+ (pt 623.93484 313.16367)
+ (pt 623.99482 313.25344)
+ (pt 623.93484 313.34321)
+ (pt 623.88803 313.57856)
+ (pt 623.93484 313.81391)
+ (pt 623.99482 313.90368)
+ (pt 623.93484 313.99345)
+ (pt 623.88803 314.2288)
+ (pt 623.93484 314.46415)
+ (pt 623.99482 314.55392)
+ (pt 623.93484 314.64369)
+ (pt 623.88803 314.87904)
+ (pt 623.93484 315.11439)
+ (pt 623.99482 315.20416)
+ (pt 623.93484 315.29393)
+ (pt 623.88803 315.52928)
+ (pt 623.93484 315.76463)
+ (pt 623.99482 315.8544)
+ (pt 623.93484 315.94417)
+ (pt 623.88803 316.17952)
+ (pt 623.90972 316.28856)
+ (pt 623.77024 316.28856)
+ (pt 623.38755 316.44707)
+ (pt 622.39731 317.43731)
+ (pt 622.2388 317.82)
+ (pt 622.2388 320.48025)
+ (pt 622.22393 320.48321)
+ (pt 622.09162 320.57162)
+ (pt 622.03256 320.66)
+ (pt 621.92744 320.66)
+ (pt 621.86838 320.57162)
+ (pt 621.73607 320.48321)
+ (pt 621.58 320.45217)
+ (pt 620.78 320.45217)
+ (pt 620.62393 320.48321)
+ (pt 620.49162 320.57162)
+ (pt 620.40321 320.70393)
+ (pt 620.37217 320.86)
+ (pt 620.37217 321.66)
+ (pt 620.40321 321.81607)
+ (pt 620.44885 321.88437)
+ (pt 620.31222 322.08884)
+ (pt 620.24237 322.44)
+ (pt 620.31222 322.79116)
+ (pt 620.51114 323.08886)
+ (pt 620.80884 323.28778)
+ (pt 621.16 323.35763)
+ (pt 621.51116 323.28778)
+ (pt 621.80886 323.08886)
+ (pt 621.94826 322.88023)
+ (pt 621.94433 322.9)
+ (pt 622.00642 323.21214)
+ (pt 622.18324 323.47676)
+ (pt 622.44786 323.65358)
+ (pt 622.76 323.71567)
+ (pt 623.07214 323.65358)
+ (pt 623.33676 323.47676)
+ (pt 623.51358 323.21214)
+ (pt 623.57567 322.9)
+ (pt 623.51358 322.58786)
+ (pt 623.33676 322.32324)
+ (pt 623.3212 322.31284)
+ (pt 623.3212 322.03975)
+ (pt 623.33607 322.03679)
+ (pt 623.46838 321.94838)
+ (pt 623.55679 321.81607)
+ (pt 623.58783 321.66)
+ (pt 623.58783 320.86)
+ (pt 623.55679 320.70393)
+ (pt 623.46838 320.57162)
+ (pt 623.33607 320.48321)
+ (pt 623.3212 320.48025)
+ (pt 623.3212 318.04418)
+ (pt 623.88869 317.47669)
+ (pt 623.88803 317.48)
+ (pt 623.93484 317.71535)
+ (pt 624.06816 317.91488)
+ (pt 624.26769 318.0482)
+ (pt 624.50304 318.09501)
+ (pt 624.5636 318.09501)
+ (pt 624.65342 318.31186)
+ (pt 624.98257 318.64101)
+ (pt 625.05222 318.99116)
+ (pt 625.25114 319.28886)
+ (pt 625.54884 319.48778)
+ (pt 625.9 319.55763)
+ (pt 626.25116 319.48778)
+ (pt 626.54886 319.28886)
+ (pt 626.74778 318.99116)
+ (pt 626.81763 318.64)
+ (pt 626.74778 318.28884)
+ (pt 626.54886 317.99114)
+ (pt 626.25116 317.79222)
+ (pt 626.2405 317.7901)
+ (pt 626.29044 317.71535)
+ (pt 626.33725 317.48)
+ (pt 626.29044 317.24465)
+ (pt 626.23046 317.15488)
+ (pt 626.29044 317.06511)
+ (pt 626.33725 316.82976)
+ (pt 626.31556 316.72072)
+ (pt 626.46922 316.72072)
+ (pt 626.54639 316.77228)
+ (pt 626.8 316.82273)
+ (pt 627.05361 316.77228)
+ (pt 627.26862 316.62862)
+ (pt 627.41228 316.41361)
+ (pt 627.45443 316.20173)
+ (pt 627.56 316.22273)
+ (pt 627.81361 316.17228)
+ (pt 628.02862 316.02862)
+ (pt 628.17228 315.81361)
+ (pt 628.22273 315.56)
+ (pt 628.17228 315.30639)
+ (pt 628.02862 315.09138)
+ (pt 627.81361 314.94772)
+ (pt 627.57372 314.9)
+ (pt 627.81361 314.85228)
+ (pt 628.02862 314.70862)
+ (pt 628.17228 314.49361)
+ (pt 628.22273 314.24)
+ (pt 628.17228 313.98639)
+ (pt 628.02862 313.77138)
+ (pt 627.81361 313.62772)
+ (pt 627.56 313.57727)
+ (pt 627.37185 313.6147)
+ (pt 627.38273 313.56)
+ (pt 627.37849 313.53866)
+ (pt 627.6 313.58273)
+ (pt 627.85361 313.53228)
+ (pt 628.06862 313.38862)
+ (pt 628.21228 313.17361)
+ (pt 628.26273 312.92)
+ (pt 628.21228 312.66639)
+ (pt 628.06862 312.45138)
+ (pt 627.85361 312.30772)
+ (pt 627.71426 312.28)
+ (pt 627.85361 312.25228)
+ (pt 628.06862 312.10862)
+ (pt 628.21228 311.89361)
+ (pt 628.26273 311.64)
+ (pt 628.21228 311.38639)
+ (pt 628.06862 311.17138)
+ (pt 627.85361 311.02772)
+ (pt 627.6 310.97727)
+ (pt 627.34639 311.02772)
+ (pt 627.25821 311.08664)
+ (pt 625.998 311.08664)
+ (pt 625.95759 311.05964)
+ (pt 625.72224 311.01283)
+ (pt 624.50304 311.01283)
+ (pt 624.26769 311.05964)
+ (pt 624.06816 311.19296)
+ (pt 623.93484 311.39249)
+ (pt 623.88803 311.62784)
+ (pt 623.93484 311.86319)
+ (pt 623.99482 311.95296)
+ (pt 623.93484 312.04273)
+ (pt 623.88803 312.27808)
+ (pt 623.93484 312.51343)
+ (pt 623.99482 312.6032)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 306.86243)
+ (pt 642.23438 306.59438)
+ (pt 642.50243 306.19321)
+ (pt 642.59656 305.72)
+ (pt 642.50243 305.24679)
+ (pt 642.23438 304.84562)
+ (pt 641.83321 304.57757)
+ (pt 641.36 304.48344)
+ (pt 640.88679 304.57757)
+ (pt 640.48562 304.84562)
+ (pt 640.21757 305.24679)
+ (pt 640.12344 305.72)
+ (pt 640.21757 306.19321)
+ (pt 640.48562 306.59438)
+ (pt 640.88679 306.86243)
+ (pt 641.36 306.95656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 284.00243)
+ (pt 642.23438 283.73438)
+ (pt 642.50243 283.33321)
+ (pt 642.59656 282.86)
+ (pt 642.50243 282.38679)
+ (pt 642.23438 281.98562)
+ (pt 641.83321 281.71757)
+ (pt 641.36 281.62344)
+ (pt 640.88679 281.71757)
+ (pt 640.48562 281.98562)
+ (pt 640.21757 282.38679)
+ (pt 640.12344 282.86)
+ (pt 640.21757 283.33321)
+ (pt 640.48562 283.73438)
+ (pt 640.88679 284.00243)
+ (pt 641.36 284.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 268.76243)
+ (pt 642.23438 268.49438)
+ (pt 642.50243 268.09321)
+ (pt 642.59656 267.62)
+ (pt 642.50243 267.14679)
+ (pt 642.23438 266.74562)
+ (pt 641.83321 266.47757)
+ (pt 641.36 266.38344)
+ (pt 640.88679 266.47757)
+ (pt 640.48562 266.74562)
+ (pt 640.21757 267.14679)
+ (pt 640.12344 267.62)
+ (pt 640.21757 268.09321)
+ (pt 640.48562 268.49438)
+ (pt 640.88679 268.76243)
+ (pt 641.36 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 261.14243)
+ (pt 642.23438 260.87438)
+ (pt 642.50243 260.47321)
+ (pt 642.59656 260.0)
+ (pt 642.50243 259.52679)
+ (pt 642.23438 259.12562)
+ (pt 641.83321 258.85757)
+ (pt 641.36 258.76344)
+ (pt 640.88679 258.85757)
+ (pt 640.48562 259.12562)
+ (pt 640.21757 259.52679)
+ (pt 640.12344 260.0)
+ (pt 640.21757 260.47321)
+ (pt 640.48562 260.87438)
+ (pt 640.88679 261.14243)
+ (pt 641.36 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 253.52243)
+ (pt 642.23438 253.25438)
+ (pt 642.50243 252.85321)
+ (pt 642.59656 252.38)
+ (pt 642.50243 251.90679)
+ (pt 642.23438 251.50562)
+ (pt 641.83321 251.23757)
+ (pt 641.36 251.14344)
+ (pt 640.88679 251.23757)
+ (pt 640.48562 251.50562)
+ (pt 640.21757 251.90679)
+ (pt 640.12344 252.38)
+ (pt 640.21757 252.85321)
+ (pt 640.48562 253.25438)
+ (pt 640.88679 253.52243)
+ (pt 641.36 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 268.76243)
+ (pt 639.69438 268.49438)
+ (pt 639.96243 268.09321)
+ (pt 640.05656 267.62)
+ (pt 639.96243 267.14679)
+ (pt 639.69438 266.74562)
+ (pt 639.29321 266.47757)
+ (pt 638.82 266.38344)
+ (pt 638.34679 266.47757)
+ (pt 637.94562 266.74562)
+ (pt 637.67757 267.14679)
+ (pt 637.58344 267.62)
+ (pt 637.67757 268.09321)
+ (pt 637.94562 268.49438)
+ (pt 638.34679 268.76243)
+ (pt 638.82 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 261.14243)
+ (pt 639.69438 260.87438)
+ (pt 639.96243 260.47321)
+ (pt 640.05656 260.0)
+ (pt 639.96243 259.52679)
+ (pt 639.69438 259.12562)
+ (pt 639.29321 258.85757)
+ (pt 638.82 258.76344)
+ (pt 638.34679 258.85757)
+ (pt 637.94562 259.12562)
+ (pt 637.67757 259.52679)
+ (pt 637.58344 260.0)
+ (pt 637.67757 260.47321)
+ (pt 637.94562 260.87438)
+ (pt 638.34679 261.14243)
+ (pt 638.82 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 253.52243)
+ (pt 639.69438 253.25438)
+ (pt 639.96243 252.85321)
+ (pt 640.05656 252.38)
+ (pt 639.96243 251.90679)
+ (pt 639.69438 251.50562)
+ (pt 639.29321 251.23757)
+ (pt 638.82 251.14344)
+ (pt 638.34679 251.23757)
+ (pt 637.94562 251.50562)
+ (pt 637.67757 251.90679)
+ (pt 637.58344 252.38)
+ (pt 637.67757 252.85321)
+ (pt 637.94562 253.25438)
+ (pt 638.34679 253.52243)
+ (pt 638.82 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 245.90243)
+ (pt 642.23438 245.63438)
+ (pt 642.50243 245.23321)
+ (pt 642.59656 244.76)
+ (pt 642.50243 244.28679)
+ (pt 642.23438 243.88562)
+ (pt 641.83321 243.61757)
+ (pt 641.36 243.52344)
+ (pt 640.88679 243.61757)
+ (pt 640.48562 243.88562)
+ (pt 640.21757 244.28679)
+ (pt 640.12344 244.76)
+ (pt 640.21757 245.23321)
+ (pt 640.48562 245.63438)
+ (pt 640.88679 245.90243)
+ (pt 641.36 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 245.90243)
+ (pt 639.69438 245.63438)
+ (pt 639.96243 245.23321)
+ (pt 640.05656 244.76)
+ (pt 639.96243 244.28679)
+ (pt 639.69438 243.88562)
+ (pt 639.29321 243.61757)
+ (pt 638.82 243.52344)
+ (pt 638.34679 243.61757)
+ (pt 637.94562 243.88562)
+ (pt 637.67757 244.28679)
+ (pt 637.58344 244.76)
+ (pt 637.67757 245.23321)
+ (pt 637.94562 245.63438)
+ (pt 638.34679 245.90243)
+ (pt 638.82 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.5 382.40783)
+ (pt 595.65607 382.37679)
+ (pt 595.78838 382.28838)
+ (pt 595.87679 382.15607)
+ (pt 595.90783 382.0)
+ (pt 595.90783 381.0)
+ (pt 595.87679 380.84393)
+ (pt 595.78838 380.71162)
+ (pt 595.65607 380.62321)
+ (pt 595.5 380.59217)
+ (pt 594.5 380.59217)
+ (pt 594.34393 380.62321)
+ (pt 594.21162 380.71162)
+ (pt 594.12321 380.84393)
+ (pt 594.09217 381.0)
+ (pt 594.09217 382.0)
+ (pt 594.12321 382.15607)
+ (pt 594.21162 382.28838)
+ (pt 594.34393 382.37679)
+ (pt 594.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 588.0 382.40783)
+ (pt 588.15607 382.37679)
+ (pt 588.28838 382.28838)
+ (pt 588.37679 382.15607)
+ (pt 588.40783 382.0)
+ (pt 588.40783 381.0)
+ (pt 588.37679 380.84393)
+ (pt 588.28838 380.71162)
+ (pt 588.15607 380.62321)
+ (pt 588.0 380.59217)
+ (pt 587.0 380.59217)
+ (pt 586.84393 380.62321)
+ (pt 586.71162 380.71162)
+ (pt 586.62321 380.84393)
+ (pt 586.59217 381.0)
+ (pt 586.59217 382.0)
+ (pt 586.62321 382.15607)
+ (pt 586.71162 382.28838)
+ (pt 586.84393 382.37679)
+ (pt 587.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 306.91375)
+ (pt 372.56934 306.45066)
+ (pt 372.10625 306.14123)
+ (pt 371.56 306.03258)
+ (pt 371.01375 306.14123)
+ (pt 370.55066 306.45066)
+ (pt 370.24123 306.91375)
+ (pt 370.13258 307.46)
+ (pt 370.24123 308.00625)
+ (pt 370.55066 308.46934)
+ (pt 371.01375 308.77877)
+ (pt 371.56 308.88742)
+ (pt 372.10625 308.77877)
+ (pt 372.56934 308.46934)
+ (pt 372.87877 308.00625)
+ (pt 372.98742 307.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 524.57 288.82433)
+ (pt 524.25786 288.88642)
+ (pt 523.99324 289.06324)
+ (pt 523.81642 289.32786)
+ (pt 523.75433 289.64)
+ (pt 523.81642 289.95214)
+ (pt 523.99324 290.21676)
+ (pt 524.25786 290.39358)
+ (pt 524.57 290.45567)
+ (pt 525.07 290.45567)
+ (pt 525.36158 290.39767)
+ (pt 529.30568 290.39767)
+ (pt 529.33321 290.53607)
+ (pt 529.36 290.57616)
+ (pt 529.36 290.98384)
+ (pt 529.33321 291.02393)
+ (pt 529.30217 291.18)
+ (pt 529.30217 292.38)
+ (pt 529.33321 292.53607)
+ (pt 529.42162 292.66838)
+ (pt 529.55393 292.75679)
+ (pt 529.60233 292.76642)
+ (pt 529.60233 292.87385)
+ (pt 529.55222 292.94884)
+ (pt 529.48237 293.3)
+ (pt 529.55222 293.65116)
+ (pt 529.56359 293.66817)
+ (pt 528.916 293.66817)
+ (pt 528.75993 293.69921)
+ (pt 528.62762 293.78762)
+ (pt 528.53921 293.91993)
+ (pt 528.50817 294.076)
+ (pt 528.50817 294.86233)
+ (pt 528.42468 294.86233)
+ (pt 528.39607 294.84321)
+ (pt 528.24 294.81217)
+ (pt 527.44 294.81217)
+ (pt 527.28393 294.84321)
+ (pt 527.15162 294.93162)
+ (pt 527.09256 295.02)
+ (pt 526.98744 295.02)
+ (pt 526.92838 294.93162)
+ (pt 526.79607 294.84321)
+ (pt 526.64 294.81217)
+ (pt 525.84 294.81217)
+ (pt 525.68393 294.84321)
+ (pt 525.64073 294.87207)
+ (pt 525.55116 294.81222)
+ (pt 525.2 294.74237)
+ (pt 524.84884 294.81222)
+ (pt 524.55114 295.01114)
+ (pt 524.35222 295.30884)
+ (pt 524.28237 295.66)
+ (pt 524.35222 296.01116)
+ (pt 524.55114 296.30886)
+ (pt 524.84884 296.50778)
+ (pt 525.2 296.57763)
+ (pt 525.55116 296.50778)
+ (pt 525.70962 296.4019)
+ (pt 525.84 296.42783)
+ (pt 526.64 296.42783)
+ (pt 526.79607 296.39679)
+ (pt 526.92838 296.30838)
+ (pt 526.98744 296.22)
+ (pt 527.09256 296.22)
+ (pt 527.15162 296.30838)
+ (pt 527.28393 296.39679)
+ (pt 527.44 296.42783)
+ (pt 528.24 296.42783)
+ (pt 528.39607 296.39679)
+ (pt 528.42468 296.37767)
+ (pt 528.50817 296.37767)
+ (pt 528.50817 297.124)
+ (pt 528.53921 297.28007)
+ (pt 528.62762 297.41238)
+ (pt 528.75993 297.50079)
+ (pt 528.916 297.53183)
+ (pt 531.964 297.53183)
+ (pt 532.12007 297.50079)
+ (pt 532.25238 297.41238)
+ (pt 532.34079 297.28007)
+ (pt 532.37183 297.124)
+ (pt 532.37183 294.076)
+ (pt 532.34079 293.91993)
+ (pt 532.25238 293.78762)
+ (pt 532.12007 293.69921)
+ (pt 531.964 293.66817)
+ (pt 531.23641 293.66817)
+ (pt 531.24778 293.65116)
+ (pt 531.31763 293.3)
+ (pt 531.24778 292.94884)
+ (pt 531.12492 292.76497)
+ (pt 531.16607 292.75679)
+ (pt 531.29838 292.66838)
+ (pt 531.38679 292.53607)
+ (pt 531.41783 292.38)
+ (pt 531.41783 291.18)
+ (pt 531.38679 291.02393)
+ (pt 531.36 290.98384)
+ (pt 531.36 290.57616)
+ (pt 531.38679 290.53607)
+ (pt 531.41783 290.38)
+ (pt 531.41783 290.33767)
+ (pt 533.23679 290.33767)
+ (pt 533.22533 290.34533)
+ (pt 533.07062 290.57688)
+ (pt 533.01629 290.85)
+ (pt 533.07062 291.12312)
+ (pt 533.22533 291.35467)
+ (pt 533.45688 291.50938)
+ (pt 533.73 291.56371)
+ (pt 534.12387 291.56371)
+ (pt 534.23 291.60767)
+ (pt 534.33613 291.56371)
+ (pt 534.73 291.56371)
+ (pt 535.00312 291.50938)
+ (pt 535.23467 291.35467)
+ (pt 535.38938 291.12312)
+ (pt 535.44371 290.85)
+ (pt 535.38938 290.57688)
+ (pt 535.23467 290.34533)
+ (pt 535.03961 290.215)
+ (pt 535.23467 290.08467)
+ (pt 535.38938 289.85312)
+ (pt 535.44371 289.58)
+ (pt 535.38938 289.30688)
+ (pt 535.23467 289.07533)
+ (pt 535.03961 288.945)
+ (pt 535.23467 288.81467)
+ (pt 535.38938 288.58312)
+ (pt 535.44371 288.31)
+ (pt 535.38938 288.03688)
+ (pt 535.23467 287.80533)
+ (pt 535.03961 287.675)
+ (pt 535.23467 287.54467)
+ (pt 535.38938 287.31312)
+ (pt 535.44371 287.04)
+ (pt 535.38938 286.76688)
+ (pt 535.23467 286.53533)
+ (pt 535.00312 286.38062)
+ (pt 534.73 286.32629)
+ (pt 534.33613 286.32629)
+ (pt 534.23 286.28233)
+ (pt 534.12387 286.32629)
+ (pt 533.73 286.32629)
+ (pt 533.45688 286.38062)
+ (pt 533.22533 286.53533)
+ (pt 533.07062 286.76688)
+ (pt 533.01629 287.04)
+ (pt 533.07062 287.31312)
+ (pt 533.22533 287.54467)
+ (pt 533.42039 287.675)
+ (pt 533.22533 287.80533)
+ (pt 533.07062 288.03688)
+ (pt 533.01629 288.31)
+ (pt 533.07062 288.58312)
+ (pt 533.22533 288.81467)
+ (pt 533.23679 288.82233)
+ (pt 531.19468 288.82233)
+ (pt 531.16607 288.80321)
+ (pt 531.01 288.77217)
+ (pt 529.71 288.77217)
+ (pt 529.55393 288.80321)
+ (pt 529.43552 288.88233)
+ (pt 525.36158 288.88233)
+ (pt 525.07 288.82433)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 542.22683 257.756)
+ (pt 542.19579 257.59993)
+ (pt 542.10738 257.46762)
+ (pt 541.97507 257.37921)
+ (pt 541.819 257.34817)
+ (pt 538.771 257.34817)
+ (pt 538.61493 257.37921)
+ (pt 538.48262 257.46762)
+ (pt 538.39421 257.59993)
+ (pt 538.36317 257.756)
+ (pt 538.36317 260.804)
+ (pt 538.39421 260.96007)
+ (pt 538.48262 261.09238)
+ (pt 538.61493 261.18079)
+ (pt 538.771 261.21183)
+ (pt 541.819 261.21183)
+ (pt 541.97507 261.18079)
+ (pt 542.10738 261.09238)
+ (pt 542.19579 260.96007)
+ (pt 542.22683 260.804)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 549.21183 257.756)
+ (pt 549.18079 257.59993)
+ (pt 549.09238 257.46762)
+ (pt 548.96007 257.37921)
+ (pt 548.804 257.34817)
+ (pt 545.756 257.34817)
+ (pt 545.59993 257.37921)
+ (pt 545.46762 257.46762)
+ (pt 545.37921 257.59993)
+ (pt 545.34817 257.756)
+ (pt 545.34817 260.804)
+ (pt 545.37921 260.96007)
+ (pt 545.46762 261.09238)
+ (pt 545.59993 261.18079)
+ (pt 545.756 261.21183)
+ (pt 545.8411 261.21183)
+ (pt 545.75162 261.27162)
+ (pt 545.66321 261.40393)
+ (pt 545.63217 261.56)
+ (pt 545.63217 262.77261)
+ (pt 545.47585 263.15)
+ (pt 545.47585 263.92757)
+ (pt 545.44821 263.96893)
+ (pt 545.41717 264.125)
+ (pt 545.41717 266.125)
+ (pt 545.44821 266.28107)
+ (pt 545.53662 266.41338)
+ (pt 545.66893 266.50179)
+ (pt 545.825 266.53283)
+ (pt 547.075 266.53283)
+ (pt 547.23107 266.50179)
+ (pt 547.36338 266.41338)
+ (pt 547.45179 266.28107)
+ (pt 547.48283 266.125)
+ (pt 547.48283 264.125)
+ (pt 547.45179 263.96893)
+ (pt 547.45105 263.96783)
+ (pt 548.04 263.96783)
+ (pt 548.19607 263.93679)
+ (pt 548.32838 263.84838)
+ (pt 548.41679 263.71607)
+ (pt 548.44783 263.56)
+ (pt 548.44783 261.56)
+ (pt 548.41679 261.40393)
+ (pt 548.32838 261.27162)
+ (pt 548.25415 261.22202)
+ (pt 548.25415 261.21183)
+ (pt 548.804 261.21183)
+ (pt 548.96007 261.18079)
+ (pt 549.09238 261.09238)
+ (pt 549.18079 260.96007)
+ (pt 549.21183 260.804)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 503.86886 403.77114)
+ (pt 503.57116 403.57222)
+ (pt 503.22 403.50237)
+ (pt 502.86884 403.57222)
+ (pt 502.57114 403.77114)
+ (pt 502.37222 404.06884)
+ (pt 502.30237 404.42)
+ (pt 502.37222 404.77116)
+ (pt 502.57114 405.06886)
+ (pt 502.86884 405.26778)
+ (pt 503.22 405.33763)
+ (pt 503.57116 405.26778)
+ (pt 503.86886 405.06886)
+ (pt 503.99316 404.88284)
+ (pt 504.05324 404.97276)
+ (pt 504.31786 405.14958)
+ (pt 504.63 405.21167)
+ (pt 505.13 405.21167)
+ (pt 505.44214 405.14958)
+ (pt 505.70676 404.97276)
+ (pt 505.88358 404.70814)
+ (pt 505.94567 404.396)
+ (pt 505.88358 404.08386)
+ (pt 505.70676 403.81924)
+ (pt 505.44214 403.64242)
+ (pt 505.13 403.58033)
+ (pt 504.63 403.58033)
+ (pt 504.31786 403.64242)
+ (pt 504.05324 403.81924)
+ (pt 503.97712 403.93316)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 373.8313)
+ (pt 496.5491 373.4509)
+ (pt 496.1687 373.19673)
+ (pt 495.72 373.10748)
+ (pt 495.2713 373.19673)
+ (pt 494.8909 373.4509)
+ (pt 494.63673 373.8313)
+ (pt 494.54748 374.28)
+ (pt 494.63673 374.7287)
+ (pt 494.8909 375.1091)
+ (pt 495.2713 375.36327)
+ (pt 495.72 375.45252)
+ (pt 496.1687 375.36327)
+ (pt 496.5491 375.1091)
+ (pt 496.80327 374.7287)
+ (pt 496.89252 374.28)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 381.4513)
+ (pt 496.5491 381.0709)
+ (pt 496.1687 380.81673)
+ (pt 495.72 380.72748)
+ (pt 495.2713 380.81673)
+ (pt 494.8909 381.0709)
+ (pt 494.63673 381.4513)
+ (pt 494.54748 381.9)
+ (pt 494.63673 382.3487)
+ (pt 494.8909 382.7291)
+ (pt 495.07056 382.84914)
+ (pt 495.07056 388.27718)
+ (pt 494.71485 388.51485)
+ (pt 494.44963 388.91179)
+ (pt 494.3565 389.38)
+ (pt 494.44963 389.84821)
+ (pt 494.71485 390.24515)
+ (pt 495.11179 390.51037)
+ (pt 495.58 390.6035)
+ (pt 496.04821 390.51037)
+ (pt 496.44515 390.24515)
+ (pt 496.71037 389.84821)
+ (pt 496.8035 389.38)
+ (pt 496.71037 388.91179)
+ (pt 496.44515 388.51485)
+ (pt 496.36944 388.46426)
+ (pt 496.36944 382.84914)
+ (pt 496.5491 382.7291)
+ (pt 496.80327 382.3487)
+ (pt 496.89252 381.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 514.36467 396.03533)
+ (pt 514.13312 395.88062)
+ (pt 513.86 395.82629)
+ (pt 513.58688 395.88062)
+ (pt 513.35533 396.03533)
+ (pt 513.225 396.23039)
+ (pt 513.09467 396.03533)
+ (pt 512.86312 395.88062)
+ (pt 512.59 395.82629)
+ (pt 512.31688 395.88062)
+ (pt 512.08533 396.03533)
+ (pt 511.955 396.23039)
+ (pt 511.82467 396.03533)
+ (pt 511.59312 395.88062)
+ (pt 511.32 395.82629)
+ (pt 511.04688 395.88062)
+ (pt 510.81533 396.03533)
+ (pt 510.66062 396.26688)
+ (pt 510.60629 396.54)
+ (pt 510.60629 397.54)
+ (pt 510.66062 397.81312)
+ (pt 510.81533 398.04467)
+ (pt 511.04688 398.19938)
+ (pt 511.32 398.25371)
+ (pt 511.59312 398.19938)
+ (pt 511.82467 398.04467)
+ (pt 511.94056 397.87122)
+ (pt 511.94056 398.02697)
+ (pt 511.75222 398.30884)
+ (pt 511.68237 398.66)
+ (pt 511.75222 399.01116)
+ (pt 511.95114 399.30886)
+ (pt 512.24884 399.50778)
+ (pt 512.6 399.57763)
+ (pt 512.95116 399.50778)
+ (pt 513.24886 399.30886)
+ (pt 513.44778 399.01116)
+ (pt 513.51763 398.66)
+ (pt 513.44778 398.30884)
+ (pt 513.24886 398.01114)
+ (pt 513.23944 398.00485)
+ (pt 513.23944 397.87122)
+ (pt 513.35533 398.04467)
+ (pt 513.58688 398.19938)
+ (pt 513.86 398.25371)
+ (pt 514.13312 398.19938)
+ (pt 514.36467 398.04467)
+ (pt 514.495 397.84961)
+ (pt 514.62533 398.04467)
+ (pt 514.85688 398.19938)
+ (pt 515.13 398.25371)
+ (pt 515.40312 398.19938)
+ (pt 515.63467 398.04467)
+ (pt 515.78938 397.81312)
+ (pt 515.84371 397.54)
+ (pt 515.84371 396.54)
+ (pt 515.78938 396.26688)
+ (pt 515.6412 396.0451)
+ (pt 515.6412 395.9608)
+ (pt 515.74886 395.88886)
+ (pt 515.94778 395.59116)
+ (pt 516.01763 395.24)
+ (pt 515.94778 394.88884)
+ (pt 515.74886 394.59114)
+ (pt 515.45116 394.39222)
+ (pt 515.1 394.32237)
+ (pt 514.74884 394.39222)
+ (pt 514.45114 394.59114)
+ (pt 514.25222 394.88884)
+ (pt 514.18237 395.24)
+ (pt 514.25222 395.59116)
+ (pt 514.45114 395.88886)
+ (pt 514.5588 395.9608)
+ (pt 514.5588 396.1349)
+ (pt 514.495 396.23039)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 601.26778 337.70884)
+ (pt 601.06886 337.41114)
+ (pt 600.77116 337.21222)
+ (pt 600.42 337.14237)
+ (pt 600.06884 337.21222)
+ (pt 599.77114 337.41114)
+ (pt 599.57222 337.70884)
+ (pt 599.50237 338.06)
+ (pt 599.57222 338.41116)
+ (pt 599.77114 338.70886)
+ (pt 600.06884 338.90778)
+ (pt 600.42 338.97763)
+ (pt 600.77116 338.90778)
+ (pt 601.06886 338.70886)
+ (pt 601.26778 338.41116)
+ (pt 601.33763 338.06)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.25783 381.15)
+ (pt 489.22679 380.99393)
+ (pt 489.13838 380.86162)
+ (pt 489.00607 380.77321)
+ (pt 488.85 380.74217)
+ (pt 487.35 380.74217)
+ (pt 487.19393 380.77321)
+ (pt 487.06162 380.86162)
+ (pt 486.97321 380.99393)
+ (pt 486.94217 381.15)
+ (pt 486.94217 382.65)
+ (pt 486.97321 382.80607)
+ (pt 487.06162 382.93838)
+ (pt 487.19393 383.02679)
+ (pt 487.35 383.05783)
+ (pt 487.45056 383.05783)
+ (pt 487.45056 388.27718)
+ (pt 487.09485 388.51485)
+ (pt 486.82963 388.91179)
+ (pt 486.7365 389.38)
+ (pt 486.82963 389.84821)
+ (pt 487.09485 390.24515)
+ (pt 487.31056 390.38928)
+ (pt 487.31056 393.49217)
+ (pt 486.96 393.49217)
+ (pt 486.80393 393.52321)
+ (pt 486.67162 393.61162)
+ (pt 486.58321 393.74393)
+ (pt 486.55217 393.9)
+ (pt 486.55217 395.7)
+ (pt 486.58321 395.85607)
+ (pt 486.67162 395.98838)
+ (pt 486.79377 396.07)
+ (pt 486.67162 396.15162)
+ (pt 486.58321 396.28393)
+ (pt 486.55217 396.44)
+ (pt 486.55217 398.24)
+ (pt 486.58321 398.39607)
+ (pt 486.67162 398.52838)
+ (pt 486.80393 398.61679)
+ (pt 486.96 398.64783)
+ (pt 488.76 398.64783)
+ (pt 488.91607 398.61679)
+ (pt 489.04838 398.52838)
+ (pt 489.13679 398.39607)
+ (pt 489.16783 398.24)
+ (pt 489.16783 396.44)
+ (pt 489.13679 396.28393)
+ (pt 489.04838 396.15162)
+ (pt 488.92623 396.07)
+ (pt 489.04838 395.98838)
+ (pt 489.13679 395.85607)
+ (pt 489.16783 395.7)
+ (pt 489.16783 393.9)
+ (pt 489.13679 393.74393)
+ (pt 489.04838 393.61162)
+ (pt 488.91607 393.52321)
+ (pt 488.76 393.49217)
+ (pt 488.60944 393.49217)
+ (pt 488.60944 390.38928)
+ (pt 488.82515 390.24515)
+ (pt 489.09037 389.84821)
+ (pt 489.1835 389.38)
+ (pt 489.09037 388.91179)
+ (pt 488.82515 388.51485)
+ (pt 488.74944 388.46426)
+ (pt 488.74944 383.05783)
+ (pt 488.85 383.05783)
+ (pt 489.00607 383.02679)
+ (pt 489.13838 382.93838)
+ (pt 489.22679 382.80607)
+ (pt 489.25783 382.65)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 510.35256 377.16)
+ (pt 510.41162 377.24838)
+ (pt 510.54393 377.33679)
+ (pt 510.7 377.36783)
+ (pt 511.5 377.36783)
+ (pt 511.65607 377.33679)
+ (pt 511.76568 377.26355)
+ (pt 512.03299 377.26355)
+ (pt 512.24884 377.40778)
+ (pt 512.6 377.47763)
+ (pt 512.95116 377.40778)
+ (pt 513.07722 377.32355)
+ (pt 513.49432 377.32355)
+ (pt 513.60393 377.39679)
+ (pt 513.76 377.42783)
+ (pt 514.56 377.42783)
+ (pt 514.71607 377.39679)
+ (pt 514.84838 377.30838)
+ (pt 514.90744 377.22)
+ (pt 515.01256 377.22)
+ (pt 515.07162 377.30838)
+ (pt 515.20393 377.39679)
+ (pt 515.36 377.42783)
+ (pt 516.16 377.42783)
+ (pt 516.31607 377.39679)
+ (pt 516.44838 377.30838)
+ (pt 516.51965 377.20173)
+ (pt 516.55114 377.24886)
+ (pt 516.84884 377.44778)
+ (pt 517.2 377.51763)
+ (pt 517.55116 377.44778)
+ (pt 517.84886 377.24886)
+ (pt 518.04778 376.95116)
+ (pt 518.11763 376.6)
+ (pt 518.04778 376.24884)
+ (pt 517.84886 375.95114)
+ (pt 517.55116 375.75222)
+ (pt 517.2 375.68237)
+ (pt 516.84884 375.75222)
+ (pt 516.55114 375.95114)
+ (pt 516.50628 376.01827)
+ (pt 516.44838 375.93162)
+ (pt 516.31607 375.84321)
+ (pt 516.16 375.81217)
+ (pt 515.36 375.81217)
+ (pt 515.20393 375.84321)
+ (pt 515.07162 375.93162)
+ (pt 515.01256 376.02)
+ (pt 514.90744 376.02)
+ (pt 514.84838 375.93162)
+ (pt 514.71607 375.84321)
+ (pt 514.56 375.81217)
+ (pt 513.76 375.81217)
+ (pt 513.60393 375.84321)
+ (pt 513.49432 375.91645)
+ (pt 513.30355 375.91645)
+ (pt 513.30355 374.92712)
+ (pt 513.45607 374.89679)
+ (pt 513.58838 374.80838)
+ (pt 513.67679 374.67607)
+ (pt 513.70783 374.52)
+ (pt 513.70783 372.72)
+ (pt 513.67679 372.56393)
+ (pt 513.58838 372.43162)
+ (pt 513.45607 372.34321)
+ (pt 513.3 372.31217)
+ (pt 511.3 372.31217)
+ (pt 511.14393 372.34321)
+ (pt 511.01162 372.43162)
+ (pt 510.92321 372.56393)
+ (pt 510.89217 372.72)
+ (pt 510.89217 374.52)
+ (pt 510.92321 374.67607)
+ (pt 511.01162 374.80838)
+ (pt 511.14393 374.89679)
+ (pt 511.3 374.92783)
+ (pt 511.89645 374.92783)
+ (pt 511.89645 375.85645)
+ (pt 511.76568 375.85645)
+ (pt 511.65607 375.78321)
+ (pt 511.5 375.75217)
+ (pt 510.7 375.75217)
+ (pt 510.54393 375.78321)
+ (pt 510.41162 375.87162)
+ (pt 510.35256 375.96)
+ (pt 510.24744 375.96)
+ (pt 510.18838 375.87162)
+ (pt 510.05607 375.78321)
+ (pt 509.9 375.75217)
+ (pt 509.68713 375.75217)
+ (pt 508.86279 374.92783)
+ (pt 509.0 374.92783)
+ (pt 509.15607 374.89679)
+ (pt 509.28838 374.80838)
+ (pt 509.37679 374.67607)
+ (pt 509.40783 374.52)
+ (pt 509.40783 372.72)
+ (pt 509.37679 372.56393)
+ (pt 509.28838 372.43162)
+ (pt 509.15607 372.34321)
+ (pt 509.0 372.31217)
+ (pt 507.0 372.31217)
+ (pt 506.84393 372.34321)
+ (pt 506.71162 372.43162)
+ (pt 506.62321 372.56393)
+ (pt 506.59217 372.72)
+ (pt 506.59217 374.52)
+ (pt 506.62321 374.67607)
+ (pt 506.71162 374.80838)
+ (pt 506.84393 374.89679)
+ (pt 507.0 374.92783)
+ (pt 507.29645 374.92783)
+ (pt 507.29645 375.06)
+ (pt 507.50252 375.55748)
+ (pt 508.69217 376.74713)
+ (pt 508.69217 376.96)
+ (pt 508.72321 377.11607)
+ (pt 508.81162 377.24838)
+ (pt 508.94393 377.33679)
+ (pt 509.1 377.36783)
+ (pt 509.9 377.36783)
+ (pt 510.05607 377.33679)
+ (pt 510.18838 377.24838)
+ (pt 510.24744 377.16)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 479.645 349.21717)
+ (pt 479.48893 349.24821)
+ (pt 479.44757 349.27585)
+ (pt 479.19905 349.27585)
+ (pt 479.17679 349.16393)
+ (pt 479.08838 349.03162)
+ (pt 478.95607 348.94321)
+ (pt 478.8 348.91217)
+ (pt 476.8 348.91217)
+ (pt 476.64393 348.94321)
+ (pt 476.51162 349.03162)
+ (pt 476.42321 349.16393)
+ (pt 476.39217 349.32)
+ (pt 476.39217 351.32)
+ (pt 476.42321 351.47607)
+ (pt 476.51162 351.60838)
+ (pt 476.64393 351.69679)
+ (pt 476.8 351.72783)
+ (pt 478.8 351.72783)
+ (pt 478.95607 351.69679)
+ (pt 479.08838 351.60838)
+ (pt 479.17679 351.47607)
+ (pt 479.20783 351.32)
+ (pt 479.20783 351.22415)
+ (pt 479.44757 351.22415)
+ (pt 479.48893 351.25179)
+ (pt 479.645 351.28283)
+ (pt 481.645 351.28283)
+ (pt 481.80107 351.25179)
+ (pt 481.93338 351.16338)
+ (pt 482.02179 351.03107)
+ (pt 482.05283 350.875)
+ (pt 482.05283 349.625)
+ (pt 482.02179 349.46893)
+ (pt 481.93338 349.33662)
+ (pt 481.80107 349.24821)
+ (pt 481.645 349.21717)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 419.44683 309.676)
+ (pt 419.41579 309.51993)
+ (pt 419.32738 309.38762)
+ (pt 419.19507 309.29921)
+ (pt 419.039 309.26817)
+ (pt 415.991 309.26817)
+ (pt 415.83493 309.29921)
+ (pt 415.70262 309.38762)
+ (pt 415.61421 309.51993)
+ (pt 415.58317 309.676)
+ (pt 415.58317 310.54043)
+ (pt 415.45116 310.45222)
+ (pt 415.1 310.38237)
+ (pt 414.74884 310.45222)
+ (pt 414.45114 310.65114)
+ (pt 414.25222 310.94884)
+ (pt 414.18237 311.3)
+ (pt 414.25222 311.65116)
+ (pt 414.45114 311.94886)
+ (pt 414.74884 312.14778)
+ (pt 415.1 312.21763)
+ (pt 415.45116 312.14778)
+ (pt 415.58317 312.05957)
+ (pt 415.58317 312.724)
+ (pt 415.61421 312.88007)
+ (pt 415.70262 313.01238)
+ (pt 415.83493 313.10079)
+ (pt 415.991 313.13183)
+ (pt 419.039 313.13183)
+ (pt 419.19507 313.10079)
+ (pt 419.32738 313.01238)
+ (pt 419.41579 312.88007)
+ (pt 419.44683 312.724)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.18327 373.8313)
+ (pt 488.9291 373.4509)
+ (pt 488.5487 373.19673)
+ (pt 488.1 373.10748)
+ (pt 487.6513 373.19673)
+ (pt 487.2709 373.4509)
+ (pt 487.01673 373.8313)
+ (pt 486.98271 374.00233)
+ (pt 485.45287 375.53217)
+ (pt 485.24 375.53217)
+ (pt 485.08393 375.56321)
+ (pt 484.95162 375.65162)
+ (pt 484.86321 375.78393)
+ (pt 484.83217 375.94)
+ (pt 484.83217 376.74)
+ (pt 484.86321 376.89607)
+ (pt 484.95162 377.02838)
+ (pt 485.04 377.08744)
+ (pt 485.04 377.19256)
+ (pt 484.95162 377.25162)
+ (pt 484.86321 377.38393)
+ (pt 484.83217 377.54)
+ (pt 484.83217 378.34)
+ (pt 484.86321 378.49607)
+ (pt 484.95162 378.62838)
+ (pt 485.08393 378.71679)
+ (pt 485.24 378.74783)
+ (pt 485.45287 378.74783)
+ (pt 486.56252 379.85748)
+ (pt 487.06 380.06355)
+ (pt 487.18701 380.06355)
+ (pt 487.2709 380.1891)
+ (pt 487.6513 380.44327)
+ (pt 488.1 380.53252)
+ (pt 488.5487 380.44327)
+ (pt 488.9291 380.1891)
+ (pt 489.18327 379.8087)
+ (pt 489.27252 379.36)
+ (pt 489.18327 378.9113)
+ (pt 488.9291 378.5309)
+ (pt 488.5487 378.27673)
+ (pt 488.1 378.18748)
+ (pt 487.6513 378.27673)
+ (pt 487.2709 378.5309)
+ (pt 487.25286 378.5579)
+ (pt 486.44783 377.75287)
+ (pt 486.44783 377.54)
+ (pt 486.41679 377.38393)
+ (pt 486.32838 377.25162)
+ (pt 486.24 377.19256)
+ (pt 486.24 377.08744)
+ (pt 486.32838 377.02838)
+ (pt 486.41679 376.89607)
+ (pt 486.44783 376.74)
+ (pt 486.44783 376.52713)
+ (pt 487.62756 375.3474)
+ (pt 487.6513 375.36327)
+ (pt 488.1 375.45252)
+ (pt 488.5487 375.36327)
+ (pt 488.9291 375.1091)
+ (pt 489.18327 374.7287)
+ (pt 489.27252 374.28)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 382.64778 273.52884)
+ (pt 382.44886 273.23114)
+ (pt 382.15116 273.03222)
+ (pt 381.8 272.96237)
+ (pt 381.44884 273.03222)
+ (pt 381.15114 273.23114)
+ (pt 380.95222 273.52884)
+ (pt 380.88237 273.88)
+ (pt 380.95222 274.23116)
+ (pt 381.15114 274.52886)
+ (pt 381.44884 274.72778)
+ (pt 381.8 274.79763)
+ (pt 382.15116 274.72778)
+ (pt 382.44886 274.52886)
+ (pt 382.64778 274.23116)
+ (pt 382.71763 273.88)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 379.57912 266.39912)
+ (pt 379.26616 266.86751)
+ (pt 379.15626 267.42)
+ (pt 379.26616 267.97249)
+ (pt 379.57912 268.44088)
+ (pt 380.04751 268.75384)
+ (pt 380.6 268.86374)
+ (pt 381.15249 268.75384)
+ (pt 381.62088 268.44088)
+ (pt 381.87 268.06804)
+ (pt 382.11912 268.44088)
+ (pt 382.58751 268.75384)
+ (pt 383.14 268.86374)
+ (pt 383.69249 268.75384)
+ (pt 384.16088 268.44088)
+ (pt 384.47384 267.97249)
+ (pt 384.58374 267.42)
+ (pt 384.47384 266.86751)
+ (pt 384.16088 266.39912)
+ (pt 383.78804 266.15)
+ (pt 384.16088 265.90088)
+ (pt 384.47384 265.43249)
+ (pt 384.58374 264.88)
+ (pt 384.50158 264.46696)
+ (pt 386.47731 266.44269)
+ (pt 386.86 266.6012)
+ (pt 389.33948 266.6012)
+ (pt 389.36324 266.63676)
+ (pt 389.62786 266.81358)
+ (pt 389.94 266.87567)
+ (pt 390.25214 266.81358)
+ (pt 390.51676 266.63676)
+ (pt 390.69358 266.37214)
+ (pt 390.75567 266.06)
+ (pt 390.69358 265.74786)
+ (pt 390.51676 265.48324)
+ (pt 390.25214 265.30642)
+ (pt 389.94 265.24433)
+ (pt 389.62786 265.30642)
+ (pt 389.36324 265.48324)
+ (pt 389.33948 265.5188)
+ (pt 387.08418 265.5188)
+ (pt 384.46744 262.90206)
+ (pt 384.47384 262.89249)
+ (pt 384.58374 262.34)
+ (pt 384.47384 261.78751)
+ (pt 384.16088 261.31912)
+ (pt 383.78804 261.07)
+ (pt 384.16088 260.82088)
+ (pt 384.47384 260.35249)
+ (pt 384.58374 259.8)
+ (pt 384.47384 259.24751)
+ (pt 384.16088 258.77912)
+ (pt 384.01826 258.68383)
+ (pt 384.156 258.68383)
+ (pt 384.31207 258.65279)
+ (pt 384.44438 258.56438)
+ (pt 384.53279 258.43207)
+ (pt 384.56383 258.276)
+ (pt 384.56383 256.244)
+ (pt 384.53279 256.08793)
+ (pt 384.44438 255.95562)
+ (pt 384.31207 255.86721)
+ (pt 384.156 255.83617)
+ (pt 382.124 255.83617)
+ (pt 381.96793 255.86721)
+ (pt 381.83562 255.95562)
+ (pt 381.74721 256.08793)
+ (pt 381.71617 256.244)
+ (pt 381.71617 256.38174)
+ (pt 381.62088 256.23912)
+ (pt 381.15249 255.92616)
+ (pt 380.6 255.81626)
+ (pt 380.04751 255.92616)
+ (pt 379.57912 256.23912)
+ (pt 379.26616 256.70751)
+ (pt 379.15626 257.26)
+ (pt 379.26616 257.81249)
+ (pt 379.57912 258.28088)
+ (pt 379.95196 258.53)
+ (pt 379.57912 258.77912)
+ (pt 379.26616 259.24751)
+ (pt 379.15626 259.8)
+ (pt 379.26616 260.35249)
+ (pt 379.57912 260.82088)
+ (pt 379.95196 261.07)
+ (pt 379.57912 261.31912)
+ (pt 379.26616 261.78751)
+ (pt 379.15626 262.34)
+ (pt 379.26616 262.89249)
+ (pt 379.57912 263.36088)
+ (pt 379.95196 263.61)
+ (pt 379.57912 263.85912)
+ (pt 379.26616 264.32751)
+ (pt 379.15626 264.88)
+ (pt 379.26616 265.43249)
+ (pt 379.57912 265.90088)
+ (pt 379.95196 266.15)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.22457 333.49277)
+ (pt 374.93724 333.06276)
+ (pt 374.50723 332.77543)
+ (pt 374.0 332.67454)
+ (pt 373.49277 332.77543)
+ (pt 373.06276 333.06276)
+ (pt 372.77543 333.49277)
+ (pt 372.67454 334.0)
+ (pt 372.77543 334.50723)
+ (pt 373.06276 334.93724)
+ (pt 373.49277 335.22457)
+ (pt 374.0 335.32546)
+ (pt 374.50723 335.22457)
+ (pt 374.93724 334.93724)
+ (pt 375.22457 334.50723)
+ (pt 375.32546 334.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 590.5 379.90783)
+ (pt 590.65607 379.87679)
+ (pt 590.78838 379.78838)
+ (pt 590.87679 379.65607)
+ (pt 590.90783 379.5)
+ (pt 590.90783 378.5)
+ (pt 590.87679 378.34393)
+ (pt 590.78838 378.21162)
+ (pt 590.65607 378.12321)
+ (pt 590.5 378.09217)
+ (pt 589.5 378.09217)
+ (pt 589.34393 378.12321)
+ (pt 589.21162 378.21162)
+ (pt 589.12321 378.34393)
+ (pt 589.09217 378.5)
+ (pt 589.09217 379.5)
+ (pt 589.12321 379.65607)
+ (pt 589.21162 379.78838)
+ (pt 589.34393 379.87679)
+ (pt 589.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 593.0 379.90783)
+ (pt 593.15607 379.87679)
+ (pt 593.28838 379.78838)
+ (pt 593.37679 379.65607)
+ (pt 593.40783 379.5)
+ (pt 593.40783 378.5)
+ (pt 593.37679 378.34393)
+ (pt 593.28838 378.21162)
+ (pt 593.15607 378.12321)
+ (pt 593.0 378.09217)
+ (pt 592.0 378.09217)
+ (pt 591.84393 378.12321)
+ (pt 591.71162 378.21162)
+ (pt 591.62321 378.34393)
+ (pt 591.59217 378.5)
+ (pt 591.59217 379.5)
+ (pt 591.62321 379.65607)
+ (pt 591.71162 379.78838)
+ (pt 591.84393 379.87679)
+ (pt 592.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 402.06243)
+ (pt 639.79438 401.79438)
+ (pt 640.06243 401.39321)
+ (pt 640.15656 400.92)
+ (pt 640.06243 400.44679)
+ (pt 639.79438 400.04562)
+ (pt 639.39321 399.77757)
+ (pt 638.92 399.68344)
+ (pt 638.44679 399.77757)
+ (pt 638.04562 400.04562)
+ (pt 637.77757 400.44679)
+ (pt 637.68344 400.92)
+ (pt 637.77757 401.39321)
+ (pt 638.04562 401.79438)
+ (pt 638.44679 402.06243)
+ (pt 638.92 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 399.52243)
+ (pt 639.79438 399.25438)
+ (pt 640.06243 398.85321)
+ (pt 640.15656 398.38)
+ (pt 640.06243 397.90679)
+ (pt 639.79438 397.50562)
+ (pt 639.39321 397.23757)
+ (pt 638.92 397.14344)
+ (pt 638.44679 397.23757)
+ (pt 638.04562 397.50562)
+ (pt 637.77757 397.90679)
+ (pt 637.68344 398.38)
+ (pt 637.77757 398.85321)
+ (pt 638.04562 399.25438)
+ (pt 638.44679 399.52243)
+ (pt 638.92 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 394.44243)
+ (pt 639.79438 394.17438)
+ (pt 640.06243 393.77321)
+ (pt 640.15656 393.3)
+ (pt 640.06243 392.82679)
+ (pt 639.79438 392.42562)
+ (pt 639.39321 392.15757)
+ (pt 638.92 392.06344)
+ (pt 638.44679 392.15757)
+ (pt 638.04562 392.42562)
+ (pt 637.77757 392.82679)
+ (pt 637.68344 393.3)
+ (pt 637.77757 393.77321)
+ (pt 638.04562 394.17438)
+ (pt 638.44679 394.44243)
+ (pt 638.92 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 524.15358 409.88786)
+ (pt 523.97676 409.62324)
+ (pt 523.71214 409.44642)
+ (pt 523.4 409.38433)
+ (pt 523.08786 409.44642)
+ (pt 522.82324 409.62324)
+ (pt 522.64642 409.88786)
+ (pt 522.58433 410.2)
+ (pt 522.64642 410.51214)
+ (pt 522.82324 410.77676)
+ (pt 523.08786 410.95358)
+ (pt 523.4 411.01567)
+ (pt 523.71214 410.95358)
+ (pt 523.97676 410.77676)
+ (pt 524.15358 410.51214)
+ (pt 524.21567 410.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 391.90243)
+ (pt 639.79438 391.63438)
+ (pt 640.06243 391.23321)
+ (pt 640.15656 390.76)
+ (pt 640.06243 390.28679)
+ (pt 639.79438 389.88562)
+ (pt 639.39321 389.61757)
+ (pt 638.92 389.52344)
+ (pt 638.44679 389.61757)
+ (pt 638.04562 389.88562)
+ (pt 637.77757 390.28679)
+ (pt 637.68344 390.76)
+ (pt 637.77757 391.23321)
+ (pt 638.04562 391.63438)
+ (pt 638.44679 391.90243)
+ (pt 638.92 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 455.40243)
+ (pt 639.79438 455.13438)
+ (pt 640.06243 454.73321)
+ (pt 640.15656 454.26)
+ (pt 640.06243 453.78679)
+ (pt 639.79438 453.38562)
+ (pt 639.39321 453.11757)
+ (pt 638.92 453.02344)
+ (pt 638.44679 453.11757)
+ (pt 638.04562 453.38562)
+ (pt 637.77757 453.78679)
+ (pt 637.68344 454.26)
+ (pt 637.77757 454.73321)
+ (pt 638.04562 455.13438)
+ (pt 638.44679 455.40243)
+ (pt 638.92 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 379.20243)
+ (pt 639.79438 378.93438)
+ (pt 640.06243 378.53321)
+ (pt 640.15656 378.06)
+ (pt 640.06243 377.58679)
+ (pt 639.79438 377.18562)
+ (pt 639.39321 376.91757)
+ (pt 638.92 376.82344)
+ (pt 638.44679 376.91757)
+ (pt 638.04562 377.18562)
+ (pt 637.77757 377.58679)
+ (pt 637.68344 378.06)
+ (pt 637.77757 378.53321)
+ (pt 638.04562 378.93438)
+ (pt 638.44679 379.20243)
+ (pt 638.92 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 324.64243)
+ (pt 642.23438 324.37438)
+ (pt 642.50243 323.97321)
+ (pt 642.59656 323.5)
+ (pt 642.50243 323.02679)
+ (pt 642.23438 322.62562)
+ (pt 641.83321 322.35757)
+ (pt 641.36 322.26344)
+ (pt 640.88679 322.35757)
+ (pt 640.48562 322.62562)
+ (pt 640.21757 323.02679)
+ (pt 640.12344 323.5)
+ (pt 640.21757 323.97321)
+ (pt 640.48562 324.37438)
+ (pt 640.88679 324.64243)
+ (pt 641.36 324.73656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 384.28243)
+ (pt 639.79438 384.01438)
+ (pt 640.06243 383.61321)
+ (pt 640.15656 383.14)
+ (pt 640.06243 382.66679)
+ (pt 639.79438 382.26562)
+ (pt 639.39321 381.99757)
+ (pt 638.92 381.90344)
+ (pt 638.44679 381.99757)
+ (pt 638.04562 382.26562)
+ (pt 637.77757 382.66679)
+ (pt 637.68344 383.14)
+ (pt 637.77757 383.61321)
+ (pt 638.04562 384.01438)
+ (pt 638.44679 384.28243)
+ (pt 638.92 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 317.02243)
+ (pt 642.23438 316.75438)
+ (pt 642.50243 316.35321)
+ (pt 642.59656 315.88)
+ (pt 642.50243 315.40679)
+ (pt 642.23438 315.00562)
+ (pt 641.83321 314.73757)
+ (pt 641.36 314.64344)
+ (pt 640.88679 314.73757)
+ (pt 640.48562 315.00562)
+ (pt 640.21757 315.40679)
+ (pt 640.12344 315.88)
+ (pt 640.21757 316.35321)
+ (pt 640.48562 316.75438)
+ (pt 640.88679 317.02243)
+ (pt 641.36 317.11656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 319.56243)
+ (pt 642.23438 319.29438)
+ (pt 642.50243 318.89321)
+ (pt 642.59656 318.42)
+ (pt 642.50243 317.94679)
+ (pt 642.23438 317.54562)
+ (pt 641.83321 317.27757)
+ (pt 641.36 317.18344)
+ (pt 640.88679 317.27757)
+ (pt 640.48562 317.54562)
+ (pt 640.21757 317.94679)
+ (pt 640.12344 318.42)
+ (pt 640.21757 318.89321)
+ (pt 640.48562 319.29438)
+ (pt 640.88679 319.56243)
+ (pt 641.36 319.65656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 324.64243)
+ (pt 639.69438 324.37438)
+ (pt 639.96243 323.97321)
+ (pt 640.05656 323.5)
+ (pt 639.96243 323.02679)
+ (pt 639.69438 322.62562)
+ (pt 639.29321 322.35757)
+ (pt 638.82 322.26344)
+ (pt 638.34679 322.35757)
+ (pt 637.94562 322.62562)
+ (pt 637.67757 323.02679)
+ (pt 637.58344 323.5)
+ (pt 637.67757 323.97321)
+ (pt 637.94562 324.37438)
+ (pt 638.34679 324.64243)
+ (pt 638.82 324.73656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 311.94243)
+ (pt 642.23438 311.67438)
+ (pt 642.50243 311.27321)
+ (pt 642.59656 310.8)
+ (pt 642.50243 310.32679)
+ (pt 642.23438 309.92562)
+ (pt 641.83321 309.65757)
+ (pt 641.36 309.56344)
+ (pt 640.88679 309.65757)
+ (pt 640.48562 309.92562)
+ (pt 640.21757 310.32679)
+ (pt 640.12344 310.8)
+ (pt 640.21757 311.27321)
+ (pt 640.48562 311.67438)
+ (pt 640.88679 311.94243)
+ (pt 641.36 312.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 301.78243)
+ (pt 642.23438 301.51438)
+ (pt 642.50243 301.11321)
+ (pt 642.59656 300.64)
+ (pt 642.50243 300.16679)
+ (pt 642.23438 299.76562)
+ (pt 641.83321 299.49757)
+ (pt 641.36 299.40344)
+ (pt 640.88679 299.49757)
+ (pt 640.48562 299.76562)
+ (pt 640.21757 300.16679)
+ (pt 640.12344 300.64)
+ (pt 640.21757 301.11321)
+ (pt 640.48562 301.51438)
+ (pt 640.88679 301.78243)
+ (pt 641.36 301.87656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 309.40243)
+ (pt 642.23438 309.13438)
+ (pt 642.50243 308.73321)
+ (pt 642.59656 308.26)
+ (pt 642.50243 307.78679)
+ (pt 642.23438 307.38562)
+ (pt 641.83321 307.11757)
+ (pt 641.36 307.02344)
+ (pt 640.88679 307.11757)
+ (pt 640.48562 307.38562)
+ (pt 640.21757 307.78679)
+ (pt 640.12344 308.26)
+ (pt 640.21757 308.73321)
+ (pt 640.48562 309.13438)
+ (pt 640.88679 309.40243)
+ (pt 641.36 309.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 271.30243)
+ (pt 642.23438 271.03438)
+ (pt 642.50243 270.63321)
+ (pt 642.59656 270.16)
+ (pt 642.50243 269.68679)
+ (pt 642.23438 269.28562)
+ (pt 641.83321 269.01757)
+ (pt 641.36 268.92344)
+ (pt 640.88679 269.01757)
+ (pt 640.48562 269.28562)
+ (pt 640.21757 269.68679)
+ (pt 640.12344 270.16)
+ (pt 640.21757 270.63321)
+ (pt 640.48562 271.03438)
+ (pt 640.88679 271.30243)
+ (pt 641.36 271.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 273.84243)
+ (pt 642.23438 273.57438)
+ (pt 642.50243 273.17321)
+ (pt 642.59656 272.7)
+ (pt 642.50243 272.22679)
+ (pt 642.23438 271.82562)
+ (pt 641.83321 271.55757)
+ (pt 641.36 271.46344)
+ (pt 640.88679 271.55757)
+ (pt 640.48562 271.82562)
+ (pt 640.21757 272.22679)
+ (pt 640.12344 272.7)
+ (pt 640.21757 273.17321)
+ (pt 640.48562 273.57438)
+ (pt 640.88679 273.84243)
+ (pt 641.36 273.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 278.92243)
+ (pt 642.23438 278.65438)
+ (pt 642.50243 278.25321)
+ (pt 642.59656 277.78)
+ (pt 642.50243 277.30679)
+ (pt 642.23438 276.90562)
+ (pt 641.83321 276.63757)
+ (pt 641.36 276.54344)
+ (pt 640.88679 276.63757)
+ (pt 640.48562 276.90562)
+ (pt 640.21757 277.30679)
+ (pt 640.12344 277.78)
+ (pt 640.21757 278.25321)
+ (pt 640.48562 278.65438)
+ (pt 640.88679 278.92243)
+ (pt 641.36 279.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 585.5 379.90783)
+ (pt 585.65607 379.87679)
+ (pt 585.78838 379.78838)
+ (pt 585.87679 379.65607)
+ (pt 585.90783 379.5)
+ (pt 585.90783 378.5)
+ (pt 585.87679 378.34393)
+ (pt 585.78838 378.21162)
+ (pt 585.65607 378.12321)
+ (pt 585.5 378.09217)
+ (pt 584.5 378.09217)
+ (pt 584.34393 378.12321)
+ (pt 584.21162 378.21162)
+ (pt 584.12321 378.34393)
+ (pt 584.09217 378.5)
+ (pt 584.09217 379.5)
+ (pt 584.12321 379.65607)
+ (pt 584.21162 379.78838)
+ (pt 584.34393 379.87679)
+ (pt 584.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 263.68243)
+ (pt 642.23438 263.41438)
+ (pt 642.50243 263.01321)
+ (pt 642.59656 262.54)
+ (pt 642.50243 262.06679)
+ (pt 642.23438 261.66562)
+ (pt 641.83321 261.39757)
+ (pt 641.36 261.30344)
+ (pt 640.88679 261.39757)
+ (pt 640.48562 261.66562)
+ (pt 640.21757 262.06679)
+ (pt 640.12344 262.54)
+ (pt 640.21757 263.01321)
+ (pt 640.48562 263.41438)
+ (pt 640.88679 263.68243)
+ (pt 641.36 263.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 266.22243)
+ (pt 642.23438 265.95438)
+ (pt 642.50243 265.55321)
+ (pt 642.59656 265.08)
+ (pt 642.50243 264.60679)
+ (pt 642.23438 264.20562)
+ (pt 641.83321 263.93757)
+ (pt 641.36 263.84344)
+ (pt 640.88679 263.93757)
+ (pt 640.48562 264.20562)
+ (pt 640.21757 264.60679)
+ (pt 640.12344 265.08)
+ (pt 640.21757 265.55321)
+ (pt 640.48562 265.95438)
+ (pt 640.88679 266.22243)
+ (pt 641.36 266.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 263.68243)
+ (pt 639.69438 263.41438)
+ (pt 639.96243 263.01321)
+ (pt 640.05656 262.54)
+ (pt 639.96243 262.06679)
+ (pt 639.69438 261.66562)
+ (pt 639.29321 261.39757)
+ (pt 638.82 261.30344)
+ (pt 638.34679 261.39757)
+ (pt 637.94562 261.66562)
+ (pt 637.67757 262.06679)
+ (pt 637.58344 262.54)
+ (pt 637.67757 263.01321)
+ (pt 637.94562 263.41438)
+ (pt 638.34679 263.68243)
+ (pt 638.82 263.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 266.22243)
+ (pt 639.69438 265.95438)
+ (pt 639.96243 265.55321)
+ (pt 640.05656 265.08)
+ (pt 639.96243 264.60679)
+ (pt 639.69438 264.20562)
+ (pt 639.29321 263.93757)
+ (pt 638.82 263.84344)
+ (pt 638.34679 263.93757)
+ (pt 637.94562 264.20562)
+ (pt 637.67757 264.60679)
+ (pt 637.58344 265.08)
+ (pt 637.67757 265.55321)
+ (pt 637.94562 265.95438)
+ (pt 638.34679 266.22243)
+ (pt 638.82 266.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 256.06243)
+ (pt 642.23438 255.79438)
+ (pt 642.50243 255.39321)
+ (pt 642.59656 254.92)
+ (pt 642.50243 254.44679)
+ (pt 642.23438 254.04562)
+ (pt 641.83321 253.77757)
+ (pt 641.36 253.68344)
+ (pt 640.88679 253.77757)
+ (pt 640.48562 254.04562)
+ (pt 640.21757 254.44679)
+ (pt 640.12344 254.92)
+ (pt 640.21757 255.39321)
+ (pt 640.48562 255.79438)
+ (pt 640.88679 256.06243)
+ (pt 641.36 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 258.60243)
+ (pt 642.23438 258.33438)
+ (pt 642.50243 257.93321)
+ (pt 642.59656 257.46)
+ (pt 642.50243 256.98679)
+ (pt 642.23438 256.58562)
+ (pt 641.83321 256.31757)
+ (pt 641.36 256.22344)
+ (pt 640.88679 256.31757)
+ (pt 640.48562 256.58562)
+ (pt 640.21757 256.98679)
+ (pt 640.12344 257.46)
+ (pt 640.21757 257.93321)
+ (pt 640.48562 258.33438)
+ (pt 640.88679 258.60243)
+ (pt 641.36 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 256.06243)
+ (pt 639.69438 255.79438)
+ (pt 639.96243 255.39321)
+ (pt 640.05656 254.92)
+ (pt 639.96243 254.44679)
+ (pt 639.69438 254.04562)
+ (pt 639.29321 253.77757)
+ (pt 638.82 253.68344)
+ (pt 638.34679 253.77757)
+ (pt 637.94562 254.04562)
+ (pt 637.67757 254.44679)
+ (pt 637.58344 254.92)
+ (pt 637.67757 255.39321)
+ (pt 637.94562 255.79438)
+ (pt 638.34679 256.06243)
+ (pt 638.82 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 258.60243)
+ (pt 639.69438 258.33438)
+ (pt 639.96243 257.93321)
+ (pt 640.05656 257.46)
+ (pt 639.96243 256.98679)
+ (pt 639.69438 256.58562)
+ (pt 639.29321 256.31757)
+ (pt 638.82 256.22344)
+ (pt 638.34679 256.31757)
+ (pt 637.94562 256.58562)
+ (pt 637.67757 256.98679)
+ (pt 637.58344 257.46)
+ (pt 637.67757 257.93321)
+ (pt 637.94562 258.33438)
+ (pt 638.34679 258.60243)
+ (pt 638.82 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 248.44243)
+ (pt 642.23438 248.17438)
+ (pt 642.50243 247.77321)
+ (pt 642.59656 247.3)
+ (pt 642.50243 246.82679)
+ (pt 642.23438 246.42562)
+ (pt 641.83321 246.15757)
+ (pt 641.36 246.06344)
+ (pt 640.88679 246.15757)
+ (pt 640.48562 246.42562)
+ (pt 640.21757 246.82679)
+ (pt 640.12344 247.3)
+ (pt 640.21757 247.77321)
+ (pt 640.48562 248.17438)
+ (pt 640.88679 248.44243)
+ (pt 641.36 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 250.98243)
+ (pt 642.23438 250.71438)
+ (pt 642.50243 250.31321)
+ (pt 642.59656 249.84)
+ (pt 642.50243 249.36679)
+ (pt 642.23438 248.96562)
+ (pt 641.83321 248.69757)
+ (pt 641.36 248.60344)
+ (pt 640.88679 248.69757)
+ (pt 640.48562 248.96562)
+ (pt 640.21757 249.36679)
+ (pt 640.12344 249.84)
+ (pt 640.21757 250.31321)
+ (pt 640.48562 250.71438)
+ (pt 640.88679 250.98243)
+ (pt 641.36 251.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 248.44243)
+ (pt 639.69438 248.17438)
+ (pt 639.96243 247.77321)
+ (pt 640.05656 247.3)
+ (pt 639.96243 246.82679)
+ (pt 639.69438 246.42562)
+ (pt 639.29321 246.15757)
+ (pt 638.82 246.06344)
+ (pt 638.34679 246.15757)
+ (pt 637.94562 246.42562)
+ (pt 637.67757 246.82679)
+ (pt 637.58344 247.3)
+ (pt 637.67757 247.77321)
+ (pt 637.94562 248.17438)
+ (pt 638.34679 248.44243)
+ (pt 638.82 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 250.98243)
+ (pt 639.69438 250.71438)
+ (pt 639.96243 250.31321)
+ (pt 640.05656 249.84)
+ (pt 639.96243 249.36679)
+ (pt 639.69438 248.96562)
+ (pt 639.29321 248.69757)
+ (pt 638.82 248.60344)
+ (pt 638.34679 248.69757)
+ (pt 637.94562 248.96562)
+ (pt 637.67757 249.36679)
+ (pt 637.58344 249.84)
+ (pt 637.67757 250.31321)
+ (pt 637.94562 250.71438)
+ (pt 638.34679 250.98243)
+ (pt 638.82 251.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.5 379.90783)
+ (pt 595.65607 379.87679)
+ (pt 595.78838 379.78838)
+ (pt 595.87679 379.65607)
+ (pt 595.90783 379.5)
+ (pt 595.90783 378.5)
+ (pt 595.87679 378.34393)
+ (pt 595.78838 378.21162)
+ (pt 595.65607 378.12321)
+ (pt 595.5 378.09217)
+ (pt 594.5 378.09217)
+ (pt 594.34393 378.12321)
+ (pt 594.21162 378.21162)
+ (pt 594.12321 378.34393)
+ (pt 594.09217 378.5)
+ (pt 594.09217 379.5)
+ (pt 594.12321 379.65607)
+ (pt 594.21162 379.78838)
+ (pt 594.34393 379.87679)
+ (pt 594.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 588.0 379.90783)
+ (pt 588.15607 379.87679)
+ (pt 588.28838 379.78838)
+ (pt 588.37679 379.65607)
+ (pt 588.40783 379.5)
+ (pt 588.40783 378.5)
+ (pt 588.37679 378.34393)
+ (pt 588.28838 378.21162)
+ (pt 588.15607 378.12321)
+ (pt 588.0 378.09217)
+ (pt 587.0 378.09217)
+ (pt 586.84393 378.12321)
+ (pt 586.71162 378.21162)
+ (pt 586.62321 378.34393)
+ (pt 586.59217 378.5)
+ (pt 586.59217 379.5)
+ (pt 586.62321 379.65607)
+ (pt 586.71162 379.78838)
+ (pt 586.84393 379.87679)
+ (pt 587.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 597.20783 336.56)
+ (pt 597.17679 336.40393)
+ (pt 597.08838 336.27162)
+ (pt 596.95607 336.18321)
+ (pt 596.8 336.15217)
+ (pt 594.8 336.15217)
+ (pt 594.64393 336.18321)
+ (pt 594.51162 336.27162)
+ (pt 594.42321 336.40393)
+ (pt 594.39217 336.56)
+ (pt 594.39217 338.56)
+ (pt 594.42321 338.71607)
+ (pt 594.51162 338.84838)
+ (pt 594.64393 338.93679)
+ (pt 594.8 338.96783)
+ (pt 596.8 338.96783)
+ (pt 596.95607 338.93679)
+ (pt 597.08838 338.84838)
+ (pt 597.17679 338.71607)
+ (pt 597.20783 338.56)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 580.44783 374.36)
+ (pt 580.41679 374.20393)
+ (pt 580.32838 374.07162)
+ (pt 580.19607 373.98321)
+ (pt 580.04 373.95217)
+ (pt 578.04 373.95217)
+ (pt 577.88393 373.98321)
+ (pt 577.75162 374.07162)
+ (pt 577.66321 374.20393)
+ (pt 577.63217 374.36)
+ (pt 577.63217 375.39017)
+ (pt 576.47017 376.55217)
+ (pt 576.39 376.55217)
+ (pt 576.23393 376.58321)
+ (pt 576.10162 376.67162)
+ (pt 576.01321 376.80393)
+ (pt 575.98217 376.96)
+ (pt 575.98217 378.16)
+ (pt 576.01321 378.31607)
+ (pt 576.04 378.35616)
+ (pt 576.04 378.76384)
+ (pt 576.01321 378.80393)
+ (pt 575.98217 378.96)
+ (pt 575.98217 380.16)
+ (pt 576.01321 380.31607)
+ (pt 576.10162 380.44838)
+ (pt 576.23393 380.53679)
+ (pt 576.39 380.56783)
+ (pt 577.69 380.56783)
+ (pt 577.84607 380.53679)
+ (pt 577.97838 380.44838)
+ (pt 578.06679 380.31607)
+ (pt 578.09783 380.16)
+ (pt 578.09783 380.14894)
+ (pt 578.11114 380.16886)
+ (pt 578.40884 380.36778)
+ (pt 578.76 380.43763)
+ (pt 579.11116 380.36778)
+ (pt 579.40886 380.16886)
+ (pt 579.60778 379.87116)
+ (pt 579.67763 379.52)
+ (pt 579.60778 379.16884)
+ (pt 579.40886 378.87114)
+ (pt 579.11116 378.67222)
+ (pt 578.76 378.60237)
+ (pt 578.40884 378.67222)
+ (pt 578.11114 378.87114)
+ (pt 578.08726 378.90687)
+ (pt 578.06679 378.80393)
+ (pt 578.04 378.76384)
+ (pt 578.04 378.35616)
+ (pt 578.06679 378.31607)
+ (pt 578.09783 378.16)
+ (pt 578.09783 377.67983)
+ (pt 579.00983 376.76783)
+ (pt 580.04 376.76783)
+ (pt 580.19607 376.73679)
+ (pt 580.32838 376.64838)
+ (pt 580.41679 376.51607)
+ (pt 580.44783 376.36)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 533.41228 328.96639)
+ (pt 533.26862 328.75138)
+ (pt 533.05361 328.60772)
+ (pt 532.8 328.55727)
+ (pt 532.54639 328.60772)
+ (pt 532.33138 328.75138)
+ (pt 532.18772 328.96639)
+ (pt 532.13727 329.22)
+ (pt 532.18772 329.47361)
+ (pt 532.33138 329.68862)
+ (pt 532.54639 329.83228)
+ (pt 532.8 329.88273)
+ (pt 533.05361 329.83228)
+ (pt 533.26862 329.68862)
+ (pt 533.41228 329.47361)
+ (pt 533.46273 329.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.71228 326.14639)
+ (pt 526.56862 325.93138)
+ (pt 526.35361 325.78772)
+ (pt 526.1 325.73727)
+ (pt 525.84639 325.78772)
+ (pt 525.63138 325.93138)
+ (pt 525.48772 326.14639)
+ (pt 525.43727 326.4)
+ (pt 525.48772 326.65361)
+ (pt 525.63138 326.86862)
+ (pt 525.84639 327.01228)
+ (pt 526.1 327.06273)
+ (pt 526.35361 327.01228)
+ (pt 526.56862 326.86862)
+ (pt 526.71228 326.65361)
+ (pt 526.76273 326.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 540.46639 363.48228)
+ (pt 540.7157 363.53188)
+ (pt 540.66237 363.8)
+ (pt 540.73222 364.15116)
+ (pt 540.93114 364.44886)
+ (pt 541.22884 364.64778)
+ (pt 541.58 364.71763)
+ (pt 541.93116 364.64778)
+ (pt 542.22886 364.44886)
+ (pt 542.42778 364.15116)
+ (pt 542.49763 363.8)
+ (pt 542.42778 363.44884)
+ (pt 542.22886 363.15114)
+ (pt 542.16944 363.11144)
+ (pt 542.16944 362.93681)
+ (pt 542.18273 362.87)
+ (pt 542.18273 362.17)
+ (pt 542.13228 361.91639)
+ (pt 542.00106 361.72)
+ (pt 542.13228 361.52361)
+ (pt 542.18273 361.27)
+ (pt 542.18273 360.57)
+ (pt 542.13228 360.31639)
+ (pt 542.11122 360.28487)
+ (pt 542.21228 360.13361)
+ (pt 542.26273 359.88)
+ (pt 542.21228 359.62639)
+ (pt 542.06862 359.41138)
+ (pt 541.85361 359.26772)
+ (pt 541.6 359.21727)
+ (pt 541.34639 359.26772)
+ (pt 541.16 359.39226)
+ (pt 540.97361 359.26772)
+ (pt 540.72 359.21727)
+ (pt 540.46639 359.26772)
+ (pt 540.30503 359.37553)
+ (pt 540.17361 359.28772)
+ (pt 539.92 359.23727)
+ (pt 539.66639 359.28772)
+ (pt 539.45138 359.43138)
+ (pt 539.30772 359.64639)
+ (pt 539.25727 359.9)
+ (pt 539.26443 359.936)
+ (pt 539.12 359.90727)
+ (pt 538.86639 359.95772)
+ (pt 538.65138 360.10138)
+ (pt 538.50772 360.31639)
+ (pt 538.45727 360.57)
+ (pt 538.45727 361.27)
+ (pt 538.50772 361.52361)
+ (pt 538.63894 361.72)
+ (pt 538.50772 361.91639)
+ (pt 538.45727 362.17)
+ (pt 538.45727 362.87)
+ (pt 538.50772 363.12361)
+ (pt 538.65138 363.33862)
+ (pt 538.86639 363.48228)
+ (pt 539.12 363.53273)
+ (pt 539.37361 363.48228)
+ (pt 539.52 363.38447)
+ (pt 539.66639 363.48228)
+ (pt 539.92 363.53273)
+ (pt 540.17361 363.48228)
+ (pt 540.32 363.38447)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 569.50778 375.14884)
+ (pt 569.30886 374.85114)
+ (pt 569.01116 374.65222)
+ (pt 568.66 374.58237)
+ (pt 568.30884 374.65222)
+ (pt 568.01114 374.85114)
+ (pt 567.81222 375.14884)
+ (pt 567.74237 375.5)
+ (pt 567.81222 375.85116)
+ (pt 568.01114 376.14886)
+ (pt 568.30884 376.34778)
+ (pt 568.66 376.41763)
+ (pt 569.01116 376.34778)
+ (pt 569.30886 376.14886)
+ (pt 569.50778 375.85116)
+ (pt 569.57763 375.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 542.98283 264.125)
+ (pt 542.95179 263.96893)
+ (pt 542.86338 263.83662)
+ (pt 542.73107 263.74821)
+ (pt 542.575 263.71717)
+ (pt 542.23685 263.71717)
+ (pt 542.34778 263.55116)
+ (pt 542.41763 263.2)
+ (pt 542.34778 262.84884)
+ (pt 542.14886 262.55114)
+ (pt 541.85116 262.35222)
+ (pt 541.5 262.28237)
+ (pt 541.14884 262.35222)
+ (pt 540.85114 262.55114)
+ (pt 540.65222 262.84884)
+ (pt 540.58237 263.2)
+ (pt 540.65222 263.55116)
+ (pt 540.85114 263.84886)
+ (pt 540.97371 263.93076)
+ (pt 540.94821 263.96893)
+ (pt 540.91717 264.125)
+ (pt 540.91717 266.125)
+ (pt 540.94821 266.28107)
+ (pt 541.03662 266.41338)
+ (pt 541.16893 266.50179)
+ (pt 541.325 266.53283)
+ (pt 542.575 266.53283)
+ (pt 542.73107 266.50179)
+ (pt 542.86338 266.41338)
+ (pt 542.95179 266.28107)
+ (pt 542.98283 266.125)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 378.9113)
+ (pt 496.5491 378.5309)
+ (pt 496.1687 378.27673)
+ (pt 495.72 378.18748)
+ (pt 495.2713 378.27673)
+ (pt 494.8909 378.5309)
+ (pt 494.63673 378.9113)
+ (pt 494.54748 379.36)
+ (pt 494.63673 379.8087)
+ (pt 494.8909 380.1891)
+ (pt 495.2713 380.44327)
+ (pt 495.72 380.53252)
+ (pt 496.1687 380.44327)
+ (pt 496.5491 380.1891)
+ (pt 496.80327 379.8087)
+ (pt 496.89252 379.36)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 376.3713)
+ (pt 496.5491 375.9909)
+ (pt 496.1687 375.73673)
+ (pt 495.72 375.64748)
+ (pt 495.2713 375.73673)
+ (pt 494.8909 375.9909)
+ (pt 494.63673 376.3713)
+ (pt 494.54748 376.82)
+ (pt 494.63673 377.2687)
+ (pt 494.8909 377.6491)
+ (pt 495.2713 377.90327)
+ (pt 495.72 377.99252)
+ (pt 496.1687 377.90327)
+ (pt 496.5491 377.6491)
+ (pt 496.80327 377.2687)
+ (pt 496.89252 376.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 480.89358 409.50786)
+ (pt 480.71676 409.24324)
+ (pt 480.45214 409.06642)
+ (pt 480.14 409.00433)
+ (pt 479.82786 409.06642)
+ (pt 479.56324 409.24324)
+ (pt 479.38642 409.50786)
+ (pt 479.32433 409.82)
+ (pt 479.38642 410.13214)
+ (pt 479.56324 410.39676)
+ (pt 479.82786 410.57358)
+ (pt 480.14 410.63567)
+ (pt 480.45214 410.57358)
+ (pt 480.71676 410.39676)
+ (pt 480.89358 410.13214)
+ (pt 480.95567 409.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.18327 376.3713)
+ (pt 488.9291 375.9909)
+ (pt 488.5487 375.73673)
+ (pt 488.1 375.64748)
+ (pt 487.6513 375.73673)
+ (pt 487.2709 375.9909)
+ (pt 487.01673 376.3713)
+ (pt 486.92748 376.82)
+ (pt 487.01673 377.2687)
+ (pt 487.2709 377.6491)
+ (pt 487.6513 377.90327)
+ (pt 488.1 377.99252)
+ (pt 488.5487 377.90327)
+ (pt 488.9291 377.6491)
+ (pt 489.18327 377.2687)
+ (pt 489.27252 376.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 478.68 415.31217)
+ (pt 478.52393 415.34321)
+ (pt 478.39162 415.43162)
+ (pt 478.30321 415.56393)
+ (pt 478.27217 415.72)
+ (pt 478.27217 416.72)
+ (pt 478.30321 416.87607)
+ (pt 478.39162 417.00838)
+ (pt 478.52393 417.09679)
+ (pt 478.68 417.12783)
+ (pt 479.68 417.12783)
+ (pt 479.83607 417.09679)
+ (pt 479.96838 417.00838)
+ (pt 480.05679 416.87607)
+ (pt 480.08783 416.72)
+ (pt 480.08783 415.72)
+ (pt 480.05679 415.56393)
+ (pt 479.96838 415.43162)
+ (pt 479.83607 415.34321)
+ (pt 479.68 415.31217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 472.95358 322.78786)
+ (pt 472.77676 322.52324)
+ (pt 472.51214 322.34642)
+ (pt 472.2 322.28433)
+ (pt 471.88786 322.34642)
+ (pt 471.62324 322.52324)
+ (pt 471.44642 322.78786)
+ (pt 471.38433 323.1)
+ (pt 471.44642 323.41214)
+ (pt 471.62324 323.67676)
+ (pt 471.88786 323.85358)
+ (pt 472.2 323.91567)
+ (pt 472.51214 323.85358)
+ (pt 472.77676 323.67676)
+ (pt 472.95358 323.41214)
+ (pt 473.01567 323.1)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 481.98283 293.825)
+ (pt 481.95179 293.66893)
+ (pt 481.86338 293.53662)
+ (pt 481.73107 293.44821)
+ (pt 481.575 293.41717)
+ (pt 480.325 293.41717)
+ (pt 480.16893 293.44821)
+ (pt 480.03662 293.53662)
+ (pt 479.94821 293.66893)
+ (pt 479.91717 293.825)
+ (pt 479.91717 295.825)
+ (pt 479.94821 295.98107)
+ (pt 480.03662 296.11338)
+ (pt 480.16893 296.20179)
+ (pt 480.325 296.23283)
+ (pt 481.575 296.23283)
+ (pt 481.73107 296.20179)
+ (pt 481.86338 296.11338)
+ (pt 481.95179 295.98107)
+ (pt 481.98283 295.825)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 479.645 353.71717)
+ (pt 479.48893 353.74821)
+ (pt 479.35662 353.83662)
+ (pt 479.26821 353.96893)
+ (pt 479.23717 354.125)
+ (pt 479.23717 355.375)
+ (pt 479.26821 355.53107)
+ (pt 479.35662 355.66338)
+ (pt 479.48893 355.75179)
+ (pt 479.645 355.78283)
+ (pt 481.645 355.78283)
+ (pt 481.80107 355.75179)
+ (pt 481.93338 355.66338)
+ (pt 482.02179 355.53107)
+ (pt 482.05283 355.375)
+ (pt 482.05283 354.125)
+ (pt 482.02179 353.96893)
+ (pt 481.93338 353.83662)
+ (pt 481.80107 353.74821)
+ (pt 481.645 353.71717)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 458.43358 328.54786)
+ (pt 458.25676 328.28324)
+ (pt 457.99214 328.10642)
+ (pt 457.68 328.04433)
+ (pt 457.36786 328.10642)
+ (pt 457.10324 328.28324)
+ (pt 456.92642 328.54786)
+ (pt 456.86433 328.86)
+ (pt 456.92642 329.17214)
+ (pt 457.10324 329.43676)
+ (pt 457.36786 329.61358)
+ (pt 457.68 329.67567)
+ (pt 457.99214 329.61358)
+ (pt 458.25676 329.43676)
+ (pt 458.43358 329.17214)
+ (pt 458.49567 328.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 436.06778 333.28884)
+ (pt 435.86886 332.99114)
+ (pt 435.57116 332.79222)
+ (pt 435.22 332.72237)
+ (pt 434.86884 332.79222)
+ (pt 434.57114 332.99114)
+ (pt 434.37222 333.28884)
+ (pt 434.30237 333.64)
+ (pt 434.37222 333.99116)
+ (pt 434.57114 334.28886)
+ (pt 434.86884 334.48778)
+ (pt 435.22 334.55763)
+ (pt 435.57116 334.48778)
+ (pt 435.86886 334.28886)
+ (pt 436.06778 333.99116)
+ (pt 436.13763 333.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 480.64778 292.20884)
+ (pt 480.44886 291.91114)
+ (pt 480.15116 291.71222)
+ (pt 479.8 291.64237)
+ (pt 479.44884 291.71222)
+ (pt 479.15114 291.91114)
+ (pt 478.95222 292.20884)
+ (pt 478.88237 292.56)
+ (pt 478.95222 292.91116)
+ (pt 479.15114 293.20886)
+ (pt 479.44884 293.40778)
+ (pt 479.8 293.47763)
+ (pt 480.15116 293.40778)
+ (pt 480.44886 293.20886)
+ (pt 480.64778 292.91116)
+ (pt 480.71763 292.56)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 436.38283 299.925)
+ (pt 436.35179 299.76893)
+ (pt 436.26338 299.63662)
+ (pt 436.13107 299.54821)
+ (pt 435.975 299.51717)
+ (pt 434.8269 299.51717)
+ (pt 435.04886 299.36886)
+ (pt 435.24778 299.07116)
+ (pt 435.31763 298.72)
+ (pt 435.24778 298.36884)
+ (pt 435.04886 298.07114)
+ (pt 434.75116 297.87222)
+ (pt 434.4 297.80237)
+ (pt 434.04884 297.87222)
+ (pt 433.75114 298.07114)
+ (pt 433.55222 298.36884)
+ (pt 433.48237 298.72)
+ (pt 433.55222 299.07116)
+ (pt 433.75114 299.36886)
+ (pt 434.04884 299.56778)
+ (pt 434.4 299.63763)
+ (pt 434.44999 299.62769)
+ (pt 434.43662 299.63662)
+ (pt 434.34821 299.76893)
+ (pt 434.31717 299.925)
+ (pt 434.31717 301.925)
+ (pt 434.34821 302.08107)
+ (pt 434.43662 302.21338)
+ (pt 434.56893 302.30179)
+ (pt 434.725 302.33283)
+ (pt 435.975 302.33283)
+ (pt 436.13107 302.30179)
+ (pt 436.26338 302.21338)
+ (pt 436.35179 302.08107)
+ (pt 436.38283 301.925)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.22457 422.49277)
+ (pt 374.93724 422.06276)
+ (pt 374.50723 421.77543)
+ (pt 374.0 421.67454)
+ (pt 373.49277 421.77543)
+ (pt 373.06276 422.06276)
+ (pt 372.77543 422.49277)
+ (pt 372.67454 423.0)
+ (pt 372.77543 423.50723)
+ (pt 373.06276 423.93724)
+ (pt 373.49277 424.22457)
+ (pt 374.0 424.32546)
+ (pt 374.50723 424.22457)
+ (pt 374.93724 423.93724)
+ (pt 375.22457 423.50723)
+ (pt 375.32546 423.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.66 423.76783)
+ (pt 380.81607 423.73679)
+ (pt 380.94838 423.64838)
+ (pt 381.03679 423.51607)
+ (pt 381.06783 423.36)
+ (pt 381.06783 422.36)
+ (pt 381.03679 422.20393)
+ (pt 380.94838 422.07162)
+ (pt 380.81607 421.98321)
+ (pt 380.66 421.95217)
+ (pt 379.66 421.95217)
+ (pt 379.50393 421.98321)
+ (pt 379.37162 422.07162)
+ (pt 379.28321 422.20393)
+ (pt 379.25217 422.36)
+ (pt 379.25217 423.36)
+ (pt 379.28321 423.51607)
+ (pt 379.37162 423.64838)
+ (pt 379.50393 423.73679)
+ (pt 379.66 423.76783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.22457 368.29277)
+ (pt 374.93724 367.86276)
+ (pt 374.50723 367.57543)
+ (pt 374.0 367.47454)
+ (pt 373.49277 367.57543)
+ (pt 373.06276 367.86276)
+ (pt 372.77543 368.29277)
+ (pt 372.67454 368.8)
+ (pt 372.77543 369.30723)
+ (pt 373.06276 369.73724)
+ (pt 373.49277 370.02457)
+ (pt 374.0 370.12546)
+ (pt 374.50723 370.02457)
+ (pt 374.93724 369.73724)
+ (pt 375.22457 369.30723)
+ (pt 375.32546 368.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 383.88783 367.86)
+ (pt 383.85679 367.70393)
+ (pt 383.76838 367.57162)
+ (pt 383.63607 367.48321)
+ (pt 383.48 367.45217)
+ (pt 381.48 367.45217)
+ (pt 381.32393 367.48321)
+ (pt 381.19162 367.57162)
+ (pt 381.10321 367.70393)
+ (pt 381.07217 367.86)
+ (pt 381.07217 369.86)
+ (pt 381.10321 370.01607)
+ (pt 381.19162 370.14838)
+ (pt 381.32393 370.23679)
+ (pt 381.48 370.26783)
+ (pt 383.48 370.26783)
+ (pt 383.63607 370.23679)
+ (pt 383.76838 370.14838)
+ (pt 383.85679 370.01607)
+ (pt 383.88783 369.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.22457 345.49277)
+ (pt 374.93724 345.06276)
+ (pt 374.50723 344.77543)
+ (pt 374.0 344.67454)
+ (pt 373.49277 344.77543)
+ (pt 373.06276 345.06276)
+ (pt 372.77543 345.49277)
+ (pt 372.67454 346.0)
+ (pt 372.77543 346.50723)
+ (pt 373.06276 346.93724)
+ (pt 373.49277 347.22457)
+ (pt 374.0 347.32546)
+ (pt 374.50723 347.22457)
+ (pt 374.93724 346.93724)
+ (pt 375.22457 346.50723)
+ (pt 375.32546 346.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.6 346.80783)
+ (pt 380.75607 346.77679)
+ (pt 380.88838 346.68838)
+ (pt 380.97679 346.55607)
+ (pt 381.00783 346.4)
+ (pt 381.00783 345.4)
+ (pt 380.97679 345.24393)
+ (pt 380.88838 345.11162)
+ (pt 380.75607 345.02321)
+ (pt 380.6 344.99217)
+ (pt 379.6 344.99217)
+ (pt 379.44393 345.02321)
+ (pt 379.31162 345.11162)
+ (pt 379.22321 345.24393)
+ (pt 379.19217 345.4)
+ (pt 379.19217 346.4)
+ (pt 379.22321 346.55607)
+ (pt 379.31162 346.68838)
+ (pt 379.44393 346.77679)
+ (pt 379.6 346.80783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.25241 334.6729)
+ (pt 381.32279 334.81562)
+ (pt 381.44243 334.92054)
+ (pt 381.59311 334.97169)
+ (pt 381.7519 334.96128)
+ (pt 383.68375 334.44364)
+ (pt 383.82647 334.37326)
+ (pt 383.93139 334.25362)
+ (pt 383.98254 334.10294)
+ (pt 383.97213 333.94415)
+ (pt 383.45449 332.0123)
+ (pt 383.38411 331.86958)
+ (pt 383.26447 331.76466)
+ (pt 383.11379 331.71351)
+ (pt 382.955 331.72392)
+ (pt 381.02315 332.24156)
+ (pt 380.88043 332.31194)
+ (pt 380.77551 332.43158)
+ (pt 380.72436 332.58226)
+ (pt 380.73477 332.74105)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.61793 334.74749)
+ (pt 380.76064 334.67711)
+ (pt 380.86556 334.55747)
+ (pt 380.91672 334.40679)
+ (pt 380.90631 334.248)
+ (pt 380.64749 333.28207)
+ (pt 380.57711 333.13936)
+ (pt 380.45747 333.03444)
+ (pt 380.30679 332.98328)
+ (pt 380.148 332.99369)
+ (pt 379.18207 333.25251)
+ (pt 379.03936 333.32289)
+ (pt 378.93444 333.44253)
+ (pt 378.88328 333.59321)
+ (pt 378.89369 333.752)
+ (pt 379.15251 334.71793)
+ (pt 379.22289 334.86064)
+ (pt 379.34253 334.96556)
+ (pt 379.49321 335.01672)
+ (pt 379.652 335.00631)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.32457 321.49277)
+ (pt 375.03724 321.06276)
+ (pt 374.60723 320.77543)
+ (pt 374.1 320.67454)
+ (pt 373.59277 320.77543)
+ (pt 373.16276 321.06276)
+ (pt 372.87543 321.49277)
+ (pt 372.77454 322.0)
+ (pt 372.87543 322.50723)
+ (pt 373.16276 322.93724)
+ (pt 373.59277 323.22457)
+ (pt 374.1 323.32546)
+ (pt 374.60723 323.22457)
+ (pt 375.03724 322.93724)
+ (pt 375.32457 322.50723)
+ (pt 375.42546 322.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.648 323.00631)
+ (pt 380.80679 323.01672)
+ (pt 380.95747 322.96556)
+ (pt 381.07711 322.86064)
+ (pt 381.14749 322.71793)
+ (pt 381.40631 321.752)
+ (pt 381.41672 321.59321)
+ (pt 381.36556 321.44253)
+ (pt 381.26064 321.32289)
+ (pt 381.11793 321.25251)
+ (pt 380.152 320.99369)
+ (pt 379.99321 320.98328)
+ (pt 379.84253 321.03444)
+ (pt 379.72289 321.13936)
+ (pt 379.65251 321.28207)
+ (pt 379.39369 322.248)
+ (pt 379.38328 322.40679)
+ (pt 379.43444 322.55747)
+ (pt 379.53936 322.67711)
+ (pt 379.68207 322.74749)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.32457 309.49277)
+ (pt 375.03724 309.06276)
+ (pt 374.60723 308.77543)
+ (pt 374.1 308.67454)
+ (pt 373.59277 308.77543)
+ (pt 373.16276 309.06276)
+ (pt 372.87543 309.49277)
+ (pt 372.77454 310.0)
+ (pt 372.87543 310.50723)
+ (pt 373.16276 310.93724)
+ (pt 373.59277 311.22457)
+ (pt 374.1 311.32546)
+ (pt 374.60723 311.22457)
+ (pt 375.03724 310.93724)
+ (pt 375.32457 310.50723)
+ (pt 375.42546 310.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.6 310.90783)
+ (pt 380.75607 310.87679)
+ (pt 380.88838 310.78838)
+ (pt 380.97679 310.65607)
+ (pt 381.00783 310.5)
+ (pt 381.00783 309.5)
+ (pt 380.97679 309.34393)
+ (pt 380.88838 309.21162)
+ (pt 380.75607 309.12321)
+ (pt 380.6 309.09217)
+ (pt 379.6 309.09217)
+ (pt 379.44393 309.12321)
+ (pt 379.31162 309.21162)
+ (pt 379.22321 309.34393)
+ (pt 379.19217 309.5)
+ (pt 379.19217 310.5)
+ (pt 379.22321 310.65607)
+ (pt 379.31162 310.78838)
+ (pt 379.44393 310.87679)
+ (pt 379.6 310.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 380.9272 283.85937)
+ (pt 380.77113 283.89041)
+ (pt 380.63882 283.97882)
+ (pt 380.55041 284.11113)
+ (pt 380.53757 284.17568)
+ (pt 380.18121 283.93757)
+ (pt 379.708 283.84344)
+ (pt 379.23479 283.93757)
+ (pt 378.83362 284.20562)
+ (pt 378.56557 284.60679)
+ (pt 378.47144 285.08)
+ (pt 378.56557 285.55321)
+ (pt 378.83362 285.95438)
+ (pt 379.23479 286.22243)
+ (pt 379.708 286.31656)
+ (pt 380.18121 286.22243)
+ (pt 380.53757 285.98432)
+ (pt 380.55041 286.04887)
+ (pt 380.63882 286.18118)
+ (pt 380.77113 286.26959)
+ (pt 380.9272 286.30063)
+ (pt 382.5528 286.30063)
+ (pt 382.70887 286.26959)
+ (pt 382.84118 286.18118)
+ (pt 382.92959 286.04887)
+ (pt 382.96063 285.8928)
+ (pt 382.96063 284.2672)
+ (pt 382.92959 284.11113)
+ (pt 382.84118 283.97882)
+ (pt 382.70887 283.89041)
+ (pt 382.5528 283.85937)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.26679 286.47757)
+ (pt 380.91043 286.71568)
+ (pt 380.89759 286.65113)
+ (pt 380.80918 286.51882)
+ (pt 380.67687 286.43041)
+ (pt 380.5208 286.39937)
+ (pt 378.8952 286.39937)
+ (pt 378.73913 286.43041)
+ (pt 378.60682 286.51882)
+ (pt 378.51841 286.65113)
+ (pt 378.48737 286.8072)
+ (pt 378.48737 288.4328)
+ (pt 378.51841 288.58887)
+ (pt 378.60682 288.72118)
+ (pt 378.73913 288.80959)
+ (pt 378.8952 288.84063)
+ (pt 380.5208 288.84063)
+ (pt 380.67687 288.80959)
+ (pt 380.80918 288.72118)
+ (pt 380.89759 288.58887)
+ (pt 380.91043 288.52432)
+ (pt 381.26679 288.76243)
+ (pt 381.74 288.85656)
+ (pt 382.21321 288.76243)
+ (pt 382.61438 288.49438)
+ (pt 382.88243 288.09321)
+ (pt 382.97656 287.62)
+ (pt 382.88243 287.14679)
+ (pt 382.61438 286.74562)
+ (pt 382.21321 286.47757)
+ (pt 381.74 286.38344)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 388.87358 263.82786)
+ (pt 388.69676 263.56324)
+ (pt 388.43214 263.38642)
+ (pt 388.12 263.32433)
+ (pt 387.80786 263.38642)
+ (pt 387.54324 263.56324)
+ (pt 387.36642 263.82786)
+ (pt 387.30433 264.14)
+ (pt 387.36642 264.45214)
+ (pt 387.54324 264.71676)
+ (pt 387.80786 264.89358)
+ (pt 388.12 264.95567)
+ (pt 388.43214 264.89358)
+ (pt 388.69676 264.71676)
+ (pt 388.87358 264.45214)
+ (pt 388.93567 264.14)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 456.02838 336.64838)
+ (pt 456.11679 336.51607)
+ (pt 456.14783 336.36)
+ (pt 456.14783 334.56)
+ (pt 456.11679 334.40393)
+ (pt 456.02838 334.27162)
+ (pt 455.89607 334.18321)
+ (pt 455.74 334.15217)
+ (pt 453.94 334.15217)
+ (pt 453.78393 334.18321)
+ (pt 453.65162 334.27162)
+ (pt 453.56321 334.40393)
+ (pt 453.53217 334.56)
+ (pt 453.53217 336.36)
+ (pt 453.56321 336.51607)
+ (pt 453.65162 336.64838)
+ (pt 453.77377 336.73)
+ (pt 453.65162 336.81162)
+ (pt 453.56321 336.94393)
+ (pt 453.53217 337.1)
+ (pt 453.53217 338.9)
+ (pt 453.56321 339.05607)
+ (pt 453.65162 339.18838)
+ (pt 453.78393 339.27679)
+ (pt 453.94 339.30783)
+ (pt 454.13645 339.30783)
+ (pt 454.13645 340.59968)
+ (pt 453.90451 340.83162)
+ (pt 453.8161 340.96393)
+ (pt 453.78506 341.12)
+ (pt 453.8161 341.27607)
+ (pt 453.90451 341.40838)
+ (pt 454.61162 342.11549)
+ (pt 454.74393 342.2039)
+ (pt 454.9 342.23494)
+ (pt 455.05607 342.2039)
+ (pt 455.18838 342.11549)
+ (pt 455.89549 341.40838)
+ (pt 455.9839 341.27607)
+ (pt 456.01494 341.12)
+ (pt 455.9839 340.96393)
+ (pt 455.89549 340.83162)
+ (pt 455.54355 340.47968)
+ (pt 455.54355 339.30783)
+ (pt 455.74 339.30783)
+ (pt 455.89607 339.27679)
+ (pt 456.02838 339.18838)
+ (pt 456.11679 339.05607)
+ (pt 456.14783 338.9)
+ (pt 456.14783 337.1)
+ (pt 456.11679 336.94393)
+ (pt 456.02838 336.81162)
+ (pt 455.90623 336.73)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.96509 277.96311)
+ (pt 375.16063 278.50063)
+ (pt 374.62311 279.30509)
+ (pt 374.43436 280.254)
+ (pt 374.62311 281.20291)
+ (pt 375.16063 282.00737)
+ (pt 375.96509 282.54489)
+ (pt 376.914 282.73364)
+ (pt 377.86291 282.54489)
+ (pt 378.66737 282.00737)
+ (pt 379.20489 281.20291)
+ (pt 379.39364 280.254)
+ (pt 379.20489 279.30509)
+ (pt 378.66737 278.50063)
+ (pt 377.86291 277.96311)
+ (pt 376.914 277.77436)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 390.21358 260.40786)
+ (pt 390.03676 260.14324)
+ (pt 389.77214 259.96642)
+ (pt 389.46 259.90433)
+ (pt 389.14786 259.96642)
+ (pt 388.88324 260.14324)
+ (pt 388.70642 260.40786)
+ (pt 388.64433 260.72)
+ (pt 388.70642 261.03214)
+ (pt 388.88324 261.29676)
+ (pt 389.14786 261.47358)
+ (pt 389.46 261.53567)
+ (pt 389.77214 261.47358)
+ (pt 390.03676 261.29676)
+ (pt 390.21358 261.03214)
+ (pt 390.27567 260.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 450.32243)
+ (pt 644.87438 450.05438)
+ (pt 645.14243 449.65321)
+ (pt 645.23656 449.18)
+ (pt 645.14243 448.70679)
+ (pt 644.87438 448.30562)
+ (pt 644.47321 448.03757)
+ (pt 644.0 447.94344)
+ (pt 643.52679 448.03757)
+ (pt 643.12562 448.30562)
+ (pt 642.85757 448.70679)
+ (pt 642.76344 449.18)
+ (pt 642.85757 449.65321)
+ (pt 643.12562 450.05438)
+ (pt 643.52679 450.32243)
+ (pt 644.0 450.41656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 457.94243)
+ (pt 642.33438 457.67438)
+ (pt 642.60243 457.27321)
+ (pt 642.69656 456.8)
+ (pt 642.60243 456.32679)
+ (pt 642.33438 455.92562)
+ (pt 641.93321 455.65757)
+ (pt 641.46 455.56344)
+ (pt 640.98679 455.65757)
+ (pt 640.58562 455.92562)
+ (pt 640.31757 456.32679)
+ (pt 640.22344 456.8)
+ (pt 640.31757 457.27321)
+ (pt 640.58562 457.67438)
+ (pt 640.98679 457.94243)
+ (pt 641.46 458.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.8128 458.02063)
+ (pt 644.96887 457.98959)
+ (pt 645.10118 457.90118)
+ (pt 645.18959 457.76887)
+ (pt 645.22063 457.6128)
+ (pt 645.22063 455.9872)
+ (pt 645.18959 455.83113)
+ (pt 645.10118 455.69882)
+ (pt 644.96887 455.61041)
+ (pt 644.8128 455.57937)
+ (pt 643.1872 455.57937)
+ (pt 643.03113 455.61041)
+ (pt 642.89882 455.69882)
+ (pt 642.81041 455.83113)
+ (pt 642.77937 455.9872)
+ (pt 642.77937 457.6128)
+ (pt 642.81041 457.76887)
+ (pt 642.89882 457.90118)
+ (pt 643.03113 457.98959)
+ (pt 643.1872 458.02063)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 435.08243)
+ (pt 644.87438 434.81438)
+ (pt 645.14243 434.41321)
+ (pt 645.23656 433.94)
+ (pt 645.14243 433.46679)
+ (pt 644.87438 433.06562)
+ (pt 644.47321 432.79757)
+ (pt 644.0 432.70344)
+ (pt 643.52679 432.79757)
+ (pt 643.12562 433.06562)
+ (pt 642.85757 433.46679)
+ (pt 642.76344 433.94)
+ (pt 642.85757 434.41321)
+ (pt 643.12562 434.81438)
+ (pt 643.52679 435.08243)
+ (pt 644.0 435.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 427.46243)
+ (pt 644.87438 427.19438)
+ (pt 645.14243 426.79321)
+ (pt 645.23656 426.32)
+ (pt 645.14243 425.84679)
+ (pt 644.87438 425.44562)
+ (pt 644.47321 425.17757)
+ (pt 644.0 425.08344)
+ (pt 643.52679 425.17757)
+ (pt 643.12562 425.44562)
+ (pt 642.85757 425.84679)
+ (pt 642.76344 426.32)
+ (pt 642.85757 426.79321)
+ (pt 643.12562 427.19438)
+ (pt 643.52679 427.46243)
+ (pt 644.0 427.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 442.70243)
+ (pt 644.87438 442.43438)
+ (pt 645.14243 442.03321)
+ (pt 645.23656 441.56)
+ (pt 645.14243 441.08679)
+ (pt 644.87438 440.68562)
+ (pt 644.47321 440.41757)
+ (pt 644.0 440.32344)
+ (pt 643.52679 440.41757)
+ (pt 643.12562 440.68562)
+ (pt 642.85757 441.08679)
+ (pt 642.76344 441.56)
+ (pt 642.85757 442.03321)
+ (pt 643.12562 442.43438)
+ (pt 643.52679 442.70243)
+ (pt 644.0 442.79656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 412.22243)
+ (pt 644.87438 411.95438)
+ (pt 645.14243 411.55321)
+ (pt 645.23656 411.08)
+ (pt 645.14243 410.60679)
+ (pt 644.87438 410.20562)
+ (pt 644.47321 409.93757)
+ (pt 644.0 409.84344)
+ (pt 643.52679 409.93757)
+ (pt 643.12562 410.20562)
+ (pt 642.85757 410.60679)
+ (pt 642.76344 411.08)
+ (pt 642.85757 411.55321)
+ (pt 643.12562 411.95438)
+ (pt 643.52679 412.22243)
+ (pt 644.0 412.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 404.60243)
+ (pt 644.87438 404.33438)
+ (pt 645.14243 403.93321)
+ (pt 645.23656 403.46)
+ (pt 645.14243 402.98679)
+ (pt 644.87438 402.58562)
+ (pt 644.47321 402.31757)
+ (pt 644.0 402.22344)
+ (pt 643.52679 402.31757)
+ (pt 643.12562 402.58562)
+ (pt 642.85757 402.98679)
+ (pt 642.76344 403.46)
+ (pt 642.85757 403.93321)
+ (pt 643.12562 404.33438)
+ (pt 643.52679 404.60243)
+ (pt 644.0 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 419.84243)
+ (pt 644.87438 419.57438)
+ (pt 645.14243 419.17321)
+ (pt 645.23656 418.7)
+ (pt 645.14243 418.22679)
+ (pt 644.87438 417.82562)
+ (pt 644.47321 417.55757)
+ (pt 644.0 417.46344)
+ (pt 643.52679 417.55757)
+ (pt 643.12562 417.82562)
+ (pt 642.85757 418.22679)
+ (pt 642.76344 418.7)
+ (pt 642.85757 419.17321)
+ (pt 643.12562 419.57438)
+ (pt 643.52679 419.84243)
+ (pt 644.0 419.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 396.98243)
+ (pt 644.87438 396.71438)
+ (pt 645.14243 396.31321)
+ (pt 645.23656 395.84)
+ (pt 645.14243 395.36679)
+ (pt 644.87438 394.96562)
+ (pt 644.47321 394.69757)
+ (pt 644.0 394.60344)
+ (pt 643.52679 394.69757)
+ (pt 643.12562 394.96562)
+ (pt 642.85757 395.36679)
+ (pt 642.76344 395.84)
+ (pt 642.85757 396.31321)
+ (pt 643.12562 396.71438)
+ (pt 643.52679 396.98243)
+ (pt 644.0 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 389.36243)
+ (pt 644.87438 389.09438)
+ (pt 645.14243 388.69321)
+ (pt 645.23656 388.22)
+ (pt 645.14243 387.74679)
+ (pt 644.87438 387.34562)
+ (pt 644.47321 387.07757)
+ (pt 644.0 386.98344)
+ (pt 643.52679 387.07757)
+ (pt 643.12562 387.34562)
+ (pt 642.85757 387.74679)
+ (pt 642.76344 388.22)
+ (pt 642.85757 388.69321)
+ (pt 643.12562 389.09438)
+ (pt 643.52679 389.36243)
+ (pt 644.0 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 404.60243)
+ (pt 642.33438 404.33438)
+ (pt 642.60243 403.93321)
+ (pt 642.69656 403.46)
+ (pt 642.60243 402.98679)
+ (pt 642.33438 402.58562)
+ (pt 641.93321 402.31757)
+ (pt 641.46 402.22344)
+ (pt 640.98679 402.31757)
+ (pt 640.58562 402.58562)
+ (pt 640.31757 402.98679)
+ (pt 640.22344 403.46)
+ (pt 640.31757 403.93321)
+ (pt 640.58562 404.33438)
+ (pt 640.98679 404.60243)
+ (pt 641.46 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 389.36243)
+ (pt 642.33438 389.09438)
+ (pt 642.60243 388.69321)
+ (pt 642.69656 388.22)
+ (pt 642.60243 387.74679)
+ (pt 642.33438 387.34562)
+ (pt 641.93321 387.07757)
+ (pt 641.46 386.98344)
+ (pt 640.98679 387.07757)
+ (pt 640.58562 387.34562)
+ (pt 640.31757 387.74679)
+ (pt 640.22344 388.22)
+ (pt 640.31757 388.69321)
+ (pt 640.58562 389.09438)
+ (pt 640.98679 389.36243)
+ (pt 641.46 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 530.04778 404.54884)
+ (pt 529.84886 404.25114)
+ (pt 529.55116 404.05222)
+ (pt 529.2 403.98237)
+ (pt 528.84884 404.05222)
+ (pt 528.55114 404.25114)
+ (pt 528.35222 404.54884)
+ (pt 528.28237 404.9)
+ (pt 528.35222 405.25116)
+ (pt 528.55114 405.54886)
+ (pt 528.84884 405.74778)
+ (pt 529.2 405.81763)
+ (pt 529.55116 405.74778)
+ (pt 529.84886 405.54886)
+ (pt 530.04778 405.25116)
+ (pt 530.11763 404.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 396.98243)
+ (pt 642.33438 396.71438)
+ (pt 642.60243 396.31321)
+ (pt 642.69656 395.84)
+ (pt 642.60243 395.36679)
+ (pt 642.33438 394.96562)
+ (pt 641.93321 394.69757)
+ (pt 641.46 394.60344)
+ (pt 640.98679 394.69757)
+ (pt 640.58562 394.96562)
+ (pt 640.31757 395.36679)
+ (pt 640.22344 395.84)
+ (pt 640.31757 396.31321)
+ (pt 640.58562 396.71438)
+ (pt 640.98679 396.98243)
+ (pt 641.46 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 381.74243)
+ (pt 644.87438 381.47438)
+ (pt 645.14243 381.07321)
+ (pt 645.23656 380.6)
+ (pt 645.14243 380.12679)
+ (pt 644.87438 379.72562)
+ (pt 644.47321 379.45757)
+ (pt 644.0 379.36344)
+ (pt 643.52679 379.45757)
+ (pt 643.12562 379.72562)
+ (pt 642.85757 380.12679)
+ (pt 642.76344 380.6)
+ (pt 642.85757 381.07321)
+ (pt 643.12562 381.47438)
+ (pt 643.52679 381.74243)
+ (pt 644.0 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 381.74243)
+ (pt 642.33438 381.47438)
+ (pt 642.60243 381.07321)
+ (pt 642.69656 380.6)
+ (pt 642.60243 380.12679)
+ (pt 642.33438 379.72562)
+ (pt 641.93321 379.45757)
+ (pt 641.46 379.36344)
+ (pt 640.98679 379.45757)
+ (pt 640.58562 379.72562)
+ (pt 640.31757 380.12679)
+ (pt 640.22344 380.6)
+ (pt 640.31757 381.07321)
+ (pt 640.58562 381.47438)
+ (pt 640.98679 381.74243)
+ (pt 641.46 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 322.10243)
+ (pt 644.77438 321.83438)
+ (pt 645.04243 321.43321)
+ (pt 645.13656 320.96)
+ (pt 645.04243 320.48679)
+ (pt 644.77438 320.08562)
+ (pt 644.37321 319.81757)
+ (pt 643.9 319.72344)
+ (pt 643.42679 319.81757)
+ (pt 643.02562 320.08562)
+ (pt 642.75757 320.48679)
+ (pt 642.66344 320.96)
+ (pt 642.75757 321.43321)
+ (pt 643.02562 321.83438)
+ (pt 643.42679 322.10243)
+ (pt 643.9 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 314.48243)
+ (pt 644.77438 314.21438)
+ (pt 645.04243 313.81321)
+ (pt 645.13656 313.34)
+ (pt 645.04243 312.86679)
+ (pt 644.77438 312.46562)
+ (pt 644.37321 312.19757)
+ (pt 643.9 312.10344)
+ (pt 643.42679 312.19757)
+ (pt 643.02562 312.46562)
+ (pt 642.75757 312.86679)
+ (pt 642.66344 313.34)
+ (pt 642.75757 313.81321)
+ (pt 643.02562 314.21438)
+ (pt 643.42679 314.48243)
+ (pt 643.9 314.57656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 306.86243)
+ (pt 644.77438 306.59438)
+ (pt 645.04243 306.19321)
+ (pt 645.13656 305.72)
+ (pt 645.04243 305.24679)
+ (pt 644.77438 304.84562)
+ (pt 644.37321 304.57757)
+ (pt 643.9 304.48344)
+ (pt 643.42679 304.57757)
+ (pt 643.02562 304.84562)
+ (pt 642.75757 305.24679)
+ (pt 642.66344 305.72)
+ (pt 642.75757 306.19321)
+ (pt 643.02562 306.59438)
+ (pt 643.42679 306.86243)
+ (pt 643.9 306.95656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 299.24243)
+ (pt 644.77438 298.97438)
+ (pt 645.04243 298.57321)
+ (pt 645.13656 298.1)
+ (pt 645.04243 297.62679)
+ (pt 644.77438 297.22562)
+ (pt 644.37321 296.95757)
+ (pt 643.9 296.86344)
+ (pt 643.42679 296.95757)
+ (pt 643.02562 297.22562)
+ (pt 642.75757 297.62679)
+ (pt 642.66344 298.1)
+ (pt 642.75757 298.57321)
+ (pt 643.02562 298.97438)
+ (pt 643.42679 299.24243)
+ (pt 643.9 299.33656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 291.62243)
+ (pt 644.77438 291.35438)
+ (pt 645.04243 290.95321)
+ (pt 645.13656 290.48)
+ (pt 645.04243 290.00679)
+ (pt 644.77438 289.60562)
+ (pt 644.37321 289.33757)
+ (pt 643.9 289.24344)
+ (pt 643.42679 289.33757)
+ (pt 643.02562 289.60562)
+ (pt 642.75757 290.00679)
+ (pt 642.66344 290.48)
+ (pt 642.75757 290.95321)
+ (pt 643.02562 291.35438)
+ (pt 643.42679 291.62243)
+ (pt 643.9 291.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 284.00243)
+ (pt 644.77438 283.73438)
+ (pt 645.04243 283.33321)
+ (pt 645.13656 282.86)
+ (pt 645.04243 282.38679)
+ (pt 644.77438 281.98562)
+ (pt 644.37321 281.71757)
+ (pt 643.9 281.62344)
+ (pt 643.42679 281.71757)
+ (pt 643.02562 281.98562)
+ (pt 642.75757 282.38679)
+ (pt 642.66344 282.86)
+ (pt 642.75757 283.33321)
+ (pt 643.02562 283.73438)
+ (pt 643.42679 284.00243)
+ (pt 643.9 284.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 276.38243)
+ (pt 644.77438 276.11438)
+ (pt 645.04243 275.71321)
+ (pt 645.13656 275.24)
+ (pt 645.04243 274.76679)
+ (pt 644.77438 274.36562)
+ (pt 644.37321 274.09757)
+ (pt 643.9 274.00344)
+ (pt 643.42679 274.09757)
+ (pt 643.02562 274.36562)
+ (pt 642.75757 274.76679)
+ (pt 642.66344 275.24)
+ (pt 642.75757 275.71321)
+ (pt 643.02562 276.11438)
+ (pt 643.42679 276.38243)
+ (pt 643.9 276.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 268.76243)
+ (pt 644.77438 268.49438)
+ (pt 645.04243 268.09321)
+ (pt 645.13656 267.62)
+ (pt 645.04243 267.14679)
+ (pt 644.77438 266.74562)
+ (pt 644.37321 266.47757)
+ (pt 643.9 266.38344)
+ (pt 643.42679 266.47757)
+ (pt 643.02562 266.74562)
+ (pt 642.75757 267.14679)
+ (pt 642.66344 267.62)
+ (pt 642.75757 268.09321)
+ (pt 643.02562 268.49438)
+ (pt 643.42679 268.76243)
+ (pt 643.9 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 261.14243)
+ (pt 644.77438 260.87438)
+ (pt 645.04243 260.47321)
+ (pt 645.13656 260.0)
+ (pt 645.04243 259.52679)
+ (pt 644.77438 259.12562)
+ (pt 644.37321 258.85757)
+ (pt 643.9 258.76344)
+ (pt 643.42679 258.85757)
+ (pt 643.02562 259.12562)
+ (pt 642.75757 259.52679)
+ (pt 642.66344 260.0)
+ (pt 642.75757 260.47321)
+ (pt 643.02562 260.87438)
+ (pt 643.42679 261.14243)
+ (pt 643.9 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 253.52243)
+ (pt 644.77438 253.25438)
+ (pt 645.04243 252.85321)
+ (pt 645.13656 252.38)
+ (pt 645.04243 251.90679)
+ (pt 644.77438 251.50562)
+ (pt 644.37321 251.23757)
+ (pt 643.9 251.14344)
+ (pt 643.42679 251.23757)
+ (pt 643.02562 251.50562)
+ (pt 642.75757 251.90679)
+ (pt 642.66344 252.38)
+ (pt 642.75757 252.85321)
+ (pt 643.02562 253.25438)
+ (pt 643.42679 253.52243)
+ (pt 643.9 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 598.0 382.40783)
+ (pt 598.15607 382.37679)
+ (pt 598.28838 382.28838)
+ (pt 598.37679 382.15607)
+ (pt 598.40783 382.0)
+ (pt 598.40783 381.0)
+ (pt 598.37679 380.84393)
+ (pt 598.28838 380.71162)
+ (pt 598.15607 380.62321)
+ (pt 598.0 380.59217)
+ (pt 597.0 380.59217)
+ (pt 596.84393 380.62321)
+ (pt 596.71162 380.71162)
+ (pt 596.62321 380.84393)
+ (pt 596.59217 381.0)
+ (pt 596.59217 382.0)
+ (pt 596.62321 382.15607)
+ (pt 596.71162 382.28838)
+ (pt 596.84393 382.37679)
+ (pt 597.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 599.00778 349.84884)
+ (pt 598.80886 349.55114)
+ (pt 598.51116 349.35222)
+ (pt 598.16 349.28237)
+ (pt 597.80884 349.35222)
+ (pt 597.51114 349.55114)
+ (pt 597.31222 349.84884)
+ (pt 597.24237 350.2)
+ (pt 597.31222 350.55116)
+ (pt 597.51114 350.84886)
+ (pt 597.80884 351.04778)
+ (pt 598.16 351.11763)
+ (pt 598.51116 351.04778)
+ (pt 598.80886 350.84886)
+ (pt 599.00778 350.55116)
+ (pt 599.07763 350.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 245.90243)
+ (pt 644.77438 245.63438)
+ (pt 645.04243 245.23321)
+ (pt 645.13656 244.76)
+ (pt 645.04243 244.28679)
+ (pt 644.77438 243.88562)
+ (pt 644.37321 243.61757)
+ (pt 643.9 243.52344)
+ (pt 643.42679 243.61757)
+ (pt 643.02562 243.88562)
+ (pt 642.75757 244.28679)
+ (pt 642.66344 244.76)
+ (pt 642.75757 245.23321)
+ (pt 643.02562 245.63438)
+ (pt 643.42679 245.90243)
+ (pt 643.9 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 585.5 382.40783)
+ (pt 585.65607 382.37679)
+ (pt 585.78838 382.28838)
+ (pt 585.87679 382.15607)
+ (pt 585.90783 382.0)
+ (pt 585.90783 381.0)
+ (pt 585.87679 380.84393)
+ (pt 585.78838 380.71162)
+ (pt 585.65607 380.62321)
+ (pt 585.5 380.59217)
+ (pt 584.5 380.59217)
+ (pt 584.34393 380.62321)
+ (pt 584.21162 380.71162)
+ (pt 584.12321 380.84393)
+ (pt 584.09217 381.0)
+ (pt 584.09217 382.0)
+ (pt 584.12321 382.15607)
+ (pt 584.21162 382.28838)
+ (pt 584.34393 382.37679)
+ (pt 584.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 583.0 382.40783)
+ (pt 583.15607 382.37679)
+ (pt 583.28838 382.28838)
+ (pt 583.37679 382.15607)
+ (pt 583.40783 382.0)
+ (pt 583.40783 381.0)
+ (pt 583.37679 380.84393)
+ (pt 583.28838 380.71162)
+ (pt 583.15607 380.62321)
+ (pt 583.0 380.59217)
+ (pt 582.0 380.59217)
+ (pt 581.84393 380.62321)
+ (pt 581.71162 380.71162)
+ (pt 581.62321 380.84393)
+ (pt 581.59217 381.0)
+ (pt 581.59217 382.0)
+ (pt 581.62321 382.15607)
+ (pt 581.71162 382.28838)
+ (pt 581.84393 382.37679)
+ (pt 582.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 590.5 382.40783)
+ (pt 590.65607 382.37679)
+ (pt 590.78838 382.28838)
+ (pt 590.87679 382.15607)
+ (pt 590.90783 382.0)
+ (pt 590.90783 381.0)
+ (pt 590.87679 380.84393)
+ (pt 590.78838 380.71162)
+ (pt 590.65607 380.62321)
+ (pt 590.5 380.59217)
+ (pt 589.5 380.59217)
+ (pt 589.34393 380.62321)
+ (pt 589.21162 380.71162)
+ (pt 589.12321 380.84393)
+ (pt 589.09217 381.0)
+ (pt 589.09217 382.0)
+ (pt 589.12321 382.15607)
+ (pt 589.21162 382.28838)
+ (pt 589.34393 382.37679)
+ (pt 589.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 539.14683 280.376)
+ (pt 539.11579 280.21993)
+ (pt 539.02738 280.08762)
+ (pt 538.89507 279.99921)
+ (pt 538.739 279.96817)
+ (pt 535.691 279.96817)
+ (pt 535.53493 279.99921)
+ (pt 535.40262 280.08762)
+ (pt 535.31421 280.21993)
+ (pt 535.28317 280.376)
+ (pt 535.28317 280.9387)
+ (pt 535.0 280.88237)
+ (pt 534.64884 280.95222)
+ (pt 534.35114 281.15114)
+ (pt 534.15222 281.44884)
+ (pt 534.08237 281.8)
+ (pt 534.15222 282.15116)
+ (pt 534.35114 282.44886)
+ (pt 534.64884 282.64778)
+ (pt 535.0 282.71763)
+ (pt 535.28317 282.6613)
+ (pt 535.28317 283.424)
+ (pt 535.31421 283.58007)
+ (pt 535.40262 283.71238)
+ (pt 535.53493 283.80079)
+ (pt 535.691 283.83183)
+ (pt 538.739 283.83183)
+ (pt 538.89507 283.80079)
+ (pt 539.02738 283.71238)
+ (pt 539.11579 283.58007)
+ (pt 539.14683 283.424)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 535.49317 297.124)
+ (pt 535.52421 297.28007)
+ (pt 535.61262 297.41238)
+ (pt 535.74493 297.50079)
+ (pt 535.901 297.53183)
+ (pt 538.949 297.53183)
+ (pt 539.10507 297.50079)
+ (pt 539.23738 297.41238)
+ (pt 539.32579 297.28007)
+ (pt 539.35683 297.124)
+ (pt 539.35683 296.47324)
+ (pt 539.58 296.51763)
+ (pt 539.93116 296.44778)
+ (pt 540.22886 296.24886)
+ (pt 540.42778 295.95116)
+ (pt 540.49763 295.6)
+ (pt 540.42778 295.24884)
+ (pt 540.22886 294.95114)
+ (pt 539.93116 294.75222)
+ (pt 539.58 294.68237)
+ (pt 539.35683 294.72676)
+ (pt 539.35683 294.076)
+ (pt 539.32579 293.91993)
+ (pt 539.23738 293.78762)
+ (pt 539.10507 293.69921)
+ (pt 538.949 293.66817)
+ (pt 535.901 293.66817)
+ (pt 535.74493 293.69921)
+ (pt 535.61262 293.78762)
+ (pt 535.52421 293.91993)
+ (pt 535.49317 294.076)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 458.19217 336.36)
+ (pt 458.22321 336.51607)
+ (pt 458.31162 336.64838)
+ (pt 458.44393 336.73679)
+ (pt 458.6 336.76783)
+ (pt 460.4 336.76783)
+ (pt 460.55607 336.73679)
+ (pt 460.68838 336.64838)
+ (pt 460.77 336.52623)
+ (pt 460.85162 336.64838)
+ (pt 460.98393 336.73679)
+ (pt 461.14 336.76783)
+ (pt 462.94 336.76783)
+ (pt 463.09607 336.73679)
+ (pt 463.22838 336.64838)
+ (pt 463.31679 336.51607)
+ (pt 463.34783 336.36)
+ (pt 463.34783 334.56)
+ (pt 463.31679 334.40393)
+ (pt 463.22838 334.27162)
+ (pt 463.09607 334.18321)
+ (pt 462.94 334.15217)
+ (pt 461.14 334.15217)
+ (pt 460.98393 334.18321)
+ (pt 460.85162 334.27162)
+ (pt 460.77 334.39377)
+ (pt 460.68838 334.27162)
+ (pt 460.55607 334.18321)
+ (pt 460.4 334.15217)
+ (pt 458.6 334.15217)
+ (pt 458.44393 334.18321)
+ (pt 458.31162 334.27162)
+ (pt 458.22321 334.40393)
+ (pt 458.19217 334.56)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 453.39233 341.21346)
+ (pt 453.26002 341.12505)
+ (pt 453.10395 341.09401)
+ (pt 452.94788 341.12505)
+ (pt 452.81557 341.21346)
+ (pt 451.40136 342.62767)
+ (pt 451.31295 342.75998)
+ (pt 451.28191 342.91605)
+ (pt 451.31295 343.07212)
+ (pt 451.40136 343.20443)
+ (pt 452.81557 344.61864)
+ (pt 452.94788 344.70705)
+ (pt 453.10395 344.73809)
+ (pt 453.26002 344.70705)
+ (pt 453.39233 344.61864)
+ (pt 454.80654 343.20443)
+ (pt 454.89495 343.07212)
+ (pt 454.92599 342.91605)
+ (pt 454.89495 342.75998)
+ (pt 454.80654 342.62767)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 468.15358 335.20786)
+ (pt 467.97676 334.94324)
+ (pt 467.71214 334.76642)
+ (pt 467.4 334.70433)
+ (pt 467.08786 334.76642)
+ (pt 466.82324 334.94324)
+ (pt 466.64642 335.20786)
+ (pt 466.58433 335.52)
+ (pt 466.64642 335.83214)
+ (pt 466.82324 336.09676)
+ (pt 467.08786 336.27358)
+ (pt 467.4 336.33567)
+ (pt 467.71214 336.27358)
+ (pt 467.97676 336.09676)
+ (pt 468.15358 335.83214)
+ (pt 468.21567 335.52)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 410.30654 320.53233)
+ (pt 410.39495 320.40002)
+ (pt 410.42599 320.24395)
+ (pt 410.39495 320.08788)
+ (pt 410.30654 319.95557)
+ (pt 408.89233 318.54136)
+ (pt 408.76002 318.45295)
+ (pt 408.60395 318.42191)
+ (pt 408.44788 318.45295)
+ (pt 408.31557 318.54136)
+ (pt 406.90136 319.95557)
+ (pt 406.81295 320.08788)
+ (pt 406.78191 320.24395)
+ (pt 406.81295 320.40002)
+ (pt 406.90136 320.53233)
+ (pt 408.31557 321.94654)
+ (pt 408.44788 322.03495)
+ (pt 408.60395 322.06599)
+ (pt 408.76002 322.03495)
+ (pt 408.89233 321.94654)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.54523 325.54105)
+ (pt 408.55564 325.38226)
+ (pt 408.50449 325.23158)
+ (pt 408.39957 325.11194)
+ (pt 408.25685 325.04156)
+ (pt 406.325 324.52392)
+ (pt 406.16621 324.51351)
+ (pt 406.01553 324.56466)
+ (pt 405.89589 324.66958)
+ (pt 405.82551 324.8123)
+ (pt 405.30787 326.74415)
+ (pt 405.29746 326.90294)
+ (pt 405.34861 327.05362)
+ (pt 405.45353 327.17326)
+ (pt 405.59625 327.24364)
+ (pt 407.5281 327.76128)
+ (pt 407.68689 327.77169)
+ (pt 407.83757 327.72054)
+ (pt 407.95721 327.61562)
+ (pt 408.02759 327.4729)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 441.72783 297.16)
+ (pt 441.69679 297.00393)
+ (pt 441.60838 296.87162)
+ (pt 441.47607 296.78321)
+ (pt 441.32 296.75217)
+ (pt 439.32 296.75217)
+ (pt 439.16393 296.78321)
+ (pt 439.03162 296.87162)
+ (pt 438.94321 297.00393)
+ (pt 438.91217 297.16)
+ (pt 438.91217 298.54231)
+ (pt 438.87585 298.63)
+ (pt 438.87585 299.72757)
+ (pt 438.84821 299.76893)
+ (pt 438.81717 299.925)
+ (pt 438.81717 301.925)
+ (pt 438.84821 302.08107)
+ (pt 438.93662 302.21338)
+ (pt 439.06893 302.30179)
+ (pt 439.225 302.33283)
+ (pt 440.475 302.33283)
+ (pt 440.63107 302.30179)
+ (pt 440.76338 302.21338)
+ (pt 440.85179 302.08107)
+ (pt 440.88283 301.925)
+ (pt 440.88283 299.925)
+ (pt 440.85179 299.76893)
+ (pt 440.82415 299.72757)
+ (pt 440.82415 299.56783)
+ (pt 441.32 299.56783)
+ (pt 441.47607 299.53679)
+ (pt 441.60838 299.44838)
+ (pt 441.69679 299.31607)
+ (pt 441.72783 299.16)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 424.99375)
+ (pt 377.54934 424.53066)
+ (pt 377.08625 424.22123)
+ (pt 376.54 424.11258)
+ (pt 375.99375 424.22123)
+ (pt 375.53066 424.53066)
+ (pt 375.22123 424.99375)
+ (pt 375.11258 425.54)
+ (pt 375.22123 426.08625)
+ (pt 375.53066 426.54934)
+ (pt 375.99375 426.85877)
+ (pt 376.54 426.96742)
+ (pt 377.08625 426.85877)
+ (pt 377.54934 426.54934)
+ (pt 377.85877 426.08625)
+ (pt 377.96742 425.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 419.91375)
+ (pt 377.54934 419.45066)
+ (pt 377.08625 419.14123)
+ (pt 376.54 419.03258)
+ (pt 375.99375 419.14123)
+ (pt 375.53066 419.45066)
+ (pt 375.22123 419.91375)
+ (pt 375.11258 420.46)
+ (pt 375.22123 421.00625)
+ (pt 375.53066 421.46934)
+ (pt 375.99375 421.77877)
+ (pt 376.54 421.88742)
+ (pt 377.08625 421.77877)
+ (pt 377.54934 421.46934)
+ (pt 377.85877 421.00625)
+ (pt 377.96742 420.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 365.71375)
+ (pt 377.54934 365.25066)
+ (pt 377.08625 364.94123)
+ (pt 376.54 364.83258)
+ (pt 375.99375 364.94123)
+ (pt 375.53066 365.25066)
+ (pt 375.22123 365.71375)
+ (pt 375.11258 366.26)
+ (pt 375.22123 366.80625)
+ (pt 375.53066 367.26934)
+ (pt 375.99375 367.57877)
+ (pt 376.54 367.68742)
+ (pt 377.08625 367.57877)
+ (pt 377.54934 367.26934)
+ (pt 377.85877 366.80625)
+ (pt 377.96742 366.26)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 342.91375)
+ (pt 377.54934 342.45066)
+ (pt 377.08625 342.14123)
+ (pt 376.54 342.03258)
+ (pt 375.99375 342.14123)
+ (pt 375.53066 342.45066)
+ (pt 375.22123 342.91375)
+ (pt 375.11258 343.46)
+ (pt 375.22123 344.00625)
+ (pt 375.53066 344.46934)
+ (pt 375.99375 344.77877)
+ (pt 376.54 344.88742)
+ (pt 377.08625 344.77877)
+ (pt 377.54934 344.46934)
+ (pt 377.85877 344.00625)
+ (pt 377.96742 343.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 311.99375)
+ (pt 377.64934 311.53066)
+ (pt 377.18625 311.22123)
+ (pt 376.64 311.11258)
+ (pt 376.09375 311.22123)
+ (pt 375.63066 311.53066)
+ (pt 375.32123 311.99375)
+ (pt 375.21258 312.54)
+ (pt 375.32123 313.08625)
+ (pt 375.63066 313.54934)
+ (pt 376.09375 313.85877)
+ (pt 376.64 313.96742)
+ (pt 377.18625 313.85877)
+ (pt 377.64934 313.54934)
+ (pt 377.95877 313.08625)
+ (pt 378.06742 312.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 335.99375)
+ (pt 377.54934 335.53066)
+ (pt 377.08625 335.22123)
+ (pt 376.54 335.11258)
+ (pt 375.99375 335.22123)
+ (pt 375.53066 335.53066)
+ (pt 375.22123 335.99375)
+ (pt 375.11258 336.54)
+ (pt 375.22123 337.08625)
+ (pt 375.53066 337.54934)
+ (pt 375.99375 337.85877)
+ (pt 376.54 337.96742)
+ (pt 377.08625 337.85877)
+ (pt 377.54934 337.54934)
+ (pt 377.85877 337.08625)
+ (pt 377.96742 336.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 318.91375)
+ (pt 377.64934 318.45066)
+ (pt 377.18625 318.14123)
+ (pt 376.64 318.03258)
+ (pt 376.09375 318.14123)
+ (pt 375.63066 318.45066)
+ (pt 375.32123 318.91375)
+ (pt 375.21258 319.46)
+ (pt 375.32123 320.00625)
+ (pt 375.63066 320.46934)
+ (pt 376.09375 320.77877)
+ (pt 376.64 320.88742)
+ (pt 377.18625 320.77877)
+ (pt 377.64934 320.46934)
+ (pt 377.95877 320.00625)
+ (pt 378.06742 319.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 424.99375)
+ (pt 372.46934 424.53066)
+ (pt 372.00625 424.22123)
+ (pt 371.46 424.11258)
+ (pt 370.91375 424.22123)
+ (pt 370.45066 424.53066)
+ (pt 370.14123 424.99375)
+ (pt 370.03258 425.54)
+ (pt 370.14123 426.08625)
+ (pt 370.45066 426.54934)
+ (pt 370.91375 426.85877)
+ (pt 371.46 426.96742)
+ (pt 372.00625 426.85877)
+ (pt 372.46934 426.54934)
+ (pt 372.77877 426.08625)
+ (pt 372.88742 425.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 419.91375)
+ (pt 372.46934 419.45066)
+ (pt 372.00625 419.14123)
+ (pt 371.46 419.03258)
+ (pt 370.91375 419.14123)
+ (pt 370.45066 419.45066)
+ (pt 370.14123 419.91375)
+ (pt 370.03258 420.46)
+ (pt 370.14123 421.00625)
+ (pt 370.45066 421.46934)
+ (pt 370.91375 421.77877)
+ (pt 371.46 421.88742)
+ (pt 372.00625 421.77877)
+ (pt 372.46934 421.46934)
+ (pt 372.77877 421.00625)
+ (pt 372.88742 420.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 365.71375)
+ (pt 372.46934 365.25066)
+ (pt 372.00625 364.94123)
+ (pt 371.46 364.83258)
+ (pt 370.91375 364.94123)
+ (pt 370.45066 365.25066)
+ (pt 370.14123 365.71375)
+ (pt 370.03258 366.26)
+ (pt 370.14123 366.80625)
+ (pt 370.45066 367.26934)
+ (pt 370.91375 367.57877)
+ (pt 371.46 367.68742)
+ (pt 372.00625 367.57877)
+ (pt 372.46934 367.26934)
+ (pt 372.77877 366.80625)
+ (pt 372.88742 366.26)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 342.91375)
+ (pt 372.46934 342.45066)
+ (pt 372.00625 342.14123)
+ (pt 371.46 342.03258)
+ (pt 370.91375 342.14123)
+ (pt 370.45066 342.45066)
+ (pt 370.14123 342.91375)
+ (pt 370.03258 343.46)
+ (pt 370.14123 344.00625)
+ (pt 370.45066 344.46934)
+ (pt 370.91375 344.77877)
+ (pt 371.46 344.88742)
+ (pt 372.00625 344.77877)
+ (pt 372.46934 344.46934)
+ (pt 372.77877 344.00625)
+ (pt 372.88742 343.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 311.99375)
+ (pt 372.56934 311.53066)
+ (pt 372.10625 311.22123)
+ (pt 371.56 311.11258)
+ (pt 371.01375 311.22123)
+ (pt 370.55066 311.53066)
+ (pt 370.24123 311.99375)
+ (pt 370.13258 312.54)
+ (pt 370.24123 313.08625)
+ (pt 370.55066 313.54934)
+ (pt 371.01375 313.85877)
+ (pt 371.56 313.96742)
+ (pt 372.10625 313.85877)
+ (pt 372.56934 313.54934)
+ (pt 372.87877 313.08625)
+ (pt 372.98742 312.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 335.99375)
+ (pt 372.46934 335.53066)
+ (pt 372.00625 335.22123)
+ (pt 371.46 335.11258)
+ (pt 370.91375 335.22123)
+ (pt 370.45066 335.53066)
+ (pt 370.14123 335.99375)
+ (pt 370.03258 336.54)
+ (pt 370.14123 337.08625)
+ (pt 370.45066 337.54934)
+ (pt 370.91375 337.85877)
+ (pt 371.46 337.96742)
+ (pt 372.00625 337.85877)
+ (pt 372.46934 337.54934)
+ (pt 372.77877 337.08625)
+ (pt 372.88742 336.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 318.91375)
+ (pt 372.56934 318.45066)
+ (pt 372.10625 318.14123)
+ (pt 371.56 318.03258)
+ (pt 371.01375 318.14123)
+ (pt 370.55066 318.45066)
+ (pt 370.24123 318.91375)
+ (pt 370.13258 319.46)
+ (pt 370.24123 320.00625)
+ (pt 370.55066 320.46934)
+ (pt 371.01375 320.77877)
+ (pt 371.56 320.88742)
+ (pt 372.10625 320.77877)
+ (pt 372.56934 320.46934)
+ (pt 372.87877 320.00625)
+ (pt 372.98742 319.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 455.40243)
+ (pt 644.87438 455.13438)
+ (pt 645.14243 454.73321)
+ (pt 645.23656 454.26)
+ (pt 645.14243 453.78679)
+ (pt 644.87438 453.38562)
+ (pt 644.47321 453.11757)
+ (pt 644.0 453.02344)
+ (pt 643.52679 453.11757)
+ (pt 643.12562 453.38562)
+ (pt 642.85757 453.78679)
+ (pt 642.76344 454.26)
+ (pt 642.85757 454.73321)
+ (pt 643.12562 455.13438)
+ (pt 643.52679 455.40243)
+ (pt 644.0 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 455.40243)
+ (pt 642.33438 455.13438)
+ (pt 642.60243 454.73321)
+ (pt 642.69656 454.26)
+ (pt 642.60243 453.78679)
+ (pt 642.33438 453.38562)
+ (pt 641.93321 453.11757)
+ (pt 641.46 453.02344)
+ (pt 640.98679 453.11757)
+ (pt 640.58562 453.38562)
+ (pt 640.31757 453.78679)
+ (pt 640.22344 454.26)
+ (pt 640.31757 454.73321)
+ (pt 640.58562 455.13438)
+ (pt 640.98679 455.40243)
+ (pt 641.46 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 452.86243)
+ (pt 644.87438 452.59438)
+ (pt 645.14243 452.19321)
+ (pt 645.23656 451.72)
+ (pt 645.14243 451.24679)
+ (pt 644.87438 450.84562)
+ (pt 644.47321 450.57757)
+ (pt 644.0 450.48344)
+ (pt 643.52679 450.57757)
+ (pt 643.12562 450.84562)
+ (pt 642.85757 451.24679)
+ (pt 642.76344 451.72)
+ (pt 642.85757 452.19321)
+ (pt 643.12562 452.59438)
+ (pt 643.52679 452.86243)
+ (pt 644.0 452.95656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 447.78243)
+ (pt 644.87438 447.51438)
+ (pt 645.14243 447.11321)
+ (pt 645.23656 446.64)
+ (pt 645.14243 446.16679)
+ (pt 644.87438 445.76562)
+ (pt 644.47321 445.49757)
+ (pt 644.0 445.40344)
+ (pt 643.52679 445.49757)
+ (pt 643.12562 445.76562)
+ (pt 642.85757 446.16679)
+ (pt 642.76344 446.64)
+ (pt 642.85757 447.11321)
+ (pt 643.12562 447.51438)
+ (pt 643.52679 447.78243)
+ (pt 644.0 447.87656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 445.24243)
+ (pt 644.87438 444.97438)
+ (pt 645.14243 444.57321)
+ (pt 645.23656 444.1)
+ (pt 645.14243 443.62679)
+ (pt 644.87438 443.22562)
+ (pt 644.47321 442.95757)
+ (pt 644.0 442.86344)
+ (pt 643.52679 442.95757)
+ (pt 643.12562 443.22562)
+ (pt 642.85757 443.62679)
+ (pt 642.76344 444.1)
+ (pt 642.85757 444.57321)
+ (pt 643.12562 444.97438)
+ (pt 643.52679 445.24243)
+ (pt 644.0 445.33656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 440.16243)
+ (pt 644.87438 439.89438)
+ (pt 645.14243 439.49321)
+ (pt 645.23656 439.02)
+ (pt 645.14243 438.54679)
+ (pt 644.87438 438.14562)
+ (pt 644.47321 437.87757)
+ (pt 644.0 437.78344)
+ (pt 643.52679 437.87757)
+ (pt 643.12562 438.14562)
+ (pt 642.85757 438.54679)
+ (pt 642.76344 439.02)
+ (pt 642.85757 439.49321)
+ (pt 643.12562 439.89438)
+ (pt 643.52679 440.16243)
+ (pt 644.0 440.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 437.62243)
+ (pt 644.87438 437.35438)
+ (pt 645.14243 436.95321)
+ (pt 645.23656 436.48)
+ (pt 645.14243 436.00679)
+ (pt 644.87438 435.60562)
+ (pt 644.47321 435.33757)
+ (pt 644.0 435.24344)
+ (pt 643.52679 435.33757)
+ (pt 643.12562 435.60562)
+ (pt 642.85757 436.00679)
+ (pt 642.76344 436.48)
+ (pt 642.85757 436.95321)
+ (pt 643.12562 437.35438)
+ (pt 643.52679 437.62243)
+ (pt 644.0 437.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 432.54243)
+ (pt 644.87438 432.27438)
+ (pt 645.14243 431.87321)
+ (pt 645.23656 431.4)
+ (pt 645.14243 430.92679)
+ (pt 644.87438 430.52562)
+ (pt 644.47321 430.25757)
+ (pt 644.0 430.16344)
+ (pt 643.52679 430.25757)
+ (pt 643.12562 430.52562)
+ (pt 642.85757 430.92679)
+ (pt 642.76344 431.4)
+ (pt 642.85757 431.87321)
+ (pt 643.12562 432.27438)
+ (pt 643.52679 432.54243)
+ (pt 644.0 432.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 545.25358 344.68786)
+ (pt 545.07676 344.42324)
+ (pt 544.81214 344.24642)
+ (pt 544.5 344.18433)
+ (pt 544.18786 344.24642)
+ (pt 543.92324 344.42324)
+ (pt 543.74642 344.68786)
+ (pt 543.68433 345.0)
+ (pt 543.74642 345.31214)
+ (pt 543.92324 345.57676)
+ (pt 544.18786 345.75358)
+ (pt 544.5 345.81567)
+ (pt 544.81214 345.75358)
+ (pt 545.07676 345.57676)
+ (pt 545.25358 345.31214)
+ (pt 545.31567 345.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 424.92243)
+ (pt 644.87438 424.65438)
+ (pt 645.14243 424.25321)
+ (pt 645.23656 423.78)
+ (pt 645.14243 423.30679)
+ (pt 644.87438 422.90562)
+ (pt 644.47321 422.63757)
+ (pt 644.0 422.54344)
+ (pt 643.52679 422.63757)
+ (pt 643.12562 422.90562)
+ (pt 642.85757 423.30679)
+ (pt 642.76344 423.78)
+ (pt 642.85757 424.25321)
+ (pt 643.12562 424.65438)
+ (pt 643.52679 424.92243)
+ (pt 644.0 425.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 422.38243)
+ (pt 644.87438 422.11438)
+ (pt 645.14243 421.71321)
+ (pt 645.23656 421.24)
+ (pt 645.14243 420.76679)
+ (pt 644.87438 420.36562)
+ (pt 644.47321 420.09757)
+ (pt 644.0 420.00344)
+ (pt 643.52679 420.09757)
+ (pt 643.12562 420.36562)
+ (pt 642.85757 420.76679)
+ (pt 642.76344 421.24)
+ (pt 642.85757 421.71321)
+ (pt 643.12562 422.11438)
+ (pt 643.52679 422.38243)
+ (pt 644.0 422.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 430.00243)
+ (pt 644.87438 429.73438)
+ (pt 645.14243 429.33321)
+ (pt 645.23656 428.86)
+ (pt 645.14243 428.38679)
+ (pt 644.87438 427.98562)
+ (pt 644.47321 427.71757)
+ (pt 644.0 427.62344)
+ (pt 643.52679 427.71757)
+ (pt 643.12562 427.98562)
+ (pt 642.85757 428.38679)
+ (pt 642.76344 428.86)
+ (pt 642.85757 429.33321)
+ (pt 643.12562 429.73438)
+ (pt 643.52679 430.00243)
+ (pt 644.0 430.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 544.95358 364.38786)
+ (pt 544.77676 364.12324)
+ (pt 544.51214 363.94642)
+ (pt 544.2 363.88433)
+ (pt 543.88786 363.94642)
+ (pt 543.62324 364.12324)
+ (pt 543.44642 364.38786)
+ (pt 543.38433 364.7)
+ (pt 543.44642 365.01214)
+ (pt 543.62324 365.27676)
+ (pt 543.88786 365.45358)
+ (pt 544.2 365.51567)
+ (pt 544.51214 365.45358)
+ (pt 544.77676 365.27676)
+ (pt 544.95358 365.01214)
+ (pt 545.01567 364.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 546.70778 391.44884)
+ (pt 546.50886 391.15114)
+ (pt 546.21116 390.95222)
+ (pt 545.86 390.88237)
+ (pt 545.50884 390.95222)
+ (pt 545.21114 391.15114)
+ (pt 545.01222 391.44884)
+ (pt 544.94237 391.8)
+ (pt 545.01222 392.15116)
+ (pt 545.21114 392.44886)
+ (pt 545.50884 392.64778)
+ (pt 545.86 392.71763)
+ (pt 546.21116 392.64778)
+ (pt 546.50886 392.44886)
+ (pt 546.70778 392.15116)
+ (pt 546.77763 391.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 386.04778 297.20884)
+ (pt 385.84886 296.91114)
+ (pt 385.55116 296.71222)
+ (pt 385.30863 296.66398)
+ (pt 385.59116 296.60778)
+ (pt 385.88886 296.40886)
+ (pt 386.08778 296.11116)
+ (pt 386.15763 295.76)
+ (pt 386.08778 295.40884)
+ (pt 385.88886 295.11114)
+ (pt 385.59116 294.91222)
+ (pt 385.24 294.84237)
+ (pt 384.88884 294.91222)
+ (pt 384.59114 295.11114)
+ (pt 384.39222 295.40884)
+ (pt 384.32237 295.76)
+ (pt 384.39222 296.11116)
+ (pt 384.59114 296.40886)
+ (pt 384.88884 296.60778)
+ (pt 385.13137 296.65602)
+ (pt 384.84884 296.71222)
+ (pt 384.55114 296.91114)
+ (pt 384.35222 297.20884)
+ (pt 384.28237 297.56)
+ (pt 384.35222 297.91116)
+ (pt 384.55114 298.20886)
+ (pt 384.84884 298.40778)
+ (pt 385.2 298.47763)
+ (pt 385.55116 298.40778)
+ (pt 385.84886 298.20886)
+ (pt 386.04778 297.91116)
+ (pt 386.11763 297.56)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 417.30243)
+ (pt 644.87438 417.03438)
+ (pt 645.14243 416.63321)
+ (pt 645.23656 416.16)
+ (pt 645.14243 415.68679)
+ (pt 644.87438 415.28562)
+ (pt 644.47321 415.01757)
+ (pt 644.0 414.92344)
+ (pt 643.52679 415.01757)
+ (pt 643.12562 415.28562)
+ (pt 642.85757 415.68679)
+ (pt 642.76344 416.16)
+ (pt 642.85757 416.63321)
+ (pt 643.12562 417.03438)
+ (pt 643.52679 417.30243)
+ (pt 644.0 417.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 417.30243)
+ (pt 642.33438 417.03438)
+ (pt 642.60243 416.63321)
+ (pt 642.69656 416.16)
+ (pt 642.60243 415.68679)
+ (pt 642.33438 415.28562)
+ (pt 641.93321 415.01757)
+ (pt 641.46 414.92344)
+ (pt 640.98679 415.01757)
+ (pt 640.58562 415.28562)
+ (pt 640.31757 415.68679)
+ (pt 640.22344 416.16)
+ (pt 640.31757 416.63321)
+ (pt 640.58562 417.03438)
+ (pt 640.98679 417.30243)
+ (pt 641.46 417.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 414.76243)
+ (pt 644.87438 414.49438)
+ (pt 645.14243 414.09321)
+ (pt 645.23656 413.62)
+ (pt 645.14243 413.14679)
+ (pt 644.87438 412.74562)
+ (pt 644.47321 412.47757)
+ (pt 644.0 412.38344)
+ (pt 643.52679 412.47757)
+ (pt 643.12562 412.74562)
+ (pt 642.85757 413.14679)
+ (pt 642.76344 413.62)
+ (pt 642.85757 414.09321)
+ (pt 643.12562 414.49438)
+ (pt 643.52679 414.76243)
+ (pt 644.0 414.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 409.68243)
+ (pt 644.87438 409.41438)
+ (pt 645.14243 409.01321)
+ (pt 645.23656 408.54)
+ (pt 645.14243 408.06679)
+ (pt 644.87438 407.66562)
+ (pt 644.47321 407.39757)
+ (pt 644.0 407.30344)
+ (pt 643.52679 407.39757)
+ (pt 643.12562 407.66562)
+ (pt 642.85757 408.06679)
+ (pt 642.76344 408.54)
+ (pt 642.85757 409.01321)
+ (pt 643.12562 409.41438)
+ (pt 643.52679 409.68243)
+ (pt 644.0 409.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 407.14243)
+ (pt 644.87438 406.87438)
+ (pt 645.14243 406.47321)
+ (pt 645.23656 406.0)
+ (pt 645.14243 405.52679)
+ (pt 644.87438 405.12562)
+ (pt 644.47321 404.85757)
+ (pt 644.0 404.76344)
+ (pt 643.52679 404.85757)
+ (pt 643.12562 405.12562)
+ (pt 642.85757 405.52679)
+ (pt 642.76344 406.0)
+ (pt 642.85757 406.47321)
+ (pt 643.12562 406.87438)
+ (pt 643.52679 407.14243)
+ (pt 644.0 407.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 407.14243)
+ (pt 642.33438 406.87438)
+ (pt 642.60243 406.47321)
+ (pt 642.69656 406.0)
+ (pt 642.60243 405.52679)
+ (pt 642.33438 405.12562)
+ (pt 641.93321 404.85757)
+ (pt 641.46 404.76344)
+ (pt 640.98679 404.85757)
+ (pt 640.58562 405.12562)
+ (pt 640.31757 405.52679)
+ (pt 640.22344 406.0)
+ (pt 640.31757 406.47321)
+ (pt 640.58562 406.87438)
+ (pt 640.98679 407.14243)
+ (pt 641.46 407.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 402.06243)
+ (pt 644.87438 401.79438)
+ (pt 645.14243 401.39321)
+ (pt 645.23656 400.92)
+ (pt 645.14243 400.44679)
+ (pt 644.87438 400.04562)
+ (pt 644.47321 399.77757)
+ (pt 644.0 399.68344)
+ (pt 643.52679 399.77757)
+ (pt 643.12562 400.04562)
+ (pt 642.85757 400.44679)
+ (pt 642.76344 400.92)
+ (pt 642.85757 401.39321)
+ (pt 643.12562 401.79438)
+ (pt 643.52679 402.06243)
+ (pt 644.0 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 402.06243)
+ (pt 642.33438 401.79438)
+ (pt 642.60243 401.39321)
+ (pt 642.69656 400.92)
+ (pt 642.60243 400.44679)
+ (pt 642.33438 400.04562)
+ (pt 641.93321 399.77757)
+ (pt 641.46 399.68344)
+ (pt 640.98679 399.77757)
+ (pt 640.58562 400.04562)
+ (pt 640.31757 400.44679)
+ (pt 640.22344 400.92)
+ (pt 640.31757 401.39321)
+ (pt 640.58562 401.79438)
+ (pt 640.98679 402.06243)
+ (pt 641.46 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 399.52243)
+ (pt 644.87438 399.25438)
+ (pt 645.14243 398.85321)
+ (pt 645.23656 398.38)
+ (pt 645.14243 397.90679)
+ (pt 644.87438 397.50562)
+ (pt 644.47321 397.23757)
+ (pt 644.0 397.14344)
+ (pt 643.52679 397.23757)
+ (pt 643.12562 397.50562)
+ (pt 642.85757 397.90679)
+ (pt 642.76344 398.38)
+ (pt 642.85757 398.85321)
+ (pt 643.12562 399.25438)
+ (pt 643.52679 399.52243)
+ (pt 644.0 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 399.52243)
+ (pt 642.33438 399.25438)
+ (pt 642.60243 398.85321)
+ (pt 642.69656 398.38)
+ (pt 642.60243 397.90679)
+ (pt 642.33438 397.50562)
+ (pt 641.93321 397.23757)
+ (pt 641.46 397.14344)
+ (pt 640.98679 397.23757)
+ (pt 640.58562 397.50562)
+ (pt 640.31757 397.90679)
+ (pt 640.22344 398.38)
+ (pt 640.31757 398.85321)
+ (pt 640.58562 399.25438)
+ (pt 640.98679 399.52243)
+ (pt 641.46 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 394.44243)
+ (pt 644.87438 394.17438)
+ (pt 645.14243 393.77321)
+ (pt 645.23656 393.3)
+ (pt 645.14243 392.82679)
+ (pt 644.87438 392.42562)
+ (pt 644.47321 392.15757)
+ (pt 644.0 392.06344)
+ (pt 643.52679 392.15757)
+ (pt 643.12562 392.42562)
+ (pt 642.85757 392.82679)
+ (pt 642.76344 393.3)
+ (pt 642.85757 393.77321)
+ (pt 643.12562 394.17438)
+ (pt 643.52679 394.44243)
+ (pt 644.0 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 394.44243)
+ (pt 642.33438 394.17438)
+ (pt 642.60243 393.77321)
+ (pt 642.69656 393.3)
+ (pt 642.60243 392.82679)
+ (pt 642.33438 392.42562)
+ (pt 641.93321 392.15757)
+ (pt 641.46 392.06344)
+ (pt 640.98679 392.15757)
+ (pt 640.58562 392.42562)
+ (pt 640.31757 392.82679)
+ (pt 640.22344 393.3)
+ (pt 640.31757 393.77321)
+ (pt 640.58562 394.17438)
+ (pt 640.98679 394.44243)
+ (pt 641.46 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 391.90243)
+ (pt 644.87438 391.63438)
+ (pt 645.14243 391.23321)
+ (pt 645.23656 390.76)
+ (pt 645.14243 390.28679)
+ (pt 644.87438 389.88562)
+ (pt 644.47321 389.61757)
+ (pt 644.0 389.52344)
+ (pt 643.52679 389.61757)
+ (pt 643.12562 389.88562)
+ (pt 642.85757 390.28679)
+ (pt 642.76344 390.76)
+ (pt 642.85757 391.23321)
+ (pt 643.12562 391.63438)
+ (pt 643.52679 391.90243)
+ (pt 644.0 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 391.90243)
+ (pt 642.33438 391.63438)
+ (pt 642.60243 391.23321)
+ (pt 642.69656 390.76)
+ (pt 642.60243 390.28679)
+ (pt 642.33438 389.88562)
+ (pt 641.93321 389.61757)
+ (pt 641.46 389.52344)
+ (pt 640.98679 389.61757)
+ (pt 640.58562 389.88562)
+ (pt 640.31757 390.28679)
+ (pt 640.22344 390.76)
+ (pt 640.31757 391.23321)
+ (pt 640.58562 391.63438)
+ (pt 640.98679 391.90243)
+ (pt 641.46 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 386.82243)
+ (pt 644.87438 386.55438)
+ (pt 645.14243 386.15321)
+ (pt 645.23656 385.68)
+ (pt 645.14243 385.20679)
+ (pt 644.87438 384.80562)
+ (pt 644.47321 384.53757)
+ (pt 644.0 384.44344)
+ (pt 643.52679 384.53757)
+ (pt 643.12562 384.80562)
+ (pt 642.85757 385.20679)
+ (pt 642.76344 385.68)
+ (pt 642.85757 386.15321)
+ (pt 643.12562 386.55438)
+ (pt 643.52679 386.82243)
+ (pt 644.0 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 386.82243)
+ (pt 642.33438 386.55438)
+ (pt 642.60243 386.15321)
+ (pt 642.69656 385.68)
+ (pt 642.60243 385.20679)
+ (pt 642.33438 384.80562)
+ (pt 641.93321 384.53757)
+ (pt 641.46 384.44344)
+ (pt 640.98679 384.53757)
+ (pt 640.58562 384.80562)
+ (pt 640.31757 385.20679)
+ (pt 640.22344 385.68)
+ (pt 640.31757 386.15321)
+ (pt 640.58562 386.55438)
+ (pt 640.98679 386.82243)
+ (pt 641.46 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 384.28243)
+ (pt 644.87438 384.01438)
+ (pt 645.14243 383.61321)
+ (pt 645.23656 383.14)
+ (pt 645.14243 382.66679)
+ (pt 644.87438 382.26562)
+ (pt 644.47321 381.99757)
+ (pt 644.0 381.90344)
+ (pt 643.52679 381.99757)
+ (pt 643.12562 382.26562)
+ (pt 642.85757 382.66679)
+ (pt 642.76344 383.14)
+ (pt 642.85757 383.61321)
+ (pt 643.12562 384.01438)
+ (pt 643.52679 384.28243)
+ (pt 644.0 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 384.28243)
+ (pt 642.33438 384.01438)
+ (pt 642.60243 383.61321)
+ (pt 642.69656 383.14)
+ (pt 642.60243 382.66679)
+ (pt 642.33438 382.26562)
+ (pt 641.93321 381.99757)
+ (pt 641.46 381.90344)
+ (pt 640.98679 381.99757)
+ (pt 640.58562 382.26562)
+ (pt 640.31757 382.66679)
+ (pt 640.22344 383.14)
+ (pt 640.31757 383.61321)
+ (pt 640.58562 384.01438)
+ (pt 640.98679 384.28243)
+ (pt 641.46 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 379.20243)
+ (pt 644.87438 378.93438)
+ (pt 645.14243 378.53321)
+ (pt 645.23656 378.06)
+ (pt 645.14243 377.58679)
+ (pt 644.87438 377.18562)
+ (pt 644.47321 376.91757)
+ (pt 644.0 376.82344)
+ (pt 643.52679 376.91757)
+ (pt 643.12562 377.18562)
+ (pt 642.85757 377.58679)
+ (pt 642.76344 378.06)
+ (pt 642.85757 378.53321)
+ (pt 643.12562 378.93438)
+ (pt 643.52679 379.20243)
+ (pt 644.0 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 379.20243)
+ (pt 642.33438 378.93438)
+ (pt 642.60243 378.53321)
+ (pt 642.69656 378.06)
+ (pt 642.60243 377.58679)
+ (pt 642.33438 377.18562)
+ (pt 641.93321 376.91757)
+ (pt 641.46 376.82344)
+ (pt 640.98679 376.91757)
+ (pt 640.58562 377.18562)
+ (pt 640.31757 377.58679)
+ (pt 640.22344 378.06)
+ (pt 640.31757 378.53321)
+ (pt 640.58562 378.93438)
+ (pt 640.98679 379.20243)
+ (pt 641.46 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.7128 324.72063)
+ (pt 644.86887 324.68959)
+ (pt 645.00118 324.60118)
+ (pt 645.08959 324.46887)
+ (pt 645.12063 324.3128)
+ (pt 645.12063 322.6872)
+ (pt 645.08959 322.53113)
+ (pt 645.00118 322.39882)
+ (pt 644.86887 322.31041)
+ (pt 644.7128 322.27937)
+ (pt 643.0872 322.27937)
+ (pt 642.93113 322.31041)
+ (pt 642.79882 322.39882)
+ (pt 642.71041 322.53113)
+ (pt 642.67937 322.6872)
+ (pt 642.67937 324.3128)
+ (pt 642.71041 324.46887)
+ (pt 642.79882 324.60118)
+ (pt 642.93113 324.68959)
+ (pt 643.0872 324.72063)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 317.02243)
+ (pt 644.77438 316.75438)
+ (pt 645.04243 316.35321)
+ (pt 645.13656 315.88)
+ (pt 645.04243 315.40679)
+ (pt 644.77438 315.00562)
+ (pt 644.37321 314.73757)
+ (pt 643.9 314.64344)
+ (pt 643.42679 314.73757)
+ (pt 643.02562 315.00562)
+ (pt 642.75757 315.40679)
+ (pt 642.66344 315.88)
+ (pt 642.75757 316.35321)
+ (pt 643.02562 316.75438)
+ (pt 643.42679 317.02243)
+ (pt 643.9 317.11656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 319.56243)
+ (pt 644.77438 319.29438)
+ (pt 645.04243 318.89321)
+ (pt 645.13656 318.42)
+ (pt 645.04243 317.94679)
+ (pt 644.77438 317.54562)
+ (pt 644.37321 317.27757)
+ (pt 643.9 317.18344)
+ (pt 643.42679 317.27757)
+ (pt 643.02562 317.54562)
+ (pt 642.75757 317.94679)
+ (pt 642.66344 318.42)
+ (pt 642.75757 318.89321)
+ (pt 643.02562 319.29438)
+ (pt 643.42679 319.56243)
+ (pt 643.9 319.65656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 309.40243)
+ (pt 644.77438 309.13438)
+ (pt 645.04243 308.73321)
+ (pt 645.13656 308.26)
+ (pt 645.04243 307.78679)
+ (pt 644.77438 307.38562)
+ (pt 644.37321 307.11757)
+ (pt 643.9 307.02344)
+ (pt 643.42679 307.11757)
+ (pt 643.02562 307.38562)
+ (pt 642.75757 307.78679)
+ (pt 642.66344 308.26)
+ (pt 642.75757 308.73321)
+ (pt 643.02562 309.13438)
+ (pt 643.42679 309.40243)
+ (pt 643.9 309.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 311.94243)
+ (pt 644.77438 311.67438)
+ (pt 645.04243 311.27321)
+ (pt 645.13656 310.8)
+ (pt 645.04243 310.32679)
+ (pt 644.77438 309.92562)
+ (pt 644.37321 309.65757)
+ (pt 643.9 309.56344)
+ (pt 643.42679 309.65757)
+ (pt 643.02562 309.92562)
+ (pt 642.75757 310.32679)
+ (pt 642.66344 310.8)
+ (pt 642.75757 311.27321)
+ (pt 643.02562 311.67438)
+ (pt 643.42679 311.94243)
+ (pt 643.9 312.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 301.78243)
+ (pt 644.77438 301.51438)
+ (pt 645.04243 301.11321)
+ (pt 645.13656 300.64)
+ (pt 645.04243 300.16679)
+ (pt 644.77438 299.76562)
+ (pt 644.37321 299.49757)
+ (pt 643.9 299.40344)
+ (pt 643.42679 299.49757)
+ (pt 643.02562 299.76562)
+ (pt 642.75757 300.16679)
+ (pt 642.66344 300.64)
+ (pt 642.75757 301.11321)
+ (pt 643.02562 301.51438)
+ (pt 643.42679 301.78243)
+ (pt 643.9 301.87656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 304.32243)
+ (pt 644.77438 304.05438)
+ (pt 645.04243 303.65321)
+ (pt 645.13656 303.18)
+ (pt 645.04243 302.70679)
+ (pt 644.77438 302.30562)
+ (pt 644.37321 302.03757)
+ (pt 643.9 301.94344)
+ (pt 643.42679 302.03757)
+ (pt 643.02562 302.30562)
+ (pt 642.75757 302.70679)
+ (pt 642.66344 303.18)
+ (pt 642.75757 303.65321)
+ (pt 643.02562 304.05438)
+ (pt 643.42679 304.32243)
+ (pt 643.9 304.41656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 294.16243)
+ (pt 644.77438 293.89438)
+ (pt 645.04243 293.49321)
+ (pt 645.13656 293.02)
+ (pt 645.04243 292.54679)
+ (pt 644.77438 292.14562)
+ (pt 644.37321 291.87757)
+ (pt 643.9 291.78344)
+ (pt 643.42679 291.87757)
+ (pt 643.02562 292.14562)
+ (pt 642.75757 292.54679)
+ (pt 642.66344 293.02)
+ (pt 642.75757 293.49321)
+ (pt 643.02562 293.89438)
+ (pt 643.42679 294.16243)
+ (pt 643.9 294.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 296.70243)
+ (pt 644.77438 296.43438)
+ (pt 645.04243 296.03321)
+ (pt 645.13656 295.56)
+ (pt 645.04243 295.08679)
+ (pt 644.77438 294.68562)
+ (pt 644.37321 294.41757)
+ (pt 643.9 294.32344)
+ (pt 643.42679 294.41757)
+ (pt 643.02562 294.68562)
+ (pt 642.75757 295.08679)
+ (pt 642.66344 295.56)
+ (pt 642.75757 296.03321)
+ (pt 643.02562 296.43438)
+ (pt 643.42679 296.70243)
+ (pt 643.9 296.79656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 286.54243)
+ (pt 644.77438 286.27438)
+ (pt 645.04243 285.87321)
+ (pt 645.13656 285.4)
+ (pt 645.04243 284.92679)
+ (pt 644.77438 284.52562)
+ (pt 644.37321 284.25757)
+ (pt 643.9 284.16344)
+ (pt 643.42679 284.25757)
+ (pt 643.02562 284.52562)
+ (pt 642.75757 284.92679)
+ (pt 642.66344 285.4)
+ (pt 642.75757 285.87321)
+ (pt 643.02562 286.27438)
+ (pt 643.42679 286.54243)
+ (pt 643.9 286.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 289.08243)
+ (pt 644.77438 288.81438)
+ (pt 645.04243 288.41321)
+ (pt 645.13656 287.94)
+ (pt 645.04243 287.46679)
+ (pt 644.77438 287.06562)
+ (pt 644.37321 286.79757)
+ (pt 643.9 286.70344)
+ (pt 643.42679 286.79757)
+ (pt 643.02562 287.06562)
+ (pt 642.75757 287.46679)
+ (pt 642.66344 287.94)
+ (pt 642.75757 288.41321)
+ (pt 643.02562 288.81438)
+ (pt 643.42679 289.08243)
+ (pt 643.9 289.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 278.92243)
+ (pt 644.77438 278.65438)
+ (pt 645.04243 278.25321)
+ (pt 645.13656 277.78)
+ (pt 645.04243 277.30679)
+ (pt 644.77438 276.90562)
+ (pt 644.37321 276.63757)
+ (pt 643.9 276.54344)
+ (pt 643.42679 276.63757)
+ (pt 643.02562 276.90562)
+ (pt 642.75757 277.30679)
+ (pt 642.66344 277.78)
+ (pt 642.75757 278.25321)
+ (pt 643.02562 278.65438)
+ (pt 643.42679 278.92243)
+ (pt 643.9 279.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 281.46243)
+ (pt 644.77438 281.19438)
+ (pt 645.04243 280.79321)
+ (pt 645.13656 280.32)
+ (pt 645.04243 279.84679)
+ (pt 644.77438 279.44562)
+ (pt 644.37321 279.17757)
+ (pt 643.9 279.08344)
+ (pt 643.42679 279.17757)
+ (pt 643.02562 279.44562)
+ (pt 642.75757 279.84679)
+ (pt 642.66344 280.32)
+ (pt 642.75757 280.79321)
+ (pt 643.02562 281.19438)
+ (pt 643.42679 281.46243)
+ (pt 643.9 281.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 271.30243)
+ (pt 644.77438 271.03438)
+ (pt 645.04243 270.63321)
+ (pt 645.13656 270.16)
+ (pt 645.04243 269.68679)
+ (pt 644.77438 269.28562)
+ (pt 644.37321 269.01757)
+ (pt 643.9 268.92344)
+ (pt 643.42679 269.01757)
+ (pt 643.02562 269.28562)
+ (pt 642.75757 269.68679)
+ (pt 642.66344 270.16)
+ (pt 642.75757 270.63321)
+ (pt 643.02562 271.03438)
+ (pt 643.42679 271.30243)
+ (pt 643.9 271.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 273.84243)
+ (pt 644.77438 273.57438)
+ (pt 645.04243 273.17321)
+ (pt 645.13656 272.7)
+ (pt 645.04243 272.22679)
+ (pt 644.77438 271.82562)
+ (pt 644.37321 271.55757)
+ (pt 643.9 271.46344)
+ (pt 643.42679 271.55757)
+ (pt 643.02562 271.82562)
+ (pt 642.75757 272.22679)
+ (pt 642.66344 272.7)
+ (pt 642.75757 273.17321)
+ (pt 643.02562 273.57438)
+ (pt 643.42679 273.84243)
+ (pt 643.9 273.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 263.68243)
+ (pt 644.77438 263.41438)
+ (pt 645.04243 263.01321)
+ (pt 645.13656 262.54)
+ (pt 645.04243 262.06679)
+ (pt 644.77438 261.66562)
+ (pt 644.37321 261.39757)
+ (pt 643.9 261.30344)
+ (pt 643.42679 261.39757)
+ (pt 643.02562 261.66562)
+ (pt 642.75757 262.06679)
+ (pt 642.66344 262.54)
+ (pt 642.75757 263.01321)
+ (pt 643.02562 263.41438)
+ (pt 643.42679 263.68243)
+ (pt 643.9 263.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 266.22243)
+ (pt 644.77438 265.95438)
+ (pt 645.04243 265.55321)
+ (pt 645.13656 265.08)
+ (pt 645.04243 264.60679)
+ (pt 644.77438 264.20562)
+ (pt 644.37321 263.93757)
+ (pt 643.9 263.84344)
+ (pt 643.42679 263.93757)
+ (pt 643.02562 264.20562)
+ (pt 642.75757 264.60679)
+ (pt 642.66344 265.08)
+ (pt 642.75757 265.55321)
+ (pt 643.02562 265.95438)
+ (pt 643.42679 266.22243)
+ (pt 643.9 266.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 256.06243)
+ (pt 644.77438 255.79438)
+ (pt 645.04243 255.39321)
+ (pt 645.13656 254.92)
+ (pt 645.04243 254.44679)
+ (pt 644.77438 254.04562)
+ (pt 644.37321 253.77757)
+ (pt 643.9 253.68344)
+ (pt 643.42679 253.77757)
+ (pt 643.02562 254.04562)
+ (pt 642.75757 254.44679)
+ (pt 642.66344 254.92)
+ (pt 642.75757 255.39321)
+ (pt 643.02562 255.79438)
+ (pt 643.42679 256.06243)
+ (pt 643.9 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 258.60243)
+ (pt 644.77438 258.33438)
+ (pt 645.04243 257.93321)
+ (pt 645.13656 257.46)
+ (pt 645.04243 256.98679)
+ (pt 644.77438 256.58562)
+ (pt 644.37321 256.31757)
+ (pt 643.9 256.22344)
+ (pt 643.42679 256.31757)
+ (pt 643.02562 256.58562)
+ (pt 642.75757 256.98679)
+ (pt 642.66344 257.46)
+ (pt 642.75757 257.93321)
+ (pt 643.02562 258.33438)
+ (pt 643.42679 258.60243)
+ (pt 643.9 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 248.44243)
+ (pt 644.77438 248.17438)
+ (pt 645.04243 247.77321)
+ (pt 645.13656 247.3)
+ (pt 645.04243 246.82679)
+ (pt 644.77438 246.42562)
+ (pt 644.37321 246.15757)
+ (pt 643.9 246.06344)
+ (pt 643.42679 246.15757)
+ (pt 643.02562 246.42562)
+ (pt 642.75757 246.82679)
+ (pt 642.66344 247.3)
+ (pt 642.75757 247.77321)
+ (pt 643.02562 248.17438)
+ (pt 643.42679 248.44243)
+ (pt 643.9 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 637.835 349.58283)
+ (pt 637.99107 349.55179)
+ (pt 638.12338 349.46338)
+ (pt 638.21179 349.33107)
+ (pt 638.24283 349.175)
+ (pt 638.24283 347.925)
+ (pt 638.21179 347.76893)
+ (pt 638.12338 347.63662)
+ (pt 637.99107 347.54821)
+ (pt 637.835 347.51717)
+ (pt 635.835 347.51717)
+ (pt 635.67893 347.54821)
+ (pt 635.54662 347.63662)
+ (pt 635.45821 347.76893)
+ (pt 635.42717 347.925)
+ (pt 635.42717 349.175)
+ (pt 635.45821 349.33107)
+ (pt 635.54662 349.46338)
+ (pt 635.67893 349.55179)
+ (pt 635.835 349.58283)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 637.64778 345.64884)
+ (pt 637.44886 345.35114)
+ (pt 637.15116 345.15222)
+ (pt 636.8 345.08237)
+ (pt 636.44884 345.15222)
+ (pt 636.15114 345.35114)
+ (pt 635.95222 345.64884)
+ (pt 635.88237 346.0)
+ (pt 635.95222 346.35116)
+ (pt 636.15114 346.64886)
+ (pt 636.44884 346.84778)
+ (pt 636.8 346.91763)
+ (pt 637.15116 346.84778)
+ (pt 637.44886 346.64886)
+ (pt 637.64778 346.35116)
+ (pt 637.71763 346.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 640.06243 449.65321)
+ (pt 640.15656 449.18)
+ (pt 640.06243 448.70679)
+ (pt 639.89833 448.4612)
+ (pt 639.97582 448.4612)
+ (pt 640.30162 448.787)
+ (pt 640.22344 449.18)
+ (pt 640.31757 449.65321)
+ (pt 640.58562 450.05438)
+ (pt 640.98679 450.32243)
+ (pt 641.46 450.41656)
+ (pt 641.93321 450.32243)
+ (pt 642.33438 450.05438)
+ (pt 642.60243 449.65321)
+ (pt 642.69656 449.18)
+ (pt 642.60243 448.70679)
+ (pt 642.33438 448.30562)
+ (pt 641.93321 448.03757)
+ (pt 641.46 447.94344)
+ (pt 641.067 448.02162)
+ (pt 640.58269 447.53731)
+ (pt 640.2 447.3788)
+ (pt 639.88497 447.3788)
+ (pt 640.06243 447.11321)
+ (pt 640.15656 446.64)
+ (pt 640.06243 446.16679)
+ (pt 639.9117 445.9412)
+ (pt 639.99582 445.9412)
+ (pt 640.30162 446.247)
+ (pt 640.22344 446.64)
+ (pt 640.31757 447.11321)
+ (pt 640.58562 447.51438)
+ (pt 640.98679 447.78243)
+ (pt 641.46 447.87656)
+ (pt 641.93321 447.78243)
+ (pt 642.33438 447.51438)
+ (pt 642.60243 447.11321)
+ (pt 642.69656 446.64)
+ (pt 642.60243 446.16679)
+ (pt 642.33438 445.76562)
+ (pt 641.93321 445.49757)
+ (pt 641.46 445.40344)
+ (pt 641.067 445.48162)
+ (pt 640.60269 445.01731)
+ (pt 640.22 444.8588)
+ (pt 639.87161 444.8588)
+ (pt 640.06243 444.57321)
+ (pt 640.15656 444.1)
+ (pt 640.06243 443.62679)
+ (pt 639.92506 443.4212)
+ (pt 640.01582 443.4212)
+ (pt 640.30162 443.707)
+ (pt 640.22344 444.1)
+ (pt 640.31757 444.57321)
+ (pt 640.58562 444.97438)
+ (pt 640.98679 445.24243)
+ (pt 641.46 445.33656)
+ (pt 641.93321 445.24243)
+ (pt 642.33438 444.97438)
+ (pt 642.60243 444.57321)
+ (pt 642.69656 444.1)
+ (pt 642.60243 443.62679)
+ (pt 642.33438 443.22562)
+ (pt 641.93321 442.95757)
+ (pt 641.46 442.86344)
+ (pt 641.067 442.94162)
+ (pt 640.62269 442.49731)
+ (pt 640.24 442.3388)
+ (pt 639.85824 442.3388)
+ (pt 640.06243 442.03321)
+ (pt 640.15656 441.56)
+ (pt 640.06243 441.08679)
+ (pt 639.9117 440.8612)
+ (pt 639.99582 440.8612)
+ (pt 640.30162 441.167)
+ (pt 640.22344 441.56)
+ (pt 640.31757 442.03321)
+ (pt 640.58562 442.43438)
+ (pt 640.98679 442.70243)
+ (pt 641.46 442.79656)
+ (pt 641.93321 442.70243)
+ (pt 642.33438 442.43438)
+ (pt 642.60243 442.03321)
+ (pt 642.69656 441.56)
+ (pt 642.60243 441.08679)
+ (pt 642.33438 440.68562)
+ (pt 641.93321 440.41757)
+ (pt 641.46 440.32344)
+ (pt 641.067 440.40162)
+ (pt 640.60269 439.93731)
+ (pt 640.22 439.7788)
+ (pt 639.87161 439.7788)
+ (pt 640.06243 439.49321)
+ (pt 640.15656 439.02)
+ (pt 640.06243 438.54679)
+ (pt 639.89833 438.3012)
+ (pt 639.97582 438.3012)
+ (pt 640.30162 438.627)
+ (pt 640.22344 439.02)
+ (pt 640.31757 439.49321)
+ (pt 640.58562 439.89438)
+ (pt 640.98679 440.16243)
+ (pt 641.46 440.25656)
+ (pt 641.93321 440.16243)
+ (pt 642.33438 439.89438)
+ (pt 642.60243 439.49321)
+ (pt 642.69656 439.02)
+ (pt 642.60243 438.54679)
+ (pt 642.33438 438.14562)
+ (pt 641.93321 437.87757)
+ (pt 641.46 437.78344)
+ (pt 641.067 437.86162)
+ (pt 640.58269 437.37731)
+ (pt 640.2 437.2188)
+ (pt 639.88497 437.2188)
+ (pt 640.06243 436.95321)
+ (pt 640.15656 436.48)
+ (pt 640.06243 436.00679)
+ (pt 639.9117 435.7812)
+ (pt 639.99582 435.7812)
+ (pt 640.30162 436.087)
+ (pt 640.22344 436.48)
+ (pt 640.31757 436.95321)
+ (pt 640.58562 437.35438)
+ (pt 640.98679 437.62243)
+ (pt 641.46 437.71656)
+ (pt 641.93321 437.62243)
+ (pt 642.33438 437.35438)
+ (pt 642.60243 436.95321)
+ (pt 642.69656 436.48)
+ (pt 642.60243 436.00679)
+ (pt 642.33438 435.60562)
+ (pt 641.93321 435.33757)
+ (pt 641.46 435.24344)
+ (pt 641.067 435.32162)
+ (pt 640.60269 434.85731)
+ (pt 640.22 434.6988)
+ (pt 639.87161 434.6988)
+ (pt 640.06243 434.41321)
+ (pt 640.15656 433.94)
+ (pt 640.06243 433.46679)
+ (pt 639.95179 433.3012)
+ (pt 640.05582 433.3012)
+ (pt 640.30162 433.547)
+ (pt 640.22344 433.94)
+ (pt 640.31757 434.41321)
+ (pt 640.58562 434.81438)
+ (pt 640.98679 435.08243)
+ (pt 641.46 435.17656)
+ (pt 641.93321 435.08243)
+ (pt 642.33438 434.81438)
+ (pt 642.60243 434.41321)
+ (pt 642.69656 433.94)
+ (pt 642.60243 433.46679)
+ (pt 642.33438 433.06562)
+ (pt 641.93321 432.79757)
+ (pt 641.46 432.70344)
+ (pt 641.067 432.78162)
+ (pt 640.66269 432.37731)
+ (pt 640.28 432.2188)
+ (pt 639.83152 432.2188)
+ (pt 640.06243 431.87321)
+ (pt 640.15656 431.4)
+ (pt 640.10738 431.15276)
+ (pt 640.2452 431.29058)
+ (pt 640.22344 431.4)
+ (pt 640.31757 431.87321)
+ (pt 640.58562 432.27438)
+ (pt 640.98679 432.54243)
+ (pt 641.46 432.63656)
+ (pt 641.93321 432.54243)
+ (pt 642.33438 432.27438)
+ (pt 642.60243 431.87321)
+ (pt 642.69656 431.4)
+ (pt 642.60243 430.92679)
+ (pt 642.33438 430.52562)
+ (pt 641.93321 430.25757)
+ (pt 641.46 430.16344)
+ (pt 640.98679 430.25757)
+ (pt 640.84062 430.35524)
+ (pt 640.26269 429.77731)
+ (pt 639.88 429.6188)
+ (pt 639.87161 429.6188)
+ (pt 640.06243 429.33321)
+ (pt 640.15656 428.86)
+ (pt 640.06243 428.38679)
+ (pt 639.92506 428.1812)
+ (pt 640.01582 428.1812)
+ (pt 640.30162 428.467)
+ (pt 640.22344 428.86)
+ (pt 640.31757 429.33321)
+ (pt 640.58562 429.73438)
+ (pt 640.98679 430.00243)
+ (pt 641.46 430.09656)
+ (pt 641.93321 430.00243)
+ (pt 642.33438 429.73438)
+ (pt 642.60243 429.33321)
+ (pt 642.69656 428.86)
+ (pt 642.60243 428.38679)
+ (pt 642.33438 427.98562)
+ (pt 641.93321 427.71757)
+ (pt 641.46 427.62344)
+ (pt 641.067 427.70162)
+ (pt 640.62269 427.25731)
+ (pt 640.24 427.0988)
+ (pt 639.85824 427.0988)
+ (pt 640.06243 426.79321)
+ (pt 640.15656 426.32)
+ (pt 640.06243 425.84679)
+ (pt 639.88497 425.5812)
+ (pt 639.95582 425.5812)
+ (pt 640.30162 425.927)
+ (pt 640.22344 426.32)
+ (pt 640.31757 426.79321)
+ (pt 640.58562 427.19438)
+ (pt 640.98679 427.46243)
+ (pt 641.46 427.55656)
+ (pt 641.93321 427.46243)
+ (pt 642.33438 427.19438)
+ (pt 642.60243 426.79321)
+ (pt 642.69656 426.32)
+ (pt 642.60243 425.84679)
+ (pt 642.33438 425.44562)
+ (pt 641.93321 425.17757)
+ (pt 641.46 425.08344)
+ (pt 641.067 425.16162)
+ (pt 640.56269 424.65731)
+ (pt 640.18 424.4988)
+ (pt 639.89833 424.4988)
+ (pt 640.06243 424.25321)
+ (pt 640.15656 423.78)
+ (pt 640.06243 423.30679)
+ (pt 639.92506 423.1012)
+ (pt 640.01582 423.1012)
+ (pt 640.30162 423.387)
+ (pt 640.22344 423.78)
+ (pt 640.31757 424.25321)
+ (pt 640.58562 424.65438)
+ (pt 640.98679 424.92243)
+ (pt 641.46 425.01656)
+ (pt 641.93321 424.92243)
+ (pt 642.33438 424.65438)
+ (pt 642.60243 424.25321)
+ (pt 642.69656 423.78)
+ (pt 642.60243 423.30679)
+ (pt 642.33438 422.90562)
+ (pt 641.93321 422.63757)
+ (pt 641.46 422.54344)
+ (pt 641.067 422.62162)
+ (pt 640.62269 422.17731)
+ (pt 640.24 422.0188)
+ (pt 639.85824 422.0188)
+ (pt 640.06243 421.71321)
+ (pt 640.15656 421.24)
+ (pt 640.06243 420.76679)
+ (pt 639.88497 420.5012)
+ (pt 639.95582 420.5012)
+ (pt 640.30162 420.847)
+ (pt 640.22344 421.24)
+ (pt 640.31757 421.71321)
+ (pt 640.58562 422.11438)
+ (pt 640.98679 422.38243)
+ (pt 641.46 422.47656)
+ (pt 641.93321 422.38243)
+ (pt 642.33438 422.11438)
+ (pt 642.60243 421.71321)
+ (pt 642.69656 421.24)
+ (pt 642.60243 420.76679)
+ (pt 642.33438 420.36562)
+ (pt 641.93321 420.09757)
+ (pt 641.46 420.00344)
+ (pt 641.067 420.08162)
+ (pt 640.56269 419.57731)
+ (pt 640.18 419.4188)
+ (pt 639.89833 419.4188)
+ (pt 640.06243 419.17321)
+ (pt 640.15656 418.7)
+ (pt 640.06243 418.22679)
+ (pt 639.92506 418.0212)
+ (pt 640.01582 418.0212)
+ (pt 640.30162 418.307)
+ (pt 640.22344 418.7)
+ (pt 640.31757 419.17321)
+ (pt 640.58562 419.57438)
+ (pt 640.98679 419.84243)
+ (pt 641.46 419.93656)
+ (pt 641.93321 419.84243)
+ (pt 642.33438 419.57438)
+ (pt 642.60243 419.17321)
+ (pt 642.69656 418.7)
+ (pt 642.60243 418.22679)
+ (pt 642.33438 417.82562)
+ (pt 641.93321 417.55757)
+ (pt 641.46 417.46344)
+ (pt 641.067 417.54162)
+ (pt 640.62269 417.09731)
+ (pt 640.24 416.9388)
+ (pt 639.85824 416.9388)
+ (pt 640.06243 416.63321)
+ (pt 640.15656 416.16)
+ (pt 640.06243 415.68679)
+ (pt 639.79438 415.28562)
+ (pt 639.39321 415.01757)
+ (pt 638.92 414.92344)
+ (pt 638.44679 415.01757)
+ (pt 638.04562 415.28562)
+ (pt 637.77757 415.68679)
+ (pt 637.68344 416.16)
+ (pt 637.77757 416.63321)
+ (pt 637.98176 416.9388)
+ (pt 634.98418 416.9388)
+ (pt 634.2349 416.18952)
+ (pt 636.89168 416.18952)
+ (pt 637.27437 416.03101)
+ (pt 638.527 414.77838)
+ (pt 638.92 414.85656)
+ (pt 639.39321 414.76243)
+ (pt 639.79438 414.49438)
+ (pt 640.06243 414.09321)
+ (pt 640.15656 413.62)
+ (pt 640.06243 413.14679)
+ (pt 639.92506 412.9412)
+ (pt 640.01582 412.9412)
+ (pt 640.30162 413.227)
+ (pt 640.22344 413.62)
+ (pt 640.31757 414.09321)
+ (pt 640.58562 414.49438)
+ (pt 640.98679 414.76243)
+ (pt 641.46 414.85656)
+ (pt 641.93321 414.76243)
+ (pt 642.33438 414.49438)
+ (pt 642.60243 414.09321)
+ (pt 642.69656 413.62)
+ (pt 642.60243 413.14679)
+ (pt 642.33438 412.74562)
+ (pt 641.93321 412.47757)
+ (pt 641.46 412.38344)
+ (pt 641.067 412.46162)
+ (pt 640.62269 412.01731)
+ (pt 640.24 411.8588)
+ (pt 639.85824 411.8588)
+ (pt 640.06243 411.55321)
+ (pt 640.15656 411.08)
+ (pt 640.06243 410.60679)
+ (pt 639.92506 410.4012)
+ (pt 640.01582 410.4012)
+ (pt 640.30162 410.687)
+ (pt 640.22344 411.08)
+ (pt 640.31757 411.55321)
+ (pt 640.58562 411.95438)
+ (pt 640.98679 412.22243)
+ (pt 641.46 412.31656)
+ (pt 641.93321 412.22243)
+ (pt 642.33438 411.95438)
+ (pt 642.60243 411.55321)
+ (pt 642.69656 411.08)
+ (pt 642.60243 410.60679)
+ (pt 642.33438 410.20562)
+ (pt 641.93321 409.93757)
+ (pt 641.46 409.84344)
+ (pt 641.067 409.92162)
+ (pt 640.62269 409.47731)
+ (pt 640.24 409.3188)
+ (pt 639.85824 409.3188)
+ (pt 640.06243 409.01321)
+ (pt 640.15656 408.54)
+ (pt 640.06243 408.06679)
+ (pt 639.95179 407.9012)
+ (pt 640.05582 407.9012)
+ (pt 640.30162 408.147)
+ (pt 640.22344 408.54)
+ (pt 640.31757 409.01321)
+ (pt 640.58562 409.41438)
+ (pt 640.98679 409.68243)
+ (pt 641.46 409.77656)
+ (pt 641.93321 409.68243)
+ (pt 642.33438 409.41438)
+ (pt 642.60243 409.01321)
+ (pt 642.69656 408.54)
+ (pt 642.60243 408.06679)
+ (pt 642.33438 407.66562)
+ (pt 641.93321 407.39757)
+ (pt 641.46 407.30344)
+ (pt 641.067 407.38162)
+ (pt 640.66269 406.97731)
+ (pt 640.28 406.8188)
+ (pt 639.83152 406.8188)
+ (pt 640.06243 406.47321)
+ (pt 640.15656 406.0)
+ (pt 640.06243 405.52679)
+ (pt 639.79438 405.12562)
+ (pt 639.39321 404.85757)
+ (pt 638.92 404.76344)
+ (pt 638.44679 404.85757)
+ (pt 638.04562 405.12562)
+ (pt 637.77757 405.52679)
+ (pt 637.68344 406.0)
+ (pt 637.77757 406.47321)
+ (pt 638.00848 406.8188)
+ (pt 636.88 406.8188)
+ (pt 636.49731 406.97731)
+ (pt 635.86702 407.6076)
+ (pt 626.33556 407.6076)
+ (pt 626.35725 407.49856)
+ (pt 626.31044 407.26321)
+ (pt 626.25046 407.17344)
+ (pt 626.31044 407.08367)
+ (pt 626.35725 406.84832)
+ (pt 626.33556 406.73928)
+ (pt 627.21128 406.73928)
+ (pt 627.27114 406.82886)
+ (pt 627.56884 407.02778)
+ (pt 627.92 407.09763)
+ (pt 628.27116 407.02778)
+ (pt 628.56886 406.82886)
+ (pt 628.76778 406.53116)
+ (pt 628.83763 406.18)
+ (pt 628.76778 405.82884)
+ (pt 628.56886 405.53114)
+ (pt 628.27116 405.33222)
+ (pt 627.92 405.26237)
+ (pt 627.56884 405.33222)
+ (pt 627.43247 405.42334)
+ (pt 627.39358 405.22786)
+ (pt 627.21676 404.96324)
+ (pt 626.95214 404.78642)
+ (pt 626.64 404.72433)
+ (pt 626.32786 404.78642)
+ (pt 626.06324 404.96324)
+ (pt 626.03424 405.00664)
+ (pt 626.018 405.00664)
+ (pt 625.97759 404.97964)
+ (pt 625.74224 404.93283)
+ (pt 624.52304 404.93283)
+ (pt 624.28769 404.97964)
+ (pt 624.24728 405.00664)
+ (pt 621.77202 405.00664)
+ (pt 620.46269 403.69731)
+ (pt 620.08 403.5388)
+ (pt 616.2 403.5388)
+ (pt 615.81731 403.69731)
+ (pt 612.44195 407.07267)
+ (pt 612.4 407.06433)
+ (pt 612.08786 407.12642)
+ (pt 611.82324 407.30324)
+ (pt 611.64642 407.56786)
+ (pt 611.58433 407.88)
+ (pt 611.64642 408.19214)
+ (pt 611.82324 408.45676)
+ (pt 612.08786 408.63358)
+ (pt 612.4 408.69567)
+ (pt 612.71214 408.63358)
+ (pt 612.97676 408.45676)
+ (pt 613.15358 408.19214)
+ (pt 613.21567 407.88)
+ (pt 613.20733 407.83805)
+ (pt 616.42418 404.6212)
+ (pt 619.85582 404.6212)
+ (pt 621.16515 405.93053)
+ (pt 621.54784 406.08904)
+ (pt 623.92972 406.08904)
+ (pt 623.90803 406.19808)
+ (pt 623.95484 406.43343)
+ (pt 624.01482 406.5232)
+ (pt 623.95484 406.61297)
+ (pt 623.90803 406.84832)
+ (pt 623.95484 407.08367)
+ (pt 624.01482 407.17344)
+ (pt 623.95484 407.26321)
+ (pt 623.90803 407.49856)
+ (pt 623.95484 407.73391)
+ (pt 624.01482 407.82368)
+ (pt 623.95484 407.91345)
+ (pt 623.90803 408.1488)
+ (pt 623.95484 408.38415)
+ (pt 624.01482 408.47392)
+ (pt 623.95484 408.56369)
+ (pt 623.90803 408.79904)
+ (pt 623.95484 409.03439)
+ (pt 624.01482 409.12416)
+ (pt 623.95484 409.21393)
+ (pt 623.90803 409.44928)
+ (pt 623.95484 409.68463)
+ (pt 624.01482 409.7744)
+ (pt 623.95484 409.86417)
+ (pt 623.93071 409.98547)
+ (pt 623.79116 409.89222)
+ (pt 623.44 409.82237)
+ (pt 623.08884 409.89222)
+ (pt 622.79114 410.09114)
+ (pt 622.59222 410.38884)
+ (pt 622.52237 410.74)
+ (pt 622.59222 411.09116)
+ (pt 622.79114 411.38886)
+ (pt 623.08884 411.58778)
+ (pt 623.44 411.65763)
+ (pt 623.79116 411.58778)
+ (pt 623.92729 411.49682)
+ (pt 623.95484 411.63535)
+ (pt 624.08816 411.83488)
+ (pt 624.28769 411.9682)
+ (pt 624.52304 412.01501)
+ (pt 625.04952 412.01501)
+ (pt 625.13264 412.04944)
+ (pt 626.09201 412.04944)
+ (pt 626.38884 412.24778)
+ (pt 626.74 412.31763)
+ (pt 627.09116 412.24778)
+ (pt 627.38886 412.04886)
+ (pt 627.58778 411.75116)
+ (pt 627.65763 411.4)
+ (pt 627.58778 411.04884)
+ (pt 627.38886 410.75114)
+ (pt 627.22361 410.64072)
+ (pt 634.13534 410.64072)
+ (pt 634.95731 411.46269)
+ (pt 635.34 411.6212)
+ (pt 637.823 411.6212)
+ (pt 637.98176 411.8588)
+ (pt 637.52 411.8588)
+ (pt 637.13731 412.01731)
+ (pt 635.34798 413.80664)
+ (pt 626.118 413.80664)
+ (pt 626.07759 413.77964)
+ (pt 625.84224 413.73283)
+ (pt 624.62304 413.73283)
+ (pt 624.38769 413.77964)
+ (pt 624.18816 413.91296)
+ (pt 624.05484 414.11249)
+ (pt 624.00803 414.34784)
+ (pt 624.02972 414.45688)
+ (pt 623.70226 414.45688)
+ (pt 622.50733 413.26195)
+ (pt 622.51567 413.22)
+ (pt 622.45358 412.90786)
+ (pt 622.27676 412.64324)
+ (pt 622.01214 412.46642)
+ (pt 621.7 412.40433)
+ (pt 621.38786 412.46642)
+ (pt 621.12324 412.64324)
+ (pt 620.94642 412.90786)
+ (pt 620.88433 413.22)
+ (pt 620.94642 413.53214)
+ (pt 621.12324 413.79676)
+ (pt 621.38786 413.97358)
+ (pt 621.7 414.03567)
+ (pt 621.74195 414.02733)
+ (pt 623.09539 415.38077)
+ (pt 623.47808 415.53928)
+ (pt 624.02972 415.53928)
+ (pt 624.00803 415.64832)
+ (pt 624.05484 415.88367)
+ (pt 624.11482 415.97344)
+ (pt 624.05484 416.06321)
+ (pt 624.00803 416.29856)
+ (pt 624.05484 416.53391)
+ (pt 624.11482 416.62368)
+ (pt 624.05484 416.71345)
+ (pt 624.00803 416.9488)
+ (pt 624.05484 417.18415)
+ (pt 624.11482 417.27392)
+ (pt 624.05484 417.36369)
+ (pt 624.00803 417.59904)
+ (pt 624.05484 417.83439)
+ (pt 624.11482 417.92416)
+ (pt 624.05484 418.01393)
+ (pt 624.00803 418.24928)
+ (pt 624.05484 418.48463)
+ (pt 624.11482 418.5744)
+ (pt 624.05484 418.66417)
+ (pt 624.04714 418.7029)
+ (pt 624.03116 418.69222)
+ (pt 623.68 418.62237)
+ (pt 623.32884 418.69222)
+ (pt 623.03114 418.89114)
+ (pt 622.83222 419.18884)
+ (pt 622.76237 419.54)
+ (pt 622.83222 419.89116)
+ (pt 623.03114 420.18886)
+ (pt 623.32884 420.38778)
+ (pt 623.68 420.45763)
+ (pt 624.03116 420.38778)
+ (pt 624.04371 420.37939)
+ (pt 624.05484 420.43535)
+ (pt 624.18816 420.63488)
+ (pt 624.38769 420.7682)
+ (pt 624.62304 420.81501)
+ (pt 625.14952 420.81501)
+ (pt 625.23264 420.84944)
+ (pt 626.3418 420.84944)
+ (pt 626.54884 420.98778)
+ (pt 626.9 421.05763)
+ (pt 627.25116 420.98778)
+ (pt 627.54886 420.78886)
+ (pt 627.74778 420.49116)
+ (pt 627.81763 420.14)
+ (pt 627.74778 419.78884)
+ (pt 627.54886 419.49114)
+ (pt 627.4734 419.44072)
+ (pt 630.55534 419.44072)
+ (pt 634.05731 422.94269)
+ (pt 634.44 423.1012)
+ (pt 637.91494 423.1012)
+ (pt 637.77757 423.30679)
+ (pt 637.74179 423.48664)
+ (pt 626.118 423.48664)
+ (pt 626.07759 423.45964)
+ (pt 625.84224 423.41283)
+ (pt 624.62304 423.41283)
+ (pt 624.38769 423.45964)
+ (pt 624.18816 423.59296)
+ (pt 624.05484 423.79249)
+ (pt 624.00803 424.02784)
+ (pt 624.01175 424.04653)
+ (pt 623.77214 423.88642)
+ (pt 623.46 423.82433)
+ (pt 623.14786 423.88642)
+ (pt 622.88324 424.06324)
+ (pt 622.70642 424.32786)
+ (pt 622.64433 424.64)
+ (pt 622.70642 424.95214)
+ (pt 622.88324 425.21676)
+ (pt 623.14786 425.39358)
+ (pt 623.46 425.45567)
+ (pt 623.77214 425.39358)
+ (pt 624.02922 425.2218)
+ (pt 624.00803 425.32832)
+ (pt 624.05484 425.56367)
+ (pt 624.11482 425.65344)
+ (pt 624.05484 425.74321)
+ (pt 624.00803 425.97856)
+ (pt 624.05484 426.21391)
+ (pt 624.11482 426.30368)
+ (pt 624.05484 426.39345)
+ (pt 624.00803 426.6288)
+ (pt 624.05484 426.86415)
+ (pt 624.11482 426.95392)
+ (pt 624.05484 427.04369)
+ (pt 624.00803 427.27904)
+ (pt 624.05484 427.51439)
+ (pt 624.11482 427.60416)
+ (pt 624.05484 427.69393)
+ (pt 624.00803 427.92928)
+ (pt 624.05484 428.16463)
+ (pt 624.11482 428.2544)
+ (pt 624.05484 428.34417)
+ (pt 624.01547 428.5421)
+ (pt 623.79116 428.39222)
+ (pt 623.44 428.32237)
+ (pt 623.08884 428.39222)
+ (pt 622.79114 428.59114)
+ (pt 622.59222 428.88884)
+ (pt 622.52237 429.24)
+ (pt 622.59222 429.59116)
+ (pt 622.79114 429.88886)
+ (pt 623.08884 430.08778)
+ (pt 623.44 430.15763)
+ (pt 623.79116 430.08778)
+ (pt 624.01907 429.93549)
+ (pt 624.05484 430.11535)
+ (pt 624.18816 430.31488)
+ (pt 624.38769 430.4482)
+ (pt 624.62304 430.49501)
+ (pt 625.14952 430.49501)
+ (pt 625.23264 430.52944)
+ (pt 626.19201 430.52944)
+ (pt 626.48884 430.72778)
+ (pt 626.84 430.79763)
+ (pt 627.19116 430.72778)
+ (pt 627.48886 430.52886)
+ (pt 627.68778 430.23116)
+ (pt 627.75763 429.88)
+ (pt 627.68778 429.52884)
+ (pt 627.48886 429.23114)
+ (pt 627.32361 429.12072)
+ (pt 631.67534 429.12072)
+ (pt 634.33731 431.78269)
+ (pt 634.72 431.9412)
+ (pt 637.823 431.9412)
+ (pt 638.00848 432.2188)
+ (pt 637.12 432.2188)
+ (pt 636.73731 432.37731)
+ (pt 627.26798 441.84664)
+ (pt 626.038 441.84664)
+ (pt 625.99759 441.81964)
+ (pt 625.76224 441.77283)
+ (pt 624.54304 441.77283)
+ (pt 624.30769 441.81964)
+ (pt 624.10816 441.95296)
+ (pt 623.97484 442.15249)
+ (pt 623.92803 442.38784)
+ (pt 623.97484 442.62319)
+ (pt 624.03482 442.71296)
+ (pt 623.97484 442.80273)
+ (pt 623.92803 443.03808)
+ (pt 623.97484 443.27343)
+ (pt 624.03482 443.3632)
+ (pt 623.97484 443.45297)
+ (pt 623.92803 443.68832)
+ (pt 623.97484 443.92367)
+ (pt 624.03482 444.01344)
+ (pt 623.97484 444.10321)
+ (pt 623.92803 444.33856)
+ (pt 623.97484 444.57391)
+ (pt 624.03482 444.66368)
+ (pt 623.97484 444.75345)
+ (pt 623.92803 444.9888)
+ (pt 623.97484 445.22415)
+ (pt 624.03482 445.31392)
+ (pt 623.97484 445.40369)
+ (pt 623.92803 445.63904)
+ (pt 623.97484 445.87439)
+ (pt 624.03482 445.96416)
+ (pt 623.97484 446.05393)
+ (pt 623.92803 446.28928)
+ (pt 623.97484 446.52463)
+ (pt 624.03482 446.6144)
+ (pt 623.97484 446.70417)
+ (pt 623.92803 446.93952)
+ (pt 623.9438 447.0188)
+ (pt 621.80052 447.0188)
+ (pt 621.77676 446.98324)
+ (pt 621.51214 446.80642)
+ (pt 621.2 446.74433)
+ (pt 620.88786 446.80642)
+ (pt 620.62324 446.98324)
+ (pt 620.44642 447.24786)
+ (pt 620.38433 447.56)
+ (pt 620.44642 447.87214)
+ (pt 620.62324 448.13676)
+ (pt 620.88786 448.31358)
+ (pt 621.2 448.37567)
+ (pt 621.51214 448.31358)
+ (pt 621.77676 448.13676)
+ (pt 621.80052 448.1012)
+ (pt 623.95564 448.1012)
+ (pt 623.92803 448.24)
+ (pt 623.97484 448.47535)
+ (pt 624.10816 448.67488)
+ (pt 624.30769 448.8082)
+ (pt 624.36989 448.82057)
+ (pt 624.30237 449.16)
+ (pt 624.37222 449.51116)
+ (pt 624.57114 449.80886)
+ (pt 624.86884 450.00778)
+ (pt 625.22 450.07763)
+ (pt 625.57116 450.00778)
+ (pt 625.86886 449.80886)
+ (pt 626.06778 449.51116)
+ (pt 626.13763 449.16)
+ (pt 626.06778 448.80884)
+ (pt 626.04582 448.77597)
+ (pt 626.19712 448.67488)
+ (pt 626.33044 448.47535)
+ (pt 626.37725 448.24)
+ (pt 626.33044 448.00465)
+ (pt 626.27046 447.91488)
+ (pt 626.33044 447.82511)
+ (pt 626.37725 447.58976)
+ (pt 626.35556 447.48072)
+ (pt 630.71534 447.48072)
+ (pt 634.13731 450.90269)
+ (pt 634.52 451.0612)
+ (pt 637.90158 451.0612)
+ (pt 637.77757 451.24679)
+ (pt 637.68344 451.72)
+ (pt 637.77757 452.19321)
+ (pt 638.04562 452.59438)
+ (pt 638.44679 452.86243)
+ (pt 638.92 452.95656)
+ (pt 639.39321 452.86243)
+ (pt 639.79438 452.59438)
+ (pt 640.06243 452.19321)
+ (pt 640.15656 451.72)
+ (pt 640.06243 451.24679)
+ (pt 639.93842 451.0612)
+ (pt 640.03582 451.0612)
+ (pt 640.30162 451.327)
+ (pt 640.22344 451.72)
+ (pt 640.31757 452.19321)
+ (pt 640.58562 452.59438)
+ (pt 640.98679 452.86243)
+ (pt 641.46 452.95656)
+ (pt 641.93321 452.86243)
+ (pt 642.33438 452.59438)
+ (pt 642.60243 452.19321)
+ (pt 642.69656 451.72)
+ (pt 642.60243 451.24679)
+ (pt 642.33438 450.84562)
+ (pt 641.93321 450.57757)
+ (pt 641.46 450.48344)
+ (pt 641.067 450.56162)
+ (pt 640.64269 450.13731)
+ (pt 640.26 449.9788)
+ (pt 639.84488 449.9788)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 565.93072 298.02072)
+ (pt 566.09648 297.77263)
+ (pt 566.15469 297.48)
+ (pt 566.09648 297.18737)
+ (pt 565.93072 296.93928)
+ (pt 565.78961 296.845)
+ (pt 565.93072 296.75072)
+ (pt 566.09648 296.50263)
+ (pt 566.15469 296.21)
+ (pt 566.09648 295.91737)
+ (pt 565.93072 295.66928)
+ (pt 565.78961 295.575)
+ (pt 565.93072 295.48072)
+ (pt 566.09648 295.23263)
+ (pt 566.15469 294.94)
+ (pt 566.09648 294.64737)
+ (pt 565.93072 294.39928)
+ (pt 565.78961 294.305)
+ (pt 565.93072 294.21072)
+ (pt 566.09648 293.96263)
+ (pt 566.15469 293.67)
+ (pt 566.09648 293.37737)
+ (pt 565.93072 293.12928)
+ (pt 565.78961 293.035)
+ (pt 565.8534 292.99238)
+ (pt 565.89114 293.04886)
+ (pt 566.18884 293.24778)
+ (pt 566.54 293.31763)
+ (pt 566.89116 293.24778)
+ (pt 567.18886 293.04886)
+ (pt 567.2608 292.9412)
+ (pt 567.37627 292.9412)
+ (pt 567.38321 292.97607)
+ (pt 567.47162 293.10838)
+ (pt 567.60393 293.19679)
+ (pt 567.76 293.22783)
+ (pt 568.56 293.22783)
+ (pt 568.71607 293.19679)
+ (pt 568.84838 293.10838)
+ (pt 568.90744 293.02)
+ (pt 569.01256 293.02)
+ (pt 569.07162 293.10838)
+ (pt 569.20393 293.19679)
+ (pt 569.36 293.22783)
+ (pt 570.16 293.22783)
+ (pt 570.31607 293.19679)
+ (pt 570.35933 293.16788)
+ (pt 570.50884 293.26778)
+ (pt 570.86 293.33763)
+ (pt 571.21116 293.26778)
+ (pt 571.50886 293.06886)
+ (pt 571.70778 292.77116)
+ (pt 571.77763 292.42)
+ (pt 571.70778 292.06884)
+ (pt 571.50886 291.77114)
+ (pt 571.21116 291.57222)
+ (pt 570.86 291.50237)
+ (pt 570.50884 291.57222)
+ (pt 570.35933 291.67212)
+ (pt 570.31607 291.64321)
+ (pt 570.16 291.61217)
+ (pt 569.36 291.61217)
+ (pt 569.20393 291.64321)
+ (pt 569.07162 291.73162)
+ (pt 569.01256 291.82)
+ (pt 568.90744 291.82)
+ (pt 568.84838 291.73162)
+ (pt 568.71607 291.64321)
+ (pt 568.56 291.61217)
+ (pt 567.76 291.61217)
+ (pt 567.60393 291.64321)
+ (pt 567.47162 291.73162)
+ (pt 567.38664 291.8588)
+ (pt 567.2608 291.8588)
+ (pt 567.18886 291.75114)
+ (pt 566.89116 291.55222)
+ (pt 566.54 291.48237)
+ (pt 566.18884 291.55222)
+ (pt 565.89114 291.75114)
+ (pt 565.8534 291.80762)
+ (pt 565.68263 291.69352)
+ (pt 565.39 291.63531)
+ (pt 564.09 291.63531)
+ (pt 563.79737 291.69352)
+ (pt 563.54928 291.85928)
+ (pt 563.38352 292.10737)
+ (pt 563.32531 292.4)
+ (pt 563.38352 292.69263)
+ (pt 563.54928 292.94072)
+ (pt 563.69039 293.035)
+ (pt 563.631 293.07468)
+ (pt 563.50459 293.07468)
+ (pt 563.48886 293.05114)
+ (pt 563.19116 292.85222)
+ (pt 562.84 292.78237)
+ (pt 562.48884 292.85222)
+ (pt 562.19114 293.05114)
+ (pt 561.99222 293.34884)
+ (pt 561.92237 293.7)
+ (pt 561.99222 294.05116)
+ (pt 562.19114 294.34886)
+ (pt 562.48884 294.54778)
+ (pt 562.84 294.61763)
+ (pt 563.19116 294.54778)
+ (pt 563.48886 294.34886)
+ (pt 563.54468 294.26532)
+ (pt 563.631 294.26532)
+ (pt 563.69039 294.305)
+ (pt 563.54928 294.39928)
+ (pt 563.38352 294.64737)
+ (pt 563.32531 294.94)
+ (pt 563.38352 295.23263)
+ (pt 563.54928 295.48072)
+ (pt 563.69039 295.575)
+ (pt 563.54928 295.66928)
+ (pt 563.38352 295.91737)
+ (pt 563.32531 296.21)
+ (pt 563.38352 296.50263)
+ (pt 563.54928 296.75072)
+ (pt 563.69039 296.845)
+ (pt 563.54928 296.93928)
+ (pt 563.38352 297.18737)
+ (pt 563.32531 297.48)
+ (pt 563.38352 297.77263)
+ (pt 563.54928 298.02072)
+ (pt 563.69039 298.115)
+ (pt 563.54928 298.20928)
+ (pt 563.38352 298.45737)
+ (pt 563.32531 298.75)
+ (pt 563.38352 299.04263)
+ (pt 563.54928 299.29072)
+ (pt 563.69039 299.385)
+ (pt 563.55 299.4788)
+ (pt 563.5208 299.4788)
+ (pt 563.44886 299.37114)
+ (pt 563.15116 299.17222)
+ (pt 562.8 299.10237)
+ (pt 562.44884 299.17222)
+ (pt 562.15114 299.37114)
+ (pt 561.95222 299.66884)
+ (pt 561.88237 300.02)
+ (pt 561.95222 300.37116)
+ (pt 562.15114 300.66886)
+ (pt 562.23515 300.725)
+ (pt 562.07222 300.96884)
+ (pt 562.00237 301.32)
+ (pt 562.07222 301.67116)
+ (pt 562.27114 301.96886)
+ (pt 562.56884 302.16778)
+ (pt 562.92 302.23763)
+ (pt 563.27116 302.16778)
+ (pt 563.56886 301.96886)
+ (pt 563.62663 301.8824)
+ (pt 563.79737 301.99648)
+ (pt 564.09 302.05469)
+ (pt 565.39 302.05469)
+ (pt 565.68263 301.99648)
+ (pt 565.93072 301.83072)
+ (pt 566.09648 301.58263)
+ (pt 566.15469 301.29)
+ (pt 566.09648 300.99737)
+ (pt 565.93072 300.74928)
+ (pt 565.78961 300.655)
+ (pt 565.93 300.5612)
+ (pt 566.46025 300.5612)
+ (pt 566.46321 300.57607)
+ (pt 566.55162 300.70838)
+ (pt 566.68393 300.79679)
+ (pt 566.84 300.82783)
+ (pt 567.64 300.82783)
+ (pt 567.79607 300.79679)
+ (pt 567.92838 300.70838)
+ (pt 567.98744 300.62)
+ (pt 568.09256 300.62)
+ (pt 568.15162 300.70838)
+ (pt 568.28393 300.79679)
+ (pt 568.44 300.82783)
+ (pt 569.24 300.82783)
+ (pt 569.39607 300.79679)
+ (pt 569.4843 300.73784)
+ (pt 569.64884 300.84778)
+ (pt 570.0 300.91763)
+ (pt 570.35116 300.84778)
+ (pt 570.64886 300.64886)
+ (pt 570.84778 300.35116)
+ (pt 570.91763 300.0)
+ (pt 570.84778 299.64884)
+ (pt 570.64886 299.35114)
+ (pt 570.35116 299.15222)
+ (pt 570.0 299.08237)
+ (pt 569.64884 299.15222)
+ (pt 569.45437 299.28216)
+ (pt 569.39607 299.24321)
+ (pt 569.24 299.21217)
+ (pt 568.44 299.21217)
+ (pt 568.28393 299.24321)
+ (pt 568.15162 299.33162)
+ (pt 568.09256 299.42)
+ (pt 567.98744 299.42)
+ (pt 567.92838 299.33162)
+ (pt 567.79607 299.24321)
+ (pt 567.64 299.21217)
+ (pt 566.84 299.21217)
+ (pt 566.68393 299.24321)
+ (pt 566.55162 299.33162)
+ (pt 566.46321 299.46393)
+ (pt 566.46025 299.4788)
+ (pt 565.93 299.4788)
+ (pt 565.78961 299.385)
+ (pt 565.93072 299.29072)
+ (pt 566.09648 299.04263)
+ (pt 566.15469 298.75)
+ (pt 566.09648 298.45737)
+ (pt 565.93072 298.20928)
+ (pt 565.78961 298.115)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 602.65116 343.65222)
+ (pt 602.3 343.58237)
+ (pt 601.94884 343.65222)
+ (pt 601.65114 343.85114)
+ (pt 601.45222 344.14884)
+ (pt 601.38237 344.5)
+ (pt 601.45222 344.85116)
+ (pt 601.65114 345.14886)
+ (pt 601.94884 345.34778)
+ (pt 602.3 345.41763)
+ (pt 602.65116 345.34778)
+ (pt 602.7779 345.26309)
+ (pt 602.86162 345.38838)
+ (pt 602.99393 345.47679)
+ (pt 603.15 345.50783)
+ (pt 604.45 345.50783)
+ (pt 604.60607 345.47679)
+ (pt 604.73838 345.38838)
+ (pt 604.82679 345.25607)
+ (pt 604.85783 345.1)
+ (pt 604.85783 343.9)
+ (pt 604.82679 343.74393)
+ (pt 604.8 343.70384)
+ (pt 604.8 343.29616)
+ (pt 604.82679 343.25607)
+ (pt 604.85783 343.1)
+ (pt 604.85783 341.9)
+ (pt 604.82679 341.74393)
+ (pt 604.73838 341.61162)
+ (pt 604.60607 341.52321)
+ (pt 604.48243 341.49862)
+ (pt 604.64778 341.25116)
+ (pt 604.71763 340.9)
+ (pt 604.64778 340.54884)
+ (pt 604.44886 340.25114)
+ (pt 604.15116 340.05222)
+ (pt 603.8 339.98237)
+ (pt 603.44884 340.05222)
+ (pt 603.15114 340.25114)
+ (pt 602.95222 340.54884)
+ (pt 602.88237 340.9)
+ (pt 602.95222 341.25116)
+ (pt 603.11757 341.49862)
+ (pt 602.99393 341.52321)
+ (pt 602.86162 341.61162)
+ (pt 602.77321 341.74393)
+ (pt 602.74217 341.9)
+ (pt 602.74217 343.1)
+ (pt 602.77321 343.25607)
+ (pt 602.8 343.29616)
+ (pt 602.8 343.70384)
+ (pt 602.7779 343.73691)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 386.82243)
+ (pt 639.79438 386.55438)
+ (pt 640.06243 386.15321)
+ (pt 640.15656 385.68)
+ (pt 640.06243 385.20679)
+ (pt 639.79438 384.80562)
+ (pt 639.39321 384.53757)
+ (pt 638.92 384.44344)
+ (pt 638.44679 384.53757)
+ (pt 638.04562 384.80562)
+ (pt 637.77757 385.20679)
+ (pt 637.68344 385.68)
+ (pt 637.77757 386.15321)
+ (pt 638.04562 386.55438)
+ (pt 638.44679 386.82243)
+ (pt 638.92 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 271.30243)
+ (pt 639.69438 271.03438)
+ (pt 639.96243 270.63321)
+ (pt 640.05656 270.16)
+ (pt 639.96243 269.68679)
+ (pt 639.69438 269.28562)
+ (pt 639.29321 269.01757)
+ (pt 638.82 268.92344)
+ (pt 638.34679 269.01757)
+ (pt 637.94562 269.28562)
+ (pt 637.67757 269.68679)
+ (pt 637.58344 270.16)
+ (pt 637.67757 270.63321)
+ (pt 637.94562 271.03438)
+ (pt 638.34679 271.30243)
+ (pt 638.82 271.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 304.32243)
+ (pt 642.23438 304.05438)
+ (pt 642.50243 303.65321)
+ (pt 642.59656 303.18)
+ (pt 642.50243 302.70679)
+ (pt 642.23438 302.30562)
+ (pt 641.83321 302.03757)
+ (pt 641.36 301.94344)
+ (pt 640.88679 302.03757)
+ (pt 640.48562 302.30562)
+ (pt 640.21757 302.70679)
+ (pt 640.12344 303.18)
+ (pt 640.21757 303.65321)
+ (pt 640.48562 304.05438)
+ (pt 640.88679 304.32243)
+ (pt 641.36 304.41656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 571.85228 362.50639)
+ (pt 571.70862 362.29138)
+ (pt 571.49361 362.14772)
+ (pt 571.24 362.09727)
+ (pt 570.98639 362.14772)
+ (pt 570.77138 362.29138)
+ (pt 570.62772 362.50639)
+ (pt 570.57727 362.76)
+ (pt 570.62772 363.01361)
+ (pt 570.77138 363.22862)
+ (pt 570.98639 363.37228)
+ (pt 571.24 363.42273)
+ (pt 571.49361 363.37228)
+ (pt 571.70862 363.22862)
+ (pt 571.85228 363.01361)
+ (pt 571.90273 362.76)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 583.0 379.90783)
+ (pt 583.15607 379.87679)
+ (pt 583.28838 379.78838)
+ (pt 583.37679 379.65607)
+ (pt 583.40783 379.5)
+ (pt 583.40783 378.5)
+ (pt 583.37679 378.34393)
+ (pt 583.28838 378.21162)
+ (pt 583.15607 378.12321)
+ (pt 583.0 378.09217)
+ (pt 582.0 378.09217)
+ (pt 581.84393 378.12321)
+ (pt 581.71162 378.21162)
+ (pt 581.62321 378.34393)
+ (pt 581.59217 378.5)
+ (pt 581.59217 379.5)
+ (pt 581.62321 379.65607)
+ (pt 581.71162 379.78838)
+ (pt 581.84393 379.87679)
+ (pt 582.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 457.94243)
+ (pt 639.79438 457.67438)
+ (pt 640.06243 457.27321)
+ (pt 640.15656 456.8)
+ (pt 640.06243 456.32679)
+ (pt 639.79438 455.92562)
+ (pt 639.39321 455.65757)
+ (pt 638.92 455.56344)
+ (pt 638.44679 455.65757)
+ (pt 638.04562 455.92562)
+ (pt 637.77757 456.32679)
+ (pt 637.68344 456.8)
+ (pt 637.77757 457.27321)
+ (pt 638.04562 457.67438)
+ (pt 638.44679 457.94243)
+ (pt 638.92 458.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 549.73228 366.42639)
+ (pt 549.58862 366.21138)
+ (pt 549.47141 366.13306)
+ (pt 549.52 366.14273)
+ (pt 549.77361 366.09228)
+ (pt 549.98862 365.94862)
+ (pt 550.13228 365.73361)
+ (pt 550.18273 365.48)
+ (pt 550.13228 365.22639)
+ (pt 549.98862 365.01138)
+ (pt 549.77361 364.86772)
+ (pt 549.52 364.81727)
+ (pt 549.26639 364.86772)
+ (pt 549.05138 365.01138)
+ (pt 548.90772 365.22639)
+ (pt 548.85727 365.48)
+ (pt 548.90772 365.73361)
+ (pt 549.05138 365.94862)
+ (pt 549.16859 366.02694)
+ (pt 549.12 366.01727)
+ (pt 548.86639 366.06772)
+ (pt 548.65138 366.21138)
+ (pt 548.62332 366.25338)
+ (pt 548.60862 366.23138)
+ (pt 548.39361 366.08772)
+ (pt 548.14 366.03727)
+ (pt 547.88639 366.08772)
+ (pt 547.67138 366.23138)
+ (pt 547.63664 366.28338)
+ (pt 547.62862 366.27138)
+ (pt 547.41361 366.12772)
+ (pt 547.16 366.07727)
+ (pt 546.90639 366.12772)
+ (pt 546.69138 366.27138)
+ (pt 546.54772 366.48639)
+ (pt 546.49727 366.74)
+ (pt 546.54772 366.99361)
+ (pt 546.69138 367.20862)
+ (pt 546.90639 367.35228)
+ (pt 547.16 367.40273)
+ (pt 547.41361 367.35228)
+ (pt 547.62862 367.20862)
+ (pt 547.66336 367.15662)
+ (pt 547.67138 367.16862)
+ (pt 547.88639 367.31228)
+ (pt 548.14 367.36273)
+ (pt 548.39361 367.31228)
+ (pt 548.60862 367.16862)
+ (pt 548.63668 367.12662)
+ (pt 548.65138 367.14862)
+ (pt 548.86639 367.29228)
+ (pt 549.12 367.34273)
+ (pt 549.37361 367.29228)
+ (pt 549.58862 367.14862)
+ (pt 549.73228 366.93361)
+ (pt 549.78273 366.68)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.74783 403.56)
+ (pt 526.71679 403.40393)
+ (pt 526.62838 403.27162)
+ (pt 526.50623 403.19)
+ (pt 526.62838 403.10838)
+ (pt 526.71679 402.97607)
+ (pt 526.74783 402.82)
+ (pt 526.74783 402.62355)
+ (pt 527.85432 402.62355)
+ (pt 527.96393 402.69679)
+ (pt 528.12 402.72783)
+ (pt 528.92 402.72783)
+ (pt 529.07607 402.69679)
+ (pt 529.20838 402.60838)
+ (pt 529.26744 402.52)
+ (pt 529.37256 402.52)
+ (pt 529.43162 402.60838)
+ (pt 529.56393 402.69679)
+ (pt 529.72 402.72783)
+ (pt 530.52 402.72783)
+ (pt 530.67607 402.69679)
+ (pt 530.78568 402.62355)
+ (pt 531.13299 402.62355)
+ (pt 531.20786 402.67358)
+ (pt 531.52 402.73567)
+ (pt 531.83214 402.67358)
+ (pt 532.09676 402.49676)
+ (pt 532.27358 402.23214)
+ (pt 532.33567 401.92)
+ (pt 532.27358 401.60786)
+ (pt 532.09676 401.34324)
+ (pt 531.83214 401.16642)
+ (pt 531.52 401.10433)
+ (pt 531.20786 401.16642)
+ (pt 531.13299 401.21645)
+ (pt 530.78568 401.21645)
+ (pt 530.67607 401.14321)
+ (pt 530.52 401.11217)
+ (pt 529.72 401.11217)
+ (pt 529.56393 401.14321)
+ (pt 529.43162 401.23162)
+ (pt 529.37256 401.32)
+ (pt 529.26744 401.32)
+ (pt 529.20838 401.23162)
+ (pt 529.07607 401.14321)
+ (pt 528.92 401.11217)
+ (pt 528.12 401.11217)
+ (pt 527.96393 401.14321)
+ (pt 527.85432 401.21645)
+ (pt 526.74783 401.21645)
+ (pt 526.74783 401.02)
+ (pt 526.71679 400.86393)
+ (pt 526.62838 400.73162)
+ (pt 526.50623 400.65)
+ (pt 526.62838 400.56838)
+ (pt 526.71679 400.43607)
+ (pt 526.74783 400.28)
+ (pt 526.74783 398.48)
+ (pt 526.71679 398.32393)
+ (pt 526.62838 398.19162)
+ (pt 526.49607 398.10321)
+ (pt 526.34 398.07217)
+ (pt 526.00117 398.07217)
+ (pt 525.95228 397.82639)
+ (pt 525.80862 397.61138)
+ (pt 525.59361 397.46772)
+ (pt 525.34 397.41727)
+ (pt 525.08639 397.46772)
+ (pt 524.87138 397.61138)
+ (pt 524.72772 397.82639)
+ (pt 524.67883 398.07217)
+ (pt 524.34 398.07217)
+ (pt 524.18393 398.10321)
+ (pt 524.05162 398.19162)
+ (pt 523.96321 398.32393)
+ (pt 523.93217 398.48)
+ (pt 523.93217 400.28)
+ (pt 523.96321 400.43607)
+ (pt 524.05162 400.56838)
+ (pt 524.17377 400.65)
+ (pt 524.05162 400.73162)
+ (pt 523.96321 400.86393)
+ (pt 523.93217 401.02)
+ (pt 523.93217 402.82)
+ (pt 523.96321 402.97607)
+ (pt 524.05162 403.10838)
+ (pt 524.17377 403.19)
+ (pt 524.05162 403.27162)
+ (pt 523.96321 403.40393)
+ (pt 523.93217 403.56)
+ (pt 523.93217 405.36)
+ (pt 523.96321 405.51607)
+ (pt 524.05162 405.64838)
+ (pt 524.18393 405.73679)
+ (pt 524.34 405.76783)
+ (pt 524.44844 405.76783)
+ (pt 524.38237 406.1)
+ (pt 524.45222 406.45116)
+ (pt 524.65114 406.74886)
+ (pt 524.94884 406.94778)
+ (pt 525.3 407.01763)
+ (pt 525.65116 406.94778)
+ (pt 525.94886 406.74886)
+ (pt 526.14778 406.45116)
+ (pt 526.21763 406.1)
+ (pt 526.15156 405.76783)
+ (pt 526.34 405.76783)
+ (pt 526.49607 405.73679)
+ (pt 526.62838 405.64838)
+ (pt 526.71679 405.51607)
+ (pt 526.74783 405.36)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 570.82679 381.85607)
+ (pt 570.85783 381.7)
+ (pt 570.85783 380.5)
+ (pt 570.82679 380.34393)
+ (pt 570.73838 380.21162)
+ (pt 570.60607 380.12321)
+ (pt 570.58473 380.11897)
+ (pt 570.58473 379.74552)
+ (pt 570.64778 379.65116)
+ (pt 570.71763 379.3)
+ (pt 570.64778 378.94884)
+ (pt 570.44886 378.65114)
+ (pt 570.15116 378.45222)
+ (pt 569.8 378.38237)
+ (pt 569.44884 378.45222)
+ (pt 569.15114 378.65114)
+ (pt 568.95222 378.94884)
+ (pt 568.88237 379.3)
+ (pt 568.95222 379.65116)
+ (pt 569.01527 379.74552)
+ (pt 569.01527 380.11897)
+ (pt 568.99393 380.12321)
+ (pt 568.86162 380.21162)
+ (pt 568.77321 380.34393)
+ (pt 568.74217 380.5)
+ (pt 568.74217 381.7)
+ (pt 568.77321 381.85607)
+ (pt 568.8 381.89616)
+ (pt 568.8 382.30384)
+ (pt 568.77321 382.34393)
+ (pt 568.74217 382.5)
+ (pt 568.74217 383.7)
+ (pt 568.77321 383.85607)
+ (pt 568.86162 383.98838)
+ (pt 568.99393 384.07679)
+ (pt 569.05859 384.08965)
+ (pt 568.95222 384.24884)
+ (pt 568.88237 384.6)
+ (pt 568.95222 384.95116)
+ (pt 569.15114 385.24886)
+ (pt 569.44884 385.44778)
+ (pt 569.8 385.51763)
+ (pt 570.15116 385.44778)
+ (pt 570.44886 385.24886)
+ (pt 570.64778 384.95116)
+ (pt 570.71763 384.6)
+ (pt 570.64778 384.24884)
+ (pt 570.54141 384.08965)
+ (pt 570.60607 384.07679)
+ (pt 570.73838 383.98838)
+ (pt 570.82679 383.85607)
+ (pt 570.85783 383.7)
+ (pt 570.85783 382.5)
+ (pt 570.82679 382.34393)
+ (pt 570.8 382.30384)
+ (pt 570.8 381.89616)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 570.64778 289.84884)
+ (pt 570.44886 289.55114)
+ (pt 570.15116 289.35222)
+ (pt 569.8 289.28237)
+ (pt 569.44884 289.35222)
+ (pt 569.15114 289.55114)
+ (pt 568.95222 289.84884)
+ (pt 568.88237 290.2)
+ (pt 568.95222 290.55116)
+ (pt 569.15114 290.84886)
+ (pt 569.44884 291.04778)
+ (pt 569.8 291.11763)
+ (pt 570.15116 291.04778)
+ (pt 570.44886 290.84886)
+ (pt 570.64778 290.55116)
+ (pt 570.71763 290.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 569.60778 372.86884)
+ (pt 569.40886 372.57114)
+ (pt 569.11116 372.37222)
+ (pt 568.76 372.30237)
+ (pt 568.40884 372.37222)
+ (pt 568.11114 372.57114)
+ (pt 567.91222 372.86884)
+ (pt 567.84237 373.22)
+ (pt 567.91222 373.57116)
+ (pt 568.11114 373.86886)
+ (pt 568.40884 374.06778)
+ (pt 568.76 374.13763)
+ (pt 569.11116 374.06778)
+ (pt 569.40886 373.86886)
+ (pt 569.60778 373.57116)
+ (pt 569.67763 373.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 626.70778 322.32884)
+ (pt 626.50886 322.03114)
+ (pt 626.21116 321.83222)
+ (pt 625.86 321.76237)
+ (pt 625.50884 321.83222)
+ (pt 625.21114 322.03114)
+ (pt 625.01222 322.32884)
+ (pt 624.94237 322.68)
+ (pt 625.01222 323.03116)
+ (pt 625.21114 323.32886)
+ (pt 625.50884 323.52778)
+ (pt 625.86 323.59763)
+ (pt 626.21116 323.52778)
+ (pt 626.50886 323.32886)
+ (pt 626.70778 323.03116)
+ (pt 626.77763 322.68)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 622.19358 450.94786)
+ (pt 622.01676 450.68324)
+ (pt 621.75214 450.50642)
+ (pt 621.44 450.44433)
+ (pt 621.12786 450.50642)
+ (pt 620.86324 450.68324)
+ (pt 620.68642 450.94786)
+ (pt 620.62433 451.26)
+ (pt 620.68642 451.57214)
+ (pt 620.86324 451.83676)
+ (pt 621.12786 452.01358)
+ (pt 621.44 452.07567)
+ (pt 621.75214 452.01358)
+ (pt 622.01676 451.83676)
+ (pt 622.19358 451.57214)
+ (pt 622.25567 451.26)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.62778 309.56884)
+ (pt 623.42886 309.27114)
+ (pt 623.13116 309.07222)
+ (pt 622.78 309.00237)
+ (pt 622.42884 309.07222)
+ (pt 622.13114 309.27114)
+ (pt 621.93222 309.56884)
+ (pt 621.86237 309.92)
+ (pt 621.93222 310.27116)
+ (pt 622.13114 310.56886)
+ (pt 622.42884 310.76778)
+ (pt 622.78 310.83763)
+ (pt 623.13116 310.76778)
+ (pt 623.42886 310.56886)
+ (pt 623.62778 310.27116)
+ (pt 623.69763 309.92)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.48891 464.17089)
+ (pt 648.29337 463.63337)
+ (pt 648.83089 462.82891)
+ (pt 649.01964 461.88)
+ (pt 648.83089 460.93109)
+ (pt 648.29337 460.12663)
+ (pt 647.48891 459.58911)
+ (pt 646.54 459.40036)
+ (pt 645.59109 459.58911)
+ (pt 644.78663 460.12663)
+ (pt 644.24911 460.93109)
+ (pt 644.06036 461.88)
+ (pt 644.24911 462.82891)
+ (pt 644.78663 463.63337)
+ (pt 645.59109 464.17089)
+ (pt 646.54 464.35964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 553.84778 312.74884)
+ (pt 553.64886 312.45114)
+ (pt 553.35116 312.25222)
+ (pt 553.0 312.18237)
+ (pt 552.64884 312.25222)
+ (pt 552.35114 312.45114)
+ (pt 552.15222 312.74884)
+ (pt 552.08237 313.1)
+ (pt 552.15222 313.45116)
+ (pt 552.35114 313.74886)
+ (pt 552.64884 313.94778)
+ (pt 553.0 314.01763)
+ (pt 553.35116 313.94778)
+ (pt 553.64886 313.74886)
+ (pt 553.84778 313.45116)
+ (pt 553.91763 313.1)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 551.38778 391.44884)
+ (pt 551.18886 391.15114)
+ (pt 550.89116 390.95222)
+ (pt 550.54 390.88237)
+ (pt 550.18884 390.95222)
+ (pt 549.89114 391.15114)
+ (pt 549.69222 391.44884)
+ (pt 549.62237 391.8)
+ (pt 549.69222 392.15116)
+ (pt 549.89114 392.44886)
+ (pt 550.18884 392.64778)
+ (pt 550.54 392.71763)
+ (pt 550.89116 392.64778)
+ (pt 551.18886 392.44886)
+ (pt 551.38778 392.15116)
+ (pt 551.45763 391.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 529.55116 411.84778)
+ (pt 529.84886 411.64886)
+ (pt 530.04778 411.35116)
+ (pt 530.11763 411.0)
+ (pt 530.04778 410.64884)
+ (pt 529.84886 410.35114)
+ (pt 529.55116 410.15222)
+ (pt 529.2 410.08237)
+ (pt 528.84884 410.15222)
+ (pt 528.55114 410.35114)
+ (pt 528.35222 410.64884)
+ (pt 528.28237 411.0)
+ (pt 528.35222 411.35116)
+ (pt 528.55114 411.64886)
+ (pt 528.84884 411.84778)
+ (pt 529.2 411.91763)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 562.42778 276.66884)
+ (pt 562.22886 276.37114)
+ (pt 561.93116 276.17222)
+ (pt 561.58 276.10237)
+ (pt 561.22884 276.17222)
+ (pt 560.93114 276.37114)
+ (pt 560.73222 276.66884)
+ (pt 560.66237 277.02)
+ (pt 560.73222 277.37116)
+ (pt 560.93114 277.66886)
+ (pt 561.22884 277.86778)
+ (pt 561.58 277.93763)
+ (pt 561.93116 277.86778)
+ (pt 562.22886 277.66886)
+ (pt 562.42778 277.37116)
+ (pt 562.49763 277.02)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 560.90778 294.54884)
+ (pt 560.70886 294.25114)
+ (pt 560.41116 294.05222)
+ (pt 560.06 293.98237)
+ (pt 559.70884 294.05222)
+ (pt 559.41114 294.25114)
+ (pt 559.21222 294.54884)
+ (pt 559.14237 294.9)
+ (pt 559.21222 295.25116)
+ (pt 559.41114 295.54886)
+ (pt 559.70884 295.74778)
+ (pt 560.06 295.81763)
+ (pt 560.41116 295.74778)
+ (pt 560.70886 295.54886)
+ (pt 560.90778 295.25116)
+ (pt 560.97763 294.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 593.0 382.40783)
+ (pt 593.15607 382.37679)
+ (pt 593.28838 382.28838)
+ (pt 593.37679 382.15607)
+ (pt 593.40783 382.0)
+ (pt 593.40783 381.0)
+ (pt 593.37679 380.84393)
+ (pt 593.28838 380.71162)
+ (pt 593.15607 380.62321)
+ (pt 593.0 380.59217)
+ (pt 592.0 380.59217)
+ (pt 591.84393 380.62321)
+ (pt 591.71162 380.71162)
+ (pt 591.62321 380.84393)
+ (pt 591.59217 381.0)
+ (pt 591.59217 382.0)
+ (pt 591.62321 382.15607)
+ (pt 591.71162 382.28838)
+ (pt 591.84393 382.37679)
+ (pt 592.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 608.28814 278.29724)
+ (pt 608.41361 278.27228)
+ (pt 608.62862 278.12862)
+ (pt 608.77228 277.91361)
+ (pt 608.82273 277.66)
+ (pt 608.77228 277.40639)
+ (pt 608.62862 277.19138)
+ (pt 608.55352 277.1412)
+ (pt 616.7941 277.1412)
+ (pt 616.76786 277.14642)
+ (pt 616.50324 277.32324)
+ (pt 616.32642 277.58786)
+ (pt 616.26433 277.9)
+ (pt 616.32642 278.21214)
+ (pt 616.50324 278.47676)
+ (pt 616.76786 278.65358)
+ (pt 617.08 278.71567)
+ (pt 617.39214 278.65358)
+ (pt 617.65676 278.47676)
+ (pt 617.66953 278.45765)
+ (pt 617.77688 278.52938)
+ (pt 618.05 278.58371)
+ (pt 619.05 278.58371)
+ (pt 619.32312 278.52938)
+ (pt 619.55467 278.37467)
+ (pt 619.70938 278.14312)
+ (pt 619.76371 277.87)
+ (pt 619.70938 277.59688)
+ (pt 619.55467 277.36533)
+ (pt 619.35961 277.235)
+ (pt 619.55467 277.10467)
+ (pt 619.70938 276.87312)
+ (pt 619.76371 276.6)
+ (pt 619.70938 276.32688)
+ (pt 619.55467 276.09533)
+ (pt 619.35961 275.965)
+ (pt 619.55467 275.83467)
+ (pt 619.70938 275.60312)
+ (pt 619.76371 275.33)
+ (pt 619.70938 275.05688)
+ (pt 619.55467 274.82533)
+ (pt 619.35961 274.695)
+ (pt 619.55467 274.56467)
+ (pt 619.70938 274.33312)
+ (pt 619.76371 274.06)
+ (pt 619.70938 273.78688)
+ (pt 619.55467 273.55533)
+ (pt 619.32312 273.40062)
+ (pt 619.05 273.34629)
+ (pt 618.05 273.34629)
+ (pt 617.99893 273.35645)
+ (pt 617.41694 273.35645)
+ (pt 617.31214 273.28642)
+ (pt 617.06878 273.23801)
+ (pt 617.29214 273.19358)
+ (pt 617.55676 273.01676)
+ (pt 617.73358 272.75214)
+ (pt 617.79567 272.44)
+ (pt 617.73358 272.12786)
+ (pt 617.66355 272.02306)
+ (pt 617.66355 271.84568)
+ (pt 617.73679 271.73607)
+ (pt 617.76783 271.58)
+ (pt 617.76783 270.78)
+ (pt 617.73679 270.62393)
+ (pt 617.64838 270.49162)
+ (pt 617.56 270.43256)
+ (pt 617.56 270.32744)
+ (pt 617.64838 270.26838)
+ (pt 617.73679 270.13607)
+ (pt 617.76783 269.98)
+ (pt 617.76783 269.18)
+ (pt 617.73679 269.02393)
+ (pt 617.64838 268.89162)
+ (pt 617.52287 268.80775)
+ (pt 617.65358 268.61214)
+ (pt 617.71567 268.3)
+ (pt 617.65358 267.98786)
+ (pt 617.47676 267.72324)
+ (pt 617.21214 267.54642)
+ (pt 616.9 267.48433)
+ (pt 616.58786 267.54642)
+ (pt 616.32324 267.72324)
+ (pt 616.14642 267.98786)
+ (pt 616.08433 268.3)
+ (pt 616.14642 268.61214)
+ (pt 616.31417 268.86319)
+ (pt 616.27162 268.89162)
+ (pt 616.18321 269.02393)
+ (pt 616.15217 269.18)
+ (pt 616.15217 269.98)
+ (pt 616.18321 270.13607)
+ (pt 616.27162 270.26838)
+ (pt 616.36 270.32744)
+ (pt 616.36 270.43256)
+ (pt 616.27162 270.49162)
+ (pt 616.18321 270.62393)
+ (pt 616.15217 270.78)
+ (pt 616.15217 271.58)
+ (pt 616.18321 271.73607)
+ (pt 616.25645 271.84568)
+ (pt 616.25645 272.08292)
+ (pt 616.22642 272.12786)
+ (pt 616.16433 272.44)
+ (pt 616.22642 272.75214)
+ (pt 616.40324 273.01676)
+ (pt 616.66786 273.19358)
+ (pt 616.91122 273.24199)
+ (pt 616.68786 273.28642)
+ (pt 616.42324 273.46324)
+ (pt 616.24642 273.72786)
+ (pt 616.18433 274.04)
+ (pt 616.24642 274.35214)
+ (pt 616.42324 274.61676)
+ (pt 616.68071 274.7888)
+ (pt 607.27 274.7888)
+ (pt 606.88731 274.94731)
+ (pt 537.65582 344.1788)
+ (pt 537.26658 344.1788)
+ (pt 611.28269 270.16269)
+ (pt 611.4412 269.78)
+ (pt 611.4412 266.28418)
+ (pt 616.45418 261.2712)
+ (pt 617.6 261.2712)
+ (pt 617.74039 261.365)
+ (pt 617.54533 261.49533)
+ (pt 617.39062 261.72688)
+ (pt 617.33629 262.0)
+ (pt 617.39062 262.27312)
+ (pt 617.54533 262.50467)
+ (pt 617.74039 262.635)
+ (pt 617.54533 262.76533)
+ (pt 617.39062 262.99688)
+ (pt 617.33629 263.27)
+ (pt 617.39062 263.54312)
+ (pt 617.54533 263.77467)
+ (pt 617.77688 263.92938)
+ (pt 618.05 263.98371)
+ (pt 619.05 263.98371)
+ (pt 619.32312 263.92938)
+ (pt 619.43952 263.85161)
+ (pt 619.49114 263.92886)
+ (pt 619.78884 264.12778)
+ (pt 620.14 264.19763)
+ (pt 620.26107 264.17355)
+ (pt 620.05731 264.37731)
+ (pt 619.8988 264.76)
+ (pt 619.8988 265.56025)
+ (pt 619.88393 265.56321)
+ (pt 619.75162 265.65162)
+ (pt 619.69256 265.74)
+ (pt 619.58744 265.74)
+ (pt 619.52838 265.65162)
+ (pt 619.39607 265.56321)
+ (pt 619.24 265.53217)
+ (pt 618.44 265.53217)
+ (pt 618.28393 265.56321)
+ (pt 618.23418 265.59645)
+ (pt 618.04701 265.59645)
+ (pt 617.97214 265.54642)
+ (pt 617.66 265.48433)
+ (pt 617.34786 265.54642)
+ (pt 617.08324 265.72324)
+ (pt 616.90642 265.98786)
+ (pt 616.84433 266.3)
+ (pt 616.90642 266.61214)
+ (pt 617.08324 266.87676)
+ (pt 617.34786 267.05358)
+ (pt 617.66 267.11567)
+ (pt 617.97214 267.05358)
+ (pt 618.04701 267.00355)
+ (pt 618.13503 267.00355)
+ (pt 618.15162 267.02838)
+ (pt 618.28393 267.11679)
+ (pt 618.44 267.14783)
+ (pt 619.24 267.14783)
+ (pt 619.39607 267.11679)
+ (pt 619.52838 267.02838)
+ (pt 619.58744 266.94)
+ (pt 619.69256 266.94)
+ (pt 619.75162 267.02838)
+ (pt 619.88393 267.11679)
+ (pt 619.8988 267.11975)
+ (pt 619.8988 267.40664)
+ (pt 619.77162 267.49162)
+ (pt 619.71256 267.58)
+ (pt 619.60744 267.58)
+ (pt 619.54838 267.49162)
+ (pt 619.41607 267.40321)
+ (pt 619.26 267.37217)
+ (pt 618.46 267.37217)
+ (pt 618.30393 267.40321)
+ (pt 618.17162 267.49162)
+ (pt 618.08321 267.62393)
+ (pt 618.05217 267.78)
+ (pt 618.05217 268.58)
+ (pt 618.08321 268.73607)
+ (pt 618.17162 268.86838)
+ (pt 618.30393 268.95679)
+ (pt 618.46 268.98783)
+ (pt 619.26 268.98783)
+ (pt 619.41607 268.95679)
+ (pt 619.54838 268.86838)
+ (pt 619.60744 268.78)
+ (pt 619.71256 268.78)
+ (pt 619.77162 268.86838)
+ (pt 619.90393 268.95679)
+ (pt 619.9188 268.95975)
+ (pt 619.9188 275.34)
+ (pt 620.07731 275.72269)
+ (pt 622.60731 278.25269)
+ (pt 622.99 278.4112)
+ (pt 623.95 278.4112)
+ (pt 624.12688 278.52938)
+ (pt 624.4 278.58371)
+ (pt 625.4 278.58371)
+ (pt 625.67312 278.52938)
+ (pt 625.90467 278.37467)
+ (pt 626.05938 278.14312)
+ (pt 626.11371 277.87)
+ (pt 626.05938 277.59688)
+ (pt 625.90467 277.36533)
+ (pt 625.70961 277.235)
+ (pt 625.90467 277.10467)
+ (pt 626.05938 276.87312)
+ (pt 626.11371 276.6)
+ (pt 626.05938 276.32688)
+ (pt 625.90467 276.09533)
+ (pt 625.70961 275.965)
+ (pt 625.85 275.8712)
+ (pt 637.78313 275.8712)
+ (pt 637.94562 276.11438)
+ (pt 638.34679 276.38243)
+ (pt 638.82 276.47656)
+ (pt 639.29321 276.38243)
+ (pt 639.69438 276.11438)
+ (pt 639.96243 275.71321)
+ (pt 640.05656 275.24)
+ (pt 639.96243 274.76679)
+ (pt 639.85179 274.6012)
+ (pt 639.95582 274.6012)
+ (pt 640.20162 274.847)
+ (pt 640.12344 275.24)
+ (pt 640.21757 275.71321)
+ (pt 640.48562 276.11438)
+ (pt 640.88679 276.38243)
+ (pt 641.36 276.47656)
+ (pt 641.83321 276.38243)
+ (pt 642.23438 276.11438)
+ (pt 642.50243 275.71321)
+ (pt 642.59656 275.24)
+ (pt 642.50243 274.76679)
+ (pt 642.23438 274.36562)
+ (pt 641.83321 274.09757)
+ (pt 641.36 274.00344)
+ (pt 640.967 274.08162)
+ (pt 640.56269 273.67731)
+ (pt 640.18 273.5188)
+ (pt 639.73152 273.5188)
+ (pt 639.96243 273.17321)
+ (pt 640.05656 272.7)
+ (pt 639.96243 272.22679)
+ (pt 639.69438 271.82562)
+ (pt 639.29321 271.55757)
+ (pt 638.82 271.46344)
+ (pt 638.34679 271.55757)
+ (pt 637.94562 271.82562)
+ (pt 637.67757 272.22679)
+ (pt 637.58344 272.7)
+ (pt 637.67757 273.17321)
+ (pt 637.90848 273.5188)
+ (pt 625.85 273.5188)
+ (pt 625.67312 273.40062)
+ (pt 625.4 273.34629)
+ (pt 624.4 273.34629)
+ (pt 624.12688 273.40062)
+ (pt 623.89533 273.55533)
+ (pt 623.74062 273.78688)
+ (pt 623.68629 274.06)
+ (pt 623.74062 274.33312)
+ (pt 623.89533 274.56467)
+ (pt 624.09039 274.695)
+ (pt 623.89533 274.82533)
+ (pt 623.74062 275.05688)
+ (pt 623.68629 275.33)
+ (pt 623.74062 275.60312)
+ (pt 623.89533 275.83467)
+ (pt 624.09039 275.965)
+ (pt 623.95 276.0588)
+ (pt 623.60418 276.0588)
+ (pt 623.2812 275.73582)
+ (pt 623.2812 268.96373)
+ (pt 623.31607 268.95679)
+ (pt 623.44838 268.86838)
+ (pt 623.50744 268.78)
+ (pt 623.61256 268.78)
+ (pt 623.67162 268.86838)
+ (pt 623.80393 268.95679)
+ (pt 623.96 268.98783)
+ (pt 624.76 268.98783)
+ (pt 624.91607 268.95679)
+ (pt 625.04838 268.86838)
+ (pt 625.13679 268.73607)
+ (pt 625.16783 268.58)
+ (pt 625.16783 268.0001)
+ (pt 625.24786 268.05358)
+ (pt 625.56 268.11567)
+ (pt 625.87214 268.05358)
+ (pt 626.13676 267.87676)
+ (pt 626.31358 267.61214)
+ (pt 626.37567 267.3)
+ (pt 626.31358 266.98786)
+ (pt 626.13676 266.72324)
+ (pt 625.87214 266.54642)
+ (pt 625.56 266.48433)
+ (pt 625.24786 266.54642)
+ (pt 625.16783 266.5999)
+ (pt 625.16783 265.96)
+ (pt 625.13679 265.80393)
+ (pt 625.10452 265.75563)
+ (pt 625.13358 265.71214)
+ (pt 625.19567 265.4)
+ (pt 625.13358 265.08786)
+ (pt 624.95676 264.82324)
+ (pt 624.69214 264.64642)
+ (pt 624.38 264.58433)
+ (pt 624.06786 264.64642)
+ (pt 623.80324 264.82324)
+ (pt 623.62642 265.08786)
+ (pt 623.56433 265.4)
+ (pt 623.62642 265.71214)
+ (pt 623.63548 265.7257)
+ (pt 623.61256 265.76)
+ (pt 623.50744 265.76)
+ (pt 623.44838 265.67162)
+ (pt 623.31607 265.58321)
+ (pt 623.3012 265.58025)
+ (pt 623.3012 264.00418)
+ (pt 623.49418 263.8112)
+ (pt 623.95 263.8112)
+ (pt 624.12688 263.92938)
+ (pt 624.4 263.98371)
+ (pt 625.4 263.98371)
+ (pt 625.67312 263.92938)
+ (pt 625.90467 263.77467)
+ (pt 626.05938 263.54312)
+ (pt 626.11371 263.27)
+ (pt 626.05938 262.99688)
+ (pt 625.90467 262.76533)
+ (pt 625.70961 262.635)
+ (pt 625.90467 262.50467)
+ (pt 626.05938 262.27312)
+ (pt 626.11371 262.0)
+ (pt 626.05938 261.72688)
+ (pt 625.90467 261.49533)
+ (pt 625.70961 261.365)
+ (pt 625.85 261.2712)
+ (pt 626.57217 261.2712)
+ (pt 626.57217 261.34)
+ (pt 626.60321 261.49607)
+ (pt 626.69162 261.62838)
+ (pt 626.78 261.68744)
+ (pt 626.78 261.79256)
+ (pt 626.69162 261.85162)
+ (pt 626.60321 261.98393)
+ (pt 626.57217 262.14)
+ (pt 626.57217 262.94)
+ (pt 626.60321 263.09607)
+ (pt 626.68557 263.21933)
+ (pt 626.53222 263.44884)
+ (pt 626.46237 263.8)
+ (pt 626.53222 264.15116)
+ (pt 626.73114 264.44886)
+ (pt 627.02884 264.64778)
+ (pt 627.38 264.71763)
+ (pt 627.73116 264.64778)
+ (pt 628.02886 264.44886)
+ (pt 628.22778 264.15116)
+ (pt 628.29763 263.8)
+ (pt 628.22778 263.44884)
+ (pt 628.07443 263.21933)
+ (pt 628.15679 263.09607)
+ (pt 628.18783 262.94)
+ (pt 628.18783 262.14)
+ (pt 628.15679 261.98393)
+ (pt 628.06838 261.85162)
+ (pt 627.98 261.79256)
+ (pt 627.98 261.68744)
+ (pt 628.06838 261.62838)
+ (pt 628.15679 261.49607)
+ (pt 628.15975 261.4812)
+ (pt 629.17627 261.4812)
+ (pt 629.18321 261.51607)
+ (pt 629.27162 261.64838)
+ (pt 629.36 261.70744)
+ (pt 629.36 261.81256)
+ (pt 629.27162 261.87162)
+ (pt 629.18321 262.00393)
+ (pt 629.15217 262.16)
+ (pt 629.15217 262.96)
+ (pt 629.18321 263.11607)
+ (pt 629.27162 263.24838)
+ (pt 629.28174 263.25514)
+ (pt 629.11222 263.50884)
+ (pt 629.04237 263.86)
+ (pt 629.11222 264.21116)
+ (pt 629.31114 264.50886)
+ (pt 629.60884 264.70778)
+ (pt 629.96 264.77763)
+ (pt 630.31116 264.70778)
+ (pt 630.60886 264.50886)
+ (pt 630.80778 264.21116)
+ (pt 630.87763 263.86)
+ (pt 630.80778 263.50884)
+ (pt 630.63826 263.25514)
+ (pt 630.64838 263.24838)
+ (pt 630.73679 263.11607)
+ (pt 630.76783 262.96)
+ (pt 630.76783 262.16)
+ (pt 630.73679 262.00393)
+ (pt 630.64838 261.87162)
+ (pt 630.56 261.81256)
+ (pt 630.56 261.70744)
+ (pt 630.64838 261.64838)
+ (pt 630.73679 261.51607)
+ (pt 630.73975 261.5012)
+ (pt 631.09257 261.5012)
+ (pt 631.15114 261.58886)
+ (pt 631.44884 261.78778)
+ (pt 631.8 261.85763)
+ (pt 632.15116 261.78778)
+ (pt 632.44886 261.58886)
+ (pt 632.64778 261.29116)
+ (pt 632.71763 260.94)
+ (pt 632.64778 260.58884)
+ (pt 632.44886 260.29114)
+ (pt 632.15116 260.09222)
+ (pt 631.8 260.02237)
+ (pt 631.44884 260.09222)
+ (pt 631.15114 260.29114)
+ (pt 631.06584 260.4188)
+ (pt 630.73975 260.4188)
+ (pt 630.73679 260.40393)
+ (pt 630.64838 260.27162)
+ (pt 630.51607 260.18321)
+ (pt 630.36 260.15217)
+ (pt 629.56 260.15217)
+ (pt 629.40393 260.18321)
+ (pt 629.27162 260.27162)
+ (pt 629.18664 260.3988)
+ (pt 628.15975 260.3988)
+ (pt 628.15679 260.38393)
+ (pt 628.06838 260.25162)
+ (pt 627.93607 260.16321)
+ (pt 627.78 260.13217)
+ (pt 626.98 260.13217)
+ (pt 626.82393 260.16321)
+ (pt 626.78563 260.1888)
+ (pt 625.85 260.1888)
+ (pt 625.70961 260.095)
+ (pt 625.85 260.0012)
+ (pt 627.06 260.0012)
+ (pt 627.28542 259.90783)
+ (pt 627.82 259.90783)
+ (pt 627.97607 259.87679)
+ (pt 628.10838 259.78838)
+ (pt 628.19679 259.65607)
+ (pt 628.19975 259.6412)
+ (pt 629.22025 259.6412)
+ (pt 629.22321 259.65607)
+ (pt 629.31162 259.78838)
+ (pt 629.44393 259.87679)
+ (pt 629.6 259.90783)
+ (pt 630.4 259.90783)
+ (pt 630.55607 259.87679)
+ (pt 630.68838 259.78838)
+ (pt 630.77679 259.65607)
+ (pt 630.77975 259.6412)
+ (pt 631.17257 259.6412)
+ (pt 631.23114 259.72886)
+ (pt 631.52884 259.92778)
+ (pt 631.88 259.99763)
+ (pt 632.23116 259.92778)
+ (pt 632.52886 259.72886)
+ (pt 632.72778 259.43116)
+ (pt 632.79763 259.08)
+ (pt 632.72778 258.72884)
+ (pt 632.52886 258.43114)
+ (pt 632.23116 258.23222)
+ (pt 631.88 258.16237)
+ (pt 631.52884 258.23222)
+ (pt 631.23114 258.43114)
+ (pt 631.14584 258.5588)
+ (pt 630.77975 258.5588)
+ (pt 630.77679 258.54393)
+ (pt 630.68838 258.41162)
+ (pt 630.6 258.35256)
+ (pt 630.6 258.24744)
+ (pt 630.68838 258.18838)
+ (pt 630.77679 258.05607)
+ (pt 630.80783 257.9)
+ (pt 630.80783 257.1)
+ (pt 630.77679 256.94393)
+ (pt 630.72115 256.86067)
+ (pt 630.84778 256.67116)
+ (pt 630.91763 256.32)
+ (pt 630.84778 255.96884)
+ (pt 630.64886 255.67114)
+ (pt 630.35116 255.47222)
+ (pt 630.0 255.40237)
+ (pt 629.64884 255.47222)
+ (pt 629.35114 255.67114)
+ (pt 629.15222 255.96884)
+ (pt 629.08237 256.32)
+ (pt 629.15222 256.67116)
+ (pt 629.27885 256.86067)
+ (pt 629.22321 256.94393)
+ (pt 629.19217 257.1)
+ (pt 629.19217 257.9)
+ (pt 629.22321 258.05607)
+ (pt 629.31162 258.18838)
+ (pt 629.4 258.24744)
+ (pt 629.4 258.35256)
+ (pt 629.31162 258.41162)
+ (pt 629.22321 258.54393)
+ (pt 629.22025 258.5588)
+ (pt 628.19975 258.5588)
+ (pt 628.19679 258.54393)
+ (pt 628.10838 258.41162)
+ (pt 628.02 258.35256)
+ (pt 628.02 258.24744)
+ (pt 628.10838 258.18838)
+ (pt 628.19679 258.05607)
+ (pt 628.22783 257.9)
+ (pt 628.22783 257.1)
+ (pt 628.19679 256.94393)
+ (pt 628.13784 256.8557)
+ (pt 628.24778 256.69116)
+ (pt 628.31763 256.34)
+ (pt 628.24778 255.98884)
+ (pt 628.04886 255.69114)
+ (pt 627.75116 255.49222)
+ (pt 627.4 255.42237)
+ (pt 627.04884 255.49222)
+ (pt 626.75114 255.69114)
+ (pt 626.55222 255.98884)
+ (pt 626.48237 256.34)
+ (pt 626.55222 256.69116)
+ (pt 626.68216 256.88563)
+ (pt 626.64321 256.94393)
+ (pt 626.61217 257.1)
+ (pt 626.61217 257.9)
+ (pt 626.64321 258.05607)
+ (pt 626.73162 258.18838)
+ (pt 626.82 258.24744)
+ (pt 626.82 258.35256)
+ (pt 626.73162 258.41162)
+ (pt 626.64321 258.54393)
+ (pt 626.61217 258.7)
+ (pt 626.61217 258.9188)
+ (pt 625.85 258.9188)
+ (pt 625.67312 258.80062)
+ (pt 625.4 258.74629)
+ (pt 624.4 258.74629)
+ (pt 624.12688 258.80062)
+ (pt 623.89533 258.95533)
+ (pt 623.74062 259.18688)
+ (pt 623.68629 259.46)
+ (pt 623.74062 259.73312)
+ (pt 623.89533 259.96467)
+ (pt 624.09039 260.095)
+ (pt 623.89533 260.22533)
+ (pt 623.74062 260.45688)
+ (pt 623.68629 260.73)
+ (pt 623.74062 261.00312)
+ (pt 623.89533 261.23467)
+ (pt 624.09039 261.365)
+ (pt 623.95 261.4588)
+ (pt 623.2 261.4588)
+ (pt 622.81731 261.61731)
+ (pt 622.66904 261.76558)
+ (pt 622.65358 261.68786)
+ (pt 622.47676 261.42324)
+ (pt 622.21214 261.24642)
+ (pt 621.9 261.18433)
+ (pt 621.58786 261.24642)
+ (pt 621.32324 261.42324)
+ (pt 621.29948 261.4588)
+ (pt 619.5 261.4588)
+ (pt 619.35961 261.365)
+ (pt 619.55467 261.23467)
+ (pt 619.70938 261.00312)
+ (pt 619.76371 260.73)
+ (pt 619.70938 260.45688)
+ (pt 619.55467 260.22533)
+ (pt 619.38122 260.10944)
+ (pt 619.43816 260.10944)
+ (pt 619.45114 260.12886)
+ (pt 619.74884 260.32778)
+ (pt 620.1 260.39763)
+ (pt 620.45116 260.32778)
+ (pt 620.74886 260.12886)
+ (pt 620.94778 259.83116)
+ (pt 621.01763 259.48)
+ (pt 620.94778 259.12884)
+ (pt 620.74886 258.83114)
+ (pt 620.45116 258.63222)
+ (pt 620.1 258.56237)
+ (pt 619.74884 258.63222)
+ (pt 619.48194 258.81056)
+ (pt 619.338 258.81056)
+ (pt 619.32312 258.80062)
+ (pt 619.05 258.74629)
+ (pt 618.05 258.74629)
+ (pt 617.77688 258.80062)
+ (pt 617.54533 258.95533)
+ (pt 617.39062 259.18688)
+ (pt 617.33629 259.46)
+ (pt 617.39062 259.73312)
+ (pt 617.54533 259.96467)
+ (pt 617.74039 260.095)
+ (pt 617.6 260.1888)
+ (pt 616.23 260.1888)
+ (pt 615.84731 260.34731)
+ (pt 610.51731 265.67731)
+ (pt 610.3588 266.06)
+ (pt 610.3588 269.55582)
+ (pt 536.23582 343.6788)
+ (pt 534.09331 343.6788)
+ (pt 534.13257 343.65257)
+ (pt 534.26518 343.4541)
+ (pt 534.31175 343.22)
+ (pt 534.26518 342.9859)
+ (pt 534.13257 342.78743)
+ (pt 533.9341 342.65482)
+ (pt 533.7 342.60825)
+ (pt 533.4659 342.65482)
+ (pt 533.26743 342.78743)
+ (pt 533.2 342.88835)
+ (pt 533.13257 342.78743)
+ (pt 532.9341 342.65482)
+ (pt 532.7 342.60825)
+ (pt 532.4659 342.65482)
+ (pt 532.41755 342.68713)
+ (pt 532.46273 342.46)
+ (pt 532.41228 342.20639)
+ (pt 532.26862 341.99138)
+ (pt 532.05361 341.84772)
+ (pt 531.8 341.79727)
+ (pt 531.54639 341.84772)
+ (pt 531.33138 341.99138)
+ (pt 531.18772 342.20639)
+ (pt 531.13727 342.46)
+ (pt 531.1588 342.56823)
+ (pt 531.1588 342.82669)
+ (pt 531.13257 342.78743)
+ (pt 530.9341 342.65482)
+ (pt 530.7 342.60825)
+ (pt 530.4659 342.65482)
+ (pt 530.26743 342.78743)
+ (pt 530.2 342.88835)
+ (pt 530.13257 342.78743)
+ (pt 529.9341 342.65482)
+ (pt 529.7 342.60825)
+ (pt 529.4659 342.65482)
+ (pt 529.26743 342.78743)
+ (pt 529.2 342.88835)
+ (pt 529.13257 342.78743)
+ (pt 528.9341 342.65482)
+ (pt 528.86711 342.64149)
+ (pt 528.83228 342.46639)
+ (pt 528.68862 342.25138)
+ (pt 528.47361 342.10772)
+ (pt 528.22 342.05727)
+ (pt 527.96639 342.10772)
+ (pt 527.75138 342.25138)
+ (pt 527.72004 342.29828)
+ (pt 527.64862 342.19138)
+ (pt 527.43361 342.04772)
+ (pt 527.18 341.99727)
+ (pt 526.92639 342.04772)
+ (pt 526.71138 342.19138)
+ (pt 526.67664 342.24338)
+ (pt 526.66862 342.23138)
+ (pt 526.45361 342.08772)
+ (pt 526.2 342.03727)
+ (pt 525.94639 342.08772)
+ (pt 525.73138 342.23138)
+ (pt 525.70668 342.26835)
+ (pt 525.66862 342.21138)
+ (pt 525.45361 342.06772)
+ (pt 525.2 342.01727)
+ (pt 524.94639 342.06772)
+ (pt 524.73138 342.21138)
+ (pt 524.69668 342.26331)
+ (pt 524.64862 342.19138)
+ (pt 524.43361 342.04772)
+ (pt 524.18 341.99727)
+ (pt 523.92639 342.04772)
+ (pt 523.71138 342.19138)
+ (pt 523.7 342.20841)
+ (pt 523.68862 342.19138)
+ (pt 523.47361 342.04772)
+ (pt 523.22 341.99727)
+ (pt 522.96639 342.04772)
+ (pt 522.75138 342.19138)
+ (pt 522.72668 342.22835)
+ (pt 522.68862 342.17138)
+ (pt 522.47361 342.02772)
+ (pt 522.22 341.97727)
+ (pt 521.96639 342.02772)
+ (pt 521.75138 342.17138)
+ (pt 521.60772 342.38639)
+ (pt 521.58276 342.51186)
+ (pt 521.38725 342.70737)
+ (pt 521.3481 342.73353)
+ (pt 521.36273 342.66)
+ (pt 521.31228 342.40639)
+ (pt 521.16862 342.19138)
+ (pt 520.95361 342.04772)
+ (pt 520.7 341.99727)
+ (pt 520.44639 342.04772)
+ (pt 520.23138 342.19138)
+ (pt 520.08772 342.40639)
+ (pt 520.03727 342.66)
+ (pt 520.0519 342.73353)
+ (pt 519.9341 342.65482)
+ (pt 519.7 342.60825)
+ (pt 519.4659 342.65482)
+ (pt 519.26743 342.78743)
+ (pt 519.2 342.88835)
+ (pt 519.13257 342.78743)
+ (pt 518.9341 342.65482)
+ (pt 518.7 342.60825)
+ (pt 518.4659 342.65482)
+ (pt 518.26743 342.78743)
+ (pt 518.13482 342.9859)
+ (pt 518.08825 343.22)
+ (pt 518.13482 343.4541)
+ (pt 518.26743 343.65257)
+ (pt 518.36582 343.71831)
+ (pt 511.44781 343.71831)
+ (pt 498.75169 331.02219)
+ (pt 498.75169 326.91043)
+ (pt 498.96459 326.86808)
+ (pt 499.14652 326.74652)
+ (pt 499.26808 326.56459)
+ (pt 499.31077 326.35)
+ (pt 499.31077 326.2912)
+ (pt 509.24582 326.2912)
+ (pt 509.57731 326.62269)
+ (pt 509.96 326.7812)
+ (pt 510.47769 326.7812)
+ (pt 510.40642 326.88786)
+ (pt 510.34433 327.2)
+ (pt 510.40642 327.51214)
+ (pt 510.58324 327.77676)
+ (pt 510.84786 327.95358)
+ (pt 511.16 328.01567)
+ (pt 511.47214 327.95358)
+ (pt 511.73676 327.77676)
+ (pt 511.91358 327.51214)
+ (pt 511.97567 327.2)
+ (pt 511.91358 326.88786)
+ (pt 511.84231 326.7812)
+ (pt 514.05297 326.7812)
+ (pt 514.11138 326.86862)
+ (pt 514.32639 327.01228)
+ (pt 514.58 327.06273)
+ (pt 514.83361 327.01228)
+ (pt 514.99913 326.90169)
+ (pt 519.79217 326.90169)
+ (pt 519.79217 327.64)
+ (pt 519.82321 327.79607)
+ (pt 519.89919 327.90979)
+ (pt 519.87727 328.02)
+ (pt 519.92772 328.27361)
+ (pt 520.07138 328.48862)
+ (pt 520.28639 328.63228)
+ (pt 520.54 328.68273)
+ (pt 520.79361 328.63228)
+ (pt 521.00862 328.48862)
+ (pt 521.15228 328.27361)
+ (pt 521.20273 328.02)
+ (pt 521.19669 327.98965)
+ (pt 521.28838 327.92838)
+ (pt 521.34744 327.84)
+ (pt 521.45256 327.84)
+ (pt 521.51162 327.92838)
+ (pt 521.64393 328.01679)
+ (pt 521.8 328.04783)
+ (pt 522.6 328.04783)
+ (pt 522.75607 328.01679)
+ (pt 522.88838 327.92838)
+ (pt 522.95056 327.83532)
+ (pt 523.06221 327.83532)
+ (pt 523.2 327.86273)
+ (pt 523.45361 327.81228)
+ (pt 523.66862 327.66862)
+ (pt 523.81228 327.45361)
+ (pt 523.86273 327.2)
+ (pt 523.81228 326.94639)
+ (pt 523.66862 326.73138)
+ (pt 523.45361 326.58772)
+ (pt 523.2 326.53727)
+ (pt 522.94639 326.58772)
+ (pt 522.92296 326.60337)
+ (pt 522.88838 326.55162)
+ (pt 522.75607 326.46321)
+ (pt 522.6 326.43217)
+ (pt 522.31733 326.43217)
+ (pt 522.71115 326.03835)
+ (pt 522.73138 326.06862)
+ (pt 522.94639 326.21228)
+ (pt 523.2 326.26273)
+ (pt 523.45361 326.21228)
+ (pt 523.66862 326.06862)
+ (pt 523.81228 325.85361)
+ (pt 523.86273 325.6)
+ (pt 523.81228 325.34639)
+ (pt 523.66862 325.13138)
+ (pt 523.63835 325.11115)
+ (pt 524.84781 323.90169)
+ (pt 525.65683 323.90169)
+ (pt 525.63727 324.0)
+ (pt 525.68772 324.25361)
+ (pt 525.83138 324.46862)
+ (pt 526.04639 324.61228)
+ (pt 526.16973 324.63682)
+ (pt 526.13727 324.8)
+ (pt 526.18772 325.05361)
+ (pt 526.33138 325.26862)
+ (pt 526.54639 325.41228)
+ (pt 526.8 325.46273)
+ (pt 527.05361 325.41228)
+ (pt 527.26862 325.26862)
+ (pt 527.41228 325.05361)
+ (pt 527.46273 324.8)
+ (pt 527.41228 324.54639)
+ (pt 527.26862 324.33138)
+ (pt 527.05361 324.18772)
+ (pt 526.93027 324.16318)
+ (pt 526.96273 324.0)
+ (pt 526.92923 323.83159)
+ (pt 527.11475 323.75475)
+ (pt 528.56781 322.30169)
+ (pt 530.03761 322.30169)
+ (pt 530.08772 322.55361)
+ (pt 530.23138 322.76862)
+ (pt 530.27835 322.8)
+ (pt 530.23138 322.83138)
+ (pt 530.08772 323.04639)
+ (pt 530.03727 323.3)
+ (pt 530.08772 323.55361)
+ (pt 530.23138 323.76862)
+ (pt 530.27835 323.8)
+ (pt 530.23138 323.83138)
+ (pt 530.08772 324.04639)
+ (pt 530.03727 324.3)
+ (pt 530.08772 324.55361)
+ (pt 530.23138 324.76862)
+ (pt 530.27835 324.8)
+ (pt 530.23138 324.83138)
+ (pt 530.08772 325.04639)
+ (pt 530.03727 325.3)
+ (pt 530.08772 325.55361)
+ (pt 530.23138 325.76862)
+ (pt 530.27835 325.8)
+ (pt 530.23138 325.83138)
+ (pt 530.08772 326.04639)
+ (pt 530.03727 326.3)
+ (pt 530.08772 326.55361)
+ (pt 530.23138 326.76862)
+ (pt 530.44639 326.91228)
+ (pt 530.7 326.96273)
+ (pt 530.95361 326.91228)
+ (pt 530.973 326.89933)
+ (pt 531.03468 326.94054)
+ (pt 531.3 326.99332)
+ (pt 531.56532 326.94054)
+ (pt 531.79025 326.79025)
+ (pt 531.8 326.77566)
+ (pt 531.80975 326.79025)
+ (pt 532.03468 326.94054)
+ (pt 532.3 326.99332)
+ (pt 532.56532 326.94054)
+ (pt 532.79025 326.79025)
+ (pt 532.8 326.77566)
+ (pt 532.80975 326.79025)
+ (pt 533.03468 326.94054)
+ (pt 533.3 326.99332)
+ (pt 533.56532 326.94054)
+ (pt 533.79025 326.79025)
+ (pt 533.8 326.77566)
+ (pt 533.80975 326.79025)
+ (pt 534.03468 326.94054)
+ (pt 534.3 326.99332)
+ (pt 534.56532 326.94054)
+ (pt 534.79025 326.79025)
+ (pt 534.8 326.77566)
+ (pt 534.80975 326.79025)
+ (pt 535.03468 326.94054)
+ (pt 535.3 326.99332)
+ (pt 535.56532 326.94054)
+ (pt 535.79025 326.79025)
+ (pt 535.8 326.77566)
+ (pt 535.80975 326.79025)
+ (pt 536.03468 326.94054)
+ (pt 536.3 326.99332)
+ (pt 536.56532 326.94054)
+ (pt 536.79025 326.79025)
+ (pt 536.8 326.77566)
+ (pt 536.80975 326.79025)
+ (pt 537.03468 326.94054)
+ (pt 537.3 326.99332)
+ (pt 537.56532 326.94054)
+ (pt 537.79025 326.79025)
+ (pt 537.8 326.77566)
+ (pt 537.80975 326.79025)
+ (pt 538.03468 326.94054)
+ (pt 538.3 326.99332)
+ (pt 538.56532 326.94054)
+ (pt 538.79025 326.79025)
+ (pt 538.8 326.77566)
+ (pt 538.80975 326.79025)
+ (pt 539.03468 326.94054)
+ (pt 539.3 326.99332)
+ (pt 539.56532 326.94054)
+ (pt 539.79025 326.79025)
+ (pt 539.8 326.77566)
+ (pt 539.80975 326.79025)
+ (pt 540.03468 326.94054)
+ (pt 540.3 326.99332)
+ (pt 540.56532 326.94054)
+ (pt 540.79025 326.79025)
+ (pt 540.8 326.77566)
+ (pt 540.80975 326.79025)
+ (pt 541.03468 326.94054)
+ (pt 541.3 326.99332)
+ (pt 541.56532 326.94054)
+ (pt 541.79025 326.79025)
+ (pt 541.8 326.77566)
+ (pt 541.80975 326.79025)
+ (pt 542.03468 326.94054)
+ (pt 542.3 326.99332)
+ (pt 542.56532 326.94054)
+ (pt 542.79025 326.79025)
+ (pt 542.79831 326.77819)
+ (pt 542.79831 327.06)
+ (pt 542.94525 327.41475)
+ (pt 544.30525 328.77475)
+ (pt 544.66 328.92169)
+ (pt 548.56 328.92169)
+ (pt 548.91475 328.77475)
+ (pt 558.19475 319.49475)
+ (pt 558.34169 319.14)
+ (pt 558.34169 294.4472)
+ (pt 558.48886 294.34886)
+ (pt 558.68778 294.05116)
+ (pt 558.75763 293.7)
+ (pt 558.68778 293.34884)
+ (pt 558.48886 293.05114)
+ (pt 558.19116 292.85222)
+ (pt 558.005 292.81519)
+ (pt 558.04778 292.75116)
+ (pt 558.11763 292.4)
+ (pt 558.04778 292.04884)
+ (pt 557.84886 291.75114)
+ (pt 557.55116 291.55222)
+ (pt 557.2 291.48237)
+ (pt 556.84884 291.55222)
+ (pt 556.55114 291.75114)
+ (pt 556.4792 291.8588)
+ (pt 556.405 291.8588)
+ (pt 556.15763 291.69352)
+ (pt 555.865 291.63531)
+ (pt 554.565 291.63531)
+ (pt 554.27237 291.69352)
+ (pt 554.02428 291.85928)
+ (pt 553.85852 292.10737)
+ (pt 553.80031 292.4)
+ (pt 553.85852 292.69263)
+ (pt 554.02428 292.94072)
+ (pt 554.16539 293.035)
+ (pt 554.02428 293.12928)
+ (pt 553.85852 293.37737)
+ (pt 553.80031 293.67)
+ (pt 553.85852 293.96263)
+ (pt 554.02428 294.21072)
+ (pt 554.16539 294.305)
+ (pt 554.02428 294.39928)
+ (pt 553.85852 294.64737)
+ (pt 553.80031 294.94)
+ (pt 553.85852 295.23263)
+ (pt 554.02428 295.48072)
+ (pt 554.16539 295.575)
+ (pt 554.02428 295.66928)
+ (pt 553.85852 295.91737)
+ (pt 553.80031 296.21)
+ (pt 553.85852 296.50263)
+ (pt 554.02428 296.75072)
+ (pt 554.16539 296.845)
+ (pt 554.02428 296.93928)
+ (pt 553.85852 297.18737)
+ (pt 553.80031 297.48)
+ (pt 553.85852 297.77263)
+ (pt 554.02428 298.02072)
+ (pt 554.16539 298.115)
+ (pt 554.02428 298.20928)
+ (pt 553.85852 298.45737)
+ (pt 553.80031 298.75)
+ (pt 553.85852 299.04263)
+ (pt 554.02428 299.29072)
+ (pt 554.16539 299.385)
+ (pt 554.02428 299.47928)
+ (pt 553.85852 299.72737)
+ (pt 553.80031 300.02)
+ (pt 553.85852 300.31263)
+ (pt 554.02428 300.56072)
+ (pt 554.16539 300.655)
+ (pt 554.11426 300.68916)
+ (pt 554.08886 300.65114)
+ (pt 553.79116 300.45222)
+ (pt 553.44 300.38237)
+ (pt 553.08884 300.45222)
+ (pt 552.79114 300.65114)
+ (pt 552.59222 300.94884)
+ (pt 552.52237 301.3)
+ (pt 552.59222 301.65116)
+ (pt 552.79114 301.94886)
+ (pt 553.08884 302.14778)
+ (pt 553.44 302.21763)
+ (pt 553.79116 302.14778)
+ (pt 554.08886 301.94886)
+ (pt 554.1235 301.89701)
+ (pt 554.27237 301.99648)
+ (pt 554.565 302.05469)
+ (pt 555.865 302.05469)
+ (pt 556.15763 301.99648)
+ (pt 556.40572 301.83072)
+ (pt 556.57148 301.58263)
+ (pt 556.62969 301.29)
+ (pt 556.57148 300.99737)
+ (pt 556.40572 300.74928)
+ (pt 556.26461 300.655)
+ (pt 556.31344 300.62237)
+ (pt 556.33114 300.64886)
+ (pt 556.62884 300.84778)
+ (pt 556.98 300.91763)
+ (pt 557.33116 300.84778)
+ (pt 557.33831 300.843)
+ (pt 557.33831 302.7007)
+ (pt 557.12 302.65727)
+ (pt 556.86639 302.70772)
+ (pt 556.65138 302.85138)
+ (pt 556.50772 303.06639)
+ (pt 556.45727 303.32)
+ (pt 556.50772 303.57361)
+ (pt 556.61831 303.73913)
+ (pt 556.61831 304.15285)
+ (pt 556.54 304.13727)
+ (pt 556.28639 304.18772)
+ (pt 556.09403 304.31625)
+ (pt 556.05228 304.10639)
+ (pt 555.90862 303.89138)
+ (pt 555.69361 303.74772)
+ (pt 555.44 303.69727)
+ (pt 555.28521 303.72806)
+ (pt 555.30273 303.64)
+ (pt 555.25228 303.38639)
+ (pt 555.10862 303.17138)
+ (pt 554.89361 303.02772)
+ (pt 554.64 302.97727)
+ (pt 554.38639 303.02772)
+ (pt 554.17138 303.17138)
+ (pt 554.02772 303.38639)
+ (pt 553.97727 303.64)
+ (pt 554.02772 303.89361)
+ (pt 554.13831 304.05913)
+ (pt 554.13831 317.91219)
+ (pt 548.75219 323.29831)
+ (pt 548.56239 323.29831)
+ (pt 548.51228 323.04639)
+ (pt 548.36862 322.83138)
+ (pt 548.32165 322.8)
+ (pt 548.36862 322.76862)
+ (pt 548.51228 322.55361)
+ (pt 548.56273 322.3)
+ (pt 548.51228 322.04639)
+ (pt 548.36862 321.83138)
+ (pt 548.32165 321.8)
+ (pt 548.36862 321.76862)
+ (pt 548.51228 321.55361)
+ (pt 548.56273 321.3)
+ (pt 548.51228 321.04639)
+ (pt 548.38106 320.85)
+ (pt 548.51228 320.65361)
+ (pt 548.56273 320.4)
+ (pt 548.51228 320.14639)
+ (pt 548.36862 319.93138)
+ (pt 548.15361 319.78772)
+ (pt 547.9 319.73727)
+ (pt 547.81425 319.75433)
+ (pt 547.94054 319.56532)
+ (pt 547.99332 319.3)
+ (pt 547.98968 319.28169)
+ (pt 548.29219 319.28169)
+ (pt 549.21385 320.20335)
+ (pt 549.24772 320.37361)
+ (pt 549.39138 320.58862)
+ (pt 549.60639 320.73228)
+ (pt 549.86 320.78273)
+ (pt 550.11361 320.73228)
+ (pt 550.32862 320.58862)
+ (pt 550.47228 320.37361)
+ (pt 550.52273 320.12)
+ (pt 550.47228 319.86639)
+ (pt 550.32862 319.65138)
+ (pt 550.11361 319.50772)
+ (pt 549.89342 319.46392)
+ (pt 548.85475 318.42525)
+ (pt 548.5 318.27831)
+ (pt 547.98901 318.27831)
+ (pt 547.94054 318.03468)
+ (pt 547.79025 317.80975)
+ (pt 547.77566 317.8)
+ (pt 547.79025 317.79025)
+ (pt 547.94054 317.56532)
+ (pt 547.99298 317.30169)
+ (pt 549.7 317.30169)
+ (pt 550.05475 317.15475)
+ (pt 550.15838 317.05112)
+ (pt 550.35361 317.01228)
+ (pt 550.56862 316.86862)
+ (pt 550.71228 316.65361)
+ (pt 550.76273 316.4)
+ (pt 550.71228 316.14639)
+ (pt 550.56862 315.93138)
+ (pt 550.35361 315.78772)
+ (pt 550.1 315.73727)
+ (pt 549.84639 315.78772)
+ (pt 549.63138 315.93138)
+ (pt 549.48772 316.14639)
+ (pt 549.4575 316.29831)
+ (pt 547.99298 316.29831)
+ (pt 547.94054 316.03468)
+ (pt 547.87598 315.93806)
+ (pt 548.0 315.96273)
+ (pt 548.25361 315.91228)
+ (pt 548.46862 315.76862)
+ (pt 548.61228 315.55361)
+ (pt 548.66273 315.3)
+ (pt 548.61228 315.04639)
+ (pt 548.47518 314.8412)
+ (pt 549.27582 314.8412)
+ (pt 549.46276 315.02814)
+ (pt 549.48772 315.15361)
+ (pt 549.63138 315.36862)
+ (pt 549.84639 315.51228)
+ (pt 550.1 315.56273)
+ (pt 550.35361 315.51228)
+ (pt 550.56862 315.36862)
+ (pt 550.71228 315.15361)
+ (pt 550.76273 314.9)
+ (pt 550.71228 314.64639)
+ (pt 550.56862 314.43138)
+ (pt 550.35361 314.28772)
+ (pt 550.22814 314.26276)
+ (pt 549.88269 313.91731)
+ (pt 549.61316 313.80567)
+ (pt 549.66862 313.76862)
+ (pt 549.81228 313.55361)
+ (pt 549.86273 313.3)
+ (pt 549.81228 313.04639)
+ (pt 549.66862 312.83138)
+ (pt 549.45361 312.68772)
+ (pt 549.2 312.63727)
+ (pt 548.94639 312.68772)
+ (pt 548.78087 312.79831)
+ (pt 548.32418 312.79831)
+ (pt 548.36862 312.76862)
+ (pt 548.51228 312.55361)
+ (pt 548.56273 312.3)
+ (pt 548.51228 312.04639)
+ (pt 548.4497 311.95272)
+ (pt 548.5 311.96273)
+ (pt 548.75361 311.91228)
+ (pt 548.96862 311.76862)
+ (pt 549.11228 311.55361)
+ (pt 549.16273 311.3)
+ (pt 549.11228 311.04639)
+ (pt 548.96862 310.83138)
+ (pt 548.75361 310.68772)
+ (pt 548.5 310.63727)
+ (pt 548.24639 310.68772)
+ (pt 548.08087 310.79831)
+ (pt 547.77819 310.79831)
+ (pt 547.79025 310.79025)
+ (pt 547.94054 310.56532)
+ (pt 547.99332 310.3)
+ (pt 547.94054 310.03468)
+ (pt 547.89933 309.973)
+ (pt 547.91228 309.95361)
+ (pt 547.96273 309.7)
+ (pt 547.91228 309.44639)
+ (pt 547.88241 309.40169)
+ (pt 548.58666 309.40169)
+ (pt 548.63138 309.46862)
+ (pt 548.84639 309.61228)
+ (pt 549.1 309.66273)
+ (pt 549.35361 309.61228)
+ (pt 549.56862 309.46862)
+ (pt 549.71228 309.25361)
+ (pt 549.76273 309.0)
+ (pt 549.71228 308.74639)
+ (pt 549.56862 308.53138)
+ (pt 549.35361 308.38772)
+ (pt 549.1 308.33727)
+ (pt 548.84639 308.38772)
+ (pt 548.83054 308.39831)
+ (pt 546.8 308.39831)
+ (pt 546.44525 308.54525)
+ (pt 546.32169 308.66881)
+ (pt 546.32169 294.52781)
+ (pt 548.95475 291.89475)
+ (pt 549.10169 291.54)
+ (pt 549.10169 282.34781)
+ (pt 552.57996 278.86954)
+ (pt 552.59222 278.93116)
+ (pt 552.79114 279.22886)
+ (pt 553.08884 279.42778)
+ (pt 553.44 279.49763)
+ (pt 553.79116 279.42778)
+ (pt 554.08886 279.22886)
+ (pt 554.11888 279.18393)
+ (pt 554.16539 279.215)
+ (pt 554.02428 279.30928)
+ (pt 553.85852 279.55737)
+ (pt 553.80031 279.85)
+ (pt 553.85852 280.14263)
+ (pt 554.02428 280.39072)
+ (pt 554.16539 280.485)
+ (pt 554.02428 280.57928)
+ (pt 553.85852 280.82737)
+ (pt 553.80031 281.12)
+ (pt 553.85852 281.41263)
+ (pt 554.02428 281.66072)
+ (pt 554.16539 281.755)
+ (pt 554.02428 281.84928)
+ (pt 553.85852 282.09737)
+ (pt 553.80031 282.39)
+ (pt 553.85852 282.68263)
+ (pt 554.02428 282.93072)
+ (pt 554.16539 283.025)
+ (pt 554.02428 283.11928)
+ (pt 553.85852 283.36737)
+ (pt 553.80031 283.66)
+ (pt 553.85852 283.95263)
+ (pt 554.02428 284.20072)
+ (pt 554.16539 284.295)
+ (pt 554.02428 284.38928)
+ (pt 553.85852 284.63737)
+ (pt 553.80031 284.93)
+ (pt 553.85852 285.22263)
+ (pt 554.02428 285.47072)
+ (pt 554.16539 285.565)
+ (pt 554.02428 285.65928)
+ (pt 553.85852 285.90737)
+ (pt 553.80031 286.2)
+ (pt 553.85852 286.49263)
+ (pt 554.02428 286.74072)
+ (pt 554.16539 286.835)
+ (pt 554.04513 286.91535)
+ (pt 553.98886 286.83114)
+ (pt 553.69116 286.63222)
+ (pt 553.34 286.56237)
+ (pt 552.98884 286.63222)
+ (pt 552.69114 286.83114)
+ (pt 552.49222 287.12884)
+ (pt 552.42237 287.48)
+ (pt 552.49222 287.83116)
+ (pt 552.69114 288.12886)
+ (pt 552.98884 288.32778)
+ (pt 553.34 288.39763)
+ (pt 553.69116 288.32778)
+ (pt 553.98886 288.12886)
+ (pt 554.05437 288.03082)
+ (pt 554.27237 288.17648)
+ (pt 554.565 288.23469)
+ (pt 555.865 288.23469)
+ (pt 556.15763 288.17648)
+ (pt 556.40572 288.01072)
+ (pt 556.57148 287.76263)
+ (pt 556.62969 287.47)
+ (pt 556.57148 287.17737)
+ (pt 556.49042 287.05605)
+ (pt 556.8 287.11763)
+ (pt 557.15116 287.04778)
+ (pt 557.44886 286.84886)
+ (pt 557.64778 286.55116)
+ (pt 557.71763 286.2)
+ (pt 557.64778 285.84884)
+ (pt 557.44886 285.55114)
+ (pt 557.15116 285.35222)
+ (pt 556.8 285.28237)
+ (pt 556.49042 285.34395)
+ (pt 556.57148 285.22263)
+ (pt 556.62969 284.93)
+ (pt 556.57148 284.63737)
+ (pt 556.40572 284.38928)
+ (pt 556.26461 284.295)
+ (pt 556.40572 284.20072)
+ (pt 556.57148 283.95263)
+ (pt 556.62969 283.66)
+ (pt 556.57148 283.36737)
+ (pt 556.40572 283.11928)
+ (pt 556.26461 283.025)
+ (pt 556.40572 282.93072)
+ (pt 556.57148 282.68263)
+ (pt 556.62969 282.39)
+ (pt 556.57148 282.09737)
+ (pt 556.40572 281.84928)
+ (pt 556.26461 281.755)
+ (pt 556.40572 281.66072)
+ (pt 556.57148 281.41263)
+ (pt 556.62969 281.12)
+ (pt 556.57148 280.82737)
+ (pt 556.40572 280.57928)
+ (pt 556.26461 280.485)
+ (pt 556.405 280.3912)
+ (pt 556.59916 280.3912)
+ (pt 556.69114 280.52886)
+ (pt 556.98884 280.72778)
+ (pt 557.34 280.79763)
+ (pt 557.69116 280.72778)
+ (pt 557.98886 280.52886)
+ (pt 558.18778 280.23116)
+ (pt 558.25763 279.88)
+ (pt 558.18778 279.52884)
+ (pt 557.98886 279.23114)
+ (pt 557.69116 279.03222)
+ (pt 557.34 278.96237)
+ (pt 556.98884 279.03222)
+ (pt 556.69114 279.23114)
+ (pt 556.63925 279.3088)
+ (pt 556.405 279.3088)
+ (pt 556.26461 279.215)
+ (pt 556.40572 279.12072)
+ (pt 556.57148 278.87263)
+ (pt 556.62969 278.58)
+ (pt 556.57148 278.28737)
+ (pt 556.40572 278.03928)
+ (pt 556.15763 277.87352)
+ (pt 555.865 277.81531)
+ (pt 554.565 277.81531)
+ (pt 554.27237 277.87352)
+ (pt 554.11888 277.97607)
+ (pt 554.08886 277.93114)
+ (pt 553.79116 277.73222)
+ (pt 553.72954 277.71996)
+ (pt 563.44678 268.00272)
+ (pt 563.49222 268.23116)
+ (pt 563.69114 268.52886)
+ (pt 563.98884 268.72778)
+ (pt 564.34 268.79763)
+ (pt 564.69116 268.72778)
+ (pt 564.98886 268.52886)
+ (pt 565.18668 268.2328)
+ (pt 565.37114 268.50886)
+ (pt 565.66884 268.70778)
+ (pt 566.02 268.77763)
+ (pt 566.37116 268.70778)
+ (pt 566.66886 268.50886)
+ (pt 566.86778 268.21116)
+ (pt 566.93763 267.86)
+ (pt 566.86778 267.50884)
+ (pt 566.66886 267.21114)
+ (pt 566.37116 267.01222)
+ (pt 566.02 266.94237)
+ (pt 565.66884 267.01222)
+ (pt 565.37114 267.21114)
+ (pt 565.17332 267.5072)
+ (pt 564.98886 267.23114)
+ (pt 564.69116 267.03222)
+ (pt 564.46272 266.98678)
+ (pt 566.89475 264.55475)
+ (pt 567.01831 264.25645)
+ (pt 567.01831 266.44)
+ (pt 567.16525 266.79475)
+ (pt 572.94525 272.57475)
+ (pt 573.3 272.72169)
+ (pt 576.50087 272.72169)
+ (pt 576.66639 272.83228)
+ (pt 576.92 272.88273)
+ (pt 577.17361 272.83228)
+ (pt 577.38862 272.68862)
+ (pt 577.53228 272.47361)
+ (pt 577.58273 272.22)
+ (pt 577.53228 271.96639)
+ (pt 577.38862 271.75138)
+ (pt 577.17361 271.60772)
+ (pt 576.92 271.55727)
+ (pt 576.66639 271.60772)
+ (pt 576.50087 271.71831)
+ (pt 573.50781 271.71831)
+ (pt 572.12781 270.33831)
+ (pt 572.25214 270.31358)
+ (pt 572.51676 270.13676)
+ (pt 572.69358 269.87214)
+ (pt 572.75567 269.56)
+ (pt 572.69358 269.24786)
+ (pt 572.51676 268.98324)
+ (pt 572.25214 268.80642)
+ (pt 571.94 268.74433)
+ (pt 571.85145 268.76195)
+ (pt 571.73859 268.64909)
+ (pt 571.87676 268.55676)
+ (pt 572.05358 268.29214)
+ (pt 572.05703 268.2748)
+ (pt 572.07222 268.35116)
+ (pt 572.27114 268.64886)
+ (pt 572.56884 268.84778)
+ (pt 572.92 268.91763)
+ (pt 573.27116 268.84778)
+ (pt 573.56886 268.64886)
+ (pt 573.76778 268.35116)
+ (pt 573.83763 268.0)
+ (pt 573.76778 267.64884)
+ (pt 573.56886 267.35114)
+ (pt 573.27116 267.15222)
+ (pt 572.92 267.08237)
+ (pt 572.56884 267.15222)
+ (pt 572.27114 267.35114)
+ (pt 572.07222 267.64884)
+ (pt 572.06101 267.7052)
+ (pt 572.05358 267.66786)
+ (pt 571.87676 267.40324)
+ (pt 571.80169 267.35308)
+ (pt 571.80169 259.25994)
+ (pt 571.97 259.00804)
+ (pt 572.21912 259.38088)
+ (pt 572.68751 259.69384)
+ (pt 572.73831 259.70395)
+ (pt 572.73831 263.76)
+ (pt 572.88525 264.11475)
+ (pt 575.66888 266.89838)
+ (pt 575.70772 267.09361)
+ (pt 575.85138 267.30862)
+ (pt 576.06639 267.45228)
+ (pt 576.32 267.50273)
+ (pt 576.57361 267.45228)
+ (pt 576.78862 267.30862)
+ (pt 576.93228 267.09361)
+ (pt 576.98273 266.84)
+ (pt 576.93228 266.58639)
+ (pt 576.78862 266.37138)
+ (pt 576.57361 266.22772)
+ (pt 576.37838 266.18888)
+ (pt 576.34233 266.15283)
+ (pt 576.34862 266.14862)
+ (pt 576.49228 265.93361)
+ (pt 576.54273 265.68)
+ (pt 576.49228 265.42639)
+ (pt 576.38169 265.26087)
+ (pt 576.38169 259.66097)
+ (pt 576.80088 259.38088)
+ (pt 577.05 259.00804)
+ (pt 577.29912 259.38088)
+ (pt 577.76751 259.69384)
+ (pt 578.32 259.80374)
+ (pt 578.87249 259.69384)
+ (pt 579.34088 259.38088)
+ (pt 579.65384 258.91249)
+ (pt 579.76374 258.36)
+ (pt 579.65384 257.80751)
+ (pt 579.34088 257.33912)
+ (pt 578.96804 257.09)
+ (pt 579.34088 256.84088)
+ (pt 579.65384 256.37249)
+ (pt 579.76374 255.82)
+ (pt 579.65384 255.26751)
+ (pt 579.34088 254.79912)
+ (pt 578.87249 254.48616)
+ (pt 578.32 254.37626)
+ (pt 577.76751 254.48616)
+ (pt 577.29912 254.79912)
+ (pt 577.05 255.17196)
+ (pt 576.80088 254.79912)
+ (pt 576.33249 254.48616)
+ (pt 575.78 254.37626)
+ (pt 575.22751 254.48616)
+ (pt 574.75912 254.79912)
+ (pt 574.51 255.17196)
+ (pt 574.26088 254.79912)
+ (pt 573.79249 254.48616)
+ (pt 573.24 254.37626)
+ (pt 572.68751 254.48616)
+ (pt 572.21912 254.79912)
+ (pt 571.97 255.17196)
+ (pt 571.72088 254.79912)
+ (pt 571.25249 254.48616)
+ (pt 570.7 254.37626)
+ (pt 570.14751 254.48616)
+ (pt 569.67912 254.79912)
+ (pt 569.43 255.17196)
+ (pt 569.18088 254.79912)
+ (pt 568.71249 254.48616)
+ (pt 568.16 254.37626)
+ (pt 567.60751 254.48616)
+ (pt 567.13912 254.79912)
+ (pt 566.89 255.17196)
+ (pt 566.64088 254.79912)
+ (pt 566.17249 254.48616)
+ (pt 565.62 254.37626)
+ (pt 565.06751 254.48616)
+ (pt 564.59912 254.79912)
+ (pt 564.50383 254.94174)
+ (pt 564.50383 254.804)
+ (pt 564.47279 254.64793)
+ (pt 564.38438 254.51562)
+ (pt 564.25207 254.42721)
+ (pt 564.096 254.39617)
+ (pt 562.064 254.39617)
+ (pt 561.90793 254.42721)
+ (pt 561.77562 254.51562)
+ (pt 561.68721 254.64793)
+ (pt 561.65617 254.804)
+ (pt 561.65617 256.836)
+ (pt 561.68721 256.99207)
+ (pt 561.77562 257.12438)
+ (pt 561.90793 257.21279)
+ (pt 562.064 257.24383)
+ (pt 562.20174 257.24383)
+ (pt 562.05912 257.33912)
+ (pt 561.74616 257.80751)
+ (pt 561.63626 258.36)
+ (pt 561.74616 258.91249)
+ (pt 562.05912 259.38088)
+ (pt 562.52751 259.69384)
+ (pt 562.59815 259.70789)
+ (pt 562.72525 260.01475)
+ (pt 563.98525 261.27475)
+ (pt 564.34 261.42169)
+ (pt 566.13219 261.42169)
+ (pt 566.8075 262.097)
+ (pt 566.79361 262.08772)
+ (pt 566.54 262.03727)
+ (pt 566.28639 262.08772)
+ (pt 566.07138 262.23138)
+ (pt 565.92772 262.44639)
+ (pt 565.87727 262.7)
+ (pt 565.92772 262.95361)
+ (pt 566.03831 263.11913)
+ (pt 566.03831 263.18081)
+ (pt 565.92 263.15727)
+ (pt 565.66639 263.20772)
+ (pt 565.45138 263.35138)
+ (pt 565.30772 263.56639)
+ (pt 565.26888 263.76162)
+ (pt 552.63543 276.39507)
+ (pt 552.63543 267.8)
+ (pt 552.63544 267.8)
+ (pt 552.57946 267.51856)
+ (pt 552.42003 267.27997)
+ (pt 552.18144 267.12054)
+ (pt 551.9 267.06456)
+ (pt 551.9 267.06457)
+ (pt 535.5 267.06457)
+ (pt 535.5 267.06456)
+ (pt 535.21856 267.12054)
+ (pt 534.97997 267.27997)
+ (pt 534.82054 267.51856)
+ (pt 534.76456 267.8)
+ (pt 534.76457 267.8)
+ (pt 534.76457 277.0)
+ (pt 534.76456 277.0)
+ (pt 534.82054 277.28144)
+ (pt 534.97997 277.52003)
+ (pt 535.21856 277.67946)
+ (pt 535.5 277.73544)
+ (pt 535.5 277.73543)
+ (pt 543.41527 277.73543)
+ (pt 543.41527 277.98385)
+ (pt 543.39217 278.1)
+ (pt 543.39217 278.9)
+ (pt 543.41527 279.01615)
+ (pt 543.41527 279.96817)
+ (pt 542.676 279.96817)
+ (pt 542.51993 279.99921)
+ (pt 542.38762 280.08762)
+ (pt 542.29921 280.21993)
+ (pt 542.26817 280.376)
+ (pt 542.26817 283.424)
+ (pt 542.29921 283.58007)
+ (pt 542.38762 283.71238)
+ (pt 542.51993 283.80079)
+ (pt 542.676 283.83183)
+ (pt 543.41527 283.83183)
+ (pt 543.41527 286.04)
+ (pt 543.34744 286.04)
+ (pt 543.28838 285.95162)
+ (pt 543.15607 285.86321)
+ (pt 543.0 285.83217)
+ (pt 542.2 285.83217)
+ (pt 542.04393 285.86321)
+ (pt 541.91162 285.95162)
+ (pt 541.82321 286.08393)
+ (pt 541.79217 286.24)
+ (pt 541.79217 287.03226)
+ (pt 541.73938 286.76688)
+ (pt 541.58467 286.53533)
+ (pt 541.35312 286.38062)
+ (pt 541.08 286.32629)
+ (pt 540.68613 286.32629)
+ (pt 540.58 286.28233)
+ (pt 540.47387 286.32629)
+ (pt 540.08 286.32629)
+ (pt 539.80688 286.38062)
+ (pt 539.57533 286.53533)
+ (pt 539.42062 286.76688)
+ (pt 539.36629 287.04)
+ (pt 539.42062 287.31312)
+ (pt 539.57533 287.54467)
+ (pt 539.77039 287.675)
+ (pt 539.57533 287.80533)
+ (pt 539.42062 288.03688)
+ (pt 539.36629 288.31)
+ (pt 539.42062 288.58312)
+ (pt 539.57533 288.81467)
+ (pt 539.77039 288.945)
+ (pt 539.57533 289.07533)
+ (pt 539.42062 289.30688)
+ (pt 539.36629 289.58)
+ (pt 539.42062 289.85312)
+ (pt 539.57533 290.08467)
+ (pt 539.77039 290.215)
+ (pt 539.57533 290.34533)
+ (pt 539.42062 290.57688)
+ (pt 539.36629 290.85)
+ (pt 539.42062 291.12312)
+ (pt 539.57533 291.35467)
+ (pt 539.80688 291.50938)
+ (pt 540.08 291.56371)
+ (pt 540.47387 291.56371)
+ (pt 540.58 291.60767)
+ (pt 541.19617 291.60767)
+ (pt 541.30233 291.71383)
+ (pt 541.30233 291.71398)
+ (pt 541.21222 291.84884)
+ (pt 541.14237 292.2)
+ (pt 541.21222 292.55116)
+ (pt 541.41114 292.84886)
+ (pt 541.70884 293.04778)
+ (pt 542.06 293.11763)
+ (pt 542.41116 293.04778)
+ (pt 542.70886 292.84886)
+ (pt 542.90778 292.55116)
+ (pt 542.97763 292.2)
+ (pt 542.90778 291.84884)
+ (pt 542.81767 291.71398)
+ (pt 542.81767 291.4)
+ (pt 542.59575 290.86425)
+ (pt 542.04575 290.31425)
+ (pt 541.54902 290.10849)
+ (pt 541.58467 290.08467)
+ (pt 541.73938 289.85312)
+ (pt 541.79371 289.58)
+ (pt 541.73938 289.30688)
+ (pt 541.58467 289.07533)
+ (pt 541.57321 289.06767)
+ (pt 541.85769 289.06767)
+ (pt 541.91162 289.14838)
+ (pt 542.04393 289.23679)
+ (pt 542.2 289.26783)
+ (pt 543.0 289.26783)
+ (pt 543.15607 289.23679)
+ (pt 543.28838 289.14838)
+ (pt 543.34744 289.06)
+ (pt 543.45256 289.06)
+ (pt 543.51162 289.14838)
+ (pt 543.64393 289.23679)
+ (pt 543.8 289.26783)
+ (pt 544.6 289.26783)
+ (pt 544.75607 289.23679)
+ (pt 544.88838 289.14838)
+ (pt 544.93628 289.07669)
+ (pt 544.97114 289.12886)
+ (pt 545.26884 289.32778)
+ (pt 545.62 289.39763)
+ (pt 545.97116 289.32778)
+ (pt 546.26886 289.12886)
+ (pt 546.46778 288.83116)
+ (pt 546.53763 288.48)
+ (pt 546.46778 288.12884)
+ (pt 546.26886 287.83114)
+ (pt 545.97116 287.63222)
+ (pt 545.62 287.56237)
+ (pt 545.26884 287.63222)
+ (pt 544.97114 287.83114)
+ (pt 544.94965 287.86331)
+ (pt 544.88838 287.77162)
+ (pt 544.75607 287.68321)
+ (pt 544.6 287.65217)
+ (pt 543.8 287.65217)
+ (pt 543.64393 287.68321)
+ (pt 543.51162 287.77162)
+ (pt 543.45256 287.86)
+ (pt 543.35767 287.86)
+ (pt 543.35767 287.24)
+ (pt 543.45256 287.24)
+ (pt 543.51162 287.32838)
+ (pt 543.64393 287.41679)
+ (pt 543.8 287.44783)
+ (pt 544.6 287.44783)
+ (pt 544.75607 287.41679)
+ (pt 544.88838 287.32838)
+ (pt 544.97679 287.19607)
+ (pt 545.00783 287.04)
+ (pt 545.00783 286.24)
+ (pt 544.98473 286.12385)
+ (pt 544.98473 283.83183)
+ (pt 545.724 283.83183)
+ (pt 545.88007 283.80079)
+ (pt 546.01238 283.71238)
+ (pt 546.10079 283.58007)
+ (pt 546.13183 283.424)
+ (pt 546.13183 280.376)
+ (pt 546.10079 280.21993)
+ (pt 546.01238 280.08762)
+ (pt 545.88007 279.99921)
+ (pt 545.724 279.96817)
+ (pt 544.98473 279.96817)
+ (pt 544.98473 279.1)
+ (pt 545.05256 279.1)
+ (pt 545.11162 279.18838)
+ (pt 545.24393 279.27679)
+ (pt 545.4 279.30783)
+ (pt 546.2 279.30783)
+ (pt 546.31615 279.28473)
+ (pt 546.95448 279.28473)
+ (pt 547.04884 279.34778)
+ (pt 547.4 279.41763)
+ (pt 547.75116 279.34778)
+ (pt 548.04886 279.14886)
+ (pt 548.24778 278.85116)
+ (pt 548.31763 278.5)
+ (pt 548.24778 278.14884)
+ (pt 548.04886 277.85114)
+ (pt 547.87569 277.73543)
+ (pt 551.29507 277.73543)
+ (pt 547.20525 281.82525)
+ (pt 547.05831 282.18)
+ (pt 547.05831 290.69219)
+ (pt 544.94525 292.80525)
+ (pt 544.79831 293.16)
+ (pt 544.79831 308.68881)
+ (pt 540.15475 304.04525)
+ (pt 539.8 303.89831)
+ (pt 525.81913 303.89831)
+ (pt 525.65361 303.78772)
+ (pt 525.4 303.73727)
+ (pt 525.14639 303.78772)
+ (pt 524.93138 303.93138)
+ (pt 524.78772 304.14639)
+ (pt 524.73727 304.4)
+ (pt 524.78772 304.65361)
+ (pt 524.93138 304.86862)
+ (pt 525.14639 305.01228)
+ (pt 525.4 305.06273)
+ (pt 525.56318 305.03027)
+ (pt 525.58772 305.15361)
+ (pt 525.73138 305.36862)
+ (pt 525.94639 305.51228)
+ (pt 526.2 305.56273)
+ (pt 526.45361 305.51228)
+ (pt 526.45881 305.50881)
+ (pt 526.46772 305.55361)
+ (pt 526.58915 305.73534)
+ (pt 526.47303 305.75844)
+ (pt 526.42838 305.69162)
+ (pt 526.29607 305.60321)
+ (pt 526.14 305.57217)
+ (pt 525.34 305.57217)
+ (pt 525.18393 305.60321)
+ (pt 525.05162 305.69162)
+ (pt 524.99256 305.78)
+ (pt 524.88744 305.78)
+ (pt 524.82838 305.69162)
+ (pt 524.69607 305.60321)
+ (pt 524.54 305.57217)
+ (pt 523.74 305.57217)
+ (pt 523.58393 305.60321)
+ (pt 523.45162 305.69162)
+ (pt 523.40691 305.75854)
+ (pt 523.3 305.73727)
+ (pt 523.04639 305.78772)
+ (pt 522.83138 305.93138)
+ (pt 522.68772 306.14639)
+ (pt 522.63727 306.4)
+ (pt 522.68772 306.65361)
+ (pt 522.83138 306.86862)
+ (pt 523.04639 307.01228)
+ (pt 523.3 307.06273)
+ (pt 523.4305 307.03677)
+ (pt 523.45162 307.06838)
+ (pt 523.58393 307.15679)
+ (pt 523.74 307.18783)
+ (pt 524.54 307.18783)
+ (pt 524.69607 307.15679)
+ (pt 524.82838 307.06838)
+ (pt 524.88744 306.98)
+ (pt 524.99256 306.98)
+ (pt 525.05162 307.06838)
+ (pt 525.18393 307.15679)
+ (pt 525.34 307.18783)
+ (pt 526.14 307.18783)
+ (pt 526.29607 307.15679)
+ (pt 526.42838 307.06838)
+ (pt 526.47303 307.00156)
+ (pt 526.68 307.04273)
+ (pt 526.93361 306.99228)
+ (pt 527.14862 306.84862)
+ (pt 527.29228 306.63361)
+ (pt 527.34273 306.38)
+ (pt 527.29228 306.12639)
+ (pt 527.17085 305.94466)
+ (pt 527.33361 305.91228)
+ (pt 527.49913 305.80169)
+ (pt 535.09219 305.80169)
+ (pt 538.98389 309.69339)
+ (pt 538.80975 309.80975)
+ (pt 538.8 309.82434)
+ (pt 538.79025 309.80975)
+ (pt 538.56532 309.65946)
+ (pt 538.3 309.60668)
+ (pt 538.03468 309.65946)
+ (pt 537.80975 309.80975)
+ (pt 537.8 309.82434)
+ (pt 537.79025 309.80975)
+ (pt 537.56532 309.65946)
+ (pt 537.3 309.60668)
+ (pt 537.03468 309.65946)
+ (pt 536.80975 309.80975)
+ (pt 536.8 309.82434)
+ (pt 536.79025 309.80975)
+ (pt 536.56532 309.65946)
+ (pt 536.3 309.60668)
+ (pt 536.03468 309.65946)
+ (pt 535.80975 309.80975)
+ (pt 535.8 309.82434)
+ (pt 535.79025 309.80975)
+ (pt 535.56532 309.65946)
+ (pt 535.3 309.60668)
+ (pt 535.03468 309.65946)
+ (pt 534.80975 309.80975)
+ (pt 534.8 309.82434)
+ (pt 534.79025 309.80975)
+ (pt 534.56532 309.65946)
+ (pt 534.3 309.60668)
+ (pt 534.03468 309.65946)
+ (pt 533.80975 309.80975)
+ (pt 533.8 309.82434)
+ (pt 533.79025 309.80975)
+ (pt 533.56532 309.65946)
+ (pt 533.3 309.60668)
+ (pt 533.03468 309.65946)
+ (pt 532.80975 309.80975)
+ (pt 532.8 309.82434)
+ (pt 532.79025 309.80975)
+ (pt 532.56532 309.65946)
+ (pt 532.3 309.60668)
+ (pt 532.03468 309.65946)
+ (pt 531.80975 309.80975)
+ (pt 531.8 309.82434)
+ (pt 531.79025 309.80975)
+ (pt 531.56532 309.65946)
+ (pt 531.3 309.60668)
+ (pt 531.03468 309.65946)
+ (pt 530.80975 309.80975)
+ (pt 530.65946 310.03468)
+ (pt 530.60668 310.3)
+ (pt 530.65946 310.56532)
+ (pt 530.80975 310.79025)
+ (pt 530.82181 310.79831)
+ (pt 529.2 310.79831)
+ (pt 528.84525 310.94525)
+ (pt 528.84162 310.94888)
+ (pt 528.64639 310.98772)
+ (pt 528.43138 311.13138)
+ (pt 528.36309 311.23359)
+ (pt 527.65475 310.52525)
+ (pt 527.3 310.37831)
+ (pt 526.95842 310.37831)
+ (pt 526.91228 310.14639)
+ (pt 526.76862 309.93138)
+ (pt 526.55361 309.78772)
+ (pt 526.3 309.73727)
+ (pt 526.04639 309.78772)
+ (pt 525.83138 309.93138)
+ (pt 525.73105 310.08155)
+ (pt 521.85475 306.20525)
+ (pt 521.5 306.05831)
+ (pt 514.75444 306.05831)
+ (pt 514.71228 305.84639)
+ (pt 514.56862 305.63138)
+ (pt 514.35361 305.48772)
+ (pt 514.1 305.43727)
+ (pt 513.84639 305.48772)
+ (pt 513.63138 305.63138)
+ (pt 513.48772 305.84639)
+ (pt 513.44556 306.05831)
+ (pt 497.74 306.05831)
+ (pt 497.38525 306.20525)
+ (pt 492.06725 311.52325)
+ (pt 491.87116 311.39222)
+ (pt 491.52 311.32237)
+ (pt 491.16884 311.39222)
+ (pt 490.87114 311.59114)
+ (pt 490.67222 311.88884)
+ (pt 490.60237 312.24)
+ (pt 490.67222 312.59116)
+ (pt 490.81708 312.80796)
+ (pt 490.73192 312.93541)
+ (pt 490.68923 313.15)
+ (pt 490.68923 314.35)
+ (pt 490.73192 314.56459)
+ (pt 490.85348 314.74652)
+ (pt 491.03541 314.86808)
+ (pt 491.25 314.91077)
+ (pt 491.46459 314.86808)
+ (pt 491.5 314.84442)
+ (pt 491.53541 314.86808)
+ (pt 491.75 314.91077)
+ (pt 491.96459 314.86808)
+ (pt 492.0 314.84442)
+ (pt 492.03541 314.86808)
+ (pt 492.25 314.91077)
+ (pt 492.26404 314.90798)
+ (pt 492.39525 315.22475)
+ (pt 493.92525 316.75475)
+ (pt 494.28 316.90169)
+ (pt 497.92 316.90169)
+ (pt 498.27475 316.75475)
+ (pt 502.48781 312.54169)
+ (pt 519.49219 312.54169)
+ (pt 522.74881 315.79831)
+ (pt 521.9 315.79831)
+ (pt 521.54525 315.94525)
+ (pt 520.0 317.4905)
+ (pt 519.01475 316.50525)
+ (pt 518.66 316.35831)
+ (pt 511.6602 316.35831)
+ (pt 511.69567 316.18)
+ (pt 511.63358 315.86786)
+ (pt 511.45676 315.60324)
+ (pt 511.19214 315.42642)
+ (pt 510.88 315.36433)
+ (pt 510.56786 315.42642)
+ (pt 510.30324 315.60324)
+ (pt 510.12642 315.86786)
+ (pt 510.06433 316.18)
+ (pt 510.0998 316.35831)
+ (pt 503.27618 316.35831)
+ (pt 503.34778 316.25116)
+ (pt 503.41763 315.9)
+ (pt 503.34778 315.54884)
+ (pt 503.14886 315.25114)
+ (pt 502.85116 315.05222)
+ (pt 502.5 314.98237)
+ (pt 502.14884 315.05222)
+ (pt 501.85114 315.25114)
+ (pt 501.71074 315.46126)
+ (pt 501.6 315.43923)
+ (pt 500.4 315.43923)
+ (pt 500.18541 315.48192)
+ (pt 500.00348 315.60348)
+ (pt 499.88192 315.78541)
+ (pt 499.83923 316.0)
+ (pt 499.84659 316.037)
+ (pt 499.73335 316.0839)
+ (pt 499.7 316.07727)
+ (pt 499.44639 316.12772)
+ (pt 499.23138 316.27138)
+ (pt 499.08772 316.48639)
+ (pt 499.03727 316.74)
+ (pt 499.08772 316.99361)
+ (pt 499.23138 317.20862)
+ (pt 499.44639 317.35228)
+ (pt 499.7 317.40273)
+ (pt 499.86511 317.36988)
+ (pt 499.83923 317.5)
+ (pt 499.88192 317.71459)
+ (pt 499.90558 317.75)
+ (pt 499.88192 317.78541)
+ (pt 499.83923 318.0)
+ (pt 499.88192 318.21459)
+ (pt 499.90558 318.25)
+ (pt 499.88192 318.28541)
+ (pt 499.83923 318.5)
+ (pt 499.88192 318.71459)
+ (pt 499.90558 318.75)
+ (pt 499.88192 318.78541)
+ (pt 499.83923 319.0)
+ (pt 499.88192 319.21459)
+ (pt 499.90558 319.25)
+ (pt 499.88192 319.28541)
+ (pt 499.83923 319.5)
+ (pt 499.85858 319.59727)
+ (pt 499.79116 319.55222)
+ (pt 499.44 319.48237)
+ (pt 499.08884 319.55222)
+ (pt 498.79114 319.75114)
+ (pt 498.59222 320.04884)
+ (pt 498.52237 320.4)
+ (pt 498.59222 320.75116)
+ (pt 498.79114 321.04886)
+ (pt 499.08884 321.24778)
+ (pt 499.44 321.31763)
+ (pt 499.79116 321.24778)
+ (pt 499.8771 321.19036)
+ (pt 499.88192 321.21459)
+ (pt 499.90558 321.25)
+ (pt 499.88192 321.28541)
+ (pt 499.83923 321.5)
+ (pt 499.88192 321.71459)
+ (pt 499.90558 321.75)
+ (pt 499.88192 321.78541)
+ (pt 499.83923 322.0)
+ (pt 499.88192 322.21459)
+ (pt 499.90558 322.25)
+ (pt 499.88192 322.28541)
+ (pt 499.83923 322.5)
+ (pt 499.88192 322.71459)
+ (pt 499.90558 322.75)
+ (pt 499.88192 322.78541)
+ (pt 499.83923 323.0)
+ (pt 499.88192 323.21459)
+ (pt 499.90558 323.25)
+ (pt 499.88192 323.28541)
+ (pt 499.83923 323.5)
+ (pt 499.88192 323.71459)
+ (pt 500.00348 323.89652)
+ (pt 500.18541 324.01808)
+ (pt 500.4 324.06077)
+ (pt 500.91659 324.06077)
+ (pt 501.0 324.09532)
+ (pt 501.68173 324.09532)
+ (pt 501.85114 324.34886)
+ (pt 502.14884 324.54778)
+ (pt 502.5 324.61763)
+ (pt 502.85116 324.54778)
+ (pt 503.14886 324.34886)
+ (pt 503.34778 324.05116)
+ (pt 503.41763 323.7)
+ (pt 503.37818 323.50169)
+ (pt 505.90515 323.50169)
+ (pt 505.83114 323.55114)
+ (pt 505.63222 323.84884)
+ (pt 505.56237 324.2)
+ (pt 505.63222 324.55116)
+ (pt 505.83114 324.84886)
+ (pt 506.12884 325.04778)
+ (pt 506.48 325.11763)
+ (pt 506.83116 325.04778)
+ (pt 507.12886 324.84886)
+ (pt 507.32778 324.55116)
+ (pt 507.39763 324.2)
+ (pt 507.32778 323.84884)
+ (pt 507.12886 323.55114)
+ (pt 507.05485 323.50169)
+ (pt 507.67219 323.50169)
+ (pt 509.34525 325.17475)
+ (pt 509.42746 325.2088)
+ (pt 499.31077 325.2088)
+ (pt 499.31077 325.15)
+ (pt 499.26808 324.93541)
+ (pt 499.14652 324.75348)
+ (pt 498.96459 324.63192)
+ (pt 498.75 324.58923)
+ (pt 498.53541 324.63192)
+ (pt 498.5 324.65558)
+ (pt 498.46459 324.63192)
+ (pt 498.25 324.58923)
+ (pt 498.03541 324.63192)
+ (pt 498.0 324.65558)
+ (pt 497.96459 324.63192)
+ (pt 497.75 324.58923)
+ (pt 497.53541 324.63192)
+ (pt 497.5 324.65558)
+ (pt 497.46459 324.63192)
+ (pt 497.25 324.58923)
+ (pt 497.03541 324.63192)
+ (pt 497.0 324.65558)
+ (pt 496.96459 324.63192)
+ (pt 496.75 324.58923)
+ (pt 496.54813 324.62939)
+ (pt 496.61763 324.28)
+ (pt 496.54778 323.92884)
+ (pt 496.34886 323.63114)
+ (pt 496.05116 323.43222)
+ (pt 495.7 323.36237)
+ (pt 495.34884 323.43222)
+ (pt 495.05114 323.63114)
+ (pt 494.85222 323.92884)
+ (pt 494.78237 324.28)
+ (pt 494.84775 324.60868)
+ (pt 494.75 324.58923)
+ (pt 494.53541 324.63192)
+ (pt 494.5 324.65558)
+ (pt 494.46459 324.63192)
+ (pt 494.46098 324.6312)
+ (pt 494.41228 324.38639)
+ (pt 494.26862 324.17138)
+ (pt 494.05361 324.02772)
+ (pt 493.99701 324.01646)
+ (pt 494.01228 323.99361)
+ (pt 494.06273 323.74)
+ (pt 494.01228 323.48639)
+ (pt 493.86862 323.27138)
+ (pt 493.65361 323.12772)
+ (pt 493.4 323.07727)
+ (pt 493.14639 323.12772)
+ (pt 492.93138 323.27138)
+ (pt 492.78772 323.48639)
+ (pt 492.73727 323.74)
+ (pt 492.74819 323.7949)
+ (pt 492.7088 323.89)
+ (pt 492.7088 324.59743)
+ (pt 492.53541 324.63192)
+ (pt 492.5 324.65558)
+ (pt 492.46459 324.63192)
+ (pt 492.25 324.58923)
+ (pt 492.03541 324.63192)
+ (pt 492.0 324.65558)
+ (pt 491.96459 324.63192)
+ (pt 491.75 324.58923)
+ (pt 491.53541 324.63192)
+ (pt 491.5 324.65558)
+ (pt 491.46459 324.63192)
+ (pt 491.25 324.58923)
+ (pt 491.03541 324.63192)
+ (pt 490.85348 324.75348)
+ (pt 490.73192 324.93541)
+ (pt 490.68923 325.15)
+ (pt 490.68923 325.52887)
+ (pt 490.65342 325.56468)
+ (pt 487.69056 325.56468)
+ (pt 487.62838 325.47162)
+ (pt 487.49607 325.38321)
+ (pt 487.34 325.35217)
+ (pt 486.54 325.35217)
+ (pt 486.38393 325.38321)
+ (pt 486.25162 325.47162)
+ (pt 486.18944 325.56468)
+ (pt 485.90783 325.56468)
+ (pt 485.90783 325.53)
+ (pt 485.87679 325.37393)
+ (pt 485.78838 325.24162)
+ (pt 485.65607 325.15321)
+ (pt 485.5 325.12217)
+ (pt 484.3 325.12217)
+ (pt 484.14393 325.15321)
+ (pt 484.10384 325.18)
+ (pt 483.69616 325.18)
+ (pt 483.65607 325.15321)
+ (pt 483.5 325.12217)
+ (pt 482.3 325.12217)
+ (pt 482.14393 325.15321)
+ (pt 482.01162 325.24162)
+ (pt 481.92321 325.37393)
+ (pt 481.89217 325.53)
+ (pt 481.89217 325.58468)
+ (pt 481.86898 325.58468)
+ (pt 481.63214 325.42642)
+ (pt 481.32 325.36433)
+ (pt 481.00786 325.42642)
+ (pt 480.74324 325.60324)
+ (pt 480.56642 325.86786)
+ (pt 480.50433 326.18)
+ (pt 480.56642 326.49214)
+ (pt 480.74324 326.75676)
+ (pt 481.00786 326.93358)
+ (pt 481.32 326.99567)
+ (pt 481.63214 326.93358)
+ (pt 481.86898 326.77532)
+ (pt 481.89217 326.77532)
+ (pt 481.89217 326.83)
+ (pt 481.92321 326.98607)
+ (pt 482.01162 327.11838)
+ (pt 482.14393 327.20679)
+ (pt 482.3 327.23783)
+ (pt 483.5 327.23783)
+ (pt 483.65607 327.20679)
+ (pt 483.69616 327.18)
+ (pt 484.10384 327.18)
+ (pt 484.14393 327.20679)
+ (pt 484.3 327.23783)
+ (pt 485.5 327.23783)
+ (pt 485.65607 327.20679)
+ (pt 485.78838 327.11838)
+ (pt 485.87679 326.98607)
+ (pt 485.90783 326.83)
+ (pt 485.90783 326.75532)
+ (pt 486.18944 326.75532)
+ (pt 486.25162 326.84838)
+ (pt 486.34 326.90744)
+ (pt 486.34 327.01256)
+ (pt 486.25162 327.07162)
+ (pt 486.16321 327.20393)
+ (pt 486.13217 327.36)
+ (pt 486.13217 327.86844)
+ (pt 485.8 327.80237)
+ (pt 485.44884 327.87222)
+ (pt 485.15114 328.07114)
+ (pt 484.95222 328.36884)
+ (pt 484.88237 328.72)
+ (pt 484.95222 329.07116)
+ (pt 485.15114 329.36886)
+ (pt 485.44884 329.56778)
+ (pt 485.8 329.63763)
+ (pt 486.15116 329.56778)
+ (pt 486.44886 329.36886)
+ (pt 486.64778 329.07116)
+ (pt 486.71763 328.72)
+ (pt 486.68736 328.56783)
+ (pt 487.34 328.56783)
+ (pt 487.49607 328.53679)
+ (pt 487.62838 328.44838)
+ (pt 487.71679 328.31607)
+ (pt 487.74783 328.16)
+ (pt 487.74783 327.36)
+ (pt 487.71679 327.20393)
+ (pt 487.62838 327.07162)
+ (pt 487.54 327.01256)
+ (pt 487.54 326.90744)
+ (pt 487.62838 326.84838)
+ (pt 487.69056 326.75532)
+ (pt 490.86665 326.75532)
+ (pt 491.03541 326.86808)
+ (pt 491.24831 326.91043)
+ (pt 491.24831 330.41)
+ (pt 491.39525 330.76475)
+ (pt 496.47831 335.84781)
+ (pt 496.47831 336.03239)
+ (pt 496.42393 336.04321)
+ (pt 496.29162 336.13162)
+ (pt 496.23256 336.22)
+ (pt 496.12744 336.22)
+ (pt 496.06838 336.13162)
+ (pt 495.93607 336.04321)
+ (pt 495.78 336.01217)
+ (pt 494.98 336.01217)
+ (pt 494.82393 336.04321)
+ (pt 494.76556 336.08221)
+ (pt 494.51116 335.91222)
+ (pt 494.16 335.84237)
+ (pt 493.80884 335.91222)
+ (pt 493.51114 336.11114)
+ (pt 493.33069 336.38119)
+ (pt 492.17475 335.22525)
+ (pt 491.82 335.07831)
+ (pt 491.68749 335.07831)
+ (pt 491.65679 334.92393)
+ (pt 491.56838 334.79162)
+ (pt 491.43607 334.70321)
+ (pt 491.28 334.67217)
+ (pt 490.28 334.67217)
+ (pt 490.12393 334.70321)
+ (pt 489.99162 334.79162)
+ (pt 489.90321 334.92393)
+ (pt 489.87217 335.08)
+ (pt 489.87217 335.87831)
+ (pt 488.88749 335.87831)
+ (pt 488.85679 335.72393)
+ (pt 488.76838 335.59162)
+ (pt 488.63607 335.50321)
+ (pt 488.48 335.47217)
+ (pt 487.48 335.47217)
+ (pt 487.32393 335.50321)
+ (pt 487.19162 335.59162)
+ (pt 487.10321 335.72393)
+ (pt 487.07217 335.88)
+ (pt 487.07217 336.88)
+ (pt 487.10321 337.03607)
+ (pt 487.19162 337.16838)
+ (pt 487.32393 337.25679)
+ (pt 487.48 337.28783)
+ (pt 488.48 337.28783)
+ (pt 488.63607 337.25679)
+ (pt 488.76838 337.16838)
+ (pt 488.85679 337.03607)
+ (pt 488.88749 336.88169)
+ (pt 491.73219 336.88169)
+ (pt 492.22881 337.37831)
+ (pt 491.68749 337.37831)
+ (pt 491.65679 337.22393)
+ (pt 491.56838 337.09162)
+ (pt 491.43607 337.00321)
+ (pt 491.28 336.97217)
+ (pt 490.28 336.97217)
+ (pt 490.12393 337.00321)
+ (pt 489.99162 337.09162)
+ (pt 489.90321 337.22393)
+ (pt 489.87217 337.38)
+ (pt 489.87217 338.38)
+ (pt 489.90321 338.53607)
+ (pt 489.93143 338.57831)
+ (pt 488.88749 338.57831)
+ (pt 488.85679 338.42393)
+ (pt 488.76838 338.29162)
+ (pt 488.63607 338.20321)
+ (pt 488.48 338.17217)
+ (pt 487.48 338.17217)
+ (pt 487.32393 338.20321)
+ (pt 487.19162 338.29162)
+ (pt 487.10321 338.42393)
+ (pt 487.07217 338.58)
+ (pt 487.07217 339.58)
+ (pt 487.10321 339.73607)
+ (pt 487.19162 339.86838)
+ (pt 487.32393 339.95679)
+ (pt 487.48 339.98783)
+ (pt 488.48 339.98783)
+ (pt 488.63607 339.95679)
+ (pt 488.76838 339.86838)
+ (pt 488.85679 339.73607)
+ (pt 488.88749 339.58169)
+ (pt 489.93143 339.58169)
+ (pt 489.90321 339.62393)
+ (pt 489.87217 339.78)
+ (pt 489.87217 340.78)
+ (pt 489.90321 340.93607)
+ (pt 489.99162 341.06838)
+ (pt 490.12393 341.15679)
+ (pt 490.28 341.18783)
+ (pt 491.28 341.18783)
+ (pt 491.43607 341.15679)
+ (pt 491.56838 341.06838)
+ (pt 491.65679 340.93607)
+ (pt 491.68749 340.78169)
+ (pt 494.55219 340.78169)
+ (pt 495.04881 341.27831)
+ (pt 488.98749 341.27831)
+ (pt 488.95679 341.12393)
+ (pt 488.86838 340.99162)
+ (pt 488.73607 340.90321)
+ (pt 488.58 340.87217)
+ (pt 487.58 340.87217)
+ (pt 487.42393 340.90321)
+ (pt 487.29162 340.99162)
+ (pt 487.20321 341.12393)
+ (pt 487.17217 341.28)
+ (pt 487.17217 342.28)
+ (pt 487.20321 342.43607)
+ (pt 487.29162 342.56838)
+ (pt 487.42393 342.65679)
+ (pt 487.58 342.68783)
+ (pt 488.58 342.68783)
+ (pt 488.73607 342.65679)
+ (pt 488.86838 342.56838)
+ (pt 488.95679 342.43607)
+ (pt 488.98749 342.28169)
+ (pt 495.15219 342.28169)
+ (pt 503.40375 350.53325)
+ (pt 502.645 350.53325)
+ (pt 502.4109 350.57982)
+ (pt 502.21243 350.71243)
+ (pt 502.07982 350.9109)
+ (pt 502.03325 351.145)
+ (pt 502.07982 351.3791)
+ (pt 502.14056 351.47)
+ (pt 502.07982 351.5609)
+ (pt 502.03325 351.795)
+ (pt 502.07982 352.0291)
+ (pt 502.14056 352.12)
+ (pt 502.07982 352.2109)
+ (pt 502.03325 352.445)
+ (pt 502.07982 352.6791)
+ (pt 502.14056 352.77)
+ (pt 502.07982 352.8609)
+ (pt 502.03325 353.095)
+ (pt 502.07982 353.3291)
+ (pt 502.14056 353.42)
+ (pt 502.07982 353.5109)
+ (pt 502.03325 353.745)
+ (pt 502.07982 353.9791)
+ (pt 502.14056 354.07)
+ (pt 502.07982 354.1609)
+ (pt 502.03325 354.395)
+ (pt 502.07982 354.6291)
+ (pt 502.14056 354.72)
+ (pt 502.07982 354.8109)
+ (pt 502.03325 355.045)
+ (pt 502.07982 355.2791)
+ (pt 502.14056 355.37)
+ (pt 502.10576 355.42207)
+ (pt 502.03116 355.37222)
+ (pt 501.68 355.30237)
+ (pt 501.32884 355.37222)
+ (pt 501.03114 355.57114)
+ (pt 500.84381 355.8515)
+ (pt 500.62 355.7588)
+ (pt 500.37975 355.7588)
+ (pt 500.37679 355.74393)
+ (pt 500.28838 355.61162)
+ (pt 500.15607 355.52321)
+ (pt 500.1412 355.52025)
+ (pt 500.1412 355.20373)
+ (pt 500.17607 355.19679)
+ (pt 500.30838 355.10838)
+ (pt 500.39679 354.97607)
+ (pt 500.42783 354.82)
+ (pt 500.42783 354.02)
+ (pt 500.39679 353.86393)
+ (pt 500.30838 353.73162)
+ (pt 500.17607 353.64321)
+ (pt 500.02 353.61217)
+ (pt 499.22 353.61217)
+ (pt 499.06393 353.64321)
+ (pt 498.93162 353.73162)
+ (pt 498.87256 353.82)
+ (pt 498.76744 353.82)
+ (pt 498.70838 353.73162)
+ (pt 498.57607 353.64321)
+ (pt 498.42 353.61217)
+ (pt 497.62 353.61217)
+ (pt 497.46393 353.64321)
+ (pt 497.33162 353.73162)
+ (pt 497.32797 353.73709)
+ (pt 497.11116 353.59222)
+ (pt 496.76 353.52237)
+ (pt 496.40884 353.59222)
+ (pt 496.11114 353.79114)
+ (pt 495.91222 354.08884)
+ (pt 495.84237 354.44)
+ (pt 495.91222 354.79116)
+ (pt 496.11114 355.08886)
+ (pt 496.40884 355.28778)
+ (pt 496.76 355.35763)
+ (pt 497.11116 355.28778)
+ (pt 497.35563 355.12443)
+ (pt 497.46393 355.19679)
+ (pt 497.62 355.22783)
+ (pt 498.42 355.22783)
+ (pt 498.57607 355.19679)
+ (pt 498.70838 355.10838)
+ (pt 498.76744 355.02)
+ (pt 498.87256 355.02)
+ (pt 498.93162 355.10838)
+ (pt 499.0588 355.19336)
+ (pt 499.0588 355.52025)
+ (pt 499.04393 355.52321)
+ (pt 498.91162 355.61162)
+ (pt 498.85256 355.7)
+ (pt 498.74744 355.7)
+ (pt 498.68838 355.61162)
+ (pt 498.55607 355.52321)
+ (pt 498.4 355.49217)
+ (pt 497.6 355.49217)
+ (pt 497.44393 355.52321)
+ (pt 497.31162 355.61162)
+ (pt 497.30792 355.61715)
+ (pt 497.03116 355.43222)
+ (pt 496.68 355.36237)
+ (pt 496.32884 355.43222)
+ (pt 496.03114 355.63114)
+ (pt 495.83543 355.92404)
+ (pt 495.83543 345.2)
+ (pt 495.83544 345.2)
+ (pt 495.77946 344.91856)
+ (pt 495.62003 344.67997)
+ (pt 495.38144 344.52054)
+ (pt 495.1 344.46456)
+ (pt 495.1 344.46457)
+ (pt 482.9 344.46457)
+ (pt 482.9 344.46456)
+ (pt 482.61856 344.52054)
+ (pt 482.37997 344.67997)
+ (pt 482.22054 344.91856)
+ (pt 482.16456 345.2)
+ (pt 482.16457 345.2)
+ (pt 482.16457 363.9)
+ (pt 482.16456 363.9)
+ (pt 482.22054 364.18144)
+ (pt 482.37997 364.42003)
+ (pt 482.61856 364.57946)
+ (pt 482.9 364.63544)
+ (pt 482.9 364.63543)
+ (pt 495.1 364.63543)
+ (pt 495.1 364.63544)
+ (pt 495.38144 364.57946)
+ (pt 495.62003 364.42003)
+ (pt 495.77946 364.18144)
+ (pt 495.83544 363.9)
+ (pt 495.83543 363.9)
+ (pt 495.83543 358.70549)
+ (pt 495.89114 358.78886)
+ (pt 496.18884 358.98778)
+ (pt 496.54 359.05763)
+ (pt 496.89116 358.98778)
+ (pt 497.18886 358.78886)
+ (pt 497.22704 358.73173)
+ (pt 497.29162 358.82838)
+ (pt 497.42393 358.91679)
+ (pt 497.58 358.94783)
+ (pt 498.38 358.94783)
+ (pt 498.53607 358.91679)
+ (pt 498.66838 358.82838)
+ (pt 498.72744 358.74)
+ (pt 498.83256 358.74)
+ (pt 498.89162 358.82838)
+ (pt 499.02393 358.91679)
+ (pt 499.18 358.94783)
+ (pt 499.98 358.94783)
+ (pt 500.13607 358.91679)
+ (pt 500.25668 358.8362)
+ (pt 500.45792 358.8362)
+ (pt 500.43727 358.94)
+ (pt 500.48772 359.19361)
+ (pt 500.63138 359.40862)
+ (pt 500.84639 359.55228)
+ (pt 501.1 359.60273)
+ (pt 501.34648 359.5537)
+ (pt 501.33727 359.6)
+ (pt 501.38772 359.85361)
+ (pt 501.53138 360.06862)
+ (pt 501.74639 360.21228)
+ (pt 502.0 360.26273)
+ (pt 502.25361 360.21228)
+ (pt 502.37124 360.13368)
+ (pt 502.4109 360.16018)
+ (pt 502.645 360.20675)
+ (pt 503.745 360.20675)
+ (pt 503.9791 360.16018)
+ (pt 504.17757 360.02757)
+ (pt 504.31018 359.8291)
+ (pt 504.35675 359.595)
+ (pt 504.31018 359.3609)
+ (pt 504.24944 359.27)
+ (pt 504.31018 359.1791)
+ (pt 504.35675 358.945)
+ (pt 504.31018 358.7109)
+ (pt 504.24944 358.62)
+ (pt 504.31018 358.5291)
+ (pt 504.34426 358.35781)
+ (pt 504.50884 358.46778)
+ (pt 504.86 358.53763)
+ (pt 505.21116 358.46778)
+ (pt 505.50886 358.26886)
+ (pt 505.70778 357.97116)
+ (pt 505.72336 357.89286)
+ (pt 509.22525 361.39475)
+ (pt 509.58 361.54169)
+ (pt 517.11641 361.54169)
+ (pt 515.57547 363.08263)
+ (pt 515.46569 363.06079)
+ (pt 515.30962 363.09184)
+ (pt 515.17731 363.18025)
+ (pt 514.61163 363.74593)
+ (pt 514.52322 363.87824)
+ (pt 514.49217 364.03431)
+ (pt 514.51291 364.13856)
+ (pt 514.43856 364.21291)
+ (pt 514.33431 364.19217)
+ (pt 514.17824 364.22322)
+ (pt 514.04593 364.31163)
+ (pt 513.48025 364.87731)
+ (pt 513.39184 365.00962)
+ (pt 513.36079 365.16569)
+ (pt 513.38263 365.27549)
+ (pt 511.87905 366.77907)
+ (pt 511.70468 367.20002)
+ (pt 511.70468 367.21217)
+ (pt 511.3 367.21217)
+ (pt 511.14393 367.24321)
+ (pt 511.01162 367.33162)
+ (pt 510.92321 367.46393)
+ (pt 510.89217 367.62)
+ (pt 510.89217 369.42)
+ (pt 510.92321 369.57607)
+ (pt 511.01162 369.70838)
+ (pt 511.14393 369.79679)
+ (pt 511.3 369.82783)
+ (pt 513.3 369.82783)
+ (pt 513.45607 369.79679)
+ (pt 513.58838 369.70838)
+ (pt 513.67679 369.57607)
+ (pt 513.70783 369.42)
+ (pt 513.70783 367.62)
+ (pt 513.67679 367.46393)
+ (pt 513.58838 367.33162)
+ (pt 513.45607 367.24321)
+ (pt 513.3 367.21217)
+ (pt 513.12975 367.21217)
+ (pt 514.22455 366.11737)
+ (pt 514.33431 366.13921)
+ (pt 514.49038 366.10816)
+ (pt 514.62269 366.01975)
+ (pt 515.18837 365.45407)
+ (pt 515.27678 365.32176)
+ (pt 515.30783 365.16569)
+ (pt 515.28709 365.06144)
+ (pt 515.36144 364.98709)
+ (pt 515.46569 365.00783)
+ (pt 515.62176 364.97678)
+ (pt 515.72389 364.90854)
+ (pt 515.57831 365.26)
+ (pt 515.57831 368.33251)
+ (pt 515.42393 368.36321)
+ (pt 515.29162 368.45162)
+ (pt 515.20321 368.58393)
+ (pt 515.17217 368.74)
+ (pt 515.17217 369.74)
+ (pt 515.20321 369.89607)
+ (pt 515.29162 370.02838)
+ (pt 515.42393 370.11679)
+ (pt 515.58 370.14783)
+ (pt 516.58 370.14783)
+ (pt 516.73607 370.11679)
+ (pt 516.86838 370.02838)
+ (pt 516.95679 369.89607)
+ (pt 516.98783 369.74)
+ (pt 516.98783 368.74)
+ (pt 516.95679 368.58393)
+ (pt 516.86838 368.45162)
+ (pt 516.73607 368.36321)
+ (pt 516.58169 368.33251)
+ (pt 516.58169 365.46781)
+ (pt 522.19831 359.85119)
+ (pt 522.19831 359.93219)
+ (pt 517.62525 364.50525)
+ (pt 517.47831 364.86)
+ (pt 517.47831 370.93251)
+ (pt 517.32393 370.96321)
+ (pt 517.19162 371.05162)
+ (pt 517.10321 371.18393)
+ (pt 517.07217 371.34)
+ (pt 517.07217 372.34)
+ (pt 517.10321 372.49607)
+ (pt 517.19162 372.62838)
+ (pt 517.32393 372.71679)
+ (pt 517.48 372.74783)
+ (pt 518.48 372.74783)
+ (pt 518.63607 372.71679)
+ (pt 518.76838 372.62838)
+ (pt 518.85679 372.49607)
+ (pt 518.88783 372.34)
+ (pt 518.88783 371.34)
+ (pt 518.85679 371.18393)
+ (pt 518.76838 371.05162)
+ (pt 518.63607 370.96321)
+ (pt 518.48169 370.93251)
+ (pt 518.48169 370.04783)
+ (pt 519.38 370.04783)
+ (pt 519.53607 370.01679)
+ (pt 519.66838 369.92838)
+ (pt 519.75679 369.79607)
+ (pt 519.78783 369.64)
+ (pt 519.78783 368.64)
+ (pt 519.75679 368.48393)
+ (pt 519.66838 368.35162)
+ (pt 519.53607 368.26321)
+ (pt 519.38 368.23217)
+ (pt 519.37169 368.23217)
+ (pt 519.37169 365.67781)
+ (pt 520.07831 364.97119)
+ (pt 520.07831 370.93251)
+ (pt 519.92393 370.96321)
+ (pt 519.79162 371.05162)
+ (pt 519.70321 371.18393)
+ (pt 519.67217 371.34)
+ (pt 519.67217 372.34)
+ (pt 519.70321 372.49607)
+ (pt 519.79162 372.62838)
+ (pt 519.92393 372.71679)
+ (pt 520.08 372.74783)
+ (pt 521.08 372.74783)
+ (pt 521.23607 372.71679)
+ (pt 521.36838 372.62838)
+ (pt 521.45679 372.49607)
+ (pt 521.48783 372.34)
+ (pt 521.48783 371.34)
+ (pt 521.45679 371.18393)
+ (pt 521.36838 371.05162)
+ (pt 521.23607 370.96321)
+ (pt 521.08169 370.93251)
+ (pt 521.08169 369.94783)
+ (pt 522.08 369.94783)
+ (pt 522.23607 369.91679)
+ (pt 522.36838 369.82838)
+ (pt 522.45679 369.69607)
+ (pt 522.48783 369.54)
+ (pt 522.48783 368.84167)
+ (pt 524.19831 367.13119)
+ (pt 524.19831 369.91219)
+ (pt 523.17833 370.93217)
+ (pt 522.48 370.93217)
+ (pt 522.32393 370.96321)
+ (pt 522.19162 371.05162)
+ (pt 522.10321 371.18393)
+ (pt 522.07217 371.34)
+ (pt 522.07217 372.34)
+ (pt 522.10321 372.49607)
+ (pt 522.19162 372.62838)
+ (pt 522.32393 372.71679)
+ (pt 522.48 372.74783)
+ (pt 523.32679 372.74783)
+ (pt 517.09731 378.97731)
+ (pt 516.9388 379.36)
+ (pt 516.9388 380.19217)
+ (pt 516.83 380.19217)
+ (pt 516.67393 380.22321)
+ (pt 516.54162 380.31162)
+ (pt 516.45321 380.44393)
+ (pt 516.42217 380.6)
+ (pt 516.42217 381.8)
+ (pt 516.45321 381.95607)
+ (pt 516.48 381.99616)
+ (pt 516.48 382.40384)
+ (pt 516.45321 382.44393)
+ (pt 516.42217 382.6)
+ (pt 516.42217 383.8)
+ (pt 516.45321 383.95607)
+ (pt 516.54162 384.08838)
+ (pt 516.67393 384.17679)
+ (pt 516.83 384.20783)
+ (pt 516.9388 384.20783)
+ (pt 516.9388 384.71627)
+ (pt 516.90393 384.72321)
+ (pt 516.77162 384.81162)
+ (pt 516.68321 384.94393)
+ (pt 516.65217 385.1)
+ (pt 516.65217 385.9)
+ (pt 516.68321 386.05607)
+ (pt 516.77162 386.18838)
+ (pt 516.86 386.24744)
+ (pt 516.86 386.35256)
+ (pt 516.77162 386.41162)
+ (pt 516.68321 386.54393)
+ (pt 516.65217 386.7)
+ (pt 516.65217 387.5)
+ (pt 516.68321 387.65607)
+ (pt 516.77162 387.78838)
+ (pt 516.82338 387.82296)
+ (pt 516.81114 387.83114)
+ (pt 516.61222 388.12884)
+ (pt 516.54237 388.48)
+ (pt 516.61222 388.83116)
+ (pt 516.81114 389.12886)
+ (pt 517.10884 389.32778)
+ (pt 517.46 389.39763)
+ (pt 517.81116 389.32778)
+ (pt 518.10886 389.12886)
+ (pt 518.30778 388.83116)
+ (pt 518.37763 388.48)
+ (pt 518.30778 388.12884)
+ (pt 518.10886 387.83114)
+ (pt 518.09662 387.82296)
+ (pt 518.14838 387.78838)
+ (pt 518.23679 387.65607)
+ (pt 518.26783 387.5)
+ (pt 518.26783 386.7)
+ (pt 518.23679 386.54393)
+ (pt 518.14838 386.41162)
+ (pt 518.06 386.35256)
+ (pt 518.06 386.24744)
+ (pt 518.14838 386.18838)
+ (pt 518.23679 386.05607)
+ (pt 518.26783 385.9)
+ (pt 518.26783 385.1)
+ (pt 518.23679 384.94393)
+ (pt 518.14838 384.81162)
+ (pt 518.0212 384.72664)
+ (pt 518.0212 384.20783)
+ (pt 518.13 384.20783)
+ (pt 518.28607 384.17679)
+ (pt 518.41838 384.08838)
+ (pt 518.50679 383.95607)
+ (pt 518.53783 383.8)
+ (pt 518.53783 382.6)
+ (pt 518.50679 382.44393)
+ (pt 518.48 382.40384)
+ (pt 518.48 381.99616)
+ (pt 518.50679 381.95607)
+ (pt 518.53783 381.8)
+ (pt 518.53783 380.6)
+ (pt 518.50679 380.44393)
+ (pt 518.41838 380.31162)
+ (pt 518.28607 380.22321)
+ (pt 518.13 380.19217)
+ (pt 518.0212 380.19217)
+ (pt 518.0212 379.58418)
+ (pt 526.1588 371.44658)
+ (pt 526.1588 371.91582)
+ (pt 520.89731 377.17731)
+ (pt 520.7388 377.56)
+ (pt 520.7388 380.19217)
+ (pt 520.63 380.19217)
+ (pt 520.47393 380.22321)
+ (pt 520.34162 380.31162)
+ (pt 520.25321 380.44393)
+ (pt 520.22217 380.6)
+ (pt 520.22217 381.8)
+ (pt 520.25321 381.95607)
+ (pt 520.28 381.99616)
+ (pt 520.28 382.40384)
+ (pt 520.25321 382.44393)
+ (pt 520.22217 382.6)
+ (pt 520.22217 383.8)
+ (pt 520.25321 383.95607)
+ (pt 520.34162 384.08838)
+ (pt 520.47393 384.17679)
+ (pt 520.63 384.20783)
+ (pt 520.7388 384.20783)
+ (pt 520.7388 384.66832)
+ (pt 520.66393 384.68321)
+ (pt 520.53162 384.77162)
+ (pt 520.44321 384.90393)
+ (pt 520.41217 385.06)
+ (pt 520.41217 385.86)
+ (pt 520.44321 386.01607)
+ (pt 520.53162 386.14838)
+ (pt 520.62 386.20744)
+ (pt 520.62 386.31256)
+ (pt 520.53162 386.37162)
+ (pt 520.44321 386.50393)
+ (pt 520.41217 386.66)
+ (pt 520.41217 387.46)
+ (pt 520.44321 387.61607)
+ (pt 520.53162 387.74838)
+ (pt 520.59338 387.78965)
+ (pt 520.59114 387.79114)
+ (pt 520.39222 388.08884)
+ (pt 520.32237 388.44)
+ (pt 520.39222 388.79116)
+ (pt 520.59114 389.08886)
+ (pt 520.88884 389.28778)
+ (pt 521.24 389.35763)
+ (pt 521.59116 389.28778)
+ (pt 521.88886 389.08886)
+ (pt 522.08778 388.79116)
+ (pt 522.15763 388.44)
+ (pt 522.08778 388.08884)
+ (pt 521.88886 387.79114)
+ (pt 521.86662 387.77628)
+ (pt 521.90838 387.74838)
+ (pt 521.99679 387.61607)
+ (pt 522.02783 387.46)
+ (pt 522.02783 386.66)
+ (pt 521.99679 386.50393)
+ (pt 521.90838 386.37162)
+ (pt 521.82 386.31256)
+ (pt 521.82 386.20744)
+ (pt 521.90838 386.14838)
+ (pt 521.99679 386.01607)
+ (pt 522.02783 385.86)
+ (pt 522.02783 385.06)
+ (pt 521.99679 384.90393)
+ (pt 521.90838 384.77162)
+ (pt 521.8212 384.71337)
+ (pt 521.8212 384.20783)
+ (pt 521.93 384.20783)
+ (pt 522.08607 384.17679)
+ (pt 522.21838 384.08838)
+ (pt 522.30679 383.95607)
+ (pt 522.33783 383.8)
+ (pt 522.33783 382.6)
+ (pt 522.30679 382.44393)
+ (pt 522.28 382.40384)
+ (pt 522.28 381.99616)
+ (pt 522.30679 381.95607)
+ (pt 522.33783 381.8)
+ (pt 522.33783 380.6)
+ (pt 522.30679 380.44393)
+ (pt 522.21838 380.31162)
+ (pt 522.08607 380.22321)
+ (pt 521.93 380.19217)
+ (pt 521.8212 380.19217)
+ (pt 521.8212 377.78418)
+ (pt 526.6588 372.94658)
+ (pt 526.6588 374.71582)
+ (pt 524.69731 376.67731)
+ (pt 524.5388 377.06)
+ (pt 524.5388 380.19217)
+ (pt 524.43 380.19217)
+ (pt 524.27393 380.22321)
+ (pt 524.14162 380.31162)
+ (pt 524.05321 380.44393)
+ (pt 524.02217 380.6)
+ (pt 524.02217 381.8)
+ (pt 524.05321 381.95607)
+ (pt 524.08 381.99616)
+ (pt 524.08 382.40384)
+ (pt 524.05321 382.44393)
+ (pt 524.02217 382.6)
+ (pt 524.02217 383.8)
+ (pt 524.05321 383.95607)
+ (pt 524.14162 384.08838)
+ (pt 524.27393 384.17679)
+ (pt 524.43 384.20783)
+ (pt 524.5188 384.20783)
+ (pt 524.5188 384.70025)
+ (pt 524.50393 384.70321)
+ (pt 524.37162 384.79162)
+ (pt 524.28321 384.92393)
+ (pt 524.25217 385.08)
+ (pt 524.25217 385.88)
+ (pt 524.28321 386.03607)
+ (pt 524.37162 386.16838)
+ (pt 524.46 386.22744)
+ (pt 524.46 386.33256)
+ (pt 524.37162 386.39162)
+ (pt 524.28321 386.52393)
+ (pt 524.25217 386.68)
+ (pt 524.25217 387.48)
+ (pt 524.28321 387.63607)
+ (pt 524.37162 387.76838)
+ (pt 524.40474 387.79051)
+ (pt 524.27222 387.98884)
+ (pt 524.20237 388.34)
+ (pt 524.27222 388.69116)
+ (pt 524.47114 388.98886)
+ (pt 524.76884 389.18778)
+ (pt 525.12 389.25763)
+ (pt 525.47116 389.18778)
+ (pt 525.76886 388.98886)
+ (pt 525.96778 388.69116)
+ (pt 526.03763 388.34)
+ (pt 525.96778 387.98884)
+ (pt 525.78443 387.71444)
+ (pt 525.83679 387.63607)
+ (pt 525.86783 387.48)
+ (pt 525.86783 386.68)
+ (pt 525.83679 386.52393)
+ (pt 525.74838 386.39162)
+ (pt 525.66 386.33256)
+ (pt 525.66 386.22744)
+ (pt 525.74838 386.16838)
+ (pt 525.83679 386.03607)
+ (pt 525.86783 385.88)
+ (pt 525.86783 385.08)
+ (pt 525.83679 384.92393)
+ (pt 525.74838 384.79162)
+ (pt 525.61607 384.70321)
+ (pt 525.6012 384.70025)
+ (pt 525.6012 384.20783)
+ (pt 525.73 384.20783)
+ (pt 525.88607 384.17679)
+ (pt 526.01838 384.08838)
+ (pt 526.10679 383.95607)
+ (pt 526.13783 383.8)
+ (pt 526.13783 382.6)
+ (pt 526.10679 382.44393)
+ (pt 526.08 382.40384)
+ (pt 526.08 381.99616)
+ (pt 526.10679 381.95607)
+ (pt 526.13783 381.8)
+ (pt 526.13783 380.6)
+ (pt 526.10679 380.44393)
+ (pt 526.01838 380.31162)
+ (pt 525.88607 380.22321)
+ (pt 525.73 380.19217)
+ (pt 525.6212 380.19217)
+ (pt 525.6212 377.28418)
+ (pt 527.58269 375.32269)
+ (pt 527.7412 374.94)
+ (pt 527.7412 372.80658)
+ (pt 528.6388 373.70418)
+ (pt 528.6388 380.19217)
+ (pt 528.53 380.19217)
+ (pt 528.37393 380.22321)
+ (pt 528.24162 380.31162)
+ (pt 528.15321 380.44393)
+ (pt 528.12217 380.6)
+ (pt 528.12217 381.8)
+ (pt 528.15321 381.95607)
+ (pt 528.18 381.99616)
+ (pt 528.18 382.40384)
+ (pt 528.15321 382.44393)
+ (pt 528.12217 382.6)
+ (pt 528.12217 383.8)
+ (pt 528.15321 383.95607)
+ (pt 528.24162 384.08838)
+ (pt 528.37393 384.17679)
+ (pt 528.53 384.20783)
+ (pt 528.6388 384.20783)
+ (pt 528.6388 384.76664)
+ (pt 528.51162 384.85162)
+ (pt 528.42321 384.98393)
+ (pt 528.39217 385.14)
+ (pt 528.39217 385.94)
+ (pt 528.42321 386.09607)
+ (pt 528.51162 386.22838)
+ (pt 528.6 386.28744)
+ (pt 528.6 386.39256)
+ (pt 528.51162 386.45162)
+ (pt 528.42321 386.58393)
+ (pt 528.39217 386.74)
+ (pt 528.39217 387.54)
+ (pt 528.42321 387.69607)
+ (pt 528.49889 387.80933)
+ (pt 528.35222 388.02884)
+ (pt 528.28237 388.38)
+ (pt 528.35222 388.73116)
+ (pt 528.55114 389.02886)
+ (pt 528.84884 389.22778)
+ (pt 529.2 389.29763)
+ (pt 529.55116 389.22778)
+ (pt 529.84886 389.02886)
+ (pt 530.04778 388.73116)
+ (pt 530.11763 388.38)
+ (pt 530.04778 388.02884)
+ (pt 529.90111 387.80933)
+ (pt 529.97679 387.69607)
+ (pt 530.00783 387.54)
+ (pt 530.00783 386.74)
+ (pt 529.97679 386.58393)
+ (pt 529.88838 386.45162)
+ (pt 529.8 386.39256)
+ (pt 529.8 386.28744)
+ (pt 529.88838 386.22838)
+ (pt 529.97679 386.09607)
+ (pt 530.00783 385.94)
+ (pt 530.00783 385.14)
+ (pt 529.97679 384.98393)
+ (pt 529.88838 384.85162)
+ (pt 529.75607 384.76321)
+ (pt 529.7212 384.75627)
+ (pt 529.7212 384.20783)
+ (pt 529.83 384.20783)
+ (pt 529.98607 384.17679)
+ (pt 530.11838 384.08838)
+ (pt 530.20679 383.95607)
+ (pt 530.23783 383.8)
+ (pt 530.23783 382.6)
+ (pt 530.20679 382.44393)
+ (pt 530.18 382.40384)
+ (pt 530.18 381.99616)
+ (pt 530.20679 381.95607)
+ (pt 530.23783 381.8)
+ (pt 530.23783 380.6)
+ (pt 530.20679 380.44393)
+ (pt 530.11838 380.31162)
+ (pt 529.98607 380.22321)
+ (pt 529.83 380.19217)
+ (pt 529.7212 380.19217)
+ (pt 529.7212 373.48)
+ (pt 529.56269 373.09731)
+ (pt 528.2412 371.77582)
+ (pt 528.2412 359.43518)
+ (pt 528.44639 359.57228)
+ (pt 528.7 359.62273)
+ (pt 528.95361 359.57228)
+ (pt 529.16862 359.42862)
+ (pt 529.21668 359.35669)
+ (pt 529.25138 359.40862)
+ (pt 529.46639 359.55228)
+ (pt 529.72 359.60273)
+ (pt 529.97361 359.55228)
+ (pt 530.18862 359.40862)
+ (pt 530.33228 359.19361)
+ (pt 530.38273 358.94)
+ (pt 530.33446 358.69736)
+ (pt 530.4659 358.78518)
+ (pt 530.7 358.83175)
+ (pt 530.9341 358.78518)
+ (pt 531.07943 358.68808)
+ (pt 531.03727 358.9)
+ (pt 531.08772 359.15361)
+ (pt 531.23138 359.36862)
+ (pt 531.44639 359.51228)
+ (pt 531.7 359.56273)
+ (pt 531.95361 359.51228)
+ (pt 532.16862 359.36862)
+ (pt 532.31228 359.15361)
+ (pt 532.36273 358.9)
+ (pt 532.32057 358.68808)
+ (pt 532.4659 358.78518)
+ (pt 532.7 358.83175)
+ (pt 532.9341 358.78518)
+ (pt 533.13257 358.65257)
+ (pt 533.2 358.55165)
+ (pt 533.26743 358.65257)
+ (pt 533.4659 358.78518)
+ (pt 533.7 358.83175)
+ (pt 533.9341 358.78518)
+ (pt 534.13257 358.65257)
+ (pt 534.26518 358.4541)
+ (pt 534.31175 358.22)
+ (pt 534.26518 357.9859)
+ (pt 534.13257 357.78743)
+ (pt 534.03165 357.72)
+ (pt 534.13257 357.65257)
+ (pt 534.26518 357.4541)
+ (pt 534.30346 357.26169)
+ (pt 540.59219 357.26169)
+ (pt 543.58525 360.25475)
+ (pt 543.94 360.40169)
+ (pt 545.38087 360.40169)
+ (pt 545.54639 360.51228)
+ (pt 545.8 360.56273)
+ (pt 546.05361 360.51228)
+ (pt 546.26862 360.36862)
+ (pt 546.41228 360.15361)
+ (pt 546.46273 359.9)
+ (pt 546.43919 359.78169)
+ (pt 547.67582 359.78169)
+ (pt 547.63138 359.81138)
+ (pt 547.48772 360.02639)
+ (pt 547.43727 360.28)
+ (pt 547.48772 360.53361)
+ (pt 547.63138 360.74862)
+ (pt 547.84639 360.89228)
+ (pt 548.1 360.94273)
+ (pt 548.21966 360.91893)
+ (pt 548.13482 361.0459)
+ (pt 548.08825 361.28)
+ (pt 548.13482 361.5141)
+ (pt 548.26743 361.71257)
+ (pt 548.4659 361.84518)
+ (pt 548.7 361.89175)
+ (pt 548.9341 361.84518)
+ (pt 549.07943 361.74808)
+ (pt 549.03727 361.96)
+ (pt 549.08772 362.21361)
+ (pt 549.23138 362.42862)
+ (pt 549.44639 362.57228)
+ (pt 549.7 362.62273)
+ (pt 549.95361 362.57228)
+ (pt 550.16862 362.42862)
+ (pt 550.31228 362.21361)
+ (pt 550.36273 361.96)
+ (pt 550.32501 361.77039)
+ (pt 550.50276 361.94814)
+ (pt 550.52772 362.07361)
+ (pt 550.67138 362.28862)
+ (pt 550.88639 362.43228)
+ (pt 551.14 362.48273)
+ (pt 551.39361 362.43228)
+ (pt 551.60862 362.28862)
+ (pt 551.61871 362.27352)
+ (pt 551.82639 362.41228)
+ (pt 552.08 362.46273)
+ (pt 552.33361 362.41228)
+ (pt 552.54862 362.26862)
+ (pt 552.63673 362.13676)
+ (pt 552.67138 362.18862)
+ (pt 552.88639 362.33228)
+ (pt 553.14 362.38273)
+ (pt 553.39361 362.33228)
+ (pt 553.60862 362.18862)
+ (pt 553.64 362.14165)
+ (pt 553.67138 362.18862)
+ (pt 553.88639 362.33228)
+ (pt 554.14 362.38273)
+ (pt 554.39361 362.33228)
+ (pt 554.60862 362.18862)
+ (pt 554.62332 362.16662)
+ (pt 554.65138 362.20862)
+ (pt 554.86639 362.35228)
+ (pt 555.12 362.40273)
+ (pt 555.37361 362.35228)
+ (pt 555.58862 362.20862)
+ (pt 555.66 362.10179)
+ (pt 555.73138 362.20862)
+ (pt 555.94639 362.35228)
+ (pt 556.2 362.40273)
+ (pt 556.45361 362.35228)
+ (pt 556.66862 362.20862)
+ (pt 556.68332 362.18662)
+ (pt 556.71138 362.22862)
+ (pt 556.92639 362.37228)
+ (pt 557.18 362.42273)
+ (pt 557.43361 362.37228)
+ (pt 557.64862 362.22862)
+ (pt 557.71 362.13676)
+ (pt 557.77138 362.22862)
+ (pt 557.98639 362.37228)
+ (pt 558.17982 362.41076)
+ (pt 558.22249 362.51376)
+ (pt 558.21727 362.54)
+ (pt 558.26772 362.79361)
+ (pt 558.41138 363.00862)
+ (pt 558.62639 363.15228)
+ (pt 558.88 363.20273)
+ (pt 559.03479 363.17194)
+ (pt 559.01727 363.26)
+ (pt 559.06772 363.51361)
+ (pt 559.21138 363.72862)
+ (pt 559.42639 363.87228)
+ (pt 559.68 363.92273)
+ (pt 559.93361 363.87228)
+ (pt 560.14862 363.72862)
+ (pt 560.1588 363.71338)
+ (pt 560.1588 364.14001)
+ (pt 560.08772 364.24639)
+ (pt 560.03727 364.5)
+ (pt 560.08772 364.75361)
+ (pt 560.23138 364.96862)
+ (pt 560.44639 365.11228)
+ (pt 560.7 365.16273)
+ (pt 560.95361 365.11228)
+ (pt 561.16862 364.96862)
+ (pt 561.2 364.92165)
+ (pt 561.23138 364.96862)
+ (pt 561.44639 365.11228)
+ (pt 561.7 365.16273)
+ (pt 561.95361 365.11228)
+ (pt 562.16862 364.96862)
+ (pt 562.31228 364.75361)
+ (pt 562.36273 364.5)
+ (pt 562.31228 364.24639)
+ (pt 562.2412 364.14001)
+ (pt 562.2412 361.67331)
+ (pt 562.26743 361.71257)
+ (pt 562.4659 361.84518)
+ (pt 562.50822 361.8536)
+ (pt 562.58276 361.92814)
+ (pt 562.60772 362.05361)
+ (pt 562.75138 362.26862)
+ (pt 562.96639 362.41228)
+ (pt 563.22 362.46273)
+ (pt 563.47361 362.41228)
+ (pt 563.68862 362.26862)
+ (pt 563.71668 362.22662)
+ (pt 563.73138 362.24862)
+ (pt 563.94639 362.39228)
+ (pt 564.2 362.44273)
+ (pt 564.45361 362.39228)
+ (pt 564.66862 362.24862)
+ (pt 564.74336 362.13676)
+ (pt 564.79138 362.20862)
+ (pt 565.00639 362.35228)
+ (pt 565.26 362.40273)
+ (pt 565.51361 362.35228)
+ (pt 565.72862 362.20862)
+ (pt 565.87228 361.99361)
+ (pt 565.90048 361.85187)
+ (pt 565.9341 361.84518)
+ (pt 566.04731 361.76954)
+ (pt 566.03727 361.82)
+ (pt 566.08772 362.07361)
+ (pt 566.23138 362.28862)
+ (pt 566.44639 362.43228)
+ (pt 566.7 362.48273)
+ (pt 566.95361 362.43228)
+ (pt 567.16862 362.28862)
+ (pt 567.2 362.24165)
+ (pt 567.23138 362.28862)
+ (pt 567.44639 362.43228)
+ (pt 567.7 362.48273)
+ (pt 567.95361 362.43228)
+ (pt 568.16862 362.28862)
+ (pt 568.2 362.24165)
+ (pt 568.23138 362.28862)
+ (pt 568.44639 362.43228)
+ (pt 568.7 362.48273)
+ (pt 568.95361 362.43228)
+ (pt 569.16862 362.28862)
+ (pt 569.31228 362.07361)
+ (pt 569.36273 361.82)
+ (pt 569.35269 361.76954)
+ (pt 569.4659 361.84518)
+ (pt 569.7 361.89175)
+ (pt 569.9341 361.84518)
+ (pt 570.13257 361.71257)
+ (pt 570.26518 361.5141)
+ (pt 570.31175 361.28)
+ (pt 570.26518 361.0459)
+ (pt 570.2482 361.02049)
+ (pt 570.36 361.04273)
+ (pt 570.61361 360.99228)
+ (pt 570.82862 360.84862)
+ (pt 570.97228 360.63361)
+ (pt 570.98509 360.56923)
+ (pt 574.84793 364.43207)
+ (pt 575.2 364.5779)
+ (pt 580.23376 364.5779)
+ (pt 581.2621 365.60624)
+ (pt 581.2621 366.98751)
+ (pt 581.14395 367.16433)
+ (pt 581.09319 367.4195)
+ (pt 581.09319 368.9435)
+ (pt 581.14395 369.19867)
+ (pt 581.2885 369.415)
+ (pt 581.50483 369.55955)
+ (pt 581.76 369.61031)
+ (pt 582.01517 369.55955)
+ (pt 582.16005 369.46274)
+ (pt 582.30493 369.55955)
+ (pt 582.5601 369.61031)
+ (pt 582.81527 369.55955)
+ (pt 582.96015 369.46274)
+ (pt 583.10503 369.55955)
+ (pt 583.3602 369.61031)
+ (pt 583.61537 369.55955)
+ (pt 583.76025 369.46274)
+ (pt 583.90513 369.55955)
+ (pt 584.1603 369.61031)
+ (pt 584.41547 369.55955)
+ (pt 584.56035 369.46274)
+ (pt 584.70523 369.55955)
+ (pt 584.9604 369.61031)
+ (pt 585.21557 369.55955)
+ (pt 585.36045 369.46274)
+ (pt 585.50533 369.55955)
+ (pt 585.7605 369.61031)
+ (pt 586.01567 369.55955)
+ (pt 586.16055 369.46274)
+ (pt 586.30543 369.55955)
+ (pt 586.5606 369.61031)
+ (pt 586.81577 369.55955)
+ (pt 586.96065 369.46274)
+ (pt 587.10553 369.55955)
+ (pt 587.3607 369.61031)
+ (pt 587.61587 369.55955)
+ (pt 587.76075 369.46274)
+ (pt 587.90563 369.55955)
+ (pt 588.1608 369.61031)
+ (pt 588.41597 369.55955)
+ (pt 588.56085 369.46274)
+ (pt 588.70573 369.55955)
+ (pt 588.93696 369.60555)
+ (pt 588.88237 369.88)
+ (pt 588.95222 370.23116)
+ (pt 589.15114 370.52886)
+ (pt 589.44884 370.72778)
+ (pt 589.8 370.79763)
+ (pt 590.15116 370.72778)
+ (pt 590.44886 370.52886)
+ (pt 590.64778 370.23116)
+ (pt 590.71763 369.88)
+ (pt 590.66007 369.59062)
+ (pt 590.81627 369.55955)
+ (pt 590.96115 369.46274)
+ (pt 591.10603 369.55955)
+ (pt 591.3612 369.61031)
+ (pt 591.61637 369.55955)
+ (pt 591.76125 369.46274)
+ (pt 591.90613 369.55955)
+ (pt 592.1613 369.61031)
+ (pt 592.41647 369.55955)
+ (pt 592.56135 369.46274)
+ (pt 592.70623 369.55955)
+ (pt 592.9614 369.61031)
+ (pt 593.21657 369.55955)
+ (pt 593.36145 369.46274)
+ (pt 593.50633 369.55955)
+ (pt 593.7615 369.61031)
+ (pt 594.01667 369.55955)
+ (pt 594.16155 369.46274)
+ (pt 594.30643 369.55955)
+ (pt 594.5616 369.61031)
+ (pt 594.81677 369.55955)
+ (pt 594.96165 369.46274)
+ (pt 595.10653 369.55955)
+ (pt 595.3617 369.61031)
+ (pt 595.61687 369.55955)
+ (pt 595.76175 369.46274)
+ (pt 595.90663 369.55955)
+ (pt 596.1618 369.61031)
+ (pt 596.41697 369.55955)
+ (pt 596.56185 369.46274)
+ (pt 596.70673 369.55955)
+ (pt 596.9619 369.61031)
+ (pt 597.21707 369.55955)
+ (pt 597.36195 369.46274)
+ (pt 597.50683 369.55955)
+ (pt 597.762 369.61031)
+ (pt 598.01717 369.55955)
+ (pt 598.16205 369.46274)
+ (pt 598.30693 369.55955)
+ (pt 598.5621 369.61031)
+ (pt 598.81727 369.55955)
+ (pt 599.0336 369.415)
+ (pt 599.17815 369.19867)
+ (pt 599.22891 368.9435)
+ (pt 599.22891 367.4195)
+ (pt 599.17815 367.16433)
+ (pt 599.06 366.98751)
+ (pt 599.06 366.7821)
+ (pt 598.91417 366.43003)
+ (pt 591.09052 358.60638)
+ (pt 591.28778 358.31116)
+ (pt 591.35763 357.96)
+ (pt 591.28778 357.60884)
+ (pt 591.2765 357.59196)
+ (pt 591.3612 357.60881)
+ (pt 591.61637 357.55805)
+ (pt 591.76125 357.46124)
+ (pt 591.90613 357.55805)
+ (pt 592.1613 357.60881)
+ (pt 592.41647 357.55805)
+ (pt 592.56135 357.46124)
+ (pt 592.70623 357.55805)
+ (pt 592.9614 357.60881)
+ (pt 593.21657 357.55805)
+ (pt 593.36145 357.46124)
+ (pt 593.50633 357.55805)
+ (pt 593.7615 357.60881)
+ (pt 594.01667 357.55805)
+ (pt 594.16155 357.46124)
+ (pt 594.30643 357.55805)
+ (pt 594.5616 357.60881)
+ (pt 594.81677 357.55805)
+ (pt 594.96165 357.46124)
+ (pt 595.10653 357.55805)
+ (pt 595.3617 357.60881)
+ (pt 595.61687 357.55805)
+ (pt 595.76175 357.46124)
+ (pt 595.90663 357.55805)
+ (pt 596.1618 357.60881)
+ (pt 596.41697 357.55805)
+ (pt 596.56185 357.46124)
+ (pt 596.70673 357.55805)
+ (pt 596.9619 357.60881)
+ (pt 597.21707 357.55805)
+ (pt 597.36195 357.46124)
+ (pt 597.50683 357.55805)
+ (pt 597.762 357.60881)
+ (pt 598.01717 357.55805)
+ (pt 598.16205 357.46124)
+ (pt 598.30693 357.55805)
+ (pt 598.5621 357.60881)
+ (pt 598.81727 357.55805)
+ (pt 599.0336 357.4135)
+ (pt 599.17815 357.19717)
+ (pt 599.22891 356.942)
+ (pt 599.22891 355.418)
+ (pt 599.17815 355.16283)
+ (pt 599.06 354.98601)
+ (pt 599.06 354.6221)
+ (pt 598.91417 354.27003)
+ (pt 595.70758 351.06344)
+ (pt 595.98 351.11763)
+ (pt 596.33116 351.04778)
+ (pt 596.62886 350.84886)
+ (pt 596.82778 350.55116)
+ (pt 596.89763 350.2)
+ (pt 596.82778 349.84884)
+ (pt 596.62886 349.55114)
+ (pt 596.33116 349.35222)
+ (pt 595.98 349.28237)
+ (pt 595.62884 349.35222)
+ (pt 595.33114 349.55114)
+ (pt 595.13222 349.84884)
+ (pt 595.06237 350.2)
+ (pt 595.11656 350.47242)
+ (pt 594.06262 349.41848)
+ (pt 594.36 349.47763)
+ (pt 594.71116 349.40778)
+ (pt 595.00886 349.20886)
+ (pt 595.20778 348.91116)
+ (pt 595.27763 348.56)
+ (pt 595.20778 348.20884)
+ (pt 595.00886 347.91114)
+ (pt 594.71116 347.71222)
+ (pt 594.36 347.64237)
+ (pt 594.00884 347.71222)
+ (pt 593.71114 347.91114)
+ (pt 593.51222 348.20884)
+ (pt 593.44237 348.56)
+ (pt 593.50152 348.85738)
+ (pt 586.57207 341.92793)
+ (pt 586.22 341.7821)
+ (pt 573.29988 341.7821)
+ (pt 573.33228 341.73361)
+ (pt 573.38273 341.48)
+ (pt 573.33228 341.22639)
+ (pt 573.18862 341.01138)
+ (pt 572.97361 340.86772)
+ (pt 572.8425 340.84164)
+ (pt 574.02624 339.6579)
+ (pt 588.54 339.6579)
+ (pt 588.89207 339.51207)
+ (pt 592.03417 336.36997)
+ (pt 592.18 336.0179)
+ (pt 592.18 335.15556)
+ (pt 592.27815 335.00867)
+ (pt 592.32891 334.7535)
+ (pt 592.32891 333.2295)
+ (pt 592.27815 332.97433)
+ (pt 592.1336 332.758)
+ (pt 591.91727 332.61345)
+ (pt 591.6621 332.56269)
+ (pt 591.40693 332.61345)
+ (pt 591.26205 332.71026)
+ (pt 591.11717 332.61345)
+ (pt 590.862 332.56269)
+ (pt 590.60683 332.61345)
+ (pt 590.46195 332.71026)
+ (pt 590.31707 332.61345)
+ (pt 590.0619 332.56269)
+ (pt 589.80673 332.61345)
+ (pt 589.66185 332.71026)
+ (pt 589.51697 332.61345)
+ (pt 589.2618 332.56269)
+ (pt 589.00663 332.61345)
+ (pt 588.86175 332.71026)
+ (pt 588.71687 332.61345)
+ (pt 588.4617 332.56269)
+ (pt 588.20653 332.61345)
+ (pt 588.06165 332.71026)
+ (pt 587.91677 332.61345)
+ (pt 587.6616 332.56269)
+ (pt 587.40643 332.61345)
+ (pt 587.26155 332.71026)
+ (pt 587.11667 332.61345)
+ (pt 586.8615 332.56269)
+ (pt 586.60633 332.61345)
+ (pt 586.46145 332.71026)
+ (pt 586.31657 332.61345)
+ (pt 586.0614 332.56269)
+ (pt 585.80623 332.61345)
+ (pt 585.7792 332.63151)
+ (pt 585.7792 332.2413)
+ (pt 585.63337 331.88923)
+ (pt 583.55204 329.8079)
+ (pt 585.35 329.8079)
+ (pt 585.70207 329.66207)
+ (pt 592.03417 323.32997)
+ (pt 592.0571 323.27462)
+ (pt 592.1336 323.2235)
+ (pt 592.27815 323.00717)
+ (pt 592.32891 322.752)
+ (pt 592.32891 321.228)
+ (pt 592.27815 320.97283)
+ (pt 592.1336 320.7565)
+ (pt 591.91727 320.61195)
+ (pt 591.6621 320.56119)
+ (pt 591.40693 320.61195)
+ (pt 591.26205 320.70876)
+ (pt 591.11717 320.61195)
+ (pt 590.862 320.56119)
+ (pt 590.60683 320.61195)
+ (pt 590.46195 320.70876)
+ (pt 590.31707 320.61195)
+ (pt 590.0619 320.56119)
+ (pt 589.80673 320.61195)
+ (pt 589.66185 320.70876)
+ (pt 589.51697 320.61195)
+ (pt 589.2618 320.56119)
+ (pt 589.00663 320.61195)
+ (pt 588.86175 320.70876)
+ (pt 588.71687 320.61195)
+ (pt 588.4617 320.56119)
+ (pt 588.20653 320.61195)
+ (pt 588.06165 320.70876)
+ (pt 587.91677 320.61195)
+ (pt 587.6616 320.56119)
+ (pt 587.40643 320.61195)
+ (pt 587.26155 320.70876)
+ (pt 587.11667 320.61195)
+ (pt 586.8615 320.56119)
+ (pt 586.60633 320.61195)
+ (pt 586.46145 320.70876)
+ (pt 586.31657 320.61195)
+ (pt 586.0614 320.56119)
+ (pt 585.80623 320.61195)
+ (pt 585.66135 320.70876)
+ (pt 585.51647 320.61195)
+ (pt 585.2613 320.56119)
+ (pt 585.00613 320.61195)
+ (pt 584.86125 320.70876)
+ (pt 584.71637 320.61195)
+ (pt 584.4612 320.56119)
+ (pt 584.20603 320.61195)
+ (pt 584.06115 320.70876)
+ (pt 583.92374 320.61694)
+ (pt 584.00778 320.49116)
+ (pt 584.07763 320.14)
+ (pt 584.00778 319.78884)
+ (pt 583.80886 319.49114)
+ (pt 583.51116 319.29222)
+ (pt 583.16 319.22237)
+ (pt 582.80884 319.29222)
+ (pt 582.51114 319.49114)
+ (pt 582.31222 319.78884)
+ (pt 582.24237 320.14)
+ (pt 582.27255 320.29175)
+ (pt 582.21156 320.439)
+ (pt 582.21156 320.59116)
+ (pt 582.0609 320.56119)
+ (pt 581.80573 320.61195)
+ (pt 581.66085 320.70876)
+ (pt 581.51597 320.61195)
+ (pt 581.2608 320.56119)
+ (pt 581.00563 320.61195)
+ (pt 580.86075 320.70876)
+ (pt 580.71587 320.61195)
+ (pt 580.4607 320.56119)
+ (pt 580.20553 320.61195)
+ (pt 580.06065 320.70876)
+ (pt 579.91577 320.61195)
+ (pt 579.6606 320.56119)
+ (pt 579.40543 320.61195)
+ (pt 579.26055 320.70876)
+ (pt 579.11567 320.61195)
+ (pt 578.8605 320.56119)
+ (pt 578.60533 320.61195)
+ (pt 578.46045 320.70876)
+ (pt 578.31557 320.61195)
+ (pt 578.0604 320.56119)
+ (pt 577.80523 320.61195)
+ (pt 577.66035 320.70876)
+ (pt 577.51547 320.61195)
+ (pt 577.2603 320.56119)
+ (pt 577.00513 320.61195)
+ (pt 576.86025 320.70876)
+ (pt 576.71537 320.61195)
+ (pt 576.4602 320.56119)
+ (pt 576.20503 320.61195)
+ (pt 576.06015 320.70876)
+ (pt 575.91527 320.61195)
+ (pt 575.6601 320.56119)
+ (pt 575.40493 320.61195)
+ (pt 575.26005 320.70876)
+ (pt 575.11517 320.61195)
+ (pt 574.86 320.56119)
+ (pt 574.60483 320.61195)
+ (pt 574.3885 320.7565)
+ (pt 574.24395 320.97283)
+ (pt 574.19319 321.228)
+ (pt 574.19319 322.752)
+ (pt 574.24395 323.00717)
+ (pt 574.30994 323.10592)
+ (pt 574.30376 323.1121)
+ (pt 566.99 323.1121)
+ (pt 566.63793 323.25793)
+ (pt 552.84793 337.04793)
+ (pt 552.7021 337.4)
+ (pt 552.7021 339.66867)
+ (pt 552.7 339.66825)
+ (pt 552.4659 339.71482)
+ (pt 552.26743 339.84743)
+ (pt 552.2 339.94835)
+ (pt 552.13257 339.84743)
+ (pt 551.9341 339.71482)
+ (pt 551.89178 339.7064)
+ (pt 551.88221 339.69683)
+ (pt 551.85228 339.54639)
+ (pt 551.70862 339.33138)
+ (pt 551.49361 339.18772)
+ (pt 551.24 339.13727)
+ (pt 550.98639 339.18772)
+ (pt 550.77138 339.33138)
+ (pt 550.73664 339.38338)
+ (pt 550.72862 339.37138)
+ (pt 550.51361 339.22772)
+ (pt 550.26 339.17727)
+ (pt 550.00639 339.22772)
+ (pt 549.79138 339.37138)
+ (pt 549.77332 339.39841)
+ (pt 549.76862 339.39138)
+ (pt 549.55361 339.24772)
+ (pt 549.3 339.19727)
+ (pt 549.04639 339.24772)
+ (pt 548.83138 339.39138)
+ (pt 548.68772 339.60639)
+ (pt 548.6744 339.67334)
+ (pt 548.4659 339.71482)
+ (pt 548.26743 339.84743)
+ (pt 548.13482 340.0459)
+ (pt 548.10245 340.20861)
+ (pt 548.00639 340.22772)
+ (pt 547.79138 340.37138)
+ (pt 547.64772 340.58639)
+ (pt 547.59727 340.84)
+ (pt 547.64772 341.09361)
+ (pt 547.79138 341.30862)
+ (pt 547.83835 341.34)
+ (pt 547.79138 341.37138)
+ (pt 547.64772 341.58639)
+ (pt 547.59727 341.84)
+ (pt 547.64772 342.09361)
+ (pt 547.79138 342.30862)
+ (pt 547.81338 342.32332)
+ (pt 547.77138 342.35138)
+ (pt 547.62772 342.56639)
+ (pt 547.57727 342.82)
+ (pt 547.62772 343.07361)
+ (pt 547.77138 343.28862)
+ (pt 547.87324 343.35668)
+ (pt 547.79138 343.41138)
+ (pt 547.64772 343.62639)
+ (pt 547.59727 343.88)
+ (pt 547.64772 344.13361)
+ (pt 547.77107 344.31822)
+ (pt 547.75138 344.33138)
+ (pt 547.60772 344.54639)
+ (pt 547.55727 344.8)
+ (pt 547.60772 345.05361)
+ (pt 547.75138 345.26862)
+ (pt 547.96639 345.41228)
+ (pt 548.09186 345.43724)
+ (pt 548.1264 345.47178)
+ (pt 548.13482 345.5141)
+ (pt 548.26743 345.71257)
+ (pt 548.36582 345.77831)
+ (pt 545.86 345.77831)
+ (pt 545.50525 345.92525)
+ (pt 544.71219 346.71831)
+ (pt 539.86707 346.71831)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 250.98243)
+ (pt 644.77438 250.71438)
+ (pt 645.04243 250.31321)
+ (pt 645.13656 249.84)
+ (pt 645.04243 249.36679)
+ (pt 644.77438 248.96562)
+ (pt 644.37321 248.69757)
+ (pt 643.9 248.60344)
+ (pt 643.42679 248.69757)
+ (pt 643.02562 248.96562)
+ (pt 642.75757 249.36679)
+ (pt 642.66344 249.84)
+ (pt 642.75757 250.31321)
+ (pt 643.02562 250.71438)
+ (pt 643.42679 250.98243)
+ (pt 643.9 251.07656)
+ )
+ )
+ (thermal (pt 385.49 296.01) (pt 385.88886 296.40886) (thermalWidth 0.381))
+ (thermal (pt 384.99 296.01) (pt 384.59114 296.40886) (thermalWidth 0.381))
+ (thermal (pt 384.99 295.51) (pt 384.59114 295.11114) (thermalWidth 0.381))
+ (thermal (pt 385.49 295.51) (pt 385.88886 295.11114) (thermalWidth 0.381))
+ (thermal (pt 389.66 260.92) (pt 390.03676 261.29676) (thermalWidth 0.381))
+ (thermal (pt 389.26 260.92) (pt 388.88324 261.29676) (thermalWidth 0.381))
+ (thermal (pt 389.26 260.52) (pt 388.88324 260.14324) (thermalWidth 0.381))
+ (thermal (pt 389.66 260.52) (pt 390.03676 260.14324) (thermalWidth 0.381))
+ (thermal (pt 407.47895 330.80597) (pt 407.81757 330.21946) (thermalWidth 0.381))
+ (thermal (pt 405.91512 331.225) (pt 405.32861 330.88638) (thermalWidth 0.381))
+ (thermal (pt 406.33415 332.78883) (pt 405.99553 333.37534) (thermalWidth 0.381))
+ (thermal (pt 407.89798 332.3698) (pt 408.48449 332.70842) (thermalWidth 0.381))
+ (thermal (pt 414.85 311.55) (pt 414.45114 311.94886) (thermalWidth 0.381))
+ (thermal (pt 414.85 311.05) (pt 414.45114 310.65114) (thermalWidth 0.381))
+ (thermal (pt 416.25 332.65) (pt 416.64886 333.04886) (thermalWidth 0.381))
+ (thermal (pt 415.75 332.65) (pt 415.35114 333.04886) (thermalWidth 0.381))
+ (thermal (pt 416.25 332.15) (pt 416.64886 331.75114) (thermalWidth 0.381))
+ (thermal (pt 425.55 332.65) (pt 425.94886 333.04886) (thermalWidth 0.381))
+ (thermal (pt 425.05 332.65) (pt 424.65114 333.04886) (thermalWidth 0.381))
+ (thermal (pt 425.05 332.15) (pt 424.65114 331.75114) (thermalWidth 0.381))
+ (thermal (pt 425.55 332.15) (pt 425.94886 331.75114) (thermalWidth 0.381))
+ (thermal (pt 430.55 330.95) (pt 430.94886 331.34886) (thermalWidth 0.381))
+ (thermal (pt 430.05 330.95) (pt 429.65114 331.34886) (thermalWidth 0.381))
+ (thermal (pt 430.05 330.45) (pt 429.65114 330.05114) (thermalWidth 0.381))
+ (thermal (pt 430.55 330.45) (pt 430.94886 330.05114) (thermalWidth 0.381))
+ (thermal (pt 438.79 321.55) (pt 439.18886 321.94886) (thermalWidth 0.381))
+ (thermal (pt 438.29 321.55) (pt 437.89114 321.94886) (thermalWidth 0.381))
+ (thermal (pt 435.47 333.89) (pt 435.86886 334.28886) (thermalWidth 0.381))
+ (thermal (pt 434.97 333.89) (pt 434.57114 334.28886) (thermalWidth 0.381))
+ (thermal (pt 434.97 333.39) (pt 434.57114 332.99114) (thermalWidth 0.381))
+ (thermal (pt 435.47 333.39) (pt 435.86886 332.99114) (thermalWidth 0.381))
+ (thermal (pt 444.59 322.27) (pt 444.19114 322.66886) (thermalWidth 0.381))
+ (thermal (pt 444.59 321.77) (pt 444.19114 321.37114) (thermalWidth 0.381))
+ (thermal (pt 445.09 321.77) (pt 445.48886 321.37114) (thermalWidth 0.381))
+ (thermal (pt 446.2395 322.9705) (pt 446.71838 322.49162) (thermalWidth 0.381))
+ (thermal (pt 442.35 337.13) (pt 441.90577 336.79903) (thermalWidth 0.381))
+ (thermal (pt 448.55 345.85) (pt 448.94886 346.24886) (thermalWidth 0.381))
+ (thermal (pt 448.05 345.85) (pt 447.65114 346.24886) (thermalWidth 0.381))
+ (thermal (pt 448.05 345.35) (pt 447.61757 345.00138) (thermalWidth 0.381))
+ (thermal (pt 448.55 345.35) (pt 448.98243 345.00138) (thermalWidth 0.381))
+ (thermal (pt 443.45 343.95) (pt 443.80486 344.37826) (thermalWidth 0.381))
+ (thermal (pt 442.95 343.95) (pt 442.55114 344.34886) (thermalWidth 0.381))
+ (thermal (pt 442.95 343.45) (pt 442.55114 343.05114) (thermalWidth 0.381))
+ (thermal (pt 451.57 311.99) (pt 451.96886 312.38886) (thermalWidth 0.381))
+ (thermal (pt 451.07 311.99) (pt 450.67114 312.38886) (thermalWidth 0.381))
+ (thermal (pt 451.07 311.49) (pt 450.67114 311.09114) (thermalWidth 0.381))
+ (thermal (pt 451.57 311.49) (pt 451.96886 311.09114) (thermalWidth 0.381))
+ (thermal (pt 451.65 325.75) (pt 452.04886 326.14886) (thermalWidth 0.381))
+ (thermal (pt 451.65 325.25) (pt 452.04886 324.85114) (thermalWidth 0.381))
+ (thermal (pt 450.07 320.53) (pt 449.61889 320.20933) (thermalWidth 0.381))
+ (thermal (pt 450.57 320.53) (pt 451.02111 320.20933) (thermalWidth 0.381))
+ (thermal (pt 457.88 329.06) (pt 458.25676 329.43676) (thermalWidth 0.381))
+ (thermal (pt 457.48 329.06) (pt 457.10324 329.43676) (thermalWidth 0.381))
+ (thermal (pt 457.48 328.66) (pt 457.10324 328.28324) (thermalWidth 0.381))
+ (thermal (pt 457.88 328.66) (pt 458.25676 328.28324) (thermalWidth 0.381))
+ (thermal (pt 478.53 356.21) (pt 478.92886 356.60886) (thermalWidth 0.381))
+ (thermal (pt 478.03 356.21) (pt 477.63114 356.60886) (thermalWidth 0.381))
+ (thermal (pt 478.03 355.71) (pt 477.63114 355.31114) (thermalWidth 0.381))
+ (thermal (pt 478.53 355.71) (pt 478.92886 355.31114) (thermalWidth 0.381))
+ (thermal (pt 482.89 317.73) (pt 482.49114 318.12886) (thermalWidth 0.381))
+ (thermal (pt 482.89 317.23) (pt 482.49114 316.83114) (thermalWidth 0.381))
+ (thermal (pt 486.05 328.97) (pt 486.44886 329.36886) (thermalWidth 0.381))
+ (thermal (pt 485.55 328.97) (pt 485.15114 329.36886) (thermalWidth 0.381))
+ (thermal (pt 485.55 328.47) (pt 485.15114 328.07114) (thermalWidth 0.381))
+ (thermal (pt 482.54 405.84) (pt 482.16324 406.21676) (thermalWidth 0.381))
+ (thermal (pt 482.54 405.44) (pt 482.16324 405.06324) (thermalWidth 0.381))
+ (thermal (pt 482.94 405.44) (pt 483.31676 405.06324) (thermalWidth 0.381))
+ (thermal (pt 484.7 416.38) (pt 485.07676 416.75676) (thermalWidth 0.381))
+ (thermal (pt 484.3 416.38) (pt 483.92324 416.75676) (thermalWidth 0.381))
+ (thermal (pt 484.3 415.98) (pt 483.92324 415.60324) (thermalWidth 0.381))
+ (thermal (pt 484.7 415.98) (pt 485.07676 415.60324) (thermalWidth 0.381))
+ (thermal (pt 493.45 303.15) (pt 493.84886 303.54886) (thermalWidth 0.381))
+ (thermal (pt 493.45 302.65) (pt 493.84886 302.25114) (thermalWidth 0.381))
+ (thermal (pt 490.75 319.25) (pt 491.14886 319.64886) (thermalWidth 0.381))
+ (thermal (pt 490.75 318.75) (pt 491.14886 318.35114) (thermalWidth 0.381))
+ (thermal (pt 493.12 411.18) (pt 493.49676 411.55676) (thermalWidth 0.381))
+ (thermal (pt 493.12 410.78) (pt 493.49676 410.40324) (thermalWidth 0.381))
+ (thermal (pt 496.43 356.03) (pt 496.03114 355.63114) (thermalWidth 0.381))
+ (thermal (pt 496.93 356.03) (pt 497.30792 355.61715) (thermalWidth 0.381))
+ (thermal (pt 506.73 324.45) (pt 507.12886 324.84886) (thermalWidth 0.381))
+ (thermal (pt 506.23 324.45) (pt 505.83114 324.84886) (thermalWidth 0.381))
+ (thermal (pt 506.23 323.95) (pt 505.83114 323.55114) (thermalWidth 0.381))
+ (thermal (pt 506.73 323.95) (pt 507.12886 323.55114) (thermalWidth 0.381))
+ (thermal (pt 505.11 357.87) (pt 505.50886 358.26886) (thermalWidth 0.381))
+ (thermal (pt 508.27 370.75) (pt 508.66886 371.14886) (thermalWidth 0.381))
+ (thermal (pt 507.77 370.75) (pt 507.37114 371.14886) (thermalWidth 0.381))
+ (thermal (pt 507.77 370.25) (pt 507.37114 369.85114) (thermalWidth 0.381))
+ (thermal (pt 508.27 370.25) (pt 508.66886 369.85114) (thermalWidth 0.381))
+ (thermal (pt 508.65 398.97) (pt 509.04886 399.36886) (thermalWidth 0.381))
+ (thermal (pt 508.15 398.97) (pt 507.75114 399.36886) (thermalWidth 0.381))
+ (thermal (pt 508.15 398.47) (pt 507.75114 398.07114) (thermalWidth 0.381))
+ (thermal (pt 508.65 398.47) (pt 509.04886 398.07114) (thermalWidth 0.381))
+ (thermal (pt 513.975 305.975) (pt 513.63138 305.63138) (thermalWidth 0.381))
+ (thermal (pt 514.225 305.975) (pt 514.56862 305.63138) (thermalWidth 0.381))
+ (thermal (pt 511.36 327.4) (pt 511.73676 327.77676) (thermalWidth 0.381))
+ (thermal (pt 510.96 327.4) (pt 510.58324 327.77676) (thermalWidth 0.381))
+ (thermal (pt 512.79 371.45) (pt 513.18886 371.84886) (thermalWidth 0.381))
+ (thermal (pt 512.29 371.45) (pt 511.89114 371.84886) (thermalWidth 0.381))
+ (thermal (pt 512.29 370.95) (pt 511.89114 370.55114) (thermalWidth 0.381))
+ (thermal (pt 512.79 370.95) (pt 513.18886 370.55114) (thermalWidth 0.381))
+ (thermal (pt 517.45 376.85) (pt 517.84886 377.24886) (thermalWidth 0.381))
+ (thermal (pt 516.95 376.85) (pt 516.55114 377.24886) (thermalWidth 0.381))
+ (thermal (pt 516.95 376.35) (pt 516.55114 375.95114) (thermalWidth 0.381))
+ (thermal (pt 517.45 376.35) (pt 517.84886 375.95114) (thermalWidth 0.381))
+ (thermal (pt 515.9695 376.8295) (pt 516.44838 377.30838) (thermalWidth 0.381))
+ (thermal (pt 515.9695 376.4105) (pt 516.44838 375.93162) (thermalWidth 0.381))
+ (thermal (pt 512.63 413.01) (pt 513.02886 413.40886) (thermalWidth 0.381))
+ (thermal (pt 512.13 413.01) (pt 511.73114 413.40886) (thermalWidth 0.381))
+ (thermal (pt 524.95 295.91) (pt 524.55114 296.30886) (thermalWidth 0.381))
+ (thermal (pt 524.95 295.41) (pt 524.55114 295.01114) (thermalWidth 0.381))
+ (thermal (pt 520.99 290.91) (pt 521.38886 291.30886) (thermalWidth 0.381))
+ (thermal (pt 520.49 290.91) (pt 520.09114 291.30886) (thermalWidth 0.381))
+ (thermal (pt 520.49 290.41) (pt 520.09114 290.01114) (thermalWidth 0.381))
+ (thermal (pt 520.99 290.41) (pt 521.38886 290.01114) (thermalWidth 0.381))
+ (thermal (pt 519.8 314.9) (pt 520.17676 315.27676) (thermalWidth 0.381))
+ (thermal (pt 519.4 314.9) (pt 519.02324 315.27676) (thermalWidth 0.381))
+ (thermal (pt 519.4 314.5) (pt 519.02324 314.12324) (thermalWidth 0.381))
+ (thermal (pt 519.8 314.5) (pt 520.17676 314.12324) (thermalWidth 0.381))
+ (thermal (pt 520.665 328.145) (pt 521.00862 328.48862) (thermalWidth 0.381))
+ (thermal (pt 520.415 328.145) (pt 520.07138 328.48862) (thermalWidth 0.381))
+ (thermal (pt 522.9 399.58) (pt 523.27676 399.95676) (thermalWidth 0.381))
+ (thermal (pt 522.9 399.18) (pt 523.27676 398.80324) (thermalWidth 0.381))
+ (thermal (pt 526.805 306.505) (pt 527.14862 306.84862) (thermalWidth 0.381))
+ (thermal (pt 526.805 306.255) (pt 527.17085 305.94466) (thermalWidth 0.381))
+ (thermal (pt 532.925 329.345) (pt 533.26862 329.68862) (thermalWidth 0.381))
+ (thermal (pt 532.675 329.345) (pt 532.33138 329.68862) (thermalWidth 0.381))
+ (thermal (pt 532.675 329.095) (pt 532.33138 328.75138) (thermalWidth 0.381))
+ (thermal (pt 532.925 329.095) (pt 533.26862 328.75138) (thermalWidth 0.381))
+ (thermal (pt 529.45 405.15) (pt 529.84886 405.54886) (thermalWidth 0.381))
+ (thermal (pt 528.95 405.15) (pt 528.55114 405.54886) (thermalWidth 0.381))
+ (thermal (pt 528.95 404.65) (pt 528.55114 404.25114) (thermalWidth 0.381))
+ (thermal (pt 529.45 404.65) (pt 529.84886 404.25114) (thermalWidth 0.381))
+ (thermal (pt 539.83 295.85) (pt 540.22886 296.24886) (thermalWidth 0.381))
+ (thermal (pt 539.83 295.35) (pt 540.22886 294.95114) (thermalWidth 0.381))
+ (thermal (pt 545.87 288.73) (pt 546.26886 289.12886) (thermalWidth 0.381))
+ (thermal (pt 545.37 288.73) (pt 544.97114 289.12886) (thermalWidth 0.381))
+ (thermal (pt 545.37 288.23) (pt 544.97114 287.83114) (thermalWidth 0.381))
+ (thermal (pt 545.87 288.23) (pt 546.26886 287.83114) (thermalWidth 0.381))
+ (thermal (pt 544.7 345.2) (pt 545.07676 345.57676) (thermalWidth 0.381))
+ (thermal (pt 544.3 345.2) (pt 543.92324 345.57676) (thermalWidth 0.381))
+ (thermal (pt 544.3 344.8) (pt 543.92324 344.42324) (thermalWidth 0.381))
+ (thermal (pt 544.7 344.8) (pt 545.07676 344.42324) (thermalWidth 0.381))
+ (thermal (pt 544.4 364.9) (pt 544.77676 365.27676) (thermalWidth 0.381))
+ (thermal (pt 544.0 364.9) (pt 543.62324 365.27676) (thermalWidth 0.381))
+ (thermal (pt 544.0 364.5) (pt 543.62324 364.12324) (thermalWidth 0.381))
+ (thermal (pt 544.4 364.5) (pt 544.77676 364.12324) (thermalWidth 0.381))
+ (thermal (pt 546.11 392.05) (pt 546.50886 392.44886) (thermalWidth 0.381))
+ (thermal (pt 545.61 392.05) (pt 545.21114 392.44886) (thermalWidth 0.381))
+ (thermal (pt 545.61 391.55) (pt 545.21114 391.15114) (thermalWidth 0.381))
+ (thermal (pt 546.11 391.55) (pt 546.50886 391.15114) (thermalWidth 0.381))
+ (thermal (pt 553.25 313.35) (pt 553.64886 313.74886) (thermalWidth 0.381))
+ (thermal (pt 552.75 313.35) (pt 552.35114 313.74886) (thermalWidth 0.381))
+ (thermal (pt 552.75 312.85) (pt 552.35114 312.45114) (thermalWidth 0.381))
+ (thermal (pt 553.25 312.85) (pt 553.64886 312.45114) (thermalWidth 0.381))
+ (thermal (pt 561.83 277.27) (pt 562.22886 277.66886) (thermalWidth 0.381))
+ (thermal (pt 561.33 277.27) (pt 560.93114 277.66886) (thermalWidth 0.381))
+ (thermal (pt 561.33 276.77) (pt 560.93114 276.37114) (thermalWidth 0.381))
+ (thermal (pt 561.83 276.77) (pt 562.22886 276.37114) (thermalWidth 0.381))
+ (thermal (pt 557.05 286.45) (pt 557.44886 286.84886) (thermalWidth 0.381))
+ (thermal (pt 557.05 285.95) (pt 557.44886 285.55114) (thermalWidth 0.381))
+ (thermal (pt 560.31 295.15) (pt 560.70886 295.54886) (thermalWidth 0.381))
+ (thermal (pt 559.81 295.15) (pt 559.41114 295.54886) (thermalWidth 0.381))
+ (thermal (pt 559.81 294.65) (pt 559.41114 294.25114) (thermalWidth 0.381))
+ (thermal (pt 560.31 294.65) (pt 560.70886 294.25114) (thermalWidth 0.381))
+ (thermal (pt 556.73 300.25) (pt 556.33114 300.64886) (thermalWidth 0.381))
+ (thermal (pt 559.805 363.385) (pt 560.14862 363.72862) (thermalWidth 0.381))
+ (thermal (pt 559.555 363.385) (pt 559.21138 363.72862) (thermalWidth 0.381))
+ (thermal (pt 570.05 384.85) (pt 570.44886 385.24886) (thermalWidth 0.381))
+ (thermal (pt 569.55 384.85) (pt 569.15114 385.24886) (thermalWidth 0.381))
+ (thermal (pt 576.5805 379.9695) (pt 576.10162 380.44838) (thermalWidth 0.381))
+ (thermal (pt 577.4995 379.9695) (pt 577.97838 380.44838) (thermalWidth 0.381))
+ (thermal (pt 590.05 370.13) (pt 590.44886 370.52886) (thermalWidth 0.381))
+ (thermal (pt 589.55 370.13) (pt 589.15114 370.52886) (thermalWidth 0.381))
+ (thermal (pt 600.67 338.31) (pt 601.06886 338.70886) (thermalWidth 0.381))
+ (thermal (pt 600.17 338.31) (pt 599.77114 338.70886) (thermalWidth 0.381))
+ (thermal (pt 600.17 337.81) (pt 599.77114 337.41114) (thermalWidth 0.381))
+ (thermal (pt 600.67 337.81) (pt 601.06886 337.41114) (thermalWidth 0.381))
+ (thermal (pt 604.05 341.15) (pt 604.48243 341.49862) (thermalWidth 0.381))
+ (thermal (pt 603.55 341.15) (pt 603.11757 341.49862) (thermalWidth 0.381))
+ (thermal (pt 603.55 340.65) (pt 603.15114 340.25114) (thermalWidth 0.381))
+ (thermal (pt 604.05 340.65) (pt 604.44886 340.25114) (thermalWidth 0.381))
+ (thermal (pt 616.27 284.41) (pt 615.87114 284.80886) (thermalWidth 0.381))
+ (thermal (pt 616.27 283.91) (pt 615.87114 283.51114) (thermalWidth 0.381))
+ (thermal (pt 616.77 283.91) (pt 617.16886 283.51114) (thermalWidth 0.381))
+ (thermal (pt 616.21 293.21) (pt 615.7598 293.53203) (thermalWidth 0.381))
+ (thermal (pt 616.21 292.71) (pt 615.81114 292.31114) (thermalWidth 0.381))
+ (thermal (pt 616.71 292.71) (pt 617.10886 292.31114) (thermalWidth 0.381))
+ (thermal (pt 616.21 301.77) (pt 615.81114 301.37114) (thermalWidth 0.381))
+ (thermal (pt 616.71 301.77) (pt 617.10886 301.37114) (thermalWidth 0.381))
+ (thermal (pt 616.23 311.35) (pt 615.83114 310.95114) (thermalWidth 0.381))
+ (thermal (pt 616.73 311.35) (pt 617.12886 310.95114) (thermalWidth 0.381))
+ (thermal (pt 616.37 414.03) (pt 615.97114 413.63114) (thermalWidth 0.381))
+ (thermal (pt 616.87 414.03) (pt 617.26886 413.63114) (thermalWidth 0.381))
+ (thermal (pt 619.89 263.53) (pt 619.49114 263.92886) (thermalWidth 0.381))
+ (thermal (pt 618.6505 268.3895) (pt 618.17162 268.86838) (thermalWidth 0.381))
+ (thermal (pt 618.6505 267.9705) (pt 618.17162 267.49162) (thermalWidth 0.381))
+ (thermal (pt 623.53 298.41) (pt 623.13114 298.80886) (thermalWidth 0.381))
+ (thermal (pt 623.53 297.91) (pt 623.13114 297.51114) (thermalWidth 0.381))
+ (thermal (pt 623.03 310.17) (pt 623.42886 310.56886) (thermalWidth 0.381))
+ (thermal (pt 622.53 310.17) (pt 622.13114 310.56886) (thermalWidth 0.381))
+ (thermal (pt 622.53 309.67) (pt 622.13114 309.27114) (thermalWidth 0.381))
+ (thermal (pt 623.03 309.67) (pt 623.42886 309.27114) (thermalWidth 0.381))
+ (thermal (pt 618.81 346.49) (pt 619.20886 346.88886) (thermalWidth 0.381))
+ (thermal (pt 618.31 346.49) (pt 617.91114 346.88886) (thermalWidth 0.381))
+ (thermal (pt 618.31 345.99) (pt 617.91114 345.59114) (thermalWidth 0.381))
+ (thermal (pt 618.81 345.99) (pt 619.20886 345.59114) (thermalWidth 0.381))
+ (thermal (pt 618.71 348.99) (pt 619.10886 349.38886) (thermalWidth 0.381))
+ (thermal (pt 618.21 348.99) (pt 617.81114 349.38886) (thermalWidth 0.381))
+ (thermal (pt 618.21 348.49) (pt 617.83214 348.07711) (thermalWidth 0.381))
+ (thermal (pt 618.71 348.49) (pt 619.10886 348.09114) (thermalWidth 0.381))
+ (thermal (pt 618.71 351.49) (pt 619.10886 351.88886) (thermalWidth 0.381))
+ (thermal (pt 618.21 351.49) (pt 617.86897 351.9275) (thermalWidth 0.381))
+ (thermal (pt 618.21 350.99) (pt 617.86897 350.5525) (thermalWidth 0.381))
+ (thermal (pt 618.71 350.99) (pt 619.10886 350.59114) (thermalWidth 0.381))
+ (thermal (pt 618.61 353.99) (pt 619.00886 354.38886) (thermalWidth 0.381))
+ (thermal (pt 618.61 353.49) (pt 619.00886 353.09114) (thermalWidth 0.381))
+ (thermal (pt 623.19 410.99) (pt 622.79114 411.38886) (thermalWidth 0.381))
+ (thermal (pt 623.19 410.49) (pt 622.79114 410.09114) (thermalWidth 0.381))
+ (thermal (pt 619.67 405.79) (pt 620.06886 406.18886) (thermalWidth 0.381))
+ (thermal (pt 619.17 405.29) (pt 618.77114 404.89114) (thermalWidth 0.381))
+ (thermal (pt 619.67 405.29) (pt 620.06886 404.89114) (thermalWidth 0.381))
+ (thermal (pt 619.69 423.79) (pt 619.29114 423.39114) (thermalWidth 0.381))
+ (thermal (pt 620.19 423.79) (pt 620.58886 423.39114) (thermalWidth 0.381))
+ (thermal (pt 620.19 433.91) (pt 620.58886 434.30886) (thermalWidth 0.381))
+ (thermal (pt 619.69 433.91) (pt 619.30456 434.31783) (thermalWidth 0.381))
+ (thermal (pt 619.69 433.41) (pt 619.29114 433.01114) (thermalWidth 0.381))
+ (thermal (pt 620.19 433.41) (pt 620.58886 433.01114) (thermalWidth 0.381))
+ (thermal (pt 623.69 429.49) (pt 624.01907 429.93549) (thermalWidth 0.381))
+ (thermal (pt 623.19 429.49) (pt 622.79114 429.88886) (thermalWidth 0.381))
+ (thermal (pt 623.19 428.99) (pt 622.79114 428.59114) (thermalWidth 0.381))
+ (thermal (pt 623.69 428.99) (pt 624.01547 428.5421) (thermalWidth 0.381))
+ (thermal (pt 621.64 451.46) (pt 622.01676 451.83676) (thermalWidth 0.381))
+ (thermal (pt 621.24 451.46) (pt 620.86324 451.83676) (thermalWidth 0.381))
+ (thermal (pt 621.24 451.06) (pt 620.86324 450.68324) (thermalWidth 0.381))
+ (thermal (pt 621.64 451.06) (pt 622.01676 450.68324) (thermalWidth 0.381))
+ (thermal (pt 629.75 256.07) (pt 629.35114 255.67114) (thermalWidth 0.381))
+ (thermal (pt 630.25 256.07) (pt 630.64886 255.67114) (thermalWidth 0.381))
+ (thermal (pt 630.21 264.11) (pt 630.60886 264.50886) (thermalWidth 0.381))
+ (thermal (pt 629.71 264.11) (pt 629.31114 264.50886) (thermalWidth 0.381))
+ (thermal (pt 629.71 263.61) (pt 629.28174 263.25514) (thermalWidth 0.381))
+ (thermal (pt 630.21 263.61) (pt 630.63826 263.25514) (thermalWidth 0.381))
+ (thermal (pt 625.76 267.5) (pt 626.13676 267.87676) (thermalWidth 0.381))
+ (thermal (pt 625.76 267.1) (pt 626.13676 266.72324) (thermalWidth 0.381))
+ (thermal (pt 626.11 322.93) (pt 626.50886 323.32886) (thermalWidth 0.381))
+ (thermal (pt 625.61 322.93) (pt 625.21114 323.32886) (thermalWidth 0.381))
+ (thermal (pt 625.61 322.43) (pt 625.21114 322.03114) (thermalWidth 0.381))
+ (thermal (pt 626.11 322.43) (pt 626.50886 322.03114) (thermalWidth 0.381))
+ (thermal (pt 637.05 346.25) (pt 637.44886 346.64886) (thermalWidth 0.381))
+ (thermal (pt 636.55 346.25) (pt 636.15114 346.64886) (thermalWidth 0.381))
+ (thermal (pt 636.55 345.75) (pt 636.15114 345.35114) (thermalWidth 0.381))
+ (thermal (pt 637.05 345.75) (pt 637.44886 345.35114) (thermalWidth 0.381))
+ (thermal (pt 639.43 348.83) (pt 639.82886 349.22886) (thermalWidth 0.381))
+ (thermal (pt 638.93 348.83) (pt 638.53114 349.22886) (thermalWidth 0.381))
+ (thermal (pt 638.93 348.33) (pt 638.53114 347.93114) (thermalWidth 0.381))
+ (thermal (pt 639.43 348.33) (pt 639.82886 347.93114) (thermalWidth 0.381))
+ (thermal (pt 382.05 274.13) (pt 382.44886 274.52886) (thermalWidth 0.381))
+ (thermal (pt 381.55 274.13) (pt 381.15114 274.52886) (thermalWidth 0.381))
+ (thermal (pt 381.55 273.63) (pt 381.15114 273.23114) (thermalWidth 0.381))
+ (thermal (pt 382.05 273.63) (pt 382.44886 273.23114) (thermalWidth 0.381))
+ (thermal (pt 385.45 297.81) (pt 385.84886 298.20886) (thermalWidth 0.381))
+ (thermal (pt 384.95 297.81) (pt 384.55114 298.20886) (thermalWidth 0.381))
+ (thermal (pt 384.95 297.31) (pt 384.55114 296.91114) (thermalWidth 0.381))
+ (thermal (pt 385.45 297.31) (pt 385.84886 296.91114) (thermalWidth 0.381))
+ (thermal (pt 407.91798 325.5702) (pt 408.50449 325.23158) (thermalWidth 0.381))
+ (thermal (pt 406.35415 325.15117) (pt 406.01553 324.56466) (thermalWidth 0.381))
+ (thermal (pt 405.93512 326.715) (pt 405.34861 327.05362) (thermalWidth 0.381))
+ (thermal (pt 407.49895 327.13403) (pt 407.83757 327.72054) (thermalWidth 0.381))
+ (thermal (pt 420.95 327.45) (pt 421.30161 327.88043) (thermalWidth 0.381))
+ (thermal (pt 420.45 327.45) (pt 420.05114 327.84886) (thermalWidth 0.381))
+ (thermal (pt 420.45 326.95) (pt 420.05114 326.55114) (thermalWidth 0.381))
+ (thermal (pt 420.95 326.95) (pt 421.34358 326.54761) (thermalWidth 0.381))
+ (thermal (pt 444.2905 343.9095) (pt 443.81162 344.38838) (thermalWidth 0.381))
+ (thermal (pt 453.10395 341.77124) (pt 453.10395 341.09401) (thermalWidth 0.381))
+ (thermal (pt 451.95914 342.91605) (pt 451.28191 342.91605) (thermalWidth 0.381))
+ (thermal (pt 453.10395 344.06086) (pt 453.10395 344.73809) (thermalWidth 0.381))
+ (thermal (pt 454.24876 342.91605) (pt 454.92599 342.91605) (thermalWidth 0.381))
+ (thermal (pt 491.27 312.49) (pt 490.81708 312.80796) (thermalWidth 0.381))
+ (thermal (pt 491.27 311.99) (pt 490.87114 311.59114) (thermalWidth 0.381))
+ (thermal (pt 496.79 358.39) (pt 497.18886 358.78886) (thermalWidth 0.381))
+ (thermal (pt 496.29 358.39) (pt 495.89114 358.78886) (thermalWidth 0.381))
+ (thermal (pt 517.71 388.73) (pt 518.10886 389.12886) (thermalWidth 0.381))
+ (thermal (pt 517.21 388.73) (pt 516.81114 389.12886) (thermalWidth 0.381))
+ (thermal (pt 517.21 388.23) (pt 516.81114 387.83114) (thermalWidth 0.381))
+ (thermal (pt 517.71 388.23) (pt 518.10886 387.83114) (thermalWidth 0.381))
+ (thermal (pt 514.93 412.03) (pt 515.32886 412.42886) (thermalWidth 0.381))
+ (thermal (pt 514.43 412.03) (pt 514.03114 412.42886) (thermalWidth 0.381))
+ (thermal (pt 514.8895 410.8095) (pt 515.52778 411.42884) (thermalWidth 0.381))
+ (thermal (pt 514.4705 410.8095) (pt 513.95885 411.23933) (thermalWidth 0.381))
+ (thermal (pt 520.3905 327.4495) (pt 519.89919 327.90979) (thermalWidth 0.381))
+ (thermal (pt 525.37 388.59) (pt 525.76886 388.98886) (thermalWidth 0.381))
+ (thermal (pt 524.87 388.59) (pt 524.47114 388.98886) (thermalWidth 0.381))
+ (thermal (pt 525.37 388.09) (pt 525.78443 387.71444) (thermalWidth 0.381))
+ (thermal (pt 521.49 388.69) (pt 521.88886 389.08886) (thermalWidth 0.381))
+ (thermal (pt 520.99 388.69) (pt 520.59114 389.08886) (thermalWidth 0.381))
+ (thermal (pt 520.99 388.19) (pt 520.59114 387.79114) (thermalWidth 0.381))
+ (thermal (pt 521.49 388.19) (pt 521.88886 387.79114) (thermalWidth 0.381))
+ (thermal (pt 521.0105 387.2695) (pt 520.53162 387.74838) (thermalWidth 0.381))
+ (thermal (pt 521.4295 387.2695) (pt 521.90838 387.74838) (thermalWidth 0.381))
+ (thermal (pt 529.45 388.63) (pt 529.84886 389.02886) (thermalWidth 0.381))
+ (thermal (pt 528.95 388.63) (pt 528.55114 389.02886) (thermalWidth 0.381))
+ (thermal (pt 528.95 388.13) (pt 528.49889 387.80933) (thermalWidth 0.381))
+ (thermal (pt 529.45 388.13) (pt 529.90111 387.80933) (thermalWidth 0.381))
+ (thermal (pt 528.9905 387.3495) (pt 528.49889 387.80933) (thermalWidth 0.381))
+ (thermal (pt 529.4095 387.3495) (pt 529.90111 387.80933) (thermalWidth 0.381))
+ (thermal (pt 528.95 411.25) (pt 528.55114 411.64886) (thermalWidth 0.381))
+ (thermal (pt 528.95 410.75) (pt 528.55114 410.35114) (thermalWidth 0.381))
+ (thermal (pt 529.45 410.75) (pt 529.84886 410.35114) (thermalWidth 0.381))
+ (thermal (pt 529.45 411.25) (pt 529.84886 411.64886) (thermalWidth 0.381))
+ (thermal (pt 534.75 282.05) (pt 534.35114 282.44886) (thermalWidth 0.381))
+ (thermal (pt 534.75 281.55) (pt 534.35114 281.15114) (thermalWidth 0.381))
+ (thermal (pt 544.4095 288.6695) (pt 544.88838 289.14838) (thermalWidth 0.381))
+ (thermal (pt 544.4095 288.2505) (pt 544.88838 287.77162) (thermalWidth 0.381))
+ (thermal (pt 569.3405 383.5095) (pt 568.86162 383.98838) (thermalWidth 0.381))
+ (thermal (pt 570.2595 383.5095) (pt 570.73838 383.98838) (thermalWidth 0.381))
+ (thermal (pt 590.69 358.21) (pt 591.09052 358.60638) (thermalWidth 0.381))
+ (thermal (pt 623.39 289.61) (pt 622.99114 290.00886) (thermalWidth 0.381))
+ (thermal (pt 623.39 289.11) (pt 622.99114 288.71114) (thermalWidth 0.381))
+ (thermal (pt 623.43 419.79) (pt 623.03114 420.18886) (thermalWidth 0.381))
+ (thermal (pt 623.43 419.29) (pt 623.03114 418.89114) (thermalWidth 0.381))
+ (thermal (pt 619.93 442.65) (pt 620.32886 443.04886) (thermalWidth 0.381))
+ (thermal (pt 619.43 442.15) (pt 619.03114 441.75114) (thermalWidth 0.381))
+ (thermal (pt 619.93 442.15) (pt 620.32886 441.75114) (thermalWidth 0.381))
+ (thermal (pt 505.33 404.596) (pt 505.70676 404.97276) (thermalWidth 0.381))
+ (thermal (pt 504.43 404.596) (pt 504.05324 404.97276) (thermalWidth 0.381))
+ (thermal (pt 504.43 404.196) (pt 504.05324 403.81924) (thermalWidth 0.381))
+ (thermal (pt 505.33 404.196) (pt 505.70676 403.81924) (thermalWidth 0.381))
+ (thermal (pt 375.75 240.95) (pt 376.59078 241.79078) (thermalWidth 0.381))
+ (thermal (pt 373.25 240.95) (pt 372.40922 241.79078) (thermalWidth 0.381))
+ (thermal (pt 373.25 238.45) (pt 372.40922 237.60922) (thermalWidth 0.381))
+ (thermal (pt 375.75 238.45) (pt 376.59078 237.60922) (thermalWidth 0.381))
+ (thermal (pt 381.8305 310.8095) (pt 381.35162 311.28838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 310.8095) (pt 383.92838 311.28838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 309.1905) (pt 383.92838 308.71162) (thermalWidth 0.381))
+ (thermal (pt 381.8305 309.1905) (pt 381.35162 308.71162) (thermalWidth 0.381))
+ (thermal (pt 381.86202 323.2298) (pt 381.27551 323.56842) (thermalWidth 0.381))
+ (thermal (pt 383.42585 323.64883) (pt 383.76447 324.23534) (thermalWidth 0.381))
+ (thermal (pt 383.84488 322.085) (pt 384.43139 321.74638) (thermalWidth 0.381))
+ (thermal (pt 382.28105 321.66597) (pt 381.94243 321.07946) (thermalWidth 0.381))
+ (thermal (pt 381.78105 334.33403) (pt 381.44243 334.92054) (thermalWidth 0.381))
+ (thermal (pt 383.34488 333.915) (pt 383.93139 334.25362) (thermalWidth 0.381))
+ (thermal (pt 382.92585 332.35117) (pt 383.26447 331.76466) (thermalWidth 0.381))
+ (thermal (pt 381.36202 332.7702) (pt 380.77551 332.43158) (thermalWidth 0.381))
+ (thermal (pt 381.8305 346.7095) (pt 381.35162 347.18838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 346.7095) (pt 383.92838 347.18838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 345.0905) (pt 383.92838 344.61162) (thermalWidth 0.381))
+ (thermal (pt 381.8305 345.0905) (pt 381.35162 344.61162) (thermalWidth 0.381))
+ (thermal (pt 381.6705 369.6695) (pt 381.19162 370.14838) (thermalWidth 0.381))
+ (thermal (pt 383.2895 369.6695) (pt 383.76838 370.14838) (thermalWidth 0.381))
+ (thermal (pt 383.2895 368.0505) (pt 383.76838 367.57162) (thermalWidth 0.381))
+ (thermal (pt 381.6705 368.0505) (pt 381.19162 367.57162) (thermalWidth 0.381))
+ (thermal (pt 381.8905 423.6695) (pt 381.41162 424.14838) (thermalWidth 0.381))
+ (thermal (pt 383.5095 423.6695) (pt 383.98838 424.14838) (thermalWidth 0.381))
+ (thermal (pt 383.5095 422.0505) (pt 383.98838 421.57162) (thermalWidth 0.381))
+ (thermal (pt 381.8905 422.0505) (pt 381.41162 421.57162) (thermalWidth 0.381))
+ (thermal (pt 375.75 463.2) (pt 376.59078 464.04078) (thermalWidth 0.381))
+ (thermal (pt 373.25 463.2) (pt 372.40922 464.04078) (thermalWidth 0.381))
+ (thermal (pt 373.25 460.7) (pt 372.40922 459.85922) (thermalWidth 0.381))
+ (thermal (pt 375.75 460.7) (pt 376.59078 459.85922) (thermalWidth 0.381))
+ (thermal (pt 434.65 298.97) (pt 435.04886 299.36886) (thermalWidth 0.381))
+ (thermal (pt 434.15 298.97) (pt 433.75114 299.36886) (thermalWidth 0.381))
+ (thermal (pt 434.15 298.47) (pt 433.75114 298.07114) (thermalWidth 0.381))
+ (thermal (pt 434.65 298.47) (pt 435.04886 298.07114) (thermalWidth 0.381))
+ (thermal (pt 450.7795 313.4305) (pt 451.25838 312.95162) (thermalWidth 0.381))
+ (thermal (pt 449.8605 313.4305) (pt 449.38162 312.95162) (thermalWidth 0.381))
+ (thermal (pt 450.7095 322.6195) (pt 451.18838 323.09838) (thermalWidth 0.381))
+ (thermal (pt 450.7095 321.7005) (pt 451.18838 321.22162) (thermalWidth 0.381))
+ (thermal (pt 450.3295 324.1105) (pt 450.80838 323.63162) (thermalWidth 0.381))
+ (thermal (pt 444.0095 323.7905) (pt 444.48838 323.31162) (thermalWidth 0.381))
+ (thermal (pt 443.5905 323.7905) (pt 443.11162 323.31162) (thermalWidth 0.381))
+ (thermal (pt 442.1105 338.5005) (pt 441.63162 338.02162) (thermalWidth 0.381))
+ (thermal (pt 442.1105 339.4195) (pt 441.63162 339.89838) (thermalWidth 0.381))
+ (thermal (pt 480.05 292.81) (pt 480.44886 293.20886) (thermalWidth 0.381))
+ (thermal (pt 479.55 292.81) (pt 479.15114 293.20886) (thermalWidth 0.381))
+ (thermal (pt 479.55 292.31) (pt 479.15114 291.91114) (thermalWidth 0.381))
+ (thermal (pt 480.05 292.31) (pt 480.44886 291.91114) (thermalWidth 0.381))
+ (thermal (pt 484.1305 317.6895) (pt 483.49435 318.32565) (thermalWidth 0.381))
+ (thermal (pt 484.1305 317.2705) (pt 483.49435 316.63435) (thermalWidth 0.381))
+ (thermal (pt 472.4 323.3) (pt 472.77676 323.67676) (thermalWidth 0.381))
+ (thermal (pt 472.0 323.3) (pt 471.62324 323.67676) (thermalWidth 0.381))
+ (thermal (pt 472.0 322.9) (pt 471.62324 322.52324) (thermalWidth 0.381))
+ (thermal (pt 472.4 322.9) (pt 472.77676 322.52324) (thermalWidth 0.381))
+ (thermal (pt 480.34 410.02) (pt 480.71676 410.39676) (thermalWidth 0.381))
+ (thermal (pt 479.94 410.02) (pt 479.56324 410.39676) (thermalWidth 0.381))
+ (thermal (pt 479.94 409.62) (pt 479.56324 409.24324) (thermalWidth 0.381))
+ (thermal (pt 480.34 409.62) (pt 480.71676 409.24324) (thermalWidth 0.381))
+ (thermal (pt 477.4495 415.4105) (pt 477.92838 414.93162) (thermalWidth 0.381))
+ (thermal (pt 475.8305 415.4105) (pt 475.35162 414.93162) (thermalWidth 0.381))
+ (thermal (pt 475.8305 417.0295) (pt 475.35162 417.50838) (thermalWidth 0.381))
+ (thermal (pt 477.4495 417.0295) (pt 477.92838 417.50838) (thermalWidth 0.381))
+ (thermal (pt 511.75 240.95) (pt 512.59078 241.79078) (thermalWidth 0.381))
+ (thermal (pt 509.25 240.95) (pt 508.40922 241.79078) (thermalWidth 0.381))
+ (thermal (pt 509.25 238.45) (pt 508.40922 237.60922) (thermalWidth 0.381))
+ (thermal (pt 511.75 238.45) (pt 512.59078 237.60922) (thermalWidth 0.381))
+ (thermal (pt 510.68 315.98) (pt 510.30324 315.60324) (thermalWidth 0.381))
+ (thermal (pt 511.08 315.98) (pt 511.45676 315.60324) (thermalWidth 0.381))
+ (thermal (pt 502.25 315.65) (pt 501.85114 315.25114) (thermalWidth 0.381))
+ (thermal (pt 502.75 315.65) (pt 503.14886 315.25114) (thermalWidth 0.381))
+ (thermal (pt 497.7905 356.0905) (pt 497.31162 355.61162) (thermalWidth 0.381))
+ (thermal (pt 517.2505 387.3095) (pt 516.77162 387.78838) (thermalWidth 0.381))
+ (thermal (pt 517.6695 387.3095) (pt 518.14838 387.78838) (thermalWidth 0.381))
+ (thermal (pt 503.47 404.67) (pt 503.86886 405.06886) (thermalWidth 0.381))
+ (thermal (pt 502.97 404.67) (pt 502.57114 405.06886) (thermalWidth 0.381))
+ (thermal (pt 502.97 404.17) (pt 502.57114 403.77114) (thermalWidth 0.381))
+ (thermal (pt 503.47 404.17) (pt 503.86886 403.77114) (thermalWidth 0.381))
+ (thermal (pt 511.75 463.2) (pt 512.59078 464.04078) (thermalWidth 0.381))
+ (thermal (pt 509.25 463.2) (pt 508.40922 464.04078) (thermalWidth 0.381))
+ (thermal (pt 509.25 460.7) (pt 508.40922 459.85922) (thermalWidth 0.381))
+ (thermal (pt 511.75 460.7) (pt 512.59078 459.85922) (thermalWidth 0.381))
+ (thermal (pt 541.25 263.45) (pt 540.85114 263.84886) (thermalWidth 0.381))
+ (thermal (pt 541.25 262.95) (pt 540.85114 262.55114) (thermalWidth 0.381))
+ (thermal (pt 541.75 262.95) (pt 542.14886 262.55114) (thermalWidth 0.381))
+ (thermal (pt 525.9495 306.5895) (pt 526.42838 307.06838) (thermalWidth 0.381))
+ (thermal (pt 525.9495 306.1705) (pt 526.42838 305.69162) (thermalWidth 0.381))
+ (thermal (pt 564.59 268.13) (pt 564.98886 268.52886) (thermalWidth 0.381))
+ (thermal (pt 564.09 268.13) (pt 563.69114 268.52886) (thermalWidth 0.381))
+ (thermal (pt 564.59 267.63) (pt 564.98886 267.23114) (thermalWidth 0.381))
+ (thermal (pt 571.365 362.885) (pt 571.70862 363.22862) (thermalWidth 0.381))
+ (thermal (pt 571.115 362.885) (pt 570.77138 363.22862) (thermalWidth 0.381))
+ (thermal (pt 571.115 362.635) (pt 570.77138 362.29138) (thermalWidth 0.381))
+ (thermal (pt 571.365 362.635) (pt 571.70862 362.29138) (thermalWidth 0.381))
+ (thermal (pt 579.01 379.77) (pt 579.40886 380.16886) (thermalWidth 0.381))
+ (thermal (pt 578.51 379.77) (pt 578.11114 380.16886) (thermalWidth 0.381))
+ (thermal (pt 578.51 379.27) (pt 578.11114 378.87114) (thermalWidth 0.381))
+ (thermal (pt 579.01 379.27) (pt 579.40886 378.87114) (thermalWidth 0.381))
+ (thermal (pt 630.1695 262.7695) (pt 630.64838 263.24838) (thermalWidth 0.381))
+ (thermal (pt 629.7505 262.7695) (pt 629.27162 263.24838) (thermalWidth 0.381))
+ (thermal (pt 617.1 268.5) (pt 617.52287 268.80775) (thermalWidth 0.381))
+ (thermal (pt 616.7 268.5) (pt 616.31417 268.86319) (thermalWidth 0.381))
+ (thermal (pt 616.7 268.1) (pt 616.32324 267.72324) (thermalWidth 0.381))
+ (thermal (pt 617.1 268.1) (pt 617.47676 267.72324) (thermalWidth 0.381))
+ (thermal (pt 624.5695 268.3895) (pt 625.04838 268.86838) (thermalWidth 0.381))
+ (thermal (pt 617.28 278.1) (pt 617.65676 278.47676) (thermalWidth 0.381))
+ (thermal (pt 616.88 278.1) (pt 616.50324 278.47676) (thermalWidth 0.381))
+ (thermal (pt 616.88 277.7) (pt 616.50324 277.32324) (thermalWidth 0.381))
+ (thermal (pt 617.3095 348.9095) (pt 617.78838 349.38838) (thermalWidth 0.381))
+ (thermal (pt 617.3095 348.4905) (pt 617.78838 348.01162) (thermalWidth 0.381))
+ (thermal (pt 617.3495 346.4295) (pt 617.82838 346.90838) (thermalWidth 0.381))
+ (thermal (pt 617.3495 346.0105) (pt 617.82838 345.53162) (thermalWidth 0.381))
+ (thermal (pt 617.3895 353.9295) (pt 617.80437 354.45115) (thermalWidth 0.381))
+ (thermal (pt 617.3895 353.5105) (pt 618.00565 352.89435) (thermalWidth 0.381))
+ (thermal (pt 381.108 256.752) (pt 381.62088 256.23912) (thermalWidth 0.381))
+ (thermal (pt 380.092 257.768) (pt 379.57912 258.28088) (thermalWidth 0.381))
+ (thermal (pt 380.092 256.752) (pt 379.57912 256.23912) (thermalWidth 0.381))
+ (thermal (pt 381.108 267.928) (pt 381.62088 268.44088) (thermalWidth 0.381))
+ (thermal (pt 380.092 267.928) (pt 379.57912 268.44088) (thermalWidth 0.381))
+ (thermal (pt 380.092 266.912) (pt 379.57912 266.39912) (thermalWidth 0.381))
+ (thermal (pt 418.8485 312.5335) (pt 419.32738 313.01238) (thermalWidth 0.381))
+ (thermal (pt 416.1815 312.5335) (pt 415.70262 313.01238) (thermalWidth 0.381))
+ (thermal (pt 416.1815 309.8665) (pt 415.70262 309.38762) (thermalWidth 0.381))
+ (thermal (pt 418.8485 309.8665) (pt 419.32738 309.38762) (thermalWidth 0.381))
+ (thermal (pt 409.74876 320.24395) (pt 410.42599 320.24395) (thermalWidth 0.381))
+ (thermal (pt 408.60395 319.09914) (pt 408.60395 318.42191) (thermalWidth 0.381))
+ (thermal (pt 407.45914 320.24395) (pt 406.78191 320.24395) (thermalWidth 0.381))
+ (thermal (pt 408.60395 321.38876) (pt 408.60395 322.06599) (thermalWidth 0.381))
+ (thermal (pt 443.355 331.375) (pt 443.03348 331.69652) (thermalWidth 0.381))
+ (thermal (pt 442.1405 336.2095) (pt 441.66162 336.68838) (thermalWidth 0.381))
+ (thermal (pt 450.0295 311.9495) (pt 450.50838 312.42838) (thermalWidth 0.381))
+ (thermal (pt 450.0295 311.5305) (pt 450.50838 311.05162) (thermalWidth 0.381))
+ (thermal (pt 450.1105 319.7495) (pt 449.61889 320.20933) (thermalWidth 0.381))
+ (thermal (pt 450.5295 319.7495) (pt 451.02111 320.20933) (thermalWidth 0.381))
+ (thermal (pt 451.5895 326.6905) (pt 452.06838 326.21162) (thermalWidth 0.381))
+ (thermal (pt 451.5895 327.1095) (pt 452.06838 327.58838) (thermalWidth 0.381))
+ (thermal (pt 447.8405 344.4095) (pt 447.36162 344.88838) (thermalWidth 0.381))
+ (thermal (pt 448.7595 344.4095) (pt 449.23838 344.88838) (thermalWidth 0.381))
+ (thermal (pt 481.3845 295.6345) (pt 481.86338 296.11338) (thermalWidth 0.381))
+ (thermal (pt 480.5155 295.6345) (pt 480.03662 296.11338) (thermalWidth 0.381))
+ (thermal (pt 480.5155 294.0155) (pt 480.03662 293.53662) (thermalWidth 0.381))
+ (thermal (pt 481.3845 294.0155) (pt 481.86338 293.53662) (thermalWidth 0.381))
+ (thermal (pt 487.1495 327.9695) (pt 487.62838 328.44838) (thermalWidth 0.381))
+ (thermal (pt 488.5695 396.6305) (pt 489.04838 396.15162) (thermalWidth 0.381))
+ (thermal (pt 488.5695 398.0495) (pt 489.04838 398.52838) (thermalWidth 0.381))
+ (thermal (pt 487.1505 398.0495) (pt 486.67162 398.52838) (thermalWidth 0.381))
+ (thermal (pt 487.1505 396.6305) (pt 486.67162 396.15162) (thermalWidth 0.381))
+ (thermal (pt 497.7705 358.3495) (pt 497.29162 358.82838) (thermalWidth 0.381))
+ (thermal (pt 511.9405 411.6695) (pt 511.46162 412.14838) (thermalWidth 0.381))
+ (thermal (pt 512.8595 411.6695) (pt 513.33838 412.14838) (thermalWidth 0.381))
+ (thermal (pt 542.3845 265.9345) (pt 542.86338 266.41338) (thermalWidth 0.381))
+ (thermal (pt 541.5155 265.9345) (pt 541.03662 266.41338) (thermalWidth 0.381))
+ (thermal (pt 542.3845 264.3155) (pt 542.86338 263.83662) (thermalWidth 0.381))
+ (thermal (pt 541.6285 260.6135) (pt 542.10738 261.09238) (thermalWidth 0.381))
+ (thermal (pt 538.9615 260.6135) (pt 538.48262 261.09238) (thermalWidth 0.381))
+ (thermal (pt 538.9615 257.9465) (pt 538.48262 257.46762) (thermalWidth 0.381))
+ (thermal (pt 541.6285 257.9465) (pt 542.10738 257.46762) (thermalWidth 0.381))
+ (thermal (pt 538.5485 283.2335) (pt 539.02738 283.71238) (thermalWidth 0.381))
+ (thermal (pt 535.8815 283.2335) (pt 535.40262 283.71238) (thermalWidth 0.381))
+ (thermal (pt 535.8815 280.5665) (pt 535.40262 280.08762) (thermalWidth 0.381))
+ (thermal (pt 538.5485 280.5665) (pt 539.02738 280.08762) (thermalWidth 0.381))
+ (thermal (pt 536.0915 294.2665) (pt 535.61262 293.78762) (thermalWidth 0.381))
+ (thermal (pt 538.7585 294.2665) (pt 539.23738 293.78762) (thermalWidth 0.381))
+ (thermal (pt 538.7585 296.9335) (pt 539.23738 297.41238) (thermalWidth 0.381))
+ (thermal (pt 536.0915 296.9335) (pt 535.61262 297.41238) (thermalWidth 0.381))
+ (thermal (pt 524.8505 387.2895) (pt 524.37162 387.76838) (thermalWidth 0.381))
+ (thermal (pt 525.2695 387.2895) (pt 525.78443 387.71444) (thermalWidth 0.381))
+ (thermal (pt 554.39 299.845) (pt 554.02428 299.47928) (thermalWidth 0.381))
+ (thermal (pt 554.39 300.195) (pt 554.02428 300.56072) (thermalWidth 0.381))
+ (thermal (pt 604.2595 342.0905) (pt 604.73838 341.61162) (thermalWidth 0.381))
+ (thermal (pt 603.3405 342.0905) (pt 602.86162 341.61162) (thermalWidth 0.381))
+ (thermal (pt 617.9 263.12) (pt 617.54533 262.76533) (thermalWidth 0.381))
+ (thermal (pt 617.9 263.42) (pt 617.54533 263.77467) (thermalWidth 0.381))
+ (thermal (pt 629.7905 257.2905) (pt 629.15222 256.67116) (thermalWidth 0.381))
+ (thermal (pt 630.2095 257.2905) (pt 630.72115 256.86067) (thermalWidth 0.381))
+ (thermal (pt 618.7112 284.06624) (pt 619.04448 283.73296) (thermalWidth 0.381))
+ (thermal (pt 618.7912 292.84624) (pt 619.12448 292.51296) (thermalWidth 0.381))
+ (thermal (pt 618.6712 311.52624) (pt 619.00448 311.19296) (thermalWidth 0.381))
+ (thermal (pt 636.0255 348.9845) (pt 635.54662 349.46338) (thermalWidth 0.381))
+ (thermal (pt 636.0255 348.1155) (pt 635.54662 347.63662) (thermalWidth 0.381))
+ (thermal (pt 637.6445 348.1155) (pt 638.12338 347.63662) (thermalWidth 0.381))
+ (thermal (pt 637.6445 348.9845) (pt 638.12338 349.46338) (thermalWidth 0.381))
+ (thermal (pt 617.3895 351.4495) (pt 617.86838 351.92838) (thermalWidth 0.381))
+ (thermal (pt 617.3895 351.0305) (pt 617.86838 350.55162) (thermalWidth 0.381))
+ (thermal (pt 617.2688 405.44624) (pt 616.93552 405.11296) (thermalWidth 0.381))
+ (thermal (pt 618.7912 414.24624) (pt 619.12448 413.91296) (thermalWidth 0.381))
+ (thermal (pt 617.2888 442.28624) (pt 616.95552 441.95296) (thermalWidth 0.381))
+ (thermal (pt 617.3688 433.56624) (pt 617.03552 433.23296) (thermalWidth 0.381))
+ (thermal (pt 618.7912 433.56624) (pt 619.12448 433.23296) (thermalWidth 0.381))
+ (thermal (pt 408.46395 337.19124) (pt 408.46395 336.51401) (thermalWidth 0.381))
+ (thermal (pt 407.31914 338.33605) (pt 406.64191 338.33605) (thermalWidth 0.381))
+ (thermal (pt 408.46395 339.48086) (pt 408.46395 340.15809) (thermalWidth 0.381))
+ (thermal (pt 409.60876 338.33605) (pt 410.28599 338.33605) (thermalWidth 0.381))
+ (thermal (pt 435.7845 301.7345) (pt 436.26338 302.21338) (thermalWidth 0.381))
+ (thermal (pt 434.9155 301.7345) (pt 434.43662 302.21338) (thermalWidth 0.381))
+ (thermal (pt 434.9155 300.1155) (pt 434.43662 299.63662) (thermalWidth 0.381))
+ (thermal (pt 435.7845 300.1155) (pt 436.26338 299.63662) (thermalWidth 0.381))
+ (thermal (pt 508.8095 367.8105) (pt 509.28838 367.33162) (thermalWidth 0.381))
+ (thermal (pt 508.8095 369.2295) (pt 509.28838 369.70838) (thermalWidth 0.381))
+ (thermal (pt 507.1905 369.2295) (pt 506.71162 369.70838) (thermalWidth 0.381))
+ (thermal (pt 507.1905 367.8105) (pt 506.71162 367.33162) (thermalWidth 0.381))
+ (thermal (pt 554.39 286.025) (pt 554.02428 285.65928) (thermalWidth 0.381))
+ (thermal (pt 554.39 286.375) (pt 554.02428 286.74072) (thermalWidth 0.381))
+ (thermal (pt 619.2 277.72) (pt 619.55467 277.36533) (thermalWidth 0.381))
+ (thermal (pt 619.2 278.02) (pt 619.55467 278.37467) (thermalWidth 0.381))
+ (thermal (pt 618.7512 301.92624) (pt 619.08448 301.59296) (thermalWidth 0.381))
+ (thermal (pt 617.3688 423.92624) (pt 617.03552 423.59296) (thermalWidth 0.381))
+ (thermal (pt 618.7912 423.92624) (pt 619.12448 423.59296) (thermalWidth 0.381))
+ (thermal (pt 616.7505 269.3705) (pt 616.27162 268.89162) (thermalWidth 0.381))
+ (thermal (pt 617.1695 269.3705) (pt 617.64838 268.89162) (thermalWidth 0.381))
+ (thermal (pt 372.06 319.96) (pt 372.56934 320.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 319.96) (pt 370.55066 320.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 318.96) (pt 370.55066 318.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 318.96) (pt 372.56934 318.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 325.04) (pt 372.56934 325.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 325.04) (pt 370.55066 325.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 324.04) (pt 370.55066 323.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 324.04) (pt 372.56934 323.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 319.96) (pt 377.64934 320.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 319.96) (pt 375.63066 320.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 318.96) (pt 375.63066 318.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 318.96) (pt 377.64934 318.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 325.04) (pt 377.64934 325.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 325.04) (pt 375.63066 325.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 324.04) (pt 375.63066 323.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 324.04) (pt 377.64934 323.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 343.96) (pt 372.46934 344.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 343.96) (pt 370.45066 344.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 342.96) (pt 370.45066 342.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 342.96) (pt 372.46934 342.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 349.04) (pt 372.46934 349.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 349.04) (pt 370.45066 349.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 348.04) (pt 370.45066 347.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 348.04) (pt 372.46934 347.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 343.96) (pt 377.54934 344.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 343.96) (pt 375.53066 344.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 342.96) (pt 375.53066 342.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 342.96) (pt 377.54934 342.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 349.04) (pt 377.54934 349.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 349.04) (pt 375.53066 349.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 348.04) (pt 375.53066 347.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 348.04) (pt 377.54934 347.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 420.96) (pt 372.46934 421.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 420.96) (pt 370.45066 421.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 419.96) (pt 370.45066 419.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 419.96) (pt 372.46934 419.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 426.04) (pt 372.46934 426.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 426.04) (pt 370.45066 426.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 425.04) (pt 370.45066 424.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 425.04) (pt 372.46934 424.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 420.96) (pt 377.54934 421.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 420.96) (pt 375.53066 421.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 419.96) (pt 375.53066 419.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 419.96) (pt 377.54934 419.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 426.04) (pt 377.54934 426.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 426.04) (pt 375.53066 426.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 425.04) (pt 375.53066 424.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 425.04) (pt 377.54934 424.53066) (thermalWidth 0.381))
+ (thermal (pt 428.15 330.56) (pt 427.79533 330.20533) (thermalWidth 0.381))
+ (thermal (pt 428.15 330.86) (pt 427.79533 331.21467) (thermalWidth 0.381))
+ (thermal (pt 491.175 314.425) (pt 490.85348 314.74652) (thermalWidth 0.381))
+ (thermal (pt 491.175 313.075) (pt 490.67222 312.59116) (thermalWidth 0.381))
+ (thermal (pt 500.325 315.925) (pt 500.00348 315.60348) (thermalWidth 0.381))
+ (thermal (pt 481.4545 354.3155) (pt 481.93338 353.83662) (thermalWidth 0.381))
+ (thermal (pt 481.4545 355.1845) (pt 481.93338 355.66338) (thermalWidth 0.381))
+ (thermal (pt 479.8355 355.1845) (pt 479.35662 355.66338) (thermalWidth 0.381))
+ (thermal (pt 479.8355 354.3155) (pt 479.35662 353.83662) (thermalWidth 0.381))
+ (thermal (pt 488.475 377.195) (pt 488.9291 377.6491) (thermalWidth 0.381))
+ (thermal (pt 487.725 377.195) (pt 487.2709 377.6491) (thermalWidth 0.381))
+ (thermal (pt 487.725 376.445) (pt 487.2709 375.9909) (thermalWidth 0.381))
+ (thermal (pt 488.475 376.445) (pt 488.9291 375.9909) (thermalWidth 0.381))
+ (thermal (pt 484.9712 405.54624) (pt 485.30448 405.21296) (thermalWidth 0.381))
+ (thermal (pt 575.272 255.312) (pt 574.75912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 576.288 255.312) (pt 576.80088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 572.732 255.312) (pt 572.21912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 573.748 255.312) (pt 574.26088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 577.812 255.312) (pt 577.29912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 578.828 255.312) (pt 579.34088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 578.828 256.328) (pt 579.34088 256.84088) (thermalWidth 0.381))
+ (thermal (pt 570.192 255.312) (pt 569.67912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 571.208 255.312) (pt 571.72088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 562.2545 254.9945) (pt 561.77562 254.51562) (thermalWidth 0.381))
+ (thermal (pt 563.9055 254.9945) (pt 564.38438 254.51562) (thermalWidth 0.381))
+ (thermal (pt 562.2545 256.6455) (pt 561.77562 257.12438) (thermalWidth 0.381))
+ (thermal (pt 522.73 290.856) (pt 523.10676 291.23276) (thermalWidth 0.381))
+ (thermal (pt 521.83 290.856) (pt 521.45324 291.23276) (thermalWidth 0.381))
+ (thermal (pt 521.83 290.456) (pt 521.45324 290.07924) (thermalWidth 0.381))
+ (thermal (pt 522.73 290.456) (pt 523.10676 290.07924) (thermalWidth 0.381))
+ (thermal (pt 583.7881 321.101) (pt 584.06115 320.70876) (thermalWidth 0.381))
+ (thermal (pt 518.6 343.12) (pt 518.26743 342.78743) (thermalWidth 0.381))
+ (thermal (pt 518.8 343.12) (pt 519.13257 342.78743) (thermalWidth 0.381))
+ (thermal (pt 518.6 343.32) (pt 518.26743 343.65257) (thermalWidth 0.381))
+ (thermal (pt 533.6 343.12) (pt 533.26743 342.78743) (thermalWidth 0.381))
+ (thermal (pt 533.8 343.12) (pt 534.13257 342.78743) (thermalWidth 0.381))
+ (thermal (pt 533.8 343.32) (pt 534.13257 343.65257) (thermalWidth 0.381))
+ (thermal (pt 533.8 358.12) (pt 534.13257 357.78743) (thermalWidth 0.381))
+ (thermal (pt 533.8 358.32) (pt 534.13257 358.65257) (thermalWidth 0.381))
+ (thermal (pt 533.6 358.32) (pt 533.26743 358.65257) (thermalWidth 0.381))
+ (thermal (pt 585.6335 369.0705) (pt 585.36045 369.46274) (thermalWidth 0.381))
+ (thermal (pt 585.8875 369.0705) (pt 586.16055 369.46274) (thermalWidth 0.381))
+ (thermal (pt 584.8334 369.0705) (pt 584.56035 369.46274) (thermalWidth 0.381))
+ (thermal (pt 585.0874 369.0705) (pt 585.36045 369.46274) (thermalWidth 0.381))
+ (thermal (pt 641.4595 348.6705) (pt 641.93838 348.19162) (thermalWidth 0.381))
+ (thermal (pt 640.5405 348.6705) (pt 640.06162 348.19162) (thermalWidth 0.381))
+ (thermal (pt 371.96 366.76) (pt 372.46934 367.26934) (thermalWidth 0.381))
+ (thermal (pt 370.96 366.76) (pt 370.45066 367.26934) (thermalWidth 0.381))
+ (thermal (pt 370.96 365.76) (pt 370.45066 365.25066) (thermalWidth 0.381))
+ (thermal (pt 371.96 365.76) (pt 372.46934 365.25066) (thermalWidth 0.381))
+ (thermal (pt 371.96 371.84) (pt 372.46934 372.34934) (thermalWidth 0.381))
+ (thermal (pt 370.96 371.84) (pt 370.45066 372.34934) (thermalWidth 0.381))
+ (thermal (pt 370.96 370.84) (pt 370.45066 370.33066) (thermalWidth 0.381))
+ (thermal (pt 371.96 370.84) (pt 372.46934 370.33066) (thermalWidth 0.381))
+ (thermal (pt 377.04 366.76) (pt 377.54934 367.26934) (thermalWidth 0.381))
+ (thermal (pt 376.04 366.76) (pt 375.53066 367.26934) (thermalWidth 0.381))
+ (thermal (pt 376.04 365.76) (pt 375.53066 365.25066) (thermalWidth 0.381))
+ (thermal (pt 377.04 365.76) (pt 377.54934 365.25066) (thermalWidth 0.381))
+ (thermal (pt 377.04 371.84) (pt 377.54934 372.34934) (thermalWidth 0.381))
+ (thermal (pt 376.04 371.84) (pt 375.53066 372.34934) (thermalWidth 0.381))
+ (thermal (pt 376.04 370.84) (pt 375.53066 370.33066) (thermalWidth 0.381))
+ (thermal (pt 377.04 370.84) (pt 377.54934 370.33066) (thermalWidth 0.381))
+ (thermal (pt 371.96 331.96) (pt 372.46934 332.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 331.96) (pt 370.45066 332.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 330.96) (pt 370.45066 330.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 330.96) (pt 372.46934 330.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 337.04) (pt 372.46934 337.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 337.04) (pt 370.45066 337.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 336.04) (pt 370.45066 335.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 336.04) (pt 372.46934 335.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 331.96) (pt 377.54934 332.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 331.96) (pt 375.53066 332.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 330.96) (pt 375.53066 330.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 330.96) (pt 377.54934 330.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 337.04) (pt 377.54934 337.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 337.04) (pt 375.53066 337.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 336.04) (pt 375.53066 335.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 336.04) (pt 377.54934 335.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 307.96) (pt 372.56934 308.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 307.96) (pt 370.55066 308.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 306.96) (pt 370.55066 306.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 306.96) (pt 372.56934 306.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 313.04) (pt 372.56934 313.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 313.04) (pt 370.55066 313.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 312.04) (pt 370.55066 311.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 312.04) (pt 372.56934 311.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 307.96) (pt 377.64934 308.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 307.96) (pt 375.63066 308.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 306.96) (pt 375.63066 306.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 306.96) (pt 377.64934 306.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 313.04) (pt 377.64934 313.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 313.04) (pt 375.63066 313.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 312.04) (pt 375.63066 311.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 312.04) (pt 377.64934 311.53066) (thermalWidth 0.381))
+ (thermal (pt 548.6 340.18) (pt 548.26743 339.84743) (thermalWidth 0.381))
+ (thermal (pt 548.6 361.38) (pt 548.26743 361.71257) (thermalWidth 0.381))
+ (thermal (pt 548.6 361.18) (pt 548.21966 360.91893) (thermalWidth 0.381))
+ (thermal (pt 548.8 361.38) (pt 549.07943 361.74808) (thermalWidth 0.381))
+ (thermal (pt 569.8 361.38) (pt 570.13257 361.71257) (thermalWidth 0.381))
+ (thermal (pt 521.9495 400.0895) (pt 522.42838 400.56838) (thermalWidth 0.381))
+ (thermal (pt 520.3305 400.0895) (pt 519.85162 400.56838) (thermalWidth 0.381))
+ (thermal (pt 520.3305 398.6705) (pt 519.85162 398.19162) (thermalWidth 0.381))
+ (thermal (pt 521.9495 398.6705) (pt 522.42838 398.19162) (thermalWidth 0.381))
+ (thermal (pt 544.08 399.14) (pt 543.65904 398.71904) (thermalWidth 0.381))
+ (thermal (pt 544.68 399.74) (pt 545.10096 400.16096) (thermalWidth 0.381))
+ (thermal (pt 544.08 399.74) (pt 543.65904 400.16096) (thermalWidth 0.381))
+ (thermal (pt 552.68 399.14) (pt 553.10096 398.71904) (thermalWidth 0.381))
+ (thermal (pt 552.68 399.74) (pt 553.10096 400.16096) (thermalWidth 0.381))
+ (thermal (pt 552.08 399.74) (pt 551.65904 400.16096) (thermalWidth 0.381))
+ (thermal (pt 638.4136 245.1664) (pt 637.94562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 244.3536) (pt 637.94562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 244.3536) (pt 639.69438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 245.1664) (pt 639.69438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 321.3664) (pt 637.94562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 320.5536) (pt 637.94562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 320.5536) (pt 639.69438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 321.3664) (pt 639.69438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 245.1664) (pt 640.48562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 244.3536) (pt 640.48562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 244.3536) (pt 642.23438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 245.1664) (pt 642.23438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 245.1664) (pt 643.02562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 244.3536) (pt 643.02562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 244.3536) (pt 644.77438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 245.1664) (pt 644.77438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 321.3664) (pt 640.48562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 320.5536) (pt 640.48562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 320.5536) (pt 642.23438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 321.3664) (pt 642.23438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 321.3664) (pt 643.02562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 320.5536) (pt 643.02562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 320.5536) (pt 644.77438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 321.3664) (pt 644.77438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 247.7064) (pt 637.94562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 246.8936) (pt 637.94562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 246.8936) (pt 639.69438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 247.7064) (pt 639.69438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 323.9064) (pt 637.94562 324.37438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 323.0936) (pt 637.94562 322.62562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 323.0936) (pt 639.69438 322.62562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 323.9064) (pt 639.69438 324.37438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 247.7064) (pt 640.48562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 246.8936) (pt 640.48562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 246.8936) (pt 642.23438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 247.7064) (pt 642.23438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 247.7064) (pt 643.02562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 246.8936) (pt 643.02562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 246.8936) (pt 644.77438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 247.7064) (pt 644.77438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 323.9064) (pt 640.48562 324.37438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 323.0936) (pt 640.48562 322.62562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 323.0936) (pt 642.23438 322.62562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 323.9064) (pt 642.23438 324.37438) (thermalWidth 0.381))
+ (thermal (pt 643.2777 324.1223) (pt 642.79882 324.60118) (thermalWidth 0.381))
+ (thermal (pt 643.2777 322.8777) (pt 642.79882 322.39882) (thermalWidth 0.381))
+ (thermal (pt 644.5223 322.8777) (pt 645.00118 322.39882) (thermalWidth 0.381))
+ (thermal (pt 644.5223 324.1223) (pt 645.00118 324.60118) (thermalWidth 0.381))
+ (thermal (pt 638.5136 378.4664) (pt 638.04562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 377.6536) (pt 638.04562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 377.6536) (pt 639.79438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 378.4664) (pt 639.79438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 454.6664) (pt 638.04562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 453.8536) (pt 638.04562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 453.8536) (pt 639.79438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 454.6664) (pt 639.79438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 378.4664) (pt 640.58562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 377.6536) (pt 640.58562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 377.6536) (pt 642.33438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 378.4664) (pt 642.33438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 378.4664) (pt 643.12562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 377.6536) (pt 643.12562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 377.6536) (pt 644.87438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 378.4664) (pt 644.87438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 454.6664) (pt 640.58562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 453.8536) (pt 640.58562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 453.8536) (pt 642.33438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 454.6664) (pt 642.33438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 454.6664) (pt 643.12562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 453.8536) (pt 643.12562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 453.8536) (pt 644.87438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 454.6664) (pt 644.87438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 381.0064) (pt 638.04562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 380.1936) (pt 638.04562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 380.1936) (pt 639.79438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 381.0064) (pt 639.79438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 457.2064) (pt 638.04562 457.67438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 456.3936) (pt 638.04562 455.92562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 456.3936) (pt 639.79438 455.92562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 457.2064) (pt 639.79438 457.67438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 381.0064) (pt 640.58562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 380.1936) (pt 640.58562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 380.1936) (pt 642.33438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 381.0064) (pt 642.33438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 381.0064) (pt 643.12562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 380.1936) (pt 643.12562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 380.1936) (pt 644.87438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 381.0064) (pt 644.87438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 457.2064) (pt 640.58562 457.67438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 456.3936) (pt 640.58562 455.92562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 456.3936) (pt 642.33438 455.92562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 457.2064) (pt 642.33438 457.67438) (thermalWidth 0.381))
+ (thermal (pt 643.3777 457.4223) (pt 642.89882 457.90118) (thermalWidth 0.381))
+ (thermal (pt 643.3777 456.1777) (pt 642.89882 455.69882) (thermalWidth 0.381))
+ (thermal (pt 644.6223 456.1777) (pt 645.10118 455.69882) (thermalWidth 0.381))
+ (thermal (pt 644.6223 457.4223) (pt 645.10118 457.90118) (thermalWidth 0.381))
+ )
+ )
+ )
+ (layerContents (layerNumRef 2)
+ (line (pt 379.708 285.08) (pt 379.708 282.292) (width 0.5) (netNameRef "NET00016") )
+ (line (pt 380.208 295.74) (pt 376.914 292.446) (width 0.7) (netNameRef "NET00042") )
+ (line (pt 374.1 310.0) (pt 380.1 310.0) (width 0.5) (netNameRef "NET00146") )
+ (line (pt 374.1 322.0) (pt 380.4 322.0) (width 0.5) (netNameRef "NET00144") )
+ (line (pt 374.0 334.0) (pt 379.9 334.0) (width 0.5) (netNameRef "NET00010") )
+ (line (pt 374.0 346.0) (pt 380.0 346.0) (width 0.5) (netNameRef "NET00011") )
+ (line (pt 380.0 346.0) (pt 380.1 345.9) (width 0.5) (netNameRef "NET00011") )
+ (line (pt 374.0 368.8) (pt 379.88 368.8) (width 0.5) (netNameRef "NET00012") )
+ (line (pt 379.88 368.8) (pt 379.94 368.86) (width 0.5) (netNameRef "NET00012") )
+ (line (pt 374.0 423.0) (pt 380.02 423.0) (width 0.5) (netNameRef "NET00020") )
+ (line (pt 380.02 423.0) (pt 380.16 422.86) (width 0.5) (netNameRef "NET00020") )
+ (line (pt 384.08 257.26) (pt 383.14 257.26) (width 0.4) (netNameRef "MAX-TCK") )
+ (line (pt 388.14 262.3) (pt 388.14 263.1) (width 0.4) (netNameRef "+5V") )
+ (line (pt 388.14 263.1) (pt 388.14 264.12) (width 0.4) (netNameRef "+5V") )
+ (line (pt 388.14 264.12) (pt 388.12 264.14) (width 0.4) (netNameRef "+5V") )
+ (line (pt 386.54 260.7) (pt 386.54 259.72) (width 0.4) (netNameRef "MAX-TCK") )
+ (line (pt 386.54 261.5) (pt 385.42 261.5) (width 0.4) (netNameRef "MAX-TDO") )
+ (line (pt 383.72 259.8) (pt 383.14 259.8) (width 0.4) (netNameRef "MAX-TDO") )
+ (line (pt 385.42 261.5) (pt 383.72 259.8) (width 0.4) (netNameRef "MAX-TDO") )
+ (line (pt 386.54 262.3) (pt 383.18 262.3) (width 0.4) (netNameRef "MAX-TMS") )
+ (line (pt 383.18 262.3) (pt 383.14 262.34) (width 0.4) (netNameRef "MAX-TMS") )
+ (line (pt 386.54 263.1) (pt 386.06 263.1) (width 0.4) (netNameRef "MAX-TDI") )
+ (line (pt 386.06 263.1) (pt 385.34 263.82) (width 0.4) (netNameRef "MAX-TDI") )
+ (line (pt 385.34 263.82) (pt 385.34 265.22) (width 0.4) (netNameRef "MAX-TDI") )
+ (line (pt 388.14 262.3) (pt 388.14 261.5) (width 0.4) (netNameRef "+5V") )
+ (line (pt 381.8 280.2) (pt 381.8 277.64) (width 0.5) (netNameRef "NET00016") )
+ (line (pt 385.54 285.2) (pt 383.12 287.62) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 383.12 287.62) (pt 381.74 287.62) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 382.18 295.8) (pt 382.24 295.74) (width 0.7) (netNameRef "NET00042") )
+ (line (pt 385.22 295.74) (pt 385.24 295.76) (width 0.7) (netNameRef "GND") )
+ (line (pt 383.84 295.74) (pt 385.22 295.74) (width 0.7) (netNameRef "GND") )
+ (line (pt 383.78 297.56) (pt 385.2 297.56) (width 0.7) (netNameRef "GND") )
+ (line (pt 389.44 260.7) (pt 389.46 260.72) (width 0.4) (netNameRef "GND") )
+ (line (pt 417.3 332.4) (pt 416.0 332.4) (width 0.5) (netNameRef "GND") )
+ (line (pt 417.4 332.5) (pt 417.3 332.4) (width 0.5) (netNameRef "GND") )
+ (line (pt 421.5 326.4) (pt 420.7 327.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 422.3 326.4) (pt 421.5 326.4) (width 0.5) (netNameRef "GND") )
+ (line (pt 423.7 332.1) (pt 423.4 332.4) (width 0.5) (netNameRef "+5V") )
+ (line (pt 423.7 331.3) (pt 423.7 332.1) (width 0.5) (netNameRef "+5V") )
+ (line (pt 421.7 332.4) (pt 423.4 332.4) (width 0.5) (netNameRef "+5V") )
+ (line (pt 419.5 332.4) (pt 419.4 332.5) (width 0.5) (netNameRef "+5V") )
+ (line (pt 421.7 332.4) (pt 419.5 332.4) (width 0.5) (netNameRef "+5V") )
+ (line (pt 422.4 329.7) (pt 421.7 330.4) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 422.4 328.3) (pt 422.4 329.7) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 423.7 328.3) (pt 422.4 328.3) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 423.9 328.1) (pt 423.7 328.3) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 424.3 328.5) (pt 423.9 328.1) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 424.3 329.4) (pt 424.3 328.5) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 425.3 331.3) (pt 425.3 332.4) (width 0.5) (netNameRef "GND") )
+ (line (pt 420.8 328.3) (pt 420.7 328.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 427.3 329.3) (pt 427.2 329.4) (width 0.65) (netNameRef "NET00541") )
+ (line (pt 428.7 329.3) (pt 427.3 329.3) (width 0.65) (netNameRef "NET00541") )
+ (line (pt 427.2 331.2) (pt 427.2 329.4) (width 0.5) (netNameRef "NET00541") )
+ (line (pt 430.3 329.3) (pt 430.3 330.7) (width 0.5) (netNameRef "GND") )
+ (line (pt 429.8 331.2) (pt 430.3 330.7) (width 0.5) (netNameRef "GND") )
+ (line (pt 428.8 331.2) (pt 429.8 331.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 438.04 298.2) (pt 440.28 298.2) (width 1.0) (netNameRef "+5V") )
+ (line (pt 440.28 298.2) (pt 440.32 298.16) (width 1.0) (netNameRef "+5V") )
+ (line (pt 436.04 298.2) (pt 434.92 298.2) (width 1.0) (netNameRef "GND") )
+ (line (pt 440.86 332.1) (pt 440.84 332.08) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 438.64 333.66) (pt 440.86 333.66) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 440.86 333.66) (pt 440.86 332.1) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 435.24 333.66) (pt 435.22 333.64) (width 0.4) (netNameRef "GND") )
+ (line (pt 436.64 333.66) (pt 435.24 333.66) (width 0.4) (netNameRef "GND") )
+ (line (pt 448.46 325.44) (pt 447.56 326.34) (width 0.5) (netNameRef "NET00032") )
+ (line (pt 447.56 326.34) (pt 447.56 326.7) (width 0.5) (netNameRef "NET00032") )
+ (line (pt 446.6 326.3) (pt 445.5 325.2) (width 0.5) (netNameRef "NET00026") )
+ (line (pt 443.5 325.2) (pt 442.46 326.24) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 446.4 333.16) (pt 445.7 333.16) (width 0.4) (netNameRef "+3,3V") )
+ (line (pt 445.7 333.16) (pt 445.42 332.88) (width 0.4) (netNameRef "+3,3V") )
+ (line (pt 443.92 333.66) (pt 444.16 333.42) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 442.68 331.9) (pt 442.68 331.14) (width 0.4) (netNameRef "+3,3V") )
+ (line (pt 442.68 331.14) (pt 442.36 330.82) (width 0.4) (netNameRef "+3,3V") )
+ (line (pt 442.86 333.66) (pt 443.92 333.66) (width 0.4) (netNameRef "NET00027") )
+ (line (pt 442.38 328.4) (pt 442.46 328.32) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 446.6 328.1) (pt 447.64 328.1) (width 0.5) (netNameRef "NET00026") )
+ (line (pt 447.64 328.1) (pt 448.76 329.22) (width 0.5) (netNameRef "NET00026") )
+ (line (pt 445.0 328.1) (pt 442.68 328.1) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 442.68 328.1) (pt 442.46 328.32) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 444.28 331.2) (pt 444.92 330.56) (width 0.4) (netNameRef "GND") )
+ (line (pt 446.4 331.02) (pt 445.9 330.52) (width 0.4) (netNameRef "GND") )
+ (line (pt 444.28 331.9) (pt 444.28 331.2) (width 0.4) (netNameRef "GND") )
+ (line (pt 446.4 331.56) (pt 446.4 331.02) (width 0.4) (netNameRef "GND") )
+ (line (pt 451.5 325.44) (pt 451.4 325.5) (width 0.4) (netNameRef "GND") )
+ (line (pt 450.12 325.5) (pt 451.4 325.5) (width 0.5) (netNameRef "GND") )
+ (line (pt 451.46 325.44) (pt 451.4 325.5) (width 0.4) (netNameRef "GND") )
+ (line (pt 451.5 325.44) (pt 451.46 325.44) (width 0.4) (netNameRef "GND") )
+ (line (pt 450.06 325.44) (pt 450.12 325.5) (width 0.5) (netNameRef "GND") )
+ (line (pt 453.74 329.42) (pt 454.32 328.84) (width 0.3) (netNameRef "NET00040") )
+ (line (pt 454.32 328.84) (pt 455.06 328.84) (width 0.3) (netNameRef "NET00040") )
+ (line (pt 454.86 330.9) (pt 454.86 330.54) (width 0.5) (netNameRef "NET00040") )
+ (line (pt 454.86 330.54) (pt 453.74 329.42) (width 0.5) (netNameRef "NET00040") )
+ (line (pt 457.66 328.84) (pt 457.68 328.86) (width 0.4) (netNameRef "GND") )
+ (line (pt 462.1 335.52) (pt 464.5 335.52) (width 0.4) (netNameRef "NET00385") )
+ (line (pt 466.1 335.52) (pt 467.4 335.52) (width 0.4) (netNameRef "20MHZ") )
+ (line (pt 478.04 354.48) (pt 478.04 355.72) (width 1.0) (netNameRef "GND") )
+ (line (pt 478.04 355.72) (pt 478.28 355.96) (width 1.0) (netNameRef "GND") )
+ (line (pt 479.2 416.2) (pt 479.18 416.22) (width 0.3) (netNameRef "NET00001") )
+ (line (pt 485.52 292.16) (pt 483.4 292.16) (width 1.0) (netNameRef "+5V") )
+ (line (pt 483.4 292.16) (pt 483.36 292.2) (width 1.0) (netNameRef "+5V") )
+ (line (pt 485.64 311.38) (pt 485.66 311.36) (width 1.0) (netNameRef "+2,5V") )
+ (line (pt 484.8 311.38) (pt 484.84 311.42) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 483.18 311.38) (pt 484.8 311.38) (width 1.0) (netNameRef "+2,5V") )
+ (line (pt 484.8 311.38) (pt 485.64 311.38) (width 1.0) (netNameRef "+2,5V") )
+ (line (pt 484.84 314.9) (pt 485.02 315.08) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 485.02 315.08) (pt 487.12 315.08) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.12 315.08) (pt 487.12 316.18) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.12 316.18) (pt 487.4 316.46) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.38 317.56) (pt 487.4 317.54) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.4 317.58) (pt 487.38 317.56) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.12 312.88) (pt 487.12 315.08) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 481.74 410.84) (pt 481.76 410.82) (width 0.3) (netNameRef "NET00003") )
+ (line (pt 481.76 410.82) (pt 482.82 410.82) (width 0.3) (netNameRef "NET00003") )
+ (line (pt 481.74 414.26) (pt 481.74 416.18) (width 0.3) (netNameRef "NET00001") )
+ (line (pt 481.74 416.18) (pt 481.76 416.2) (width 0.3) (netNameRef "NET00001") )
+ (line (pt 483.38 416.18) (pt 484.5 416.18) (width 0.5) (netNameRef "GND") )
+ (line (pt 483.36 416.2) (pt 483.38 416.18) (width 0.5) (netNameRef "GND") )
+ (line (pt 491.4 302.9) (pt 493.2 302.9) (width 1.0) (netNameRef "GND") )
+ (line (pt 490.38 317.58) (pt 490.38 316.34) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 490.38 316.34) (pt 490.7 316.02) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 490.82 314.64) (pt 490.7 314.76) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 490.7 314.76) (pt 490.7 316.02) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 490.82 314.64) (pt 490.82 313.7) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 488.72 315.08) (pt 489.16 314.64) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 489.16 314.64) (pt 490.82 314.64) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 489.94 319.56) (pt 490.5 319.0) (width 0.5) (netNameRef "GND") )
+ (line (pt 494.86 315.2) (pt 494.72 315.34) (width 0.5) (netNameRef "GND") )
+ (line (pt 494.02 314.64) (pt 494.72 315.34) (width 0.9) (netNameRef "GND") )
+ (line (pt 488.94 319.56) (pt 489.94 319.56) (width 0.5) (netNameRef "GND") )
+ (line (pt 494.86 313.84) (pt 494.86 315.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 492.82 314.64) (pt 494.02 314.64) (width 0.9) (netNameRef "GND") )
+ (line (pt 493.8 324.64) (pt 494.06 324.64) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 489.38 323.52) (pt 490.04 323.52) (width 0.5) (netNameRef "+2,5V") )
+ (line (pt 490.04 323.52) (pt 490.5 323.06) (width 0.5) (netNameRef "+2,5V") )
+ (line (pt 493.4 323.74) (pt 493.4 322.12) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 493.8 323.94) (pt 493.8 324.64) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 488.94 321.16) (pt 489.82 321.16) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 489.82 321.16) (pt 490.46 320.52) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 492.9 358.8) (pt 492.0 358.8) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 492.0 358.8) (pt 491.3 359.5) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 489.78 374.2) (pt 488.18 374.2) (width 0.5) (netNameRef "NET00350") )
+ (line (pt 488.18 374.2) (pt 488.1 374.28) (width 0.5) (netNameRef "NET00350") )
+ (line (pt 488.1 379.36) (pt 489.72 379.36) (width 0.5) (netNameRef "+5V") )
+ (line (pt 489.72 379.36) (pt 489.8 379.28) (width 0.5) (netNameRef "+5V") )
+ (line (pt 488.96 377.68) (pt 488.1 376.82) (width 0.5) (netNameRef "GND") )
+ (line (pt 489.12 375.8) (pt 488.1 376.82) (width 0.5) (netNameRef "GND") )
+ (line (pt 489.8 377.68) (pt 488.96 377.68) (width 0.5) (netNameRef "GND") )
+ (line (pt 489.78 375.8) (pt 489.12 375.8) (width 0.5) (netNameRef "GND") )
+ (line (pt 490.12 410.12) (pt 490.12 411.04) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 492.06 410.12) (pt 492.92 410.98) (width 0.5) (netNameRef "GND") )
+ (line (pt 491.72 410.12) (pt 492.06 410.12) (width 0.5) (netNameRef "GND") )
+ (line (pt 500.58 315.34) (pt 500.58 317.16) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 500.56 320.92) (pt 499.96 320.92) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 499.96 320.92) (pt 499.44 320.4) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 496.9 324.98) (pt 496.4 324.98) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 496.4 324.98) (pt 495.7 324.28) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 502.54 323.74) (pt 502.5 323.7) (width 0.6) (netNameRef "+2,5V") )
+ (line (pt 496.36 326.58) (pt 495.74 327.2) (width 0.4) (netNameRef "GND") )
+ (line (pt 496.9 326.58) (pt 496.36 326.58) (width 0.4) (netNameRef "GND") )
+ (line (pt 501.96 357.48) (pt 501.96 356.5) (width 0.5) (netNameRef "+5V") )
+ (line (pt 501.96 356.5) (pt 501.68 356.22) (width 0.5) (netNameRef "+5V") )
+ (line (pt 502.2 354.7) (pt 502.2 355.7) (width 0.5) (netNameRef "+5V") )
+ (line (pt 502.2 355.7) (pt 501.68 356.22) (width 0.5) (netNameRef "+5V") )
+ (line (pt 506.02 323.74) (pt 506.48 324.2) (width 0.6) (netNameRef "GND") )
+ (line (pt 505.26 323.74) (pt 506.02 323.74) (width 0.6) (netNameRef "GND") )
+ (line (pt 508.32 353.26) (pt 509.32 353.26) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 509.32 353.26) (pt 509.5 353.08) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 509.3 354.86) (pt 509.48 355.04) (width 0.5) (netNameRef "GND") )
+ (line (pt 504.2 353.4) (pt 504.74 352.86) (width 0.5) (netNameRef "GND") )
+ (line (pt 504.72 357.48) (pt 504.86 357.62) (width 0.5) (netNameRef "GND") )
+ (line (pt 504.2 355.42) (pt 504.8 356.02) (width 0.5) (netNameRef "GND") )
+ (line (pt 508.32 354.86) (pt 509.3 354.86) (width 0.5) (netNameRef "GND") )
+ (line (pt 504.2 354.7) (pt 504.2 353.4) (width 0.5) (netNameRef "GND") )
+ (line (pt 503.56 357.48) (pt 504.72 357.48) (width 0.5) (netNameRef "GND") )
+ (line (pt 504.2 354.7) (pt 504.2 355.42) (width 0.5) (netNameRef "GND") )
+ (line (pt 509.68 398.72) (pt 508.4 398.72) (width 0.5) (netNameRef "GND") )
+ (line (pt 512.6985 307.1985) (pt 514.1015 307.1985) (width 0.127) (netNameRef "A4") )
+ (line (pt 514.1015 307.1985) (pt 514.9 306.4) (width 0.127) (netNameRef "A4") )
+ (line (pt 513.8014 307.9986) (pt 512.6985 307.9986) (width 0.127) (netNameRef "A5") )
+ (line (pt 512.6985 308.7987) (pt 513.5013 308.7987) (width 0.127) (netNameRef "A6") )
+ (line (pt 513.3012 309.5988) (pt 512.6985 309.5988) (width 0.127) (netNameRef "A7") )
+ (line (pt 513.3011 310.3989) (pt 512.6985 310.3989) (width 0.127) (netNameRef "A8") )
+ (line (pt 512.6985 311.199) (pt 513.401 311.199) (width 0.127) (netNameRef "A9") )
+ (line (pt 512.6985 311.9991) (pt 513.4009 311.9991) (width 0.127) (netNameRef "A11") )
+ (line (pt 513.4009 311.9991) (pt 517.3 308.1) (width 0.127) (netNameRef "A11") )
+ (line (pt 516.5 307.2) (pt 513.3011 310.3989) (width 0.127) (netNameRef "A8") )
+ (line (pt 513.401 311.199) (pt 516.9 307.7) (width 0.127) (netNameRef "A9") )
+ (line (pt 514.9 306.4) (pt 514.9 305.0) (width 0.127) (netNameRef "A4") )
+ (line (pt 517.7 305.6) (pt 517.7 308.5) (width 0.127) (netNameRef "A12") )
+ (line (pt 517.3 308.1) (pt 517.3 305.5) (width 0.127) (netNameRef "A11") )
+ (line (pt 516.9 307.7) (pt 516.9 305.5) (width 0.127) (netNameRef "A9") )
+ (line (pt 516.5 305.3) (pt 516.5 307.2) (width 0.127) (netNameRef "A8") )
+ (line (pt 516.1 306.8) (pt 513.3012 309.5988) (width 0.127) (netNameRef "A7") )
+ (line (pt 516.1 305.2) (pt 516.1 306.8) (width 0.127) (netNameRef "A7") )
+ (line (pt 513.5013 308.7987) (pt 515.7 306.6) (width 0.127) (netNameRef "A6") )
+ (line (pt 515.7 306.6) (pt 515.7 305.2) (width 0.127) (netNameRef "A6") )
+ (line (pt 515.3 306.5) (pt 513.8014 307.9986) (width 0.127) (netNameRef "A5") )
+ (line (pt 515.3 305.0) (pt 515.3 306.5) (width 0.127) (netNameRef "A5") )
+ (line (pt 511.2015 307.1985) (pt 510.7 307.7) (width 0.127) (netNameRef "A4") )
+ (line (pt 512.6985 307.1985) (pt 511.2015 307.1985) (width 0.127) (netNameRef "A4") )
+ (line (pt 513.8016 306.3984) (pt 514.1 306.1) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6985 306.3984) (pt 513.8016 306.3984) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6985 315.1995) (pt 514.2995 315.1995) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 514.2995 315.1995) (pt 514.3 315.2) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 512.6985 314.3994) (pt 514.2994 314.3994) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 514.2994 314.3994) (pt 514.3 314.4) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 512.6985 313.5993) (pt 514.2993 313.5993) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 514.2993 313.5993) (pt 514.3 313.6) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 513.4008 312.7992) (pt 512.6985 312.7992) (width 0.127) (netNameRef "A12") )
+ (line (pt 512.6985 318.3999) (pt 514.2999 318.3999) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 516.6198 317.5998) (pt 512.6985 317.5998) (width 0.127) (netNameRef "D8") )
+ (line (pt 512.6985 319.2) (pt 517.0 319.2) (width 0.127) (netNameRef "D9") )
+ (line (pt 514.2999 318.3999) (pt 514.22 318.4) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 511.4997 316.7997) (pt 510.88 316.18) (width 0.5) (netNameRef "GND") )
+ (line (pt 512.6985 316.7997) (pt 511.4997 316.7997) (width 0.5) (netNameRef "GND") )
+ (line (pt 512.6985 316.7997) (pt 512.6988 316.8) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.6988 316.8) (pt 512.6985 316.7997) (width 0.3) (netNameRef "GND") )
+ (line (pt 512.7 321.6) (pt 514.58 321.6) (width 0.127) (netNameRef "D11") )
+ (line (pt 512.7 322.4) (pt 515.78 322.4) (width 0.127) (netNameRef "D12") )
+ (line (pt 515.78 322.4) (pt 515.8 322.38) (width 0.127) (netNameRef "D12") )
+ (line (pt 512.7 324.0) (pt 516.2 324.0) (width 0.127) (netNameRef "D13") )
+ (line (pt 516.2 324.0) (pt 516.22 324.02) (width 0.127) (netNameRef "D13") )
+ (line (pt 512.7 324.8) (pt 516.76 324.8) (width 0.127) (netNameRef "D14") )
+ (line (pt 516.76 324.8) (pt 516.78 324.82) (width 0.127) (netNameRef "D14") )
+ (line (pt 512.7 326.4) (pt 514.58 326.4) (width 0.127) (netNameRef "D15") )
+ (line (pt 512.7 323.2) (pt 511.18 323.2) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 511.48 320.8) (pt 511.1 320.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 512.7 327.2) (pt 511.16 327.2) (width 0.4) (netNameRef "GND") )
+ (line (pt 512.7 325.6) (pt 511.16 325.6) (width 0.4) (netNameRef "GND") )
+ (line (pt 512.7 320.8) (pt 511.48 320.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 512.54 372.94) (pt 512.54 371.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 512.54 374.94) (pt 512.6 375.0) (width 0.5) (netNameRef "+5V") )
+ (line (pt 512.6 375.0) (pt 512.6 376.56) (width 0.5) (netNameRef "+5V") )
+ (line (pt 512.54 398.72) (pt 512.6 398.66) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 511.28 398.72) (pt 512.54 398.72) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 522.0 304.4) (pt 525.4 304.4) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 524.7015 306.4017) (pt 524.6998 306.4) (width 0.127) (netNameRef "VDDEXT") )
+ (line (pt 521.5982 307.2018) (pt 524.7015 307.2018) (width 0.127) (netNameRef "A3") )
+ (line (pt 524.6998 306.4) (pt 523.3 306.4) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 518.5 310.2) (pt 518.5 308.4) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 521.8981 308.0019) (pt 521.0 308.9) (width 0.127) (netNameRef "A2") )
+ (line (pt 522.698 308.802) (pt 521.8 309.7) (width 0.127) (netNameRef "A1") )
+ (line (pt 523.0979 309.6021) (pt 522.3 310.4) (width 0.127) (netNameRef "A0") )
+ (line (pt 520.0 308.1) (pt 520.7 308.1) (width 0.127) (netNameRef "A3") )
+ (line (pt 524.7015 308.0019) (pt 521.8981 308.0019) (width 0.127) (netNameRef "A2") )
+ (line (pt 524.7015 308.802) (pt 522.698 308.802) (width 0.127) (netNameRef "A1") )
+ (line (pt 524.7015 309.6021) (pt 523.0979 309.6021) (width 0.127) (netNameRef "A0") )
+ (line (pt 520.7 308.1) (pt 521.5982 307.2018) (width 0.127) (netNameRef "A3") )
+ (line (pt 518.5 308.4) (pt 522.0 304.9) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 524.7 311.198) (pt 524.718 311.18) (width 0.127) (netNameRef "A18") )
+ (line (pt 518.9 310.6) (pt 518.9 308.6) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 518.9 308.6) (pt 522.18 305.32) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 524.7 315.9986) (pt 524.9014 316.2) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 524.7 317.5988) (pt 522.7212 317.5988) (width 0.127) (netNameRef "D7") )
+ (line (pt 522.7212 317.5988) (pt 522.1 318.22) (width 0.127) (netNameRef "D7") )
+ (line (pt 524.7 319.199) (pt 522.079 319.199) (width 0.127) (netNameRef "D6") )
+ (line (pt 522.079 319.199) (pt 521.08 318.2) (width 0.127) (netNameRef "D6") )
+ (line (pt 524.7 313.5983) (pt 524.7183 313.58) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 524.7 315.9986) (pt 524.7214 316.02) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 524.7 316.7987) (pt 524.6987 316.8) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 524.6987 316.8) (pt 523.0 316.8) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 523.2002 325.5998) (pt 523.2 325.6) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 524.7 325.5998) (pt 523.2002 325.5998) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 524.7 327.2) (pt 523.2 327.2) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 524.7 320.7992) (pt 523.3008 320.7992) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.3008 320.7992) (pt 523.3 320.8) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 523.3005 323.1995) (pt 523.3 323.2) (width 0.3) (netNameRef "GND") )
+ (line (pt 524.7 323.1995) (pt 523.3005 323.1995) (width 0.3) (netNameRef "GND") )
+ (line (pt 524.16 349.8) (pt 524.14 349.78) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 519.24 343.46) (pt 519.24 343.76) (width 0.5) (netNameRef "GND") )
+ (line (pt 519.2 357.72) (pt 518.6 357.72) (width 0.5) (netNameRef "GND") )
+ (line (pt 524.66 352.22) (pt 525.18 351.7) (width 0.5) (netNameRef "GND") )
+ (line (pt 524.16 352.22) (pt 524.66 352.22) (width 0.5) (netNameRef "GND") )
+ (line (pt 519.8 358.78) (pt 519.82 358.76) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 519.82 358.76) (pt 520.7 358.76) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 523.4 406.7) (pt 524.7 406.7) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 524.7 406.7) (pt 525.3 406.1) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 525.3 405.9) (pt 525.3 406.1) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 523.4 408.7) (pt 523.4 410.2) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 523.7 409.9) (pt 523.4 410.2) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 523.7 409.9) (pt 523.4 410.2) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 526.2979 310.3979) (pt 526.3 310.4) (width 0.127) (netNameRef "SA10") )
+ (line (pt 528.5019 311.9981) (pt 528.9 311.6) (width 0.127) (netNameRef "A17") )
+ (line (pt 528.8018 307.2018) (pt 532.24 310.64) (width 0.127) (netNameRef "A3") )
+ (line (pt 532.24 310.64) (pt 532.24 311.5) (width 0.127) (netNameRef "A3") )
+ (line (pt 527.06 305.32) (pt 527.08 305.3) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 532.68 313.68) (pt 533.08 313.68) (width 0.127) (netNameRef "A18") )
+ (line (pt 529.88 316.02) (pt 530.56 315.34) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 528.6782 312.7982) (pt 530.0 314.12) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 530.56 315.34) (pt 532.26 315.34) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 532.26 315.34) (pt 532.92 316.0) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 529.06 313.58) (pt 529.86 314.38) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 533.0 316.84) (pt 532.98 316.82) (width 0.127) (netNameRef "D3") )
+ (line (pt 532.98 316.82) (pt 530.38 316.82) (width 0.127) (netNameRef "D3") )
+ (line (pt 527.0 315.76) (pt 526.4385 315.1985) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 529.68 314.98) (pt 528.9 315.76) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 528.9 315.76) (pt 527.0 315.76) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 528.94 314.7) (pt 528.84 314.8) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 528.84 314.8) (pt 527.1 314.8) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 527.1 314.8) (pt 526.6984 314.3984) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 526.2989 318.3989) (pt 526.3 318.4) (width 0.3) (netNameRef "GND") )
+ (line (pt 526.0999 326.3999) (pt 526.1 326.4) (width 0.127) (netNameRef "D0") )
+ (line (pt 526.0997 324.7997) (pt 526.8 324.8) (width 0.127) (netNameRef "D1") )
+ (line (pt 526.4593 321.5993) (pt 526.46 321.6) (width 0.127) (netNameRef "D4") )
+ (line (pt 526.4194 322.3994) (pt 526.42 322.4) (width 0.127) (netNameRef "D3") )
+ (line (pt 527.16 321.66) (pt 526.42 322.4) (width 0.127) (netNameRef "D3") )
+ (line (pt 530.7 323.3) (pt 531.16 323.3) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 531.16 323.3) (pt 532.64 321.82) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 532.8 326.72) (pt 532.8 325.8) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 530.7 326.3) (pt 531.68 325.32) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 530.7 325.3) (pt 531.15 324.85) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 526.2996 323.9996) (pt 526.3 324.0) (width 0.127) (netNameRef "D2") )
+ (line (pt 532.8 328.32) (pt 532.8 329.22) (width 0.3) (netNameRef "GND") )
+ (line (pt 527.2 348.04) (pt 526.44 348.04) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 526.44 348.04) (pt 526.16 347.76) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 527.22 354.28) (pt 526.42 354.28) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 526.24 354.1) (pt 526.24 353.68) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 526.42 354.28) (pt 526.24 354.1) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 527.22 351.82) (pt 527.16 351.76) (width 0.5) (netNameRef "GND") )
+ (line (pt 527.22 352.68) (pt 527.22 351.82) (width 0.5) (netNameRef "GND") )
+ (line (pt 529.1 404.8) (pt 529.2 404.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 529.1 405.0) (pt 529.2 404.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 528.0 404.8) (pt 529.1 404.8) (width 0.5) (netNameRef "GND") )
+ (line (pt 529.1 406.7) (pt 529.1 405.0) (width 0.5) (netNameRef "GND") )
+ (line (pt 527.2 409.9) (pt 528.1 409.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 528.1 409.9) (pt 529.2 411.0) (width 0.5) (netNameRef "GND") )
+ (line (pt 537.78 310.82) (pt 537.78 310.78) (width 0.127) (netNameRef "A5") )
+ (line (pt 539.8 310.88) (pt 539.8 310.82) (width 0.127) (netNameRef "A1") )
+ (line (pt 539.3 311.38) (pt 539.8 310.88) (width 0.127) (netNameRef "A1") )
+ (line (pt 535.32 311.46) (pt 535.78 311.92) (width 0.127) (netNameRef "A9") )
+ (line (pt 537.26 311.46) (pt 536.82 311.9) (width 0.127) (netNameRef "A6") )
+ (line (pt 537.26 310.66) (pt 537.26 311.46) (width 0.127) (netNameRef "A6") )
+ (line (pt 538.84 311.98) (pt 538.84 311.96) (width 0.127) (netNameRef "A2") )
+ (line (pt 538.36 312.02) (pt 538.36 311.46) (width 0.127) (netNameRef "A3") )
+ (line (pt 537.8 311.62) (pt 537.8 311.96) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.2 311.22) (pt 538.2 310.64) (width 0.127) (netNameRef "A4") )
+ (line (pt 537.8 311.62) (pt 538.2 311.22) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.36 311.46) (pt 538.84 310.98) (width 0.127) (netNameRef "A3") )
+ (line (pt 538.84 310.98) (pt 538.84 310.8) (width 0.127) (netNameRef "A3") )
+ (line (pt 540.32 311.08) (pt 540.32 310.6) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 539.3 312.1) (pt 539.3 311.38) (width 0.127) (netNameRef "A1") )
+ (line (pt 535.32 310.78) (pt 535.32 311.46) (width 0.127) (netNameRef "A9") )
+ (line (pt 534.3 310.44) (pt 534.3 311.48) (width 0.127) (netNameRef "A11") )
+ (line (pt 534.3 311.48) (pt 534.74 311.92) (width 0.127) (netNameRef "A11") )
+ (line (pt 534.3 316.0) (pt 534.78 315.52) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 538.22 314.12) (pt 539.66 312.68) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 538.32 314.38) (pt 539.76 312.94) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 539.86 313.2) (pt 538.36 314.7) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 539.97 313.45) (pt 538.44 314.98) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 540.0 315.0) (pt 539.8 314.8) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 538.74 315.74) (pt 539.68 314.8) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 539.68 314.8) (pt 539.8 314.8) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 535.66 316.54) (pt 535.42 316.3) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 535.36 317.3) (pt 534.14 317.3) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 534.14 317.3) (pt 534.1 317.34) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 536.44 316.54) (pt 535.66 316.54) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 539.76 317.06) (pt 539.76 316.76) (width 0.3) (netNameRef "GND") )
+ (line (pt 539.92 316.6) (pt 539.76 316.76) (width 0.3) (netNameRef "GND") )
+ (line (pt 540.58 319.54) (pt 539.78 318.74) (width 0.3) (netNameRef "GND") )
+ (line (pt 535.62 318.56) (pt 535.62 318.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 535.78 318.14) (pt 535.62 318.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 539.48 317.34) (pt 539.76 317.06) (width 0.3) (netNameRef "GND") )
+ (line (pt 540.58 319.62) (pt 540.58 319.54) (width 0.3) (netNameRef "GND") )
+ (line (pt 535.24 318.94) (pt 535.62 318.56) (width 0.3) (netNameRef "GND") )
+ (line (pt 535.62 318.72) (pt 535.62 318.56) (width 0.3) (netNameRef "GND") )
+ (line (pt 536.44 318.14) (pt 535.78 318.14) (width 0.3) (netNameRef "GND") )
+ (line (pt 538.74 317.34) (pt 539.48 317.34) (width 0.3) (netNameRef "GND") )
+ (line (pt 534.1 318.94) (pt 535.24 318.94) (width 0.3) (netNameRef "GND") )
+ (line (pt 536.4 319.5) (pt 535.62 318.72) (width 0.3) (netNameRef "GND") )
+ (line (pt 539.26 321.82) (pt 539.62 322.18) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 536.4 321.1) (pt 535.8 321.1) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 535.8 321.1) (pt 535.6 321.3) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 540.58 321.22) (pt 540.28 321.22) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 540.28 321.22) (pt 539.8 321.7) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 534.4 344.4) (pt 534.4 345.26) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 534.4 345.26) (pt 534.44 345.26) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 534.46 357.12) (pt 534.46 356.26) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 534.46 356.26) (pt 534.5 356.22) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 534.46 358.72) (pt 533.82 358.72) (width 0.5) (netNameRef "GND") )
+ (line (pt 541.3 312.0) (pt 541.24 312.0) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 548.5 311.3) (pt 548.5 312.32) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 547.28 309.7) (pt 547.3 309.7) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 541.58 315.0) (pt 541.84 314.74) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 543.84 315.32) (pt 543.16 315.32) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 543.16 315.32) (pt 543.02 315.46) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 542.18 318.24) (pt 543.08 318.24) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 543.08 318.24) (pt 543.14 318.3) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 545.52 317.88) (pt 546.02 317.88) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 545.64 318.16) (pt 546.14 318.16) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 545.64 318.56) (pt 546.14 318.56) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 542.52 316.3) (pt 542.98 316.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 542.96 316.32) (pt 542.98 316.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 542.18 316.64) (pt 542.52 316.3) (width 0.3) (netNameRef "GND") )
+ (line (pt 542.96 316.76) (pt 542.96 316.32) (width 0.3) (netNameRef "GND") )
+ (line (pt 543.12 316.92) (pt 542.96 316.76) (width 0.3) (netNameRef "GND") )
+ (line (pt 543.84 316.92) (pt 543.12 316.92) (width 0.3) (netNameRef "GND") )
+ (line (pt 546.44 325.32) (pt 547.0 324.76) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 548.26 340.84) (pt 547.38 340.84) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 546.82 340.28) (pt 546.82 339.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 547.38 340.84) (pt 546.82 340.28) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 548.42 339.8) (pt 548.42 340.0) (width 0.4) (netNameRef "GND") )
+ (line (pt 546.3 355.42) (pt 546.74 354.98) (width 0.4) (netNameRef "GND") )
+ (line (pt 546.3 356.6) (pt 546.3 355.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 546.32 358.58) (pt 546.3 358.6) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 547.24 361.62) (pt 547.76 361.1) (width 0.4) (netNameRef "GND") )
+ (line (pt 547.24 361.94) (pt 547.24 361.62) (width 0.4) (netNameRef "GND") )
+ (line (pt 546.94 393.4) (pt 546.94 394.06) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 547.74 394.8) (pt 547.74 393.4) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 546.94 391.8) (pt 545.86 391.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 544.38 396.62) (pt 544.38 397.44) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 549.3 315.0) (pt 549.3 314.7) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 549.0 314.9) (pt 549.0 314.6) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 549.6 315.1) (pt 549.6 314.8) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 551.4 314.5) (pt 550.5 314.5) (width 0.2) (netNameRef "OUT") )
+ (line (pt 550.5 314.5) (pt 550.1 314.9) (width 0.2) (netNameRef "OUT") )
+ (line (pt 551.4 316.3) (pt 550.2 316.3) (width 0.2) (netNameRef "R7") )
+ (line (pt 550.2 316.3) (pt 550.1 316.4) (width 0.2) (netNameRef "R7") )
+ (line (pt 553.0 314.5) (pt 553.0 313.1) (width 0.5) (netNameRef "GND") )
+ (line (pt 553.0 316.3) (pt 553.0 314.5) (width 0.5) (netNameRef "GND") )
+ (line (pt 554.84 340.28) (pt 554.88 340.24) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.88 340.24) (pt 554.88 337.94) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.88 337.94) (pt 554.9 337.92) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.26 345.72) (pt 554.26 346.56) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.26 346.56) (pt 554.88 347.18) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.26 345.72) (pt 554.26 344.2) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 554.26 344.2) (pt 554.84 343.62) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 555.7 350.28) (pt 555.14 349.72) (width 0.4) (netNameRef "GND") )
+ (line (pt 554.3 353.2) (pt 554.78 353.2) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 554.78 353.2) (pt 555.14 352.84) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 554.2 356.9) (pt 554.16 356.94) (width 0.4) (netNameRef "7VPLL3") )
+ (line (pt 554.16 356.94) (pt 554.16 357.74) (width 0.4) (netNameRef "7VPLL3") )
+ (line (pt 552.42 356.84) (pt 553.14 356.84) (width 0.3) (netNameRef "+1,2V7") )
+ (line (pt 548.8 356.34) (pt 551.92 356.34) (width 0.3) (netNameRef "+1,2V7") )
+ (line (pt 551.92 356.34) (pt 552.42 356.84) (width 0.3) (netNameRef "+1,2V7") )
+ (line (pt 554.16 357.74) (pt 552.9 357.74) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 554.92 351.6) (pt 555.14 351.82) (width 0.4) (netNameRef "GND") )
+ (line (pt 553.14 355.54) (pt 553.14 355.84) (width 0.4) (netNameRef "GND") )
+ (line (pt 554.3 351.6) (pt 554.92 351.6) (width 0.4) (netNameRef "GND") )
+ (line (pt 553.38 355.3) (pt 553.14 355.54) (width 0.4) (netNameRef "GND") )
+ (line (pt 554.2 355.3) (pt 553.38 355.3) (width 0.4) (netNameRef "GND") )
+ (line (pt 548.84 361.94) (pt 549.68 361.94) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 549.68 361.94) (pt 549.7 361.96) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 552.32 358.32) (pt 548.82 358.32) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 548.88 361.1) (pt 549.22 360.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 549.34 393.4) (pt 549.34 394.5) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 549.34 391.8) (pt 550.54 391.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 552.28 397.44) (pt 552.38 397.44) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 561.58 279.78) (pt 562.64 279.78) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 562.64 279.78) (pt 562.74 279.88) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 561.58 278.18) (pt 561.58 277.02) (width 0.3) (netNameRef "GND") )
+ (line (pt 562.94 287.48) (pt 563.26 287.8) (width 0.3) (netNameRef "MISO") )
+ (line (pt 560.76 286.26) (pt 560.76 287.06) (width 0.3) (netNameRef "PF2") )
+ (line (pt 560.76 287.06) (pt 562.3 288.6) (width 0.3) (netNameRef "PF2") )
+ (line (pt 561.66 293.76) (pt 561.72 293.7) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 561.72 293.7) (pt 562.84 293.7) (width 0.3) (netNameRef "VDDEXT") )
+ (line (pt 557.84 293.7) (pt 561.34 290.2) (width 0.3) (netNameRef "MOSI") )
+ (line (pt 560.06 293.76) (pt 560.06 294.9) (width 0.3) (netNameRef "GND") )
+ (line (pt 561.3 302.3) (pt 561.3 300.3) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 560.6 303.4) (pt 562.4 303.4) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 560.7 303.7) (pt 562.6 303.7) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 556.9 337.92) (pt 557.96 336.86) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 557.96 336.86) (pt 557.98 336.86) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 556.88 340.24) (pt 556.88 341.12) (width 0.4) (netNameRef "GND") )
+ (line (pt 561.8 348.84) (pt 561.8 349.44) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 561.8 349.44) (pt 562.16 349.8) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 558.28 348.08) (pt 558.92 348.08) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 558.92 348.08) (pt 559.16 347.84) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 563.36 344.78) (pt 563.4 344.82) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 562.94 350.14) (pt 563.34 349.74) (width 0.4) (netNameRef "7MSEL1") )
+ (line (pt 559.14 349.68) (pt 559.22 349.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 559.28 349.76) (pt 559.22 349.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 557.22 346.44) (pt 557.22 345.84) (width 0.4) (netNameRef "GND") )
+ (line (pt 558.28 349.68) (pt 559.14 349.68) (width 0.4) (netNameRef "GND") )
+ (line (pt 560.2 348.84) (pt 559.28 349.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 556.48 347.18) (pt 557.22 346.44) (width 0.4) (netNameRef "GND") )
+ (line (pt 556.96 355.74) (pt 556.96 355.02) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 556.96 355.02) (pt 557.16 354.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 557.04 351.88) (pt 557.16 351.76) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 561.18 353.54) (pt 560.5 352.86) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 560.5 352.86) (pt 560.16 352.86) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 558.56 355.1) (pt 558.24 354.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 563.26 353.06) (pt 563.26 352.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 563.0 352.48) (pt 563.26 352.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 558.56 355.74) (pt 558.56 355.1) (width 0.4) (netNameRef "GND") )
+ (line (pt 562.78 353.54) (pt 563.26 353.06) (width 0.4) (netNameRef "GND") )
+ (line (pt 563.0 351.94) (pt 563.0 352.48) (width 0.4) (netNameRef "GND") )
+ (line (pt 560.86 360.78) (pt 560.16 360.08) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 560.16 360.08) (pt 560.16 359.74) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 560.16 362.78) (pt 559.68 363.26) (width 0.4) (netNameRef "GND") )
+ (line (pt 560.86 362.78) (pt 560.16 362.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.16 255.82) (pt 566.92 257.06) (width 0.2) (netNameRef "R8") )
+ (line (pt 564.32 264.92) (pt 564.32 262.28) (width 0.2) (netNameRef "~EMU") )
+ (line (pt 565.12 264.92) (pt 565.12 263.6) (width 0.2) (netNameRef "R5") )
+ (line (pt 566.02 262.7) (pt 566.54 262.7) (width 0.2) (netNameRef "R5") )
+ (line (pt 565.12 263.6) (pt 566.02 262.7) (width 0.2) (netNameRef "R5") )
+ (line (pt 565.92 264.92) (pt 565.92 263.82) (width 0.2) (netNameRef "R6") )
+ (line (pt 567.4 262.16) (pt 567.4 263.32) (width 0.2) (netNameRef "R8") )
+ (line (pt 567.4 263.32) (pt 566.72 264.0) (width 0.2) (netNameRef "R8") )
+ (line (pt 566.72 264.0) (pt 566.72 264.92) (width 0.2) (netNameRef "R8") )
+ (line (pt 566.92 261.68) (pt 567.4 262.16) (width 0.2) (netNameRef "R8") )
+ (line (pt 570.58 264.86) (pt 570.58 263.18) (width 0.2) (netNameRef "BF_TMS") )
+ (line (pt 570.58 263.18) (pt 568.16 260.76) (width 0.2) (netNameRef "BF_TMS") )
+ (line (pt 565.92 267.76) (pt 566.02 267.86) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 564.32 267.86) (pt 564.34 267.88) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.1 287.8) (pt 568.1 288.6) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 565.88 292.4) (pt 566.54 292.4) (width 0.2) (netNameRef "PF8") )
+ (line (pt 568.1 290.2) (pt 569.8 290.2) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 568.26 339.64) (pt 568.94 339.64) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 568.94 339.64) (pt 569.1 339.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 569.18 340.98) (pt 569.18 340.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.74 341.24) (pt 569.18 340.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 570.32 342.12) (pt 569.18 340.98) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.26 341.24) (pt 568.74 341.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 570.1 345.06) (pt 570.32 344.84) (width 0.4) (netNameRef "7VPLL4") )
+ (line (pt 568.22 345.06) (pt 570.1 345.06) (width 0.4) (netNameRef "7VPLL4") )
+ (line (pt 567.14 345.06) (pt 568.22 345.06) (width 0.25) (netNameRef "7VPLL4") )
+ (line (pt 564.14 345.72) (pt 565.44 345.72) (width 0.2) (netNameRef "7VPLL4") )
+ (line (pt 566.86 345.34) (pt 567.14 345.06) (width 0.2) (netNameRef "7VPLL4") )
+ (line (pt 565.44 345.72) (pt 565.82 345.34) (width 0.2) (netNameRef "7VPLL4") )
+ (line (pt 565.82 345.34) (pt 566.86 345.34) (width 0.2) (netNameRef "7VPLL4") )
+ (line (pt 564.22 343.36) (pt 564.22 343.84) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.26 343.42) (pt 568.22 343.46) (width 0.4) (netNameRef "GND") )
+ (line (pt 564.6 351.94) (pt 564.6 352.38) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 564.6 352.38) (pt 564.16 352.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 569.02 350.82) (pt 568.16 350.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 568.16 350.82) (pt 568.12 350.86) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 568.64 357.62) (pt 570.88 357.62) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 570.88 357.62) (pt 570.94 357.68) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 567.16 355.78) (pt 568.82 355.78) (width 0.25) (netNameRef "+3,3V7") )
+ (line (pt 568.82 355.78) (pt 569.3 355.3) (width 0.25) (netNameRef "+3,3V7") )
+ (line (pt 565.6 357.1) (pt 565.6 357.5) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 565.6 357.5) (pt 565.8 357.7) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 564.16 355.82) (pt 564.32 355.82) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 564.32 355.82) (pt 565.6 357.1) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 565.8 357.7) (pt 565.88 357.62) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 565.88 357.62) (pt 568.64 357.62) (width 0.4) (netNameRef "7VPLL2") )
+ (line (pt 568.86 353.26) (pt 569.3 353.7) (width 0.25) (netNameRef "7MSEL0") )
+ (line (pt 564.22 350.76) (pt 564.8 350.76) (width 0.25) (netNameRef "7MSEL0") )
+ (line (pt 567.3 353.26) (pt 568.86 353.26) (width 0.25) (netNameRef "7MSEL0") )
+ (line (pt 564.8 350.76) (pt 567.3 353.26) (width 0.25) (netNameRef "7MSEL0") )
+ (line (pt 564.16 356.82) (pt 564.18 356.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 570.62 350.82) (pt 571.26 350.82) (width 0.4) (netNameRef "GND") )
+ (line (pt 564.16 357.66) (pt 564.16 356.82) (width 0.4) (netNameRef "GND") )
+ (line (pt 564.2 357.7) (pt 564.16 357.66) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.66 362.76) (pt 568.66 361.86) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 568.66 361.86) (pt 568.7 361.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 570.26 362.76) (pt 571.24 362.76) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.64 360.22) (pt 569.2 360.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.64 359.62) (pt 568.64 360.22) (width 0.4) (netNameRef "GND") )
+ (line (pt 572.18 266.46) (pt 572.98 266.46) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 572.18 264.86) (pt 572.18 259.42) (width 0.2) (netNameRef "BF_TRS") )
+ (line (pt 572.98 264.86) (pt 572.98 262.22) (width 0.2) (netNameRef "BF_TDI") )
+ (line (pt 572.98 262.22) (pt 575.78 259.42) (width 0.2) (netNameRef "BF_TDI") )
+ (line (pt 572.98 267.94) (pt 572.92 268.0) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 572.7 344.84) (pt 572.72 344.86) (width 0.4) (netNameRef "7VPLL4") )
+ (line (pt 572.82 357.56) (pt 572.82 355.4) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 572.94 357.68) (pt 572.82 357.56) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 572.82 353.4) (pt 572.82 352.38) (width 0.4) (netNameRef "GND") )
+ (line (pt 572.94 359.18) (pt 572.98 359.22) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 582.42 321.26) (pt 582.42 320.88) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 582.42 322.94) (pt 583.38 323.9) (width 0.4) (netNameRef "GND") )
+ (line (pt 582.42 322.86) (pt 582.42 322.94) (width 0.4) (netNameRef "GND") )
+ (line (pt 583.0 332.24) (pt 582.86 332.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 583.88 333.12) (pt 583.0 332.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 583.88 335.58) (pt 583.64 335.82) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.18 355.82) (pt 589.18 355.4) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.18 355.4) (pt 590.08 354.5) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.18 357.42) (pt 589.9 357.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 589.34 367.1) (pt 590.14 366.3) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 590.14 366.3) (pt 590.54 366.3) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.34 369.42) (pt 589.8 369.88) (width 0.4) (netNameRef "GND") )
+ (line (pt 589.34 368.7) (pt 589.34 369.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 597.88 336.4) (pt 596.96 336.4) (width 1.0) (netNameRef "+5V") )
+ (line (pt 596.96 336.4) (pt 595.8 337.56) (width 1.0) (netNameRef "+5V") )
+ (line (pt 595.91 340.105) (pt 595.8 339.995) (width 1.0) (netNameRef "+5V") )
+ (line (pt 595.8 339.995) (pt 595.8 337.56) (width 1.0) (netNameRef "+5V") )
+ (line (pt 600.41 340.105) (pt 600.41 338.07) (width 1.0) (netNameRef "GND") )
+ (line (pt 600.41 338.07) (pt 600.42 338.06) (width 1.0) (netNameRef "GND") )
+ (line (pt 599.88 336.4) (pt 600.42 336.94) (width 1.0) (netNameRef "GND") )
+ (line (pt 600.42 336.94) (pt 600.42 338.06) (width 1.0) (netNameRef "GND") )
+ (line (pt 598.16 346.48) (pt 598.16 350.2) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 595.98 348.66) (pt 595.98 350.2) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 598.16 346.48) (pt 596.08 348.56) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 598.16 346.48) (pt 596.08 348.56) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 596.08 348.56) (pt 595.98 348.66) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 608.74 278.72) (pt 606.38 278.72) (width 0.2) (netNameRef "CKP") )
+ (line (pt 620.16 260.56) (pt 620.16 259.54) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 620.16 259.54) (pt 620.1 259.48) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 620.14 262.18) (pt 620.14 263.28) (width 0.4) (netNameRef "GND") )
+ (line (pt 620.16 262.16) (pt 620.14 262.18) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.82 290.58) (pt 623.64 290.4) (width 0.4) (netNameRef "GND") )
+ (line (pt 624.4 297.54) (pt 623.78 298.16) (width 0.4) (netNameRef "GND") )
+ (line (pt 622.8 309.9) (pt 622.78 309.92) (width 0.4) (netNameRef "GND") )
+ (line (pt 622.8 308.9) (pt 622.8 309.9) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.88 411.18) (pt 623.44 410.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.88 419.74) (pt 623.68 419.54) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.88 420.9) (pt 623.88 419.74) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.9 429.7) (pt 623.44 429.24) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.9 430.42) (pt 623.9 429.7) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.68 441.48) (pt 624.12 441.48) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 623.7 439.54) (pt 624.42 439.54) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 622.1 439.54) (pt 621.48 439.54) (width 0.4) (netNameRef "2_~OE1") )
+ (line (pt 621.48 439.54) (pt 620.46 440.56) (width 0.4) (netNameRef "2_~OE1") )
+ (line (pt 622.08 441.48) (pt 620.6 441.48) (width 0.4) (netNameRef "GND") )
+ (line (pt 622.68 447.54) (pt 621.22 447.54) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 621.22 447.54) (pt 621.2 447.56) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 622.74 451.26) (pt 621.44 451.26) (width 0.4) (netNameRef "GND") )
+ (line (pt 622.84 451.16) (pt 622.74 451.26) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.42 290.58) (pt 626.1 290.58) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.1 290.58) (pt 626.66 290.02) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.64 302.0) (pt 626.64 301.2) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.64 301.2) (pt 626.64 300.4) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.64 300.4) (pt 626.64 299.6) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.64 299.6) (pt 626.64 298.74) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.64 298.74) (pt 626.66 298.72) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.62 297.54) (pt 626.62 298.68) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.62 298.68) (pt 626.66 298.72) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 305.64) (pt 626.68 306.44) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 306.44) (pt 626.68 307.24) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 307.24) (pt 626.68 307.98) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 307.98) (pt 625.74 308.92) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 629.6 311.84) (pt 629.6 311.04) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 311.04) (pt 627.86 311.04) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 627.86 311.04) (pt 625.74 308.92) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 315.4) (pt 629.6 316.2) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 316.2) (pt 629.6 317.0) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 317.0) (pt 629.6 317.8) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 317.8) (pt 626.74 317.8) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 626.74 317.8) (pt 625.9 318.64) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 625.86 321.52) (pt 625.86 322.68) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.88 321.5) (pt 625.86 321.52) (width 0.4) (netNameRef "GND") )
+ (line (pt 625.48 411.94) (pt 626.2 411.94) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.48 420.9) (pt 626.14 420.9) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.14 420.9) (pt 626.9 420.14) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.5 430.42) (pt 626.3 430.42) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 626.3 430.42) (pt 626.84 429.88) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 433.52) (pt 629.4 432.72) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 432.72) (pt 628.4 432.72) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 626.84 431.16) (pt 626.84 429.88) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 628.4 432.72) (pt 626.84 431.16) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 625.36 440.24) (pt 625.24 440.36) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 629.4 437.8) (pt 629.4 438.6) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 438.6) (pt 629.4 439.4) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 439.4) (pt 629.4 440.2) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 440.2) (pt 625.4 440.2) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 625.4 440.2) (pt 625.24 440.36) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 626.68 445.68) (pt 626.68 444.88) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 444.88) (pt 626.68 444.08) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 444.08) (pt 626.68 443.28) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.72 448.24) (pt 626.72 449.04) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.72 449.04) (pt 625.34 449.04) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.34 449.04) (pt 625.22 449.16) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.2 449.14) (pt 625.22 449.16) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.72 449.84) (pt 626.72 450.64) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 635.28 262.0) (pt 637.1 263.82) (width 0.2) (netNameRef "RSS") )
+ (line (pt 637.25 268.59) (pt 638.82 270.16) (width 0.2) (netNameRef "STR_N") )
+ (line (pt 636.1 269.86) (pt 637.66 271.42) (width 0.2) (netNameRef "STR_P") )
+ (line (pt 637.2 272.7) (pt 638.82 272.7) (width 0.2) (netNameRef "CLK_N") )
+ (line (pt 635.63 271.13) (pt 637.2 272.7) (width 0.2) (netNameRef "CLK_N") )
+ (line (pt 635.24 272.4) (pt 636.88 274.04) (width 0.2) (netNameRef "CLK_P") )
+ (line (pt 636.92 301.2) (pt 637.62 301.9) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 638.58 300.4) (pt 638.82 300.64) (width 0.2) (netNameRef "4_OUT7") )
+ (line (pt 635.76 303.18) (pt 638.82 303.18) (width 0.2) (netNameRef "4_OUT6") )
+ (line (pt 634.58 302.0) (pt 635.76 303.18) (width 0.2) (netNameRef "4_OUT6") )
+ (line (pt 637.14 306.44) (pt 637.7 307.0) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 638.74 305.64) (pt 638.82 305.72) (width 0.2) (netNameRef "4_OUT5") )
+ (line (pt 635.64 308.26) (pt 638.82 308.26) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 634.62 307.24) (pt 635.64 308.26) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 635.52 311.04) (pt 637.0 309.56) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 637.78 311.84) (pt 638.82 310.8) (width 0.2) (netNameRef "4_OUT3") )
+ (line (pt 638.72 313.44) (pt 638.82 313.34) (width 0.2) (netNameRef "4_OUT2") )
+ (line (pt 635.6 315.4) (pt 636.36 314.64) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 638.5 316.2) (pt 638.82 315.88) (width 0.2) (netNameRef "4_OUT1") )
+ (line (pt 638.2 317.8) (pt 638.82 318.42) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 635.2 346.0) (pt 636.8 346.0) (width 1.0) (netNameRef "GND") )
+ (line (pt 638.5 433.52) (pt 638.92 433.94) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 636.32 436.48) (pt 638.92 436.48) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 634.96 435.12) (pt 636.32 436.48) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 638.5 438.6) (pt 638.92 439.02) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 636.08 439.4) (pt 637.0 440.32) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 636.36 441.56) (pt 638.92 441.56) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 635.0 440.2) (pt 636.36 441.56) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 638.9 444.08) (pt 638.92 444.1) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 637.4 444.88) (pt 637.92 445.4) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 638.78 449.04) (pt 638.92 449.18) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 637.52 443.28) (pt 637.92 442.88) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 637.52 446.64) (pt 638.92 446.64) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 636.56 445.68) (pt 637.52 446.64) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 637.64 448.24) (pt 637.96 447.92) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 637.16 449.84) (pt 637.8 450.48) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 636.2 451.72) (pt 638.92 451.72) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 635.12 450.64) (pt 636.2 451.72) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 640.32 299.6) (pt 641.36 300.64) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 640.24 432.72) (pt 641.46 433.94) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 640.22 435.24) (pt 641.46 436.48) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 640.24 437.8) (pt 641.46 439.02) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 640.22 440.32) (pt 641.46 441.56) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 640.24 442.88) (pt 641.46 444.1) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 640.22 445.4) (pt 641.46 446.64) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 640.2 447.92) (pt 641.46 449.18) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 640.22 450.48) (pt 641.46 451.72) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 386.54 259.72) (pt 384.08 257.26) (width 0.4) (netNameRef "MAX-TCK") )
+ (line (pt 385.34 265.22) (pt 383.14 267.42) (width 0.4) (netNameRef "MAX-TDI") )
+ (line (pt 381.8 275.64) (pt 381.8 273.88) (width 0.5) (netNameRef "GND") )
+ (line (pt 382.18 297.56) (pt 382.18 295.8) (width 0.7) (netNameRef "NET00042") )
+ (line (pt 424.3 327.7) (pt 423.9 328.1) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 424.3 326.4) (pt 424.3 327.7) (width 0.5) (netNameRef "NET00152") )
+ (line (pt 420.7 328.2) (pt 420.7 327.2) (width 0.5) (netNameRef "GND") )
+ (line (pt 446.6 328.1) (pt 446.6 326.3) (width 0.5) (netNameRef "NET00026") )
+ (line (pt 442.46 326.24) (pt 442.46 328.32) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 454.86 335.44) (pt 454.84 335.46) (width 0.4) (netNameRef "NET00384") )
+ (line (pt 454.86 332.5) (pt 454.86 335.44) (width 0.5) (netNameRef "NET00384") )
+ (line (pt 454.86 335.44) (pt 454.84 335.46) (width 0.5) (netNameRef "NET00384") )
+ (line (pt 462.04 335.46) (pt 462.1 335.52) (width 0.4) (netNameRef "NET00385") )
+ (line (pt 478.04 352.48) (pt 478.04 350.56) (width 1.0) (netNameRef "+5V") )
+ (line (pt 478.04 350.56) (pt 477.8 350.32) (width 1.0) (netNameRef "+5V") )
+ (line (pt 484.84 311.42) (pt 484.84 312.9) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 481.74 410.84) (pt 481.74 412.66) (width 0.3) (netNameRef "NET00003") )
+ (line (pt 490.82 313.7) (pt 489.56 312.44) (width 0.5) (netNameRef "AVSS") )
+ (line (pt 490.12 411.04) (pt 489.84 411.32) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 495.96 312.24) (pt 495.98 312.26) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 502.16 320.1) (pt 502.48 319.78) (width 0.4) (netNameRef "GND") )
+ (line (pt 502.16 320.92) (pt 502.16 320.1) (width 0.4) (netNameRef "GND") )
+ (line (pt 495.88 358.8) (pt 496.54 358.14) (width 0.5) (netNameRef "GND") )
+ (line (pt 512.7 320.0) (pt 516.48 320.0) (width 0.127) (netNameRef "D10") )
+ (line (pt 516.48 320.0) (pt 517.68 321.2) (width 0.127) (netNameRef "D10") )
+ (line (pt 524.7 319.9991) (pt 521.7991 319.9991) (width 0.127) (netNameRef "D5") )
+ (line (pt 521.7991 319.9991) (pt 520.0 318.2) (width 0.127) (netNameRef "D5") )
+ (line (pt 524.16 350.62) (pt 524.16 349.8) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 518.6 342.82) (pt 519.24 343.46) (width 0.5) (netNameRef "GND") )
+ (line (pt 530.18 311.18) (pt 532.68 313.68) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.24 311.5) (pt 533.14 312.4) (width 0.127) (netNameRef "A3") )
+ (line (pt 528.602 308.802) (pt 532.76 312.96) (width 0.127) (netNameRef "A1") )
+ (line (pt 532.62 313.22) (pt 529.0021 309.6021) (width 0.127) (netNameRef "A0") )
+ (line (pt 530.38 316.82) (pt 527.16 320.04) (width 0.127) (netNameRef "D3") )
+ (line (pt 527.16 320.04) (pt 527.16 321.66) (width 0.127) (netNameRef "D3") )
+ (line (pt 533.14 343.12) (pt 533.14 343.76) (width 0.5) (netNameRef "GND") )
+ (line (pt 527.2 350.72) (pt 527.18 350.74) (width 0.5) (netNameRef "GND") )
+ (line (pt 527.2 349.64) (pt 527.2 350.72) (width 0.5) (netNameRef "GND") )
+ (line (pt 538.14 312.68) (pt 538.84 311.98) (width 0.127) (netNameRef "A2") )
+ (line (pt 537.98 312.4) (pt 538.36 312.02) (width 0.127) (netNameRef "A3") )
+ (line (pt 539.3 312.1) (pt 538.44 312.96) (width 0.127) (netNameRef "A1") )
+ (line (pt 539.8 311.98) (pt 538.56 313.22) (width 0.127) (netNameRef "A0") )
+ (line (pt 548.5 312.32) (pt 547.62 313.2) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 547.26 312.94) (pt 547.9 312.3) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 544.3 312.68) (pt 547.28 309.7) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 541.22 322.18) (pt 545.52 317.88) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 541.3 322.5) (pt 545.64 318.16) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 546.94 394.06) (pt 544.38 396.62) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 546.38 397.44) (pt 546.38 396.16) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 546.38 396.16) (pt 547.74 394.8) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 549.1 309.0) (pt 549.1 312.5) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 554.84 343.62) (pt 554.84 340.28) (width 0.4) (netNameRef "7VPLL1") )
+ (line (pt 552.9 357.74) (pt 552.32 358.32) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 549.34 394.5) (pt 552.28 397.44) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 563.08 261.04) (pt 563.08 258.36) (width 0.2) (netNameRef "~EMU") )
+ (line (pt 557.2 292.4) (pt 560.2 289.4) (width 0.3) (netNameRef "SCK") )
+ (line (pt 562.94 350.64) (pt 562.94 350.14) (width 0.4) (netNameRef "7MSEL1") )
+ (line (pt 559.42 350.64) (pt 559.24 350.82) (width 0.4) (netNameRef "GND") )
+ (line (pt 561.34 350.64) (pt 559.42 350.64) (width 0.4) (netNameRef "GND") )
+ (line (pt 566.72 266.52) (pt 565.92 266.52) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 565.92 266.52) (pt 565.92 267.76) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 565.12 266.52) (pt 565.92 266.52) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 566.92 257.06) (pt 566.92 261.68) (width 0.2) (netNameRef "R8") )
+ (line (pt 568.16 260.76) (pt 568.16 258.36) (width 0.2) (netNameRef "BF_TMS") )
+ (line (pt 571.38 259.04) (pt 570.7 258.36) (width 0.2) (netNameRef "BF_TCK") )
+ (line (pt 571.38 264.86) (pt 571.38 259.04) (width 0.2) (netNameRef "BF_TCK") )
+ (line (pt 564.32 266.52) (pt 564.32 267.86) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.1 288.6) (pt 568.1 289.4) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 568.1 289.4) (pt 568.1 290.2) (width 0.4) (netNameRef "+3,3VF") )
+ (line (pt 570.32 342.84) (pt 570.32 342.12) (width 0.4) (netNameRef "GND") )
+ (line (pt 568.26 341.24) (pt 568.26 343.42) (width 0.4) (netNameRef "GND") )
+ (line (pt 570.16 373.22) (pt 568.76 373.22) (width 0.6) (netNameRef "+1,2V7") )
+ (line (pt 575.46 261.22) (pt 578.32 258.36) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 572.98 266.46) (pt 572.98 267.94) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 572.18 259.42) (pt 573.24 258.36) (width 0.2) (netNameRef "BF_TRS") )
+ (line (pt 575.78 259.42) (pt 575.78 258.36) (width 0.2) (netNameRef "BF_TDI") )
+ (line (pt 572.72 342.86) (pt 572.72 341.48) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 572.94 357.68) (pt 572.94 359.18) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 583.88 334.72) (pt 583.88 335.58) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 582.42 320.88) (pt 583.16 320.14) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 589.9 357.42) (pt 590.44 357.96) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.64 290.4) (pt 623.64 289.36) (width 0.4) (netNameRef "GND") )
+ (line (pt 623.88 411.94) (pt 623.88 411.18) (width 0.4) (netNameRef "GND") )
+ (line (pt 620.6 441.48) (pt 619.68 442.4) (width 0.4) (netNameRef "GND") )
+ (line (pt 626.68 304.84) (pt 626.68 305.64) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.88 319.9) (pt 625.88 318.66) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 629.6 313.44) (pt 629.6 312.64) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.6 312.64) (pt 629.6 311.84) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 626.2 411.94) (pt 626.74 411.4) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 443.28) (pt 626.68 441.8) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.68 441.8) (pt 625.24 440.36) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 626.72 449.04) (pt 626.72 449.84) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 625.22 450.38) (pt 625.22 449.16) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 629.4 435.12) (pt 629.4 434.32) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 629.4 434.32) (pt 629.4 433.52) (width 0.5) (netNameRef "+3,3V2") )
+ (line (pt 635.36 304.84) (pt 635.7 304.5) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 637.6 312.64) (pt 638.16 312.08) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 635.8 434.32) (pt 636.72 435.24) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 517.7 308.5) (pt 513.4008 312.7992) (width 0.127) (netNameRef "A12") )
+ (line (pt 528.2019 308.0019) (pt 532.88 312.68) (width 0.127) (netNameRef "A2") )
+ (line (pt 571.3 290.3) (pt 571.3 267.98) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 576.92 297.66) (pt 576.92 272.22) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 576.32 295.18) (pt 576.32 266.84) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 575.88 265.68) (pt 575.88 295.22) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 571.94 293.86) (pt 571.94 269.56) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 575.46 290.84) (pt 575.46 261.22) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 388.14 260.7) (pt 389.44 260.7) (width 0.4) (netNameRef "GND") )
+ (line (pt 382.24 295.74) (pt 380.208 295.74) (width 0.7) (netNameRef "NET00042") )
+ (line (pt 425.9 329.4) (pt 427.2 329.4) (width 0.5) (netNameRef "NET00541") )
+ (line (pt 434.92 298.2) (pt 434.4 298.72) (width 1.0) (netNameRef "GND") )
+ (line (pt 440.5 330.4) (pt 441.94 330.4) (width 0.5) (netNameRef "+3,3V") )
+ (line (pt 441.94 330.4) (pt 442.36 330.82) (width 0.5) (netNameRef "+3,3V") )
+ (line (pt 440.5 328.4) (pt 442.38 328.4) (width 0.5) (netNameRef "NET00019") )
+ (line (pt 456.66 328.84) (pt 457.66 328.84) (width 0.4) (netNameRef "GND") )
+ (line (pt 481.36 292.2) (pt 480.16 292.2) (width 1.0) (netNameRef "GND") )
+ (line (pt 480.16 292.2) (pt 479.8 292.56) (width 1.0) (netNameRef "GND") )
+ (line (pt 489.4 302.9) (pt 487.8 302.9) (width 1.0) (netNameRef "+2,5V") )
+ (line (pt 487.8 302.9) (pt 487.7 303.0) (width 1.0) (netNameRef "+2,5V") )
+ (line (pt 487.38 316.48) (pt 487.4 316.46) (width 0.6) (netNameRef "PVDD") )
+ (line (pt 487.38 318.5) (pt 487.38 317.56) (width 0.6) (netNameRef "PVDD") )
+ (line (pt 487.38 317.56) (pt 487.38 316.48) (width 0.6) (netNameRef "PVDD") )
+ (line (pt 488.78 317.58) (pt 487.4 317.58) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 487.78 322.6) (pt 487.5 322.32) (width 0.5) (netNameRef "GND") )
+ (line (pt 487.78 323.52) (pt 487.78 322.6) (width 0.5) (netNameRef "GND") )
+ (line (pt 480.14 410.84) (pt 480.14 409.82) (width 0.5) (netNameRef "GND") )
+ (line (pt 481.76 416.2) (pt 479.2 416.2) (width 0.3) (netNameRef "NET00001") )
+ (line (pt 518.1 309.8) (pt 518.1 308.3) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 516.6198 317.5998) (pt 518.86 319.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 503.66 323.74) (pt 502.54 323.74) (width 0.6) (netNameRef "+2,5V") )
+ (line (pt 517.94 344.42) (pt 517.94 345.18) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 517.94 345.18) (pt 517.98 345.22) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 494.9 358.8) (pt 495.88 358.8) (width 0.5) (netNameRef "GND") )
+ (line (pt 524.7 310.3979) (pt 526.2979 310.3979) (width 0.127) (netNameRef "SA10") )
+ (line (pt 524.7 311.9981) (pt 528.5019 311.9981) (width 0.127) (netNameRef "A17") )
+ (line (pt 524.7015 307.2018) (pt 528.8018 307.2018) (width 0.127) (netNameRef "A3") )
+ (line (pt 524.718 311.18) (pt 530.18 311.18) (width 0.127) (netNameRef "A18") )
+ (line (pt 529.0021 309.6021) (pt 524.7015 309.6021) (width 0.127) (netNameRef "A0") )
+ (line (pt 524.7015 308.802) (pt 528.602 308.802) (width 0.127) (netNameRef "A1") )
+ (line (pt 524.7015 308.0019) (pt 528.2019 308.0019) (width 0.127) (netNameRef "A2") )
+ (line (pt 522.18 305.32) (pt 527.06 305.32) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 541.24 312.0) (pt 540.32 311.08) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 524.7183 313.58) (pt 529.06 313.58) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 524.7 312.7982) (pt 528.6782 312.7982) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 524.7214 316.02) (pt 529.88 316.02) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 532.92 316.0) (pt 534.3 316.0) (width 0.127) (netNameRef "~ABE0") )
+ (line (pt 532.88 312.68) (pt 538.14 312.68) (width 0.127) (netNameRef "A2") )
+ (line (pt 538.44 312.96) (pt 532.76 312.96) (width 0.127) (netNameRef "A1") )
+ (line (pt 538.44 314.98) (pt 529.68 314.98) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 538.56 313.22) (pt 532.62 313.22) (width 0.127) (netNameRef "A0") )
+ (line (pt 538.36 314.7) (pt 528.94 314.7) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 529.86 314.38) (pt 538.32 314.38) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 530.0 314.12) (pt 538.22 314.12) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 548.15 313.45) (pt 539.97 313.45) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 547.62 313.2) (pt 539.86 313.2) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 539.76 312.94) (pt 547.26 312.94) (width 0.127) (netNameRef "~SRAS") )
+ (line (pt 539.66 312.68) (pt 544.3 312.68) (width 0.127) (netNameRef "~SMS") )
+ (line (pt 549.1 312.5) (pt 548.15 313.45) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 540.94 315.0) (pt 540.0 315.0) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 540.94 315.0) (pt 541.58 315.0) (width 0.3) (netNameRef "VDDINT") )
+ (line (pt 526.4385 315.1985) (pt 524.7 315.1985) (width 0.127) (netNameRef "~SWE") )
+ (line (pt 545.86 319.14) (pt 552.36 319.14) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 552.26 318.84) (pt 545.76 318.84) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 526.6984 314.3984) (pt 524.7 314.3984) (width 0.127) (netNameRef "~SCAS") )
+ (line (pt 546.14 318.56) (pt 549.6 315.1) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 546.14 318.16) (pt 549.3 315.0) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 546.02 317.88) (pt 549.0 314.9) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 540.94 316.6) (pt 539.92 316.6) (width 0.3) (netNameRef "GND") )
+ (line (pt 524.7 318.3989) (pt 526.2989 318.3989) (width 0.3) (netNameRef "GND") )
+ (line (pt 524.7 324.7997) (pt 526.0997 324.7997) (width 0.127) (netNameRef "D1") )
+ (line (pt 524.7 326.3999) (pt 526.0999 326.3999) (width 0.127) (netNameRef "D0") )
+ (line (pt 524.7 321.5993) (pt 526.4593 321.5993) (width 0.127) (netNameRef "D4") )
+ (line (pt 524.7 322.3994) (pt 526.4194 322.3994) (width 0.127) (netNameRef "D3") )
+ (line (pt 540.3 324.3) (pt 530.7 324.3) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 532.96 323.3) (pt 540.9 323.3) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 532.64 321.82) (pt 539.26 321.82) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 531.15 324.85) (pt 540.15 324.85) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 524.7 323.9996) (pt 526.2996 323.9996) (width 0.127) (netNameRef "D2") )
+ (line (pt 531.68 325.32) (pt 546.44 325.32) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 547.0 324.76) (pt 549.82 324.76) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 534.8 322.5) (pt 541.3 322.5) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 539.62 322.18) (pt 541.22 322.18) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 548.42 340.0) (pt 549.22 340.8) (width 0.4) (netNameRef "GND") )
+ (line (pt 548.56 356.58) (pt 548.8 356.34) (width 0.3) (netNameRef "+1,2V7") )
+ (line (pt 548.82 358.32) (pt 548.56 358.58) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 548.56 358.58) (pt 546.32 358.58) (width 0.3) (netNameRef "7VPLL3") )
+ (line (pt 547.76 361.1) (pt 548.88 361.1) (width 0.4) (netNameRef "GND") )
+ (line (pt 547.74 391.8) (pt 548.54 391.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 548.54 391.8) (pt 549.34 391.8) (width 0.4) (netNameRef "+3,3V7") )
+ (line (pt 548.54 397.28) (pt 548.38 397.44) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 527.1 406.7) (pt 525.9 406.7) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 525.9 406.7) (pt 525.3 406.1) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 526.4 404.8) (pt 525.3 405.9) (width 0.5) (netNameRef "NET00264") )
+ (line (pt 525.6 409.9) (pt 523.7 409.9) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 570.58 266.46) (pt 571.38 266.46) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 571.38 266.46) (pt 572.18 266.46) (width 0.4) (netNameRef "VDDEXT") )
+ (line (pt 564.32 262.28) (pt 563.08 261.04) (width 0.2) (netNameRef "~EMU") )
+ (line (pt 563.26 287.8) (pt 566.5 287.8) (width 0.3) (netNameRef "MISO") )
+ (line (pt 562.3 288.6) (pt 566.5 288.6) (width 0.3) (netNameRef "PF2") )
+ (line (pt 560.2 289.4) (pt 566.5 289.4) (width 0.3) (netNameRef "SCK") )
+ (line (pt 561.34 290.2) (pt 566.5 290.2) (width 0.3) (netNameRef "MOSI") )
+ (line (pt 556.88 341.12) (pt 556.14 341.86) (width 0.4) (netNameRef "GND") )
+ (line (pt 563.4 344.82) (pt 564.2 344.82) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 563.34 349.74) (pt 564.24 349.74) (width 0.4) (netNameRef "7MSEL1") )
+ (line (pt 570.32 344.84) (pt 572.7 344.84) (width 0.4) (netNameRef "7VPLL4") )
+ (line (pt 564.04 343.18) (pt 564.22 343.36) (width 0.4) (netNameRef "GND") )
+ (line (pt 556.18 350.28) (pt 555.7 350.28) (width 0.4) (netNameRef "GND") )
+ (line (pt 563.36 343.18) (pt 564.04 343.18) (width 0.4) (netNameRef "GND") )
+ (line (pt 556.18 351.88) (pt 557.04 351.88) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 572.82 352.38) (pt 571.66 351.22) (width 0.4) (netNameRef "GND") )
+ (line (pt 571.26 350.82) (pt 571.66 351.22) (width 0.4) (netNameRef "GND") )
+ (line (pt 572.44 375.5) (pt 568.66 375.5) (width 0.6) (netNameRef "+1,2V7") )
+ (line (pt 570.88 373.94) (pt 572.44 375.5) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 570.88 373.94) (pt 572.44 375.5) (width 0.4) (netNameRef "+1,2V7") )
+ (line (pt 578.815 375.135) (pt 579.04 375.36) (width 1.0) (netNameRef "+5V") )
+ (line (pt 578.815 377.75) (pt 578.815 379.465) (width 1.0) (netNameRef "GND") )
+ (line (pt 578.815 379.465) (pt 578.76 379.52) (width 1.0) (netNameRef "GND") )
+ (line (pt 596.08 348.56) (pt 594.36 348.56) (width 0.6) (netNameRef "+3,3V7") )
+ (line (pt 629.02 262.0) (pt 635.28 262.0) (width 0.2) (netNameRef "RSS") )
+ (line (pt 640.1 263.82) (pt 641.36 265.08) (width 0.2) (netNameRef "RSS") )
+ (line (pt 637.1 263.82) (pt 640.1 263.82) (width 0.2) (netNameRef "RSS") )
+ (line (pt 627.42 262.0) (pt 621.9 262.0) (width 0.2) (netNameRef "RSR") )
+ (line (pt 624.94 268.59) (pt 637.25 268.59) (width 0.2) (netNameRef "STR_N") )
+ (line (pt 624.94 269.86) (pt 636.1 269.86) (width 0.2) (netNameRef "STR_P") )
+ (line (pt 640.1 271.42) (pt 641.36 270.16) (width 0.2) (netNameRef "STR_P") )
+ (line (pt 637.66 271.42) (pt 640.1 271.42) (width 0.2) (netNameRef "STR_P") )
+ (line (pt 624.94 271.13) (pt 635.63 271.13) (width 0.2) (netNameRef "CLK_N") )
+ (line (pt 624.94 272.4) (pt 635.24 272.4) (width 0.2) (netNameRef "CLK_P") )
+ (line (pt 640.02 274.04) (pt 641.36 272.7) (width 0.2) (netNameRef "CLK_P") )
+ (line (pt 636.88 274.04) (pt 640.02 274.04) (width 0.2) (netNameRef "CLK_P") )
+ (line (pt 618.59 272.4) (pt 617.02 272.4) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 617.02 272.4) (pt 616.98 272.44) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 617.02 274.06) (pt 617.0 274.04) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 618.59 269.86) (pt 615.96 269.86) (width 0.2) (netNameRef "STP") )
+ (line (pt 618.59 271.13) (pt 616.33 271.13) (width 0.2) (netNameRef "CKP") )
+ (line (pt 617.19 268.59) (pt 616.9 268.3) (width 0.5) (netNameRef "GND") )
+ (line (pt 618.59 268.59) (pt 617.19 268.59) (width 0.5) (netNameRef "GND") )
+ (line (pt 617.02 277.84) (pt 617.08 277.9) (width 0.5) (netNameRef "GND") )
+ (line (pt 617.02 276.74) (pt 617.02 277.84) (width 0.5) (netNameRef "GND") )
+ (line (pt 635.7 304.5) (pt 640.14 304.5) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 628.24 301.2) (pt 636.92 301.2) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 640.08 301.9) (pt 641.36 303.18) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 637.62 301.9) (pt 640.08 301.9) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 628.24 300.4) (pt 638.58 300.4) (width 0.2) (netNameRef "4_OUT7") )
+ (line (pt 628.24 302.0) (pt 634.58 302.0) (width 0.2) (netNameRef "4_OUT6") )
+ (line (pt 628.24 299.6) (pt 640.32 299.6) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 625.02 297.54) (pt 624.4 297.54) (width 0.4) (netNameRef "GND") )
+ (line (pt 628.28 306.44) (pt 637.14 306.44) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 640.1 307.0) (pt 641.36 308.26) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 637.7 307.0) (pt 640.1 307.0) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 628.28 305.64) (pt 638.74 305.64) (width 0.2) (netNameRef "4_OUT5") )
+ (line (pt 628.28 307.24) (pt 634.62 307.24) (width 0.2) (netNameRef "4_OUT4") )
+ (line (pt 624.4 308.9) (pt 625.72 308.9) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 631.2 311.04) (pt 635.52 311.04) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 640.12 309.56) (pt 641.36 310.8) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 637.0 309.56) (pt 640.12 309.56) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 631.2 311.84) (pt 637.78 311.84) (width 0.2) (netNameRef "4_OUT3") )
+ (line (pt 638.16 312.08) (pt 640.1 312.08) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 631.2 312.64) (pt 637.6 312.64) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 631.2 313.44) (pt 638.72 313.44) (width 0.2) (netNameRef "4_OUT2") )
+ (line (pt 631.2 315.4) (pt 635.6 315.4) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 640.12 314.64) (pt 641.36 315.88) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 636.36 314.64) (pt 640.12 314.64) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 631.2 316.2) (pt 638.5 316.2) (width 0.2) (netNameRef "4_OUT1") )
+ (line (pt 631.2 317.0) (pt 639.94 317.0) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 639.94 317.0) (pt 641.36 318.42) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 631.2 317.8) (pt 638.2 317.8) (width 0.2) (netNameRef "4_OUT0") )
+ (line (pt 633.2 346.0) (pt 631.6 346.0) (width 1.0) (netNameRef "+3,3V2") )
+ (line (pt 631.0 432.72) (pt 640.24 432.72) (width 0.2) (netNameRef "1_OUT7") )
+ (line (pt 631.0 433.52) (pt 638.5 433.52) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 624.12 441.48) (pt 625.24 440.36) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 624.42 439.54) (pt 625.24 440.36) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 636.72 435.24) (pt 640.22 435.24) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 631.0 435.12) (pt 634.96 435.12) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 631.0 437.8) (pt 640.24 437.8) (width 0.2) (netNameRef "1_OUT5") )
+ (line (pt 631.0 438.6) (pt 638.5 438.6) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 631.0 439.4) (pt 636.08 439.4) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 637.0 440.32) (pt 640.22 440.32) (width 0.2) (netNameRef "1_OUT4") )
+ (line (pt 631.0 440.2) (pt 635.0 440.2) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 637.92 442.88) (pt 640.24 442.88) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 628.28 444.08) (pt 638.9 444.08) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 628.28 444.88) (pt 637.4 444.88) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 637.92 445.4) (pt 640.22 445.4) (width 0.2) (netNameRef "1_OUT2") )
+ (line (pt 637.96 447.92) (pt 640.2 447.92) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 628.32 449.04) (pt 638.78 449.04) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 628.28 443.28) (pt 637.52 443.28) (width 0.2) (netNameRef "1_OUT3") )
+ (line (pt 628.28 445.68) (pt 636.56 445.68) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 628.32 448.24) (pt 637.64 448.24) (width 0.2) (netNameRef "1_OUT1") )
+ (line (pt 622.68 449.14) (pt 625.2 449.14) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 628.32 449.84) (pt 637.16 449.84) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 637.8 450.48) (pt 640.22 450.48) (width 0.2) (netNameRef "1_OUT0") )
+ (line (pt 628.32 450.64) (pt 635.12 450.64) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 624.44 451.16) (pt 625.22 450.38) (width 0.4) (netNameRef "+3,3V2") )
+ (line (pt 379.708 282.292) (pt 381.8 280.2) (width 0.5) (netNameRef "NET00016") )
+ (line (pt 454.84 335.46) (pt 459.5 335.46) (width 0.4) (netNameRef "NET00384") )
+ (line (pt 487.56 312.44) (pt 487.12 312.88) (width 0.5) (netNameRef "PVDD") )
+ (line (pt 514.9 305.0) (pt 519.48 300.42) (width 0.127) (netNameRef "A4") )
+ (line (pt 519.5 303.8) (pt 517.7 305.6) (width 0.127) (netNameRef "A12") )
+ (line (pt 517.3 305.5) (pt 519.6 303.2) (width 0.127) (netNameRef "A11") )
+ (line (pt 516.9 305.5) (pt 519.48 302.92) (width 0.127) (netNameRef "A9") )
+ (line (pt 519.6 302.2) (pt 516.5 305.3) (width 0.127) (netNameRef "A8") )
+ (line (pt 519.6 301.7) (pt 516.1 305.2) (width 0.127) (netNameRef "A7") )
+ (line (pt 515.7 305.2) (pt 519.48 301.42) (width 0.127) (netNameRef "A6") )
+ (line (pt 519.6 300.7) (pt 515.3 305.0) (width 0.127) (netNameRef "A5") )
+ (line (pt 514.3 315.2) (pt 518.9 310.6) (width 0.127) (netNameRef "~ABE1") )
+ (line (pt 514.3 314.4) (pt 518.5 310.2) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 514.3 313.6) (pt 518.1 309.8) (width 0.127) (netNameRef "SCKE") )
+ (line (pt 517.0 319.2) (pt 518.32 320.52) (width 0.127) (netNameRef "D9") )
+ (line (pt 494.86 312.24) (pt 495.96 312.24) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 500.58 317.16) (pt 493.8 323.94) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 518.6 357.72) (pt 518.2 358.12) (width 0.5) (netNameRef "GND") )
+ (line (pt 518.2 358.12) (pt 518.2 358.78) (width 0.5) (netNameRef "GND") )
+ (line (pt 517.94 342.82) (pt 518.6 342.82) (width 0.5) (netNameRef "GND") )
+ (line (pt 545.76 318.84) (pt 540.3 324.3) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 540.9 323.3) (pt 545.64 318.56) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 533.14 312.4) (pt 537.98 312.4) (width 0.127) (netNameRef "A3") )
+ (line (pt 540.15 324.85) (pt 545.86 319.14) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 533.2 358.1) (pt 533.2 357.72) (width 0.5) (netNameRef "GND") )
+ (line (pt 533.82 358.72) (pt 533.2 358.1) (width 0.5) (netNameRef "GND") )
+ (line (pt 533.46 342.8) (pt 533.14 343.12) (width 0.5) (netNameRef "GND") )
+ (line (pt 534.4 342.8) (pt 533.46 342.8) (width 0.5) (netNameRef "GND") )
+ (line (pt 548.54 393.4) (pt 548.54 397.28) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 554.64 303.64) (pt 565.88 292.4) (width 0.2) (netNameRef "PF8") )
+ (line (pt 561.3 300.3) (pt 571.3 290.3) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 562.6 303.7) (pt 575.46 290.84) (width 0.127) (netNameRef "BF_TDO") )
+ (line (pt 562.4 303.4) (pt 571.94 293.86) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 572.44 375.5) (pt 570.16 373.22) (width 0.6) (netNameRef "+1,2V7") )
+ (line (pt 578.815 373.25) (pt 578.815 375.135) (width 1.0) (netNameRef "+5V") )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "+3,3V7")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval (area 4.064e+006))
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 589.0 352.5)
+ (pt 589.0 343.0)
+ (pt 605.3 343.0)
+ (pt 605.3 352.5)
+ (netNameRef "+3,3V7")
+ )
+ (island
+ (islandOutline
+ (pt 589.0 352.5)
+ (pt 589.0 343.0)
+ (pt 605.3 343.0)
+ (pt 605.3 352.5)
+ )
+ )
+ )
+ (line (pt 617.02 275.14) (pt 617.02 274.06) (width 0.5) (netNameRef "+3,3VF") )
+ (line (pt 640.14 304.5) (pt 641.36 305.72) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 628.28 304.84) (pt 635.36 304.84) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 640.1 312.08) (pt 641.36 313.34) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 631.0 434.32) (pt 635.8 434.32) (width 0.2) (netNameRef "1_OUT6") )
+ (line (pt 493.4 322.12) (pt 515.84 299.68) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 515.96 299.96) (pt 500.58 315.34) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 533.8 310.8) (pt 526.8 303.8) (width 0.127) (netNameRef "A12") )
+ (line (pt 527.06 303.2) (pt 534.3 310.44) (width 0.127) (netNameRef "A11") )
+ (line (pt 527.16 302.2) (pt 535.78 310.82) (width 0.127) (netNameRef "A8") )
+ (line (pt 527.7 301.7) (pt 536.84 310.84) (width 0.127) (netNameRef "A7") )
+ (line (pt 528.02 301.42) (pt 537.26 310.66) (width 0.127) (netNameRef "A6") )
+ (line (pt 527.7 300.7) (pt 537.78 310.78) (width 0.127) (netNameRef "A5") )
+ (line (pt 527.98 300.42) (pt 538.2 310.64) (width 0.127) (netNameRef "A4") )
+ (line (pt 540.32 310.6) (pt 529.68 299.96) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 527.46 302.92) (pt 535.32 310.78) (width 0.127) (netNameRef "A9") )
+ (line (pt 531.28 299.68) (pt 541.3 309.7) (width 0.127) (netNameRef "~AWE") )
+ (copperPour95
+ (pourType SolidPour)
+ (netNameRef "+1,2V7")
+ (width 0.635)
+ (pourSpacing 1.27)
+ (pourBackoff 0.12)
+ (useDesignRules True)
+ (pourSmoothness 1)
+ (thermalType NoTherm)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval (area 4.064e+006))
+ (viaThermalType NoTherm)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 562.6 383.4)
+ (pt 562.6 367.6)
+ (pt 566.3 367.6)
+ (pt 576.5 367.6)
+ (pt 576.5 383.4)
+ (netNameRef "+1,2V7")
+ )
+ (island
+ (islandOutline
+ (pt 562.6 383.4)
+ (pt 562.6 367.6)
+ (pt 576.5 367.6)
+ (pt 576.5 383.4)
+ )
+ )
+ )
+ (text (pt 604.8 246.1) ".767444.161\r\n\r\nVer. 1" (textStyleRef "T:H80W8") (isFlipped True) (justify Center) (extent 14.46875 6.8125) )
+ (line (pt 526.8 303.8) (pt 519.5 303.8) (width 0.127) (netNameRef "A12") )
+ (line (pt 519.6 303.2) (pt 527.06 303.2) (width 0.127) (netNameRef "A11") )
+ (line (pt 519.48 302.92) (pt 527.46 302.92) (width 0.127) (netNameRef "A9") )
+ (line (pt 519.6 302.2) (pt 527.16 302.2) (width 0.127) (netNameRef "A8") )
+ (line (pt 519.6 301.7) (pt 527.7 301.7) (width 0.127) (netNameRef "A7") )
+ (line (pt 519.48 301.42) (pt 528.02 301.42) (width 0.127) (netNameRef "A6") )
+ (line (pt 519.6 300.7) (pt 527.7 300.7) (width 0.127) (netNameRef "A5") )
+ (line (pt 519.48 300.42) (pt 527.98 300.42) (width 0.127) (netNameRef "A4") )
+ (line (pt 529.68 299.96) (pt 515.96 299.96) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 515.84 299.68) (pt 531.28 299.68) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 522.0 304.9) (pt 526.2 304.9) (width 0.127) (netNameRef "CLKOUT") )
+ (line (pt 615.96 269.86) (pt 608.16 277.66) (width 0.2) (netNameRef "STP") )
+ (line (pt 518.1 308.3) (pt 522.0 304.4) (width 0.127) (netNameRef "SCKE") )
+ (polyCutOut
+ (pcbPoly
+ (pt 595.9 241.2)
+ (pt 614.3 241.2)
+ (pt 614.3 251.4)
+ (pt 595.9 251.4)
+ )
+ )
+ (line (pt 549.82 324.76) (pt 576.92 297.66) (width 0.127) (netNameRef "~EMU") )
+ (line (pt 552.36 319.14) (pt 576.32 295.18) (width 0.127) (netNameRef "BF_TRS") )
+ (line (pt 575.88 295.22) (pt 552.26 318.84) (width 0.127) (netNameRef "BF_TDI") )
+ (line (pt 616.33 271.13) (pt 608.74 278.72) (width 0.2) (netNameRef "CKP") )
+ (line (pt 549.0 314.6) (pt 561.3 302.3) (width 0.127) (netNameRef "BF_TCK") )
+ (line (pt 549.3 314.7) (pt 560.6 303.4) (width 0.127) (netNameRef "BF_TMS") )
+ (line (pt 549.6 314.8) (pt 560.7 303.7) (width 0.127) (netNameRef "BF_TDO") )
+ (copperPour95
+ (pourType Hatch45Pour)
+ (netNameRef "GND")
+ (width 0.2)
+ (pourSpacing 0.5)
+ (pourBackoff 0.3)
+ (useDesignRules False)
+ (pourSmoothness 3)
+ (thermalType Therm45)
+ (thermalWidth 0.381)
+ (thermalSpokes 4)
+ (islandRemoval unconnected)
+ (viaThermalType Therm45)
+ (viaThermalWidth 0.381)
+ (viaThermalSpokes 4)
+ (pcbPoly
+ (pt 369.9 464.6)
+ (pt 369.9 237.1)
+ (pt 649.1 237.1)
+ (pt 649.1 464.6)
+ (netNameRef "GND")
+ )
+ (island
+ (islandOutline
+ (pt 427.90355 330.53432)
+ (pt 427.90355 330.08473)
+ (pt 428.18385 330.08473)
+ (pt 428.3 330.10783)
+ (pt 429.1 330.10783)
+ (pt 429.25607 330.07679)
+ (pt 429.38838 329.98838)
+ (pt 429.44744 329.9)
+ (pt 429.55256 329.9)
+ (pt 429.61162 329.98838)
+ (pt 429.67834 330.03296)
+ (pt 429.65114 330.05114)
+ (pt 429.45222 330.34884)
+ (pt 429.42788 330.4712)
+ (pt 429.35607 330.42321)
+ (pt 429.2 330.39217)
+ (pt 428.4 330.39217)
+ (pt 428.24393 330.42321)
+ (pt 428.11162 330.51162)
+ (pt 428.05256 330.6)
+ (pt 427.94744 330.6)
+ )
+ (thermal (pt 430.05 330.45) (pt 429.65114 330.05114) (thermalWidth 0.381))
+ (thermal (pt 429.0095 330.9905) (pt 429.42788 330.4712) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 529.12412 306.83362)
+ (pt 528.8018 306.70011)
+ (pt 527.24785 306.70011)
+ (pt 527.29228 306.63361)
+ (pt 527.34273 306.38)
+ (pt 527.29228 306.12639)
+ (pt 527.17085 305.94466)
+ (pt 527.33361 305.91228)
+ (pt 527.54862 305.76862)
+ (pt 527.69228 305.55361)
+ (pt 527.71747 305.42697)
+ )
+ (thermal (pt 526.805 306.255) (pt 527.17085 305.94466) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.8 405.60783)
+ (pt 526.95607 405.57679)
+ (pt 527.08838 405.48838)
+ (pt 527.14744 405.4)
+ (pt 527.25256 405.4)
+ (pt 527.31162 405.48838)
+ (pt 527.44393 405.57679)
+ (pt 527.6 405.60783)
+ (pt 528.4 405.60783)
+ (pt 528.55607 405.57679)
+ (pt 528.5745 405.56447)
+ (pt 528.69079 405.64217)
+ (pt 528.5 405.64217)
+ (pt 528.34393 405.67321)
+ (pt 528.30384 405.7)
+ (pt 527.89616 405.7)
+ (pt 527.85607 405.67321)
+ (pt 527.7 405.64217)
+ (pt 526.55279 405.64217)
+ (pt 526.58713 405.60783)
+ )
+ (thermal (pt 528.95 405.15) (pt 528.5745 405.56447) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 542.78 317.38744)
+ (pt 542.86838 317.32838)
+ (pt 542.95679 317.19607)
+ (pt 542.98783 317.04)
+ (pt 542.98783 316.96117)
+ (pt 543.03217 316.95235)
+ (pt 543.03217 317.32)
+ (pt 543.06321 317.47607)
+ (pt 543.15162 317.60838)
+ (pt 543.21811 317.65281)
+ (pt 543.14 317.63727)
+ (pt 543.08738 317.64774)
+ (pt 543.08 317.64468)
+ (pt 542.93056 317.64468)
+ (pt 542.86838 317.55162)
+ (pt 542.78 317.49256)
+ )
+ (thermal (pt 543.6305 317.1295) (pt 543.15162 317.60838) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 544.98 398.44783)
+ (pt 545.13607 398.41679)
+ (pt 545.26838 398.32838)
+ (pt 545.35679 398.19607)
+ (pt 545.38783 398.04)
+ (pt 545.38783 397.57783)
+ (pt 545.43803 397.83018)
+ (pt 545.65904 398.16096)
+ (pt 545.98982 398.38197)
+ (pt 546.28153 398.44)
+ (pt 545.98982 398.49803)
+ (pt 545.65904 398.71904)
+ (pt 545.43803 399.04982)
+ (pt 545.38 399.34153)
+ (pt 545.32197 399.04982)
+ (pt 545.10096 398.71904)
+ (pt 544.77018 398.49803)
+ (pt 544.51783 398.44783)
+ )
+ (thermal (pt 544.68 399.14) (pt 545.10096 398.71904) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.10046 313.00904)
+ (pt 552.08237 313.1)
+ (pt 552.15222 313.45116)
+ (pt 552.35114 313.74886)
+ (pt 552.37834 313.76704)
+ (pt 552.31162 313.81162)
+ (pt 552.25256 313.9)
+ (pt 552.14744 313.9)
+ (pt 552.08838 313.81162)
+ (pt 551.95607 313.72321)
+ (pt 551.8 313.69217)
+ (pt 551.41733 313.69217)
+ )
+ (thermal (pt 552.75 313.35) (pt 552.35114 313.74886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 549.68862 341.26862)
+ (pt 549.72 341.22165)
+ (pt 549.75138 341.26862)
+ (pt 549.83331 341.32336)
+ (pt 549.79138 341.35138)
+ (pt 549.75332 341.40835)
+ (pt 549.72862 341.37138)
+ (pt 549.63172 341.30664)
+ )
+ (thermal (pt 549.345 340.925) (pt 549.68862 341.26862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 549.71204 340.36643)
+ (pt 549.74081 340.3472)
+ (pt 549.72 340.37835)
+ )
+ (thermal (pt 549.345 340.675) (pt 549.71204 340.36643) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.88639 341.24772)
+ (pt 555.67138 341.39138)
+ (pt 555.52772 341.60639)
+ (pt 555.48944 341.79882)
+ (pt 555.48944 341.29595)
+ (pt 555.63607 341.26679)
+ (pt 555.67616 341.24)
+ (pt 555.9252 341.24)
+ )
+ (thermal (pt 556.015 341.735) (pt 555.67138 341.39138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 550.71138 343.30862)
+ (pt 550.77835 343.35336)
+ (pt 550.75138 343.37138)
+ (pt 550.73822 343.39107)
+ (pt 550.65676 343.33664)
+ (pt 550.70746 343.30276)
+ )
+ (thermal (pt 550.425 343.755) (pt 550.73822 343.39107) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 549.75204 343.34643)
+ (pt 549.80862 343.30862)
+ (pt 549.81254 343.30276)
+ (pt 549.90324 343.36336)
+ (pt 549.83138 343.41138)
+ (pt 549.81341 343.43828)
+ )
+ (thermal (pt 550.175 343.755) (pt 549.83138 343.41138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 553.70862 343.32862)
+ (pt 553.75877 343.25356)
+ (pt 553.96639 343.39228)
+ (pt 554.11893 343.42263)
+ (pt 553.81599 343.72557)
+ (pt 553.79228 343.60639)
+ (pt 553.64862 343.39138)
+ (pt 553.63165 343.38004)
+ )
+ (thermal (pt 553.305 343.735) (pt 553.64862 343.39138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 550.73138 351.24862)
+ (pt 550.77835 351.28)
+ (pt 550.73138 351.31138)
+ (pt 550.70281 351.35414)
+ (pt 550.63682 351.31004)
+ (pt 550.73057 351.24741)
+ )
+ (thermal (pt 550.385 351.715) (pt 550.70281 351.35414) (thermalWidth 0.381))
+ (thermal (pt 551.075 350.905) (pt 550.73138 351.24862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.66588 351.25045)
+ (pt 551.69138 351.28862)
+ (pt 551.73414 351.31719)
+ (pt 551.70332 351.36331)
+ (pt 551.66862 351.31138)
+ (pt 551.62165 351.28)
+ )
+ (thermal (pt 551.325 350.905) (pt 551.69138 351.28862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 552.71138 360.22862)
+ (pt 552.75835 360.26)
+ (pt 552.71138 360.29138)
+ (pt 552.67 360.35331)
+ (pt 552.62862 360.29138)
+ (pt 552.59165 360.26668)
+ (pt 552.64862 360.22862)
+ (pt 552.68 360.18165)
+ )
+ (thermal (pt 553.055 359.885) (pt 552.71138 360.22862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 553.64862 360.22862)
+ (pt 553.68 360.18165)
+ (pt 553.71138 360.22862)
+ (pt 553.75835 360.26)
+ (pt 553.71138 360.29138)
+ (pt 553.68 360.33835)
+ (pt 553.64862 360.29138)
+ (pt 553.60165 360.26)
+ )
+ (thermal (pt 553.305 359.885) (pt 553.64862 360.22862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.76331 360.25668)
+ (pt 555.71138 360.29138)
+ (pt 555.68668 360.32835)
+ (pt 555.64862 360.27138)
+ (pt 555.64159 360.26668)
+ (pt 555.66862 360.24862)
+ (pt 555.69412 360.21045)
+ )
+ (thermal (pt 556.035 359.865) (pt 555.66862 360.24862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 551.43803 397.83018)
+ (pt 551.65904 398.16096)
+ (pt 551.98982 398.38197)
+ (pt 552.28153 398.44)
+ (pt 551.98982 398.49803)
+ (pt 551.65904 398.71904)
+ (pt 551.43803 399.04982)
+ (pt 551.38 399.34153)
+ (pt 551.32197 399.04982)
+ (pt 551.10096 398.71904)
+ (pt 550.77018 398.49803)
+ (pt 550.47847 398.44)
+ (pt 550.77018 398.38197)
+ (pt 551.10096 398.16096)
+ (pt 551.32197 397.83018)
+ (pt 551.38 397.53847)
+ )
+ (thermal (pt 552.08 399.14) (pt 551.65904 398.71904) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 556.64862 345.30862)
+ (pt 556.68 345.26165)
+ (pt 556.71138 345.30862)
+ (pt 556.77835 345.35336)
+ (pt 556.75138 345.37138)
+ (pt 556.72332 345.41338)
+ (pt 556.70862 345.39138)
+ (pt 556.61669 345.32996)
+ )
+ (thermal (pt 557.095 345.715) (pt 556.75138 345.37138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 560.66862 345.33138)
+ (pt 560.65159 345.32)
+ (pt 560.66862 345.30862)
+ (pt 560.71668 345.23669)
+ (pt 560.75138 345.28862)
+ (pt 560.77338 345.30332)
+ (pt 560.73138 345.33138)
+ (pt 560.7 345.37835)
+ )
+ (thermal (pt 560.325 345.675) (pt 560.66862 345.33138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 556.64344 346.37217)
+ (pt 556.70862 346.32862)
+ (pt 556.73668 346.28662)
+ (pt 556.75138 346.30862)
+ (pt 556.84649 346.37217)
+ )
+ (thermal (pt 557.095 345.965) (pt 556.75138 346.30862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 559.36783 355.42537)
+ (pt 559.43361 355.41228)
+ (pt 559.64862 355.26862)
+ (pt 559.66332 355.24662)
+ (pt 559.69138 355.28862)
+ (pt 559.73338 355.31668)
+ (pt 559.71138 355.33138)
+ (pt 559.56772 355.54639)
+ (pt 559.51727 355.8)
+ (pt 559.56772 356.05361)
+ (pt 559.71138 356.26862)
+ (pt 559.72841 356.28)
+ (pt 559.71138 356.29138)
+ (pt 559.67664 356.34338)
+ (pt 559.66862 356.33138)
+ (pt 559.45361 356.18772)
+ (pt 559.36197 356.16949)
+ (pt 559.36783 356.14)
+ )
+ (thermal (pt 560.055 355.925) (pt 559.71138 356.26862) (thermalWidth 0.381))
+ (thermal (pt 560.055 355.675) (pt 559.71138 355.33138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.71138 360.22862)
+ (pt 563.74338 360.25)
+ (pt 563.71138 360.27138)
+ (pt 563.67 360.33331)
+ (pt 563.62862 360.27138)
+ (pt 563.58165 360.24)
+ (pt 563.62862 360.20862)
+ (pt 563.66332 360.15669)
+ )
+ (thermal (pt 563.285 359.865) (pt 563.62862 360.20862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 569.67912 257.33912)
+ (pt 569.43 257.71196)
+ (pt 569.18088 257.33912)
+ (pt 568.80804 257.09)
+ (pt 569.18088 256.84088)
+ (pt 569.43 256.46804)
+ (pt 569.67912 256.84088)
+ (pt 570.05196 257.09)
+ )
+ (thermal (pt 570.192 256.328) (pt 569.67912 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 567.62 344.31256)
+ (pt 567.53162 344.37162)
+ (pt 567.45136 344.49174)
+ (pt 567.14 344.49174)
+ (pt 566.81983 344.62436)
+ (pt 566.81228 344.58639)
+ (pt 566.66862 344.37138)
+ (pt 566.62165 344.34)
+ (pt 566.66862 344.30862)
+ (pt 566.71877 344.23356)
+ (pt 566.92639 344.37228)
+ (pt 567.18 344.42273)
+ (pt 567.43361 344.37228)
+ (pt 567.62 344.24774)
+ )
+ (thermal (pt 567.305 343.885) (pt 567.62 344.24774) (thermalWidth 0.381))
+ (thermal (pt 567.055 343.885) (pt 566.71877 344.23356) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.66862 350.33138)
+ (pt 566.61172 350.29336)
+ (pt 566.68281 350.24586)
+ (pt 566.71138 350.28862)
+ (pt 566.76331 350.32332)
+ (pt 566.69412 350.36955)
+ )
+ (thermal (pt 566.365 349.885) (pt 566.68281 350.24586) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.85228 346.52639)
+ (pt 564.70862 346.31138)
+ (pt 564.63352 346.2612)
+ (pt 565.44 346.2612)
+ (pt 565.65387 346.17261)
+ (pt 565.73138 346.28862)
+ (pt 565.77338 346.31668)
+ (pt 565.75138 346.33138)
+ (pt 565.60772 346.54639)
+ (pt 565.55727 346.8)
+ (pt 565.60772 347.05361)
+ (pt 565.75138 347.26862)
+ (pt 565.84821 347.33332)
+ (pt 565.73138 347.41138)
+ (pt 565.72004 347.42835)
+ (pt 565.66862 347.35138)
+ (pt 565.45361 347.20772)
+ (pt 565.2 347.15727)
+ (pt 564.94639 347.20772)
+ (pt 564.73138 347.35138)
+ (pt 564.69668 347.40331)
+ (pt 564.64862 347.33138)
+ (pt 564.61669 347.31004)
+ (pt 564.70862 347.24862)
+ (pt 564.85228 347.03361)
+ (pt 564.90273 346.78)
+ )
+ (thermal (pt 564.365 346.905) (pt 564.70862 347.24862) (thermalWidth 0.381))
+ (thermal (pt 564.365 346.655) (pt 564.70862 346.31138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 568.49217 354.1)
+ (pt 568.5182 354.23088)
+ (pt 568.45361 354.18772)
+ (pt 568.2 354.13727)
+ (pt 567.94639 354.18772)
+ (pt 567.73138 354.33138)
+ (pt 567.58772 354.54639)
+ (pt 567.53727 354.8)
+ (pt 567.58772 355.05361)
+ (pt 567.69338 355.21174)
+ (pt 567.47949 355.21174)
+ (pt 567.41361 355.16772)
+ (pt 567.16 355.11727)
+ (pt 566.90639 355.16772)
+ (pt 566.69138 355.31138)
+ (pt 566.63996 355.38835)
+ (pt 566.62862 355.37138)
+ (pt 566.57669 355.33668)
+ (pt 566.64862 355.28862)
+ (pt 566.79228 355.07361)
+ (pt 566.84273 354.82)
+ (pt 566.79228 354.56639)
+ (pt 566.64862 354.35138)
+ (pt 566.56676 354.29668)
+ (pt 566.66862 354.22862)
+ (pt 566.68664 354.20165)
+ (pt 566.73138 354.26862)
+ (pt 566.94639 354.41228)
+ (pt 567.2 354.46273)
+ (pt 567.45361 354.41228)
+ (pt 567.66862 354.26862)
+ (pt 567.81228 354.05361)
+ (pt 567.85711 353.82826)
+ (pt 568.49217 353.82826)
+ )
+ (thermal (pt 568.075 354.925) (pt 567.69338 355.21174) (thermalWidth 0.381))
+ (thermal (pt 568.075 354.675) (pt 567.73138 354.33138) (thermalWidth 0.381))
+ (thermal (pt 566.285 355.715) (pt 566.62862 355.37138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.69138 355.37138)
+ (pt 565.64 355.44828)
+ (pt 565.58862 355.37138)
+ (pt 565.55172 355.34673)
+ (pt 565.66862 355.26862)
+ (pt 565.68332 355.24662)
+ (pt 565.71138 355.28862)
+ (pt 565.76331 355.32332)
+ )
+ (thermal (pt 566.035 355.715) (pt 565.69138 355.37138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.62862 356.30862)
+ (pt 566.68004 356.23165)
+ (pt 566.69138 356.24862)
+ (pt 566.76835 356.30004)
+ (pt 566.75138 356.31138)
+ (pt 566.68664 356.40828)
+ (pt 566.64862 356.35138)
+ (pt 566.60662 356.32332)
+ )
+ (thermal (pt 566.285 355.965) (pt 566.62862 356.30862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.45361 351.41228)
+ (pt 566.66588 351.27045)
+ (pt 566.69138 351.30862)
+ (pt 566.72835 351.33332)
+ (pt 566.67138 351.37138)
+ (pt 566.52772 351.58639)
+ (pt 566.51151 351.66787)
+ (pt 566.28872 351.44508)
+ )
+ (thermal (pt 567.015 351.715) (pt 566.67138 351.37138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.64862 359.22862)
+ (pt 566.67327 359.19172)
+ (pt 566.75138 359.30862)
+ (pt 566.78338 359.33)
+ (pt 566.75138 359.35138)
+ (pt 566.72336 359.39331)
+ (pt 566.66862 359.31138)
+ (pt 566.59669 359.26332)
+ )
+ (thermal (pt 566.305 358.885) (pt 566.64862 359.22862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.71138 359.22862)
+ (pt 565.78331 359.27668)
+ (pt 565.73138 359.31138)
+ (pt 565.69004 359.37324)
+ (pt 565.61045 359.25412)
+ (pt 565.64862 359.22862)
+ (pt 565.68 359.18165)
+ )
+ (thermal (pt 566.055 358.885) (pt 565.71138 359.22862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 577.29912 257.33912)
+ (pt 577.05 257.71196)
+ (pt 576.80088 257.33912)
+ (pt 576.42804 257.09)
+ (pt 576.80088 256.84088)
+ (pt 577.05 256.46804)
+ (pt 577.29912 256.84088)
+ (pt 577.67196 257.09)
+ )
+ (thermal (pt 576.288 256.328) (pt 576.80088 256.84088) (thermalWidth 0.381))
+ (thermal (pt 577.812 256.328) (pt 577.29912 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 574.26088 257.33912)
+ (pt 573.88804 257.09)
+ (pt 574.26088 256.84088)
+ (pt 574.51 256.46804)
+ (pt 574.75912 256.84088)
+ (pt 575.13196 257.09)
+ (pt 574.75912 257.33912)
+ (pt 574.51 257.71196)
+ )
+ (thermal (pt 575.272 256.328) (pt 574.75912 256.84088) (thermalWidth 0.381))
+ (thermal (pt 573.748 256.328) (pt 574.26088 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 382.99179 296.96)
+ (pt 382.99179 296.34)
+ (pt 383.09256 296.34)
+ (pt 383.15162 296.42838)
+ (pt 383.28393 296.51679)
+ (pt 383.44 296.54783)
+ (pt 384.24 296.54783)
+ (pt 384.39607 296.51679)
+ (pt 384.52838 296.42838)
+ (pt 384.56628 296.37166)
+ (pt 384.59114 296.40886)
+ (pt 384.88884 296.60778)
+ (pt 385.13137 296.65602)
+ (pt 384.84884 296.71222)
+ (pt 384.55114 296.91114)
+ (pt 384.52296 296.95331)
+ (pt 384.46838 296.87162)
+ (pt 384.33607 296.78321)
+ (pt 384.18 296.75217)
+ (pt 383.38 296.75217)
+ (pt 383.22393 296.78321)
+ (pt 383.09162 296.87162)
+ (pt 383.03256 296.96)
+ )
+ (thermal (pt 384.99 296.01) (pt 384.59114 296.40886) (thermalWidth 0.381))
+ (thermal (pt 384.95 297.31) (pt 384.55114 296.91114) (thermalWidth 0.381))
+ (thermal (pt 383.9895 297.3505) (pt 384.46838 296.87162) (thermalWidth 0.381))
+ (thermal (pt 384.0495 295.9495) (pt 384.52838 296.42838) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 489.74783 319.96)
+ (pt 489.74783 319.49425)
+ (pt 489.85114 319.64886)
+ (pt 489.99747 319.74664)
+ (pt 489.81114 319.87114)
+ (pt 489.74616 319.96838)
+ )
+ (thermal (pt 490.25 319.25) (pt 489.85114 319.64886) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.07805 320.25427)
+ (pt 526.12881 319.9991)
+ (pt 526.07805 319.74393)
+ (pt 525.98124 319.59905)
+ (pt 526.07805 319.45417)
+ (pt 526.12881 319.199)
+ (pt 526.09353 319.02166)
+ (pt 526.3 319.06273)
+ (pt 526.55361 319.01228)
+ (pt 526.76862 318.86862)
+ (pt 526.91228 318.65361)
+ (pt 526.96273 318.4)
+ (pt 526.91228 318.14639)
+ (pt 526.76862 317.93138)
+ (pt 526.55361 317.78772)
+ (pt 526.3 317.73727)
+ (pt 526.09308 317.77843)
+ (pt 526.12881 317.5988)
+ (pt 526.07805 317.34363)
+ (pt 525.98124 317.19875)
+ (pt 526.07805 317.05387)
+ (pt 526.12881 316.7987)
+ (pt 526.07805 316.54353)
+ (pt 526.06346 316.52169)
+ (pt 529.88 316.52169)
+ (pt 529.9582 316.4893)
+ (pt 529.97543 316.51507)
+ (pt 526.80525 319.68525)
+ (pt 526.65831 320.04)
+ (pt 526.65831 320.97672)
+ (pt 526.46 320.93727)
+ (pt 526.20639 320.98772)
+ (pt 526.05499 321.08888)
+ (pt 526.07805 321.05437)
+ (pt 526.12881 320.7992)
+ (pt 526.07805 320.54403)
+ (pt 525.98124 320.39915)
+ )
+ (thermal (pt 526.425 318.525) (pt 526.76862 318.86862) (thermalWidth 0.381))
+ (thermal (pt 526.425 318.275) (pt 526.76862 317.93138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 555.56772 342.52639)
+ (pt 555.51727 342.78)
+ (pt 555.56772 343.03361)
+ (pt 555.71138 343.24862)
+ (pt 555.81324 343.31668)
+ (pt 555.73138 343.37138)
+ (pt 555.58772 343.58639)
+ (pt 555.53727 343.84)
+ (pt 555.58772 344.09361)
+ (pt 555.73138 344.30862)
+ (pt 555.76835 344.33332)
+ (pt 555.74178 344.35107)
+ (pt 555.72862 344.33138)
+ (pt 555.51361 344.18772)
+ (pt 555.26 344.13727)
+ (pt 555.23649 344.14195)
+ (pt 555.29922 344.07922)
+ (pt 555.48944 343.62)
+ (pt 555.48944 341.92118)
+ (pt 555.52772 342.11361)
+ (pt 555.67138 342.32862)
+ (pt 555.69107 342.34178)
+ )
+ (thermal (pt 556.015 341.985) (pt 555.67138 342.32862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.62862 343.30862)
+ (pt 558.70004 343.20172)
+ (pt 558.73138 343.24862)
+ (pt 558.79828 343.29332)
+ (pt 558.71138 343.35138)
+ (pt 558.66332 343.42331)
+ (pt 558.62862 343.37138)
+ (pt 558.58165 343.34)
+ )
+ (thermal (pt 558.285 342.965) (pt 558.62862 343.30862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 558.62862 358.27138)
+ (pt 558.60662 358.25668)
+ (pt 558.64862 358.22862)
+ (pt 558.69 358.16669)
+ (pt 558.73138 358.22862)
+ (pt 558.79331 358.27)
+ (pt 558.73138 358.31138)
+ (pt 558.69336 358.36828)
+ )
+ (thermal (pt 558.285 358.615) (pt 558.62862 358.27138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 566.64862 358.29138)
+ (pt 566.61578 358.26944)
+ (pt 566.90395 358.26944)
+ (pt 566.75138 358.37138)
+ (pt 566.72673 358.40828)
+ )
+ (thermal (pt 566.305 358.635) (pt 566.64862 358.29138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 565.73138 350.33138)
+ (pt 565.58772 350.54639)
+ (pt 565.55492 350.71128)
+ (pt 565.20182 350.35818)
+ (pt 565.1692 350.34467)
+ (pt 565.26 350.36273)
+ (pt 565.51361 350.31228)
+ (pt 565.72862 350.16862)
+ (pt 565.72996 350.16662)
+ (pt 565.77138 350.22862)
+ (pt 565.82828 350.26664)
+ )
+ (thermal (pt 566.115 349.885) (pt 565.77138 350.22862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 442.10884 329.16778)
+ (pt 442.46 329.23763)
+ (pt 442.81116 329.16778)
+ (pt 443.10886 328.96886)
+ (pt 443.21932 328.80355)
+ (pt 444.33432 328.80355)
+ (pt 444.39324 328.84292)
+ (pt 444.29114 328.91114)
+ (pt 444.09222 329.20884)
+ (pt 444.02237 329.56)
+ (pt 444.09222 329.91116)
+ (pt 444.18167 330.04503)
+ (pt 444.07222 330.20884)
+ (pt 444.00237 330.56)
+ (pt 444.07222 330.91116)
+ (pt 444.19317 331.09217)
+ (pt 443.88 331.09217)
+ (pt 443.72393 331.12321)
+ (pt 443.59162 331.21162)
+ (pt 443.53256 331.3)
+ (pt 443.42744 331.3)
+ (pt 443.36838 331.21162)
+ (pt 443.32944 331.1856)
+ (pt 443.32944 331.14)
+ (pt 443.25144 330.95169)
+ (pt 443.27763 330.82)
+ (pt 443.20778 330.46884)
+ (pt 443.00886 330.17114)
+ (pt 442.71116 329.97222)
+ (pt 442.45653 329.92157)
+ (pt 442.43748 329.90252)
+ (pt 441.94 329.69645)
+ (pt 441.53724 329.69645)
+ (pt 441.52679 329.64393)
+ (pt 441.49999 329.60382)
+ (pt 441.49999 329.19618)
+ (pt 441.52679 329.15607)
+ (pt 441.53724 329.10355)
+ (pt 442.01271 329.10355)
+ )
+ (thermal (pt 444.69 329.31) (pt 444.29114 328.91114) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 504.24838 356.79162)
+ (pt 504.11607 356.70321)
+ (pt 503.96 356.67217)
+ (pt 503.16 356.67217)
+ (pt 503.00393 356.70321)
+ (pt 502.87162 356.79162)
+ (pt 502.81256 356.88)
+ (pt 502.70744 356.88)
+ (pt 502.66355 356.81432)
+ (pt 502.66355 356.5)
+ (pt 502.58488 356.31008)
+ (pt 502.69748 356.19748)
+ (pt 502.88674 355.74058)
+ (pt 502.95607 355.72679)
+ (pt 502.99616 355.7)
+ (pt 503.40384 355.7)
+ (pt 503.44393 355.72679)
+ (pt 503.6 355.75783)
+ (pt 503.93452 355.75783)
+ (pt 503.88237 356.02)
+ (pt 503.95222 356.37116)
+ (pt 504.15114 356.66886)
+ (pt 504.40733 356.84005)
+ (pt 504.31981 356.89852)
+ )
+ (thermal (pt 504.55 356.27) (pt 504.15114 356.66886) (thermalWidth 0.381))
+ (thermal (pt 503.7695 357.2705) (pt 504.24838 356.79162) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 526.34562 305.82169)
+ (pt 526.21138 305.91138)
+ (pt 526.06772 306.12639)
+ (pt 526.06735 306.12827)
+ (pt 525.935 305.9302)
+ (pt 525.77261 305.82169)
+ )
+ (thermal (pt 526.555 306.255) (pt 526.21138 305.91138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 548.84828 341.33336)
+ (pt 548.79138 341.37138)
+ (pt 548.76 341.41835)
+ (pt 548.72862 341.37138)
+ (pt 548.68165 341.34)
+ (pt 548.72862 341.30862)
+ (pt 548.75412 341.27045)
+ )
+ (thermal (pt 549.095 340.925) (pt 548.72862 341.30862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 564.10088 257.33912)
+ (pt 563.95826 257.24383)
+ (pt 564.096 257.24383)
+ (pt 564.25207 257.21279)
+ (pt 564.38438 257.12438)
+ (pt 564.47279 256.99207)
+ (pt 564.50383 256.836)
+ (pt 564.50383 256.69826)
+ (pt 564.59912 256.84088)
+ (pt 564.97196 257.09)
+ (pt 564.59912 257.33912)
+ (pt 564.35 257.71196)
+ )
+ (thermal (pt 565.112 257.852) (pt 564.59912 257.33912) (thermalWidth 0.381))
+ (thermal (pt 563.9055 256.6455) (pt 564.38438 257.12438) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 571.72088 257.33912)
+ (pt 571.34804 257.09)
+ (pt 571.72088 256.84088)
+ (pt 571.97 256.46804)
+ (pt 572.21912 256.84088)
+ (pt 572.59196 257.09)
+ (pt 572.21912 257.33912)
+ (pt 571.97 257.71196)
+ )
+ (thermal (pt 572.732 256.328) (pt 572.21912 256.84088) (thermalWidth 0.381))
+ (thermal (pt 571.208 256.328) (pt 571.72088 256.84088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.73138 348.29138)
+ (pt 563.71332 348.31841)
+ (pt 563.70862 348.31138)
+ (pt 563.68159 348.29332)
+ (pt 563.68862 348.28862)
+ (pt 563.70668 348.26159)
+ (pt 563.71138 348.26862)
+ (pt 563.73841 348.28668)
+ )
+ (thermal (pt 564.075 348.635) (pt 563.73138 348.29138) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.51162 357.01162)
+ (pt 563.42321 357.14393)
+ (pt 563.41523 357.18406)
+ (pt 563.18 357.13727)
+ (pt 562.92639 357.18772)
+ (pt 562.71138 357.33138)
+ (pt 562.69668 357.35338)
+ (pt 562.66862 357.31138)
+ (pt 562.45361 357.16772)
+ (pt 562.2 357.11727)
+ (pt 561.94639 357.16772)
+ (pt 561.73138 357.31138)
+ (pt 561.68 357.38828)
+ (pt 561.62862 357.31138)
+ (pt 561.62662 357.31004)
+ (pt 561.68862 357.26862)
+ (pt 561.83228 357.05361)
+ (pt 561.88273 356.8)
+ (pt 561.83228 356.54639)
+ (pt 561.68862 356.33138)
+ (pt 561.47361 356.18772)
+ (pt 561.22 356.13727)
+ (pt 560.96639 356.18772)
+ (pt 560.75138 356.33138)
+ (pt 560.71336 356.38828)
+ (pt 560.64862 356.29138)
+ (pt 560.63159 356.28)
+ (pt 560.64862 356.26862)
+ (pt 560.79228 356.05361)
+ (pt 560.84273 355.8)
+ (pt 560.79228 355.54639)
+ (pt 560.64862 355.33138)
+ (pt 560.60662 355.30332)
+ (pt 560.62862 355.28862)
+ (pt 560.68336 355.20669)
+ (pt 560.71138 355.24862)
+ (pt 560.92639 355.39228)
+ (pt 561.18 355.44273)
+ (pt 561.43361 355.39228)
+ (pt 561.64862 355.24862)
+ (pt 561.65664 355.23662)
+ (pt 561.69138 355.28862)
+ (pt 561.75338 355.33004)
+ (pt 561.75138 355.33138)
+ (pt 561.60772 355.54639)
+ (pt 561.55727 355.8)
+ (pt 561.60772 356.05361)
+ (pt 561.75138 356.26862)
+ (pt 561.96639 356.41228)
+ (pt 562.22 356.46273)
+ (pt 562.47361 356.41228)
+ (pt 562.63516 356.30434)
+ (pt 562.65138 356.32862)
+ (pt 562.86639 356.47228)
+ (pt 563.12 356.52273)
+ (pt 563.37361 356.47228)
+ (pt 563.58862 356.32862)
+ (pt 563.65336 356.23172)
+ (pt 563.69138 356.28862)
+ (pt 563.73338 356.31668)
+ (pt 563.71138 356.33138)
+ (pt 563.56772 356.54639)
+ (pt 563.51727 356.8)
+ (pt 563.55376 356.98346)
+ )
+ (thermal (pt 560.305 355.925) (pt 560.64862 356.26862) (thermalWidth 0.381))
+ (thermal (pt 560.305 355.675) (pt 560.64862 355.33138) (thermalWidth 0.381))
+ (thermal (pt 564.055 356.675) (pt 563.71138 356.33138) (thermalWidth 0.381))
+ (thermal (pt 563.9905 357.4905) (pt 563.51162 357.01162) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.69138 353.28862)
+ (pt 563.90639 353.43228)
+ (pt 564.16 353.48273)
+ (pt 564.41361 353.43228)
+ (pt 564.62862 353.28862)
+ (pt 564.66647 353.23197)
+ (pt 564.67871 353.21973)
+ (pt 564.71138 353.26862)
+ (pt 564.92639 353.41228)
+ (pt 565.18 353.46273)
+ (pt 565.43361 353.41228)
+ (pt 565.64862 353.26862)
+ (pt 565.67332 353.23165)
+ (pt 565.71138 353.28862)
+ (pt 565.72648 353.29871)
+ (pt 565.58772 353.50639)
+ (pt 565.53727 353.76)
+ (pt 565.58772 354.01361)
+ (pt 565.73138 354.22862)
+ (pt 565.81324 354.28332)
+ (pt 565.71138 354.35138)
+ (pt 565.69668 354.37338)
+ (pt 565.66862 354.33138)
+ (pt 565.45361 354.18772)
+ (pt 565.2 354.13727)
+ (pt 564.94639 354.18772)
+ (pt 564.73138 354.33138)
+ (pt 564.70668 354.36835)
+ (pt 564.66862 354.31138)
+ (pt 564.45361 354.16772)
+ (pt 564.2 354.11727)
+ (pt 563.94639 354.16772)
+ (pt 563.73138 354.31138)
+ (pt 563.69 354.37331)
+ (pt 563.64862 354.31138)
+ (pt 563.48567 354.2025)
+ (pt 563.55679 354.09607)
+ (pt 563.58783 353.94)
+ (pt 563.58783 353.30269)
+ (pt 563.66592 353.25051)
+ )
+ (thermal (pt 563.385 352.865) (pt 563.66592 353.25051) (thermalWidth 0.381))
+ (thermal (pt 562.9895 353.7495) (pt 563.48567 354.2025) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 556.62862 360.20862)
+ (pt 556.65 360.17662)
+ (pt 556.67138 360.20862)
+ (pt 556.72835 360.24668)
+ (pt 556.69138 360.27138)
+ (pt 556.66332 360.31338)
+ (pt 556.64862 360.29138)
+ (pt 556.57669 360.24332)
+ )
+ (thermal (pt 556.285 359.865) (pt 556.62862 360.20862) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 381.62088 258.77912)
+ (pt 381.24804 258.53)
+ (pt 381.62088 258.28088)
+ (pt 381.71617 258.13826)
+ (pt 381.71617 258.276)
+ (pt 381.74721 258.43207)
+ (pt 381.83562 258.56438)
+ (pt 381.96793 258.65279)
+ (pt 382.124 258.68383)
+ (pt 382.26174 258.68383)
+ (pt 382.11912 258.77912)
+ (pt 381.87 259.15196)
+ )
+ (thermal (pt 381.108 257.768) (pt 381.62088 258.28088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 381.62088 266.39912)
+ (pt 381.24804 266.15)
+ (pt 381.62088 265.90088)
+ (pt 381.87 265.52804)
+ (pt 382.11912 265.90088)
+ (pt 382.49196 266.15)
+ (pt 382.11912 266.39912)
+ (pt 381.87 266.77196)
+ )
+ (thermal (pt 381.108 266.912) (pt 381.62088 266.39912) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 548.64525 314.24525)
+ (pt 548.49831 314.6)
+ (pt 548.49831 314.69219)
+ (pt 548.40298 314.78752)
+ (pt 548.25361 314.68772)
+ (pt 548.0 314.63727)
+ (pt 547.74639 314.68772)
+ (pt 547.53138 314.83138)
+ (pt 547.38772 315.04639)
+ (pt 547.33727 315.3)
+ (pt 547.38772 315.55361)
+ (pt 547.48752 315.70298)
+ (pt 546.24492 316.94558)
+ (pt 546.16862 316.83138)
+ (pt 545.95361 316.68772)
+ (pt 545.7 316.63727)
+ (pt 545.44639 316.68772)
+ (pt 545.23138 316.83138)
+ (pt 545.08772 317.04639)
+ (pt 545.03727 317.3)
+ (pt 545.08772 317.55361)
+ (pt 545.10741 317.58309)
+ (pt 541.38783 321.30267)
+ (pt 541.38783 320.82)
+ (pt 541.35679 320.66393)
+ (pt 541.26838 320.53162)
+ (pt 541.18 320.47256)
+ (pt 541.18 320.36744)
+ (pt 541.26838 320.30838)
+ (pt 541.35679 320.17607)
+ (pt 541.38783 320.02)
+ (pt 541.38783 319.22)
+ (pt 541.35679 319.06393)
+ (pt 541.26838 318.93162)
+ (pt 541.13607 318.84321)
+ (pt 540.98 318.81217)
+ (pt 540.42837 318.81217)
+ (pt 540.44273 318.74)
+ (pt 540.39228 318.48639)
+ (pt 540.24862 318.27138)
+ (pt 540.03361 318.12772)
+ (pt 539.78 318.07727)
+ (pt 539.52639 318.12772)
+ (pt 539.31138 318.27138)
+ (pt 539.16772 318.48639)
+ (pt 539.11727 318.74)
+ (pt 539.16772 318.99361)
+ (pt 539.31138 319.20862)
+ (pt 539.52639 319.35228)
+ (pt 539.77217 319.40117)
+ (pt 539.77217 320.02)
+ (pt 539.80321 320.17607)
+ (pt 539.89162 320.30838)
+ (pt 539.98 320.36744)
+ (pt 539.98 320.47256)
+ (pt 539.89162 320.53162)
+ (pt 539.80321 320.66393)
+ (pt 539.77217 320.82)
+ (pt 539.77217 320.88593)
+ (pt 539.57634 321.08176)
+ (pt 539.54639 321.08772)
+ (pt 539.33138 321.23138)
+ (pt 539.27041 321.32262)
+ (pt 539.26 321.31831)
+ (pt 537.20783 321.31831)
+ (pt 537.20783 320.7)
+ (pt 537.17679 320.54393)
+ (pt 537.08838 320.41162)
+ (pt 537.0 320.35256)
+ (pt 537.0 320.24744)
+ (pt 537.08838 320.18838)
+ (pt 537.17679 320.05607)
+ (pt 537.20783 319.9)
+ (pt 537.20783 319.1)
+ (pt 537.17679 318.94393)
+ (pt 537.10847 318.84168)
+ (pt 537.12838 318.82838)
+ (pt 537.21679 318.69607)
+ (pt 537.24783 318.54)
+ (pt 537.24783 317.74)
+ (pt 537.21679 317.58393)
+ (pt 537.12838 317.45162)
+ (pt 537.04 317.39256)
+ (pt 537.04 317.28744)
+ (pt 537.12838 317.22838)
+ (pt 537.21679 317.09607)
+ (pt 537.24783 316.94)
+ (pt 537.24783 316.14)
+ (pt 537.21679 315.98393)
+ (pt 537.12838 315.85162)
+ (pt 536.99607 315.76321)
+ (pt 536.84 315.73217)
+ (pt 536.04 315.73217)
+ (pt 535.88393 315.76321)
+ (pt 535.83526 315.79573)
+ (pt 535.67361 315.68772)
+ (pt 535.42 315.63727)
+ (pt 535.41938 315.63739)
+ (pt 535.44273 315.52)
+ (pt 535.43511 315.48169)
+ (pt 537.93217 315.48169)
+ (pt 537.93217 316.14)
+ (pt 537.96321 316.29607)
+ (pt 538.05162 316.42838)
+ (pt 538.14 316.48744)
+ (pt 538.14 316.59256)
+ (pt 538.05162 316.65162)
+ (pt 537.96321 316.78393)
+ (pt 537.93217 316.94)
+ (pt 537.93217 317.74)
+ (pt 537.96321 317.89607)
+ (pt 538.05162 318.02838)
+ (pt 538.18393 318.11679)
+ (pt 538.34 318.14783)
+ (pt 539.14 318.14783)
+ (pt 539.29607 318.11679)
+ (pt 539.42838 318.02838)
+ (pt 539.51679 317.89607)
+ (pt 539.54783 317.74)
+ (pt 539.54783 317.38052)
+ (pt 539.76 317.42273)
+ (pt 540.01361 317.37228)
+ (pt 540.21691 317.23644)
+ (pt 540.25162 317.28838)
+ (pt 540.38393 317.37679)
+ (pt 540.54 317.40783)
+ (pt 541.34 317.40783)
+ (pt 541.49607 317.37679)
+ (pt 541.53007 317.35407)
+ (pt 541.58 317.38744)
+ (pt 541.58 317.49256)
+ (pt 541.49162 317.55162)
+ (pt 541.40321 317.68393)
+ (pt 541.37217 317.84)
+ (pt 541.37217 318.64)
+ (pt 541.40321 318.79607)
+ (pt 541.49162 318.92838)
+ (pt 541.62393 319.01679)
+ (pt 541.78 319.04783)
+ (pt 542.58 319.04783)
+ (pt 542.73607 319.01679)
+ (pt 542.86838 318.92838)
+ (pt 542.88138 318.90893)
+ (pt 542.88639 318.91228)
+ (pt 543.14 318.96273)
+ (pt 543.39361 318.91228)
+ (pt 543.60862 318.76862)
+ (pt 543.75228 318.55361)
+ (pt 543.80273 318.3)
+ (pt 543.75228 318.04639)
+ (pt 543.60862 317.83138)
+ (pt 543.45364 317.72783)
+ (pt 544.24 317.72783)
+ (pt 544.39607 317.69679)
+ (pt 544.52838 317.60838)
+ (pt 544.61679 317.47607)
+ (pt 544.64783 317.32)
+ (pt 544.64783 316.52)
+ (pt 544.61679 316.36393)
+ (pt 544.52838 316.23162)
+ (pt 544.44 316.17256)
+ (pt 544.44 316.06744)
+ (pt 544.52838 316.00838)
+ (pt 544.61679 315.87607)
+ (pt 544.64783 315.72)
+ (pt 544.64783 314.92)
+ (pt 544.61679 314.76393)
+ (pt 544.52838 314.63162)
+ (pt 544.39607 314.54321)
+ (pt 544.24 314.51217)
+ (pt 543.44 314.51217)
+ (pt 543.28393 314.54321)
+ (pt 543.15162 314.63162)
+ (pt 543.06321 314.76393)
+ (pt 543.06303 314.76485)
+ (pt 542.9522 314.81076)
+ (pt 542.76639 314.84772)
+ (pt 542.55138 314.99138)
+ (pt 542.40772 315.20639)
+ (pt 542.35727 315.46)
+ (pt 542.40772 315.71361)
+ (pt 542.48694 315.83217)
+ (pt 541.78 315.83217)
+ (pt 541.62393 315.86321)
+ (pt 541.58993 315.88593)
+ (pt 541.54 315.85256)
+ (pt 541.54 315.74744)
+ (pt 541.62838 315.68838)
+ (pt 541.71679 315.55607)
+ (pt 541.72056 315.53709)
+ (pt 542.00095 315.42095)
+ (pt 542.06366 315.35824)
+ (pt 542.09361 315.35228)
+ (pt 542.30862 315.20862)
+ (pt 542.45228 314.99361)
+ (pt 542.50273 314.74)
+ (pt 542.45228 314.48639)
+ (pt 542.30862 314.27138)
+ (pt 542.09361 314.12772)
+ (pt 541.84 314.07727)
+ (pt 541.58639 314.12772)
+ (pt 541.45554 314.21515)
+ (pt 541.34 314.19217)
+ (pt 540.54 314.19217)
+ (pt 540.38393 314.22321)
+ (pt 540.25162 314.31162)
+ (pt 540.24774 314.31743)
+ (pt 540.05361 314.18772)
+ (pt 539.96033 314.16917)
+ (pt 540.17781 313.95169)
+ (pt 548.15 313.95169)
+ (pt 548.50475 313.80475)
+ (pt 548.65508 313.65442)
+ (pt 548.73138 313.76862)
+ (pt 548.94639 313.91228)
+ (pt 548.97294 313.91756)
+ )
+ (cutout
+ (cutoutOutline
+ (pt 546.21228 315.04639)
+ (pt 546.06862 314.83138)
+ (pt 545.85361 314.68772)
+ (pt 545.6 314.63727)
+ (pt 545.34639 314.68772)
+ (pt 545.13138 314.83138)
+ (pt 544.98772 315.04639)
+ (pt 544.93727 315.3)
+ (pt 544.98772 315.55361)
+ (pt 545.13138 315.76862)
+ (pt 545.34639 315.91228)
+ (pt 545.6 315.96273)
+ (pt 545.85361 315.91228)
+ (pt 546.06862 315.76862)
+ (pt 546.21228 315.55361)
+ (pt 546.26273 315.3)
+ )
+ )
+ (thermal (pt 539.885 316.885) (pt 540.21691 317.23644) (thermalWidth 0.381))
+ (thermal (pt 539.655 318.865) (pt 539.31138 319.20862) (thermalWidth 0.381))
+ (thermal (pt 539.655 318.615) (pt 539.31138 318.27138) (thermalWidth 0.381))
+ (thermal (pt 539.905 318.615) (pt 540.24862 318.27138) (thermalWidth 0.381))
+ (thermal (pt 538.9495 317.5495) (pt 539.42838 318.02838) (thermalWidth 0.381))
+ (thermal (pt 538.5305 317.5495) (pt 538.05162 318.02838) (thermalWidth 0.381))
+ (thermal (pt 544.0495 317.1295) (pt 544.52838 317.60838) (thermalWidth 0.381))
+ (thermal (pt 536.6095 319.2905) (pt 537.10847 318.84168) (thermalWidth 0.381))
+ (thermal (pt 536.6495 318.3495) (pt 537.12838 318.82838) (thermalWidth 0.381))
+ (thermal (pt 540.7895 319.4105) (pt 541.26838 318.93162) (thermalWidth 0.381))
+ (thermal (pt 540.7305 316.8095) (pt 540.25162 317.28838) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 533.65228 320.06639)
+ (pt 533.50862 319.85138)
+ (pt 533.47165 319.82668)
+ (pt 533.52862 319.78862)
+ (pt 533.57278 319.72253)
+ (pt 533.7 319.74783)
+ (pt 534.5 319.74783)
+ (pt 534.65607 319.71679)
+ (pt 534.78838 319.62838)
+ (pt 534.87679 319.49607)
+ (pt 534.90783 319.34)
+ (pt 534.90783 318.82526)
+ (pt 535.07361 318.79228)
+ (pt 535.13831 318.74905)
+ (pt 535.15138 318.76862)
+ (pt 535.36639 318.91228)
+ (pt 535.61949 318.96263)
+ (pt 535.59217 319.1)
+ (pt 535.59217 319.9)
+ (pt 535.62321 320.05607)
+ (pt 535.71162 320.18838)
+ (pt 535.8 320.24744)
+ (pt 535.8 320.35256)
+ (pt 535.71162 320.41162)
+ (pt 535.62321 320.54393)
+ (pt 535.61584 320.58096)
+ (pt 535.37905 320.67905)
+ (pt 535.37634 320.68176)
+ (pt 535.34639 320.68772)
+ (pt 535.13138 320.83138)
+ (pt 534.98772 321.04639)
+ (pt 534.93727 321.3)
+ (pt 534.94091 321.31831)
+ (pt 533.65842 321.31831)
+ (pt 533.61228 321.08639)
+ (pt 533.46862 320.87138)
+ (pt 533.42669 320.84336)
+ (pt 533.50862 320.78862)
+ (pt 533.65228 320.57361)
+ (pt 533.70273 320.32)
+ )
+ (thermal (pt 535.495 318.425) (pt 535.15138 318.76862) (thermalWidth 0.381))
+ (thermal (pt 534.3095 319.1495) (pt 534.78838 319.62838) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 563.63249 259.69384)
+ (pt 564.10088 259.38088)
+ (pt 564.35 259.00804)
+ (pt 564.59912 259.38088)
+ (pt 565.06751 259.69384)
+ (pt 565.62 259.80374)
+ (pt 566.17249 259.69384)
+ (pt 566.3788 259.55599)
+ (pt 566.3788 261.68)
+ (pt 566.52779 262.0397)
+ (pt 566.28639 262.08772)
+ (pt 566.18001 262.1588)
+ (pt 566.02 262.1588)
+ (pt 565.63731 262.31731)
+ (pt 564.8612 263.09342)
+ (pt 564.8612 262.28)
+ (pt 564.70269 261.89731)
+ (pt 563.6212 260.81582)
+ (pt 563.6212 259.69609)
+ )
+ (thermal (pt 565.112 258.868) (pt 564.59912 259.38088) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 570.80527 299.58523)
+ (pt 570.64886 299.35114)
+ (pt 570.35116 299.15222)
+ (pt 570.0 299.08237)
+ (pt 569.64884 299.15222)
+ (pt 569.35114 299.35114)
+ (pt 569.15222 299.64884)
+ (pt 569.08237 300.0)
+ (pt 569.15222 300.35116)
+ (pt 569.35114 300.64886)
+ (pt 569.58523 300.80527)
+ (pt 553.80783 316.58267)
+ (pt 553.80783 315.9)
+ (pt 553.77679 315.74393)
+ (pt 553.68838 315.61162)
+ (pt 553.55607 315.52321)
+ (pt 553.4 315.49217)
+ (pt 552.6 315.49217)
+ (pt 552.44393 315.52321)
+ (pt 552.31162 315.61162)
+ (pt 552.25256 315.7)
+ (pt 552.14744 315.7)
+ (pt 552.08838 315.61162)
+ (pt 551.95607 315.52321)
+ (pt 551.8 315.49217)
+ (pt 551.0 315.49217)
+ (pt 550.84393 315.52321)
+ (pt 550.71162 315.61162)
+ (pt 550.62321 315.74393)
+ (pt 550.62025 315.7588)
+ (pt 550.20823 315.7588)
+ (pt 550.1 315.73727)
+ (pt 549.84639 315.78772)
+ (pt 549.63138 315.93138)
+ (pt 549.48772 316.14639)
+ (pt 549.43727 316.4)
+ (pt 549.48772 316.65361)
+ (pt 549.63138 316.86862)
+ (pt 549.84639 317.01228)
+ (pt 550.1 317.06273)
+ (pt 550.35361 317.01228)
+ (pt 550.56862 316.86862)
+ (pt 550.58694 316.8412)
+ (pt 550.62025 316.8412)
+ (pt 550.62321 316.85607)
+ (pt 550.71162 316.98838)
+ (pt 550.84393 317.07679)
+ (pt 551.0 317.10783)
+ (pt 551.8 317.10783)
+ (pt 551.95607 317.07679)
+ (pt 552.08838 316.98838)
+ (pt 552.14744 316.9)
+ (pt 552.25256 316.9)
+ (pt 552.31162 316.98838)
+ (pt 552.44393 317.07679)
+ (pt 552.6 317.10783)
+ (pt 553.28267 317.10783)
+ (pt 552.05219 318.33831)
+ (pt 547.07119 318.33831)
+ (pt 549.88879 315.52071)
+ (pt 550.1 315.56273)
+ (pt 550.35361 315.51228)
+ (pt 550.56862 315.36862)
+ (pt 550.70033 315.17149)
+ (pt 550.71162 315.18838)
+ (pt 550.84393 315.27679)
+ (pt 551.0 315.30783)
+ (pt 551.8 315.30783)
+ (pt 551.95607 315.27679)
+ (pt 552.08838 315.18838)
+ (pt 552.14744 315.1)
+ (pt 552.25256 315.1)
+ (pt 552.31162 315.18838)
+ (pt 552.44393 315.27679)
+ (pt 552.6 315.30783)
+ (pt 553.4 315.30783)
+ (pt 553.55607 315.27679)
+ (pt 553.68838 315.18838)
+ (pt 553.77679 315.05607)
+ (pt 553.80783 314.9)
+ (pt 553.80783 314.1)
+ (pt 553.77679 313.94393)
+ (pt 553.68838 313.81162)
+ (pt 553.62166 313.76704)
+ (pt 553.64886 313.74886)
+ (pt 553.84778 313.45116)
+ (pt 553.91763 313.1)
+ (pt 553.84778 312.74884)
+ (pt 553.64886 312.45114)
+ (pt 553.35116 312.25222)
+ (pt 553.0 312.18237)
+ (pt 552.90904 312.20046)
+ (pt 560.90781 304.20169)
+ (pt 562.6 304.20169)
+ (pt 562.95475 304.05475)
+ (pt 575.37831 291.63119)
+ (pt 575.37831 295.01219)
+ )
+ (thermal (pt 553.25 313.35) (pt 553.64886 313.74886) (thermalWidth 0.381))
+ (thermal (pt 553.25 312.85) (pt 553.64886 312.45114) (thermalWidth 0.381))
+ (thermal (pt 553.2095 314.2905) (pt 553.68838 313.81162) (thermalWidth 0.381))
+ (thermal (pt 553.2095 314.7095) (pt 553.68838 315.18838) (thermalWidth 0.381))
+ (thermal (pt 553.2095 316.0905) (pt 553.68838 315.61162) (thermalWidth 0.381))
+ )
+ (island
+ (islandOutline
+ (pt 513.23174 460.81848)
+ (pt 512.59078 459.85922)
+ (pt 511.63152 459.21826)
+ (pt 510.5 458.99319)
+ (pt 509.36848 459.21826)
+ (pt 508.40922 459.85922)
+ (pt 507.76826 460.81848)
+ (pt 507.54319 461.95)
+ (pt 507.76826 463.08152)
+ (pt 508.40922 464.04078)
+ (pt 509.24615 464.6)
+ (pt 375.75385 464.6)
+ (pt 376.59078 464.04078)
+ (pt 377.23174 463.08152)
+ (pt 377.45681 461.95)
+ (pt 377.23174 460.81848)
+ (pt 376.59078 459.85922)
+ (pt 375.63152 459.21826)
+ (pt 374.5 458.99319)
+ (pt 373.36848 459.21826)
+ (pt 372.40922 459.85922)
+ (pt 371.76826 460.81848)
+ (pt 371.54319 461.95)
+ (pt 371.76826 463.08152)
+ (pt 372.40922 464.04078)
+ (pt 373.24615 464.6)
+ (pt 369.9 464.6)
+ (pt 369.9 237.1)
+ (pt 373.17132 237.1)
+ (pt 372.40922 237.60922)
+ (pt 371.76826 238.56848)
+ (pt 371.54319 239.7)
+ (pt 371.76826 240.83152)
+ (pt 372.40922 241.79078)
+ (pt 373.36848 242.43174)
+ (pt 374.5 242.65681)
+ (pt 375.63152 242.43174)
+ (pt 376.59078 241.79078)
+ (pt 377.23174 240.83152)
+ (pt 377.45681 239.7)
+ (pt 377.23174 238.56848)
+ (pt 376.59078 237.60922)
+ (pt 375.82868 237.1)
+ (pt 509.17132 237.1)
+ (pt 508.40922 237.60922)
+ (pt 507.76826 238.56848)
+ (pt 507.54319 239.7)
+ (pt 507.76826 240.83152)
+ (pt 508.40922 241.79078)
+ (pt 509.36848 242.43174)
+ (pt 510.5 242.65681)
+ (pt 511.63152 242.43174)
+ (pt 512.59078 241.79078)
+ (pt 513.23174 240.83152)
+ (pt 513.45681 239.7)
+ (pt 513.23174 238.56848)
+ (pt 512.59078 237.60922)
+ (pt 511.82868 237.1)
+ (pt 649.1 237.1)
+ (pt 649.1 464.6)
+ (pt 511.75385 464.6)
+ (pt 512.59078 464.04078)
+ (pt 513.23174 463.08152)
+ (pt 513.45681 461.95)
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 330.91375)
+ (pt 372.46934 330.45066)
+ (pt 372.00625 330.14123)
+ (pt 371.46 330.03258)
+ (pt 370.91375 330.14123)
+ (pt 370.45066 330.45066)
+ (pt 370.14123 330.91375)
+ (pt 370.03258 331.46)
+ (pt 370.14123 332.00625)
+ (pt 370.45066 332.46934)
+ (pt 370.91375 332.77877)
+ (pt 371.46 332.88742)
+ (pt 372.00625 332.77877)
+ (pt 372.46934 332.46934)
+ (pt 372.77877 332.00625)
+ (pt 372.88742 331.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 347.99375)
+ (pt 372.46934 347.53066)
+ (pt 372.00625 347.22123)
+ (pt 371.46 347.11258)
+ (pt 370.91375 347.22123)
+ (pt 370.45066 347.53066)
+ (pt 370.14123 347.99375)
+ (pt 370.03258 348.54)
+ (pt 370.14123 349.08625)
+ (pt 370.45066 349.54934)
+ (pt 370.91375 349.85877)
+ (pt 371.46 349.96742)
+ (pt 372.00625 349.85877)
+ (pt 372.46934 349.54934)
+ (pt 372.77877 349.08625)
+ (pt 372.88742 348.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 370.79375)
+ (pt 372.46934 370.33066)
+ (pt 372.00625 370.02123)
+ (pt 371.46 369.91258)
+ (pt 370.91375 370.02123)
+ (pt 370.45066 370.33066)
+ (pt 370.14123 370.79375)
+ (pt 370.03258 371.34)
+ (pt 370.14123 371.88625)
+ (pt 370.45066 372.34934)
+ (pt 370.91375 372.65877)
+ (pt 371.46 372.76742)
+ (pt 372.00625 372.65877)
+ (pt 372.46934 372.34934)
+ (pt 372.77877 371.88625)
+ (pt 372.88742 371.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 323.99375)
+ (pt 372.56934 323.53066)
+ (pt 372.10625 323.22123)
+ (pt 371.56 323.11258)
+ (pt 371.01375 323.22123)
+ (pt 370.55066 323.53066)
+ (pt 370.24123 323.99375)
+ (pt 370.13258 324.54)
+ (pt 370.24123 325.08625)
+ (pt 370.55066 325.54934)
+ (pt 371.01375 325.85877)
+ (pt 371.56 325.96742)
+ (pt 372.10625 325.85877)
+ (pt 372.56934 325.54934)
+ (pt 372.87877 325.08625)
+ (pt 372.98742 324.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 306.91375)
+ (pt 377.64934 306.45066)
+ (pt 377.18625 306.14123)
+ (pt 376.64 306.03258)
+ (pt 376.09375 306.14123)
+ (pt 375.63066 306.45066)
+ (pt 375.32123 306.91375)
+ (pt 375.21258 307.46)
+ (pt 375.32123 308.00625)
+ (pt 375.63066 308.46934)
+ (pt 376.09375 308.77877)
+ (pt 376.64 308.88742)
+ (pt 377.18625 308.77877)
+ (pt 377.64934 308.46934)
+ (pt 377.95877 308.00625)
+ (pt 378.06742 307.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 323.99375)
+ (pt 377.64934 323.53066)
+ (pt 377.18625 323.22123)
+ (pt 376.64 323.11258)
+ (pt 376.09375 323.22123)
+ (pt 375.63066 323.53066)
+ (pt 375.32123 323.99375)
+ (pt 375.21258 324.54)
+ (pt 375.32123 325.08625)
+ (pt 375.63066 325.54934)
+ (pt 376.09375 325.85877)
+ (pt 376.64 325.96742)
+ (pt 377.18625 325.85877)
+ (pt 377.64934 325.54934)
+ (pt 377.95877 325.08625)
+ (pt 378.06742 324.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 330.91375)
+ (pt 377.54934 330.45066)
+ (pt 377.08625 330.14123)
+ (pt 376.54 330.03258)
+ (pt 375.99375 330.14123)
+ (pt 375.53066 330.45066)
+ (pt 375.22123 330.91375)
+ (pt 375.11258 331.46)
+ (pt 375.22123 332.00625)
+ (pt 375.53066 332.46934)
+ (pt 375.99375 332.77877)
+ (pt 376.54 332.88742)
+ (pt 377.08625 332.77877)
+ (pt 377.54934 332.46934)
+ (pt 377.85877 332.00625)
+ (pt 377.96742 331.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 347.99375)
+ (pt 377.54934 347.53066)
+ (pt 377.08625 347.22123)
+ (pt 376.54 347.11258)
+ (pt 375.99375 347.22123)
+ (pt 375.53066 347.53066)
+ (pt 375.22123 347.99375)
+ (pt 375.11258 348.54)
+ (pt 375.22123 349.08625)
+ (pt 375.53066 349.54934)
+ (pt 375.99375 349.85877)
+ (pt 376.54 349.96742)
+ (pt 377.08625 349.85877)
+ (pt 377.54934 349.54934)
+ (pt 377.85877 349.08625)
+ (pt 377.96742 348.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 370.79375)
+ (pt 377.54934 370.33066)
+ (pt 377.08625 370.02123)
+ (pt 376.54 369.91258)
+ (pt 375.99375 370.02123)
+ (pt 375.53066 370.33066)
+ (pt 375.22123 370.79375)
+ (pt 375.11258 371.34)
+ (pt 375.22123 371.88625)
+ (pt 375.53066 372.34934)
+ (pt 375.99375 372.65877)
+ (pt 376.54 372.76742)
+ (pt 377.08625 372.65877)
+ (pt 377.54934 372.34934)
+ (pt 377.85877 371.88625)
+ (pt 377.96742 371.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 430.00243)
+ (pt 644.87438 429.73438)
+ (pt 645.14243 429.33321)
+ (pt 645.23656 428.86)
+ (pt 645.14243 428.38679)
+ (pt 644.87438 427.98562)
+ (pt 644.47321 427.71757)
+ (pt 644.0 427.62344)
+ (pt 643.52679 427.71757)
+ (pt 643.12562 427.98562)
+ (pt 642.85757 428.38679)
+ (pt 642.76344 428.86)
+ (pt 642.85757 429.33321)
+ (pt 643.12562 429.73438)
+ (pt 643.52679 430.00243)
+ (pt 644.0 430.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 445.24243)
+ (pt 644.87438 444.97438)
+ (pt 645.14243 444.57321)
+ (pt 645.23656 444.1)
+ (pt 645.14243 443.62679)
+ (pt 644.87438 443.22562)
+ (pt 644.47321 442.95757)
+ (pt 644.0 442.86344)
+ (pt 643.52679 442.95757)
+ (pt 643.12562 443.22562)
+ (pt 642.85757 443.62679)
+ (pt 642.76344 444.1)
+ (pt 642.85757 444.57321)
+ (pt 643.12562 444.97438)
+ (pt 643.52679 445.24243)
+ (pt 644.0 445.33656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 447.78243)
+ (pt 644.87438 447.51438)
+ (pt 645.14243 447.11321)
+ (pt 645.23656 446.64)
+ (pt 645.14243 446.16679)
+ (pt 644.87438 445.76562)
+ (pt 644.47321 445.49757)
+ (pt 644.0 445.40344)
+ (pt 643.52679 445.49757)
+ (pt 643.12562 445.76562)
+ (pt 642.85757 446.16679)
+ (pt 642.76344 446.64)
+ (pt 642.85757 447.11321)
+ (pt 643.12562 447.51438)
+ (pt 643.52679 447.78243)
+ (pt 644.0 447.87656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 437.62243)
+ (pt 644.87438 437.35438)
+ (pt 645.14243 436.95321)
+ (pt 645.23656 436.48)
+ (pt 645.14243 436.00679)
+ (pt 644.87438 435.60562)
+ (pt 644.47321 435.33757)
+ (pt 644.0 435.24344)
+ (pt 643.52679 435.33757)
+ (pt 643.12562 435.60562)
+ (pt 642.85757 436.00679)
+ (pt 642.76344 436.48)
+ (pt 642.85757 436.95321)
+ (pt 643.12562 437.35438)
+ (pt 643.52679 437.62243)
+ (pt 644.0 437.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 387.39358 286.28786)
+ (pt 387.21676 286.02324)
+ (pt 386.95214 285.84642)
+ (pt 386.64 285.78433)
+ (pt 386.32786 285.84642)
+ (pt 386.06324 286.02324)
+ (pt 385.88642 286.28786)
+ (pt 385.82433 286.6)
+ (pt 385.88642 286.91214)
+ (pt 386.06324 287.17676)
+ (pt 386.32786 287.35358)
+ (pt 386.64 287.41567)
+ (pt 386.95214 287.35358)
+ (pt 387.21676 287.17676)
+ (pt 387.39358 286.91214)
+ (pt 387.45567 286.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 440.16243)
+ (pt 644.87438 439.89438)
+ (pt 645.14243 439.49321)
+ (pt 645.23656 439.02)
+ (pt 645.14243 438.54679)
+ (pt 644.87438 438.14562)
+ (pt 644.47321 437.87757)
+ (pt 644.0 437.78344)
+ (pt 643.52679 437.87757)
+ (pt 643.12562 438.14562)
+ (pt 642.85757 438.54679)
+ (pt 642.76344 439.02)
+ (pt 642.85757 439.49321)
+ (pt 643.12562 439.89438)
+ (pt 643.52679 440.16243)
+ (pt 644.0 440.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.04783 309.0)
+ (pt 384.01679 308.84393)
+ (pt 383.92838 308.71162)
+ (pt 383.79607 308.62321)
+ (pt 383.64 308.59217)
+ (pt 381.64 308.59217)
+ (pt 381.48393 308.62321)
+ (pt 381.35162 308.71162)
+ (pt 381.26321 308.84393)
+ (pt 381.23217 309.0)
+ (pt 381.23217 311.0)
+ (pt 381.26321 311.15607)
+ (pt 381.35162 311.28838)
+ (pt 381.48393 311.37679)
+ (pt 381.64 311.40783)
+ (pt 383.64 311.40783)
+ (pt 383.79607 311.37679)
+ (pt 383.92838 311.28838)
+ (pt 384.01679 311.15607)
+ (pt 384.04783 311.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.23477 323.25895)
+ (pt 381.22436 323.41774)
+ (pt 381.27551 323.56842)
+ (pt 381.38043 323.68806)
+ (pt 381.52315 323.75844)
+ (pt 383.455 324.27608)
+ (pt 383.61379 324.28649)
+ (pt 383.76447 324.23534)
+ (pt 383.88411 324.13042)
+ (pt 383.95449 323.9877)
+ (pt 384.47213 322.05585)
+ (pt 384.48254 321.89706)
+ (pt 384.43139 321.74638)
+ (pt 384.32647 321.62674)
+ (pt 384.18375 321.55636)
+ (pt 382.2519 321.03872)
+ (pt 382.09311 321.02831)
+ (pt 381.94243 321.07946)
+ (pt 381.82279 321.18438)
+ (pt 381.75241 321.3271)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.04783 344.9)
+ (pt 384.01679 344.74393)
+ (pt 383.92838 344.61162)
+ (pt 383.79607 344.52321)
+ (pt 383.64 344.49217)
+ (pt 381.64 344.49217)
+ (pt 381.48393 344.52321)
+ (pt 381.35162 344.61162)
+ (pt 381.26321 344.74393)
+ (pt 381.23217 344.9)
+ (pt 381.23217 346.9)
+ (pt 381.26321 347.05607)
+ (pt 381.35162 347.18838)
+ (pt 381.48393 347.27679)
+ (pt 381.64 347.30783)
+ (pt 383.64 347.30783)
+ (pt 383.79607 347.27679)
+ (pt 383.92838 347.18838)
+ (pt 384.01679 347.05607)
+ (pt 384.04783 346.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 384.10783 421.86)
+ (pt 384.07679 421.70393)
+ (pt 383.98838 421.57162)
+ (pt 383.85607 421.48321)
+ (pt 383.7 421.45217)
+ (pt 381.7 421.45217)
+ (pt 381.54393 421.48321)
+ (pt 381.41162 421.57162)
+ (pt 381.32321 421.70393)
+ (pt 381.29217 421.86)
+ (pt 381.29217 423.86)
+ (pt 381.32321 424.01607)
+ (pt 381.41162 424.14838)
+ (pt 381.54393 424.23679)
+ (pt 381.7 424.26783)
+ (pt 383.7 424.26783)
+ (pt 383.85607 424.23679)
+ (pt 383.98838 424.14838)
+ (pt 384.07679 424.01607)
+ (pt 384.10783 423.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.00759 330.4671)
+ (pt 407.93721 330.32438)
+ (pt 407.81757 330.21946)
+ (pt 407.66689 330.16831)
+ (pt 407.5081 330.17872)
+ (pt 405.57625 330.69636)
+ (pt 405.43353 330.76674)
+ (pt 405.32861 330.88638)
+ (pt 405.27746 331.03706)
+ (pt 405.28787 331.19585)
+ (pt 405.80551 333.1277)
+ (pt 405.87589 333.27042)
+ (pt 405.99553 333.37534)
+ (pt 406.14621 333.42649)
+ (pt 406.305 333.41608)
+ (pt 408.23685 332.89844)
+ (pt 408.37957 332.82806)
+ (pt 408.48449 332.70842)
+ (pt 408.53564 332.55774)
+ (pt 408.52523 332.39895)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.64207 330.39251)
+ (pt 408.49936 330.46289)
+ (pt 408.39444 330.58253)
+ (pt 408.34328 330.73321)
+ (pt 408.35369 330.892)
+ (pt 408.61251 331.85793)
+ (pt 408.68289 332.00064)
+ (pt 408.80253 332.10556)
+ (pt 408.95321 332.15672)
+ (pt 409.112 332.14631)
+ (pt 410.07793 331.88749)
+ (pt 410.22064 331.81711)
+ (pt 410.32556 331.69747)
+ (pt 410.37672 331.54679)
+ (pt 410.36631 331.388)
+ (pt 410.10749 330.42207)
+ (pt 410.03711 330.27936)
+ (pt 409.91747 330.17444)
+ (pt 409.76679 330.12328)
+ (pt 409.608 330.13369)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.75233 336.63346)
+ (pt 408.62002 336.54505)
+ (pt 408.46395 336.51401)
+ (pt 408.30788 336.54505)
+ (pt 408.17557 336.63346)
+ (pt 406.76136 338.04767)
+ (pt 406.67295 338.17998)
+ (pt 406.64191 338.33605)
+ (pt 406.67295 338.49212)
+ (pt 406.76136 338.62443)
+ (pt 408.17557 340.03864)
+ (pt 408.30788 340.12705)
+ (pt 408.46395 340.15809)
+ (pt 408.62002 340.12705)
+ (pt 408.75233 340.03864)
+ (pt 410.16654 338.62443)
+ (pt 410.25495 338.49212)
+ (pt 410.28599 338.33605)
+ (pt 410.25495 338.17998)
+ (pt 410.16654 338.04767)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 409.26451 336.25162)
+ (pt 409.1761 336.38393)
+ (pt 409.14506 336.54)
+ (pt 409.1761 336.69607)
+ (pt 409.26451 336.82838)
+ (pt 409.97162 337.53549)
+ (pt 410.10393 337.6239)
+ (pt 410.26 337.65494)
+ (pt 410.41607 337.6239)
+ (pt 410.54838 337.53549)
+ (pt 411.25549 336.82838)
+ (pt 411.3439 336.69607)
+ (pt 411.37494 336.54)
+ (pt 411.3439 336.38393)
+ (pt 411.25549 336.25162)
+ (pt 410.54838 335.54451)
+ (pt 410.41607 335.4561)
+ (pt 410.26 335.42506)
+ (pt 410.10393 335.4561)
+ (pt 409.97162 335.54451)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 415.94778 310.94884)
+ (pt 415.74886 310.65114)
+ (pt 415.45116 310.45222)
+ (pt 415.1 310.38237)
+ (pt 414.74884 310.45222)
+ (pt 414.45114 310.65114)
+ (pt 414.25222 310.94884)
+ (pt 414.18237 311.3)
+ (pt 414.25222 311.65116)
+ (pt 414.45114 311.94886)
+ (pt 414.74884 312.14778)
+ (pt 415.1 312.21763)
+ (pt 415.45116 312.14778)
+ (pt 415.74886 311.94886)
+ (pt 415.94778 311.65116)
+ (pt 416.01763 311.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 430.04778 309.44884)
+ (pt 429.84886 309.15114)
+ (pt 429.55116 308.95222)
+ (pt 429.2 308.88237)
+ (pt 428.84884 308.95222)
+ (pt 428.55114 309.15114)
+ (pt 428.35222 309.44884)
+ (pt 428.28237 309.8)
+ (pt 428.35222 310.15116)
+ (pt 428.55114 310.44886)
+ (pt 428.84884 310.64778)
+ (pt 429.2 310.71763)
+ (pt 429.55116 310.64778)
+ (pt 429.84886 310.44886)
+ (pt 430.04778 310.15116)
+ (pt 430.11763 309.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 318.91375)
+ (pt 372.56934 318.45066)
+ (pt 372.10625 318.14123)
+ (pt 371.56 318.03258)
+ (pt 371.01375 318.14123)
+ (pt 370.55066 318.45066)
+ (pt 370.24123 318.91375)
+ (pt 370.13258 319.46)
+ (pt 370.24123 320.00625)
+ (pt 370.55066 320.46934)
+ (pt 371.01375 320.77877)
+ (pt 371.56 320.88742)
+ (pt 372.10625 320.77877)
+ (pt 372.56934 320.46934)
+ (pt 372.87877 320.00625)
+ (pt 372.98742 319.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 439.38778 320.94884)
+ (pt 439.18886 320.65114)
+ (pt 438.89116 320.45222)
+ (pt 438.54 320.38237)
+ (pt 438.18884 320.45222)
+ (pt 437.89114 320.65114)
+ (pt 437.69222 320.94884)
+ (pt 437.62237 321.3)
+ (pt 437.69222 321.65116)
+ (pt 437.89114 321.94886)
+ (pt 438.18884 322.14778)
+ (pt 438.54 322.21763)
+ (pt 438.89116 322.14778)
+ (pt 439.18886 321.94886)
+ (pt 439.38778 321.65116)
+ (pt 439.45763 321.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 446.94778 313.54884)
+ (pt 446.74886 313.25114)
+ (pt 446.45116 313.05222)
+ (pt 446.1 312.98237)
+ (pt 445.74884 313.05222)
+ (pt 445.45114 313.25114)
+ (pt 445.25222 313.54884)
+ (pt 445.18237 313.9)
+ (pt 445.25222 314.25116)
+ (pt 445.45114 314.54886)
+ (pt 445.74884 314.74778)
+ (pt 446.1 314.81763)
+ (pt 446.45116 314.74778)
+ (pt 446.74886 314.54886)
+ (pt 446.94778 314.25116)
+ (pt 447.01763 313.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 335.99375)
+ (pt 372.46934 335.53066)
+ (pt 372.00625 335.22123)
+ (pt 371.46 335.11258)
+ (pt 370.91375 335.22123)
+ (pt 370.45066 335.53066)
+ (pt 370.14123 335.99375)
+ (pt 370.03258 336.54)
+ (pt 370.14123 337.08625)
+ (pt 370.45066 337.54934)
+ (pt 370.91375 337.85877)
+ (pt 371.46 337.96742)
+ (pt 372.00625 337.85877)
+ (pt 372.46934 337.54934)
+ (pt 372.77877 337.08625)
+ (pt 372.88742 336.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 445.68778 321.66884)
+ (pt 445.48886 321.37114)
+ (pt 445.19116 321.17222)
+ (pt 444.84 321.10237)
+ (pt 444.48884 321.17222)
+ (pt 444.19114 321.37114)
+ (pt 443.99222 321.66884)
+ (pt 443.92237 322.02)
+ (pt 443.99222 322.37116)
+ (pt 444.19114 322.66886)
+ (pt 444.48884 322.86778)
+ (pt 444.84 322.93763)
+ (pt 445.19116 322.86778)
+ (pt 445.48886 322.66886)
+ (pt 445.68778 322.37116)
+ (pt 445.75763 322.02)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 311.99375)
+ (pt 372.56934 311.53066)
+ (pt 372.10625 311.22123)
+ (pt 371.56 311.11258)
+ (pt 371.01375 311.22123)
+ (pt 370.55066 311.53066)
+ (pt 370.24123 311.99375)
+ (pt 370.13258 312.54)
+ (pt 370.24123 313.08625)
+ (pt 370.55066 313.54934)
+ (pt 371.01375 313.85877)
+ (pt 371.56 313.96742)
+ (pt 372.10625 313.85877)
+ (pt 372.56934 313.54934)
+ (pt 372.87877 313.08625)
+ (pt 372.98742 312.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 342.91375)
+ (pt 372.46934 342.45066)
+ (pt 372.00625 342.14123)
+ (pt 371.46 342.03258)
+ (pt 370.91375 342.14123)
+ (pt 370.45066 342.45066)
+ (pt 370.14123 342.91375)
+ (pt 370.03258 343.46)
+ (pt 370.14123 344.00625)
+ (pt 370.45066 344.46934)
+ (pt 370.91375 344.77877)
+ (pt 371.46 344.88742)
+ (pt 372.00625 344.77877)
+ (pt 372.46934 344.46934)
+ (pt 372.77877 344.00625)
+ (pt 372.88742 343.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 447.2 337.99217)
+ (pt 447.04393 338.02321)
+ (pt 446.91162 338.11162)
+ (pt 446.82321 338.24393)
+ (pt 446.79217 338.4)
+ (pt 446.79217 339.4)
+ (pt 446.82321 339.55607)
+ (pt 446.91162 339.68838)
+ (pt 447.04393 339.77679)
+ (pt 447.2 339.80783)
+ (pt 448.2 339.80783)
+ (pt 448.35607 339.77679)
+ (pt 448.48838 339.68838)
+ (pt 448.57679 339.55607)
+ (pt 448.60783 339.4)
+ (pt 448.60783 338.4)
+ (pt 448.57679 338.24393)
+ (pt 448.48838 338.11162)
+ (pt 448.35607 338.02321)
+ (pt 448.2 337.99217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 449.14778 345.24884)
+ (pt 448.94886 344.95114)
+ (pt 448.65116 344.75222)
+ (pt 448.3 344.68237)
+ (pt 447.94884 344.75222)
+ (pt 447.65114 344.95114)
+ (pt 447.45222 345.24884)
+ (pt 447.38237 345.6)
+ (pt 447.45222 345.95116)
+ (pt 447.65114 346.24886)
+ (pt 447.94884 346.44778)
+ (pt 448.3 346.51763)
+ (pt 448.65116 346.44778)
+ (pt 448.94886 346.24886)
+ (pt 449.14778 345.95116)
+ (pt 449.21763 345.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 453.90451 340.83162)
+ (pt 453.8161 340.96393)
+ (pt 453.78506 341.12)
+ (pt 453.8161 341.27607)
+ (pt 453.90451 341.40838)
+ (pt 454.61162 342.11549)
+ (pt 454.74393 342.2039)
+ (pt 454.9 342.23494)
+ (pt 455.05607 342.2039)
+ (pt 455.18838 342.11549)
+ (pt 455.89549 341.40838)
+ (pt 455.9839 341.27607)
+ (pt 456.01494 341.12)
+ (pt 455.9839 340.96393)
+ (pt 455.89549 340.83162)
+ (pt 455.18838 340.12451)
+ (pt 455.05607 340.0361)
+ (pt 454.9 340.00506)
+ (pt 454.74393 340.0361)
+ (pt 454.61162 340.12451)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 478.04783 415.22)
+ (pt 478.01679 415.06393)
+ (pt 477.92838 414.93162)
+ (pt 477.79607 414.84321)
+ (pt 477.64 414.81217)
+ (pt 475.64 414.81217)
+ (pt 475.48393 414.84321)
+ (pt 475.35162 414.93162)
+ (pt 475.26321 415.06393)
+ (pt 475.23217 415.22)
+ (pt 475.23217 417.22)
+ (pt 475.26321 417.37607)
+ (pt 475.35162 417.50838)
+ (pt 475.48393 417.59679)
+ (pt 475.64 417.62783)
+ (pt 477.64 417.62783)
+ (pt 477.79607 417.59679)
+ (pt 477.92838 417.50838)
+ (pt 478.01679 417.37607)
+ (pt 478.04783 417.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 483.98778 317.12884)
+ (pt 483.78886 316.83114)
+ (pt 483.49116 316.63222)
+ (pt 483.14 316.56237)
+ (pt 482.78884 316.63222)
+ (pt 482.49114 316.83114)
+ (pt 482.29222 317.12884)
+ (pt 482.22237 317.48)
+ (pt 482.29222 317.83116)
+ (pt 482.49114 318.12886)
+ (pt 482.78884 318.32778)
+ (pt 483.14 318.39763)
+ (pt 483.49116 318.32778)
+ (pt 483.78886 318.12886)
+ (pt 483.98778 317.83116)
+ (pt 484.05763 317.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 482.07358 325.86786)
+ (pt 481.89676 325.60324)
+ (pt 481.63214 325.42642)
+ (pt 481.32 325.36433)
+ (pt 481.00786 325.42642)
+ (pt 480.74324 325.60324)
+ (pt 480.56642 325.86786)
+ (pt 480.50433 326.18)
+ (pt 480.56642 326.49214)
+ (pt 480.74324 326.75676)
+ (pt 481.00786 326.93358)
+ (pt 481.32 326.99567)
+ (pt 481.63214 326.93358)
+ (pt 481.89676 326.75676)
+ (pt 482.07358 326.49214)
+ (pt 482.13567 326.18)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 483.81358 321.06786)
+ (pt 483.63676 320.80324)
+ (pt 483.37214 320.62642)
+ (pt 483.06 320.56433)
+ (pt 482.74786 320.62642)
+ (pt 482.48324 320.80324)
+ (pt 482.30642 321.06786)
+ (pt 482.24433 321.38)
+ (pt 482.30642 321.69214)
+ (pt 482.48324 321.95676)
+ (pt 482.74786 322.13358)
+ (pt 483.06 322.19567)
+ (pt 483.37214 322.13358)
+ (pt 483.63676 321.95676)
+ (pt 483.81358 321.69214)
+ (pt 483.87567 321.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 486.64778 328.36884)
+ (pt 486.44886 328.07114)
+ (pt 486.15116 327.87222)
+ (pt 485.8 327.80237)
+ (pt 485.44884 327.87222)
+ (pt 485.15114 328.07114)
+ (pt 484.95222 328.36884)
+ (pt 484.88237 328.72)
+ (pt 484.95222 329.07116)
+ (pt 485.15114 329.36886)
+ (pt 485.44884 329.56778)
+ (pt 485.8 329.63763)
+ (pt 486.15116 329.56778)
+ (pt 486.44886 329.36886)
+ (pt 486.64778 329.07116)
+ (pt 486.71763 328.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 486.04778 362.14884)
+ (pt 485.84886 361.85114)
+ (pt 485.55116 361.65222)
+ (pt 485.2 361.58237)
+ (pt 484.84884 361.65222)
+ (pt 484.55114 361.85114)
+ (pt 484.35222 362.14884)
+ (pt 484.28237 362.5)
+ (pt 484.35222 362.85116)
+ (pt 484.55114 363.14886)
+ (pt 484.84884 363.34778)
+ (pt 485.2 363.41763)
+ (pt 485.55116 363.34778)
+ (pt 485.84886 363.14886)
+ (pt 486.04778 362.85116)
+ (pt 486.11763 362.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 483.49358 405.32786)
+ (pt 483.31676 405.06324)
+ (pt 483.05214 404.88642)
+ (pt 482.74 404.82433)
+ (pt 482.42786 404.88642)
+ (pt 482.16324 405.06324)
+ (pt 481.98642 405.32786)
+ (pt 481.92433 405.64)
+ (pt 481.98642 405.95214)
+ (pt 482.16324 406.21676)
+ (pt 482.42786 406.39358)
+ (pt 482.74 406.45567)
+ (pt 483.05214 406.39358)
+ (pt 483.31676 406.21676)
+ (pt 483.49358 405.95214)
+ (pt 483.55567 405.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 335.99375)
+ (pt 377.54934 335.53066)
+ (pt 377.08625 335.22123)
+ (pt 376.54 335.11258)
+ (pt 375.99375 335.22123)
+ (pt 375.53066 335.53066)
+ (pt 375.22123 335.99375)
+ (pt 375.11258 336.54)
+ (pt 375.22123 337.08625)
+ (pt 375.53066 337.54934)
+ (pt 375.99375 337.85877)
+ (pt 376.54 337.96742)
+ (pt 377.08625 337.85877)
+ (pt 377.54934 337.54934)
+ (pt 377.85877 337.08625)
+ (pt 377.96742 336.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 311.99375)
+ (pt 377.64934 311.53066)
+ (pt 377.18625 311.22123)
+ (pt 376.64 311.11258)
+ (pt 376.09375 311.22123)
+ (pt 375.63066 311.53066)
+ (pt 375.32123 311.99375)
+ (pt 375.21258 312.54)
+ (pt 375.32123 313.08625)
+ (pt 375.63066 313.54934)
+ (pt 376.09375 313.85877)
+ (pt 376.64 313.96742)
+ (pt 377.18625 313.85877)
+ (pt 377.64934 313.54934)
+ (pt 377.95877 313.08625)
+ (pt 378.06742 312.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 547.43803 399.83018)
+ (pt 547.65904 400.16096)
+ (pt 547.98982 400.38197)
+ (pt 548.38 400.45959)
+ (pt 548.77018 400.38197)
+ (pt 549.10096 400.16096)
+ (pt 549.32197 399.83018)
+ (pt 549.38 399.53847)
+ (pt 549.43803 399.83018)
+ (pt 549.65904 400.16096)
+ (pt 549.98982 400.38197)
+ (pt 550.38 400.45959)
+ (pt 550.77018 400.38197)
+ (pt 551.10096 400.16096)
+ (pt 551.32197 399.83018)
+ (pt 551.38 399.53847)
+ (pt 551.43803 399.83018)
+ (pt 551.65904 400.16096)
+ (pt 551.98982 400.38197)
+ (pt 552.38 400.45959)
+ (pt 552.77018 400.38197)
+ (pt 553.10096 400.16096)
+ (pt 553.32197 399.83018)
+ (pt 553.39959 399.44)
+ (pt 553.32197 399.04982)
+ (pt 553.10096 398.71904)
+ (pt 552.77018 398.49803)
+ (pt 552.47847 398.44)
+ (pt 552.77018 398.38197)
+ (pt 553.10096 398.16096)
+ (pt 553.32197 397.83018)
+ (pt 553.39959 397.44)
+ (pt 553.32197 397.04982)
+ (pt 553.10096 396.71904)
+ (pt 552.77018 396.49803)
+ (pt 552.38 396.42041)
+ (pt 552.08456 396.47918)
+ (pt 549.8812 394.27582)
+ (pt 549.8812 394.10999)
+ (pt 549.95228 394.00361)
+ (pt 550.00273 393.75)
+ (pt 550.00273 393.05)
+ (pt 549.95228 392.79639)
+ (pt 549.82106 392.6)
+ (pt 549.91251 392.46314)
+ (pt 550.18884 392.64778)
+ (pt 550.54 392.71763)
+ (pt 550.89116 392.64778)
+ (pt 551.18886 392.44886)
+ (pt 551.38778 392.15116)
+ (pt 551.45763 391.8)
+ (pt 551.38778 391.44884)
+ (pt 551.18886 391.15114)
+ (pt 550.89116 390.95222)
+ (pt 550.54 390.88237)
+ (pt 550.18884 390.95222)
+ (pt 549.91251 391.13686)
+ (pt 549.80862 390.98138)
+ (pt 549.59361 390.83772)
+ (pt 549.34 390.78727)
+ (pt 549.08639 390.83772)
+ (pt 548.94 390.93553)
+ (pt 548.79361 390.83772)
+ (pt 548.54 390.78727)
+ (pt 548.28639 390.83772)
+ (pt 548.14 390.93553)
+ (pt 547.99361 390.83772)
+ (pt 547.74 390.78727)
+ (pt 547.48639 390.83772)
+ (pt 547.34 390.93553)
+ (pt 547.19361 390.83772)
+ (pt 546.94 390.78727)
+ (pt 546.68639 390.83772)
+ (pt 546.47138 390.98138)
+ (pt 546.40453 391.08143)
+ (pt 546.21116 390.95222)
+ (pt 545.86 390.88237)
+ (pt 545.50884 390.95222)
+ (pt 545.21114 391.15114)
+ (pt 545.01222 391.44884)
+ (pt 544.94237 391.8)
+ (pt 545.01222 392.15116)
+ (pt 545.21114 392.44886)
+ (pt 545.50884 392.64778)
+ (pt 545.86 392.71763)
+ (pt 546.21116 392.64778)
+ (pt 546.40453 392.51857)
+ (pt 546.45894 392.6)
+ (pt 546.32772 392.79639)
+ (pt 546.27727 393.05)
+ (pt 546.27727 393.75)
+ (pt 546.31167 393.92295)
+ (pt 543.99731 396.23731)
+ (pt 543.9166 396.43217)
+ (pt 543.78 396.43217)
+ (pt 543.62393 396.46321)
+ (pt 543.49162 396.55162)
+ (pt 543.40321 396.68393)
+ (pt 543.37217 396.84)
+ (pt 543.37217 398.04)
+ (pt 543.40321 398.19607)
+ (pt 543.49162 398.32838)
+ (pt 543.62393 398.41679)
+ (pt 543.78 398.44783)
+ (pt 544.24217 398.44783)
+ (pt 543.98982 398.49803)
+ (pt 543.65904 398.71904)
+ (pt 543.43803 399.04982)
+ (pt 543.36041 399.44)
+ (pt 543.43803 399.83018)
+ (pt 543.65904 400.16096)
+ (pt 543.98982 400.38197)
+ (pt 544.38 400.45959)
+ (pt 544.77018 400.38197)
+ (pt 545.10096 400.16096)
+ (pt 545.32197 399.83018)
+ (pt 545.38 399.53847)
+ (pt 545.43803 399.83018)
+ (pt 545.65904 400.16096)
+ (pt 545.98982 400.38197)
+ (pt 546.38 400.45959)
+ (pt 546.77018 400.38197)
+ (pt 547.10096 400.16096)
+ (pt 547.32197 399.83018)
+ (pt 547.38 399.53847)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 495.00778 336.40884)
+ (pt 494.80886 336.11114)
+ (pt 494.51116 335.91222)
+ (pt 494.16 335.84237)
+ (pt 493.80884 335.91222)
+ (pt 493.51114 336.11114)
+ (pt 493.31222 336.40884)
+ (pt 493.24237 336.76)
+ (pt 493.31222 337.11116)
+ (pt 493.51114 337.40886)
+ (pt 493.80884 337.60778)
+ (pt 494.16 337.67763)
+ (pt 494.51116 337.60778)
+ (pt 494.80886 337.40886)
+ (pt 495.00778 337.11116)
+ (pt 495.07763 336.76)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 491.28 341.18783)
+ (pt 491.43607 341.15679)
+ (pt 491.56838 341.06838)
+ (pt 491.65679 340.93607)
+ (pt 491.68783 340.78)
+ (pt 491.68783 339.78)
+ (pt 491.65679 339.62393)
+ (pt 491.56838 339.49162)
+ (pt 491.43607 339.40321)
+ (pt 491.28 339.37217)
+ (pt 490.28 339.37217)
+ (pt 490.12393 339.40321)
+ (pt 489.99162 339.49162)
+ (pt 489.90321 339.62393)
+ (pt 489.87217 339.78)
+ (pt 489.87217 340.78)
+ (pt 489.90321 340.93607)
+ (pt 489.99162 341.06838)
+ (pt 490.12393 341.15679)
+ (pt 490.28 341.18783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 491.28 338.78783)
+ (pt 491.43607 338.75679)
+ (pt 491.56838 338.66838)
+ (pt 491.65679 338.53607)
+ (pt 491.68783 338.38)
+ (pt 491.68783 337.38)
+ (pt 491.65679 337.22393)
+ (pt 491.56838 337.09162)
+ (pt 491.43607 337.00321)
+ (pt 491.28 336.97217)
+ (pt 490.28 336.97217)
+ (pt 490.12393 337.00321)
+ (pt 489.99162 337.09162)
+ (pt 489.90321 337.22393)
+ (pt 489.87217 337.38)
+ (pt 489.87217 338.38)
+ (pt 489.90321 338.53607)
+ (pt 489.99162 338.66838)
+ (pt 490.12393 338.75679)
+ (pt 490.28 338.78783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 492.18778 352.16884)
+ (pt 491.98886 351.87114)
+ (pt 491.69116 351.67222)
+ (pt 491.34 351.60237)
+ (pt 490.98884 351.67222)
+ (pt 490.69114 351.87114)
+ (pt 490.49222 352.16884)
+ (pt 490.42237 352.52)
+ (pt 490.49222 352.87116)
+ (pt 490.69114 353.16886)
+ (pt 490.98884 353.36778)
+ (pt 491.34 353.43763)
+ (pt 491.69116 353.36778)
+ (pt 491.98886 353.16886)
+ (pt 492.18778 352.87116)
+ (pt 492.25763 352.52)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 492.24778 354.74884)
+ (pt 492.04886 354.45114)
+ (pt 491.75116 354.25222)
+ (pt 491.4 354.18237)
+ (pt 491.04884 354.25222)
+ (pt 490.75114 354.45114)
+ (pt 490.55222 354.74884)
+ (pt 490.48237 355.1)
+ (pt 490.55222 355.45116)
+ (pt 490.75114 355.74886)
+ (pt 491.04884 355.94778)
+ (pt 491.4 356.01763)
+ (pt 491.75116 355.94778)
+ (pt 492.04886 355.74886)
+ (pt 492.24778 355.45116)
+ (pt 492.31763 355.1)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 492.24778 362.14884)
+ (pt 492.04886 361.85114)
+ (pt 491.75116 361.65222)
+ (pt 491.4 361.58237)
+ (pt 491.04884 361.65222)
+ (pt 490.75114 361.85114)
+ (pt 490.55222 362.14884)
+ (pt 490.48237 362.5)
+ (pt 490.55222 362.85116)
+ (pt 490.75114 363.14886)
+ (pt 491.04884 363.34778)
+ (pt 491.4 363.41763)
+ (pt 491.75116 363.34778)
+ (pt 492.04886 363.14886)
+ (pt 492.24778 362.85116)
+ (pt 492.31763 362.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 493.25228 405.38639)
+ (pt 493.10862 405.17138)
+ (pt 492.89361 405.02772)
+ (pt 492.64 404.97727)
+ (pt 492.38639 405.02772)
+ (pt 492.17138 405.17138)
+ (pt 492.02772 405.38639)
+ (pt 491.97727 405.64)
+ (pt 492.02772 405.89361)
+ (pt 492.17138 406.10862)
+ (pt 492.38639 406.25228)
+ (pt 492.47911 406.27073)
+ (pt 492.47727 406.28)
+ (pt 492.52772 406.53361)
+ (pt 492.67138 406.74862)
+ (pt 492.88639 406.89228)
+ (pt 493.06372 406.92756)
+ (pt 493.05727 406.96)
+ (pt 493.10772 407.21361)
+ (pt 493.25138 407.42862)
+ (pt 493.46639 407.57228)
+ (pt 493.68022 407.61482)
+ (pt 493.72772 407.85361)
+ (pt 493.87138 408.06862)
+ (pt 494.08639 408.21228)
+ (pt 494.34 408.26273)
+ (pt 494.59361 408.21228)
+ (pt 494.80862 408.06862)
+ (pt 494.95228 407.85361)
+ (pt 495.00273 407.6)
+ (pt 494.95228 407.34639)
+ (pt 494.80862 407.13138)
+ (pt 494.59361 406.98772)
+ (pt 494.37978 406.94518)
+ (pt 494.33228 406.70639)
+ (pt 494.18862 406.49138)
+ (pt 493.97361 406.34772)
+ (pt 493.79628 406.31244)
+ (pt 493.80273 406.28)
+ (pt 493.75228 406.02639)
+ (pt 493.60862 405.81138)
+ (pt 493.39361 405.66772)
+ (pt 493.30089 405.64927)
+ (pt 493.30273 405.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 419.91375)
+ (pt 377.54934 419.45066)
+ (pt 377.08625 419.14123)
+ (pt 376.54 419.03258)
+ (pt 375.99375 419.14123)
+ (pt 375.53066 419.45066)
+ (pt 375.22123 419.91375)
+ (pt 375.11258 420.46)
+ (pt 375.22123 421.00625)
+ (pt 375.53066 421.46934)
+ (pt 375.99375 421.77877)
+ (pt 376.54 421.88742)
+ (pt 377.08625 421.77877)
+ (pt 377.54934 421.46934)
+ (pt 377.85877 421.00625)
+ (pt 377.96742 420.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 497.60778 354.08884)
+ (pt 497.40886 353.79114)
+ (pt 497.11116 353.59222)
+ (pt 496.76 353.52237)
+ (pt 496.40884 353.59222)
+ (pt 496.11114 353.79114)
+ (pt 495.91222 354.08884)
+ (pt 495.84237 354.44)
+ (pt 495.91222 354.79116)
+ (pt 496.11114 355.08886)
+ (pt 496.40884 355.28778)
+ (pt 496.76 355.35763)
+ (pt 497.11116 355.28778)
+ (pt 497.40886 355.08886)
+ (pt 497.60778 354.79116)
+ (pt 497.67763 354.44)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 497.52778 355.92884)
+ (pt 497.32886 355.63114)
+ (pt 497.03116 355.43222)
+ (pt 496.68 355.36237)
+ (pt 496.32884 355.43222)
+ (pt 496.03114 355.63114)
+ (pt 495.83222 355.92884)
+ (pt 495.76237 356.28)
+ (pt 495.83222 356.63116)
+ (pt 496.03114 356.92886)
+ (pt 496.32884 357.12778)
+ (pt 496.68 357.19763)
+ (pt 497.03116 357.12778)
+ (pt 497.32886 356.92886)
+ (pt 497.52778 356.63116)
+ (pt 497.59763 356.28)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 501.71228 358.68639)
+ (pt 501.56862 358.47138)
+ (pt 501.35361 358.32772)
+ (pt 501.1 358.27727)
+ (pt 500.84639 358.32772)
+ (pt 500.63138 358.47138)
+ (pt 500.48772 358.68639)
+ (pt 500.43727 358.94)
+ (pt 500.48772 359.19361)
+ (pt 500.63138 359.40862)
+ (pt 500.84639 359.55228)
+ (pt 501.1 359.60273)
+ (pt 501.34648 359.5537)
+ (pt 501.33727 359.6)
+ (pt 501.38772 359.85361)
+ (pt 501.53138 360.06862)
+ (pt 501.74639 360.21228)
+ (pt 502.0 360.26273)
+ (pt 502.25361 360.21228)
+ (pt 502.46862 360.06862)
+ (pt 502.61228 359.85361)
+ (pt 502.66273 359.6)
+ (pt 502.61228 359.34639)
+ (pt 502.46862 359.13138)
+ (pt 502.25361 358.98772)
+ (pt 502.0 358.93727)
+ (pt 501.75352 358.9863)
+ (pt 501.76273 358.94)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 506.59228 354.14639)
+ (pt 506.44862 353.93138)
+ (pt 506.23361 353.78772)
+ (pt 505.98 353.73727)
+ (pt 505.72639 353.78772)
+ (pt 505.51138 353.93138)
+ (pt 505.36772 354.14639)
+ (pt 505.31727 354.4)
+ (pt 505.36772 354.65361)
+ (pt 505.51138 354.86862)
+ (pt 505.72639 355.01228)
+ (pt 505.98 355.06273)
+ (pt 506.23361 355.01228)
+ (pt 506.44862 354.86862)
+ (pt 506.59228 354.65361)
+ (pt 506.64273 354.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 508.92 354.00744)
+ (pt 508.98568 353.96355)
+ (pt 509.32 353.96355)
+ (pt 509.32281 353.96239)
+ (pt 509.5 353.99763)
+ (pt 509.85116 353.92778)
+ (pt 510.14886 353.72886)
+ (pt 510.34778 353.43116)
+ (pt 510.41763 353.08)
+ (pt 510.34778 352.72884)
+ (pt 510.14886 352.43114)
+ (pt 509.85116 352.23222)
+ (pt 509.5 352.16237)
+ (pt 509.14884 352.23222)
+ (pt 508.85114 352.43114)
+ (pt 508.82335 352.47273)
+ (pt 508.72 352.45217)
+ (pt 507.92 352.45217)
+ (pt 507.76393 352.48321)
+ (pt 507.63162 352.57162)
+ (pt 507.54321 352.70393)
+ (pt 507.51217 352.86)
+ (pt 507.51217 353.66)
+ (pt 507.54321 353.81607)
+ (pt 507.63162 353.94838)
+ (pt 507.72 354.00744)
+ (pt 507.72 354.11256)
+ (pt 507.63162 354.17162)
+ (pt 507.54321 354.30393)
+ (pt 507.51217 354.46)
+ (pt 507.51217 355.26)
+ (pt 507.54321 355.41607)
+ (pt 507.63162 355.54838)
+ (pt 507.76393 355.63679)
+ (pt 507.92 355.66783)
+ (pt 508.72 355.66783)
+ (pt 508.8057 355.65079)
+ (pt 508.83114 355.68886)
+ (pt 509.12884 355.88778)
+ (pt 509.48 355.95763)
+ (pt 509.83116 355.88778)
+ (pt 510.12886 355.68886)
+ (pt 510.32778 355.39116)
+ (pt 510.39763 355.04)
+ (pt 510.32778 354.68884)
+ (pt 510.12886 354.39114)
+ (pt 509.83116 354.19222)
+ (pt 509.48 354.12237)
+ (pt 509.12884 354.19222)
+ (pt 509.05508 354.24151)
+ (pt 509.00838 354.17162)
+ (pt 508.92 354.11256)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 508.86778 370.14884)
+ (pt 508.66886 369.85114)
+ (pt 508.37116 369.65222)
+ (pt 508.02 369.58237)
+ (pt 507.66884 369.65222)
+ (pt 507.37114 369.85114)
+ (pt 507.17222 370.14884)
+ (pt 507.10237 370.5)
+ (pt 507.17222 370.85116)
+ (pt 507.37114 371.14886)
+ (pt 507.66884 371.34778)
+ (pt 508.02 371.41763)
+ (pt 508.37116 371.34778)
+ (pt 508.66886 371.14886)
+ (pt 508.86778 370.85116)
+ (pt 508.93763 370.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 424.99375)
+ (pt 377.54934 424.53066)
+ (pt 377.08625 424.22123)
+ (pt 376.54 424.11258)
+ (pt 375.99375 424.22123)
+ (pt 375.53066 424.53066)
+ (pt 375.22123 424.99375)
+ (pt 375.11258 425.54)
+ (pt 375.22123 426.08625)
+ (pt 375.53066 426.54934)
+ (pt 375.99375 426.85877)
+ (pt 376.54 426.96742)
+ (pt 377.08625 426.85877)
+ (pt 377.54934 426.54934)
+ (pt 377.85877 426.08625)
+ (pt 377.96742 425.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.66862 342.23138)
+ (pt 526.45361 342.08772)
+ (pt 526.2 342.03727)
+ (pt 525.94639 342.08772)
+ (pt 525.73138 342.23138)
+ (pt 525.70668 342.26835)
+ (pt 525.66862 342.21138)
+ (pt 525.45361 342.06772)
+ (pt 525.2 342.01727)
+ (pt 524.94639 342.06772)
+ (pt 524.73138 342.21138)
+ (pt 524.69668 342.26331)
+ (pt 524.64862 342.19138)
+ (pt 524.43361 342.04772)
+ (pt 524.18 341.99727)
+ (pt 523.92639 342.04772)
+ (pt 523.71138 342.19138)
+ (pt 523.7 342.20841)
+ (pt 523.68862 342.19138)
+ (pt 523.47361 342.04772)
+ (pt 523.22 341.99727)
+ (pt 522.96639 342.04772)
+ (pt 522.75138 342.19138)
+ (pt 522.72668 342.22835)
+ (pt 522.68862 342.17138)
+ (pt 522.47361 342.02772)
+ (pt 522.22 341.97727)
+ (pt 521.96639 342.02772)
+ (pt 521.75138 342.17138)
+ (pt 521.60772 342.38639)
+ (pt 521.55727 342.64)
+ (pt 521.60772 342.89361)
+ (pt 521.75138 343.10862)
+ (pt 521.96639 343.25228)
+ (pt 522.22 343.30273)
+ (pt 522.47361 343.25228)
+ (pt 522.68862 343.10862)
+ (pt 522.71332 343.07165)
+ (pt 522.75138 343.12862)
+ (pt 522.80331 343.16332)
+ (pt 522.73138 343.21138)
+ (pt 522.58772 343.42639)
+ (pt 522.53727 343.68)
+ (pt 522.58772 343.93361)
+ (pt 522.73138 344.14862)
+ (pt 522.94639 344.29228)
+ (pt 523.2 344.34273)
+ (pt 523.45361 344.29228)
+ (pt 523.66862 344.14862)
+ (pt 523.68664 344.12165)
+ (pt 523.73138 344.18862)
+ (pt 523.94639 344.33228)
+ (pt 524.2 344.38273)
+ (pt 524.45361 344.33228)
+ (pt 524.66862 344.18862)
+ (pt 524.71668 344.11669)
+ (pt 524.75138 344.16862)
+ (pt 524.96639 344.31228)
+ (pt 525.22 344.36273)
+ (pt 525.47361 344.31228)
+ (pt 525.68862 344.16862)
+ (pt 525.71 344.13662)
+ (pt 525.73138 344.16862)
+ (pt 525.94639 344.31228)
+ (pt 526.2 344.36273)
+ (pt 526.45361 344.31228)
+ (pt 526.66862 344.16862)
+ (pt 526.81228 343.95361)
+ (pt 526.86273 343.7)
+ (pt 526.81228 343.44639)
+ (pt 526.66862 343.23138)
+ (pt 526.62165 343.2)
+ (pt 526.66862 343.16862)
+ (pt 526.70336 343.11662)
+ (pt 526.71138 343.12862)
+ (pt 526.92639 343.27228)
+ (pt 527.18 343.32273)
+ (pt 527.43361 343.27228)
+ (pt 527.64862 343.12862)
+ (pt 527.67996 343.08172)
+ (pt 527.75138 343.18862)
+ (pt 527.81331 343.23)
+ (pt 527.75138 343.27138)
+ (pt 527.60772 343.48639)
+ (pt 527.55727 343.74)
+ (pt 527.60772 343.99361)
+ (pt 527.75138 344.20862)
+ (pt 527.96639 344.35228)
+ (pt 528.22 344.40273)
+ (pt 528.47361 344.35228)
+ (pt 528.68862 344.20862)
+ (pt 528.72668 344.15165)
+ (pt 528.75138 344.18862)
+ (pt 528.81331 344.23)
+ (pt 528.75138 344.27138)
+ (pt 528.60772 344.48639)
+ (pt 528.55727 344.74)
+ (pt 528.60772 344.99361)
+ (pt 528.75138 345.20862)
+ (pt 528.77338 345.22332)
+ (pt 528.73138 345.25138)
+ (pt 528.58772 345.46639)
+ (pt 528.53727 345.72)
+ (pt 528.58772 345.97361)
+ (pt 528.73138 346.18862)
+ (pt 528.94639 346.33228)
+ (pt 529.2 346.38273)
+ (pt 529.45361 346.33228)
+ (pt 529.66862 346.18862)
+ (pt 529.7 346.14165)
+ (pt 529.73138 346.18862)
+ (pt 529.94639 346.33228)
+ (pt 530.2 346.38273)
+ (pt 530.45361 346.33228)
+ (pt 530.66862 346.18862)
+ (pt 530.67664 346.17662)
+ (pt 530.71138 346.22862)
+ (pt 530.92639 346.37228)
+ (pt 531.18 346.42273)
+ (pt 531.43361 346.37228)
+ (pt 531.64862 346.22862)
+ (pt 531.79228 346.01361)
+ (pt 531.84273 345.76)
+ (pt 531.79228 345.50639)
+ (pt 531.64862 345.29138)
+ (pt 531.62662 345.27668)
+ (pt 531.66862 345.24862)
+ (pt 531.81228 345.03361)
+ (pt 531.86273 344.78)
+ (pt 531.81228 344.52639)
+ (pt 531.66862 344.31138)
+ (pt 531.45361 344.16772)
+ (pt 531.2 344.11727)
+ (pt 530.94639 344.16772)
+ (pt 530.73138 344.31138)
+ (pt 530.72336 344.32338)
+ (pt 530.68862 344.27138)
+ (pt 530.47361 344.12772)
+ (pt 530.22 344.07727)
+ (pt 529.96639 344.12772)
+ (pt 529.75138 344.27138)
+ (pt 529.72 344.31835)
+ (pt 529.68862 344.27138)
+ (pt 529.62669 344.23)
+ (pt 529.68862 344.18862)
+ (pt 529.83228 343.97361)
+ (pt 529.88273 343.72)
+ (pt 529.83228 343.46639)
+ (pt 529.68862 343.25138)
+ (pt 529.47361 343.10772)
+ (pt 529.22 343.05727)
+ (pt 528.96639 343.10772)
+ (pt 528.75138 343.25138)
+ (pt 528.71332 343.30835)
+ (pt 528.68862 343.27138)
+ (pt 528.62669 343.23)
+ (pt 528.68862 343.18862)
+ (pt 528.83228 342.97361)
+ (pt 528.88273 342.72)
+ (pt 528.83228 342.46639)
+ (pt 528.68862 342.25138)
+ (pt 528.47361 342.10772)
+ (pt 528.22 342.05727)
+ (pt 527.96639 342.10772)
+ (pt 527.75138 342.25138)
+ (pt 527.72004 342.29828)
+ (pt 527.64862 342.19138)
+ (pt 527.43361 342.04772)
+ (pt 527.18 341.99727)
+ (pt 526.92639 342.04772)
+ (pt 526.71138 342.19138)
+ (pt 526.67664 342.24338)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 516.98783 368.74)
+ (pt 516.95679 368.58393)
+ (pt 516.86838 368.45162)
+ (pt 516.73607 368.36321)
+ (pt 516.58 368.33217)
+ (pt 515.58 368.33217)
+ (pt 515.42393 368.36321)
+ (pt 515.29162 368.45162)
+ (pt 515.20321 368.58393)
+ (pt 515.17217 368.74)
+ (pt 515.17217 369.74)
+ (pt 515.20321 369.89607)
+ (pt 515.29162 370.02838)
+ (pt 515.42393 370.11679)
+ (pt 515.58 370.14783)
+ (pt 516.58 370.14783)
+ (pt 516.73607 370.11679)
+ (pt 516.86838 370.02838)
+ (pt 516.95679 369.89607)
+ (pt 516.98783 369.74)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 513.22778 412.40884)
+ (pt 513.02886 412.11114)
+ (pt 512.73116 411.91222)
+ (pt 512.38 411.84237)
+ (pt 512.02884 411.91222)
+ (pt 511.73114 412.11114)
+ (pt 511.53222 412.40884)
+ (pt 511.46237 412.76)
+ (pt 511.53222 413.11116)
+ (pt 511.73114 413.40886)
+ (pt 512.02884 413.60778)
+ (pt 512.38 413.67763)
+ (pt 512.73116 413.60778)
+ (pt 513.02886 413.40886)
+ (pt 513.22778 413.11116)
+ (pt 513.29763 412.76)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 521.58778 290.30884)
+ (pt 521.38886 290.01114)
+ (pt 521.09116 289.81222)
+ (pt 520.74 289.74237)
+ (pt 520.38884 289.81222)
+ (pt 520.09114 290.01114)
+ (pt 519.89222 290.30884)
+ (pt 519.82237 290.66)
+ (pt 519.89222 291.01116)
+ (pt 520.09114 291.30886)
+ (pt 520.38884 291.50778)
+ (pt 520.74 291.57763)
+ (pt 521.09116 291.50778)
+ (pt 521.38886 291.30886)
+ (pt 521.58778 291.01116)
+ (pt 521.65763 290.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.38891 330.87089)
+ (pt 648.19337 330.33337)
+ (pt 648.73089 329.52891)
+ (pt 648.91964 328.58)
+ (pt 648.73089 327.63109)
+ (pt 648.19337 326.82663)
+ (pt 647.38891 326.28911)
+ (pt 646.44 326.10036)
+ (pt 645.49109 326.28911)
+ (pt 644.68663 326.82663)
+ (pt 644.14911 327.63109)
+ (pt 643.96036 328.58)
+ (pt 644.14911 329.52891)
+ (pt 644.68663 330.33337)
+ (pt 645.49109 330.87089)
+ (pt 646.44 331.05964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 495.41607 311.46321)
+ (pt 495.26 311.43217)
+ (pt 494.46 311.43217)
+ (pt 494.30393 311.46321)
+ (pt 494.17162 311.55162)
+ (pt 494.08321 311.68393)
+ (pt 494.05217 311.84)
+ (pt 494.05217 312.64)
+ (pt 494.08321 312.79607)
+ (pt 494.17162 312.92838)
+ (pt 494.26 312.98744)
+ (pt 494.26 313.09256)
+ (pt 494.17162 313.15162)
+ (pt 494.08321 313.28393)
+ (pt 494.05217 313.44)
+ (pt 494.05217 314.24)
+ (pt 494.08321 314.39607)
+ (pt 494.17162 314.52838)
+ (pt 494.24317 314.57619)
+ (pt 494.07114 314.69114)
+ (pt 493.87222 314.98884)
+ (pt 493.82783 315.212)
+ (pt 493.82783 313.99)
+ (pt 493.79679 313.83393)
+ (pt 493.70838 313.70162)
+ (pt 493.57607 313.61321)
+ (pt 493.42 313.58217)
+ (pt 492.22 313.58217)
+ (pt 492.06393 313.61321)
+ (pt 492.02384 313.64)
+ (pt 491.61616 313.64)
+ (pt 491.57607 313.61321)
+ (pt 491.47966 313.59403)
+ (pt 491.31748 313.20252)
+ (pt 491.21116 313.0962)
+ (pt 491.52 313.15763)
+ (pt 491.87116 313.08778)
+ (pt 492.16886 312.88886)
+ (pt 492.36778 312.59116)
+ (pt 492.43763 312.24)
+ (pt 492.36778 311.88884)
+ (pt 492.16886 311.59114)
+ (pt 491.87116 311.39222)
+ (pt 491.52 311.32237)
+ (pt 491.16884 311.39222)
+ (pt 490.87114 311.59114)
+ (pt 490.67222 311.88884)
+ (pt 490.60237 312.24)
+ (pt 490.6638 312.54884)
+ (pt 490.56783 312.45287)
+ (pt 490.56783 311.79)
+ (pt 490.53679 311.63393)
+ (pt 490.44838 311.50162)
+ (pt 490.31607 311.41321)
+ (pt 490.16 311.38217)
+ (pt 488.96 311.38217)
+ (pt 488.80393 311.41321)
+ (pt 488.76384 311.44)
+ (pt 488.35616 311.44)
+ (pt 488.31607 311.41321)
+ (pt 488.16 311.38217)
+ (pt 486.96 311.38217)
+ (pt 486.80393 311.41321)
+ (pt 486.67162 311.50162)
+ (pt 486.58321 311.63393)
+ (pt 486.55217 311.79)
+ (pt 486.55217 312.55235)
+ (pt 486.41645 312.88)
+ (pt 486.41645 314.37645)
+ (pt 485.89783 314.37645)
+ (pt 485.89783 314.3)
+ (pt 485.86679 314.14393)
+ (pt 485.84 314.10384)
+ (pt 485.84 313.69616)
+ (pt 485.86679 313.65607)
+ (pt 485.89783 313.5)
+ (pt 485.89783 312.3)
+ (pt 485.88816 312.25136)
+ (pt 485.97694 312.21459)
+ (pt 486.01116 312.20778)
+ (pt 486.04017 312.1884)
+ (pt 486.32883 312.06883)
+ (pt 486.34883 312.04883)
+ (pt 486.45757 311.7863)
+ (pt 486.50778 311.71116)
+ (pt 486.52541 311.62252)
+ (pt 486.63415 311.36)
+ (pt 486.52541 311.09748)
+ (pt 486.50778 311.00884)
+ (pt 486.45757 310.9337)
+ (pt 486.34883 310.67117)
+ (pt 486.0863 310.56243)
+ (pt 486.01116 310.51222)
+ (pt 485.92252 310.49459)
+ (pt 485.66 310.38585)
+ (pt 485.61172 310.40585)
+ (pt 483.18 310.40585)
+ (pt 482.91748 310.51459)
+ (pt 482.82884 310.53222)
+ (pt 482.7537 310.58243)
+ (pt 482.49117 310.69117)
+ (pt 482.38243 310.9537)
+ (pt 482.33222 311.02884)
+ (pt 482.31459 311.11748)
+ (pt 482.20585 311.38)
+ (pt 482.31459 311.64252)
+ (pt 482.33222 311.73116)
+ (pt 482.38243 311.8063)
+ (pt 482.49117 312.06883)
+ (pt 482.7537 312.17757)
+ (pt 482.82884 312.22778)
+ (pt 482.91748 312.24541)
+ (pt 483.18 312.35415)
+ (pt 483.78217 312.35415)
+ (pt 483.78217 313.5)
+ (pt 483.81321 313.65607)
+ (pt 483.84 313.69616)
+ (pt 483.84 314.10384)
+ (pt 483.81321 314.14393)
+ (pt 483.78217 314.3)
+ (pt 483.78217 315.5)
+ (pt 483.81321 315.65607)
+ (pt 483.90162 315.78838)
+ (pt 484.03393 315.87679)
+ (pt 484.19 315.90783)
+ (pt 485.49 315.90783)
+ (pt 485.64607 315.87679)
+ (pt 485.77838 315.78838)
+ (pt 485.78161 315.78355)
+ (pt 486.41645 315.78355)
+ (pt 486.41645 316.18)
+ (pt 486.49861 316.37835)
+ (pt 486.48237 316.46)
+ (pt 486.55222 316.81116)
+ (pt 486.62233 316.91609)
+ (pt 486.62233 318.01398)
+ (pt 486.53222 318.14884)
+ (pt 486.46237 318.5)
+ (pt 486.53222 318.85116)
+ (pt 486.73114 319.14886)
+ (pt 487.02884 319.34778)
+ (pt 487.38 319.41763)
+ (pt 487.73116 319.34778)
+ (pt 488.02886 319.14886)
+ (pt 488.22778 318.85116)
+ (pt 488.29763 318.5)
+ (pt 488.27101 318.36615)
+ (pt 488.38 318.38783)
+ (pt 489.18 318.38783)
+ (pt 489.33607 318.35679)
+ (pt 489.46838 318.26838)
+ (pt 489.52744 318.18)
+ (pt 489.63256 318.18)
+ (pt 489.69162 318.26838)
+ (pt 489.82393 318.35679)
+ (pt 489.84462 318.3609)
+ (pt 489.65222 318.64884)
+ (pt 489.61031 318.85954)
+ (pt 489.49607 318.78321)
+ (pt 489.34 318.75217)
+ (pt 488.54 318.75217)
+ (pt 488.38393 318.78321)
+ (pt 488.25162 318.87162)
+ (pt 488.16321 319.00393)
+ (pt 488.13217 319.16)
+ (pt 488.13217 319.96)
+ (pt 488.16321 320.11607)
+ (pt 488.25162 320.24838)
+ (pt 488.34 320.30744)
+ (pt 488.34 320.41256)
+ (pt 488.25162 320.47162)
+ (pt 488.16321 320.60393)
+ (pt 488.13217 320.76)
+ (pt 488.13217 321.56)
+ (pt 488.15657 321.68268)
+ (pt 488.14886 321.67114)
+ (pt 487.85116 321.47222)
+ (pt 487.5 321.40237)
+ (pt 487.14884 321.47222)
+ (pt 486.85114 321.67114)
+ (pt 486.65222 321.96884)
+ (pt 486.58237 322.32)
+ (pt 486.65222 322.67116)
+ (pt 486.85114 322.96886)
+ (pt 486.98451 323.05797)
+ (pt 486.97217 323.12)
+ (pt 486.97217 323.92)
+ (pt 487.00321 324.07607)
+ (pt 487.09162 324.20838)
+ (pt 487.22393 324.29679)
+ (pt 487.38 324.32783)
+ (pt 488.18 324.32783)
+ (pt 488.33607 324.29679)
+ (pt 488.46838 324.20838)
+ (pt 488.52744 324.12)
+ (pt 488.63256 324.12)
+ (pt 488.69162 324.20838)
+ (pt 488.82393 324.29679)
+ (pt 488.98 324.32783)
+ (pt 489.78 324.32783)
+ (pt 489.93607 324.29679)
+ (pt 490.05494 324.21736)
+ (pt 490.53748 324.01748)
+ (pt 490.59653 323.95843)
+ (pt 490.85116 323.90778)
+ (pt 491.14886 323.70886)
+ (pt 491.34778 323.41116)
+ (pt 491.41763 323.06)
+ (pt 491.34778 322.70884)
+ (pt 491.14886 322.41114)
+ (pt 490.85116 322.21222)
+ (pt 490.5 322.14237)
+ (pt 490.14884 322.21222)
+ (pt 489.85114 322.41114)
+ (pt 489.65222 322.70884)
+ (pt 489.65156 322.71217)
+ (pt 488.98 322.71217)
+ (pt 488.82393 322.74321)
+ (pt 488.69162 322.83162)
+ (pt 488.63256 322.92)
+ (pt 488.52744 322.92)
+ (pt 488.46838 322.83162)
+ (pt 488.33607 322.74321)
+ (pt 488.30391 322.73681)
+ (pt 488.34778 322.67116)
+ (pt 488.41763 322.32)
+ (pt 488.34778 321.96884)
+ (pt 488.27993 321.8673)
+ (pt 488.38393 321.93679)
+ (pt 488.54 321.96783)
+ (pt 489.34 321.96783)
+ (pt 489.49607 321.93679)
+ (pt 489.60568 321.86355)
+ (pt 489.82 321.86355)
+ (pt 490.31748 321.65748)
+ (pt 490.55653 321.41843)
+ (pt 490.81116 321.36778)
+ (pt 491.10886 321.16886)
+ (pt 491.30778 320.87116)
+ (pt 491.37763 320.52)
+ (pt 491.30778 320.16884)
+ (pt 491.10886 319.87114)
+ (pt 490.96253 319.77336)
+ (pt 491.14886 319.64886)
+ (pt 491.34778 319.35116)
+ (pt 491.41763 319.0)
+ (pt 491.34778 318.64884)
+ (pt 491.14886 318.35114)
+ (pt 491.04669 318.28287)
+ (pt 491.06838 318.26838)
+ (pt 491.15679 318.13607)
+ (pt 491.18783 317.98)
+ (pt 491.18783 317.18)
+ (pt 491.15679 317.02393)
+ (pt 491.08355 316.91432)
+ (pt 491.08355 316.84614)
+ (pt 491.34886 316.66886)
+ (pt 491.54778 316.37116)
+ (pt 491.61763 316.02)
+ (pt 491.54846 315.67228)
+ (pt 491.57607 315.66679)
+ (pt 491.61616 315.64)
+ (pt 492.02384 315.64)
+ (pt 492.06393 315.66679)
+ (pt 492.22 315.69783)
+ (pt 493.42 315.69783)
+ (pt 493.57607 315.66679)
+ (pt 493.70838 315.57838)
+ (pt 493.79679 315.44607)
+ (pt 493.81013 315.379)
+ (pt 493.87222 315.69116)
+ (pt 494.07114 315.98886)
+ (pt 494.36884 316.18778)
+ (pt 494.72 316.25763)
+ (pt 495.07116 316.18778)
+ (pt 495.36886 315.98886)
+ (pt 495.48445 315.81587)
+ (pt 495.72 315.86273)
+ (pt 495.97361 315.81228)
+ (pt 496.18862 315.66862)
+ (pt 496.33228 315.45361)
+ (pt 496.38273 315.2)
+ (pt 496.33228 314.94639)
+ (pt 496.18862 314.73138)
+ (pt 495.97361 314.58772)
+ (pt 495.72 314.53727)
+ (pt 495.46639 314.58772)
+ (pt 495.34023 314.67201)
+ (pt 495.29394 314.64108)
+ (pt 495.41607 314.61679)
+ (pt 495.54838 314.52838)
+ (pt 495.63679 314.39607)
+ (pt 495.66783 314.24)
+ (pt 495.66783 313.44)
+ (pt 495.63679 313.28393)
+ (pt 495.54838 313.15162)
+ (pt 495.46 313.09256)
+ (pt 495.46 312.99496)
+ (pt 495.62884 313.10778)
+ (pt 495.98 313.17763)
+ (pt 496.33116 313.10778)
+ (pt 496.62886 312.90886)
+ (pt 496.82778 312.61116)
+ (pt 496.89763 312.26)
+ (pt 496.82778 311.90884)
+ (pt 496.62886 311.61114)
+ (pt 496.33116 311.41222)
+ (pt 495.98 311.34237)
+ (pt 495.62884 311.41222)
+ (pt 495.4843 311.5088)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 420.40783 333.10355)
+ (pt 420.66276 333.10355)
+ (pt 420.67321 333.15607)
+ (pt 420.76162 333.28838)
+ (pt 420.89393 333.37679)
+ (pt 421.05 333.40783)
+ (pt 422.35 333.40783)
+ (pt 422.50607 333.37679)
+ (pt 422.63838 333.28838)
+ (pt 422.72679 333.15607)
+ (pt 422.73724 333.10355)
+ (pt 422.83299 333.10355)
+ (pt 423.04884 333.24778)
+ (pt 423.4 333.31763)
+ (pt 423.75116 333.24778)
+ (pt 424.04886 333.04886)
+ (pt 424.24778 332.75116)
+ (pt 424.31763 332.4)
+ (pt 424.30519 332.33746)
+ (pt 424.40355 332.1)
+ (pt 424.40355 331.96568)
+ (pt 424.44744 331.9)
+ (pt 424.55167 331.9)
+ (pt 424.45222 332.04884)
+ (pt 424.38237 332.4)
+ (pt 424.45222 332.75116)
+ (pt 424.65114 333.04886)
+ (pt 424.94884 333.24778)
+ (pt 425.3 333.31763)
+ (pt 425.65116 333.24778)
+ (pt 425.94886 333.04886)
+ (pt 426.14778 332.75116)
+ (pt 426.21763 332.4)
+ (pt 426.14778 332.04884)
+ (pt 426.04788 331.89933)
+ (pt 426.07679 331.85607)
+ (pt 426.10783 331.7)
+ (pt 426.10783 330.9)
+ (pt 426.07679 330.74393)
+ (pt 425.98838 330.61162)
+ (pt 425.85607 330.52321)
+ (pt 425.7 330.49217)
+ (pt 424.9 330.49217)
+ (pt 424.74393 330.52321)
+ (pt 424.61162 330.61162)
+ (pt 424.55256 330.7)
+ (pt 424.44744 330.7)
+ (pt 424.38838 330.61162)
+ (pt 424.25607 330.52321)
+ (pt 424.1 330.49217)
+ (pt 423.3 330.49217)
+ (pt 423.14393 330.52321)
+ (pt 423.01162 330.61162)
+ (pt 422.92321 330.74393)
+ (pt 422.89217 330.9)
+ (pt 422.89217 331.65691)
+ (pt 422.83299 331.69645)
+ (pt 422.73724 331.69645)
+ (pt 422.72679 331.64393)
+ (pt 422.7 331.60384)
+ (pt 422.7 331.19616)
+ (pt 422.72679 331.15607)
+ (pt 422.75783 331.0)
+ (pt 422.75783 330.33713)
+ (pt 422.89748 330.19748)
+ (pt 423.10355 329.7)
+ (pt 423.10355 329.00355)
+ (pt 423.49217 329.00355)
+ (pt 423.49217 329.8)
+ (pt 423.52321 329.95607)
+ (pt 423.61162 330.08838)
+ (pt 423.74393 330.17679)
+ (pt 423.9 330.20783)
+ (pt 424.7 330.20783)
+ (pt 424.85607 330.17679)
+ (pt 424.98838 330.08838)
+ (pt 425.04744 330.0)
+ (pt 425.15256 330.0)
+ (pt 425.21162 330.08838)
+ (pt 425.34393 330.17679)
+ (pt 425.5 330.20783)
+ (pt 426.3 330.20783)
+ (pt 426.45607 330.17679)
+ (pt 426.49645 330.14981)
+ (pt 426.49645 330.53432)
+ (pt 426.42321 330.64393)
+ (pt 426.39217 330.8)
+ (pt 426.39217 331.6)
+ (pt 426.42321 331.75607)
+ (pt 426.51162 331.88838)
+ (pt 426.64393 331.97679)
+ (pt 426.8 332.00783)
+ (pt 427.6 332.00783)
+ (pt 427.75607 331.97679)
+ (pt 427.88838 331.88838)
+ (pt 427.94744 331.8)
+ (pt 428.05256 331.8)
+ (pt 428.11162 331.88838)
+ (pt 428.24393 331.97679)
+ (pt 428.4 332.00783)
+ (pt 429.2 332.00783)
+ (pt 429.35607 331.97679)
+ (pt 429.48838 331.88838)
+ (pt 429.57679 331.75607)
+ (pt 429.60783 331.6)
+ (pt 429.60783 331.28404)
+ (pt 429.65114 331.34886)
+ (pt 429.94884 331.54778)
+ (pt 430.3 331.61763)
+ (pt 430.65116 331.54778)
+ (pt 430.94886 331.34886)
+ (pt 431.14778 331.05116)
+ (pt 431.21763 330.7)
+ (pt 431.14778 330.34884)
+ (pt 430.94886 330.05114)
+ (pt 430.92166 330.03296)
+ (pt 430.98838 329.98838)
+ (pt 431.07679 329.85607)
+ (pt 431.10783 329.7)
+ (pt 431.10783 328.9)
+ (pt 431.07679 328.74393)
+ (pt 430.98838 328.61162)
+ (pt 430.85607 328.52321)
+ (pt 430.7 328.49217)
+ (pt 429.9 328.49217)
+ (pt 429.74393 328.52321)
+ (pt 429.61162 328.61162)
+ (pt 429.55256 328.7)
+ (pt 429.44744 328.7)
+ (pt 429.38838 328.61162)
+ (pt 429.25607 328.52321)
+ (pt 429.1 328.49217)
+ (pt 428.3 328.49217)
+ (pt 428.18385 328.51527)
+ (pt 427.3654 328.51527)
+ (pt 427.2 328.48237)
+ (pt 426.84884 328.55222)
+ (pt 426.63299 328.69645)
+ (pt 426.56568 328.69645)
+ (pt 426.45607 328.62321)
+ (pt 426.3 328.59217)
+ (pt 425.5 328.59217)
+ (pt 425.34393 328.62321)
+ (pt 425.21162 328.71162)
+ (pt 425.15256 328.8)
+ (pt 425.04744 328.8)
+ (pt 425.00355 328.73432)
+ (pt 425.00355 328.5)
+ (pt 424.83786 328.1)
+ (pt 425.00355 327.7)
+ (pt 425.00355 327.43724)
+ (pt 425.05607 327.42679)
+ (pt 425.18838 327.33838)
+ (pt 425.27679 327.20607)
+ (pt 425.30783 327.05)
+ (pt 425.30783 325.75)
+ (pt 425.27679 325.59393)
+ (pt 425.18838 325.46162)
+ (pt 425.05607 325.37321)
+ (pt 424.9 325.34217)
+ (pt 423.7 325.34217)
+ (pt 423.54393 325.37321)
+ (pt 423.50384 325.4)
+ (pt 423.09616 325.4)
+ (pt 423.05607 325.37321)
+ (pt 422.9 325.34217)
+ (pt 421.7 325.34217)
+ (pt 421.54393 325.37321)
+ (pt 421.41162 325.46162)
+ (pt 421.32321 325.59393)
+ (pt 421.29217 325.75)
+ (pt 421.29217 326.51326)
+ (pt 421.05116 326.35222)
+ (pt 420.7 326.28237)
+ (pt 420.34884 326.35222)
+ (pt 420.05114 326.55114)
+ (pt 419.85222 326.84884)
+ (pt 419.78237 327.2)
+ (pt 419.85222 327.55116)
+ (pt 420.01353 327.79258)
+ (pt 419.99217 327.9)
+ (pt 419.99217 328.7)
+ (pt 420.02321 328.85607)
+ (pt 420.11162 328.98838)
+ (pt 420.24393 329.07679)
+ (pt 420.4 329.10783)
+ (pt 421.2 329.10783)
+ (pt 421.35607 329.07679)
+ (pt 421.48838 328.98838)
+ (pt 421.54744 328.9)
+ (pt 421.65256 328.9)
+ (pt 421.69645 328.96568)
+ (pt 421.69645 329.39217)
+ (pt 421.05 329.39217)
+ (pt 420.89393 329.42321)
+ (pt 420.76162 329.51162)
+ (pt 420.67321 329.64393)
+ (pt 420.64217 329.8)
+ (pt 420.64217 331.0)
+ (pt 420.67321 331.15607)
+ (pt 420.7 331.19616)
+ (pt 420.7 331.60384)
+ (pt 420.67321 331.64393)
+ (pt 420.66276 331.69645)
+ (pt 420.37729 331.69645)
+ (pt 420.37679 331.69393)
+ (pt 420.28838 331.56162)
+ (pt 420.15607 331.47321)
+ (pt 420.0 331.44217)
+ (pt 418.8 331.44217)
+ (pt 418.64393 331.47321)
+ (pt 418.60384 331.5)
+ (pt 418.19616 331.5)
+ (pt 418.15607 331.47321)
+ (pt 418.0 331.44217)
+ (pt 416.8 331.44217)
+ (pt 416.64393 331.47321)
+ (pt 416.51162 331.56162)
+ (pt 416.46643 331.62924)
+ (pt 416.35116 331.55222)
+ (pt 416.0 331.48237)
+ (pt 415.64884 331.55222)
+ (pt 415.35114 331.75114)
+ (pt 415.15222 332.04884)
+ (pt 415.08237 332.4)
+ (pt 415.15222 332.75116)
+ (pt 415.35114 333.04886)
+ (pt 415.64884 333.24778)
+ (pt 416.0 333.31763)
+ (pt 416.35116 333.24778)
+ (pt 416.40453 333.21212)
+ (pt 416.42321 333.30607)
+ (pt 416.51162 333.43838)
+ (pt 416.64393 333.52679)
+ (pt 416.8 333.55783)
+ (pt 418.0 333.55783)
+ (pt 418.15607 333.52679)
+ (pt 418.19616 333.5)
+ (pt 418.60384 333.5)
+ (pt 418.64393 333.52679)
+ (pt 418.8 333.55783)
+ (pt 420.0 333.55783)
+ (pt 420.15607 333.52679)
+ (pt 420.28838 333.43838)
+ (pt 420.37679 333.30607)
+ (pt 420.40783 333.15)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 520.35358 314.38786)
+ (pt 520.17676 314.12324)
+ (pt 519.91214 313.94642)
+ (pt 519.6 313.88433)
+ (pt 519.28786 313.94642)
+ (pt 519.02324 314.12324)
+ (pt 518.84642 314.38786)
+ (pt 518.78433 314.7)
+ (pt 518.84642 315.01214)
+ (pt 519.02324 315.27676)
+ (pt 519.28786 315.45358)
+ (pt 519.6 315.51567)
+ (pt 519.91214 315.45358)
+ (pt 520.17676 315.27676)
+ (pt 520.35358 315.01214)
+ (pt 520.41567 314.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 521.70862 346.29138)
+ (pt 521.67662 346.27)
+ (pt 521.70862 346.24862)
+ (pt 521.85228 346.03361)
+ (pt 521.90273 345.78)
+ (pt 521.85228 345.52639)
+ (pt 521.70862 345.31138)
+ (pt 521.49361 345.16772)
+ (pt 521.24 345.11727)
+ (pt 520.98639 345.16772)
+ (pt 520.77138 345.31138)
+ (pt 520.62772 345.52639)
+ (pt 520.57727 345.78)
+ (pt 520.62772 346.03361)
+ (pt 520.77138 346.24862)
+ (pt 520.80338 346.27)
+ (pt 520.77138 346.29138)
+ (pt 520.73 346.35331)
+ (pt 520.68862 346.29138)
+ (pt 520.47361 346.14772)
+ (pt 520.22 346.09727)
+ (pt 519.96639 346.14772)
+ (pt 519.75138 346.29138)
+ (pt 519.60772 346.50639)
+ (pt 519.55727 346.76)
+ (pt 519.60772 347.01361)
+ (pt 519.75138 347.22862)
+ (pt 519.96639 347.37228)
+ (pt 520.22 347.42273)
+ (pt 520.47361 347.37228)
+ (pt 520.68862 347.22862)
+ (pt 520.73 347.16669)
+ (pt 520.77138 347.22862)
+ (pt 520.98639 347.37228)
+ (pt 521.24 347.42273)
+ (pt 521.49361 347.37228)
+ (pt 521.70862 347.22862)
+ (pt 521.75 347.16669)
+ (pt 521.79138 347.22862)
+ (pt 522.00639 347.37228)
+ (pt 522.26 347.42273)
+ (pt 522.51361 347.37228)
+ (pt 522.72862 347.22862)
+ (pt 522.87228 347.01361)
+ (pt 522.92273 346.76)
+ (pt 522.87228 346.50639)
+ (pt 522.72862 346.29138)
+ (pt 522.51361 346.14772)
+ (pt 522.26 346.09727)
+ (pt 522.00639 346.14772)
+ (pt 521.79138 346.29138)
+ (pt 521.75 346.35331)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 523.87228 347.52639)
+ (pt 523.72862 347.31138)
+ (pt 523.51361 347.16772)
+ (pt 523.26 347.11727)
+ (pt 523.00639 347.16772)
+ (pt 522.79138 347.31138)
+ (pt 522.64772 347.52639)
+ (pt 522.59727 347.78)
+ (pt 522.64772 348.03361)
+ (pt 522.79138 348.24862)
+ (pt 523.00639 348.39228)
+ (pt 523.26 348.44273)
+ (pt 523.51361 348.39228)
+ (pt 523.72862 348.24862)
+ (pt 523.87228 348.03361)
+ (pt 523.92273 347.78)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 520.85228 344.50639)
+ (pt 520.70862 344.29138)
+ (pt 520.49361 344.14772)
+ (pt 520.24 344.09727)
+ (pt 519.98639 344.14772)
+ (pt 519.77138 344.29138)
+ (pt 519.62772 344.50639)
+ (pt 519.57727 344.76)
+ (pt 519.62772 345.01361)
+ (pt 519.77138 345.22862)
+ (pt 519.98639 345.37228)
+ (pt 520.24 345.42273)
+ (pt 520.49361 345.37228)
+ (pt 520.70862 345.22862)
+ (pt 520.85228 345.01361)
+ (pt 520.90273 344.76)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 408.54523 325.54105)
+ (pt 408.55564 325.38226)
+ (pt 408.50449 325.23158)
+ (pt 408.39957 325.11194)
+ (pt 408.25685 325.04156)
+ (pt 406.325 324.52392)
+ (pt 406.16621 324.51351)
+ (pt 406.01553 324.56466)
+ (pt 405.89589 324.66958)
+ (pt 405.82551 324.8123)
+ (pt 405.30787 326.74415)
+ (pt 405.29746 326.90294)
+ (pt 405.34861 327.05362)
+ (pt 405.45353 327.17326)
+ (pt 405.59625 327.24364)
+ (pt 407.5281 327.76128)
+ (pt 407.68689 327.77169)
+ (pt 407.83757 327.72054)
+ (pt 407.95721 327.61562)
+ (pt 408.02759 327.4729)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 390.69358 265.74786)
+ (pt 390.51676 265.48324)
+ (pt 390.25214 265.30642)
+ (pt 389.94 265.24433)
+ (pt 389.62786 265.30642)
+ (pt 389.36324 265.48324)
+ (pt 389.18642 265.74786)
+ (pt 389.12433 266.06)
+ (pt 389.18642 266.37214)
+ (pt 389.36324 266.63676)
+ (pt 389.62786 266.81358)
+ (pt 389.94 266.87567)
+ (pt 390.25214 266.81358)
+ (pt 390.51676 266.63676)
+ (pt 390.69358 266.37214)
+ (pt 390.75567 266.06)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 486.85222 302.64884)
+ (pt 486.83459 302.73748)
+ (pt 486.72585 303.0)
+ (pt 486.83459 303.26252)
+ (pt 486.85222 303.35116)
+ (pt 486.90243 303.4263)
+ (pt 487.01117 303.68883)
+ (pt 487.2737 303.79757)
+ (pt 487.34884 303.84778)
+ (pt 487.43748 303.86541)
+ (pt 487.7 303.97415)
+ (pt 487.94142 303.87415)
+ (pt 488.56515 303.87415)
+ (pt 488.64393 303.92679)
+ (pt 488.8 303.95783)
+ (pt 490.0 303.95783)
+ (pt 490.15607 303.92679)
+ (pt 490.19616 303.9)
+ (pt 490.60384 303.9)
+ (pt 490.64393 303.92679)
+ (pt 490.8 303.95783)
+ (pt 492.0 303.95783)
+ (pt 492.15607 303.92679)
+ (pt 492.28838 303.83838)
+ (pt 492.37679 303.70607)
+ (pt 492.40783 303.55)
+ (pt 492.40783 303.33438)
+ (pt 492.55114 303.54886)
+ (pt 492.84884 303.74778)
+ (pt 493.2 303.81763)
+ (pt 493.55116 303.74778)
+ (pt 493.84886 303.54886)
+ (pt 494.04778 303.25116)
+ (pt 494.11763 302.9)
+ (pt 494.04778 302.54884)
+ (pt 493.84886 302.25114)
+ (pt 493.55116 302.05222)
+ (pt 493.2 301.98237)
+ (pt 492.84884 302.05222)
+ (pt 492.55114 302.25114)
+ (pt 492.40783 302.46562)
+ (pt 492.40783 302.25)
+ (pt 492.37679 302.09393)
+ (pt 492.28838 301.96162)
+ (pt 492.15607 301.87321)
+ (pt 492.0 301.84217)
+ (pt 490.8 301.84217)
+ (pt 490.64393 301.87321)
+ (pt 490.60384 301.9)
+ (pt 490.19616 301.9)
+ (pt 490.15607 301.87321)
+ (pt 490.0 301.84217)
+ (pt 488.8 301.84217)
+ (pt 488.64393 301.87321)
+ (pt 488.56515 301.92585)
+ (pt 487.8 301.92585)
+ (pt 487.11117 302.21117)
+ (pt 487.01117 302.31117)
+ (pt 486.90243 302.5737)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 640.06243 449.65321)
+ (pt 640.15656 449.18)
+ (pt 640.06243 448.70679)
+ (pt 639.89833 448.4612)
+ (pt 639.97582 448.4612)
+ (pt 640.30162 448.787)
+ (pt 640.22344 449.18)
+ (pt 640.31757 449.65321)
+ (pt 640.58562 450.05438)
+ (pt 640.98679 450.32243)
+ (pt 641.46 450.41656)
+ (pt 641.93321 450.32243)
+ (pt 642.33438 450.05438)
+ (pt 642.60243 449.65321)
+ (pt 642.69656 449.18)
+ (pt 642.60243 448.70679)
+ (pt 642.33438 448.30562)
+ (pt 641.93321 448.03757)
+ (pt 641.46 447.94344)
+ (pt 641.067 448.02162)
+ (pt 640.58269 447.53731)
+ (pt 640.2 447.3788)
+ (pt 639.88497 447.3788)
+ (pt 640.06243 447.11321)
+ (pt 640.15656 446.64)
+ (pt 640.06243 446.16679)
+ (pt 639.9117 445.9412)
+ (pt 639.99582 445.9412)
+ (pt 640.30162 446.247)
+ (pt 640.22344 446.64)
+ (pt 640.31757 447.11321)
+ (pt 640.58562 447.51438)
+ (pt 640.98679 447.78243)
+ (pt 641.46 447.87656)
+ (pt 641.93321 447.78243)
+ (pt 642.33438 447.51438)
+ (pt 642.60243 447.11321)
+ (pt 642.69656 446.64)
+ (pt 642.60243 446.16679)
+ (pt 642.33438 445.76562)
+ (pt 641.93321 445.49757)
+ (pt 641.46 445.40344)
+ (pt 641.067 445.48162)
+ (pt 640.60269 445.01731)
+ (pt 640.22 444.8588)
+ (pt 639.87161 444.8588)
+ (pt 640.06243 444.57321)
+ (pt 640.15656 444.1)
+ (pt 640.06243 443.62679)
+ (pt 639.92506 443.4212)
+ (pt 640.01582 443.4212)
+ (pt 640.30162 443.707)
+ (pt 640.22344 444.1)
+ (pt 640.31757 444.57321)
+ (pt 640.58562 444.97438)
+ (pt 640.98679 445.24243)
+ (pt 641.46 445.33656)
+ (pt 641.93321 445.24243)
+ (pt 642.33438 444.97438)
+ (pt 642.60243 444.57321)
+ (pt 642.69656 444.1)
+ (pt 642.60243 443.62679)
+ (pt 642.33438 443.22562)
+ (pt 641.93321 442.95757)
+ (pt 641.46 442.86344)
+ (pt 641.067 442.94162)
+ (pt 640.62269 442.49731)
+ (pt 640.24 442.3388)
+ (pt 639.85824 442.3388)
+ (pt 640.06243 442.03321)
+ (pt 640.15656 441.56)
+ (pt 640.06243 441.08679)
+ (pt 639.9117 440.8612)
+ (pt 639.99582 440.8612)
+ (pt 640.30162 441.167)
+ (pt 640.22344 441.56)
+ (pt 640.31757 442.03321)
+ (pt 640.58562 442.43438)
+ (pt 640.98679 442.70243)
+ (pt 641.46 442.79656)
+ (pt 641.93321 442.70243)
+ (pt 642.33438 442.43438)
+ (pt 642.60243 442.03321)
+ (pt 642.69656 441.56)
+ (pt 642.60243 441.08679)
+ (pt 642.33438 440.68562)
+ (pt 641.93321 440.41757)
+ (pt 641.46 440.32344)
+ (pt 641.067 440.40162)
+ (pt 640.60269 439.93731)
+ (pt 640.22 439.7788)
+ (pt 639.87161 439.7788)
+ (pt 640.06243 439.49321)
+ (pt 640.15656 439.02)
+ (pt 640.06243 438.54679)
+ (pt 639.92506 438.3412)
+ (pt 640.01582 438.3412)
+ (pt 640.30162 438.627)
+ (pt 640.22344 439.02)
+ (pt 640.31757 439.49321)
+ (pt 640.58562 439.89438)
+ (pt 640.98679 440.16243)
+ (pt 641.46 440.25656)
+ (pt 641.93321 440.16243)
+ (pt 642.33438 439.89438)
+ (pt 642.60243 439.49321)
+ (pt 642.69656 439.02)
+ (pt 642.60243 438.54679)
+ (pt 642.33438 438.14562)
+ (pt 641.93321 437.87757)
+ (pt 641.46 437.78344)
+ (pt 641.067 437.86162)
+ (pt 640.62269 437.41731)
+ (pt 640.24 437.2588)
+ (pt 639.85824 437.2588)
+ (pt 640.06243 436.95321)
+ (pt 640.15656 436.48)
+ (pt 640.06243 436.00679)
+ (pt 639.9117 435.7812)
+ (pt 639.99582 435.7812)
+ (pt 640.30162 436.087)
+ (pt 640.22344 436.48)
+ (pt 640.31757 436.95321)
+ (pt 640.58562 437.35438)
+ (pt 640.98679 437.62243)
+ (pt 641.46 437.71656)
+ (pt 641.93321 437.62243)
+ (pt 642.33438 437.35438)
+ (pt 642.60243 436.95321)
+ (pt 642.69656 436.48)
+ (pt 642.60243 436.00679)
+ (pt 642.33438 435.60562)
+ (pt 641.93321 435.33757)
+ (pt 641.46 435.24344)
+ (pt 641.067 435.32162)
+ (pt 640.60269 434.85731)
+ (pt 640.22 434.6988)
+ (pt 639.87161 434.6988)
+ (pt 640.06243 434.41321)
+ (pt 640.15656 433.94)
+ (pt 640.06243 433.46679)
+ (pt 639.92506 433.2612)
+ (pt 640.01582 433.2612)
+ (pt 640.30162 433.547)
+ (pt 640.22344 433.94)
+ (pt 640.31757 434.41321)
+ (pt 640.58562 434.81438)
+ (pt 640.98679 435.08243)
+ (pt 641.46 435.17656)
+ (pt 641.93321 435.08243)
+ (pt 642.33438 434.81438)
+ (pt 642.60243 434.41321)
+ (pt 642.69656 433.94)
+ (pt 642.60243 433.46679)
+ (pt 642.33438 433.06562)
+ (pt 641.93321 432.79757)
+ (pt 641.46 432.70344)
+ (pt 641.067 432.78162)
+ (pt 640.62269 432.33731)
+ (pt 640.24 432.1788)
+ (pt 639.85824 432.1788)
+ (pt 640.06243 431.87321)
+ (pt 640.15656 431.4)
+ (pt 640.06243 430.92679)
+ (pt 639.79438 430.52562)
+ (pt 639.39321 430.25757)
+ (pt 638.92 430.16344)
+ (pt 638.44679 430.25757)
+ (pt 638.04562 430.52562)
+ (pt 637.77757 430.92679)
+ (pt 637.68344 431.4)
+ (pt 637.77757 431.87321)
+ (pt 637.98176 432.1788)
+ (pt 631.70999 432.1788)
+ (pt 631.60361 432.10772)
+ (pt 631.35 432.05727)
+ (pt 630.65 432.05727)
+ (pt 630.39639 432.10772)
+ (pt 630.2 432.23894)
+ (pt 630.00361 432.10772)
+ (pt 629.75 432.05727)
+ (pt 629.49854 432.05727)
+ (pt 629.4 432.01645)
+ (pt 628.69141 432.01645)
+ (pt 627.54355 430.86859)
+ (pt 627.54355 430.44701)
+ (pt 627.68778 430.23116)
+ (pt 627.75763 429.88)
+ (pt 627.68778 429.52884)
+ (pt 627.48886 429.23114)
+ (pt 627.19116 429.03222)
+ (pt 626.84 428.96237)
+ (pt 626.48884 429.03222)
+ (pt 626.19114 429.23114)
+ (pt 625.99222 429.52884)
+ (pt 625.97277 429.62664)
+ (pt 625.9 429.61217)
+ (pt 625.1 429.61217)
+ (pt 624.94393 429.64321)
+ (pt 624.81162 429.73162)
+ (pt 624.75256 429.82)
+ (pt 624.64744 429.82)
+ (pt 624.58838 429.73162)
+ (pt 624.45607 429.64321)
+ (pt 624.3 429.61217)
+ (pt 624.27374 429.61217)
+ (pt 624.28778 429.59116)
+ (pt 624.35763 429.24)
+ (pt 624.28778 428.88884)
+ (pt 624.08886 428.59114)
+ (pt 623.79116 428.39222)
+ (pt 623.44 428.32237)
+ (pt 623.08884 428.39222)
+ (pt 622.79114 428.59114)
+ (pt 622.59222 428.88884)
+ (pt 622.52237 429.24)
+ (pt 622.59222 429.59116)
+ (pt 622.79114 429.88886)
+ (pt 623.08884 430.08778)
+ (pt 623.09217 430.08844)
+ (pt 623.09217 430.82)
+ (pt 623.12321 430.97607)
+ (pt 623.21162 431.10838)
+ (pt 623.34393 431.19679)
+ (pt 623.5 431.22783)
+ (pt 624.3 431.22783)
+ (pt 624.45607 431.19679)
+ (pt 624.58838 431.10838)
+ (pt 624.64744 431.02)
+ (pt 624.75256 431.02)
+ (pt 624.81162 431.10838)
+ (pt 624.94393 431.19679)
+ (pt 625.1 431.22783)
+ (pt 625.9 431.22783)
+ (pt 626.05607 431.19679)
+ (pt 626.13645 431.14308)
+ (pt 626.13645 431.16)
+ (pt 626.34252 431.65748)
+ (pt 627.90252 433.21748)
+ (pt 628.4 433.42355)
+ (pt 628.40646 433.42355)
+ (pt 628.38727 433.52)
+ (pt 628.43772 433.77361)
+ (pt 628.53553 433.92)
+ (pt 628.43772 434.06639)
+ (pt 628.38727 434.32)
+ (pt 628.43772 434.57361)
+ (pt 628.53553 434.72)
+ (pt 628.43772 434.86639)
+ (pt 628.38727 435.12)
+ (pt 628.43772 435.37361)
+ (pt 628.58138 435.58862)
+ (pt 628.79639 435.73228)
+ (pt 629.05 435.78273)
+ (pt 629.30146 435.78273)
+ (pt 629.4 435.82355)
+ (pt 629.49854 435.78273)
+ (pt 629.75 435.78273)
+ (pt 630.00361 435.73228)
+ (pt 630.2 435.60106)
+ (pt 630.39639 435.73228)
+ (pt 630.65 435.78273)
+ (pt 631.35 435.78273)
+ (pt 631.60361 435.73228)
+ (pt 631.70999 435.6612)
+ (pt 634.73582 435.6612)
+ (pt 635.93731 436.86269)
+ (pt 636.32 437.0212)
+ (pt 637.823 437.0212)
+ (pt 637.98176 437.2588)
+ (pt 631.70999 437.2588)
+ (pt 631.60361 437.18772)
+ (pt 631.35 437.13727)
+ (pt 630.65 437.13727)
+ (pt 630.39639 437.18772)
+ (pt 630.2 437.31894)
+ (pt 630.00361 437.18772)
+ (pt 629.75 437.13727)
+ (pt 629.49854 437.13727)
+ (pt 629.4 437.09645)
+ (pt 629.30146 437.13727)
+ (pt 629.05 437.13727)
+ (pt 628.79639 437.18772)
+ (pt 628.58138 437.33138)
+ (pt 628.43772 437.54639)
+ (pt 628.38727 437.8)
+ (pt 628.43772 438.05361)
+ (pt 628.53553 438.2)
+ (pt 628.43772 438.34639)
+ (pt 628.38727 438.6)
+ (pt 628.43772 438.85361)
+ (pt 628.53553 439.0)
+ (pt 628.43772 439.14639)
+ (pt 628.38727 439.4)
+ (pt 628.40646 439.49645)
+ (pt 625.51188 439.49645)
+ (pt 625.24101 439.44257)
+ (pt 624.87922 439.08078)
+ (pt 624.42 438.89056)
+ (pt 624.4144 438.89056)
+ (pt 624.38838 438.85162)
+ (pt 624.25607 438.76321)
+ (pt 624.1 438.73217)
+ (pt 623.3 438.73217)
+ (pt 623.14393 438.76321)
+ (pt 623.01162 438.85162)
+ (pt 622.95256 438.94)
+ (pt 622.84744 438.94)
+ (pt 622.78838 438.85162)
+ (pt 622.65607 438.76321)
+ (pt 622.5 438.73217)
+ (pt 621.7 438.73217)
+ (pt 621.54393 438.76321)
+ (pt 621.41162 438.85162)
+ (pt 621.34947 438.94463)
+ (pt 621.02078 439.08078)
+ (pt 620.33171 439.76985)
+ (pt 620.14786 439.80642)
+ (pt 619.88324 439.98324)
+ (pt 619.70642 440.24786)
+ (pt 619.64433 440.56)
+ (pt 619.70642 440.87214)
+ (pt 619.88324 441.13676)
+ (pt 620.14786 441.31358)
+ (pt 620.46 441.37567)
+ (pt 620.77214 441.31358)
+ (pt 621.03676 441.13676)
+ (pt 621.21358 440.87214)
+ (pt 621.25015 440.68829)
+ (pt 621.60876 440.32968)
+ (pt 621.7 440.34783)
+ (pt 622.5 440.34783)
+ (pt 622.65607 440.31679)
+ (pt 622.78838 440.22838)
+ (pt 622.84744 440.14)
+ (pt 622.95256 440.14)
+ (pt 623.01162 440.22838)
+ (pt 623.14393 440.31679)
+ (pt 623.3 440.34783)
+ (pt 624.1 440.34783)
+ (pt 624.25607 440.31679)
+ (pt 624.26943 440.30787)
+ (pt 624.32156 440.36)
+ (pt 624.00939 440.67217)
+ (pt 623.28 440.67217)
+ (pt 623.12393 440.70321)
+ (pt 622.99162 440.79162)
+ (pt 622.93256 440.88)
+ (pt 622.82744 440.88)
+ (pt 622.76838 440.79162)
+ (pt 622.63607 440.70321)
+ (pt 622.48 440.67217)
+ (pt 621.68 440.67217)
+ (pt 621.52393 440.70321)
+ (pt 621.39162 440.79162)
+ (pt 621.30321 440.92393)
+ (pt 621.27217 441.08)
+ (pt 621.27217 441.88)
+ (pt 621.30321 442.03607)
+ (pt 621.39162 442.16838)
+ (pt 621.52393 442.25679)
+ (pt 621.68 442.28783)
+ (pt 622.48 442.28783)
+ (pt 622.63607 442.25679)
+ (pt 622.76838 442.16838)
+ (pt 622.82744 442.08)
+ (pt 622.93256 442.08)
+ (pt 622.99162 442.16838)
+ (pt 623.12393 442.25679)
+ (pt 623.28 442.28783)
+ (pt 624.08 442.28783)
+ (pt 624.23607 442.25679)
+ (pt 624.36838 442.16838)
+ (pt 624.45679 442.03607)
+ (pt 624.46679 441.98579)
+ (pt 624.57922 441.93922)
+ (pt 625.24 441.27844)
+ (pt 626.03056 442.069)
+ (pt 626.03056 442.69834)
+ (pt 625.86138 442.81138)
+ (pt 625.71772 443.02639)
+ (pt 625.66727 443.28)
+ (pt 625.71772 443.53361)
+ (pt 625.81553 443.68)
+ (pt 625.71772 443.82639)
+ (pt 625.66727 444.08)
+ (pt 625.71772 444.33361)
+ (pt 625.81553 444.48)
+ (pt 625.71772 444.62639)
+ (pt 625.66727 444.88)
+ (pt 625.71772 445.13361)
+ (pt 625.81553 445.28)
+ (pt 625.71772 445.42639)
+ (pt 625.66727 445.68)
+ (pt 625.71772 445.93361)
+ (pt 625.86138 446.14862)
+ (pt 626.07639 446.29228)
+ (pt 626.33 446.34273)
+ (pt 627.03 446.34273)
+ (pt 627.28361 446.29228)
+ (pt 627.48 446.16106)
+ (pt 627.67639 446.29228)
+ (pt 627.93 446.34273)
+ (pt 628.63 446.34273)
+ (pt 628.88361 446.29228)
+ (pt 628.98999 446.2212)
+ (pt 636.33582 446.2212)
+ (pt 637.13731 447.02269)
+ (pt 637.52 447.1812)
+ (pt 637.823 447.1812)
+ (pt 637.95611 447.38041)
+ (pt 637.57731 447.53731)
+ (pt 637.41582 447.6988)
+ (pt 629.02999 447.6988)
+ (pt 628.92361 447.62772)
+ (pt 628.67 447.57727)
+ (pt 627.97 447.57727)
+ (pt 627.71639 447.62772)
+ (pt 627.52 447.75894)
+ (pt 627.32361 447.62772)
+ (pt 627.07 447.57727)
+ (pt 626.37 447.57727)
+ (pt 626.11639 447.62772)
+ (pt 625.90138 447.77138)
+ (pt 625.75772 447.98639)
+ (pt 625.70727 448.24)
+ (pt 625.73722 448.39056)
+ (pt 625.6884 448.39056)
+ (pt 625.57116 448.31222)
+ (pt 625.22 448.24237)
+ (pt 624.86884 448.31222)
+ (pt 624.60194 448.49056)
+ (pt 623.3944 448.49056)
+ (pt 623.36838 448.45162)
+ (pt 623.28 448.39256)
+ (pt 623.28 448.28744)
+ (pt 623.36838 448.22838)
+ (pt 623.45679 448.09607)
+ (pt 623.48783 447.94)
+ (pt 623.48783 447.14)
+ (pt 623.45679 446.98393)
+ (pt 623.36838 446.85162)
+ (pt 623.23607 446.76321)
+ (pt 623.08 446.73217)
+ (pt 622.28 446.73217)
+ (pt 622.12393 446.76321)
+ (pt 621.99162 446.85162)
+ (pt 621.90321 446.98393)
+ (pt 621.90025 446.9988)
+ (pt 621.78716 446.9988)
+ (pt 621.77676 446.98324)
+ (pt 621.51214 446.80642)
+ (pt 621.2 446.74433)
+ (pt 620.88786 446.80642)
+ (pt 620.62324 446.98324)
+ (pt 620.44642 447.24786)
+ (pt 620.38433 447.56)
+ (pt 620.44642 447.87214)
+ (pt 620.62324 448.13676)
+ (pt 620.88786 448.31358)
+ (pt 621.2 448.37567)
+ (pt 621.51214 448.31358)
+ (pt 621.77676 448.13676)
+ (pt 621.81389 448.0812)
+ (pt 621.90025 448.0812)
+ (pt 621.90321 448.09607)
+ (pt 621.99162 448.22838)
+ (pt 622.08 448.28744)
+ (pt 622.08 448.39256)
+ (pt 621.99162 448.45162)
+ (pt 621.90321 448.58393)
+ (pt 621.87217 448.74)
+ (pt 621.87217 449.54)
+ (pt 621.90321 449.69607)
+ (pt 621.99162 449.82838)
+ (pt 622.12393 449.91679)
+ (pt 622.28 449.94783)
+ (pt 623.08 449.94783)
+ (pt 623.23607 449.91679)
+ (pt 623.36838 449.82838)
+ (pt 623.3944 449.78944)
+ (pt 624.55816 449.78944)
+ (pt 624.57056 449.80799)
+ (pt 624.57056 450.111)
+ (pt 624.32939 450.35217)
+ (pt 624.04 450.35217)
+ (pt 623.88393 450.38321)
+ (pt 623.75162 450.47162)
+ (pt 623.69256 450.56)
+ (pt 623.58744 450.56)
+ (pt 623.52838 450.47162)
+ (pt 623.39607 450.38321)
+ (pt 623.24 450.35217)
+ (pt 622.44 450.35217)
+ (pt 622.28393 450.38321)
+ (pt 622.15162 450.47162)
+ (pt 622.06321 450.60393)
+ (pt 622.0404 450.71862)
+ (pt 622.01676 450.68324)
+ (pt 621.75214 450.50642)
+ (pt 621.44 450.44433)
+ (pt 621.12786 450.50642)
+ (pt 620.86324 450.68324)
+ (pt 620.68642 450.94786)
+ (pt 620.62433 451.26)
+ (pt 620.68642 451.57214)
+ (pt 620.86324 451.83676)
+ (pt 621.12786 452.01358)
+ (pt 621.44 452.07567)
+ (pt 621.75214 452.01358)
+ (pt 622.01676 451.83676)
+ (pt 622.08031 451.74166)
+ (pt 622.15162 451.84838)
+ (pt 622.28393 451.93679)
+ (pt 622.44 451.96783)
+ (pt 623.24 451.96783)
+ (pt 623.39607 451.93679)
+ (pt 623.52838 451.84838)
+ (pt 623.58744 451.76)
+ (pt 623.69256 451.76)
+ (pt 623.75162 451.84838)
+ (pt 623.88393 451.93679)
+ (pt 624.04 451.96783)
+ (pt 624.84 451.96783)
+ (pt 624.99607 451.93679)
+ (pt 625.12838 451.84838)
+ (pt 625.21679 451.71607)
+ (pt 625.24783 451.56)
+ (pt 625.24783 451.27061)
+ (pt 625.67922 450.83922)
+ (pt 625.72494 450.72884)
+ (pt 625.75772 450.89361)
+ (pt 625.90138 451.10862)
+ (pt 626.11639 451.25228)
+ (pt 626.37 451.30273)
+ (pt 627.07 451.30273)
+ (pt 627.32361 451.25228)
+ (pt 627.52 451.12106)
+ (pt 627.71639 451.25228)
+ (pt 627.97 451.30273)
+ (pt 628.67 451.30273)
+ (pt 628.92361 451.25228)
+ (pt 629.02999 451.1812)
+ (pt 634.89582 451.1812)
+ (pt 635.81731 452.10269)
+ (pt 636.2 452.2612)
+ (pt 637.823 452.2612)
+ (pt 638.04562 452.59438)
+ (pt 638.44679 452.86243)
+ (pt 638.92 452.95656)
+ (pt 639.39321 452.86243)
+ (pt 639.79438 452.59438)
+ (pt 640.06243 452.19321)
+ (pt 640.15656 451.72)
+ (pt 640.06243 451.24679)
+ (pt 639.9117 451.0212)
+ (pt 639.99582 451.0212)
+ (pt 640.30162 451.327)
+ (pt 640.22344 451.72)
+ (pt 640.31757 452.19321)
+ (pt 640.58562 452.59438)
+ (pt 640.98679 452.86243)
+ (pt 641.46 452.95656)
+ (pt 641.93321 452.86243)
+ (pt 642.33438 452.59438)
+ (pt 642.60243 452.19321)
+ (pt 642.69656 451.72)
+ (pt 642.60243 451.24679)
+ (pt 642.33438 450.84562)
+ (pt 641.93321 450.57757)
+ (pt 641.46 450.48344)
+ (pt 641.067 450.56162)
+ (pt 640.60269 450.09731)
+ (pt 640.22 449.9388)
+ (pt 639.87161 449.9388)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 640.20162 312.947)
+ (pt 640.12344 313.34)
+ (pt 640.21757 313.81321)
+ (pt 640.48562 314.21438)
+ (pt 640.88679 314.48243)
+ (pt 641.36 314.57656)
+ (pt 641.83321 314.48243)
+ (pt 642.23438 314.21438)
+ (pt 642.50243 313.81321)
+ (pt 642.59656 313.34)
+ (pt 642.50243 312.86679)
+ (pt 642.23438 312.46562)
+ (pt 641.83321 312.19757)
+ (pt 641.36 312.10344)
+ (pt 640.967 312.18162)
+ (pt 640.48269 311.69731)
+ (pt 640.1 311.5388)
+ (pt 639.78497 311.5388)
+ (pt 639.96243 311.27321)
+ (pt 640.05656 310.8)
+ (pt 639.96243 310.32679)
+ (pt 639.8117 310.1012)
+ (pt 639.89582 310.1012)
+ (pt 640.20162 310.407)
+ (pt 640.12344 310.8)
+ (pt 640.21757 311.27321)
+ (pt 640.48562 311.67438)
+ (pt 640.88679 311.94243)
+ (pt 641.36 312.03656)
+ (pt 641.83321 311.94243)
+ (pt 642.23438 311.67438)
+ (pt 642.50243 311.27321)
+ (pt 642.59656 310.8)
+ (pt 642.50243 310.32679)
+ (pt 642.23438 309.92562)
+ (pt 641.83321 309.65757)
+ (pt 641.36 309.56344)
+ (pt 640.967 309.64162)
+ (pt 640.50269 309.17731)
+ (pt 640.12 309.0188)
+ (pt 639.77161 309.0188)
+ (pt 639.96243 308.73321)
+ (pt 640.05656 308.26)
+ (pt 639.96243 307.78679)
+ (pt 639.79833 307.5412)
+ (pt 639.87582 307.5412)
+ (pt 640.20162 307.867)
+ (pt 640.12344 308.26)
+ (pt 640.21757 308.73321)
+ (pt 640.48562 309.13438)
+ (pt 640.88679 309.40243)
+ (pt 641.36 309.49656)
+ (pt 641.83321 309.40243)
+ (pt 642.23438 309.13438)
+ (pt 642.50243 308.73321)
+ (pt 642.59656 308.26)
+ (pt 642.50243 307.78679)
+ (pt 642.23438 307.38562)
+ (pt 641.83321 307.11757)
+ (pt 641.36 307.02344)
+ (pt 640.967 307.10162)
+ (pt 640.48269 306.61731)
+ (pt 640.1 306.4588)
+ (pt 639.78497 306.4588)
+ (pt 639.96243 306.19321)
+ (pt 640.05656 305.72)
+ (pt 639.96243 305.24679)
+ (pt 639.82506 305.0412)
+ (pt 639.91582 305.0412)
+ (pt 640.20162 305.327)
+ (pt 640.12344 305.72)
+ (pt 640.21757 306.19321)
+ (pt 640.48562 306.59438)
+ (pt 640.88679 306.86243)
+ (pt 641.36 306.95656)
+ (pt 641.83321 306.86243)
+ (pt 642.23438 306.59438)
+ (pt 642.50243 306.19321)
+ (pt 642.59656 305.72)
+ (pt 642.50243 305.24679)
+ (pt 642.23438 304.84562)
+ (pt 641.83321 304.57757)
+ (pt 641.36 304.48344)
+ (pt 640.967 304.56162)
+ (pt 640.52269 304.11731)
+ (pt 640.14 303.9588)
+ (pt 639.75824 303.9588)
+ (pt 639.96243 303.65321)
+ (pt 640.05656 303.18)
+ (pt 639.96243 302.70679)
+ (pt 639.78497 302.4412)
+ (pt 639.85582 302.4412)
+ (pt 640.20162 302.787)
+ (pt 640.12344 303.18)
+ (pt 640.21757 303.65321)
+ (pt 640.48562 304.05438)
+ (pt 640.88679 304.32243)
+ (pt 641.36 304.41656)
+ (pt 641.83321 304.32243)
+ (pt 642.23438 304.05438)
+ (pt 642.50243 303.65321)
+ (pt 642.59656 303.18)
+ (pt 642.50243 302.70679)
+ (pt 642.23438 302.30562)
+ (pt 641.83321 302.03757)
+ (pt 641.36 301.94344)
+ (pt 640.967 302.02162)
+ (pt 640.46269 301.51731)
+ (pt 640.08 301.3588)
+ (pt 639.79833 301.3588)
+ (pt 639.96243 301.11321)
+ (pt 640.05656 300.64)
+ (pt 639.96243 300.16679)
+ (pt 639.94533 300.1412)
+ (pt 640.09582 300.1412)
+ (pt 640.20162 300.247)
+ (pt 640.12344 300.64)
+ (pt 640.21757 301.11321)
+ (pt 640.48562 301.51438)
+ (pt 640.88679 301.78243)
+ (pt 641.36 301.87656)
+ (pt 641.83321 301.78243)
+ (pt 642.23438 301.51438)
+ (pt 642.50243 301.11321)
+ (pt 642.59656 300.64)
+ (pt 642.50243 300.16679)
+ (pt 642.23438 299.76562)
+ (pt 641.83321 299.49757)
+ (pt 641.36 299.40344)
+ (pt 640.967 299.48162)
+ (pt 640.70269 299.21731)
+ (pt 640.32 299.0588)
+ (pt 639.56804 299.0588)
+ (pt 639.69438 298.97438)
+ (pt 639.96243 298.57321)
+ (pt 640.05656 298.1)
+ (pt 639.96243 297.62679)
+ (pt 639.69438 297.22562)
+ (pt 639.29321 296.95757)
+ (pt 638.82 296.86344)
+ (pt 638.34679 296.95757)
+ (pt 637.94562 297.22562)
+ (pt 637.67757 297.62679)
+ (pt 637.58344 298.1)
+ (pt 637.67757 298.57321)
+ (pt 637.94562 298.97438)
+ (pt 638.07196 299.0588)
+ (pt 628.94999 299.0588)
+ (pt 628.84361 298.98772)
+ (pt 628.59 298.93727)
+ (pt 627.89 298.93727)
+ (pt 627.63639 298.98772)
+ (pt 627.50477 299.07566)
+ (pt 627.50778 299.07116)
+ (pt 627.57763 298.72)
+ (pt 627.50778 298.36884)
+ (pt 627.36115 298.1494)
+ (pt 627.39679 298.09607)
+ (pt 627.42783 297.94)
+ (pt 627.42783 297.14)
+ (pt 627.39679 296.98393)
+ (pt 627.30838 296.85162)
+ (pt 627.17607 296.76321)
+ (pt 627.02 296.73217)
+ (pt 626.22 296.73217)
+ (pt 626.06393 296.76321)
+ (pt 625.93162 296.85162)
+ (pt 625.87256 296.94)
+ (pt 625.76744 296.94)
+ (pt 625.70838 296.85162)
+ (pt 625.57607 296.76321)
+ (pt 625.42 296.73217)
+ (pt 624.62 296.73217)
+ (pt 624.46393 296.76321)
+ (pt 624.33162 296.85162)
+ (pt 624.24321 296.98393)
+ (pt 624.21217 297.14)
+ (pt 624.21217 297.36635)
+ (pt 624.13116 297.31222)
+ (pt 623.78 297.24237)
+ (pt 623.42884 297.31222)
+ (pt 623.13114 297.51114)
+ (pt 622.93222 297.80884)
+ (pt 622.86237 298.16)
+ (pt 622.93222 298.51116)
+ (pt 623.13114 298.80886)
+ (pt 623.42884 299.00778)
+ (pt 623.78 299.07763)
+ (pt 624.13116 299.00778)
+ (pt 624.42886 298.80886)
+ (pt 624.62778 298.51116)
+ (pt 624.66027 298.34783)
+ (pt 625.42 298.34783)
+ (pt 625.57607 298.31679)
+ (pt 625.70838 298.22838)
+ (pt 625.76744 298.14)
+ (pt 625.87256 298.14)
+ (pt 625.91885 298.20926)
+ (pt 625.81222 298.36884)
+ (pt 625.74237 298.72)
+ (pt 625.81222 299.07116)
+ (pt 625.84287 299.11702)
+ (pt 625.82138 299.13138)
+ (pt 625.67772 299.34639)
+ (pt 625.62727 299.6)
+ (pt 625.67772 299.85361)
+ (pt 625.77553 300.0)
+ (pt 625.67772 300.14639)
+ (pt 625.62727 300.4)
+ (pt 625.67772 300.65361)
+ (pt 625.77553 300.8)
+ (pt 625.67772 300.94639)
+ (pt 625.62727 301.2)
+ (pt 625.67772 301.45361)
+ (pt 625.77553 301.6)
+ (pt 625.67772 301.74639)
+ (pt 625.62727 302.0)
+ (pt 625.67772 302.25361)
+ (pt 625.82138 302.46862)
+ (pt 626.03639 302.61228)
+ (pt 626.29 302.66273)
+ (pt 626.99 302.66273)
+ (pt 627.24361 302.61228)
+ (pt 627.44 302.48106)
+ (pt 627.63639 302.61228)
+ (pt 627.89 302.66273)
+ (pt 628.59 302.66273)
+ (pt 628.84361 302.61228)
+ (pt 628.94999 302.5412)
+ (pt 634.35582 302.5412)
+ (pt 635.37731 303.56269)
+ (pt 635.76 303.7212)
+ (pt 637.723 303.7212)
+ (pt 637.88176 303.9588)
+ (pt 635.7 303.9588)
+ (pt 635.31731 304.11731)
+ (pt 635.13582 304.2988)
+ (pt 628.98999 304.2988)
+ (pt 628.88361 304.22772)
+ (pt 628.63 304.17727)
+ (pt 627.93 304.17727)
+ (pt 627.67639 304.22772)
+ (pt 627.48 304.35894)
+ (pt 627.28361 304.22772)
+ (pt 627.03 304.17727)
+ (pt 626.33 304.17727)
+ (pt 626.07639 304.22772)
+ (pt 625.86138 304.37138)
+ (pt 625.71772 304.58639)
+ (pt 625.66727 304.84)
+ (pt 625.71772 305.09361)
+ (pt 625.81553 305.24)
+ (pt 625.71772 305.38639)
+ (pt 625.66727 305.64)
+ (pt 625.71772 305.89361)
+ (pt 625.81553 306.04)
+ (pt 625.71772 306.18639)
+ (pt 625.66727 306.44)
+ (pt 625.71772 306.69361)
+ (pt 625.81553 306.84)
+ (pt 625.71772 306.98639)
+ (pt 625.66727 307.24)
+ (pt 625.71772 307.49361)
+ (pt 625.86138 307.70862)
+ (pt 625.96422 307.77734)
+ (pt 625.73899 308.00257)
+ (pt 625.38884 308.07222)
+ (pt 625.12194 308.25056)
+ (pt 625.1144 308.25056)
+ (pt 625.08838 308.21162)
+ (pt 624.95607 308.12321)
+ (pt 624.8 308.09217)
+ (pt 624.0 308.09217)
+ (pt 623.84393 308.12321)
+ (pt 623.71162 308.21162)
+ (pt 623.65256 308.3)
+ (pt 623.54744 308.3)
+ (pt 623.48838 308.21162)
+ (pt 623.35607 308.12321)
+ (pt 623.2 308.09217)
+ (pt 622.4 308.09217)
+ (pt 622.24393 308.12321)
+ (pt 622.11162 308.21162)
+ (pt 622.02321 308.34393)
+ (pt 621.99217 308.5)
+ (pt 621.99217 309.3)
+ (pt 622.01962 309.43803)
+ (pt 621.93222 309.56884)
+ (pt 621.86237 309.92)
+ (pt 621.93222 310.27116)
+ (pt 622.13114 310.56886)
+ (pt 622.42884 310.76778)
+ (pt 622.78 310.83763)
+ (pt 623.13116 310.76778)
+ (pt 623.42886 310.56886)
+ (pt 623.62778 310.27116)
+ (pt 623.69763 309.92)
+ (pt 623.62778 309.56884)
+ (pt 623.58178 309.5)
+ (pt 623.65256 309.5)
+ (pt 623.71162 309.58838)
+ (pt 623.84393 309.67679)
+ (pt 624.0 309.70783)
+ (pt 624.8 309.70783)
+ (pt 624.95607 309.67679)
+ (pt 625.08838 309.58838)
+ (pt 625.09825 309.57361)
+ (pt 625.38884 309.76778)
+ (pt 625.64347 309.81843)
+ (pt 627.07732 311.25228)
+ (pt 626.98772 311.38639)
+ (pt 626.93727 311.64)
+ (pt 626.94151 311.66134)
+ (pt 626.72 311.61727)
+ (pt 626.46639 311.66772)
+ (pt 626.25138 311.81138)
+ (pt 626.10772 312.02639)
+ (pt 626.05727 312.28)
+ (pt 626.10772 312.53361)
+ (pt 626.25138 312.74862)
+ (pt 626.46639 312.89228)
+ (pt 626.60574 312.92)
+ (pt 626.46639 312.94772)
+ (pt 626.25138 313.09138)
+ (pt 626.10772 313.30639)
+ (pt 626.05727 313.56)
+ (pt 626.10772 313.81361)
+ (pt 626.25138 314.02862)
+ (pt 626.46639 314.17228)
+ (pt 626.72 314.22273)
+ (pt 626.90815 314.1853)
+ (pt 626.89727 314.24)
+ (pt 626.90815 314.2947)
+ (pt 626.72 314.25727)
+ (pt 626.46639 314.30772)
+ (pt 626.25138 314.45138)
+ (pt 626.10772 314.66639)
+ (pt 626.05727 314.92)
+ (pt 626.10772 315.17361)
+ (pt 626.25138 315.38862)
+ (pt 626.46639 315.53228)
+ (pt 626.54584 315.54809)
+ (pt 626.33138 315.69138)
+ (pt 626.18772 315.90639)
+ (pt 626.13727 316.16)
+ (pt 626.18772 316.41361)
+ (pt 626.33138 316.62862)
+ (pt 626.54639 316.77228)
+ (pt 626.8 316.82273)
+ (pt 627.05361 316.77228)
+ (pt 627.26862 316.62862)
+ (pt 627.41228 316.41361)
+ (pt 627.45443 316.20173)
+ (pt 627.56 316.22273)
+ (pt 627.81361 316.17228)
+ (pt 628.02862 316.02862)
+ (pt 628.17228 315.81361)
+ (pt 628.22273 315.56)
+ (pt 628.17228 315.30639)
+ (pt 628.02862 315.09138)
+ (pt 627.81361 314.94772)
+ (pt 627.57372 314.9)
+ (pt 627.81361 314.85228)
+ (pt 628.02862 314.70862)
+ (pt 628.17228 314.49361)
+ (pt 628.22273 314.24)
+ (pt 628.17228 313.98639)
+ (pt 628.02862 313.77138)
+ (pt 627.81361 313.62772)
+ (pt 627.56 313.57727)
+ (pt 627.37185 313.6147)
+ (pt 627.38273 313.56)
+ (pt 627.37849 313.53866)
+ (pt 627.6 313.58273)
+ (pt 627.85361 313.53228)
+ (pt 628.06862 313.38862)
+ (pt 628.21228 313.17361)
+ (pt 628.26273 312.92)
+ (pt 628.21228 312.66639)
+ (pt 628.06862 312.45138)
+ (pt 627.85361 312.30772)
+ (pt 627.71426 312.28)
+ (pt 627.85361 312.25228)
+ (pt 628.06862 312.10862)
+ (pt 628.21228 311.89361)
+ (pt 628.24213 311.74355)
+ (pt 628.60646 311.74355)
+ (pt 628.58727 311.84)
+ (pt 628.63772 312.09361)
+ (pt 628.73553 312.24)
+ (pt 628.63772 312.38639)
+ (pt 628.58727 312.64)
+ (pt 628.63772 312.89361)
+ (pt 628.73553 313.04)
+ (pt 628.63772 313.18639)
+ (pt 628.58727 313.44)
+ (pt 628.63772 313.69361)
+ (pt 628.78138 313.90862)
+ (pt 628.99639 314.05228)
+ (pt 629.25 314.10273)
+ (pt 629.50146 314.10273)
+ (pt 629.6 314.14355)
+ (pt 629.69854 314.10273)
+ (pt 629.95 314.10273)
+ (pt 630.20361 314.05228)
+ (pt 630.4 313.92106)
+ (pt 630.59639 314.05228)
+ (pt 630.85 314.10273)
+ (pt 631.55 314.10273)
+ (pt 631.80361 314.05228)
+ (pt 631.90999 313.9812)
+ (pt 637.78982 313.9812)
+ (pt 637.86839 314.0988)
+ (pt 636.36 314.0988)
+ (pt 635.97731 314.25731)
+ (pt 635.37582 314.8588)
+ (pt 631.90999 314.8588)
+ (pt 631.80361 314.78772)
+ (pt 631.55 314.73727)
+ (pt 630.85 314.73727)
+ (pt 630.59639 314.78772)
+ (pt 630.4 314.91894)
+ (pt 630.20361 314.78772)
+ (pt 629.95 314.73727)
+ (pt 629.69854 314.73727)
+ (pt 629.6 314.69645)
+ (pt 629.50146 314.73727)
+ (pt 629.25 314.73727)
+ (pt 628.99639 314.78772)
+ (pt 628.78138 314.93138)
+ (pt 628.63772 315.14639)
+ (pt 628.58727 315.4)
+ (pt 628.63772 315.65361)
+ (pt 628.73553 315.8)
+ (pt 628.63772 315.94639)
+ (pt 628.58727 316.2)
+ (pt 628.63772 316.45361)
+ (pt 628.73553 316.6)
+ (pt 628.63772 316.74639)
+ (pt 628.58727 317.0)
+ (pt 628.60646 317.09645)
+ (pt 626.74 317.09645)
+ (pt 626.24252 317.30252)
+ (pt 625.80347 317.74157)
+ (pt 625.54884 317.79222)
+ (pt 625.25114 317.99114)
+ (pt 625.05222 318.28884)
+ (pt 624.98237 318.64)
+ (pt 625.05222 318.99116)
+ (pt 625.19709 319.20797)
+ (pt 625.19162 319.21162)
+ (pt 625.10321 319.34393)
+ (pt 625.07217 319.5)
+ (pt 625.07217 320.3)
+ (pt 625.10321 320.45607)
+ (pt 625.19162 320.58838)
+ (pt 625.28 320.64744)
+ (pt 625.28 320.75256)
+ (pt 625.19162 320.81162)
+ (pt 625.10321 320.94393)
+ (pt 625.07217 321.1)
+ (pt 625.07217 321.9)
+ (pt 625.10321 322.05607)
+ (pt 625.14885 322.12437)
+ (pt 625.01222 322.32884)
+ (pt 624.94237 322.68)
+ (pt 625.01222 323.03116)
+ (pt 625.21114 323.32886)
+ (pt 625.50884 323.52778)
+ (pt 625.86 323.59763)
+ (pt 626.21116 323.52778)
+ (pt 626.50886 323.32886)
+ (pt 626.70778 323.03116)
+ (pt 626.77763 322.68)
+ (pt 626.70778 322.32884)
+ (pt 626.59115 322.1543)
+ (pt 626.65679 322.05607)
+ (pt 626.68783 321.9)
+ (pt 626.68783 321.1)
+ (pt 626.65679 320.94393)
+ (pt 626.56838 320.81162)
+ (pt 626.48 320.75256)
+ (pt 626.48 320.64744)
+ (pt 626.56838 320.58838)
+ (pt 626.65679 320.45607)
+ (pt 626.68783 320.3)
+ (pt 626.68783 319.5)
+ (pt 626.65679 319.34393)
+ (pt 626.58443 319.23563)
+ (pt 626.74778 318.99116)
+ (pt 626.79843 318.73653)
+ (pt 627.03141 318.50355)
+ (pt 629.6 318.50355)
+ (pt 629.69854 318.46273)
+ (pt 629.95 318.46273)
+ (pt 630.20361 318.41228)
+ (pt 630.4 318.28106)
+ (pt 630.59639 318.41228)
+ (pt 630.85 318.46273)
+ (pt 631.55 318.46273)
+ (pt 631.80361 318.41228)
+ (pt 631.90999 318.3412)
+ (pt 637.59911 318.3412)
+ (pt 637.58344 318.42)
+ (pt 637.67757 318.89321)
+ (pt 637.94562 319.29438)
+ (pt 638.34679 319.56243)
+ (pt 638.82 319.65656)
+ (pt 639.29321 319.56243)
+ (pt 639.69438 319.29438)
+ (pt 639.96243 318.89321)
+ (pt 640.05656 318.42)
+ (pt 639.96243 317.94679)
+ (pt 639.69438 317.54562)
+ (pt 639.68776 317.5412)
+ (pt 639.71582 317.5412)
+ (pt 640.20162 318.027)
+ (pt 640.12344 318.42)
+ (pt 640.21757 318.89321)
+ (pt 640.48562 319.29438)
+ (pt 640.88679 319.56243)
+ (pt 641.36 319.65656)
+ (pt 641.83321 319.56243)
+ (pt 642.23438 319.29438)
+ (pt 642.50243 318.89321)
+ (pt 642.59656 318.42)
+ (pt 642.50243 317.94679)
+ (pt 642.23438 317.54562)
+ (pt 641.83321 317.27757)
+ (pt 641.36 317.18344)
+ (pt 640.967 317.26162)
+ (pt 640.32269 316.61731)
+ (pt 639.94 316.4588)
+ (pt 639.89188 316.4588)
+ (pt 639.96243 316.35321)
+ (pt 640.05656 315.88)
+ (pt 639.96243 315.40679)
+ (pt 639.8117 315.1812)
+ (pt 639.89582 315.1812)
+ (pt 640.20162 315.487)
+ (pt 640.12344 315.88)
+ (pt 640.21757 316.35321)
+ (pt 640.48562 316.75438)
+ (pt 640.88679 317.02243)
+ (pt 641.36 317.11656)
+ (pt 641.83321 317.02243)
+ (pt 642.23438 316.75438)
+ (pt 642.50243 316.35321)
+ (pt 642.59656 315.88)
+ (pt 642.50243 315.40679)
+ (pt 642.23438 315.00562)
+ (pt 641.83321 314.73757)
+ (pt 641.36 314.64344)
+ (pt 640.967 314.72162)
+ (pt 640.50269 314.25731)
+ (pt 640.12 314.0988)
+ (pt 639.77161 314.0988)
+ (pt 639.96243 313.81321)
+ (pt 640.05656 313.34)
+ (pt 639.96243 312.86679)
+ (pt 639.79833 312.6212)
+ (pt 639.87582 312.6212)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 382.29748 280.69748)
+ (pt 382.50355 280.2)
+ (pt 382.50355 278.63718)
+ (pt 382.60607 278.61679)
+ (pt 382.73838 278.52838)
+ (pt 382.82679 278.39607)
+ (pt 382.85783 278.24)
+ (pt 382.85783 277.04)
+ (pt 382.82679 276.88393)
+ (pt 382.8 276.84384)
+ (pt 382.8 276.43616)
+ (pt 382.82679 276.39607)
+ (pt 382.85783 276.24)
+ (pt 382.85783 275.04)
+ (pt 382.82679 274.88393)
+ (pt 382.73838 274.75162)
+ (pt 382.60607 274.66321)
+ (pt 382.45 274.63217)
+ (pt 382.29425 274.63217)
+ (pt 382.44886 274.52886)
+ (pt 382.64778 274.23116)
+ (pt 382.71763 273.88)
+ (pt 382.64778 273.52884)
+ (pt 382.44886 273.23114)
+ (pt 382.15116 273.03222)
+ (pt 381.8 272.96237)
+ (pt 381.44884 273.03222)
+ (pt 381.15114 273.23114)
+ (pt 380.95222 273.52884)
+ (pt 380.88237 273.88)
+ (pt 380.95222 274.23116)
+ (pt 381.15114 274.52886)
+ (pt 381.30575 274.63217)
+ (pt 381.15 274.63217)
+ (pt 380.99393 274.66321)
+ (pt 380.86162 274.75162)
+ (pt 380.77321 274.88393)
+ (pt 380.74217 275.04)
+ (pt 380.74217 276.24)
+ (pt 380.77321 276.39607)
+ (pt 380.8 276.43616)
+ (pt 380.8 276.84384)
+ (pt 380.77321 276.88393)
+ (pt 380.74217 277.04)
+ (pt 380.74217 278.24)
+ (pt 380.77321 278.39607)
+ (pt 380.86162 278.52838)
+ (pt 380.99393 278.61679)
+ (pt 381.09645 278.63718)
+ (pt 381.09645 279.90859)
+ (pt 379.21052 281.79452)
+ (pt 379.00445 282.292)
+ (pt 379.00445 284.09148)
+ (pt 378.83362 284.20562)
+ (pt 378.56557 284.60679)
+ (pt 378.47144 285.08)
+ (pt 378.56557 285.55321)
+ (pt 378.83362 285.95438)
+ (pt 379.23479 286.22243)
+ (pt 379.708 286.31656)
+ (pt 380.18121 286.22243)
+ (pt 380.53757 285.98432)
+ (pt 380.55041 286.04887)
+ (pt 380.63882 286.18118)
+ (pt 380.77113 286.26959)
+ (pt 380.9272 286.30063)
+ (pt 382.5528 286.30063)
+ (pt 382.70887 286.26959)
+ (pt 382.84118 286.18118)
+ (pt 382.92959 286.04887)
+ (pt 382.96063 285.8928)
+ (pt 382.96063 284.2672)
+ (pt 382.92959 284.11113)
+ (pt 382.84118 283.97882)
+ (pt 382.70887 283.89041)
+ (pt 382.5528 283.85937)
+ (pt 380.9272 283.85937)
+ (pt 380.77113 283.89041)
+ (pt 380.63882 283.97882)
+ (pt 380.55041 284.11113)
+ (pt 380.53757 284.17568)
+ (pt 380.41155 284.09148)
+ (pt 380.41155 282.58341)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.48891 375.27089)
+ (pt 648.29337 374.73337)
+ (pt 648.83089 373.92891)
+ (pt 649.01964 372.98)
+ (pt 648.83089 372.03109)
+ (pt 648.29337 371.22663)
+ (pt 647.48891 370.68911)
+ (pt 646.54 370.50036)
+ (pt 645.59109 370.68911)
+ (pt 644.78663 371.22663)
+ (pt 644.24911 372.03109)
+ (pt 644.06036 372.98)
+ (pt 644.24911 373.92891)
+ (pt 644.78663 374.73337)
+ (pt 645.59109 375.27089)
+ (pt 646.54 375.45964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 601.44283 339.105)
+ (pt 601.41179 338.94893)
+ (pt 601.32338 338.81662)
+ (pt 601.19107 338.72821)
+ (pt 601.07178 338.70449)
+ (pt 601.26778 338.41116)
+ (pt 601.33763 338.06)
+ (pt 601.26778 337.70884)
+ (pt 601.06886 337.41114)
+ (pt 600.82752 337.24988)
+ (pt 600.85679 337.20607)
+ (pt 600.88783 337.05)
+ (pt 600.88783 335.75)
+ (pt 600.85679 335.59393)
+ (pt 600.76838 335.46162)
+ (pt 600.63607 335.37321)
+ (pt 600.48 335.34217)
+ (pt 599.28 335.34217)
+ (pt 599.12393 335.37321)
+ (pt 599.08384 335.4)
+ (pt 598.67616 335.4)
+ (pt 598.63607 335.37321)
+ (pt 598.48 335.34217)
+ (pt 597.28 335.34217)
+ (pt 597.12393 335.37321)
+ (pt 597.04515 335.42585)
+ (pt 596.96 335.42585)
+ (pt 596.27117 335.71117)
+ (pt 595.83017 336.15217)
+ (pt 594.8 336.15217)
+ (pt 594.64393 336.18321)
+ (pt 594.51162 336.27162)
+ (pt 594.42321 336.40393)
+ (pt 594.39217 336.56)
+ (pt 594.39217 338.56)
+ (pt 594.42321 338.71607)
+ (pt 594.51162 338.84838)
+ (pt 594.64393 338.93679)
+ (pt 594.8 338.96783)
+ (pt 594.82585 338.96783)
+ (pt 594.82585 339.995)
+ (pt 594.87717 340.1189)
+ (pt 594.87717 341.105)
+ (pt 594.90821 341.26107)
+ (pt 594.99662 341.39338)
+ (pt 595.12893 341.48179)
+ (pt 595.285 341.51283)
+ (pt 596.535 341.51283)
+ (pt 596.69107 341.48179)
+ (pt 596.82338 341.39338)
+ (pt 596.91179 341.26107)
+ (pt 596.94283 341.105)
+ (pt 596.94283 339.105)
+ (pt 596.91179 338.94893)
+ (pt 596.90982 338.94599)
+ (pt 596.95607 338.93679)
+ (pt 597.08838 338.84838)
+ (pt 597.17679 338.71607)
+ (pt 597.20783 338.56)
+ (pt 597.20783 337.52983)
+ (pt 597.27986 337.4578)
+ (pt 597.28 337.45783)
+ (pt 598.48 337.45783)
+ (pt 598.63607 337.42679)
+ (pt 598.67616 337.4)
+ (pt 599.08384 337.4)
+ (pt 599.12393 337.42679)
+ (pt 599.28 337.45783)
+ (pt 599.73994 337.45783)
+ (pt 599.57222 337.70884)
+ (pt 599.50237 338.06)
+ (pt 599.57222 338.41116)
+ (pt 599.76587 338.70097)
+ (pt 599.62893 338.72821)
+ (pt 599.49662 338.81662)
+ (pt 599.40821 338.94893)
+ (pt 599.37717 339.105)
+ (pt 599.37717 341.105)
+ (pt 599.40821 341.26107)
+ (pt 599.49662 341.39338)
+ (pt 599.62893 341.48179)
+ (pt 599.785 341.51283)
+ (pt 601.035 341.51283)
+ (pt 601.19107 341.48179)
+ (pt 601.32338 341.39338)
+ (pt 601.41179 341.26107)
+ (pt 601.44283 341.105)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.38891 241.97089)
+ (pt 648.19337 241.43337)
+ (pt 648.73089 240.62891)
+ (pt 648.91964 239.68)
+ (pt 648.73089 238.73109)
+ (pt 648.19337 237.92663)
+ (pt 647.38891 237.38911)
+ (pt 646.44 237.20036)
+ (pt 645.49109 237.38911)
+ (pt 644.68663 237.92663)
+ (pt 644.14911 238.73109)
+ (pt 643.96036 239.68)
+ (pt 644.14911 240.62891)
+ (pt 644.68663 241.43337)
+ (pt 645.49109 241.97089)
+ (pt 646.44 242.15964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 615.91358 434.00786)
+ (pt 615.73676 433.74324)
+ (pt 615.47214 433.56642)
+ (pt 615.16 433.50433)
+ (pt 614.84786 433.56642)
+ (pt 614.58324 433.74324)
+ (pt 614.40642 434.00786)
+ (pt 614.34433 434.32)
+ (pt 614.40642 434.63214)
+ (pt 614.58324 434.89676)
+ (pt 614.70285 434.97668)
+ (pt 614.60324 435.04324)
+ (pt 614.42642 435.30786)
+ (pt 614.36433 435.62)
+ (pt 614.42642 435.93214)
+ (pt 614.60324 436.19676)
+ (pt 614.72285 436.27668)
+ (pt 614.62324 436.34324)
+ (pt 614.44642 436.60786)
+ (pt 614.38433 436.92)
+ (pt 614.44642 437.23214)
+ (pt 614.62324 437.49676)
+ (pt 614.72788 437.56668)
+ (pt 614.64324 437.62324)
+ (pt 614.46642 437.88786)
+ (pt 614.40433 438.2)
+ (pt 614.46642 438.51214)
+ (pt 614.64324 438.77676)
+ (pt 614.77781 438.86668)
+ (pt 614.66324 438.94324)
+ (pt 614.48642 439.20786)
+ (pt 614.42433 439.52)
+ (pt 614.48642 439.83214)
+ (pt 614.66324 440.09676)
+ (pt 614.92786 440.27358)
+ (pt 615.24 440.33567)
+ (pt 615.55214 440.27358)
+ (pt 615.81676 440.09676)
+ (pt 615.99358 439.83214)
+ (pt 616.03832 439.60721)
+ (pt 616.04786 439.61358)
+ (pt 616.36 439.67567)
+ (pt 616.67214 439.61358)
+ (pt 616.93676 439.43676)
+ (pt 617.11358 439.17214)
+ (pt 617.17567 438.86)
+ (pt 617.11358 438.54786)
+ (pt 616.93676 438.28324)
+ (pt 616.80715 438.19664)
+ (pt 616.89676 438.13676)
+ (pt 617.07358 437.87214)
+ (pt 617.13567 437.56)
+ (pt 617.07358 437.24786)
+ (pt 616.89676 436.98324)
+ (pt 616.78715 436.91)
+ (pt 616.89676 436.83676)
+ (pt 617.07358 436.57214)
+ (pt 617.13567 436.26)
+ (pt 617.07358 435.94786)
+ (pt 616.89676 435.68324)
+ (pt 616.76715 435.59664)
+ (pt 616.85676 435.53676)
+ (pt 617.03358 435.27214)
+ (pt 617.09567 434.96)
+ (pt 617.03358 434.64786)
+ (pt 616.85676 434.38324)
+ (pt 616.59214 434.20642)
+ (pt 616.28 434.14433)
+ (pt 615.96786 434.20642)
+ (pt 615.95481 434.21514)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.81228 351.46639)
+ (pt 522.66862 351.25138)
+ (pt 522.45361 351.10772)
+ (pt 522.2 351.05727)
+ (pt 521.94639 351.10772)
+ (pt 521.73138 351.25138)
+ (pt 521.69 351.31331)
+ (pt 521.64862 351.25138)
+ (pt 521.43361 351.10772)
+ (pt 521.18 351.05727)
+ (pt 520.92639 351.10772)
+ (pt 520.71138 351.25138)
+ (pt 520.7 351.26841)
+ (pt 520.68862 351.25138)
+ (pt 520.47361 351.10772)
+ (pt 520.22 351.05727)
+ (pt 519.96639 351.10772)
+ (pt 519.75138 351.25138)
+ (pt 519.60772 351.46639)
+ (pt 519.55727 351.72)
+ (pt 519.60772 351.97361)
+ (pt 519.75138 352.18862)
+ (pt 519.77835 352.20664)
+ (pt 519.71138 352.25138)
+ (pt 519.56772 352.46639)
+ (pt 519.51727 352.72)
+ (pt 519.56772 352.97361)
+ (pt 519.71138 353.18862)
+ (pt 519.79331 353.24336)
+ (pt 519.75138 353.27138)
+ (pt 519.60772 353.48639)
+ (pt 519.55727 353.74)
+ (pt 519.60772 353.99361)
+ (pt 519.75138 354.20862)
+ (pt 519.80331 354.24332)
+ (pt 519.73138 354.29138)
+ (pt 519.58772 354.50639)
+ (pt 519.53727 354.76)
+ (pt 519.58772 355.01361)
+ (pt 519.73138 355.22862)
+ (pt 519.77338 355.25668)
+ (pt 519.75138 355.27138)
+ (pt 519.60772 355.48639)
+ (pt 519.55727 355.74)
+ (pt 519.60772 355.99361)
+ (pt 519.75138 356.20862)
+ (pt 519.96639 356.35228)
+ (pt 520.22 356.40273)
+ (pt 520.47361 356.35228)
+ (pt 520.68862 356.20862)
+ (pt 520.73 356.14669)
+ (pt 520.77138 356.20862)
+ (pt 520.98639 356.35228)
+ (pt 521.24 356.40273)
+ (pt 521.49361 356.35228)
+ (pt 521.70862 356.20862)
+ (pt 521.85228 355.99361)
+ (pt 521.90273 355.74)
+ (pt 521.85228 355.48639)
+ (pt 521.70862 355.27138)
+ (pt 521.69159 355.26)
+ (pt 521.70862 355.24862)
+ (pt 521.74668 355.19165)
+ (pt 521.77138 355.22862)
+ (pt 521.98639 355.37228)
+ (pt 522.24 355.42273)
+ (pt 522.49361 355.37228)
+ (pt 522.70862 355.22862)
+ (pt 522.85228 355.01361)
+ (pt 522.90273 354.76)
+ (pt 522.85228 354.50639)
+ (pt 522.70862 354.29138)
+ (pt 522.63669 354.24332)
+ (pt 522.68862 354.20862)
+ (pt 522.83228 353.99361)
+ (pt 522.88273 353.74)
+ (pt 522.83228 353.48639)
+ (pt 522.68862 353.27138)
+ (pt 522.64165 353.24)
+ (pt 522.68862 353.20862)
+ (pt 522.83228 352.99361)
+ (pt 522.88273 352.74)
+ (pt 522.83228 352.48639)
+ (pt 522.68862 352.27138)
+ (pt 522.61669 352.22332)
+ (pt 522.66862 352.18862)
+ (pt 522.81228 351.97361)
+ (pt 522.86273 351.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 523.79228 355.48639)
+ (pt 523.64862 355.27138)
+ (pt 523.43361 355.12772)
+ (pt 523.18 355.07727)
+ (pt 522.92639 355.12772)
+ (pt 522.71138 355.27138)
+ (pt 522.56772 355.48639)
+ (pt 522.51727 355.74)
+ (pt 522.56772 355.99361)
+ (pt 522.71138 356.20862)
+ (pt 522.74031 356.22795)
+ (pt 522.60772 356.42639)
+ (pt 522.55727 356.68)
+ (pt 522.60772 356.93361)
+ (pt 522.75138 357.14862)
+ (pt 522.96639 357.29228)
+ (pt 523.22 357.34273)
+ (pt 523.47361 357.29228)
+ (pt 523.68862 357.14862)
+ (pt 523.83228 356.93361)
+ (pt 523.88273 356.68)
+ (pt 523.83228 356.42639)
+ (pt 523.68862 356.21138)
+ (pt 523.65969 356.19205)
+ (pt 523.79228 355.99361)
+ (pt 523.84273 355.74)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 521.48783 371.34)
+ (pt 521.45679 371.18393)
+ (pt 521.36838 371.05162)
+ (pt 521.23607 370.96321)
+ (pt 521.08 370.93217)
+ (pt 520.08 370.93217)
+ (pt 519.92393 370.96321)
+ (pt 519.79162 371.05162)
+ (pt 519.70321 371.18393)
+ (pt 519.67217 371.34)
+ (pt 519.67217 372.34)
+ (pt 519.70321 372.49607)
+ (pt 519.79162 372.62838)
+ (pt 519.92393 372.71679)
+ (pt 520.08 372.74783)
+ (pt 521.08 372.74783)
+ (pt 521.23607 372.71679)
+ (pt 521.36838 372.62838)
+ (pt 521.45679 372.49607)
+ (pt 521.48783 372.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 523.88783 371.34)
+ (pt 523.85679 371.18393)
+ (pt 523.76838 371.05162)
+ (pt 523.63607 370.96321)
+ (pt 523.48 370.93217)
+ (pt 522.48 370.93217)
+ (pt 522.32393 370.96321)
+ (pt 522.19162 371.05162)
+ (pt 522.10321 371.18393)
+ (pt 522.07217 371.34)
+ (pt 522.07217 372.34)
+ (pt 522.10321 372.49607)
+ (pt 522.19162 372.62838)
+ (pt 522.32393 372.71679)
+ (pt 522.48 372.74783)
+ (pt 523.48 372.74783)
+ (pt 523.63607 372.71679)
+ (pt 523.76838 372.62838)
+ (pt 523.85679 372.49607)
+ (pt 523.88783 372.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.48783 368.54)
+ (pt 522.45679 368.38393)
+ (pt 522.36838 368.25162)
+ (pt 522.23607 368.16321)
+ (pt 522.08 368.13217)
+ (pt 521.08 368.13217)
+ (pt 520.92393 368.16321)
+ (pt 520.79162 368.25162)
+ (pt 520.70321 368.38393)
+ (pt 520.67217 368.54)
+ (pt 520.67217 369.54)
+ (pt 520.70321 369.69607)
+ (pt 520.79162 369.82838)
+ (pt 520.92393 369.91679)
+ (pt 521.08 369.94783)
+ (pt 522.08 369.94783)
+ (pt 522.23607 369.91679)
+ (pt 522.36838 369.82838)
+ (pt 522.45679 369.69607)
+ (pt 522.48783 369.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 523.45358 399.06786)
+ (pt 523.27676 398.80324)
+ (pt 523.01214 398.62642)
+ (pt 522.7 398.56433)
+ (pt 522.38786 398.62642)
+ (pt 522.12324 398.80324)
+ (pt 521.94642 399.06786)
+ (pt 521.88433 399.38)
+ (pt 521.94642 399.69214)
+ (pt 522.12324 399.95676)
+ (pt 522.38786 400.13358)
+ (pt 522.7 400.19567)
+ (pt 523.01214 400.13358)
+ (pt 523.27676 399.95676)
+ (pt 523.45358 399.69214)
+ (pt 523.51567 399.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 531.24778 292.94884)
+ (pt 531.04886 292.65114)
+ (pt 530.75116 292.45222)
+ (pt 530.4 292.38237)
+ (pt 530.04884 292.45222)
+ (pt 529.75114 292.65114)
+ (pt 529.55222 292.94884)
+ (pt 529.48237 293.3)
+ (pt 529.55222 293.65116)
+ (pt 529.75114 293.94886)
+ (pt 530.04884 294.14778)
+ (pt 530.4 294.21763)
+ (pt 530.75116 294.14778)
+ (pt 531.04886 293.94886)
+ (pt 531.24778 293.65116)
+ (pt 531.31763 293.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 410.30654 320.53233)
+ (pt 410.39495 320.40002)
+ (pt 410.42599 320.24395)
+ (pt 410.39495 320.08788)
+ (pt 410.30654 319.95557)
+ (pt 408.89233 318.54136)
+ (pt 408.76002 318.45295)
+ (pt 408.60395 318.42191)
+ (pt 408.44788 318.45295)
+ (pt 408.31557 318.54136)
+ (pt 406.90136 319.95557)
+ (pt 406.81295 320.08788)
+ (pt 406.78191 320.24395)
+ (pt 406.81295 320.40002)
+ (pt 406.90136 320.53233)
+ (pt 408.31557 321.94654)
+ (pt 408.44788 322.03495)
+ (pt 408.60395 322.06599)
+ (pt 408.76002 322.03495)
+ (pt 408.89233 321.94654)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 409.132 325.79369)
+ (pt 408.97321 325.78328)
+ (pt 408.82253 325.83444)
+ (pt 408.70289 325.93936)
+ (pt 408.63251 326.08207)
+ (pt 408.37369 327.048)
+ (pt 408.36328 327.20679)
+ (pt 408.41444 327.35747)
+ (pt 408.51936 327.47711)
+ (pt 408.66207 327.54749)
+ (pt 409.628 327.80631)
+ (pt 409.78679 327.81672)
+ (pt 409.93747 327.76556)
+ (pt 410.05711 327.66064)
+ (pt 410.12749 327.51793)
+ (pt 410.38631 326.552)
+ (pt 410.39672 326.39321)
+ (pt 410.34556 326.24253)
+ (pt 410.24064 326.12289)
+ (pt 410.09793 326.05251)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 419.84243)
+ (pt 639.79438 419.57438)
+ (pt 640.06243 419.17321)
+ (pt 640.15656 418.7)
+ (pt 640.06243 418.22679)
+ (pt 639.79438 417.82562)
+ (pt 639.39321 417.55757)
+ (pt 638.92 417.46344)
+ (pt 638.44679 417.55757)
+ (pt 638.04562 417.82562)
+ (pt 637.77757 418.22679)
+ (pt 637.68344 418.7)
+ (pt 637.77757 419.17321)
+ (pt 638.04562 419.57438)
+ (pt 638.44679 419.84243)
+ (pt 638.92 419.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 412.22243)
+ (pt 639.79438 411.95438)
+ (pt 640.06243 411.55321)
+ (pt 640.15656 411.08)
+ (pt 640.06243 410.60679)
+ (pt 639.79438 410.20562)
+ (pt 639.39321 409.93757)
+ (pt 638.92 409.84344)
+ (pt 638.44679 409.93757)
+ (pt 638.04562 410.20562)
+ (pt 637.77757 410.60679)
+ (pt 637.68344 411.08)
+ (pt 637.77757 411.55321)
+ (pt 638.04562 411.95438)
+ (pt 638.44679 412.22243)
+ (pt 638.92 412.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 404.60243)
+ (pt 639.79438 404.33438)
+ (pt 640.06243 403.93321)
+ (pt 640.15656 403.46)
+ (pt 640.06243 402.98679)
+ (pt 639.79438 402.58562)
+ (pt 639.39321 402.31757)
+ (pt 638.92 402.22344)
+ (pt 638.44679 402.31757)
+ (pt 638.04562 402.58562)
+ (pt 637.77757 402.98679)
+ (pt 637.68344 403.46)
+ (pt 637.77757 403.93321)
+ (pt 638.04562 404.33438)
+ (pt 638.44679 404.60243)
+ (pt 638.92 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.73256 412.54)
+ (pt 624.79162 412.62838)
+ (pt 624.92393 412.71679)
+ (pt 625.08 412.74783)
+ (pt 625.88 412.74783)
+ (pt 626.03607 412.71679)
+ (pt 626.16838 412.62838)
+ (pt 626.1944 412.58944)
+ (pt 626.2 412.58944)
+ (pt 626.65922 412.39922)
+ (pt 626.74101 412.31743)
+ (pt 627.09116 412.24778)
+ (pt 627.38886 412.04886)
+ (pt 627.58778 411.75116)
+ (pt 627.65763 411.4)
+ (pt 627.58778 411.04884)
+ (pt 627.38886 410.75114)
+ (pt 627.09116 410.55222)
+ (pt 626.74 410.48237)
+ (pt 626.38884 410.55222)
+ (pt 626.09114 410.75114)
+ (pt 625.89222 411.04884)
+ (pt 625.87564 411.13217)
+ (pt 625.08 411.13217)
+ (pt 624.92393 411.16321)
+ (pt 624.79162 411.25162)
+ (pt 624.73256 411.34)
+ (pt 624.62744 411.34)
+ (pt 624.56838 411.25162)
+ (pt 624.43607 411.16321)
+ (pt 624.28 411.13217)
+ (pt 624.26038 411.13217)
+ (pt 624.28778 411.09116)
+ (pt 624.35763 410.74)
+ (pt 624.28778 410.38884)
+ (pt 624.08886 410.09114)
+ (pt 623.79116 409.89222)
+ (pt 623.44 409.82237)
+ (pt 623.08884 409.89222)
+ (pt 622.79114 410.09114)
+ (pt 622.59222 410.38884)
+ (pt 622.52237 410.74)
+ (pt 622.59222 411.09116)
+ (pt 622.79114 411.38886)
+ (pt 623.07217 411.57664)
+ (pt 623.07217 412.34)
+ (pt 623.10321 412.49607)
+ (pt 623.19162 412.62838)
+ (pt 623.32393 412.71679)
+ (pt 623.48 412.74783)
+ (pt 624.28 412.74783)
+ (pt 624.43607 412.71679)
+ (pt 624.56838 412.62838)
+ (pt 624.62744 412.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.73256 421.5)
+ (pt 624.79162 421.58838)
+ (pt 624.92393 421.67679)
+ (pt 625.08 421.70783)
+ (pt 625.88 421.70783)
+ (pt 626.03607 421.67679)
+ (pt 626.16838 421.58838)
+ (pt 626.21522 421.51828)
+ (pt 626.59922 421.35922)
+ (pt 626.90101 421.05743)
+ (pt 627.25116 420.98778)
+ (pt 627.54886 420.78886)
+ (pt 627.74778 420.49116)
+ (pt 627.81763 420.14)
+ (pt 627.74778 419.78884)
+ (pt 627.54886 419.49114)
+ (pt 627.25116 419.29222)
+ (pt 626.9 419.22237)
+ (pt 626.54884 419.29222)
+ (pt 626.25114 419.49114)
+ (pt 626.05222 419.78884)
+ (pt 625.98763 420.11358)
+ (pt 625.88 420.09217)
+ (pt 625.08 420.09217)
+ (pt 624.92393 420.12321)
+ (pt 624.79162 420.21162)
+ (pt 624.73256 420.3)
+ (pt 624.62744 420.3)
+ (pt 624.56838 420.21162)
+ (pt 624.43607 420.12321)
+ (pt 624.38016 420.11209)
+ (pt 624.52778 419.89116)
+ (pt 624.59763 419.54)
+ (pt 624.52778 419.18884)
+ (pt 624.32886 418.89114)
+ (pt 624.03116 418.69222)
+ (pt 623.68 418.62237)
+ (pt 623.32884 418.69222)
+ (pt 623.03114 418.89114)
+ (pt 622.83222 419.18884)
+ (pt 622.76237 419.54)
+ (pt 622.83222 419.89116)
+ (pt 623.03114 420.18886)
+ (pt 623.1526 420.27002)
+ (pt 623.10321 420.34393)
+ (pt 623.07217 420.5)
+ (pt 623.07217 421.3)
+ (pt 623.10321 421.45607)
+ (pt 623.19162 421.58838)
+ (pt 623.32393 421.67679)
+ (pt 623.48 421.70783)
+ (pt 624.28 421.70783)
+ (pt 624.43607 421.67679)
+ (pt 624.56838 421.58838)
+ (pt 624.62744 421.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 396.98243)
+ (pt 639.79438 396.71438)
+ (pt 640.06243 396.31321)
+ (pt 640.15656 395.84)
+ (pt 640.06243 395.36679)
+ (pt 639.79438 394.96562)
+ (pt 639.39321 394.69757)
+ (pt 638.92 394.60344)
+ (pt 638.44679 394.69757)
+ (pt 638.04562 394.96562)
+ (pt 637.77757 395.36679)
+ (pt 637.68344 395.84)
+ (pt 637.77757 396.31321)
+ (pt 638.04562 396.71438)
+ (pt 638.44679 396.98243)
+ (pt 638.92 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 389.36243)
+ (pt 639.79438 389.09438)
+ (pt 640.06243 388.69321)
+ (pt 640.15656 388.22)
+ (pt 640.06243 387.74679)
+ (pt 639.79438 387.34562)
+ (pt 639.39321 387.07757)
+ (pt 638.92 386.98344)
+ (pt 638.44679 387.07757)
+ (pt 638.04562 387.34562)
+ (pt 637.77757 387.74679)
+ (pt 637.68344 388.22)
+ (pt 637.77757 388.69321)
+ (pt 638.04562 389.09438)
+ (pt 638.44679 389.36243)
+ (pt 638.92 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 381.74243)
+ (pt 639.79438 381.47438)
+ (pt 640.06243 381.07321)
+ (pt 640.15656 380.6)
+ (pt 640.06243 380.12679)
+ (pt 639.79438 379.72562)
+ (pt 639.39321 379.45757)
+ (pt 638.92 379.36344)
+ (pt 638.44679 379.45757)
+ (pt 638.04562 379.72562)
+ (pt 637.77757 380.12679)
+ (pt 637.68344 380.6)
+ (pt 637.77757 381.07321)
+ (pt 638.04562 381.47438)
+ (pt 638.44679 381.74243)
+ (pt 638.92 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.32778 311.24884)
+ (pt 617.12886 310.95114)
+ (pt 616.83116 310.75222)
+ (pt 616.48 310.68237)
+ (pt 616.12884 310.75222)
+ (pt 615.83114 310.95114)
+ (pt 615.63222 311.24884)
+ (pt 615.56237 311.6)
+ (pt 615.63222 311.95116)
+ (pt 615.83114 312.24886)
+ (pt 616.12884 312.44778)
+ (pt 616.48 312.51763)
+ (pt 616.83116 312.44778)
+ (pt 617.12886 312.24886)
+ (pt 617.32778 311.95116)
+ (pt 617.39763 311.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 322.10243)
+ (pt 642.23438 321.83438)
+ (pt 642.50243 321.43321)
+ (pt 642.59656 320.96)
+ (pt 642.50243 320.48679)
+ (pt 642.23438 320.08562)
+ (pt 641.83321 319.81757)
+ (pt 641.36 319.72344)
+ (pt 640.88679 319.81757)
+ (pt 640.48562 320.08562)
+ (pt 640.21757 320.48679)
+ (pt 640.12344 320.96)
+ (pt 640.21757 321.43321)
+ (pt 640.48562 321.83438)
+ (pt 640.88679 322.10243)
+ (pt 641.36 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 322.10243)
+ (pt 639.69438 321.83438)
+ (pt 639.96243 321.43321)
+ (pt 640.05656 320.96)
+ (pt 639.96243 320.48679)
+ (pt 639.69438 320.08562)
+ (pt 639.29321 319.81757)
+ (pt 638.82 319.72344)
+ (pt 638.34679 319.81757)
+ (pt 637.94562 320.08562)
+ (pt 637.67757 320.48679)
+ (pt 637.58344 320.96)
+ (pt 637.67757 321.43321)
+ (pt 637.94562 321.83438)
+ (pt 638.34679 322.10243)
+ (pt 638.82 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 529.70862 347.27138)
+ (pt 529.49361 347.12772)
+ (pt 529.24 347.07727)
+ (pt 528.98639 347.12772)
+ (pt 528.77138 347.27138)
+ (pt 528.62772 347.48639)
+ (pt 528.57727 347.74)
+ (pt 528.62772 347.99361)
+ (pt 528.77138 348.20862)
+ (pt 528.98639 348.35228)
+ (pt 529.24 348.40273)
+ (pt 529.49361 348.35228)
+ (pt 529.70862 348.20862)
+ (pt 529.72 348.19159)
+ (pt 529.73138 348.20862)
+ (pt 529.94639 348.35228)
+ (pt 530.2 348.40273)
+ (pt 530.45361 348.35228)
+ (pt 530.66862 348.20862)
+ (pt 530.81228 347.99361)
+ (pt 530.86273 347.74)
+ (pt 530.81228 347.48639)
+ (pt 530.66862 347.27138)
+ (pt 530.45361 347.12772)
+ (pt 530.2 347.07727)
+ (pt 529.94639 347.12772)
+ (pt 529.73138 347.27138)
+ (pt 529.72 347.28841)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 291.62243)
+ (pt 642.23438 291.35438)
+ (pt 642.50243 290.95321)
+ (pt 642.59656 290.48)
+ (pt 642.50243 290.00679)
+ (pt 642.23438 289.60562)
+ (pt 641.83321 289.33757)
+ (pt 641.36 289.24344)
+ (pt 640.88679 289.33757)
+ (pt 640.48562 289.60562)
+ (pt 640.21757 290.00679)
+ (pt 640.12344 290.48)
+ (pt 640.21757 290.95321)
+ (pt 640.48562 291.35438)
+ (pt 640.88679 291.62243)
+ (pt 641.36 291.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 284.00243)
+ (pt 642.23438 283.73438)
+ (pt 642.50243 283.33321)
+ (pt 642.59656 282.86)
+ (pt 642.50243 282.38679)
+ (pt 642.23438 281.98562)
+ (pt 641.83321 281.71757)
+ (pt 641.36 281.62344)
+ (pt 640.88679 281.71757)
+ (pt 640.48562 281.98562)
+ (pt 640.21757 282.38679)
+ (pt 640.12344 282.86)
+ (pt 640.21757 283.33321)
+ (pt 640.48562 283.73438)
+ (pt 640.88679 284.00243)
+ (pt 641.36 284.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 291.62243)
+ (pt 639.69438 291.35438)
+ (pt 639.96243 290.95321)
+ (pt 640.05656 290.48)
+ (pt 639.96243 290.00679)
+ (pt 639.69438 289.60562)
+ (pt 639.29321 289.33757)
+ (pt 638.82 289.24344)
+ (pt 638.34679 289.33757)
+ (pt 637.94562 289.60562)
+ (pt 637.67757 290.00679)
+ (pt 637.58344 290.48)
+ (pt 637.67757 290.95321)
+ (pt 637.94562 291.35438)
+ (pt 638.34679 291.62243)
+ (pt 638.82 291.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 532.77228 356.40639)
+ (pt 532.62862 356.19138)
+ (pt 532.41361 356.04772)
+ (pt 532.16 355.99727)
+ (pt 531.90639 356.04772)
+ (pt 531.69138 356.19138)
+ (pt 531.65332 356.24835)
+ (pt 531.62862 356.21138)
+ (pt 531.41361 356.06772)
+ (pt 531.16 356.01727)
+ (pt 530.90639 356.06772)
+ (pt 530.69138 356.21138)
+ (pt 530.54772 356.42639)
+ (pt 530.49727 356.68)
+ (pt 530.54772 356.93361)
+ (pt 530.69138 357.14862)
+ (pt 530.90639 357.29228)
+ (pt 531.16 357.34273)
+ (pt 531.41361 357.29228)
+ (pt 531.62862 357.14862)
+ (pt 531.66668 357.09165)
+ (pt 531.69138 357.12862)
+ (pt 531.90639 357.27228)
+ (pt 532.16 357.32273)
+ (pt 532.41361 357.27228)
+ (pt 532.62862 357.12862)
+ (pt 532.77228 356.91361)
+ (pt 532.82273 356.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 530.77228 355.40639)
+ (pt 530.62862 355.19138)
+ (pt 530.41361 355.04772)
+ (pt 530.16 354.99727)
+ (pt 529.90639 355.04772)
+ (pt 529.69138 355.19138)
+ (pt 529.54772 355.40639)
+ (pt 529.49727 355.66)
+ (pt 529.54772 355.91361)
+ (pt 529.69138 356.12862)
+ (pt 529.90639 356.27228)
+ (pt 530.16 356.32273)
+ (pt 530.41361 356.27228)
+ (pt 530.62862 356.12862)
+ (pt 530.77228 355.91361)
+ (pt 530.82273 355.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 530.33228 358.68639)
+ (pt 530.18862 358.47138)
+ (pt 529.97361 358.32772)
+ (pt 529.72 358.27727)
+ (pt 529.46639 358.32772)
+ (pt 529.25138 358.47138)
+ (pt 529.20332 358.54331)
+ (pt 529.16862 358.49138)
+ (pt 528.95361 358.34772)
+ (pt 528.7 358.29727)
+ (pt 528.44639 358.34772)
+ (pt 528.23138 358.49138)
+ (pt 528.08772 358.70639)
+ (pt 528.03727 358.96)
+ (pt 528.08772 359.21361)
+ (pt 528.23138 359.42862)
+ (pt 528.44639 359.57228)
+ (pt 528.7 359.62273)
+ (pt 528.95361 359.57228)
+ (pt 529.16862 359.42862)
+ (pt 529.21668 359.35669)
+ (pt 529.25138 359.40862)
+ (pt 529.46639 359.55228)
+ (pt 529.72 359.60273)
+ (pt 529.97361 359.55228)
+ (pt 530.18862 359.40862)
+ (pt 530.33228 359.19361)
+ (pt 530.38273 358.94)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 532.27358 401.60786)
+ (pt 532.09676 401.34324)
+ (pt 531.83214 401.16642)
+ (pt 531.52 401.10433)
+ (pt 531.20786 401.16642)
+ (pt 530.94324 401.34324)
+ (pt 530.76642 401.60786)
+ (pt 530.70433 401.92)
+ (pt 530.76642 402.23214)
+ (pt 530.94324 402.49676)
+ (pt 531.20786 402.67358)
+ (pt 531.52 402.73567)
+ (pt 531.83214 402.67358)
+ (pt 532.09676 402.49676)
+ (pt 532.27358 402.23214)
+ (pt 532.33567 401.92)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 429.94778 311.84884)
+ (pt 429.74886 311.55114)
+ (pt 429.45116 311.35222)
+ (pt 429.1 311.28237)
+ (pt 428.74884 311.35222)
+ (pt 428.45114 311.55114)
+ (pt 428.25222 311.84884)
+ (pt 428.18237 312.2)
+ (pt 428.25222 312.55116)
+ (pt 428.45114 312.84886)
+ (pt 428.74884 313.04778)
+ (pt 429.1 313.11763)
+ (pt 429.45116 313.04778)
+ (pt 429.74886 312.84886)
+ (pt 429.94778 312.55116)
+ (pt 430.01763 312.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 540.42778 295.24884)
+ (pt 540.22886 294.95114)
+ (pt 539.93116 294.75222)
+ (pt 539.58 294.68237)
+ (pt 539.22884 294.75222)
+ (pt 538.93114 294.95114)
+ (pt 538.73222 295.24884)
+ (pt 538.66237 295.6)
+ (pt 538.73222 295.95116)
+ (pt 538.93114 296.24886)
+ (pt 539.22884 296.44778)
+ (pt 539.58 296.51763)
+ (pt 539.93116 296.44778)
+ (pt 540.22886 296.24886)
+ (pt 540.42778 295.95116)
+ (pt 540.49763 295.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 447.04778 311.44884)
+ (pt 446.84886 311.15114)
+ (pt 446.55116 310.95222)
+ (pt 446.2 310.88237)
+ (pt 445.84884 310.95222)
+ (pt 445.55114 311.15114)
+ (pt 445.35222 311.44884)
+ (pt 445.28237 311.8)
+ (pt 445.35222 312.15116)
+ (pt 445.55114 312.44886)
+ (pt 445.84884 312.64778)
+ (pt 446.2 312.71763)
+ (pt 446.55116 312.64778)
+ (pt 446.84886 312.44886)
+ (pt 447.04778 312.15116)
+ (pt 447.11763 311.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 444.04778 343.34884)
+ (pt 443.84886 343.05114)
+ (pt 443.55116 342.85222)
+ (pt 443.28863 342.8)
+ (pt 443.55116 342.74778)
+ (pt 443.84886 342.54886)
+ (pt 444.04778 342.25116)
+ (pt 444.11763 341.9)
+ (pt 444.04778 341.54884)
+ (pt 443.84886 341.25114)
+ (pt 443.55116 341.05222)
+ (pt 443.2 340.98237)
+ (pt 442.84884 341.05222)
+ (pt 442.55114 341.25114)
+ (pt 442.35222 341.54884)
+ (pt 442.28237 341.9)
+ (pt 442.35222 342.25116)
+ (pt 442.55114 342.54886)
+ (pt 442.84884 342.74778)
+ (pt 443.11137 342.8)
+ (pt 442.84884 342.85222)
+ (pt 442.55114 343.05114)
+ (pt 442.35222 343.34884)
+ (pt 442.28237 343.7)
+ (pt 442.35222 344.05116)
+ (pt 442.55114 344.34886)
+ (pt 442.84884 344.54778)
+ (pt 443.2 344.61763)
+ (pt 443.55116 344.54778)
+ (pt 443.84886 344.34886)
+ (pt 444.04778 344.05116)
+ (pt 444.11763 343.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.23358 297.18786)
+ (pt 617.05676 296.92324)
+ (pt 617.01708 296.89673)
+ (pt 617.13676 296.81676)
+ (pt 617.31358 296.55214)
+ (pt 617.37567 296.24)
+ (pt 617.31358 295.92786)
+ (pt 617.13676 295.66324)
+ (pt 617.05715 295.61005)
+ (pt 617.19676 295.51676)
+ (pt 617.37358 295.25214)
+ (pt 617.43567 294.94)
+ (pt 617.37358 294.62786)
+ (pt 617.19676 294.36324)
+ (pt 616.93214 294.18642)
+ (pt 616.62 294.12433)
+ (pt 616.31288 294.18542)
+ (pt 616.27358 293.98786)
+ (pt 616.16006 293.81797)
+ (pt 616.46 293.87763)
+ (pt 616.81116 293.80778)
+ (pt 617.10886 293.60886)
+ (pt 617.30778 293.31116)
+ (pt 617.37763 292.96)
+ (pt 617.30778 292.60884)
+ (pt 617.10886 292.31114)
+ (pt 616.81116 292.11222)
+ (pt 616.46 292.04237)
+ (pt 616.10884 292.11222)
+ (pt 615.81114 292.31114)
+ (pt 615.61222 292.60884)
+ (pt 615.54237 292.96)
+ (pt 615.61222 293.31116)
+ (pt 615.7598 293.53203)
+ (pt 615.52 293.48433)
+ (pt 615.20786 293.54642)
+ (pt 614.94324 293.72324)
+ (pt 614.76642 293.98786)
+ (pt 614.70433 294.3)
+ (pt 614.76642 294.61214)
+ (pt 614.94324 294.87676)
+ (pt 615.05285 294.95)
+ (pt 614.94324 295.02324)
+ (pt 614.76642 295.28786)
+ (pt 614.70433 295.6)
+ (pt 614.76642 295.91214)
+ (pt 614.94324 296.17676)
+ (pt 615.07781 296.26668)
+ (pt 614.96324 296.34324)
+ (pt 614.78642 296.60786)
+ (pt 614.72433 296.92)
+ (pt 614.78642 297.23214)
+ (pt 614.96324 297.49676)
+ (pt 615.03795 297.54668)
+ (pt 614.98324 297.58324)
+ (pt 614.80642 297.84786)
+ (pt 614.74433 298.16)
+ (pt 614.80642 298.47214)
+ (pt 614.98324 298.73676)
+ (pt 615.24786 298.91358)
+ (pt 615.56 298.97567)
+ (pt 615.87214 298.91358)
+ (pt 616.13676 298.73676)
+ (pt 616.31358 298.47214)
+ (pt 616.34985 298.28978)
+ (pt 616.48 298.31567)
+ (pt 616.79214 298.25358)
+ (pt 617.05676 298.07676)
+ (pt 617.23358 297.81214)
+ (pt 617.29567 297.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 632.72778 258.72884)
+ (pt 632.52886 258.43114)
+ (pt 632.23116 258.23222)
+ (pt 631.88 258.16237)
+ (pt 631.52884 258.23222)
+ (pt 631.23114 258.43114)
+ (pt 631.03222 258.72884)
+ (pt 630.96237 259.08)
+ (pt 631.03222 259.43116)
+ (pt 631.23114 259.72886)
+ (pt 631.52884 259.92778)
+ (pt 631.88 259.99763)
+ (pt 632.23116 259.92778)
+ (pt 632.52886 259.72886)
+ (pt 632.72778 259.43116)
+ (pt 632.79763 259.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.67256 291.18)
+ (pt 624.73162 291.26838)
+ (pt 624.86393 291.35679)
+ (pt 625.02 291.38783)
+ (pt 625.82 291.38783)
+ (pt 625.97607 291.35679)
+ (pt 626.10838 291.26838)
+ (pt 626.14757 291.20974)
+ (pt 626.55922 291.03922)
+ (pt 626.66101 290.93743)
+ (pt 627.01116 290.86778)
+ (pt 627.30886 290.66886)
+ (pt 627.50778 290.37116)
+ (pt 627.57763 290.02)
+ (pt 627.50778 289.66884)
+ (pt 627.30886 289.37114)
+ (pt 627.01116 289.17222)
+ (pt 626.66 289.10237)
+ (pt 626.30884 289.17222)
+ (pt 626.01114 289.37114)
+ (pt 625.81222 289.66884)
+ (pt 625.79167 289.77217)
+ (pt 625.02 289.77217)
+ (pt 624.86393 289.80321)
+ (pt 624.73162 289.89162)
+ (pt 624.67256 289.98)
+ (pt 624.56744 289.98)
+ (pt 624.50838 289.89162)
+ (pt 624.41078 289.8264)
+ (pt 624.48778 289.71116)
+ (pt 624.55763 289.36)
+ (pt 624.48778 289.00884)
+ (pt 624.28886 288.71114)
+ (pt 623.99116 288.51222)
+ (pt 623.64 288.44237)
+ (pt 623.28884 288.51222)
+ (pt 622.99114 288.71114)
+ (pt 622.79222 289.00884)
+ (pt 622.72237 289.36)
+ (pt 622.79222 289.71116)
+ (pt 622.99114 290.00886)
+ (pt 623.03975 290.04134)
+ (pt 623.01217 290.18)
+ (pt 623.01217 290.98)
+ (pt 623.04321 291.13607)
+ (pt 623.13162 291.26838)
+ (pt 623.26393 291.35679)
+ (pt 623.42 291.38783)
+ (pt 624.22 291.38783)
+ (pt 624.37607 291.35679)
+ (pt 624.50838 291.26838)
+ (pt 624.56744 291.18)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 276.38243)
+ (pt 642.23438 276.11438)
+ (pt 642.50243 275.71321)
+ (pt 642.59656 275.24)
+ (pt 642.50243 274.76679)
+ (pt 642.23438 274.36562)
+ (pt 641.83321 274.09757)
+ (pt 641.36 274.00344)
+ (pt 640.88679 274.09757)
+ (pt 640.48562 274.36562)
+ (pt 640.21757 274.76679)
+ (pt 640.12344 275.24)
+ (pt 640.21757 275.71321)
+ (pt 640.48562 276.11438)
+ (pt 640.88679 276.38243)
+ (pt 641.36 276.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 268.76243)
+ (pt 642.23438 268.49438)
+ (pt 642.50243 268.09321)
+ (pt 642.59656 267.62)
+ (pt 642.50243 267.14679)
+ (pt 642.23438 266.74562)
+ (pt 641.83321 266.47757)
+ (pt 641.36 266.38344)
+ (pt 640.88679 266.47757)
+ (pt 640.48562 266.74562)
+ (pt 640.21757 267.14679)
+ (pt 640.12344 267.62)
+ (pt 640.21757 268.09321)
+ (pt 640.48562 268.49438)
+ (pt 640.88679 268.76243)
+ (pt 641.36 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 548.44783 261.56)
+ (pt 548.41679 261.40393)
+ (pt 548.32838 261.27162)
+ (pt 548.19607 261.18321)
+ (pt 548.04 261.15217)
+ (pt 546.04 261.15217)
+ (pt 545.88393 261.18321)
+ (pt 545.75162 261.27162)
+ (pt 545.66321 261.40393)
+ (pt 545.63217 261.56)
+ (pt 545.63217 263.56)
+ (pt 545.66321 263.71607)
+ (pt 545.75162 263.84838)
+ (pt 545.88393 263.93679)
+ (pt 546.04 263.96783)
+ (pt 548.04 263.96783)
+ (pt 548.19607 263.93679)
+ (pt 548.32838 263.84838)
+ (pt 548.41679 263.71607)
+ (pt 548.44783 263.56)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 548.24778 278.14884)
+ (pt 548.04886 277.85114)
+ (pt 547.75116 277.65222)
+ (pt 547.4 277.58237)
+ (pt 547.04884 277.65222)
+ (pt 546.75114 277.85114)
+ (pt 546.55222 278.14884)
+ (pt 546.48237 278.5)
+ (pt 546.55222 278.85116)
+ (pt 546.75114 279.14886)
+ (pt 547.04884 279.34778)
+ (pt 547.4 279.41763)
+ (pt 547.75116 279.34778)
+ (pt 548.04886 279.14886)
+ (pt 548.24778 278.85116)
+ (pt 548.31763 278.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 545.04778 276.04884)
+ (pt 544.84886 275.75114)
+ (pt 544.55116 275.55222)
+ (pt 544.2 275.48237)
+ (pt 543.84884 275.55222)
+ (pt 543.55114 275.75114)
+ (pt 543.35222 276.04884)
+ (pt 543.28237 276.4)
+ (pt 543.35222 276.75116)
+ (pt 543.55114 277.04886)
+ (pt 543.84884 277.24778)
+ (pt 544.2 277.31763)
+ (pt 544.55116 277.24778)
+ (pt 544.84886 277.04886)
+ (pt 545.04778 276.75116)
+ (pt 545.11763 276.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 546.46778 288.12884)
+ (pt 546.26886 287.83114)
+ (pt 545.97116 287.63222)
+ (pt 545.62 287.56237)
+ (pt 545.26884 287.63222)
+ (pt 544.97114 287.83114)
+ (pt 544.77222 288.12884)
+ (pt 544.70237 288.48)
+ (pt 544.77222 288.83116)
+ (pt 544.97114 289.12886)
+ (pt 545.26884 289.32778)
+ (pt 545.62 289.39763)
+ (pt 545.97116 289.32778)
+ (pt 546.26886 289.12886)
+ (pt 546.46778 288.83116)
+ (pt 546.53763 288.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 542.90778 291.84884)
+ (pt 542.70886 291.55114)
+ (pt 542.41116 291.35222)
+ (pt 542.06 291.28237)
+ (pt 541.70884 291.35222)
+ (pt 541.41114 291.55114)
+ (pt 541.21222 291.84884)
+ (pt 541.14237 292.2)
+ (pt 541.21222 292.55116)
+ (pt 541.41114 292.84886)
+ (pt 541.70884 293.04778)
+ (pt 542.06 293.11763)
+ (pt 542.41116 293.04778)
+ (pt 542.70886 292.84886)
+ (pt 542.90778 292.55116)
+ (pt 542.97763 292.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 544.91228 309.44639)
+ (pt 544.76862 309.23138)
+ (pt 544.55361 309.08772)
+ (pt 544.3 309.03727)
+ (pt 544.04639 309.08772)
+ (pt 543.83138 309.23138)
+ (pt 543.68772 309.44639)
+ (pt 543.63727 309.7)
+ (pt 543.68772 309.95361)
+ (pt 543.83138 310.16862)
+ (pt 544.04639 310.31228)
+ (pt 544.3 310.36273)
+ (pt 544.55361 310.31228)
+ (pt 544.76862 310.16862)
+ (pt 544.91228 309.95361)
+ (pt 544.96273 309.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 479.20783 349.32)
+ (pt 479.17679 349.16393)
+ (pt 479.08838 349.03162)
+ (pt 478.95607 348.94321)
+ (pt 478.8 348.91217)
+ (pt 476.8 348.91217)
+ (pt 476.64393 348.94321)
+ (pt 476.51162 349.03162)
+ (pt 476.42321 349.16393)
+ (pt 476.39217 349.32)
+ (pt 476.39217 351.32)
+ (pt 476.42321 351.47607)
+ (pt 476.51162 351.60838)
+ (pt 476.64393 351.69679)
+ (pt 476.8 351.72783)
+ (pt 477.01243 351.72783)
+ (pt 476.98217 351.88)
+ (pt 476.98217 353.08)
+ (pt 477.01321 353.23607)
+ (pt 477.04 353.27616)
+ (pt 477.04 353.68384)
+ (pt 477.01321 353.72393)
+ (pt 476.98217 353.88)
+ (pt 476.98217 355.08)
+ (pt 477.01321 355.23607)
+ (pt 477.10162 355.36838)
+ (pt 477.23393 355.45679)
+ (pt 477.39 355.48783)
+ (pt 477.51308 355.48783)
+ (pt 477.43222 355.60884)
+ (pt 477.36237 355.96)
+ (pt 477.43222 356.31116)
+ (pt 477.63114 356.60886)
+ (pt 477.92884 356.80778)
+ (pt 478.28 356.87763)
+ (pt 478.63116 356.80778)
+ (pt 478.92886 356.60886)
+ (pt 479.12778 356.31116)
+ (pt 479.19763 355.96)
+ (pt 479.12778 355.60884)
+ (pt 478.97059 355.37359)
+ (pt 478.97838 355.36838)
+ (pt 479.06679 355.23607)
+ (pt 479.09783 355.08)
+ (pt 479.09783 353.88)
+ (pt 479.06679 353.72393)
+ (pt 479.04 353.68384)
+ (pt 479.04 353.27616)
+ (pt 479.06679 353.23607)
+ (pt 479.09783 353.08)
+ (pt 479.09783 351.88)
+ (pt 479.06679 351.72393)
+ (pt 479.02008 351.65402)
+ (pt 479.08838 351.60838)
+ (pt 479.17679 351.47607)
+ (pt 479.20783 351.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 577.27475 298.01475)
+ (pt 577.42169 297.66)
+ (pt 577.42169 272.63913)
+ (pt 577.53228 272.47361)
+ (pt 577.58273 272.22)
+ (pt 577.53228 271.96639)
+ (pt 577.38862 271.75138)
+ (pt 577.17361 271.60772)
+ (pt 576.92 271.55727)
+ (pt 576.82169 271.57683)
+ (pt 576.82169 267.25913)
+ (pt 576.93228 267.09361)
+ (pt 576.98273 266.84)
+ (pt 576.93228 266.58639)
+ (pt 576.78862 266.37138)
+ (pt 576.57361 266.22772)
+ (pt 576.38169 266.18954)
+ (pt 576.38169 266.09913)
+ (pt 576.49228 265.93361)
+ (pt 576.54273 265.68)
+ (pt 576.49228 265.42639)
+ (pt 576.34862 265.21138)
+ (pt 576.13361 265.06772)
+ (pt 575.96169 265.03352)
+ (pt 575.96169 261.42781)
+ (pt 577.72444 259.66506)
+ (pt 577.76751 259.69384)
+ (pt 578.32 259.80374)
+ (pt 578.87249 259.69384)
+ (pt 579.34088 259.38088)
+ (pt 579.65384 258.91249)
+ (pt 579.76374 258.36)
+ (pt 579.65384 257.80751)
+ (pt 579.34088 257.33912)
+ (pt 578.96804 257.09)
+ (pt 579.34088 256.84088)
+ (pt 579.65384 256.37249)
+ (pt 579.76374 255.82)
+ (pt 579.65384 255.26751)
+ (pt 579.34088 254.79912)
+ (pt 578.87249 254.48616)
+ (pt 578.32 254.37626)
+ (pt 577.76751 254.48616)
+ (pt 577.29912 254.79912)
+ (pt 577.05 255.17196)
+ (pt 576.80088 254.79912)
+ (pt 576.33249 254.48616)
+ (pt 575.78 254.37626)
+ (pt 575.22751 254.48616)
+ (pt 574.75912 254.79912)
+ (pt 574.51 255.17196)
+ (pt 574.26088 254.79912)
+ (pt 573.79249 254.48616)
+ (pt 573.24 254.37626)
+ (pt 572.68751 254.48616)
+ (pt 572.21912 254.79912)
+ (pt 571.97 255.17196)
+ (pt 571.72088 254.79912)
+ (pt 571.25249 254.48616)
+ (pt 570.7 254.37626)
+ (pt 570.14751 254.48616)
+ (pt 569.67912 254.79912)
+ (pt 569.43 255.17196)
+ (pt 569.18088 254.79912)
+ (pt 568.71249 254.48616)
+ (pt 568.16 254.37626)
+ (pt 567.60751 254.48616)
+ (pt 567.13912 254.79912)
+ (pt 566.89 255.17196)
+ (pt 566.64088 254.79912)
+ (pt 566.17249 254.48616)
+ (pt 565.62 254.37626)
+ (pt 565.06751 254.48616)
+ (pt 564.59912 254.79912)
+ (pt 564.50383 254.94174)
+ (pt 564.50383 254.804)
+ (pt 564.47279 254.64793)
+ (pt 564.38438 254.51562)
+ (pt 564.25207 254.42721)
+ (pt 564.096 254.39617)
+ (pt 562.064 254.39617)
+ (pt 561.90793 254.42721)
+ (pt 561.77562 254.51562)
+ (pt 561.68721 254.64793)
+ (pt 561.65617 254.804)
+ (pt 561.65617 256.836)
+ (pt 561.68721 256.99207)
+ (pt 561.77562 257.12438)
+ (pt 561.90793 257.21279)
+ (pt 562.064 257.24383)
+ (pt 562.20174 257.24383)
+ (pt 562.05912 257.33912)
+ (pt 561.74616 257.80751)
+ (pt 561.63626 258.36)
+ (pt 561.74616 258.91249)
+ (pt 562.05912 259.38088)
+ (pt 562.52751 259.69384)
+ (pt 562.5388 259.69609)
+ (pt 562.5388 261.04)
+ (pt 562.69731 261.42269)
+ (pt 563.7788 262.50418)
+ (pt 563.7788 264.21001)
+ (pt 563.70772 264.31639)
+ (pt 563.65727 264.57)
+ (pt 563.65727 265.27)
+ (pt 563.70772 265.52361)
+ (pt 563.83894 265.72)
+ (pt 563.70772 265.91639)
+ (pt 563.65727 266.17)
+ (pt 563.65727 266.87)
+ (pt 563.70772 267.12361)
+ (pt 563.75227 267.19029)
+ (pt 563.69114 267.23114)
+ (pt 563.49222 267.52884)
+ (pt 563.42237 267.88)
+ (pt 563.49222 268.23116)
+ (pt 563.69114 268.52886)
+ (pt 563.98884 268.72778)
+ (pt 564.34 268.79763)
+ (pt 564.69116 268.72778)
+ (pt 564.98886 268.52886)
+ (pt 565.18668 268.2328)
+ (pt 565.37114 268.50886)
+ (pt 565.66884 268.70778)
+ (pt 566.02 268.77763)
+ (pt 566.37116 268.70778)
+ (pt 566.66886 268.50886)
+ (pt 566.86778 268.21116)
+ (pt 566.93763 267.86)
+ (pt 566.86778 267.50884)
+ (pt 566.86453 267.50398)
+ (pt 566.97361 267.48228)
+ (pt 567.18862 267.33862)
+ (pt 567.33228 267.12361)
+ (pt 567.38273 266.87)
+ (pt 567.38273 266.17)
+ (pt 567.33228 265.91639)
+ (pt 567.20106 265.72)
+ (pt 567.33228 265.52361)
+ (pt 567.38273 265.27)
+ (pt 567.38273 264.57)
+ (pt 567.33228 264.31639)
+ (pt 567.26688 264.2185)
+ (pt 567.78269 263.70269)
+ (pt 567.9412 263.32)
+ (pt 567.9412 262.16)
+ (pt 567.78269 261.77731)
+ (pt 567.4612 261.45582)
+ (pt 567.4612 259.59608)
+ (pt 567.60751 259.69384)
+ (pt 567.6188 259.69609)
+ (pt 567.6188 260.76)
+ (pt 567.77731 261.14269)
+ (pt 570.0388 263.40418)
+ (pt 570.0388 264.15001)
+ (pt 569.96772 264.25639)
+ (pt 569.91727 264.51)
+ (pt 569.91727 265.21)
+ (pt 569.96772 265.46361)
+ (pt 570.09894 265.66)
+ (pt 569.96772 265.85639)
+ (pt 569.91727 266.11)
+ (pt 569.91727 266.81)
+ (pt 569.96772 267.06361)
+ (pt 570.11138 267.27862)
+ (pt 570.32639 267.42228)
+ (pt 570.58 267.47273)
+ (pt 570.69165 267.45052)
+ (pt 570.54642 267.66786)
+ (pt 570.48433 267.98)
+ (pt 570.54642 268.29214)
+ (pt 570.72324 268.55676)
+ (pt 570.79831 268.60692)
+ (pt 570.79831 290.09219)
+ (pt 570.71313 290.17737)
+ (pt 570.64778 289.84884)
+ (pt 570.44886 289.55114)
+ (pt 570.15116 289.35222)
+ (pt 569.8 289.28237)
+ (pt 569.44884 289.35222)
+ (pt 569.15201 289.55056)
+ (pt 569.08278 289.55056)
+ (pt 569.11273 289.4)
+ (pt 569.06228 289.14639)
+ (pt 568.96447 289.0)
+ (pt 569.06228 288.85361)
+ (pt 569.11273 288.6)
+ (pt 569.06228 288.34639)
+ (pt 568.96447 288.2)
+ (pt 569.06228 288.05361)
+ (pt 569.11273 287.8)
+ (pt 569.06228 287.54639)
+ (pt 568.91862 287.33138)
+ (pt 568.70361 287.18772)
+ (pt 568.45 287.13727)
+ (pt 567.75 287.13727)
+ (pt 567.49639 287.18772)
+ (pt 567.3 287.31894)
+ (pt 567.10361 287.18772)
+ (pt 566.85 287.13727)
+ (pt 566.15 287.13727)
+ (pt 565.89639 287.18772)
+ (pt 565.87101 287.20468)
+ (pt 563.80287 287.20468)
+ (pt 563.78778 287.12884)
+ (pt 563.58886 286.83114)
+ (pt 563.29116 286.63222)
+ (pt 562.94 286.56237)
+ (pt 562.58884 286.63222)
+ (pt 562.29114 286.83114)
+ (pt 562.09222 287.12884)
+ (pt 562.02237 287.48)
+ (pt 562.02249 287.48059)
+ (pt 561.42564 286.88374)
+ (pt 561.60778 286.61116)
+ (pt 561.67763 286.26)
+ (pt 561.60778 285.90884)
+ (pt 561.40886 285.61114)
+ (pt 561.11116 285.41222)
+ (pt 560.76 285.34237)
+ (pt 560.40884 285.41222)
+ (pt 560.11114 285.61114)
+ (pt 559.91222 285.90884)
+ (pt 559.84237 286.26)
+ (pt 559.91222 286.61116)
+ (pt 560.11114 286.90886)
+ (pt 560.16468 286.94463)
+ (pt 560.16468 287.06)
+ (pt 560.33905 287.48095)
+ (pt 561.66278 288.80468)
+ (pt 560.2 288.80468)
+ (pt 559.77905 288.97905)
+ (pt 557.26317 291.49493)
+ (pt 557.2 291.48237)
+ (pt 556.84884 291.55222)
+ (pt 556.55114 291.75114)
+ (pt 556.35222 292.04884)
+ (pt 556.28237 292.4)
+ (pt 556.35222 292.75116)
+ (pt 556.55114 293.04886)
+ (pt 556.84884 293.24778)
+ (pt 557.035 293.28481)
+ (pt 556.99222 293.34884)
+ (pt 556.92237 293.7)
+ (pt 556.99222 294.05116)
+ (pt 557.19114 294.34886)
+ (pt 557.48884 294.54778)
+ (pt 557.84 294.61763)
+ (pt 558.19116 294.54778)
+ (pt 558.48886 294.34886)
+ (pt 558.68778 294.05116)
+ (pt 558.75763 293.7)
+ (pt 558.74507 293.63683)
+ (pt 561.58658 290.79532)
+ (pt 565.87101 290.79532)
+ (pt 565.89639 290.81228)
+ (pt 566.15 290.86273)
+ (pt 566.85 290.86273)
+ (pt 567.10361 290.81228)
+ (pt 567.3 290.68106)
+ (pt 567.49639 290.81228)
+ (pt 567.75 290.86273)
+ (pt 568.45 290.86273)
+ (pt 568.51681 290.84944)
+ (pt 569.15201 290.84944)
+ (pt 569.44884 291.04778)
+ (pt 569.77737 291.11313)
+ (pt 560.94525 299.94525)
+ (pt 560.79831 300.3)
+ (pt 560.79831 302.09219)
+ (pt 556.69415 306.19635)
+ (pt 556.67228 306.08639)
+ (pt 556.52862 305.87138)
+ (pt 556.31361 305.72772)
+ (pt 556.06 305.67727)
+ (pt 555.80639 305.72772)
+ (pt 555.59138 305.87138)
+ (pt 555.44772 306.08639)
+ (pt 555.39727 306.34)
+ (pt 555.44772 306.59361)
+ (pt 555.59138 306.80862)
+ (pt 555.80639 306.95228)
+ (pt 555.91635 306.97415)
+ (pt 549.81756 313.07294)
+ (pt 549.81228 313.04639)
+ (pt 549.66862 312.83138)
+ (pt 549.50869 312.72452)
+ (pt 549.60169 312.5)
+ (pt 549.60169 309.41913)
+ (pt 549.71228 309.25361)
+ (pt 549.76273 309.0)
+ (pt 549.71228 308.74639)
+ (pt 549.56862 308.53138)
+ (pt 549.35361 308.38772)
+ (pt 549.1 308.33727)
+ (pt 548.84639 308.38772)
+ (pt 548.63138 308.53138)
+ (pt 548.48772 308.74639)
+ (pt 548.43727 309.0)
+ (pt 548.48772 309.25361)
+ (pt 548.59831 309.41913)
+ (pt 548.59831 310.65683)
+ (pt 548.5 310.63727)
+ (pt 548.24639 310.68772)
+ (pt 548.03138 310.83138)
+ (pt 547.88772 311.04639)
+ (pt 547.83727 311.3)
+ (pt 547.88772 311.55361)
+ (pt 547.9503 311.64728)
+ (pt 547.9 311.63727)
+ (pt 547.64639 311.68772)
+ (pt 547.43138 311.83138)
+ (pt 547.28772 312.04639)
+ (pt 547.24888 312.24162)
+ (pt 547.05219 312.43831)
+ (pt 546.23522 312.43831)
+ (pt 546.26273 312.3)
+ (pt 546.21228 312.04639)
+ (pt 546.06862 311.83138)
+ (pt 545.94243 311.74707)
+ (pt 546.34503 311.34447)
+ (pt 546.50639 311.45228)
+ (pt 546.76 311.50273)
+ (pt 547.01361 311.45228)
+ (pt 547.22862 311.30862)
+ (pt 547.37228 311.09361)
+ (pt 547.42273 310.84)
+ (pt 547.37228 310.58639)
+ (pt 547.26447 310.42503)
+ (pt 547.33342 310.35608)
+ (pt 547.55361 310.31228)
+ (pt 547.76862 310.16862)
+ (pt 547.91228 309.95361)
+ (pt 547.96273 309.7)
+ (pt 547.91228 309.44639)
+ (pt 547.76862 309.23138)
+ (pt 547.55361 309.08772)
+ (pt 547.3 309.03727)
+ (pt 547.04639 309.08772)
+ (pt 546.83138 309.23138)
+ (pt 546.68772 309.44639)
+ (pt 546.65385 309.61665)
+ (pt 544.09219 312.17831)
+ (pt 543.93522 312.17831)
+ (pt 543.96273 312.04)
+ (pt 543.91228 311.78639)
+ (pt 543.76862 311.57138)
+ (pt 543.55361 311.42772)
+ (pt 543.3 311.37727)
+ (pt 543.04639 311.42772)
+ (pt 542.83138 311.57138)
+ (pt 542.68772 311.78639)
+ (pt 542.63727 312.04)
+ (pt 542.66478 312.17831)
+ (pt 541.92726 312.17831)
+ (pt 541.96273 312.0)
+ (pt 541.91228 311.74639)
+ (pt 541.76862 311.53138)
+ (pt 541.55361 311.38772)
+ (pt 541.3 311.33727)
+ (pt 541.28897 311.33947)
+ (pt 541.22233 311.27283)
+ (pt 541.22862 311.26862)
+ (pt 541.37228 311.05361)
+ (pt 541.42273 310.8)
+ (pt 541.37228 310.54639)
+ (pt 541.24184 310.35116)
+ (pt 541.3 310.36273)
+ (pt 541.55361 310.31228)
+ (pt 541.76862 310.16862)
+ (pt 541.91228 309.95361)
+ (pt 541.96273 309.7)
+ (pt 541.91228 309.44639)
+ (pt 541.76862 309.23138)
+ (pt 541.55361 309.08772)
+ (pt 541.35838 309.04888)
+ (pt 531.63475 299.32525)
+ (pt 531.28 299.17831)
+ (pt 515.84 299.17831)
+ (pt 515.48525 299.32525)
+ (pt 493.04525 321.76525)
+ (pt 492.89831 322.12)
+ (pt 492.89831 323.32087)
+ (pt 492.78772 323.48639)
+ (pt 492.73727 323.74)
+ (pt 492.78772 323.99361)
+ (pt 492.93138 324.20862)
+ (pt 493.14639 324.35228)
+ (pt 493.20299 324.36354)
+ (pt 493.18772 324.38639)
+ (pt 493.13727 324.64)
+ (pt 493.18772 324.89361)
+ (pt 493.33138 325.10862)
+ (pt 493.54639 325.25228)
+ (pt 493.8 325.30273)
+ (pt 494.05361 325.25228)
+ (pt 494.26862 325.10862)
+ (pt 494.3179 325.03487)
+ (pt 494.41475 324.99475)
+ (pt 494.56169 324.64)
+ (pt 494.41475 324.28525)
+ (pt 494.3179 324.24513)
+ (pt 494.30169 324.22087)
+ (pt 494.30169 324.14781)
+ (pt 500.93475 317.51475)
+ (pt 501.08169 317.16)
+ (pt 501.08169 315.54781)
+ (pt 516.16781 300.46169)
+ (pt 518.72881 300.46169)
+ (pt 514.54525 304.64525)
+ (pt 514.39831 305.0)
+ (pt 514.39831 305.51759)
+ (pt 514.35361 305.48772)
+ (pt 514.1 305.43727)
+ (pt 513.84639 305.48772)
+ (pt 513.63138 305.63138)
+ (pt 513.55223 305.74984)
+ (pt 513.4605 305.73159)
+ (pt 511.9365 305.73159)
+ (pt 511.68133 305.78235)
+ (pt 511.465 305.9269)
+ (pt 511.32045 306.14323)
+ (pt 511.26969 306.3984)
+ (pt 511.32045 306.65357)
+ (pt 511.34934 306.69681)
+ (pt 511.2015 306.69681)
+ (pt 510.84675 306.84375)
+ (pt 510.64162 307.04888)
+ (pt 510.44639 307.08772)
+ (pt 510.23138 307.23138)
+ (pt 510.08772 307.44639)
+ (pt 510.03727 307.7)
+ (pt 510.08772 307.95361)
+ (pt 510.23138 308.16862)
+ (pt 510.44639 308.31228)
+ (pt 510.7 308.36273)
+ (pt 510.95361 308.31228)
+ (pt 511.16862 308.16862)
+ (pt 511.27256 308.01305)
+ (pt 511.32045 308.25377)
+ (pt 511.41726 308.39865)
+ (pt 511.32045 308.54353)
+ (pt 511.26969 308.7987)
+ (pt 511.32045 309.05387)
+ (pt 511.41726 309.19875)
+ (pt 511.32045 309.34363)
+ (pt 511.26969 309.5988)
+ (pt 511.32045 309.85397)
+ (pt 511.41726 309.99885)
+ (pt 511.32045 310.14373)
+ (pt 511.26969 310.3989)
+ (pt 511.32045 310.65407)
+ (pt 511.41726 310.79895)
+ (pt 511.32045 310.94383)
+ (pt 511.26969 311.199)
+ (pt 511.32045 311.45417)
+ (pt 511.41726 311.59905)
+ (pt 511.32045 311.74393)
+ (pt 511.26969 311.9991)
+ (pt 511.32045 312.25427)
+ (pt 511.41726 312.39915)
+ (pt 511.32045 312.54403)
+ (pt 511.26969 312.7992)
+ (pt 511.32045 313.05437)
+ (pt 511.41726 313.19925)
+ (pt 511.32045 313.34413)
+ (pt 511.26969 313.5993)
+ (pt 511.32045 313.85447)
+ (pt 511.41726 313.99935)
+ (pt 511.32045 314.14423)
+ (pt 511.26969 314.3994)
+ (pt 511.32045 314.65457)
+ (pt 511.41726 314.79945)
+ (pt 511.32045 314.94433)
+ (pt 511.26969 315.1995)
+ (pt 511.32045 315.45467)
+ (pt 511.38985 315.55853)
+ (pt 511.19214 315.42642)
+ (pt 510.88 315.36433)
+ (pt 510.56786 315.42642)
+ (pt 510.30324 315.60324)
+ (pt 510.12642 315.86786)
+ (pt 510.06433 316.18)
+ (pt 510.12642 316.49214)
+ (pt 510.30324 316.75676)
+ (pt 510.56786 316.93358)
+ (pt 510.88 316.99567)
+ (pt 511.19214 316.93358)
+ (pt 511.2841 316.87213)
+ (pt 511.32045 317.05487)
+ (pt 511.41726 317.19975)
+ (pt 511.32045 317.34463)
+ (pt 511.26969 317.5998)
+ (pt 511.32045 317.85497)
+ (pt 511.41726 317.99985)
+ (pt 511.4127 318.00668)
+ (pt 511.27676 317.80324)
+ (pt 511.01214 317.62642)
+ (pt 510.7 317.56433)
+ (pt 510.38786 317.62642)
+ (pt 510.12324 317.80324)
+ (pt 509.94642 318.06786)
+ (pt 509.88433 318.38)
+ (pt 509.94642 318.69214)
+ (pt 510.12324 318.95676)
+ (pt 510.38786 319.13358)
+ (pt 510.7 319.19567)
+ (pt 511.01214 319.13358)
+ (pt 511.27676 318.95676)
+ (pt 511.3994 318.77322)
+ (pt 511.41726 318.79995)
+ (pt 511.32045 318.94483)
+ (pt 511.26969 319.2)
+ (pt 511.32045 319.45517)
+ (pt 511.41797 319.60112)
+ (pt 511.32195 319.74483)
+ (pt 511.31112 319.79927)
+ (pt 511.1 319.75727)
+ (pt 510.84639 319.80772)
+ (pt 510.63138 319.95138)
+ (pt 510.48772 320.16639)
+ (pt 510.43727 320.42)
+ (pt 510.48772 320.67361)
+ (pt 510.63138 320.88862)
+ (pt 510.84639 321.03228)
+ (pt 511.1 321.08273)
+ (pt 511.31878 321.03921)
+ (pt 511.32195 321.05517)
+ (pt 511.41872 321.2)
+ (pt 511.32195 321.34483)
+ (pt 511.27119 321.6)
+ (pt 511.32195 321.85517)
+ (pt 511.41872 322.0)
+ (pt 511.32195 322.14483)
+ (pt 511.27119 322.4)
+ (pt 511.2717 322.40257)
+ (pt 511.18 322.38433)
+ (pt 510.86786 322.44642)
+ (pt 510.60324 322.62324)
+ (pt 510.42642 322.88786)
+ (pt 510.36433 323.2)
+ (pt 510.42642 323.51214)
+ (pt 510.60324 323.77676)
+ (pt 510.86786 323.95358)
+ (pt 511.18 324.01567)
+ (pt 511.2717 323.99743)
+ (pt 511.27119 324.0)
+ (pt 511.32195 324.25517)
+ (pt 511.41872 324.4)
+ (pt 511.32195 324.54483)
+ (pt 511.27119 324.8)
+ (pt 511.27253 324.80671)
+ (pt 511.16 324.78433)
+ (pt 510.84786 324.84642)
+ (pt 510.58324 325.02324)
+ (pt 510.40642 325.28786)
+ (pt 510.34433 325.6)
+ (pt 510.40642 325.91214)
+ (pt 510.58324 326.17676)
+ (pt 510.84786 326.35358)
+ (pt 511.08122 326.4)
+ (pt 510.84786 326.44642)
+ (pt 510.58324 326.62324)
+ (pt 510.40642 326.88786)
+ (pt 510.34433 327.2)
+ (pt 510.40642 327.51214)
+ (pt 510.58324 327.77676)
+ (pt 510.84786 327.95358)
+ (pt 511.16 328.01567)
+ (pt 511.47214 327.95358)
+ (pt 511.6804 327.81442)
+ (pt 511.68283 327.81605)
+ (pt 511.938 327.86681)
+ (pt 513.462 327.86681)
+ (pt 513.71717 327.81605)
+ (pt 513.9335 327.6715)
+ (pt 514.07805 327.45517)
+ (pt 514.12881 327.2)
+ (pt 514.07805 326.94483)
+ (pt 514.04922 326.90169)
+ (pt 514.16087 326.90169)
+ (pt 514.32639 327.01228)
+ (pt 514.58 327.06273)
+ (pt 514.83361 327.01228)
+ (pt 515.04862 326.86862)
+ (pt 515.19228 326.65361)
+ (pt 515.24273 326.4)
+ (pt 515.19228 326.14639)
+ (pt 515.04862 325.93138)
+ (pt 514.83361 325.78772)
+ (pt 514.58 325.73727)
+ (pt 514.32639 325.78772)
+ (pt 514.16087 325.89831)
+ (pt 514.04922 325.89831)
+ (pt 514.07805 325.85517)
+ (pt 514.12881 325.6)
+ (pt 514.07805 325.34483)
+ (pt 514.04922 325.30169)
+ (pt 516.33094 325.30169)
+ (pt 516.52639 325.43228)
+ (pt 516.78 325.48273)
+ (pt 517.03361 325.43228)
+ (pt 517.24862 325.28862)
+ (pt 517.39228 325.07361)
+ (pt 517.44273 324.82)
+ (pt 517.39228 324.56639)
+ (pt 517.24862 324.35138)
+ (pt 517.03361 324.20772)
+ (pt 516.85255 324.1717)
+ (pt 516.88273 324.02)
+ (pt 516.83228 323.76639)
+ (pt 516.68862 323.55138)
+ (pt 516.47361 323.40772)
+ (pt 516.22 323.35727)
+ (pt 515.96639 323.40772)
+ (pt 515.83081 323.49831)
+ (pt 514.04922 323.49831)
+ (pt 514.07805 323.45517)
+ (pt 514.12881 323.2)
+ (pt 514.07805 322.94483)
+ (pt 514.04922 322.90169)
+ (pt 515.41081 322.90169)
+ (pt 515.54639 322.99228)
+ (pt 515.8 323.04273)
+ (pt 516.05361 322.99228)
+ (pt 516.26862 322.84862)
+ (pt 516.41228 322.63361)
+ (pt 516.46273 322.38)
+ (pt 516.41228 322.12639)
+ (pt 516.26862 321.91138)
+ (pt 516.05361 321.76772)
+ (pt 515.8 321.71727)
+ (pt 515.54639 321.76772)
+ (pt 515.35094 321.89831)
+ (pt 515.16241 321.89831)
+ (pt 515.19228 321.85361)
+ (pt 515.24273 321.6)
+ (pt 515.19228 321.34639)
+ (pt 515.04862 321.13138)
+ (pt 514.83361 320.98772)
+ (pt 514.58 320.93727)
+ (pt 514.32639 320.98772)
+ (pt 514.16087 321.09831)
+ (pt 514.04922 321.09831)
+ (pt 514.07805 321.05517)
+ (pt 514.12881 320.8)
+ (pt 514.07805 320.54483)
+ (pt 514.04922 320.50169)
+ (pt 516.27219 320.50169)
+ (pt 517.02888 321.25838)
+ (pt 517.06772 321.45361)
+ (pt 517.21138 321.66862)
+ (pt 517.42639 321.81228)
+ (pt 517.68 321.86273)
+ (pt 517.93361 321.81228)
+ (pt 518.14862 321.66862)
+ (pt 518.29228 321.45361)
+ (pt 518.34273 321.2)
+ (pt 518.33856 321.17904)
+ (pt 518.57361 321.13228)
+ (pt 518.78862 320.98862)
+ (pt 518.93228 320.77361)
+ (pt 518.98273 320.52)
+ (pt 518.97475 320.4799)
+ (pt 519.11361 320.45228)
+ (pt 519.32862 320.30862)
+ (pt 519.47228 320.09361)
+ (pt 519.52273 319.84)
+ (pt 519.47228 319.58639)
+ (pt 519.32862 319.37138)
+ (pt 519.11361 319.22772)
+ (pt 518.91838 319.18888)
+ (pt 516.97455 317.24505)
+ (pt 516.6198 317.09811)
+ (pt 514.04766 317.09811)
+ (pt 514.07655 317.05487)
+ (pt 514.12731 316.7997)
+ (pt 514.07655 316.54453)
+ (pt 513.97974 316.39965)
+ (pt 514.07655 316.25477)
+ (pt 514.12731 315.9996)
+ (pt 514.07655 315.74443)
+ (pt 514.04766 315.70119)
+ (pt 514.29879 315.70119)
+ (pt 514.3 315.70169)
+ (pt 514.65475 315.55475)
+ (pt 519.25475 310.95475)
+ (pt 519.40169 310.6)
+ (pt 519.40169 308.80781)
+ (pt 519.59702 308.61248)
+ (pt 519.74639 308.71228)
+ (pt 520.0 308.76273)
+ (pt 520.25361 308.71228)
+ (pt 520.41635 308.60355)
+ (pt 520.38772 308.64639)
+ (pt 520.33727 308.9)
+ (pt 520.38772 309.15361)
+ (pt 520.53138 309.36862)
+ (pt 520.74639 309.51228)
+ (pt 521.0 309.56273)
+ (pt 521.17136 309.52864)
+ (pt 521.13727 309.7)
+ (pt 521.18772 309.95361)
+ (pt 521.33138 310.16862)
+ (pt 521.54639 310.31228)
+ (pt 521.6506 310.33301)
+ (pt 521.63727 310.4)
+ (pt 521.68772 310.65361)
+ (pt 521.83138 310.86862)
+ (pt 522.04639 311.01228)
+ (pt 522.3 311.06273)
+ (pt 522.55361 311.01228)
+ (pt 522.76862 310.86862)
+ (pt 522.91228 310.65361)
+ (pt 522.95112 310.45838)
+ (pt 523.30571 310.10379)
+ (pt 523.34797 310.10379)
+ (pt 523.32195 310.14273)
+ (pt 523.27119 310.3979)
+ (pt 523.32195 310.65307)
+ (pt 523.41876 310.79795)
+ (pt 523.32195 310.94283)
+ (pt 523.27119 311.198)
+ (pt 523.32195 311.45317)
+ (pt 523.41876 311.59805)
+ (pt 523.32195 311.74293)
+ (pt 523.27119 311.9981)
+ (pt 523.32195 312.25327)
+ (pt 523.41876 312.39815)
+ (pt 523.32195 312.54303)
+ (pt 523.27119 312.7982)
+ (pt 523.32195 313.05337)
+ (pt 523.41876 313.19825)
+ (pt 523.32195 313.34313)
+ (pt 523.27119 313.5983)
+ (pt 523.32195 313.85347)
+ (pt 523.41876 313.99835)
+ (pt 523.32195 314.14323)
+ (pt 523.27119 314.3984)
+ (pt 523.32195 314.65357)
+ (pt 523.41876 314.79845)
+ (pt 523.32195 314.94333)
+ (pt 523.27119 315.1985)
+ (pt 523.32195 315.45367)
+ (pt 523.41876 315.59855)
+ (pt 523.32195 315.74343)
+ (pt 523.27119 315.9986)
+ (pt 523.30142 316.15056)
+ (pt 523.06681 316.15056)
+ (pt 523.0 316.13727)
+ (pt 522.74639 316.18772)
+ (pt 522.53138 316.33138)
+ (pt 522.38772 316.54639)
+ (pt 522.33727 316.8)
+ (pt 522.38772 317.05361)
+ (pt 522.48277 317.19587)
+ (pt 522.36645 317.24405)
+ (pt 522.04162 317.56888)
+ (pt 521.84639 317.60772)
+ (pt 521.63138 317.75138)
+ (pt 521.59668 317.80331)
+ (pt 521.54862 317.73138)
+ (pt 521.33361 317.58772)
+ (pt 521.08 317.53727)
+ (pt 520.82639 317.58772)
+ (pt 520.61138 317.73138)
+ (pt 520.54 317.83821)
+ (pt 520.46862 317.73138)
+ (pt 520.25361 317.58772)
+ (pt 520.0 317.53727)
+ (pt 519.74639 317.58772)
+ (pt 519.53138 317.73138)
+ (pt 519.38772 317.94639)
+ (pt 519.33727 318.2)
+ (pt 519.38772 318.45361)
+ (pt 519.53138 318.66862)
+ (pt 519.74639 318.81228)
+ (pt 519.94162 318.85112)
+ (pt 521.44435 320.35385)
+ (pt 521.7991 320.50079)
+ (pt 522.71819 320.50079)
+ (pt 522.68772 320.54639)
+ (pt 522.63727 320.8)
+ (pt 522.68772 321.05361)
+ (pt 522.83138 321.26862)
+ (pt 523.04639 321.41228)
+ (pt 523.29842 321.46242)
+ (pt 523.27119 321.5993)
+ (pt 523.32195 321.85447)
+ (pt 523.41876 321.99935)
+ (pt 523.32195 322.14423)
+ (pt 523.27119 322.3994)
+ (pt 523.29867 322.53753)
+ (pt 523.04639 322.58772)
+ (pt 522.83138 322.73138)
+ (pt 522.68772 322.94639)
+ (pt 522.63727 323.2)
+ (pt 522.68772 323.45361)
+ (pt 522.83138 323.66862)
+ (pt 523.04639 323.81228)
+ (pt 523.29848 323.86243)
+ (pt 523.27119 323.9996)
+ (pt 523.32195 324.25477)
+ (pt 523.41876 324.39965)
+ (pt 523.32195 324.54453)
+ (pt 523.27119 324.7997)
+ (pt 523.30262 324.95768)
+ (pt 523.2 324.93727)
+ (pt 522.94639 324.98772)
+ (pt 522.73138 325.13138)
+ (pt 522.58772 325.34639)
+ (pt 522.53727 325.6)
+ (pt 522.58772 325.85361)
+ (pt 522.73138 326.06862)
+ (pt 522.94639 326.21228)
+ (pt 523.2 326.26273)
+ (pt 523.30253 326.24233)
+ (pt 523.27119 326.3999)
+ (pt 523.30258 326.55768)
+ (pt 523.2 326.53727)
+ (pt 522.94639 326.58772)
+ (pt 522.73138 326.73138)
+ (pt 522.58772 326.94639)
+ (pt 522.53727 327.2)
+ (pt 522.58772 327.45361)
+ (pt 522.73138 327.66862)
+ (pt 522.94639 327.81228)
+ (pt 523.2 327.86273)
+ (pt 523.45361 327.81228)
+ (pt 523.47899 327.79532)
+ (pt 523.65181 327.79532)
+ (pt 523.68283 327.81605)
+ (pt 523.938 327.86681)
+ (pt 525.462 327.86681)
+ (pt 525.71717 327.81605)
+ (pt 525.9335 327.6715)
+ (pt 526.07805 327.45517)
+ (pt 526.12881 327.2)
+ (pt 526.10145 327.06244)
+ (pt 526.35361 327.01228)
+ (pt 526.56862 326.86862)
+ (pt 526.71228 326.65361)
+ (pt 526.76273 326.4)
+ (pt 526.71228 326.14639)
+ (pt 526.56862 325.93138)
+ (pt 526.35361 325.78772)
+ (pt 526.10141 325.73755)
+ (pt 526.12881 325.5998)
+ (pt 526.07805 325.34463)
+ (pt 526.04916 325.30139)
+ (pt 526.09949 325.30139)
+ (pt 526.38061 325.30151)
+ (pt 526.54639 325.41228)
+ (pt 526.8 325.46273)
+ (pt 527.05361 325.41228)
+ (pt 527.26862 325.26862)
+ (pt 527.41228 325.05361)
+ (pt 527.46273 324.8)
+ (pt 527.41228 324.54639)
+ (pt 527.26862 324.33138)
+ (pt 527.05361 324.18772)
+ (pt 526.93027 324.16318)
+ (pt 526.96273 324.0)
+ (pt 526.91228 323.74639)
+ (pt 526.76862 323.53138)
+ (pt 526.55361 323.38772)
+ (pt 526.3 323.33727)
+ (pt 526.09322 323.3784)
+ (pt 526.12881 323.1995)
+ (pt 526.0801 322.95462)
+ (pt 526.16639 323.01228)
+ (pt 526.42 323.06273)
+ (pt 526.67361 323.01228)
+ (pt 526.88862 322.86862)
+ (pt 527.03228 322.65361)
+ (pt 527.07112 322.45838)
+ (pt 527.51475 322.01475)
+ (pt 527.66169 321.66)
+ (pt 527.66169 320.24781)
+ (pt 530.14503 317.76447)
+ (pt 530.16828 317.78)
+ (pt 530.09138 317.83138)
+ (pt 529.94772 318.04639)
+ (pt 529.89727 318.3)
+ (pt 529.94772 318.55361)
+ (pt 530.09138 318.76862)
+ (pt 530.13835 318.8)
+ (pt 530.09138 318.83138)
+ (pt 529.94772 319.04639)
+ (pt 529.89727 319.3)
+ (pt 529.94772 319.55361)
+ (pt 530.09138 319.76862)
+ (pt 530.16331 319.81668)
+ (pt 530.11138 319.85138)
+ (pt 529.96772 320.06639)
+ (pt 529.91727 320.32)
+ (pt 529.96772 320.57361)
+ (pt 530.11138 320.78862)
+ (pt 530.13841 320.80668)
+ (pt 530.13138 320.81138)
+ (pt 529.98772 321.02639)
+ (pt 529.93727 321.28)
+ (pt 529.98772 321.53361)
+ (pt 530.13138 321.74862)
+ (pt 530.24331 321.82341)
+ (pt 530.23138 321.83138)
+ (pt 530.08772 322.04639)
+ (pt 530.03727 322.3)
+ (pt 530.08772 322.55361)
+ (pt 530.23138 322.76862)
+ (pt 530.27835 322.8)
+ (pt 530.23138 322.83138)
+ (pt 530.08772 323.04639)
+ (pt 530.03727 323.3)
+ (pt 530.08772 323.55361)
+ (pt 530.23138 323.76862)
+ (pt 530.27835 323.8)
+ (pt 530.23138 323.83138)
+ (pt 530.08772 324.04639)
+ (pt 530.03727 324.3)
+ (pt 530.08772 324.55361)
+ (pt 530.23138 324.76862)
+ (pt 530.27835 324.8)
+ (pt 530.23138 324.83138)
+ (pt 530.08772 325.04639)
+ (pt 530.03727 325.3)
+ (pt 530.08772 325.55361)
+ (pt 530.23138 325.76862)
+ (pt 530.27835 325.8)
+ (pt 530.23138 325.83138)
+ (pt 530.08772 326.04639)
+ (pt 530.03727 326.3)
+ (pt 530.08772 326.55361)
+ (pt 530.23138 326.76862)
+ (pt 530.44639 326.91228)
+ (pt 530.7 326.96273)
+ (pt 530.95361 326.91228)
+ (pt 531.16862 326.76862)
+ (pt 531.31228 326.55361)
+ (pt 531.35112 326.35838)
+ (pt 531.88781 325.82169)
+ (pt 532.14158 325.82169)
+ (pt 532.17493 325.98932)
+ (pt 532.11162 326.03162)
+ (pt 532.02321 326.16393)
+ (pt 531.99217 326.32)
+ (pt 531.99217 327.12)
+ (pt 532.02321 327.27607)
+ (pt 532.11162 327.40838)
+ (pt 532.2 327.46744)
+ (pt 532.2 327.57256)
+ (pt 532.11162 327.63162)
+ (pt 532.02321 327.76393)
+ (pt 531.99217 327.92)
+ (pt 531.99217 328.72)
+ (pt 532.02321 328.87607)
+ (pt 532.11162 329.00838)
+ (pt 532.17142 329.04834)
+ (pt 532.13727 329.22)
+ (pt 532.18772 329.47361)
+ (pt 532.33138 329.68862)
+ (pt 532.54639 329.83228)
+ (pt 532.8 329.88273)
+ (pt 533.05361 329.83228)
+ (pt 533.26862 329.68862)
+ (pt 533.41228 329.47361)
+ (pt 533.46273 329.22)
+ (pt 533.42858 329.04834)
+ (pt 533.48838 329.00838)
+ (pt 533.57679 328.87607)
+ (pt 533.60783 328.72)
+ (pt 533.60783 327.92)
+ (pt 533.57679 327.76393)
+ (pt 533.48838 327.63162)
+ (pt 533.4 327.57256)
+ (pt 533.4 327.46744)
+ (pt 533.48838 327.40838)
+ (pt 533.57679 327.27607)
+ (pt 533.60783 327.12)
+ (pt 533.60783 326.32)
+ (pt 533.57679 326.16393)
+ (pt 533.48838 326.03162)
+ (pt 533.42507 325.98932)
+ (pt 533.45842 325.82169)
+ (pt 546.14158 325.82169)
+ (pt 546.18772 326.05361)
+ (pt 546.33138 326.26862)
+ (pt 546.54639 326.41228)
+ (pt 546.8 326.46273)
+ (pt 547.05361 326.41228)
+ (pt 547.23966 326.28797)
+ (pt 547.23727 326.3)
+ (pt 547.28772 326.55361)
+ (pt 547.43138 326.76862)
+ (pt 547.64639 326.91228)
+ (pt 547.9 326.96273)
+ (pt 548.15361 326.91228)
+ (pt 548.36862 326.76862)
+ (pt 548.51228 326.55361)
+ (pt 548.56273 326.3)
+ (pt 548.51228 326.04639)
+ (pt 548.36862 325.83138)
+ (pt 548.32165 325.8)
+ (pt 548.36862 325.76862)
+ (pt 548.51228 325.55361)
+ (pt 548.56273 325.3)
+ (pt 548.55511 325.26169)
+ (pt 549.82 325.26169)
+ (pt 550.17475 325.11475)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 483.77358 319.04786)
+ (pt 483.59676 318.78324)
+ (pt 483.33214 318.60642)
+ (pt 483.02 318.54433)
+ (pt 482.70786 318.60642)
+ (pt 482.44324 318.78324)
+ (pt 482.26642 319.04786)
+ (pt 482.20433 319.36)
+ (pt 482.26642 319.67214)
+ (pt 482.44324 319.93676)
+ (pt 482.70786 320.11358)
+ (pt 483.02 320.17567)
+ (pt 483.33214 320.11358)
+ (pt 483.59676 319.93676)
+ (pt 483.77358 319.67214)
+ (pt 483.83567 319.36)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 253.52243)
+ (pt 642.23438 253.25438)
+ (pt 642.50243 252.85321)
+ (pt 642.59656 252.38)
+ (pt 642.50243 251.90679)
+ (pt 642.23438 251.50562)
+ (pt 641.83321 251.23757)
+ (pt 641.36 251.14344)
+ (pt 640.88679 251.23757)
+ (pt 640.48562 251.50562)
+ (pt 640.21757 251.90679)
+ (pt 640.12344 252.38)
+ (pt 640.21757 252.85321)
+ (pt 640.48562 253.25438)
+ (pt 640.88679 253.52243)
+ (pt 641.36 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 547.83228 348.06639)
+ (pt 547.68862 347.85138)
+ (pt 547.47361 347.70772)
+ (pt 547.22 347.65727)
+ (pt 546.96639 347.70772)
+ (pt 546.75138 347.85138)
+ (pt 546.60772 348.06639)
+ (pt 546.55727 348.32)
+ (pt 546.60772 348.57361)
+ (pt 546.75138 348.78862)
+ (pt 546.96639 348.93228)
+ (pt 547.22 348.98273)
+ (pt 547.47361 348.93228)
+ (pt 547.68862 348.78862)
+ (pt 547.83228 348.57361)
+ (pt 547.88273 348.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 545.25358 344.68786)
+ (pt 545.07676 344.42324)
+ (pt 544.81214 344.24642)
+ (pt 544.5 344.18433)
+ (pt 544.18786 344.24642)
+ (pt 543.92324 344.42324)
+ (pt 543.74642 344.68786)
+ (pt 543.68433 345.0)
+ (pt 543.74642 345.31214)
+ (pt 543.92324 345.57676)
+ (pt 544.18786 345.75358)
+ (pt 544.5 345.81567)
+ (pt 544.81214 345.75358)
+ (pt 545.07676 345.57676)
+ (pt 545.25358 345.31214)
+ (pt 545.31567 345.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 544.95358 364.38786)
+ (pt 544.77676 364.12324)
+ (pt 544.51214 363.94642)
+ (pt 544.2 363.88433)
+ (pt 543.88786 363.94642)
+ (pt 543.62324 364.12324)
+ (pt 543.44642 364.38786)
+ (pt 543.38433 364.7)
+ (pt 543.44642 365.01214)
+ (pt 543.62324 365.27676)
+ (pt 543.88786 365.45358)
+ (pt 544.2 365.51567)
+ (pt 544.51214 365.45358)
+ (pt 544.77676 365.27676)
+ (pt 544.95358 365.01214)
+ (pt 545.01567 364.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 261.14243)
+ (pt 642.23438 260.87438)
+ (pt 642.50243 260.47321)
+ (pt 642.59656 260.0)
+ (pt 642.50243 259.52679)
+ (pt 642.23438 259.12562)
+ (pt 641.83321 258.85757)
+ (pt 641.36 258.76344)
+ (pt 640.88679 258.85757)
+ (pt 640.48562 259.12562)
+ (pt 640.21757 259.52679)
+ (pt 640.12344 260.0)
+ (pt 640.21757 260.47321)
+ (pt 640.48562 260.87438)
+ (pt 640.88679 261.14243)
+ (pt 641.36 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 261.14243)
+ (pt 639.69438 260.87438)
+ (pt 639.96243 260.47321)
+ (pt 640.05656 260.0)
+ (pt 639.96243 259.52679)
+ (pt 639.69438 259.12562)
+ (pt 639.29321 258.85757)
+ (pt 638.82 258.76344)
+ (pt 638.34679 258.85757)
+ (pt 637.94562 259.12562)
+ (pt 637.67757 259.52679)
+ (pt 637.58344 260.0)
+ (pt 637.67757 260.47321)
+ (pt 637.94562 260.87438)
+ (pt 638.34679 261.14243)
+ (pt 638.82 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 554.28778 278.22884)
+ (pt 554.08886 277.93114)
+ (pt 553.79116 277.73222)
+ (pt 553.44 277.66237)
+ (pt 553.08884 277.73222)
+ (pt 552.79114 277.93114)
+ (pt 552.59222 278.22884)
+ (pt 552.52237 278.58)
+ (pt 552.59222 278.93116)
+ (pt 552.79114 279.22886)
+ (pt 553.08884 279.42778)
+ (pt 553.44 279.49763)
+ (pt 553.79116 279.42778)
+ (pt 554.08886 279.22886)
+ (pt 554.28778 278.93116)
+ (pt 554.35763 278.58)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 554.18778 287.12884)
+ (pt 553.98886 286.83114)
+ (pt 553.69116 286.63222)
+ (pt 553.34 286.56237)
+ (pt 552.98884 286.63222)
+ (pt 552.69114 286.83114)
+ (pt 552.49222 287.12884)
+ (pt 552.42237 287.48)
+ (pt 552.49222 287.83116)
+ (pt 552.69114 288.12886)
+ (pt 552.98884 288.32778)
+ (pt 553.34 288.39763)
+ (pt 553.69116 288.32778)
+ (pt 553.98886 288.12886)
+ (pt 554.18778 287.83116)
+ (pt 554.25763 287.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 554.28778 300.94884)
+ (pt 554.08886 300.65114)
+ (pt 553.79116 300.45222)
+ (pt 553.44 300.38237)
+ (pt 553.08884 300.45222)
+ (pt 552.79114 300.65114)
+ (pt 552.59222 300.94884)
+ (pt 552.52237 301.3)
+ (pt 552.59222 301.65116)
+ (pt 552.79114 301.94886)
+ (pt 553.08884 302.14778)
+ (pt 553.44 302.21763)
+ (pt 553.79116 302.14778)
+ (pt 554.08886 301.94886)
+ (pt 554.28778 301.65116)
+ (pt 554.35763 301.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 491.28 336.48783)
+ (pt 491.43607 336.45679)
+ (pt 491.56838 336.36838)
+ (pt 491.65679 336.23607)
+ (pt 491.68783 336.08)
+ (pt 491.68783 335.08)
+ (pt 491.65679 334.92393)
+ (pt 491.56838 334.79162)
+ (pt 491.43607 334.70321)
+ (pt 491.28 334.67217)
+ (pt 490.28 334.67217)
+ (pt 490.12393 334.70321)
+ (pt 489.99162 334.79162)
+ (pt 489.90321 334.92393)
+ (pt 489.87217 335.08)
+ (pt 489.87217 336.08)
+ (pt 489.90321 336.23607)
+ (pt 489.99162 336.36838)
+ (pt 490.12393 336.45679)
+ (pt 490.28 336.48783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 492.12778 349.52884)
+ (pt 491.92886 349.23114)
+ (pt 491.63116 349.03222)
+ (pt 491.28 348.96237)
+ (pt 490.92884 349.03222)
+ (pt 490.63114 349.23114)
+ (pt 490.43222 349.52884)
+ (pt 490.36237 349.88)
+ (pt 490.43222 350.23116)
+ (pt 490.63114 350.52886)
+ (pt 490.92884 350.72778)
+ (pt 491.28 350.79763)
+ (pt 491.63116 350.72778)
+ (pt 491.92886 350.52886)
+ (pt 492.12778 350.23116)
+ (pt 492.19763 349.88)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 245.90243)
+ (pt 642.23438 245.63438)
+ (pt 642.50243 245.23321)
+ (pt 642.59656 244.76)
+ (pt 642.50243 244.28679)
+ (pt 642.23438 243.88562)
+ (pt 641.83321 243.61757)
+ (pt 641.36 243.52344)
+ (pt 640.88679 243.61757)
+ (pt 640.48562 243.88562)
+ (pt 640.21757 244.28679)
+ (pt 640.12344 244.76)
+ (pt 640.21757 245.23321)
+ (pt 640.48562 245.63438)
+ (pt 640.88679 245.90243)
+ (pt 641.36 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 245.90243)
+ (pt 639.69438 245.63438)
+ (pt 639.96243 245.23321)
+ (pt 640.05656 244.76)
+ (pt 639.96243 244.28679)
+ (pt 639.69438 243.88562)
+ (pt 639.29321 243.61757)
+ (pt 638.82 243.52344)
+ (pt 638.34679 243.61757)
+ (pt 637.94562 243.88562)
+ (pt 637.67757 244.28679)
+ (pt 637.58344 244.76)
+ (pt 637.67757 245.23321)
+ (pt 637.94562 245.63438)
+ (pt 638.34679 245.90243)
+ (pt 638.82 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 626.31358 266.98786)
+ (pt 626.13676 266.72324)
+ (pt 625.87214 266.54642)
+ (pt 625.56 266.48433)
+ (pt 625.24786 266.54642)
+ (pt 624.98324 266.72324)
+ (pt 624.80642 266.98786)
+ (pt 624.74433 267.3)
+ (pt 624.80642 267.61214)
+ (pt 624.98293 267.87629)
+ (pt 624.44 267.87629)
+ (pt 624.16688 267.93062)
+ (pt 623.93533 268.08533)
+ (pt 623.78062 268.31688)
+ (pt 623.72629 268.59)
+ (pt 623.78062 268.86312)
+ (pt 623.93533 269.09467)
+ (pt 624.13039 269.225)
+ (pt 623.93533 269.35533)
+ (pt 623.78062 269.58688)
+ (pt 623.72629 269.86)
+ (pt 623.78062 270.13312)
+ (pt 623.93533 270.36467)
+ (pt 624.13039 270.495)
+ (pt 623.93533 270.62533)
+ (pt 623.78062 270.85688)
+ (pt 623.72629 271.13)
+ (pt 623.78062 271.40312)
+ (pt 623.93533 271.63467)
+ (pt 624.13039 271.765)
+ (pt 623.93533 271.89533)
+ (pt 623.78062 272.12688)
+ (pt 623.72629 272.4)
+ (pt 623.78062 272.67312)
+ (pt 623.93533 272.90467)
+ (pt 624.16688 273.05938)
+ (pt 624.44 273.11371)
+ (pt 625.44 273.11371)
+ (pt 625.71312 273.05938)
+ (pt 625.89 272.9412)
+ (pt 635.01582 272.9412)
+ (pt 636.49731 274.42269)
+ (pt 636.88 274.5812)
+ (pt 637.80158 274.5812)
+ (pt 637.67757 274.76679)
+ (pt 637.58344 275.24)
+ (pt 637.67757 275.71321)
+ (pt 637.94562 276.11438)
+ (pt 638.34679 276.38243)
+ (pt 638.82 276.47656)
+ (pt 639.29321 276.38243)
+ (pt 639.69438 276.11438)
+ (pt 639.96243 275.71321)
+ (pt 640.05656 275.24)
+ (pt 639.96243 274.76679)
+ (pt 639.83842 274.5812)
+ (pt 640.02 274.5812)
+ (pt 640.40269 274.42269)
+ (pt 640.967 273.85838)
+ (pt 641.36 273.93656)
+ (pt 641.83321 273.84243)
+ (pt 642.23438 273.57438)
+ (pt 642.50243 273.17321)
+ (pt 642.59656 272.7)
+ (pt 642.50243 272.22679)
+ (pt 642.23438 271.82562)
+ (pt 641.83321 271.55757)
+ (pt 641.36 271.46344)
+ (pt 640.88679 271.55757)
+ (pt 640.48562 271.82562)
+ (pt 640.21757 272.22679)
+ (pt 640.12344 272.7)
+ (pt 640.20162 273.093)
+ (pt 639.79582 273.4988)
+ (pt 639.74488 273.4988)
+ (pt 639.96243 273.17321)
+ (pt 640.05656 272.7)
+ (pt 639.96243 272.22679)
+ (pt 639.78497 271.9612)
+ (pt 640.1 271.9612)
+ (pt 640.48269 271.80269)
+ (pt 640.967 271.31838)
+ (pt 641.36 271.39656)
+ (pt 641.83321 271.30243)
+ (pt 642.23438 271.03438)
+ (pt 642.50243 270.63321)
+ (pt 642.59656 270.16)
+ (pt 642.50243 269.68679)
+ (pt 642.23438 269.28562)
+ (pt 641.83321 269.01757)
+ (pt 641.36 268.92344)
+ (pt 640.88679 269.01757)
+ (pt 640.48562 269.28562)
+ (pt 640.21757 269.68679)
+ (pt 640.12344 270.16)
+ (pt 640.20162 270.553)
+ (pt 639.87582 270.8788)
+ (pt 639.79833 270.8788)
+ (pt 639.96243 270.63321)
+ (pt 640.05656 270.16)
+ (pt 639.96243 269.68679)
+ (pt 639.69438 269.28562)
+ (pt 639.29321 269.01757)
+ (pt 638.82 268.92344)
+ (pt 638.427 269.00162)
+ (pt 637.63269 268.20731)
+ (pt 637.25 268.0488)
+ (pt 625.89 268.0488)
+ (pt 625.88464 268.04522)
+ (pt 626.13676 267.87676)
+ (pt 626.31358 267.61214)
+ (pt 626.37567 267.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 588.0 382.40783)
+ (pt 588.15607 382.37679)
+ (pt 588.28838 382.28838)
+ (pt 588.37679 382.15607)
+ (pt 588.40783 382.0)
+ (pt 588.40783 381.0)
+ (pt 588.37679 380.84393)
+ (pt 588.28838 380.71162)
+ (pt 588.15607 380.62321)
+ (pt 588.0 380.59217)
+ (pt 587.0 380.59217)
+ (pt 586.84393 380.62321)
+ (pt 586.71162 380.71162)
+ (pt 586.62321 380.84393)
+ (pt 586.59217 381.0)
+ (pt 586.59217 382.0)
+ (pt 586.62321 382.15607)
+ (pt 586.71162 382.28838)
+ (pt 586.84393 382.37679)
+ (pt 587.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 588.32054 352.78144)
+ (pt 588.47997 353.02003)
+ (pt 588.71856 353.17946)
+ (pt 589.0 353.23544)
+ (pt 589.0 353.23543)
+ (pt 605.3 353.23543)
+ (pt 605.3 353.23544)
+ (pt 605.58144 353.17946)
+ (pt 605.82003 353.02003)
+ (pt 605.97946 352.78144)
+ (pt 606.03544 352.5)
+ (pt 606.03543 352.5)
+ (pt 606.03543 351.93806)
+ (pt 606.26 351.98273)
+ (pt 606.51361 351.93228)
+ (pt 606.72862 351.78862)
+ (pt 606.87228 351.57361)
+ (pt 606.92273 351.32)
+ (pt 606.87228 351.06639)
+ (pt 606.72862 350.85138)
+ (pt 606.51361 350.70772)
+ (pt 606.26 350.65727)
+ (pt 606.03543 350.70194)
+ (pt 606.03543 349.43806)
+ (pt 606.26 349.48273)
+ (pt 606.51361 349.43228)
+ (pt 606.72862 349.28862)
+ (pt 606.87228 349.07361)
+ (pt 606.92273 348.82)
+ (pt 606.87228 348.56639)
+ (pt 606.72862 348.35138)
+ (pt 606.51361 348.20772)
+ (pt 606.26 348.15727)
+ (pt 606.03543 348.20194)
+ (pt 606.03543 346.91806)
+ (pt 606.26 346.96273)
+ (pt 606.51361 346.91228)
+ (pt 606.72862 346.76862)
+ (pt 606.87228 346.55361)
+ (pt 606.92273 346.3)
+ (pt 606.87228 346.04639)
+ (pt 606.72862 345.83138)
+ (pt 606.51361 345.68772)
+ (pt 606.26 345.63727)
+ (pt 606.03543 345.68194)
+ (pt 606.03543 343.0)
+ (pt 606.03544 343.0)
+ (pt 605.97946 342.71856)
+ (pt 605.82003 342.47997)
+ (pt 605.58144 342.32054)
+ (pt 605.3 342.26456)
+ (pt 605.3 342.26457)
+ (pt 589.0 342.26457)
+ (pt 589.0 342.26456)
+ (pt 588.71856 342.32054)
+ (pt 588.47997 342.47997)
+ (pt 588.32054 342.71856)
+ (pt 588.26456 343.0)
+ (pt 588.26457 343.0)
+ (pt 588.26457 352.5)
+ (pt 588.26456 352.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.5 382.40783)
+ (pt 595.65607 382.37679)
+ (pt 595.78838 382.28838)
+ (pt 595.87679 382.15607)
+ (pt 595.90783 382.0)
+ (pt 595.90783 381.0)
+ (pt 595.87679 380.84393)
+ (pt 595.78838 380.71162)
+ (pt 595.65607 380.62321)
+ (pt 595.5 380.59217)
+ (pt 594.5 380.59217)
+ (pt 594.34393 380.62321)
+ (pt 594.21162 380.71162)
+ (pt 594.12321 380.84393)
+ (pt 594.09217 381.0)
+ (pt 594.09217 382.0)
+ (pt 594.12321 382.15607)
+ (pt 594.21162 382.28838)
+ (pt 594.34393 382.37679)
+ (pt 594.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 253.52243)
+ (pt 639.69438 253.25438)
+ (pt 639.96243 252.85321)
+ (pt 640.05656 252.38)
+ (pt 639.96243 251.90679)
+ (pt 639.69438 251.50562)
+ (pt 639.29321 251.23757)
+ (pt 638.82 251.14344)
+ (pt 638.34679 251.23757)
+ (pt 637.94562 251.50562)
+ (pt 637.67757 251.90679)
+ (pt 637.58344 252.38)
+ (pt 637.67757 252.85321)
+ (pt 637.94562 253.25438)
+ (pt 638.34679 253.52243)
+ (pt 638.82 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 557.15228 304.54639)
+ (pt 557.00862 304.33138)
+ (pt 556.79361 304.18772)
+ (pt 556.54 304.13727)
+ (pt 556.28639 304.18772)
+ (pt 556.09403 304.31625)
+ (pt 556.05228 304.10639)
+ (pt 555.90862 303.89138)
+ (pt 555.69361 303.74772)
+ (pt 555.44 303.69727)
+ (pt 555.32529 303.72009)
+ (pt 565.95431 293.09107)
+ (pt 566.18884 293.24778)
+ (pt 566.54 293.31763)
+ (pt 566.89116 293.24778)
+ (pt 567.18886 293.04886)
+ (pt 567.38778 292.75116)
+ (pt 567.45763 292.4)
+ (pt 567.38778 292.04884)
+ (pt 567.18886 291.75114)
+ (pt 566.89116 291.55222)
+ (pt 566.54 291.48237)
+ (pt 566.18884 291.55222)
+ (pt 565.89114 291.75114)
+ (pt 565.79594 291.89362)
+ (pt 565.49731 292.01731)
+ (pt 563.74348 293.77114)
+ (pt 563.75763 293.7)
+ (pt 563.68778 293.34884)
+ (pt 563.48886 293.05114)
+ (pt 563.19116 292.85222)
+ (pt 562.84 292.78237)
+ (pt 562.48884 292.85222)
+ (pt 562.25444 293.00885)
+ (pt 562.21607 292.98321)
+ (pt 562.06 292.95217)
+ (pt 561.26 292.95217)
+ (pt 561.10393 292.98321)
+ (pt 560.97162 293.07162)
+ (pt 560.91256 293.16)
+ (pt 560.80744 293.16)
+ (pt 560.74838 293.07162)
+ (pt 560.61607 292.98321)
+ (pt 560.46 292.95217)
+ (pt 559.66 292.95217)
+ (pt 559.50393 292.98321)
+ (pt 559.37162 293.07162)
+ (pt 559.28321 293.20393)
+ (pt 559.25217 293.36)
+ (pt 559.25217 294.16)
+ (pt 559.28321 294.31607)
+ (pt 559.32548 294.37933)
+ (pt 559.21222 294.54884)
+ (pt 559.14237 294.9)
+ (pt 559.21222 295.25116)
+ (pt 559.41114 295.54886)
+ (pt 559.70884 295.74778)
+ (pt 560.06 295.81763)
+ (pt 560.41116 295.74778)
+ (pt 560.70886 295.54886)
+ (pt 560.90778 295.25116)
+ (pt 560.97763 294.9)
+ (pt 560.90778 294.54884)
+ (pt 560.79452 294.37933)
+ (pt 560.80744 294.36)
+ (pt 560.91256 294.36)
+ (pt 560.97162 294.44838)
+ (pt 561.10393 294.53679)
+ (pt 561.26 294.56783)
+ (pt 562.06 294.56783)
+ (pt 562.21607 294.53679)
+ (pt 562.34423 294.45115)
+ (pt 562.48884 294.54778)
+ (pt 562.84 294.61763)
+ (pt 562.91114 294.60348)
+ (pt 557.83408 299.68054)
+ (pt 557.82778 299.64884)
+ (pt 557.62886 299.35114)
+ (pt 557.33116 299.15222)
+ (pt 556.98 299.08237)
+ (pt 556.62884 299.15222)
+ (pt 556.33114 299.35114)
+ (pt 556.13222 299.64884)
+ (pt 556.06237 300.0)
+ (pt 556.13222 300.35116)
+ (pt 556.33114 300.64886)
+ (pt 556.62884 300.84778)
+ (pt 556.66054 300.85408)
+ (pt 554.51186 303.00276)
+ (pt 554.38639 303.02772)
+ (pt 554.17138 303.17138)
+ (pt 554.02772 303.38639)
+ (pt 553.97727 303.64)
+ (pt 554.02772 303.89361)
+ (pt 554.17138 304.10862)
+ (pt 554.38639 304.25228)
+ (pt 554.64 304.30273)
+ (pt 554.79479 304.27194)
+ (pt 554.77727 304.36)
+ (pt 554.82772 304.61361)
+ (pt 554.97138 304.82862)
+ (pt 555.18639 304.97228)
+ (pt 555.44 305.02273)
+ (pt 555.69361 304.97228)
+ (pt 555.88597 304.84375)
+ (pt 555.92772 305.05361)
+ (pt 556.07138 305.26862)
+ (pt 556.28639 305.41228)
+ (pt 556.54 305.46273)
+ (pt 556.79361 305.41228)
+ (pt 557.00862 305.26862)
+ (pt 557.15228 305.05361)
+ (pt 557.20273 304.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 525.96778 387.98884)
+ (pt 525.76886 387.69114)
+ (pt 525.47116 387.49222)
+ (pt 525.12 387.42237)
+ (pt 524.76884 387.49222)
+ (pt 524.47114 387.69114)
+ (pt 524.27222 387.98884)
+ (pt 524.20237 388.34)
+ (pt 524.27222 388.69116)
+ (pt 524.47114 388.98886)
+ (pt 524.76884 389.18778)
+ (pt 525.12 389.25763)
+ (pt 525.47116 389.18778)
+ (pt 525.76886 388.98886)
+ (pt 525.96778 388.69116)
+ (pt 526.03763 388.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 552.83228 347.58639)
+ (pt 552.68862 347.37138)
+ (pt 552.47361 347.22772)
+ (pt 552.22 347.17727)
+ (pt 551.96639 347.22772)
+ (pt 551.75138 347.37138)
+ (pt 551.60772 347.58639)
+ (pt 551.55727 347.84)
+ (pt 551.60772 348.09361)
+ (pt 551.75138 348.30862)
+ (pt 551.96639 348.45228)
+ (pt 552.22 348.50273)
+ (pt 552.47361 348.45228)
+ (pt 552.68862 348.30862)
+ (pt 552.83228 348.09361)
+ (pt 552.88273 347.84)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 549.73228 366.42639)
+ (pt 549.58862 366.21138)
+ (pt 549.47141 366.13306)
+ (pt 549.52 366.14273)
+ (pt 549.77361 366.09228)
+ (pt 549.98862 365.94862)
+ (pt 550.13228 365.73361)
+ (pt 550.18273 365.48)
+ (pt 550.13228 365.22639)
+ (pt 549.98862 365.01138)
+ (pt 549.77361 364.86772)
+ (pt 549.52 364.81727)
+ (pt 549.26639 364.86772)
+ (pt 549.05138 365.01138)
+ (pt 548.90772 365.22639)
+ (pt 548.85727 365.48)
+ (pt 548.90772 365.73361)
+ (pt 549.05138 365.94862)
+ (pt 549.16859 366.02694)
+ (pt 549.12 366.01727)
+ (pt 548.86639 366.06772)
+ (pt 548.65138 366.21138)
+ (pt 548.62332 366.25338)
+ (pt 548.60862 366.23138)
+ (pt 548.39361 366.08772)
+ (pt 548.14 366.03727)
+ (pt 547.88639 366.08772)
+ (pt 547.67138 366.23138)
+ (pt 547.63664 366.28338)
+ (pt 547.62862 366.27138)
+ (pt 547.41361 366.12772)
+ (pt 547.16 366.07727)
+ (pt 546.90639 366.12772)
+ (pt 546.69138 366.27138)
+ (pt 546.54772 366.48639)
+ (pt 546.49727 366.74)
+ (pt 546.54772 366.99361)
+ (pt 546.69138 367.20862)
+ (pt 546.90639 367.35228)
+ (pt 547.16 367.40273)
+ (pt 547.41361 367.35228)
+ (pt 547.62862 367.20862)
+ (pt 547.66336 367.15662)
+ (pt 547.67138 367.16862)
+ (pt 547.88639 367.31228)
+ (pt 548.14 367.36273)
+ (pt 548.39361 367.31228)
+ (pt 548.60862 367.16862)
+ (pt 548.63668 367.12662)
+ (pt 548.65138 367.14862)
+ (pt 548.86639 367.29228)
+ (pt 549.12 367.34273)
+ (pt 549.37361 367.29228)
+ (pt 549.58862 367.14862)
+ (pt 549.73228 366.93361)
+ (pt 549.78273 366.68)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 579.50778 335.32884)
+ (pt 579.30886 335.03114)
+ (pt 579.01116 334.83222)
+ (pt 578.66 334.76237)
+ (pt 578.30884 334.83222)
+ (pt 578.01114 335.03114)
+ (pt 577.81222 335.32884)
+ (pt 577.74237 335.68)
+ (pt 577.81222 336.03116)
+ (pt 578.01114 336.32886)
+ (pt 578.30884 336.52778)
+ (pt 578.66 336.59763)
+ (pt 579.01116 336.52778)
+ (pt 579.30886 336.32886)
+ (pt 579.50778 336.03116)
+ (pt 579.57763 335.68)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.18 350.07727)
+ (pt 525.92639 350.12772)
+ (pt 525.71138 350.27138)
+ (pt 525.56772 350.48639)
+ (pt 525.51727 350.74)
+ (pt 525.56772 350.99361)
+ (pt 525.71138 351.20862)
+ (pt 525.92639 351.35228)
+ (pt 526.18 351.40273)
+ (pt 526.43361 351.35228)
+ (pt 526.64862 351.20862)
+ (pt 526.68 351.16165)
+ (pt 526.71138 351.20862)
+ (pt 526.76331 351.24332)
+ (pt 526.69138 351.29138)
+ (pt 526.54772 351.50639)
+ (pt 526.49727 351.76)
+ (pt 526.54197 351.9847)
+ (pt 526.53162 351.99162)
+ (pt 526.44321 352.12393)
+ (pt 526.41217 352.28)
+ (pt 526.41217 353.04777)
+ (pt 526.24 352.97645)
+ (pt 526.0504 353.05499)
+ (pt 525.98639 353.06772)
+ (pt 525.93211 353.10399)
+ (pt 525.74252 353.18252)
+ (pt 525.66399 353.37211)
+ (pt 525.62772 353.42639)
+ (pt 525.61499 353.4904)
+ (pt 525.53645 353.68)
+ (pt 525.53645 354.1)
+ (pt 525.74252 354.59748)
+ (pt 525.92252 354.77748)
+ (pt 526.42 354.98355)
+ (pt 526.55432 354.98355)
+ (pt 526.66393 355.05679)
+ (pt 526.82 355.08783)
+ (pt 527.62 355.08783)
+ (pt 527.77607 355.05679)
+ (pt 527.90838 354.96838)
+ (pt 527.99679 354.83607)
+ (pt 528.02783 354.68)
+ (pt 528.02783 353.88)
+ (pt 527.99679 353.72393)
+ (pt 527.90838 353.59162)
+ (pt 527.82 353.53256)
+ (pt 527.82 353.42744)
+ (pt 527.90838 353.36838)
+ (pt 527.99679 353.23607)
+ (pt 528.02783 353.08)
+ (pt 528.02783 352.28)
+ (pt 527.99679 352.12393)
+ (pt 527.90838 351.99162)
+ (pt 527.79211 351.91393)
+ (pt 527.82273 351.76)
+ (pt 527.77228 351.50639)
+ (pt 527.62862 351.29138)
+ (pt 527.57669 351.25668)
+ (pt 527.64862 351.20862)
+ (pt 527.68 351.16165)
+ (pt 527.71138 351.20862)
+ (pt 527.92639 351.35228)
+ (pt 528.18 351.40273)
+ (pt 528.43361 351.35228)
+ (pt 528.64862 351.20862)
+ (pt 528.79228 350.99361)
+ (pt 528.84273 350.74)
+ (pt 528.79228 350.48639)
+ (pt 528.64862 350.27138)
+ (pt 528.43361 350.12772)
+ (pt 528.18 350.07727)
+ (pt 527.99302 350.11447)
+ (pt 528.00783 350.04)
+ (pt 528.00783 349.24)
+ (pt 527.97679 349.08393)
+ (pt 527.88838 348.95162)
+ (pt 527.8 348.89256)
+ (pt 527.8 348.78744)
+ (pt 527.88838 348.72838)
+ (pt 527.97679 348.59607)
+ (pt 528.00783 348.44)
+ (pt 528.00783 347.64)
+ (pt 527.97679 347.48393)
+ (pt 527.88838 347.35162)
+ (pt 527.75607 347.26321)
+ (pt 527.6 347.23217)
+ (pt 526.8 347.23217)
+ (pt 526.65421 347.26117)
+ (pt 526.46789 347.18399)
+ (pt 526.41361 347.14772)
+ (pt 526.3496 347.13499)
+ (pt 526.16 347.05645)
+ (pt 525.9704 347.13499)
+ (pt 525.90639 347.14772)
+ (pt 525.85211 347.18399)
+ (pt 525.66252 347.26252)
+ (pt 525.58399 347.45211)
+ (pt 525.54772 347.50639)
+ (pt 525.53499 347.5704)
+ (pt 525.45645 347.76)
+ (pt 525.53499 347.9496)
+ (pt 525.54772 348.01361)
+ (pt 525.58399 348.06789)
+ (pt 525.66252 348.25748)
+ (pt 525.94252 348.53748)
+ (pt 526.44 348.74355)
+ (pt 526.53432 348.74355)
+ (pt 526.6 348.78744)
+ (pt 526.6 348.89256)
+ (pt 526.51162 348.95162)
+ (pt 526.42321 349.08393)
+ (pt 526.39217 349.24)
+ (pt 526.39217 350.04)
+ (pt 526.40863 350.12275)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 525.79228 351.44639)
+ (pt 525.64862 351.23138)
+ (pt 525.43361 351.08772)
+ (pt 525.18 351.03727)
+ (pt 524.95551 351.08193)
+ (pt 524.96783 351.02)
+ (pt 524.96783 350.31257)
+ (pt 525.22 350.36273)
+ (pt 525.47361 350.31228)
+ (pt 525.68862 350.16862)
+ (pt 525.83228 349.95361)
+ (pt 525.88273 349.7)
+ (pt 525.83228 349.44639)
+ (pt 525.68862 349.23138)
+ (pt 525.47361 349.08772)
+ (pt 525.22 349.03727)
+ (pt 524.96639 349.08772)
+ (pt 524.75138 349.23138)
+ (pt 524.67522 349.34536)
+ (pt 524.65748 349.30252)
+ (pt 524.63748 349.28252)
+ (pt 524.44789 349.20399)
+ (pt 524.39361 349.16772)
+ (pt 524.3296 349.15499)
+ (pt 524.14 349.07645)
+ (pt 523.9504 349.15499)
+ (pt 523.88639 349.16772)
+ (pt 523.83211 349.20399)
+ (pt 523.64252 349.28252)
+ (pt 523.56399 349.47211)
+ (pt 523.52772 349.52639)
+ (pt 523.51499 349.5904)
+ (pt 523.43645 349.78)
+ (pt 523.45645 349.82828)
+ (pt 523.45645 349.95432)
+ (pt 523.38321 350.06393)
+ (pt 523.37369 350.11182)
+ (pt 523.2 350.07727)
+ (pt 522.94639 350.12772)
+ (pt 522.73138 350.27138)
+ (pt 522.58772 350.48639)
+ (pt 522.53727 350.74)
+ (pt 522.58772 350.99361)
+ (pt 522.73138 351.20862)
+ (pt 522.94639 351.35228)
+ (pt 523.2 351.40273)
+ (pt 523.45361 351.35228)
+ (pt 523.49547 351.32431)
+ (pt 523.56 351.36744)
+ (pt 523.56 351.47256)
+ (pt 523.47162 351.53162)
+ (pt 523.38321 351.66393)
+ (pt 523.35217 351.82)
+ (pt 523.35217 352.62)
+ (pt 523.38321 352.77607)
+ (pt 523.47162 352.90838)
+ (pt 523.60393 352.99679)
+ (pt 523.76 353.02783)
+ (pt 524.56 353.02783)
+ (pt 524.71607 352.99679)
+ (pt 524.84838 352.90838)
+ (pt 524.93679 352.77607)
+ (pt 524.96783 352.62)
+ (pt 524.96783 352.32052)
+ (pt 525.18 352.36273)
+ (pt 525.43361 352.31228)
+ (pt 525.64862 352.16862)
+ (pt 525.79228 351.95361)
+ (pt 525.84273 351.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 533.60862 343.29138)
+ (pt 533.39361 343.14772)
+ (pt 533.14 343.09727)
+ (pt 532.88639 343.14772)
+ (pt 532.67138 343.29138)
+ (pt 532.52772 343.50639)
+ (pt 532.47727 343.76)
+ (pt 532.52772 344.01361)
+ (pt 532.67138 344.22862)
+ (pt 532.88639 344.37228)
+ (pt 533.14 344.42273)
+ (pt 533.39361 344.37228)
+ (pt 533.59217 344.23961)
+ (pt 533.59217 344.8)
+ (pt 533.62321 344.95607)
+ (pt 533.69645 345.06568)
+ (pt 533.69645 345.26)
+ (pt 533.90252 345.75748)
+ (pt 534.4 345.96355)
+ (pt 534.44 345.96355)
+ (pt 534.6296 345.88501)
+ (pt 534.69361 345.87228)
+ (pt 534.74789 345.83601)
+ (pt 534.93748 345.75748)
+ (pt 535.01601 345.56789)
+ (pt 535.05228 345.51361)
+ (pt 535.06501 345.4496)
+ (pt 535.14355 345.26)
+ (pt 535.10355 345.16343)
+ (pt 535.10355 345.06568)
+ (pt 535.17679 344.95607)
+ (pt 535.20783 344.8)
+ (pt 535.20783 344.0)
+ (pt 535.17679 343.84393)
+ (pt 535.08838 343.71162)
+ (pt 535.0 343.65256)
+ (pt 535.0 343.54744)
+ (pt 535.08838 343.48838)
+ (pt 535.17679 343.35607)
+ (pt 535.20783 343.2)
+ (pt 535.20783 342.4)
+ (pt 535.17679 342.24393)
+ (pt 535.08838 342.11162)
+ (pt 534.95607 342.02321)
+ (pt 534.8 341.99217)
+ (pt 534.0 341.99217)
+ (pt 533.84393 342.02321)
+ (pt 533.71162 342.11162)
+ (pt 533.62321 342.24393)
+ (pt 533.59217 342.4)
+ (pt 533.59217 343.2)
+ (pt 533.61107 343.29505)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 533.45361 357.10772)
+ (pt 533.2 357.05727)
+ (pt 532.94639 357.10772)
+ (pt 532.73138 357.25138)
+ (pt 532.58772 357.46639)
+ (pt 532.53727 357.72)
+ (pt 532.58772 357.97361)
+ (pt 532.73138 358.18862)
+ (pt 532.94639 358.33228)
+ (pt 533.2 358.38273)
+ (pt 533.45361 358.33228)
+ (pt 533.66862 358.18862)
+ (pt 533.6824 358.16799)
+ (pt 533.65217 358.32)
+ (pt 533.65217 359.12)
+ (pt 533.68321 359.27607)
+ (pt 533.77162 359.40838)
+ (pt 533.90393 359.49679)
+ (pt 534.06 359.52783)
+ (pt 534.86 359.52783)
+ (pt 535.01607 359.49679)
+ (pt 535.14838 359.40838)
+ (pt 535.23679 359.27607)
+ (pt 535.26783 359.12)
+ (pt 535.26783 358.32)
+ (pt 535.23679 358.16393)
+ (pt 535.14838 358.03162)
+ (pt 535.06 357.97256)
+ (pt 535.06 357.86744)
+ (pt 535.14838 357.80838)
+ (pt 535.23679 357.67607)
+ (pt 535.26783 357.52)
+ (pt 535.26783 356.72)
+ (pt 535.23679 356.56393)
+ (pt 535.16355 356.45432)
+ (pt 535.16355 356.31657)
+ (pt 535.20355 356.22)
+ (pt 535.12501 356.0304)
+ (pt 535.11228 355.96639)
+ (pt 535.07601 355.91211)
+ (pt 534.99748 355.72252)
+ (pt 534.80789 355.64399)
+ (pt 534.75361 355.60772)
+ (pt 534.6896 355.59499)
+ (pt 534.5 355.51645)
+ (pt 534.3104 355.59499)
+ (pt 534.24639 355.60772)
+ (pt 534.19211 355.64399)
+ (pt 534.00252 355.72252)
+ (pt 533.96252 355.76252)
+ (pt 533.75645 356.26)
+ (pt 533.75645 356.45432)
+ (pt 533.68321 356.56393)
+ (pt 533.65217 356.72)
+ (pt 533.65217 357.24039)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 504.06778 404.06884)
+ (pt 503.86886 403.77114)
+ (pt 503.57116 403.57222)
+ (pt 503.22 403.50237)
+ (pt 502.86884 403.57222)
+ (pt 502.57114 403.77114)
+ (pt 502.37222 404.06884)
+ (pt 502.30237 404.42)
+ (pt 502.37222 404.77116)
+ (pt 502.57114 405.06886)
+ (pt 502.86884 405.26778)
+ (pt 503.22 405.33763)
+ (pt 503.57116 405.26778)
+ (pt 503.86886 405.06886)
+ (pt 504.06778 404.77116)
+ (pt 504.13763 404.42)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 381.4513)
+ (pt 496.5491 381.0709)
+ (pt 496.1687 380.81673)
+ (pt 495.72 380.72748)
+ (pt 495.2713 380.81673)
+ (pt 494.8909 381.0709)
+ (pt 494.63673 381.4513)
+ (pt 494.54748 381.9)
+ (pt 494.63673 382.3487)
+ (pt 494.8909 382.7291)
+ (pt 495.2713 382.98327)
+ (pt 495.72 383.07252)
+ (pt 496.1687 382.98327)
+ (pt 496.5491 382.7291)
+ (pt 496.80327 382.3487)
+ (pt 496.89252 381.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 552.81228 354.54639)
+ (pt 552.66862 354.33138)
+ (pt 552.45361 354.18772)
+ (pt 552.2 354.13727)
+ (pt 551.94639 354.18772)
+ (pt 551.73138 354.33138)
+ (pt 551.58772 354.54639)
+ (pt 551.53727 354.8)
+ (pt 551.58772 355.05361)
+ (pt 551.73138 355.26862)
+ (pt 551.94639 355.41228)
+ (pt 552.2 355.46273)
+ (pt 552.45361 355.41228)
+ (pt 552.66862 355.26862)
+ (pt 552.81228 355.05361)
+ (pt 552.86273 354.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 373.8313)
+ (pt 496.5491 373.4509)
+ (pt 496.1687 373.19673)
+ (pt 495.72 373.10748)
+ (pt 495.2713 373.19673)
+ (pt 494.8909 373.4509)
+ (pt 494.63673 373.8313)
+ (pt 494.54748 374.28)
+ (pt 494.63673 374.7287)
+ (pt 494.8909 375.1091)
+ (pt 495.2713 375.36327)
+ (pt 495.72 375.45252)
+ (pt 496.1687 375.36327)
+ (pt 496.5491 375.1091)
+ (pt 496.80327 374.7287)
+ (pt 496.89252 374.28)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 518.30778 388.12884)
+ (pt 518.10886 387.83114)
+ (pt 517.81116 387.63222)
+ (pt 517.46 387.56237)
+ (pt 517.10884 387.63222)
+ (pt 516.81114 387.83114)
+ (pt 516.61222 388.12884)
+ (pt 516.54237 388.48)
+ (pt 516.61222 388.83116)
+ (pt 516.81114 389.12886)
+ (pt 517.10884 389.32778)
+ (pt 517.46 389.39763)
+ (pt 517.81116 389.32778)
+ (pt 518.10886 389.12886)
+ (pt 518.30778 388.83116)
+ (pt 518.37763 388.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 517.8 357.97217)
+ (pt 517.64393 358.00321)
+ (pt 517.51162 358.09162)
+ (pt 517.42321 358.22393)
+ (pt 517.39217 358.38)
+ (pt 517.39217 359.18)
+ (pt 517.42321 359.33607)
+ (pt 517.51162 359.46838)
+ (pt 517.64393 359.55679)
+ (pt 517.8 359.58783)
+ (pt 518.6 359.58783)
+ (pt 518.75607 359.55679)
+ (pt 518.88838 359.46838)
+ (pt 518.94744 359.38)
+ (pt 519.05256 359.38)
+ (pt 519.11162 359.46838)
+ (pt 519.24393 359.55679)
+ (pt 519.4 359.58783)
+ (pt 520.2 359.58783)
+ (pt 520.35607 359.55679)
+ (pt 520.48838 359.46838)
+ (pt 520.49161 359.46355)
+ (pt 520.7 359.46355)
+ (pt 520.8896 359.38501)
+ (pt 520.95361 359.37228)
+ (pt 521.00789 359.33601)
+ (pt 521.19748 359.25748)
+ (pt 521.27601 359.06789)
+ (pt 521.31228 359.01361)
+ (pt 521.32501 358.9496)
+ (pt 521.40355 358.76)
+ (pt 521.32501 358.5704)
+ (pt 521.31228 358.50639)
+ (pt 521.27601 358.45211)
+ (pt 521.19748 358.26252)
+ (pt 521.00789 358.18399)
+ (pt 520.95361 358.14772)
+ (pt 520.8896 358.13499)
+ (pt 520.7 358.05645)
+ (pt 520.43575 358.05645)
+ (pt 520.35607 358.00321)
+ (pt 520.2 357.97217)
+ (pt 519.81257 357.97217)
+ (pt 519.86273 357.72)
+ (pt 519.81228 357.46639)
+ (pt 519.66862 357.25138)
+ (pt 519.45361 357.10772)
+ (pt 519.2 357.05727)
+ (pt 518.94639 357.10772)
+ (pt 518.73138 357.25138)
+ (pt 518.58772 357.46639)
+ (pt 518.53727 357.72)
+ (pt 518.58743 357.97217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 517.54 342.01217)
+ (pt 517.38393 342.04321)
+ (pt 517.25162 342.13162)
+ (pt 517.16321 342.26393)
+ (pt 517.13217 342.42)
+ (pt 517.13217 343.22)
+ (pt 517.16321 343.37607)
+ (pt 517.25162 343.50838)
+ (pt 517.34 343.56744)
+ (pt 517.34 343.67256)
+ (pt 517.25162 343.73162)
+ (pt 517.16321 343.86393)
+ (pt 517.13217 344.02)
+ (pt 517.13217 344.82)
+ (pt 517.16321 344.97607)
+ (pt 517.23645 345.08568)
+ (pt 517.23645 345.18)
+ (pt 517.44252 345.67748)
+ (pt 517.48252 345.71748)
+ (pt 517.67211 345.79601)
+ (pt 517.72639 345.83228)
+ (pt 517.7904 345.84501)
+ (pt 517.98 345.92355)
+ (pt 518.1696 345.84501)
+ (pt 518.23361 345.83228)
+ (pt 518.28789 345.79601)
+ (pt 518.47748 345.71748)
+ (pt 518.55601 345.52789)
+ (pt 518.59228 345.47361)
+ (pt 518.60501 345.4096)
+ (pt 518.68355 345.22)
+ (pt 518.64355 345.12343)
+ (pt 518.64355 345.08568)
+ (pt 518.71679 344.97607)
+ (pt 518.74783 344.82)
+ (pt 518.74783 344.19337)
+ (pt 518.77138 344.22862)
+ (pt 518.98639 344.37228)
+ (pt 519.24 344.42273)
+ (pt 519.49361 344.37228)
+ (pt 519.70862 344.22862)
+ (pt 519.85228 344.01361)
+ (pt 519.90273 343.76)
+ (pt 519.85228 343.50639)
+ (pt 519.70862 343.29138)
+ (pt 519.49361 343.14772)
+ (pt 519.24 343.09727)
+ (pt 518.98639 343.14772)
+ (pt 518.77138 343.29138)
+ (pt 518.71764 343.37182)
+ (pt 518.74783 343.22)
+ (pt 518.74783 342.42)
+ (pt 518.71679 342.26393)
+ (pt 518.62838 342.13162)
+ (pt 518.49607 342.04321)
+ (pt 518.34 342.01217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 502.87162 358.16838)
+ (pt 503.00393 358.25679)
+ (pt 503.16 358.28783)
+ (pt 503.96 358.28783)
+ (pt 504.11607 358.25679)
+ (pt 504.17622 358.2166)
+ (pt 504.21114 358.26886)
+ (pt 504.50884 358.46778)
+ (pt 504.86 358.53763)
+ (pt 505.21116 358.46778)
+ (pt 505.50886 358.26886)
+ (pt 505.70778 357.97116)
+ (pt 505.77763 357.62)
+ (pt 505.70778 357.26884)
+ (pt 505.50886 356.97114)
+ (pt 505.25267 356.79995)
+ (pt 505.44886 356.66886)
+ (pt 505.64778 356.37116)
+ (pt 505.71763 356.02)
+ (pt 505.64778 355.66884)
+ (pt 505.44886 355.37114)
+ (pt 505.20783 355.21009)
+ (pt 505.20783 354.05)
+ (pt 505.17679 353.89393)
+ (pt 505.08838 353.76162)
+ (pt 505.02693 353.72056)
+ (pt 505.09116 353.70778)
+ (pt 505.38886 353.50886)
+ (pt 505.58778 353.21116)
+ (pt 505.65763 352.86)
+ (pt 505.58778 352.50884)
+ (pt 505.38886 352.21114)
+ (pt 505.09116 352.01222)
+ (pt 504.74 351.94237)
+ (pt 504.38884 352.01222)
+ (pt 504.09114 352.21114)
+ (pt 503.89222 352.50884)
+ (pt 503.82237 352.86)
+ (pt 503.89222 353.21116)
+ (pt 504.09114 353.50886)
+ (pt 504.29065 353.64217)
+ (pt 503.6 353.64217)
+ (pt 503.44393 353.67321)
+ (pt 503.40384 353.7)
+ (pt 502.99616 353.7)
+ (pt 502.95607 353.67321)
+ (pt 502.8 353.64217)
+ (pt 501.6 353.64217)
+ (pt 501.44393 353.67321)
+ (pt 501.31162 353.76162)
+ (pt 501.22321 353.89393)
+ (pt 501.19217 354.05)
+ (pt 501.19217 355.35)
+ (pt 501.2121 355.45022)
+ (pt 501.03114 355.57114)
+ (pt 500.83222 355.86884)
+ (pt 500.76237 356.22)
+ (pt 500.83222 356.57116)
+ (pt 501.03114 356.86886)
+ (pt 501.17504 356.96501)
+ (pt 501.15217 357.08)
+ (pt 501.15217 357.88)
+ (pt 501.18321 358.03607)
+ (pt 501.27162 358.16838)
+ (pt 501.40393 358.25679)
+ (pt 501.56 358.28783)
+ (pt 502.36 358.28783)
+ (pt 502.51607 358.25679)
+ (pt 502.64838 358.16838)
+ (pt 502.70744 358.08)
+ (pt 502.81256 358.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 503.32778 319.42884)
+ (pt 503.12886 319.13114)
+ (pt 502.83116 318.93222)
+ (pt 502.48 318.86237)
+ (pt 502.12884 318.93222)
+ (pt 501.83114 319.13114)
+ (pt 501.63222 319.42884)
+ (pt 501.56237 319.78)
+ (pt 501.63222 320.13116)
+ (pt 501.63601 320.13683)
+ (pt 501.60393 320.14321)
+ (pt 501.47162 320.23162)
+ (pt 501.41256 320.32)
+ (pt 501.30744 320.32)
+ (pt 501.24838 320.23162)
+ (pt 501.11607 320.14321)
+ (pt 500.96 320.11217)
+ (pt 500.30038 320.11217)
+ (pt 500.28778 320.04884)
+ (pt 500.08886 319.75114)
+ (pt 499.79116 319.55222)
+ (pt 499.44 319.48237)
+ (pt 499.08884 319.55222)
+ (pt 498.79114 319.75114)
+ (pt 498.59222 320.04884)
+ (pt 498.52237 320.4)
+ (pt 498.59222 320.75116)
+ (pt 498.79114 321.04886)
+ (pt 499.08884 321.24778)
+ (pt 499.43899 321.31743)
+ (pt 499.50078 321.37922)
+ (pt 499.80182 321.50392)
+ (pt 499.87162 321.60838)
+ (pt 500.00393 321.69679)
+ (pt 500.16 321.72783)
+ (pt 500.96 321.72783)
+ (pt 501.11607 321.69679)
+ (pt 501.24838 321.60838)
+ (pt 501.30744 321.52)
+ (pt 501.41256 321.52)
+ (pt 501.47162 321.60838)
+ (pt 501.60393 321.69679)
+ (pt 501.76 321.72783)
+ (pt 502.56 321.72783)
+ (pt 502.71607 321.69679)
+ (pt 502.84838 321.60838)
+ (pt 502.93679 321.47607)
+ (pt 502.96783 321.32)
+ (pt 502.96783 320.53646)
+ (pt 503.12886 320.42886)
+ (pt 503.32778 320.13116)
+ (pt 503.39763 319.78)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.09116 326.35222)
+ (pt 495.74 326.28237)
+ (pt 495.38884 326.35222)
+ (pt 495.09114 326.55114)
+ (pt 494.89222 326.84884)
+ (pt 494.82237 327.2)
+ (pt 494.89222 327.55116)
+ (pt 495.09114 327.84886)
+ (pt 495.38884 328.04778)
+ (pt 495.74 328.11763)
+ (pt 496.09116 328.04778)
+ (pt 496.38886 327.84886)
+ (pt 496.58778 327.55116)
+ (pt 496.62027 327.38783)
+ (pt 497.3 327.38783)
+ (pt 497.45607 327.35679)
+ (pt 497.58838 327.26838)
+ (pt 497.67679 327.13607)
+ (pt 497.70783 326.98)
+ (pt 497.70783 326.18)
+ (pt 497.67679 326.02393)
+ (pt 497.58838 325.89162)
+ (pt 497.5 325.83256)
+ (pt 497.5 325.72744)
+ (pt 497.58838 325.66838)
+ (pt 497.67679 325.53607)
+ (pt 497.70783 325.38)
+ (pt 497.70783 324.58)
+ (pt 497.67679 324.42393)
+ (pt 497.58838 324.29162)
+ (pt 497.45607 324.20321)
+ (pt 497.3 324.17217)
+ (pt 496.59618 324.17217)
+ (pt 496.54778 323.92884)
+ (pt 496.34886 323.63114)
+ (pt 496.05116 323.43222)
+ (pt 495.7 323.36237)
+ (pt 495.34884 323.43222)
+ (pt 495.05114 323.63114)
+ (pt 494.85222 323.92884)
+ (pt 494.78237 324.28)
+ (pt 494.85222 324.63116)
+ (pt 495.05114 324.92886)
+ (pt 495.34884 325.12778)
+ (pt 495.69899 325.19743)
+ (pt 495.94078 325.43922)
+ (pt 496.1186 325.51288)
+ (pt 496.12321 325.53607)
+ (pt 496.21162 325.66838)
+ (pt 496.3 325.72744)
+ (pt 496.3 325.83256)
+ (pt 496.21162 325.89162)
+ (pt 496.12321 326.02393)
+ (pt 496.09217 326.18)
+ (pt 496.09217 326.35289)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.71037 388.91179)
+ (pt 496.44515 388.51485)
+ (pt 496.04821 388.24963)
+ (pt 495.58 388.1565)
+ (pt 495.11179 388.24963)
+ (pt 494.71485 388.51485)
+ (pt 494.44963 388.91179)
+ (pt 494.3565 389.38)
+ (pt 494.44963 389.84821)
+ (pt 494.71485 390.24515)
+ (pt 495.11179 390.51037)
+ (pt 495.58 390.6035)
+ (pt 496.04821 390.51037)
+ (pt 496.44515 390.24515)
+ (pt 496.71037 389.84821)
+ (pt 496.8035 389.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 480.85447 410.19067)
+ (pt 480.89358 410.13214)
+ (pt 480.95567 409.82)
+ (pt 480.89358 409.50786)
+ (pt 480.71676 409.24324)
+ (pt 480.45214 409.06642)
+ (pt 480.14 409.00433)
+ (pt 479.82786 409.06642)
+ (pt 479.56324 409.24324)
+ (pt 479.38642 409.50786)
+ (pt 479.32433 409.82)
+ (pt 479.38642 410.13214)
+ (pt 479.42553 410.19067)
+ (pt 479.36321 410.28393)
+ (pt 479.33217 410.44)
+ (pt 479.33217 410.82008)
+ (pt 479.13214 410.68642)
+ (pt 478.82 410.62433)
+ (pt 478.50786 410.68642)
+ (pt 478.24324 410.86324)
+ (pt 478.06642 411.12786)
+ (pt 478.00433 411.44)
+ (pt 478.06642 411.75214)
+ (pt 478.24324 412.01676)
+ (pt 478.50786 412.19358)
+ (pt 478.82 412.25567)
+ (pt 479.13214 412.19358)
+ (pt 479.39676 412.01676)
+ (pt 479.57358 411.75214)
+ (pt 479.59987 411.61996)
+ (pt 479.74 411.64783)
+ (pt 480.54 411.64783)
+ (pt 480.69607 411.61679)
+ (pt 480.82838 411.52838)
+ (pt 480.88744 411.44)
+ (pt 480.99256 411.44)
+ (pt 481.05162 411.52838)
+ (pt 481.14468 411.59056)
+ (pt 481.14468 411.90944)
+ (pt 481.05162 411.97162)
+ (pt 480.96321 412.10393)
+ (pt 480.93217 412.26)
+ (pt 480.93217 413.06)
+ (pt 480.96321 413.21607)
+ (pt 481.05162 413.34838)
+ (pt 481.14 413.40744)
+ (pt 481.14 413.51256)
+ (pt 481.05162 413.57162)
+ (pt 480.96321 413.70393)
+ (pt 480.93217 413.86)
+ (pt 480.93217 414.66)
+ (pt 480.96321 414.81607)
+ (pt 481.05162 414.94838)
+ (pt 481.14468 415.01056)
+ (pt 481.14468 415.4628)
+ (pt 481.07162 415.51162)
+ (pt 481.00944 415.60468)
+ (pt 480.06489 415.60468)
+ (pt 480.05679 415.56393)
+ (pt 479.96838 415.43162)
+ (pt 479.83607 415.34321)
+ (pt 479.68 415.31217)
+ (pt 478.68 415.31217)
+ (pt 478.52393 415.34321)
+ (pt 478.39162 415.43162)
+ (pt 478.30321 415.56393)
+ (pt 478.27217 415.72)
+ (pt 478.27217 416.72)
+ (pt 478.30321 416.87607)
+ (pt 478.39162 417.00838)
+ (pt 478.52393 417.09679)
+ (pt 478.68 417.12783)
+ (pt 479.68 417.12783)
+ (pt 479.83607 417.09679)
+ (pt 479.96838 417.00838)
+ (pt 480.05679 416.87607)
+ (pt 480.07285 416.79532)
+ (pt 481.00944 416.79532)
+ (pt 481.07162 416.88838)
+ (pt 481.20393 416.97679)
+ (pt 481.36 417.00783)
+ (pt 482.16 417.00783)
+ (pt 482.31607 416.97679)
+ (pt 482.44838 416.88838)
+ (pt 482.50744 416.8)
+ (pt 482.61256 416.8)
+ (pt 482.67162 416.88838)
+ (pt 482.80393 416.97679)
+ (pt 482.96 417.00783)
+ (pt 483.76 417.00783)
+ (pt 483.91607 416.97679)
+ (pt 484.04838 416.88838)
+ (pt 484.07055 416.8552)
+ (pt 484.18786 416.93358)
+ (pt 484.5 416.99567)
+ (pt 484.81214 416.93358)
+ (pt 485.07676 416.75676)
+ (pt 485.25358 416.49214)
+ (pt 485.31567 416.18)
+ (pt 485.25358 415.86786)
+ (pt 485.07676 415.60324)
+ (pt 484.81214 415.42642)
+ (pt 484.5 415.36433)
+ (pt 484.18786 415.42642)
+ (pt 484.05208 415.51715)
+ (pt 484.04838 415.51162)
+ (pt 483.91607 415.42321)
+ (pt 483.76 415.39217)
+ (pt 482.96 415.39217)
+ (pt 482.80393 415.42321)
+ (pt 482.67162 415.51162)
+ (pt 482.61256 415.6)
+ (pt 482.50744 415.6)
+ (pt 482.44838 415.51162)
+ (pt 482.33532 415.43607)
+ (pt 482.33532 415.01056)
+ (pt 482.42838 414.94838)
+ (pt 482.51679 414.81607)
+ (pt 482.54783 414.66)
+ (pt 482.54783 413.86)
+ (pt 482.51679 413.70393)
+ (pt 482.42838 413.57162)
+ (pt 482.34 413.51256)
+ (pt 482.34 413.40744)
+ (pt 482.42838 413.34838)
+ (pt 482.51679 413.21607)
+ (pt 482.54783 413.06)
+ (pt 482.54783 412.26)
+ (pt 482.51679 412.10393)
+ (pt 482.42838 411.97162)
+ (pt 482.33532 411.90944)
+ (pt 482.33532 411.59056)
+ (pt 482.42838 411.52838)
+ (pt 482.50393 411.41532)
+ (pt 482.54101 411.41532)
+ (pt 482.56639 411.43228)
+ (pt 482.82 411.48273)
+ (pt 483.07361 411.43228)
+ (pt 483.28862 411.28862)
+ (pt 483.43228 411.07361)
+ (pt 483.48273 410.82)
+ (pt 483.43228 410.56639)
+ (pt 483.28862 410.35138)
+ (pt 483.07361 410.20772)
+ (pt 482.82 410.15727)
+ (pt 482.56639 410.20772)
+ (pt 482.54101 410.22468)
+ (pt 482.4772 410.22468)
+ (pt 482.42838 410.15162)
+ (pt 482.29607 410.06321)
+ (pt 482.14 410.03217)
+ (pt 481.34 410.03217)
+ (pt 481.18393 410.06321)
+ (pt 481.05162 410.15162)
+ (pt 480.99256 410.24)
+ (pt 480.88744 410.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.25783 381.15)
+ (pt 489.22679 380.99393)
+ (pt 489.13838 380.86162)
+ (pt 489.00607 380.77321)
+ (pt 488.85 380.74217)
+ (pt 487.35 380.74217)
+ (pt 487.19393 380.77321)
+ (pt 487.06162 380.86162)
+ (pt 486.97321 380.99393)
+ (pt 486.94217 381.15)
+ (pt 486.94217 382.65)
+ (pt 486.97321 382.80607)
+ (pt 487.06162 382.93838)
+ (pt 487.19393 383.02679)
+ (pt 487.35 383.05783)
+ (pt 488.85 383.05783)
+ (pt 489.00607 383.02679)
+ (pt 489.13838 382.93838)
+ (pt 489.22679 382.80607)
+ (pt 489.25783 382.65)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.09037 388.91179)
+ (pt 488.82515 388.51485)
+ (pt 488.42821 388.24963)
+ (pt 487.96 388.1565)
+ (pt 487.49179 388.24963)
+ (pt 487.09485 388.51485)
+ (pt 486.82963 388.91179)
+ (pt 486.7365 389.38)
+ (pt 486.82963 389.84821)
+ (pt 487.09485 390.24515)
+ (pt 487.49179 390.51037)
+ (pt 487.96 390.6035)
+ (pt 488.42821 390.51037)
+ (pt 488.82515 390.24515)
+ (pt 489.09037 389.84821)
+ (pt 489.1835 389.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 486.67162 396.15162)
+ (pt 486.58321 396.28393)
+ (pt 486.55217 396.44)
+ (pt 486.55217 398.24)
+ (pt 486.58321 398.39607)
+ (pt 486.67162 398.52838)
+ (pt 486.80393 398.61679)
+ (pt 486.96 398.64783)
+ (pt 488.76 398.64783)
+ (pt 488.91607 398.61679)
+ (pt 489.04838 398.52838)
+ (pt 489.13679 398.39607)
+ (pt 489.16783 398.24)
+ (pt 489.16783 396.44)
+ (pt 489.13679 396.28393)
+ (pt 489.04838 396.15162)
+ (pt 488.92623 396.07)
+ (pt 489.04838 395.98838)
+ (pt 489.13679 395.85607)
+ (pt 489.16783 395.7)
+ (pt 489.16783 393.9)
+ (pt 489.13679 393.74393)
+ (pt 489.04838 393.61162)
+ (pt 488.91607 393.52321)
+ (pt 488.76 393.49217)
+ (pt 486.96 393.49217)
+ (pt 486.80393 393.52321)
+ (pt 486.67162 393.61162)
+ (pt 486.58321 393.74393)
+ (pt 486.55217 393.9)
+ (pt 486.55217 395.7)
+ (pt 486.58321 395.85607)
+ (pt 486.67162 395.98838)
+ (pt 486.79377 396.07)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 488.9291 373.4509)
+ (pt 488.5487 373.19673)
+ (pt 488.1 373.10748)
+ (pt 487.6513 373.19673)
+ (pt 487.2709 373.4509)
+ (pt 487.01673 373.8313)
+ (pt 486.92748 374.28)
+ (pt 487.01673 374.7287)
+ (pt 487.2709 375.1091)
+ (pt 487.6513 375.36327)
+ (pt 488.1 375.45252)
+ (pt 488.5487 375.36327)
+ (pt 488.9291 375.1091)
+ (pt 489.06644 374.90355)
+ (pt 489.11432 374.90355)
+ (pt 489.18 374.94744)
+ (pt 489.18 375.05256)
+ (pt 489.09162 375.11162)
+ (pt 489.00321 375.24393)
+ (pt 488.97217 375.4)
+ (pt 488.97217 376.05536)
+ (pt 488.9291 375.9909)
+ (pt 488.5487 375.73673)
+ (pt 488.1 375.64748)
+ (pt 487.6513 375.73673)
+ (pt 487.2709 375.9909)
+ (pt 487.01673 376.3713)
+ (pt 486.92748 376.82)
+ (pt 487.01673 377.2687)
+ (pt 487.2709 377.6491)
+ (pt 487.6513 377.90327)
+ (pt 488.1 377.99252)
+ (pt 488.5487 377.90327)
+ (pt 488.9291 377.6491)
+ (pt 488.99217 377.55471)
+ (pt 488.99217 378.08)
+ (pt 489.02321 378.23607)
+ (pt 489.11162 378.36838)
+ (pt 489.2 378.42744)
+ (pt 489.2 378.53256)
+ (pt 489.11162 378.59162)
+ (pt 489.0683 378.65645)
+ (pt 489.01299 378.65645)
+ (pt 488.9291 378.5309)
+ (pt 488.5487 378.27673)
+ (pt 488.1 378.18748)
+ (pt 487.6513 378.27673)
+ (pt 487.2709 378.5309)
+ (pt 487.01673 378.9113)
+ (pt 486.92748 379.36)
+ (pt 487.01673 379.8087)
+ (pt 487.2709 380.1891)
+ (pt 487.6513 380.44327)
+ (pt 488.1 380.53252)
+ (pt 488.5487 380.44327)
+ (pt 488.9291 380.1891)
+ (pt 489.01299 380.06355)
+ (pt 489.27792 380.06355)
+ (pt 489.4 380.08783)
+ (pt 490.2 380.08783)
+ (pt 490.35607 380.05679)
+ (pt 490.48838 379.96838)
+ (pt 490.57679 379.83607)
+ (pt 490.60783 379.68)
+ (pt 490.60783 378.88)
+ (pt 490.57679 378.72393)
+ (pt 490.48838 378.59162)
+ (pt 490.4 378.53256)
+ (pt 490.4 378.42744)
+ (pt 490.48838 378.36838)
+ (pt 490.57679 378.23607)
+ (pt 490.60783 378.08)
+ (pt 490.60783 377.28)
+ (pt 490.57679 377.12393)
+ (pt 490.48838 376.99162)
+ (pt 490.35607 376.90321)
+ (pt 490.2 376.87217)
+ (pt 489.4 376.87217)
+ (pt 489.25646 376.90072)
+ (pt 489.27252 376.82)
+ (pt 489.22415 376.57683)
+ (pt 489.38 376.60783)
+ (pt 490.18 376.60783)
+ (pt 490.33607 376.57679)
+ (pt 490.46838 376.48838)
+ (pt 490.55679 376.35607)
+ (pt 490.58783 376.2)
+ (pt 490.58783 375.4)
+ (pt 490.55679 375.24393)
+ (pt 490.46838 375.11162)
+ (pt 490.38 375.05256)
+ (pt 490.38 374.94744)
+ (pt 490.46838 374.88838)
+ (pt 490.55679 374.75607)
+ (pt 490.58783 374.6)
+ (pt 490.58783 373.8)
+ (pt 490.55679 373.64393)
+ (pt 490.46838 373.51162)
+ (pt 490.33607 373.42321)
+ (pt 490.18 373.39217)
+ (pt 489.38 373.39217)
+ (pt 489.22393 373.42321)
+ (pt 489.11432 373.49645)
+ (pt 488.95953 373.49645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 451.16778 320.42884)
+ (pt 450.96886 320.13114)
+ (pt 450.67116 319.93222)
+ (pt 450.32 319.86237)
+ (pt 449.96884 319.93222)
+ (pt 449.67114 320.13114)
+ (pt 449.47222 320.42884)
+ (pt 449.40237 320.78)
+ (pt 449.47222 321.13116)
+ (pt 449.67114 321.42886)
+ (pt 449.96884 321.62778)
+ (pt 450.32 321.69763)
+ (pt 450.67116 321.62778)
+ (pt 450.96886 321.42886)
+ (pt 451.16778 321.13116)
+ (pt 451.23763 320.78)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 441.75645 327.69645)
+ (pt 441.53724 327.69645)
+ (pt 441.52679 327.64393)
+ (pt 441.43838 327.51162)
+ (pt 441.30607 327.42321)
+ (pt 441.15 327.39217)
+ (pt 439.85 327.39217)
+ (pt 439.69393 327.42321)
+ (pt 439.56162 327.51162)
+ (pt 439.47321 327.64393)
+ (pt 439.44217 327.8)
+ (pt 439.44217 329.0)
+ (pt 439.47321 329.15607)
+ (pt 439.5 329.19616)
+ (pt 439.5 329.60384)
+ (pt 439.47321 329.64393)
+ (pt 439.44217 329.8)
+ (pt 439.44217 331.0)
+ (pt 439.47321 331.15607)
+ (pt 439.56162 331.28838)
+ (pt 439.69393 331.37679)
+ (pt 439.85 331.40783)
+ (pt 440.22603 331.40783)
+ (pt 440.19114 331.43114)
+ (pt 439.99222 331.72884)
+ (pt 439.92237 332.08)
+ (pt 439.99222 332.43116)
+ (pt 440.12449 332.62912)
+ (pt 440.10393 332.63321)
+ (pt 439.97162 332.72162)
+ (pt 439.88321 332.85393)
+ (pt 439.85217 333.01)
+ (pt 439.85217 333.01056)
+ (pt 439.64783 333.01056)
+ (pt 439.64783 333.01)
+ (pt 439.61679 332.85393)
+ (pt 439.52838 332.72162)
+ (pt 439.39607 332.63321)
+ (pt 439.24 332.60217)
+ (pt 438.04 332.60217)
+ (pt 437.88393 332.63321)
+ (pt 437.84384 332.66)
+ (pt 437.43616 332.66)
+ (pt 437.39607 332.63321)
+ (pt 437.24 332.60217)
+ (pt 436.04 332.60217)
+ (pt 435.88393 332.63321)
+ (pt 435.75162 332.72162)
+ (pt 435.6633 332.85379)
+ (pt 435.57116 332.79222)
+ (pt 435.22 332.72237)
+ (pt 434.86884 332.79222)
+ (pt 434.57114 332.99114)
+ (pt 434.37222 333.28884)
+ (pt 434.30237 333.64)
+ (pt 434.37222 333.99116)
+ (pt 434.57114 334.28886)
+ (pt 434.86884 334.48778)
+ (pt 435.22 334.55763)
+ (pt 435.57116 334.48778)
+ (pt 435.65622 334.43094)
+ (pt 435.66321 334.46607)
+ (pt 435.75162 334.59838)
+ (pt 435.88393 334.68679)
+ (pt 436.04 334.71783)
+ (pt 437.24 334.71783)
+ (pt 437.39607 334.68679)
+ (pt 437.43616 334.66)
+ (pt 437.84384 334.66)
+ (pt 437.88393 334.68679)
+ (pt 438.04 334.71783)
+ (pt 439.24 334.71783)
+ (pt 439.39607 334.68679)
+ (pt 439.52838 334.59838)
+ (pt 439.61679 334.46607)
+ (pt 439.64783 334.31)
+ (pt 439.64783 334.30944)
+ (pt 439.85217 334.30944)
+ (pt 439.85217 334.31)
+ (pt 439.88321 334.46607)
+ (pt 439.97162 334.59838)
+ (pt 440.10393 334.68679)
+ (pt 440.26 334.71783)
+ (pt 441.46 334.71783)
+ (pt 441.61607 334.68679)
+ (pt 441.65616 334.66)
+ (pt 442.06384 334.66)
+ (pt 442.10393 334.68679)
+ (pt 442.26 334.71783)
+ (pt 443.46 334.71783)
+ (pt 443.61607 334.68679)
+ (pt 443.74838 334.59838)
+ (pt 443.83679 334.46607)
+ (pt 443.86783 334.31)
+ (pt 443.86783 334.30944)
+ (pt 443.92 334.30944)
+ (pt 443.95188 334.29623)
+ (pt 444.16 334.33763)
+ (pt 444.51116 334.26778)
+ (pt 444.80886 334.06886)
+ (pt 445.00778 333.77116)
+ (pt 445.04368 333.59069)
+ (pt 445.10786 333.63358)
+ (pt 445.42 333.69567)
+ (pt 445.42361 333.69495)
+ (pt 445.68009 333.80119)
+ (pt 445.71162 333.84838)
+ (pt 445.84393 333.93679)
+ (pt 446.0 333.96783)
+ (pt 446.8 333.96783)
+ (pt 446.95607 333.93679)
+ (pt 447.08838 333.84838)
+ (pt 447.17679 333.71607)
+ (pt 447.20783 333.56)
+ (pt 447.20783 332.76)
+ (pt 447.17679 332.60393)
+ (pt 447.08838 332.47162)
+ (pt 447.0 332.41256)
+ (pt 447.0 332.30744)
+ (pt 447.08838 332.24838)
+ (pt 447.17679 332.11607)
+ (pt 447.20783 331.96)
+ (pt 447.20783 331.16)
+ (pt 447.17679 331.00393)
+ (pt 447.08838 330.87162)
+ (pt 446.95607 330.78321)
+ (pt 446.8 330.75217)
+ (pt 446.77145 330.75217)
+ (pt 446.81763 330.52)
+ (pt 446.74778 330.16884)
+ (pt 446.69169 330.0849)
+ (pt 446.80778 329.91116)
+ (pt 446.87763 329.56)
+ (pt 446.80778 329.20884)
+ (pt 446.60886 328.91114)
+ (pt 446.60391 328.90783)
+ (pt 447.0 328.90783)
+ (pt 447.15607 328.87679)
+ (pt 447.26568 328.80355)
+ (pt 447.34859 328.80355)
+ (pt 447.86157 329.31653)
+ (pt 447.91222 329.57116)
+ (pt 448.11114 329.86886)
+ (pt 448.40884 330.06778)
+ (pt 448.76 330.13763)
+ (pt 449.11116 330.06778)
+ (pt 449.40886 329.86886)
+ (pt 449.60778 329.57116)
+ (pt 449.67763 329.22)
+ (pt 449.60778 328.86884)
+ (pt 449.40886 328.57114)
+ (pt 449.11116 328.37222)
+ (pt 448.85653 328.32157)
+ (pt 448.13748 327.60252)
+ (pt 447.9472 327.5237)
+ (pt 448.20886 327.34886)
+ (pt 448.40778 327.05116)
+ (pt 448.47763 326.7)
+ (pt 448.43073 326.46423)
+ (pt 448.64713 326.24783)
+ (pt 448.86 326.24783)
+ (pt 449.01607 326.21679)
+ (pt 449.14838 326.12838)
+ (pt 449.20744 326.04)
+ (pt 449.31256 326.04)
+ (pt 449.37162 326.12838)
+ (pt 449.50393 326.21679)
+ (pt 449.66 326.24783)
+ (pt 450.46 326.24783)
+ (pt 450.61607 326.21679)
+ (pt 450.74083 326.13343)
+ (pt 450.75114 326.14886)
+ (pt 451.04884 326.34778)
+ (pt 451.4 326.41763)
+ (pt 451.75116 326.34778)
+ (pt 452.04886 326.14886)
+ (pt 452.24778 325.85116)
+ (pt 452.31763 325.5)
+ (pt 452.24778 325.14884)
+ (pt 452.04886 324.85114)
+ (pt 451.75116 324.65222)
+ (pt 451.4 324.58237)
+ (pt 451.04884 324.65222)
+ (pt 450.79521 324.8217)
+ (pt 450.74838 324.75162)
+ (pt 450.61607 324.66321)
+ (pt 450.46 324.63217)
+ (pt 449.66 324.63217)
+ (pt 449.50393 324.66321)
+ (pt 449.37162 324.75162)
+ (pt 449.31256 324.84)
+ (pt 449.20744 324.84)
+ (pt 449.14838 324.75162)
+ (pt 449.01607 324.66321)
+ (pt 448.86 324.63217)
+ (pt 448.06 324.63217)
+ (pt 447.90393 324.66321)
+ (pt 447.77162 324.75162)
+ (pt 447.68321 324.88393)
+ (pt 447.65217 325.04)
+ (pt 447.65217 325.25287)
+ (pt 447.09896 325.80608)
+ (pt 447.09748 325.80252)
+ (pt 446.50783 325.21287)
+ (pt 446.50783 324.55)
+ (pt 446.47679 324.39393)
+ (pt 446.38838 324.26162)
+ (pt 446.25607 324.17321)
+ (pt 446.1 324.14217)
+ (pt 444.9 324.14217)
+ (pt 444.74393 324.17321)
+ (pt 444.70384 324.2)
+ (pt 444.29616 324.2)
+ (pt 444.25607 324.17321)
+ (pt 444.1 324.14217)
+ (pt 442.9 324.14217)
+ (pt 442.74393 324.17321)
+ (pt 442.61162 324.26162)
+ (pt 442.52321 324.39393)
+ (pt 442.49217 324.55)
+ (pt 442.49217 325.21287)
+ (pt 441.96252 325.74252)
+ (pt 441.75645 326.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 434.75116 297.87222)
+ (pt 434.4 297.80237)
+ (pt 434.04884 297.87222)
+ (pt 433.75114 298.07114)
+ (pt 433.55222 298.36884)
+ (pt 433.48237 298.72)
+ (pt 433.55222 299.07116)
+ (pt 433.75114 299.36886)
+ (pt 434.04884 299.56778)
+ (pt 434.4 299.63763)
+ (pt 434.75116 299.56778)
+ (pt 435.04886 299.36886)
+ (pt 435.18705 299.16205)
+ (pt 435.28393 299.22679)
+ (pt 435.44 299.25783)
+ (pt 436.64 299.25783)
+ (pt 436.79607 299.22679)
+ (pt 436.83616 299.2)
+ (pt 437.24384 299.2)
+ (pt 437.28393 299.22679)
+ (pt 437.44 299.25783)
+ (pt 438.64 299.25783)
+ (pt 438.79607 299.22679)
+ (pt 438.87485 299.17415)
+ (pt 438.91498 299.17415)
+ (pt 438.94321 299.31607)
+ (pt 439.03162 299.44838)
+ (pt 439.16393 299.53679)
+ (pt 439.32 299.56783)
+ (pt 441.32 299.56783)
+ (pt 441.47607 299.53679)
+ (pt 441.60838 299.44838)
+ (pt 441.69679 299.31607)
+ (pt 441.72783 299.16)
+ (pt 441.72783 297.16)
+ (pt 441.69679 297.00393)
+ (pt 441.60838 296.87162)
+ (pt 441.47607 296.78321)
+ (pt 441.32 296.75217)
+ (pt 439.32 296.75217)
+ (pt 439.16393 296.78321)
+ (pt 439.03162 296.87162)
+ (pt 438.94321 297.00393)
+ (pt 438.91217 297.16)
+ (pt 438.91217 297.22585)
+ (pt 438.87485 297.22585)
+ (pt 438.79607 297.17321)
+ (pt 438.64 297.14217)
+ (pt 437.44 297.14217)
+ (pt 437.28393 297.17321)
+ (pt 437.24384 297.2)
+ (pt 436.83616 297.2)
+ (pt 436.79607 297.17321)
+ (pt 436.64 297.14217)
+ (pt 435.44 297.14217)
+ (pt 435.28393 297.17321)
+ (pt 435.15162 297.26162)
+ (pt 435.06321 297.39393)
+ (pt 435.03217 297.55)
+ (pt 435.03217 298.05999)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 558.18778 279.52884)
+ (pt 557.98886 279.23114)
+ (pt 557.69116 279.03222)
+ (pt 557.34 278.96237)
+ (pt 556.98884 279.03222)
+ (pt 556.69114 279.23114)
+ (pt 556.49222 279.52884)
+ (pt 556.42237 279.88)
+ (pt 556.49222 280.23116)
+ (pt 556.69114 280.52886)
+ (pt 556.98884 280.72778)
+ (pt 557.34 280.79763)
+ (pt 557.69116 280.72778)
+ (pt 557.98886 280.52886)
+ (pt 558.18778 280.23116)
+ (pt 558.25763 279.88)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 560.98 279.03256)
+ (pt 560.89162 279.09162)
+ (pt 560.80321 279.22393)
+ (pt 560.77217 279.38)
+ (pt 560.77217 280.18)
+ (pt 560.80321 280.33607)
+ (pt 560.89162 280.46838)
+ (pt 561.02393 280.55679)
+ (pt 561.18 280.58783)
+ (pt 561.98 280.58783)
+ (pt 562.13366 280.55727)
+ (pt 562.38884 280.72778)
+ (pt 562.74 280.79763)
+ (pt 563.09116 280.72778)
+ (pt 563.38886 280.52886)
+ (pt 563.58778 280.23116)
+ (pt 563.65763 279.88)
+ (pt 563.58778 279.52884)
+ (pt 563.38886 279.23114)
+ (pt 563.09116 279.03222)
+ (pt 562.74 278.96237)
+ (pt 562.38884 279.03222)
+ (pt 562.27812 279.1062)
+ (pt 562.26838 279.09162)
+ (pt 562.18 279.03256)
+ (pt 562.18 278.92744)
+ (pt 562.26838 278.86838)
+ (pt 562.35679 278.73607)
+ (pt 562.38783 278.58)
+ (pt 562.38783 277.78)
+ (pt 562.35679 277.62393)
+ (pt 562.30784 277.55067)
+ (pt 562.42778 277.37116)
+ (pt 562.49763 277.02)
+ (pt 562.42778 276.66884)
+ (pt 562.22886 276.37114)
+ (pt 561.93116 276.17222)
+ (pt 561.58 276.10237)
+ (pt 561.22884 276.17222)
+ (pt 560.93114 276.37114)
+ (pt 560.73222 276.66884)
+ (pt 560.66237 277.02)
+ (pt 560.73222 277.37116)
+ (pt 560.85216 277.55067)
+ (pt 560.80321 277.62393)
+ (pt 560.77217 277.78)
+ (pt 560.77217 278.58)
+ (pt 560.80321 278.73607)
+ (pt 560.89162 278.86838)
+ (pt 560.98 278.92744)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.36821 296.55179)
+ (pt 381.36821 297.56)
+ (pt 381.37217 297.56956)
+ (pt 381.37217 297.96)
+ (pt 381.40321 298.11607)
+ (pt 381.49162 298.24838)
+ (pt 381.62393 298.33679)
+ (pt 381.78 298.36783)
+ (pt 382.17044 298.36783)
+ (pt 382.18 298.37179)
+ (pt 382.18956 298.36783)
+ (pt 382.58 298.36783)
+ (pt 382.73607 298.33679)
+ (pt 382.86838 298.24838)
+ (pt 382.92744 298.16)
+ (pt 383.03256 298.16)
+ (pt 383.09162 298.24838)
+ (pt 383.22393 298.33679)
+ (pt 383.38 298.36783)
+ (pt 384.18 298.36783)
+ (pt 384.33607 298.33679)
+ (pt 384.46838 298.24838)
+ (pt 384.52296 298.16669)
+ (pt 384.55114 298.20886)
+ (pt 384.84884 298.40778)
+ (pt 385.2 298.47763)
+ (pt 385.55116 298.40778)
+ (pt 385.84886 298.20886)
+ (pt 386.04778 297.91116)
+ (pt 386.11763 297.56)
+ (pt 386.04778 297.20884)
+ (pt 385.84886 296.91114)
+ (pt 385.55116 296.71222)
+ (pt 385.30863 296.66398)
+ (pt 385.59116 296.60778)
+ (pt 385.88886 296.40886)
+ (pt 386.08778 296.11116)
+ (pt 386.15763 295.76)
+ (pt 386.08778 295.40884)
+ (pt 385.88886 295.11114)
+ (pt 385.59116 294.91222)
+ (pt 385.24 294.84237)
+ (pt 384.88884 294.91222)
+ (pt 384.59114 295.11114)
+ (pt 384.57965 295.12834)
+ (pt 384.52838 295.05162)
+ (pt 384.39607 294.96321)
+ (pt 384.24 294.93217)
+ (pt 383.44 294.93217)
+ (pt 383.28393 294.96321)
+ (pt 383.15162 295.05162)
+ (pt 383.09256 295.14)
+ (pt 382.98744 295.14)
+ (pt 382.92838 295.05162)
+ (pt 382.79607 294.96321)
+ (pt 382.64 294.93217)
+ (pt 382.24956 294.93217)
+ (pt 382.24 294.92821)
+ (pt 380.54425 294.92821)
+ (pt 379.12721 293.51117)
+ (pt 379.20489 293.39491)
+ (pt 379.39364 292.446)
+ (pt 379.20489 291.49709)
+ (pt 378.66737 290.69263)
+ (pt 377.86291 290.15511)
+ (pt 376.914 289.96636)
+ (pt 375.96509 290.15511)
+ (pt 375.16063 290.69263)
+ (pt 374.62311 291.49709)
+ (pt 374.43436 292.446)
+ (pt 374.62311 293.39491)
+ (pt 375.16063 294.19937)
+ (pt 375.96509 294.73689)
+ (pt 376.914 294.92564)
+ (pt 377.86291 294.73689)
+ (pt 377.97917 294.65921)
+ (pt 379.63398 296.31402)
+ (pt 380.208 296.55179)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 557.73228 303.06639)
+ (pt 557.58862 302.85138)
+ (pt 557.37361 302.70772)
+ (pt 557.12 302.65727)
+ (pt 556.86639 302.70772)
+ (pt 556.65138 302.85138)
+ (pt 556.50772 303.06639)
+ (pt 556.45727 303.32)
+ (pt 556.50772 303.57361)
+ (pt 556.65138 303.78862)
+ (pt 556.86639 303.93228)
+ (pt 557.12 303.98273)
+ (pt 557.37361 303.93228)
+ (pt 557.58862 303.78862)
+ (pt 557.73228 303.57361)
+ (pt 557.78273 303.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 379.57912 266.39912)
+ (pt 379.26616 266.86751)
+ (pt 379.15626 267.42)
+ (pt 379.26616 267.97249)
+ (pt 379.57912 268.44088)
+ (pt 380.04751 268.75384)
+ (pt 380.6 268.86374)
+ (pt 381.15249 268.75384)
+ (pt 381.62088 268.44088)
+ (pt 381.87 268.06804)
+ (pt 382.11912 268.44088)
+ (pt 382.58751 268.75384)
+ (pt 383.14 268.86374)
+ (pt 383.69249 268.75384)
+ (pt 384.16088 268.44088)
+ (pt 384.47384 267.97249)
+ (pt 384.58374 267.42)
+ (pt 384.49659 266.98185)
+ (pt 385.79922 265.67922)
+ (pt 385.98944 265.22)
+ (pt 385.98944 264.089)
+ (pt 386.31571 263.76273)
+ (pt 386.89 263.76273)
+ (pt 387.14361 263.71228)
+ (pt 387.34 263.58106)
+ (pt 387.47228 263.66944)
+ (pt 387.36642 263.82786)
+ (pt 387.30433 264.14)
+ (pt 387.36642 264.45214)
+ (pt 387.54324 264.71676)
+ (pt 387.80786 264.89358)
+ (pt 388.12 264.95567)
+ (pt 388.43214 264.89358)
+ (pt 388.69676 264.71676)
+ (pt 388.87358 264.45214)
+ (pt 388.93567 264.14)
+ (pt 388.87358 263.82786)
+ (pt 388.78944 263.70194)
+ (pt 388.78944 263.68166)
+ (pt 388.95862 263.56862)
+ (pt 389.10228 263.35361)
+ (pt 389.15273 263.1)
+ (pt 389.10228 262.84639)
+ (pt 389.00447 262.7)
+ (pt 389.10228 262.55361)
+ (pt 389.15273 262.3)
+ (pt 389.10228 262.04639)
+ (pt 389.00447 261.9)
+ (pt 389.10228 261.75361)
+ (pt 389.15273 261.5)
+ (pt 389.14742 261.47328)
+ (pt 389.14786 261.47358)
+ (pt 389.46 261.53567)
+ (pt 389.77214 261.47358)
+ (pt 390.03676 261.29676)
+ (pt 390.21358 261.03214)
+ (pt 390.27567 260.72)
+ (pt 390.21358 260.40786)
+ (pt 390.03676 260.14324)
+ (pt 389.77214 259.96642)
+ (pt 389.46 259.90433)
+ (pt 389.14786 259.96642)
+ (pt 388.88324 260.14324)
+ (pt 388.86579 260.16936)
+ (pt 388.74361 260.08772)
+ (pt 388.49 260.03727)
+ (pt 387.79 260.03727)
+ (pt 387.53639 260.08772)
+ (pt 387.34 260.21894)
+ (pt 387.18944 260.11834)
+ (pt 387.18944 259.72)
+ (pt 386.99922 259.26078)
+ (pt 384.56383 256.82539)
+ (pt 384.56383 256.244)
+ (pt 384.53279 256.08793)
+ (pt 384.44438 255.95562)
+ (pt 384.31207 255.86721)
+ (pt 384.156 255.83617)
+ (pt 382.124 255.83617)
+ (pt 381.96793 255.86721)
+ (pt 381.83562 255.95562)
+ (pt 381.74721 256.08793)
+ (pt 381.71617 256.244)
+ (pt 381.71617 256.38174)
+ (pt 381.62088 256.23912)
+ (pt 381.15249 255.92616)
+ (pt 380.6 255.81626)
+ (pt 380.04751 255.92616)
+ (pt 379.57912 256.23912)
+ (pt 379.26616 256.70751)
+ (pt 379.15626 257.26)
+ (pt 379.26616 257.81249)
+ (pt 379.57912 258.28088)
+ (pt 379.95196 258.53)
+ (pt 379.57912 258.77912)
+ (pt 379.26616 259.24751)
+ (pt 379.15626 259.8)
+ (pt 379.26616 260.35249)
+ (pt 379.57912 260.82088)
+ (pt 379.95196 261.07)
+ (pt 379.57912 261.31912)
+ (pt 379.26616 261.78751)
+ (pt 379.15626 262.34)
+ (pt 379.26616 262.89249)
+ (pt 379.57912 263.36088)
+ (pt 379.95196 263.61)
+ (pt 379.57912 263.85912)
+ (pt 379.26616 264.32751)
+ (pt 379.15626 264.88)
+ (pt 379.26616 265.43249)
+ (pt 379.57912 265.90088)
+ (pt 379.95196 266.15)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 647.48891 464.17089)
+ (pt 648.29337 463.63337)
+ (pt 648.83089 462.82891)
+ (pt 649.01964 461.88)
+ (pt 648.83089 460.93109)
+ (pt 648.29337 460.12663)
+ (pt 647.48891 459.58911)
+ (pt 646.54 459.40036)
+ (pt 645.59109 459.58911)
+ (pt 644.78663 460.12663)
+ (pt 644.24911 460.93109)
+ (pt 644.06036 461.88)
+ (pt 644.24911 462.82891)
+ (pt 644.78663 463.63337)
+ (pt 645.59109 464.17089)
+ (pt 646.54 464.35964)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 455.40243)
+ (pt 639.79438 455.13438)
+ (pt 640.06243 454.73321)
+ (pt 640.15656 454.26)
+ (pt 640.06243 453.78679)
+ (pt 639.79438 453.38562)
+ (pt 639.39321 453.11757)
+ (pt 638.92 453.02344)
+ (pt 638.44679 453.11757)
+ (pt 638.04562 453.38562)
+ (pt 637.77757 453.78679)
+ (pt 637.68344 454.26)
+ (pt 637.77757 454.73321)
+ (pt 638.04562 455.13438)
+ (pt 638.44679 455.40243)
+ (pt 638.92 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 615.89358 442.74786)
+ (pt 615.71676 442.48324)
+ (pt 615.45214 442.30642)
+ (pt 615.14 442.24433)
+ (pt 614.82786 442.30642)
+ (pt 614.56324 442.48324)
+ (pt 614.38642 442.74786)
+ (pt 614.32433 443.06)
+ (pt 614.38642 443.37214)
+ (pt 614.56324 443.63676)
+ (pt 614.66788 443.70668)
+ (pt 614.58324 443.76324)
+ (pt 614.40642 444.02786)
+ (pt 614.34433 444.34)
+ (pt 614.40642 444.65214)
+ (pt 614.58324 444.91676)
+ (pt 614.73285 445.01673)
+ (pt 614.66324 445.06324)
+ (pt 614.48642 445.32786)
+ (pt 614.42433 445.64)
+ (pt 614.48642 445.95214)
+ (pt 614.66324 446.21676)
+ (pt 614.76788 446.28668)
+ (pt 614.68324 446.34324)
+ (pt 614.50642 446.60786)
+ (pt 614.44433 446.92)
+ (pt 614.50642 447.23214)
+ (pt 614.68324 447.49676)
+ (pt 614.87285 447.62346)
+ (pt 614.84324 447.64324)
+ (pt 614.66642 447.90786)
+ (pt 614.60433 448.22)
+ (pt 614.66642 448.53214)
+ (pt 614.84324 448.79676)
+ (pt 615.10786 448.97358)
+ (pt 615.42 449.03567)
+ (pt 615.73214 448.97358)
+ (pt 615.99676 448.79676)
+ (pt 616.17358 448.53214)
+ (pt 616.20755 448.36137)
+ (pt 616.38 448.39567)
+ (pt 616.69214 448.33358)
+ (pt 616.95676 448.15676)
+ (pt 617.13358 447.89214)
+ (pt 617.19567 447.58)
+ (pt 617.13358 447.26786)
+ (pt 616.95676 447.00324)
+ (pt 616.85212 446.93332)
+ (pt 616.93676 446.87676)
+ (pt 617.11358 446.61214)
+ (pt 617.17567 446.3)
+ (pt 617.11358 445.98786)
+ (pt 616.93676 445.72324)
+ (pt 616.81715 445.64332)
+ (pt 616.91676 445.57676)
+ (pt 617.09358 445.31214)
+ (pt 617.15567 445.0)
+ (pt 617.09358 444.68786)
+ (pt 616.91676 444.42324)
+ (pt 616.77219 444.32664)
+ (pt 616.87676 444.25676)
+ (pt 617.05358 443.99214)
+ (pt 617.11567 443.68)
+ (pt 617.05358 443.36786)
+ (pt 616.87676 443.10324)
+ (pt 616.61214 442.92642)
+ (pt 616.3 442.86433)
+ (pt 615.98786 442.92642)
+ (pt 615.93599 442.96108)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 430.00243)
+ (pt 639.79438 429.73438)
+ (pt 640.06243 429.33321)
+ (pt 640.15656 428.86)
+ (pt 640.06243 428.38679)
+ (pt 639.79438 427.98562)
+ (pt 639.39321 427.71757)
+ (pt 638.92 427.62344)
+ (pt 638.44679 427.71757)
+ (pt 638.04562 427.98562)
+ (pt 637.77757 428.38679)
+ (pt 637.68344 428.86)
+ (pt 637.77757 429.33321)
+ (pt 638.04562 429.73438)
+ (pt 638.44679 430.00243)
+ (pt 638.92 430.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 424.92243)
+ (pt 639.79438 424.65438)
+ (pt 640.06243 424.25321)
+ (pt 640.15656 423.78)
+ (pt 640.06243 423.30679)
+ (pt 639.79438 422.90562)
+ (pt 639.39321 422.63757)
+ (pt 638.92 422.54344)
+ (pt 638.44679 422.63757)
+ (pt 638.04562 422.90562)
+ (pt 637.77757 423.30679)
+ (pt 637.68344 423.78)
+ (pt 637.77757 424.25321)
+ (pt 638.04562 424.65438)
+ (pt 638.44679 424.92243)
+ (pt 638.92 425.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 422.38243)
+ (pt 639.79438 422.11438)
+ (pt 640.06243 421.71321)
+ (pt 640.15656 421.24)
+ (pt 640.06243 420.76679)
+ (pt 639.79438 420.36562)
+ (pt 639.39321 420.09757)
+ (pt 638.92 420.00344)
+ (pt 638.44679 420.09757)
+ (pt 638.04562 420.36562)
+ (pt 637.77757 420.76679)
+ (pt 637.68344 421.24)
+ (pt 637.77757 421.71321)
+ (pt 638.04562 422.11438)
+ (pt 638.44679 422.38243)
+ (pt 638.92 422.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 417.30243)
+ (pt 639.79438 417.03438)
+ (pt 640.06243 416.63321)
+ (pt 640.15656 416.16)
+ (pt 640.06243 415.68679)
+ (pt 639.79438 415.28562)
+ (pt 639.39321 415.01757)
+ (pt 638.92 414.92344)
+ (pt 638.44679 415.01757)
+ (pt 638.04562 415.28562)
+ (pt 637.77757 415.68679)
+ (pt 637.68344 416.16)
+ (pt 637.77757 416.63321)
+ (pt 638.04562 417.03438)
+ (pt 638.44679 417.30243)
+ (pt 638.92 417.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 414.76243)
+ (pt 639.79438 414.49438)
+ (pt 640.06243 414.09321)
+ (pt 640.15656 413.62)
+ (pt 640.06243 413.14679)
+ (pt 639.79438 412.74562)
+ (pt 639.39321 412.47757)
+ (pt 638.92 412.38344)
+ (pt 638.44679 412.47757)
+ (pt 638.04562 412.74562)
+ (pt 637.77757 413.14679)
+ (pt 637.68344 413.62)
+ (pt 637.77757 414.09321)
+ (pt 638.04562 414.49438)
+ (pt 638.44679 414.76243)
+ (pt 638.92 414.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.46778 413.92884)
+ (pt 617.26886 413.63114)
+ (pt 616.97116 413.43222)
+ (pt 616.62 413.36237)
+ (pt 616.26884 413.43222)
+ (pt 615.97114 413.63114)
+ (pt 615.77222 413.92884)
+ (pt 615.70237 414.28)
+ (pt 615.77222 414.63116)
+ (pt 615.97114 414.92886)
+ (pt 616.26884 415.12778)
+ (pt 616.62 415.19763)
+ (pt 616.97116 415.12778)
+ (pt 617.26886 414.92886)
+ (pt 617.46778 414.63116)
+ (pt 617.53763 414.28)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 409.68243)
+ (pt 639.79438 409.41438)
+ (pt 640.06243 409.01321)
+ (pt 640.15656 408.54)
+ (pt 640.06243 408.06679)
+ (pt 639.79438 407.66562)
+ (pt 639.39321 407.39757)
+ (pt 638.92 407.30344)
+ (pt 638.44679 407.39757)
+ (pt 638.04562 407.66562)
+ (pt 637.77757 408.06679)
+ (pt 637.68344 408.54)
+ (pt 637.77757 409.01321)
+ (pt 638.04562 409.41438)
+ (pt 638.44679 409.68243)
+ (pt 638.92 409.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 407.14243)
+ (pt 639.79438 406.87438)
+ (pt 640.06243 406.47321)
+ (pt 640.15656 406.0)
+ (pt 640.06243 405.52679)
+ (pt 639.79438 405.12562)
+ (pt 639.39321 404.85757)
+ (pt 638.92 404.76344)
+ (pt 638.44679 404.85757)
+ (pt 638.04562 405.12562)
+ (pt 637.77757 405.52679)
+ (pt 637.68344 406.0)
+ (pt 637.77757 406.47321)
+ (pt 638.04562 406.87438)
+ (pt 638.44679 407.14243)
+ (pt 638.92 407.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 402.06243)
+ (pt 639.79438 401.79438)
+ (pt 640.06243 401.39321)
+ (pt 640.15656 400.92)
+ (pt 640.06243 400.44679)
+ (pt 639.79438 400.04562)
+ (pt 639.39321 399.77757)
+ (pt 638.92 399.68344)
+ (pt 638.44679 399.77757)
+ (pt 638.04562 400.04562)
+ (pt 637.77757 400.44679)
+ (pt 637.68344 400.92)
+ (pt 637.77757 401.39321)
+ (pt 638.04562 401.79438)
+ (pt 638.44679 402.06243)
+ (pt 638.92 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 399.52243)
+ (pt 639.79438 399.25438)
+ (pt 640.06243 398.85321)
+ (pt 640.15656 398.38)
+ (pt 640.06243 397.90679)
+ (pt 639.79438 397.50562)
+ (pt 639.39321 397.23757)
+ (pt 638.92 397.14344)
+ (pt 638.44679 397.23757)
+ (pt 638.04562 397.50562)
+ (pt 637.77757 397.90679)
+ (pt 637.68344 398.38)
+ (pt 637.77757 398.85321)
+ (pt 638.04562 399.25438)
+ (pt 638.44679 399.52243)
+ (pt 638.92 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 558.79228 352.56639)
+ (pt 558.64862 352.35138)
+ (pt 558.43361 352.20772)
+ (pt 558.18 352.15727)
+ (pt 557.92639 352.20772)
+ (pt 557.71138 352.35138)
+ (pt 557.56772 352.56639)
+ (pt 557.51727 352.82)
+ (pt 557.56772 353.07361)
+ (pt 557.71138 353.28862)
+ (pt 557.92639 353.43228)
+ (pt 558.18 353.48273)
+ (pt 558.43361 353.43228)
+ (pt 558.64862 353.28862)
+ (pt 558.79228 353.07361)
+ (pt 558.84273 352.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 394.44243)
+ (pt 639.79438 394.17438)
+ (pt 640.06243 393.77321)
+ (pt 640.15656 393.3)
+ (pt 640.06243 392.82679)
+ (pt 639.79438 392.42562)
+ (pt 639.39321 392.15757)
+ (pt 638.92 392.06344)
+ (pt 638.44679 392.15757)
+ (pt 638.04562 392.42562)
+ (pt 637.77757 392.82679)
+ (pt 637.68344 393.3)
+ (pt 637.77757 393.77321)
+ (pt 638.04562 394.17438)
+ (pt 638.44679 394.44243)
+ (pt 638.92 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 391.90243)
+ (pt 639.79438 391.63438)
+ (pt 640.06243 391.23321)
+ (pt 640.15656 390.76)
+ (pt 640.06243 390.28679)
+ (pt 639.79438 389.88562)
+ (pt 639.39321 389.61757)
+ (pt 638.92 389.52344)
+ (pt 638.44679 389.61757)
+ (pt 638.04562 389.88562)
+ (pt 637.77757 390.28679)
+ (pt 637.68344 390.76)
+ (pt 637.77757 391.23321)
+ (pt 638.04562 391.63438)
+ (pt 638.44679 391.90243)
+ (pt 638.92 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 386.82243)
+ (pt 639.79438 386.55438)
+ (pt 640.06243 386.15321)
+ (pt 640.15656 385.68)
+ (pt 640.06243 385.20679)
+ (pt 639.79438 384.80562)
+ (pt 639.39321 384.53757)
+ (pt 638.92 384.44344)
+ (pt 638.44679 384.53757)
+ (pt 638.04562 384.80562)
+ (pt 637.77757 385.20679)
+ (pt 637.68344 385.68)
+ (pt 637.77757 386.15321)
+ (pt 638.04562 386.55438)
+ (pt 638.44679 386.82243)
+ (pt 638.92 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 384.28243)
+ (pt 639.79438 384.01438)
+ (pt 640.06243 383.61321)
+ (pt 640.15656 383.14)
+ (pt 640.06243 382.66679)
+ (pt 639.79438 382.26562)
+ (pt 639.39321 381.99757)
+ (pt 638.92 381.90344)
+ (pt 638.44679 381.99757)
+ (pt 638.04562 382.26562)
+ (pt 637.77757 382.66679)
+ (pt 637.68344 383.14)
+ (pt 637.77757 383.61321)
+ (pt 638.04562 384.01438)
+ (pt 638.44679 384.28243)
+ (pt 638.92 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 379.20243)
+ (pt 639.79438 378.93438)
+ (pt 640.06243 378.53321)
+ (pt 640.15656 378.06)
+ (pt 640.06243 377.58679)
+ (pt 639.79438 377.18562)
+ (pt 639.39321 376.91757)
+ (pt 638.92 376.82344)
+ (pt 638.44679 376.91757)
+ (pt 638.04562 377.18562)
+ (pt 637.77757 377.58679)
+ (pt 637.68344 378.06)
+ (pt 637.77757 378.53321)
+ (pt 638.04562 378.93438)
+ (pt 638.44679 379.20243)
+ (pt 638.92 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 640.88783 352.2)
+ (pt 640.85679 352.04393)
+ (pt 640.76838 351.91162)
+ (pt 640.63607 351.82321)
+ (pt 640.48 351.79217)
+ (pt 638.48 351.79217)
+ (pt 638.32393 351.82321)
+ (pt 638.19162 351.91162)
+ (pt 638.10321 352.04393)
+ (pt 638.07217 352.2)
+ (pt 638.07217 354.2)
+ (pt 638.10321 354.35607)
+ (pt 638.19162 354.48838)
+ (pt 638.32393 354.57679)
+ (pt 638.48 354.60783)
+ (pt 640.48 354.60783)
+ (pt 640.63607 354.57679)
+ (pt 640.76838 354.48838)
+ (pt 640.85679 354.35607)
+ (pt 640.88783 354.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 640.02778 348.22884)
+ (pt 639.82886 347.93114)
+ (pt 639.53116 347.73222)
+ (pt 639.18 347.66237)
+ (pt 638.82884 347.73222)
+ (pt 638.53114 347.93114)
+ (pt 638.33222 348.22884)
+ (pt 638.26237 348.58)
+ (pt 638.33222 348.93116)
+ (pt 638.53114 349.22886)
+ (pt 638.82884 349.42778)
+ (pt 639.18 349.49763)
+ (pt 639.53116 349.42778)
+ (pt 639.82886 349.22886)
+ (pt 640.02778 348.93116)
+ (pt 640.09763 348.58)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 633.95607 344.97321)
+ (pt 633.8 344.94217)
+ (pt 632.6 344.94217)
+ (pt 632.44393 344.97321)
+ (pt 632.36515 345.02585)
+ (pt 631.6 345.02585)
+ (pt 631.33748 345.13459)
+ (pt 631.24884 345.15222)
+ (pt 631.1737 345.20243)
+ (pt 630.91117 345.31117)
+ (pt 630.80243 345.5737)
+ (pt 630.75222 345.64884)
+ (pt 630.73459 345.73748)
+ (pt 630.62585 346.0)
+ (pt 630.73459 346.26252)
+ (pt 630.75222 346.35116)
+ (pt 630.80243 346.4263)
+ (pt 630.91117 346.68883)
+ (pt 631.1737 346.79757)
+ (pt 631.24884 346.84778)
+ (pt 631.33748 346.86541)
+ (pt 631.6 346.97415)
+ (pt 632.36515 346.97415)
+ (pt 632.44393 347.02679)
+ (pt 632.6 347.05783)
+ (pt 633.8 347.05783)
+ (pt 633.95607 347.02679)
+ (pt 633.99616 347.0)
+ (pt 634.40384 347.0)
+ (pt 634.44393 347.02679)
+ (pt 634.6 347.05783)
+ (pt 635.8 347.05783)
+ (pt 635.95607 347.02679)
+ (pt 636.08838 346.93838)
+ (pt 636.17679 346.80607)
+ (pt 636.20138 346.68243)
+ (pt 636.44884 346.84778)
+ (pt 636.8 346.91763)
+ (pt 637.15116 346.84778)
+ (pt 637.44886 346.64886)
+ (pt 637.64778 346.35116)
+ (pt 637.71763 346.0)
+ (pt 637.64778 345.64884)
+ (pt 637.44886 345.35114)
+ (pt 637.15116 345.15222)
+ (pt 636.8 345.08237)
+ (pt 636.44884 345.15222)
+ (pt 636.20138 345.31757)
+ (pt 636.17679 345.19393)
+ (pt 636.08838 345.06162)
+ (pt 635.95607 344.97321)
+ (pt 635.8 344.94217)
+ (pt 634.6 344.94217)
+ (pt 634.44393 344.97321)
+ (pt 634.40384 345.0)
+ (pt 633.99616 345.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 632.64778 340.04884)
+ (pt 632.44886 339.75114)
+ (pt 632.15116 339.55222)
+ (pt 631.8 339.48237)
+ (pt 631.44884 339.55222)
+ (pt 631.15114 339.75114)
+ (pt 630.95222 340.04884)
+ (pt 630.88237 340.4)
+ (pt 630.95222 340.75116)
+ (pt 631.15114 341.04886)
+ (pt 631.44884 341.24778)
+ (pt 631.8 341.31763)
+ (pt 632.15116 341.24778)
+ (pt 632.44886 341.04886)
+ (pt 632.64778 340.75116)
+ (pt 632.71763 340.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 324.64243)
+ (pt 642.23438 324.37438)
+ (pt 642.50243 323.97321)
+ (pt 642.59656 323.5)
+ (pt 642.50243 323.02679)
+ (pt 642.23438 322.62562)
+ (pt 641.83321 322.35757)
+ (pt 641.36 322.26344)
+ (pt 640.88679 322.35757)
+ (pt 640.48562 322.62562)
+ (pt 640.21757 323.02679)
+ (pt 640.12344 323.5)
+ (pt 640.21757 323.97321)
+ (pt 640.48562 324.37438)
+ (pt 640.88679 324.64243)
+ (pt 641.36 324.73656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 567.58778 278.22884)
+ (pt 567.38886 277.93114)
+ (pt 567.09116 277.73222)
+ (pt 566.74 277.66237)
+ (pt 566.38884 277.73222)
+ (pt 566.09114 277.93114)
+ (pt 565.89222 278.22884)
+ (pt 565.82237 278.58)
+ (pt 565.89222 278.93116)
+ (pt 566.09114 279.22886)
+ (pt 566.38884 279.42778)
+ (pt 566.74 279.49763)
+ (pt 567.09116 279.42778)
+ (pt 567.38886 279.22886)
+ (pt 567.58778 278.93116)
+ (pt 567.65763 278.58)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 567.66 340.49256)
+ (pt 567.57162 340.55162)
+ (pt 567.48321 340.68393)
+ (pt 567.45217 340.84)
+ (pt 567.45217 341.64)
+ (pt 567.48321 341.79607)
+ (pt 567.57162 341.92838)
+ (pt 567.70393 342.01679)
+ (pt 567.86 342.04783)
+ (pt 568.66 342.04783)
+ (pt 568.81607 342.01679)
+ (pt 568.94838 341.92838)
+ (pt 569.03679 341.79607)
+ (pt 569.06783 341.64)
+ (pt 569.06783 341.44042)
+ (pt 569.18 341.46273)
+ (pt 569.43361 341.41228)
+ (pt 569.64862 341.26862)
+ (pt 569.71 341.17676)
+ (pt 569.77138 341.26862)
+ (pt 569.98639 341.41228)
+ (pt 570.24 341.46273)
+ (pt 570.49361 341.41228)
+ (pt 570.70862 341.26862)
+ (pt 570.85228 341.05361)
+ (pt 570.90273 340.8)
+ (pt 570.85228 340.54639)
+ (pt 570.70862 340.33138)
+ (pt 570.49361 340.18772)
+ (pt 570.24 340.13727)
+ (pt 569.98639 340.18772)
+ (pt 569.77138 340.33138)
+ (pt 569.71 340.42324)
+ (pt 569.64862 340.33138)
+ (pt 569.56165 340.27327)
+ (pt 569.56862 340.26862)
+ (pt 569.71228 340.05361)
+ (pt 569.76273 339.8)
+ (pt 569.71228 339.54639)
+ (pt 569.56862 339.33138)
+ (pt 569.51197 339.29353)
+ (pt 569.39922 339.18078)
+ (pt 568.98757 339.01026)
+ (pt 568.94838 338.95162)
+ (pt 568.81607 338.86321)
+ (pt 568.66 338.83217)
+ (pt 567.86 338.83217)
+ (pt 567.70393 338.86321)
+ (pt 567.57162 338.95162)
+ (pt 567.48321 339.08393)
+ (pt 567.45217 339.24)
+ (pt 567.45217 340.04)
+ (pt 567.48321 340.19607)
+ (pt 567.57162 340.32838)
+ (pt 567.66 340.38744)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 577.815 372.21717)
+ (pt 577.65893 372.24821)
+ (pt 577.52662 372.33662)
+ (pt 577.43821 372.46893)
+ (pt 577.40717 372.625)
+ (pt 577.40717 373.875)
+ (pt 577.43821 374.03107)
+ (pt 577.52662 374.16338)
+ (pt 577.65431 374.2487)
+ (pt 577.63217 374.36)
+ (pt 577.63217 376.36)
+ (pt 577.66321 376.51607)
+ (pt 577.75162 376.64838)
+ (pt 577.85457 376.71717)
+ (pt 577.815 376.71717)
+ (pt 577.65893 376.74821)
+ (pt 577.52662 376.83662)
+ (pt 577.43821 376.96893)
+ (pt 577.40717 377.125)
+ (pt 577.40717 378.375)
+ (pt 577.43821 378.53107)
+ (pt 577.52662 378.66338)
+ (pt 577.65893 378.75179)
+ (pt 577.815 378.78283)
+ (pt 578.2433 378.78283)
+ (pt 578.11114 378.87114)
+ (pt 577.91222 379.16884)
+ (pt 577.84237 379.52)
+ (pt 577.91222 379.87116)
+ (pt 578.11114 380.16886)
+ (pt 578.40884 380.36778)
+ (pt 578.76 380.43763)
+ (pt 579.11116 380.36778)
+ (pt 579.40886 380.16886)
+ (pt 579.60778 379.87116)
+ (pt 579.67763 379.52)
+ (pt 579.60778 379.16884)
+ (pt 579.40886 378.87114)
+ (pt 579.2767 378.78283)
+ (pt 579.815 378.78283)
+ (pt 579.97107 378.75179)
+ (pt 580.10338 378.66338)
+ (pt 580.19179 378.53107)
+ (pt 580.22283 378.375)
+ (pt 580.22283 377.125)
+ (pt 580.19179 376.96893)
+ (pt 580.10338 376.83662)
+ (pt 580.00043 376.76783)
+ (pt 580.04 376.76783)
+ (pt 580.19607 376.73679)
+ (pt 580.32838 376.64838)
+ (pt 580.41679 376.51607)
+ (pt 580.44783 376.36)
+ (pt 580.44783 374.36)
+ (pt 580.41679 374.20393)
+ (pt 580.32838 374.07162)
+ (pt 580.20069 373.9863)
+ (pt 580.22283 373.875)
+ (pt 580.22283 372.625)
+ (pt 580.19179 372.46893)
+ (pt 580.10338 372.33662)
+ (pt 579.97107 372.24821)
+ (pt 579.815 372.21717)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.26324 410.74324)
+ (pt 489.08642 411.00786)
+ (pt 489.02433 411.32)
+ (pt 489.08642 411.63214)
+ (pt 489.26324 411.89676)
+ (pt 489.52786 412.07358)
+ (pt 489.84 412.13567)
+ (pt 490.15214 412.07358)
+ (pt 490.41676 411.89676)
+ (pt 490.59358 411.63214)
+ (pt 490.61115 411.54381)
+ (pt 490.61748 411.53748)
+ (pt 490.82355 411.04)
+ (pt 490.82355 410.78568)
+ (pt 490.86744 410.72)
+ (pt 490.97256 410.72)
+ (pt 491.03162 410.80838)
+ (pt 491.16393 410.89679)
+ (pt 491.32 410.92783)
+ (pt 492.11471 410.92783)
+ (pt 492.10433 410.98)
+ (pt 492.16642 411.29214)
+ (pt 492.34324 411.55676)
+ (pt 492.60786 411.73358)
+ (pt 492.92 411.79567)
+ (pt 493.23214 411.73358)
+ (pt 493.49676 411.55676)
+ (pt 493.67358 411.29214)
+ (pt 493.73567 410.98)
+ (pt 493.67358 410.66786)
+ (pt 493.49676 410.40324)
+ (pt 493.23214 410.22642)
+ (pt 492.92 410.16433)
+ (pt 492.60786 410.22642)
+ (pt 492.52783 410.2799)
+ (pt 492.52783 409.72)
+ (pt 492.49679 409.56393)
+ (pt 492.40838 409.43162)
+ (pt 492.27607 409.34321)
+ (pt 492.12 409.31217)
+ (pt 491.32 409.31217)
+ (pt 491.16393 409.34321)
+ (pt 491.03162 409.43162)
+ (pt 490.97256 409.52)
+ (pt 490.86744 409.52)
+ (pt 490.80838 409.43162)
+ (pt 490.67607 409.34321)
+ (pt 490.52 409.31217)
+ (pt 489.72 409.31217)
+ (pt 489.56393 409.34321)
+ (pt 489.43162 409.43162)
+ (pt 489.34321 409.56393)
+ (pt 489.31217 409.72)
+ (pt 489.31217 410.52)
+ (pt 489.34321 410.67607)
+ (pt 489.34955 410.68556)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.30778 301.66884)
+ (pt 617.10886 301.37114)
+ (pt 616.81116 301.17222)
+ (pt 616.46 301.10237)
+ (pt 616.10884 301.17222)
+ (pt 615.81114 301.37114)
+ (pt 615.61222 301.66884)
+ (pt 615.54237 302.02)
+ (pt 615.61222 302.37116)
+ (pt 615.81114 302.66886)
+ (pt 616.10884 302.86778)
+ (pt 616.46 302.93763)
+ (pt 616.81116 302.86778)
+ (pt 617.10886 302.66886)
+ (pt 617.30778 302.37116)
+ (pt 617.37763 302.02)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 294.16243)
+ (pt 642.23438 293.89438)
+ (pt 642.50243 293.49321)
+ (pt 642.59656 293.02)
+ (pt 642.50243 292.54679)
+ (pt 642.23438 292.14562)
+ (pt 641.83321 291.87757)
+ (pt 641.36 291.78344)
+ (pt 640.88679 291.87757)
+ (pt 640.48562 292.14562)
+ (pt 640.21757 292.54679)
+ (pt 640.12344 293.02)
+ (pt 640.21757 293.49321)
+ (pt 640.48562 293.89438)
+ (pt 640.88679 294.16243)
+ (pt 641.36 294.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 296.70243)
+ (pt 642.23438 296.43438)
+ (pt 642.50243 296.03321)
+ (pt 642.59656 295.56)
+ (pt 642.50243 295.08679)
+ (pt 642.23438 294.68562)
+ (pt 641.83321 294.41757)
+ (pt 641.36 294.32344)
+ (pt 640.88679 294.41757)
+ (pt 640.48562 294.68562)
+ (pt 640.21757 295.08679)
+ (pt 640.12344 295.56)
+ (pt 640.21757 296.03321)
+ (pt 640.48562 296.43438)
+ (pt 640.88679 296.70243)
+ (pt 641.36 296.79656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 294.16243)
+ (pt 639.69438 293.89438)
+ (pt 639.96243 293.49321)
+ (pt 640.05656 293.02)
+ (pt 639.96243 292.54679)
+ (pt 639.69438 292.14562)
+ (pt 639.29321 291.87757)
+ (pt 638.82 291.78344)
+ (pt 638.34679 291.87757)
+ (pt 637.94562 292.14562)
+ (pt 637.67757 292.54679)
+ (pt 637.58344 293.02)
+ (pt 637.67757 293.49321)
+ (pt 637.94562 293.89438)
+ (pt 638.34679 294.16243)
+ (pt 638.82 294.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 296.70243)
+ (pt 639.69438 296.43438)
+ (pt 639.96243 296.03321)
+ (pt 640.05656 295.56)
+ (pt 639.96243 295.08679)
+ (pt 639.69438 294.68562)
+ (pt 639.29321 294.41757)
+ (pt 638.82 294.32344)
+ (pt 638.34679 294.41757)
+ (pt 637.94562 294.68562)
+ (pt 637.67757 295.08679)
+ (pt 637.58344 295.56)
+ (pt 637.67757 296.03321)
+ (pt 637.94562 296.43438)
+ (pt 638.34679 296.70243)
+ (pt 638.82 296.79656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 617.36778 283.80884)
+ (pt 617.16886 283.51114)
+ (pt 616.87116 283.31222)
+ (pt 616.52 283.24237)
+ (pt 616.16884 283.31222)
+ (pt 615.87114 283.51114)
+ (pt 615.67222 283.80884)
+ (pt 615.60237 284.16)
+ (pt 615.67222 284.51116)
+ (pt 615.87114 284.80886)
+ (pt 616.16884 285.00778)
+ (pt 616.52 285.07763)
+ (pt 616.87116 285.00778)
+ (pt 617.16886 284.80886)
+ (pt 617.36778 284.51116)
+ (pt 617.43763 284.16)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 286.54243)
+ (pt 642.23438 286.27438)
+ (pt 642.50243 285.87321)
+ (pt 642.59656 285.4)
+ (pt 642.50243 284.92679)
+ (pt 642.23438 284.52562)
+ (pt 641.83321 284.25757)
+ (pt 641.36 284.16344)
+ (pt 640.88679 284.25757)
+ (pt 640.48562 284.52562)
+ (pt 640.21757 284.92679)
+ (pt 640.12344 285.4)
+ (pt 640.21757 285.87321)
+ (pt 640.48562 286.27438)
+ (pt 640.88679 286.54243)
+ (pt 641.36 286.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 289.08243)
+ (pt 642.23438 288.81438)
+ (pt 642.50243 288.41321)
+ (pt 642.59656 287.94)
+ (pt 642.50243 287.46679)
+ (pt 642.23438 287.06562)
+ (pt 641.83321 286.79757)
+ (pt 641.36 286.70344)
+ (pt 640.88679 286.79757)
+ (pt 640.48562 287.06562)
+ (pt 640.21757 287.46679)
+ (pt 640.12344 287.94)
+ (pt 640.21757 288.41321)
+ (pt 640.48562 288.81438)
+ (pt 640.88679 289.08243)
+ (pt 641.36 289.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 286.54243)
+ (pt 639.69438 286.27438)
+ (pt 639.96243 285.87321)
+ (pt 640.05656 285.4)
+ (pt 639.96243 284.92679)
+ (pt 639.69438 284.52562)
+ (pt 639.29321 284.25757)
+ (pt 638.82 284.16344)
+ (pt 638.34679 284.25757)
+ (pt 637.94562 284.52562)
+ (pt 637.67757 284.92679)
+ (pt 637.58344 285.4)
+ (pt 637.67757 285.87321)
+ (pt 637.94562 286.27438)
+ (pt 638.34679 286.54243)
+ (pt 638.82 286.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 289.08243)
+ (pt 639.69438 288.81438)
+ (pt 639.96243 288.41321)
+ (pt 640.05656 287.94)
+ (pt 639.96243 287.46679)
+ (pt 639.69438 287.06562)
+ (pt 639.29321 286.79757)
+ (pt 638.82 286.70344)
+ (pt 638.34679 286.79757)
+ (pt 637.94562 287.06562)
+ (pt 637.67757 287.46679)
+ (pt 637.58344 287.94)
+ (pt 637.67757 288.41321)
+ (pt 637.94562 288.81438)
+ (pt 638.34679 289.08243)
+ (pt 638.82 289.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 278.92243)
+ (pt 642.23438 278.65438)
+ (pt 642.50243 278.25321)
+ (pt 642.59656 277.78)
+ (pt 642.50243 277.30679)
+ (pt 642.23438 276.90562)
+ (pt 641.83321 276.63757)
+ (pt 641.36 276.54344)
+ (pt 640.88679 276.63757)
+ (pt 640.48562 276.90562)
+ (pt 640.21757 277.30679)
+ (pt 640.12344 277.78)
+ (pt 640.21757 278.25321)
+ (pt 640.48562 278.65438)
+ (pt 640.88679 278.92243)
+ (pt 641.36 279.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 281.46243)
+ (pt 642.23438 281.19438)
+ (pt 642.50243 280.79321)
+ (pt 642.59656 280.32)
+ (pt 642.50243 279.84679)
+ (pt 642.23438 279.44562)
+ (pt 641.83321 279.17757)
+ (pt 641.36 279.08344)
+ (pt 640.88679 279.17757)
+ (pt 640.48562 279.44562)
+ (pt 640.21757 279.84679)
+ (pt 640.12344 280.32)
+ (pt 640.21757 280.79321)
+ (pt 640.48562 281.19438)
+ (pt 640.88679 281.46243)
+ (pt 641.36 281.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 278.92243)
+ (pt 639.69438 278.65438)
+ (pt 639.96243 278.25321)
+ (pt 640.05656 277.78)
+ (pt 639.96243 277.30679)
+ (pt 639.69438 276.90562)
+ (pt 639.29321 276.63757)
+ (pt 638.82 276.54344)
+ (pt 638.34679 276.63757)
+ (pt 637.94562 276.90562)
+ (pt 637.67757 277.30679)
+ (pt 637.58344 277.78)
+ (pt 637.67757 278.25321)
+ (pt 637.94562 278.65438)
+ (pt 638.34679 278.92243)
+ (pt 638.82 279.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 281.46243)
+ (pt 639.69438 281.19438)
+ (pt 639.96243 280.79321)
+ (pt 640.05656 280.32)
+ (pt 639.96243 279.84679)
+ (pt 639.69438 279.44562)
+ (pt 639.29321 279.17757)
+ (pt 638.82 279.08344)
+ (pt 638.34679 279.17757)
+ (pt 637.94562 279.44562)
+ (pt 637.67757 279.84679)
+ (pt 637.58344 280.32)
+ (pt 637.67757 280.79321)
+ (pt 637.94562 281.19438)
+ (pt 638.34679 281.46243)
+ (pt 638.82 281.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 324.64243)
+ (pt 639.69438 324.37438)
+ (pt 639.96243 323.97321)
+ (pt 640.05656 323.5)
+ (pt 639.96243 323.02679)
+ (pt 639.69438 322.62562)
+ (pt 639.29321 322.35757)
+ (pt 638.82 322.26344)
+ (pt 638.34679 322.35757)
+ (pt 637.94562 322.62562)
+ (pt 637.67757 323.02679)
+ (pt 637.58344 323.5)
+ (pt 637.67757 323.97321)
+ (pt 637.94562 324.37438)
+ (pt 638.34679 324.64243)
+ (pt 638.82 324.73656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 625.13358 265.08786)
+ (pt 624.95676 264.82324)
+ (pt 624.69214 264.64642)
+ (pt 624.38 264.58433)
+ (pt 624.06786 264.64642)
+ (pt 623.80324 264.82324)
+ (pt 623.62642 265.08786)
+ (pt 623.56433 265.4)
+ (pt 623.62642 265.71214)
+ (pt 623.80324 265.97676)
+ (pt 624.06786 266.15358)
+ (pt 624.38 266.21567)
+ (pt 624.69214 266.15358)
+ (pt 624.95676 265.97676)
+ (pt 625.13358 265.71214)
+ (pt 625.19567 265.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 263.68243)
+ (pt 642.23438 263.41438)
+ (pt 642.50243 263.01321)
+ (pt 642.59656 262.54)
+ (pt 642.50243 262.06679)
+ (pt 642.23438 261.66562)
+ (pt 641.83321 261.39757)
+ (pt 641.36 261.30344)
+ (pt 640.88679 261.39757)
+ (pt 640.48562 261.66562)
+ (pt 640.21757 262.06679)
+ (pt 640.12344 262.54)
+ (pt 640.21757 263.01321)
+ (pt 640.48562 263.41438)
+ (pt 640.88679 263.68243)
+ (pt 641.36 263.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 632.64778 260.58884)
+ (pt 632.44886 260.29114)
+ (pt 632.15116 260.09222)
+ (pt 631.8 260.02237)
+ (pt 631.44884 260.09222)
+ (pt 631.15114 260.29114)
+ (pt 630.95222 260.58884)
+ (pt 630.88237 260.94)
+ (pt 630.95222 261.29116)
+ (pt 631.06424 261.4588)
+ (pt 629.79975 261.4588)
+ (pt 629.79679 261.44393)
+ (pt 629.70838 261.31162)
+ (pt 629.57607 261.22321)
+ (pt 629.42 261.19217)
+ (pt 628.62 261.19217)
+ (pt 628.46393 261.22321)
+ (pt 628.33162 261.31162)
+ (pt 628.27256 261.4)
+ (pt 628.16744 261.4)
+ (pt 628.10838 261.31162)
+ (pt 627.97607 261.22321)
+ (pt 627.82 261.19217)
+ (pt 627.02 261.19217)
+ (pt 626.86393 261.22321)
+ (pt 626.73162 261.31162)
+ (pt 626.64321 261.44393)
+ (pt 626.64025 261.4588)
+ (pt 622.50052 261.4588)
+ (pt 622.47676 261.42324)
+ (pt 622.21214 261.24642)
+ (pt 621.9 261.18433)
+ (pt 621.58786 261.24642)
+ (pt 621.32324 261.42324)
+ (pt 621.14642 261.68786)
+ (pt 621.08433 262.0)
+ (pt 621.14642 262.31214)
+ (pt 621.32324 262.57676)
+ (pt 621.58786 262.75358)
+ (pt 621.9 262.81567)
+ (pt 622.21214 262.75358)
+ (pt 622.47676 262.57676)
+ (pt 622.50052 262.5412)
+ (pt 626.64025 262.5412)
+ (pt 626.64321 262.55607)
+ (pt 626.73162 262.68838)
+ (pt 626.86393 262.77679)
+ (pt 627.02 262.80783)
+ (pt 627.82 262.80783)
+ (pt 627.97607 262.77679)
+ (pt 628.10838 262.68838)
+ (pt 628.16744 262.6)
+ (pt 628.27256 262.6)
+ (pt 628.33162 262.68838)
+ (pt 628.46393 262.77679)
+ (pt 628.62 262.80783)
+ (pt 629.42 262.80783)
+ (pt 629.57607 262.77679)
+ (pt 629.70838 262.68838)
+ (pt 629.79679 262.55607)
+ (pt 629.79975 262.5412)
+ (pt 635.05582 262.5412)
+ (pt 636.71731 264.20269)
+ (pt 637.1 264.3612)
+ (pt 637.84167 264.3612)
+ (pt 637.67757 264.60679)
+ (pt 637.58344 265.08)
+ (pt 637.67757 265.55321)
+ (pt 637.94562 265.95438)
+ (pt 638.34679 266.22243)
+ (pt 638.82 266.31656)
+ (pt 639.29321 266.22243)
+ (pt 639.69438 265.95438)
+ (pt 639.96243 265.55321)
+ (pt 640.05656 265.08)
+ (pt 639.96243 264.60679)
+ (pt 639.79833 264.3612)
+ (pt 639.87582 264.3612)
+ (pt 640.20162 264.687)
+ (pt 640.12344 265.08)
+ (pt 640.21757 265.55321)
+ (pt 640.48562 265.95438)
+ (pt 640.88679 266.22243)
+ (pt 641.36 266.31656)
+ (pt 641.83321 266.22243)
+ (pt 642.23438 265.95438)
+ (pt 642.50243 265.55321)
+ (pt 642.59656 265.08)
+ (pt 642.50243 264.60679)
+ (pt 642.23438 264.20562)
+ (pt 641.83321 263.93757)
+ (pt 641.36 263.84344)
+ (pt 640.967 263.92162)
+ (pt 640.48269 263.43731)
+ (pt 640.1 263.2788)
+ (pt 639.78497 263.2788)
+ (pt 639.96243 263.01321)
+ (pt 640.05656 262.54)
+ (pt 639.96243 262.06679)
+ (pt 639.69438 261.66562)
+ (pt 639.29321 261.39757)
+ (pt 638.82 261.30344)
+ (pt 638.34679 261.39757)
+ (pt 637.94562 261.66562)
+ (pt 637.67757 262.06679)
+ (pt 637.58344 262.54)
+ (pt 637.67757 263.01321)
+ (pt 637.85503 263.2788)
+ (pt 637.32418 263.2788)
+ (pt 635.66269 261.61731)
+ (pt 635.28 261.4588)
+ (pt 632.53576 261.4588)
+ (pt 632.64778 261.29116)
+ (pt 632.71763 260.94)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 583.0 379.90783)
+ (pt 583.15607 379.87679)
+ (pt 583.28838 379.78838)
+ (pt 583.37679 379.65607)
+ (pt 583.40783 379.5)
+ (pt 583.40783 378.5)
+ (pt 583.37679 378.34393)
+ (pt 583.28838 378.21162)
+ (pt 583.15607 378.12321)
+ (pt 583.0 378.09217)
+ (pt 582.0 378.09217)
+ (pt 581.84393 378.12321)
+ (pt 581.71162 378.21162)
+ (pt 581.62321 378.34393)
+ (pt 581.59217 378.5)
+ (pt 581.59217 379.5)
+ (pt 581.62321 379.65607)
+ (pt 581.71162 379.78838)
+ (pt 581.84393 379.87679)
+ (pt 582.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 585.5 379.90783)
+ (pt 585.65607 379.87679)
+ (pt 585.78838 379.78838)
+ (pt 585.87679 379.65607)
+ (pt 585.90783 379.5)
+ (pt 585.90783 378.5)
+ (pt 585.87679 378.34393)
+ (pt 585.78838 378.21162)
+ (pt 585.65607 378.12321)
+ (pt 585.5 378.09217)
+ (pt 584.5 378.09217)
+ (pt 584.34393 378.12321)
+ (pt 584.21162 378.21162)
+ (pt 584.12321 378.34393)
+ (pt 584.09217 378.5)
+ (pt 584.09217 379.5)
+ (pt 584.12321 379.65607)
+ (pt 584.21162 379.78838)
+ (pt 584.34393 379.87679)
+ (pt 584.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 590.5 379.90783)
+ (pt 590.65607 379.87679)
+ (pt 590.78838 379.78838)
+ (pt 590.87679 379.65607)
+ (pt 590.90783 379.5)
+ (pt 590.90783 378.5)
+ (pt 590.87679 378.34393)
+ (pt 590.78838 378.21162)
+ (pt 590.65607 378.12321)
+ (pt 590.5 378.09217)
+ (pt 589.5 378.09217)
+ (pt 589.34393 378.12321)
+ (pt 589.21162 378.21162)
+ (pt 589.12321 378.34393)
+ (pt 589.09217 378.5)
+ (pt 589.09217 379.5)
+ (pt 589.12321 379.65607)
+ (pt 589.21162 379.78838)
+ (pt 589.34393 379.87679)
+ (pt 589.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 593.0 379.90783)
+ (pt 593.15607 379.87679)
+ (pt 593.28838 379.78838)
+ (pt 593.37679 379.65607)
+ (pt 593.40783 379.5)
+ (pt 593.40783 378.5)
+ (pt 593.37679 378.34393)
+ (pt 593.28838 378.21162)
+ (pt 593.15607 378.12321)
+ (pt 593.0 378.09217)
+ (pt 592.0 378.09217)
+ (pt 591.84393 378.12321)
+ (pt 591.71162 378.21162)
+ (pt 591.62321 378.34393)
+ (pt 591.59217 378.5)
+ (pt 591.59217 379.5)
+ (pt 591.62321 379.65607)
+ (pt 591.71162 379.78838)
+ (pt 591.84393 379.87679)
+ (pt 592.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 598.0 379.90783)
+ (pt 598.15607 379.87679)
+ (pt 598.28838 379.78838)
+ (pt 598.37679 379.65607)
+ (pt 598.40783 379.5)
+ (pt 598.40783 378.5)
+ (pt 598.37679 378.34393)
+ (pt 598.28838 378.21162)
+ (pt 598.15607 378.12321)
+ (pt 598.0 378.09217)
+ (pt 597.0 378.09217)
+ (pt 596.84393 378.12321)
+ (pt 596.71162 378.21162)
+ (pt 596.62321 378.34393)
+ (pt 596.59217 378.5)
+ (pt 596.59217 379.5)
+ (pt 596.62321 379.65607)
+ (pt 596.71162 379.78838)
+ (pt 596.84393 379.87679)
+ (pt 597.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 604.64778 340.54884)
+ (pt 604.44886 340.25114)
+ (pt 604.15116 340.05222)
+ (pt 603.8 339.98237)
+ (pt 603.44884 340.05222)
+ (pt 603.15114 340.25114)
+ (pt 602.95222 340.54884)
+ (pt 602.88237 340.9)
+ (pt 602.95222 341.25116)
+ (pt 603.15114 341.54886)
+ (pt 603.44884 341.74778)
+ (pt 603.8 341.81763)
+ (pt 604.15116 341.74778)
+ (pt 604.44886 341.54886)
+ (pt 604.64778 341.25116)
+ (pt 604.71763 340.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 606.81228 353.40639)
+ (pt 606.66862 353.19138)
+ (pt 606.45361 353.04772)
+ (pt 606.2 352.99727)
+ (pt 605.94639 353.04772)
+ (pt 605.73138 353.19138)
+ (pt 605.58772 353.40639)
+ (pt 605.53727 353.66)
+ (pt 605.58772 353.91361)
+ (pt 605.73138 354.12862)
+ (pt 605.94639 354.27228)
+ (pt 606.2 354.32273)
+ (pt 606.45361 354.27228)
+ (pt 606.66862 354.12862)
+ (pt 606.81228 353.91361)
+ (pt 606.86273 353.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 256.06243)
+ (pt 639.69438 255.79438)
+ (pt 639.96243 255.39321)
+ (pt 640.05656 254.92)
+ (pt 639.96243 254.44679)
+ (pt 639.69438 254.04562)
+ (pt 639.29321 253.77757)
+ (pt 638.82 253.68344)
+ (pt 638.34679 253.77757)
+ (pt 637.94562 254.04562)
+ (pt 637.67757 254.44679)
+ (pt 637.58344 254.92)
+ (pt 637.67757 255.39321)
+ (pt 637.94562 255.79438)
+ (pt 638.34679 256.06243)
+ (pt 638.82 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 258.60243)
+ (pt 639.69438 258.33438)
+ (pt 639.96243 257.93321)
+ (pt 640.05656 257.46)
+ (pt 639.96243 256.98679)
+ (pt 639.69438 256.58562)
+ (pt 639.29321 256.31757)
+ (pt 638.82 256.22344)
+ (pt 638.34679 256.31757)
+ (pt 637.94562 256.58562)
+ (pt 637.67757 256.98679)
+ (pt 637.58344 257.46)
+ (pt 637.67757 257.93321)
+ (pt 637.94562 258.33438)
+ (pt 638.34679 258.60243)
+ (pt 638.82 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 258.60243)
+ (pt 642.23438 258.33438)
+ (pt 642.50243 257.93321)
+ (pt 642.59656 257.46)
+ (pt 642.50243 256.98679)
+ (pt 642.23438 256.58562)
+ (pt 641.83321 256.31757)
+ (pt 641.36 256.22344)
+ (pt 640.88679 256.31757)
+ (pt 640.48562 256.58562)
+ (pt 640.21757 256.98679)
+ (pt 640.12344 257.46)
+ (pt 640.21757 257.93321)
+ (pt 640.48562 258.33438)
+ (pt 640.88679 258.60243)
+ (pt 641.36 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 250.98243)
+ (pt 642.23438 250.71438)
+ (pt 642.50243 250.31321)
+ (pt 642.59656 249.84)
+ (pt 642.50243 249.36679)
+ (pt 642.23438 248.96562)
+ (pt 641.83321 248.69757)
+ (pt 641.36 248.60344)
+ (pt 640.88679 248.69757)
+ (pt 640.48562 248.96562)
+ (pt 640.21757 249.36679)
+ (pt 640.12344 249.84)
+ (pt 640.21757 250.31321)
+ (pt 640.48562 250.71438)
+ (pt 640.88679 250.98243)
+ (pt 641.36 251.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 248.44243)
+ (pt 639.69438 248.17438)
+ (pt 639.96243 247.77321)
+ (pt 640.05656 247.3)
+ (pt 639.96243 246.82679)
+ (pt 639.69438 246.42562)
+ (pt 639.29321 246.15757)
+ (pt 638.82 246.06344)
+ (pt 638.34679 246.15757)
+ (pt 637.94562 246.42562)
+ (pt 637.67757 246.82679)
+ (pt 637.58344 247.3)
+ (pt 637.67757 247.77321)
+ (pt 637.94562 248.17438)
+ (pt 638.34679 248.44243)
+ (pt 638.82 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 613.06778 290.72884)
+ (pt 612.86886 290.43114)
+ (pt 612.57116 290.23222)
+ (pt 612.22 290.16237)
+ (pt 611.86884 290.23222)
+ (pt 611.57114 290.43114)
+ (pt 611.37222 290.72884)
+ (pt 611.30237 291.08)
+ (pt 611.37222 291.43116)
+ (pt 611.57114 291.72886)
+ (pt 611.86884 291.92778)
+ (pt 612.22 291.99763)
+ (pt 612.57116 291.92778)
+ (pt 612.86886 291.72886)
+ (pt 613.06778 291.43116)
+ (pt 613.13763 291.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 612.92778 299.24884)
+ (pt 612.72886 298.95114)
+ (pt 612.43116 298.75222)
+ (pt 612.08 298.68237)
+ (pt 611.72884 298.75222)
+ (pt 611.43114 298.95114)
+ (pt 611.23222 299.24884)
+ (pt 611.16237 299.6)
+ (pt 611.23222 299.95116)
+ (pt 611.43114 300.24886)
+ (pt 611.72884 300.44778)
+ (pt 612.08 300.51763)
+ (pt 612.43116 300.44778)
+ (pt 612.72886 300.24886)
+ (pt 612.92778 299.95116)
+ (pt 612.99763 299.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.11358 302.40786)
+ (pt 613.93676 302.14324)
+ (pt 613.67214 301.96642)
+ (pt 613.36 301.90433)
+ (pt 613.04786 301.96642)
+ (pt 612.78324 302.14324)
+ (pt 612.60642 302.40786)
+ (pt 612.54433 302.72)
+ (pt 612.60642 303.03214)
+ (pt 612.78324 303.29676)
+ (pt 613.04786 303.47358)
+ (pt 613.36 303.53567)
+ (pt 613.67214 303.47358)
+ (pt 613.93676 303.29676)
+ (pt 614.11358 303.03214)
+ (pt 614.17567 302.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 616.53358 318.26786)
+ (pt 616.35676 318.00324)
+ (pt 616.09214 317.82642)
+ (pt 615.78 317.76433)
+ (pt 615.46786 317.82642)
+ (pt 615.20324 318.00324)
+ (pt 615.02642 318.26786)
+ (pt 614.96433 318.58)
+ (pt 615.02642 318.89214)
+ (pt 615.20324 319.15676)
+ (pt 615.46786 319.33358)
+ (pt 615.78 319.39567)
+ (pt 616.09214 319.33358)
+ (pt 616.35676 319.15676)
+ (pt 616.53358 318.89214)
+ (pt 616.59567 318.58)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 616.95228 405.94639)
+ (pt 616.80862 405.73138)
+ (pt 616.59361 405.58772)
+ (pt 616.34 405.53727)
+ (pt 616.08639 405.58772)
+ (pt 615.87138 405.73138)
+ (pt 615.72772 405.94639)
+ (pt 615.67944 406.18909)
+ (pt 615.62 406.17727)
+ (pt 615.36639 406.22772)
+ (pt 615.15138 406.37138)
+ (pt 615.00772 406.58639)
+ (pt 614.95727 406.84)
+ (pt 615.00772 407.09361)
+ (pt 615.15138 407.30862)
+ (pt 615.36639 407.45228)
+ (pt 615.62 407.50273)
+ (pt 615.87361 407.45228)
+ (pt 616.08862 407.30862)
+ (pt 616.23228 407.09361)
+ (pt 616.28056 406.85091)
+ (pt 616.34 406.86273)
+ (pt 616.59361 406.81228)
+ (pt 616.80862 406.66862)
+ (pt 616.95228 406.45361)
+ (pt 617.00273 406.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 613.15358 407.56786)
+ (pt 612.97676 407.30324)
+ (pt 612.71214 407.12642)
+ (pt 612.4 407.06433)
+ (pt 612.08786 407.12642)
+ (pt 611.82324 407.30324)
+ (pt 611.64642 407.56786)
+ (pt 611.58433 407.88)
+ (pt 611.64642 408.19214)
+ (pt 611.82324 408.45676)
+ (pt 612.08786 408.63358)
+ (pt 612.4 408.69567)
+ (pt 612.71214 408.63358)
+ (pt 612.97676 408.45676)
+ (pt 613.15358 408.19214)
+ (pt 613.21567 407.88)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 515.52778 411.42884)
+ (pt 515.32886 411.13114)
+ (pt 515.03116 410.93222)
+ (pt 514.68 410.86237)
+ (pt 514.32884 410.93222)
+ (pt 514.03114 411.13114)
+ (pt 513.83222 411.42884)
+ (pt 513.76237 411.78)
+ (pt 513.83222 412.13116)
+ (pt 514.03114 412.42886)
+ (pt 514.32884 412.62778)
+ (pt 514.68 412.69763)
+ (pt 515.03116 412.62778)
+ (pt 515.32886 412.42886)
+ (pt 515.52778 412.13116)
+ (pt 515.59763 411.78)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 515.94778 394.88884)
+ (pt 515.74886 394.59114)
+ (pt 515.45116 394.39222)
+ (pt 515.1 394.32237)
+ (pt 514.74884 394.39222)
+ (pt 514.45114 394.59114)
+ (pt 514.25222 394.88884)
+ (pt 514.18237 395.24)
+ (pt 514.25222 395.59116)
+ (pt 514.45114 395.88886)
+ (pt 514.74884 396.08778)
+ (pt 515.1 396.15763)
+ (pt 515.45116 396.08778)
+ (pt 515.74886 395.88886)
+ (pt 515.94778 395.59116)
+ (pt 516.01763 395.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 250.98243)
+ (pt 639.69438 250.71438)
+ (pt 639.96243 250.31321)
+ (pt 640.05656 249.84)
+ (pt 639.96243 249.36679)
+ (pt 639.69438 248.96562)
+ (pt 639.29321 248.69757)
+ (pt 638.82 248.60344)
+ (pt 638.34679 248.69757)
+ (pt 637.94562 248.96562)
+ (pt 637.67757 249.36679)
+ (pt 637.58344 249.84)
+ (pt 637.67757 250.31321)
+ (pt 637.94562 250.71438)
+ (pt 638.34679 250.98243)
+ (pt 638.82 251.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 615.65358 414.68786)
+ (pt 615.47676 414.42324)
+ (pt 615.21214 414.24642)
+ (pt 614.9 414.18433)
+ (pt 614.58786 414.24642)
+ (pt 614.32324 414.42324)
+ (pt 614.14642 414.68786)
+ (pt 614.08433 415.0)
+ (pt 614.14642 415.31214)
+ (pt 614.32324 415.57676)
+ (pt 614.58786 415.75358)
+ (pt 614.9 415.81567)
+ (pt 615.21214 415.75358)
+ (pt 615.47676 415.57676)
+ (pt 615.65358 415.31214)
+ (pt 615.71567 415.0)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 613.70778 421.36884)
+ (pt 613.50886 421.07114)
+ (pt 613.21116 420.87222)
+ (pt 612.86 420.80237)
+ (pt 612.50884 420.87222)
+ (pt 612.21114 421.07114)
+ (pt 612.01222 421.36884)
+ (pt 611.94237 421.72)
+ (pt 612.01222 422.07116)
+ (pt 612.21114 422.36886)
+ (pt 612.50884 422.56778)
+ (pt 612.86 422.63763)
+ (pt 613.21116 422.56778)
+ (pt 613.50886 422.36886)
+ (pt 613.70778 422.07116)
+ (pt 613.77763 421.72)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 615.65358 424.28786)
+ (pt 615.47676 424.02324)
+ (pt 615.21214 423.84642)
+ (pt 614.9 423.78433)
+ (pt 614.58786 423.84642)
+ (pt 614.32324 424.02324)
+ (pt 614.14642 424.28786)
+ (pt 614.08433 424.6)
+ (pt 614.14642 424.91214)
+ (pt 614.32324 425.17676)
+ (pt 614.58786 425.35358)
+ (pt 614.9 425.41567)
+ (pt 615.21214 425.35358)
+ (pt 615.47676 425.17676)
+ (pt 615.65358 424.91214)
+ (pt 615.71567 424.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 613.94778 431.14884)
+ (pt 613.74886 430.85114)
+ (pt 613.45116 430.65222)
+ (pt 613.1 430.58237)
+ (pt 612.74884 430.65222)
+ (pt 612.45114 430.85114)
+ (pt 612.25222 431.14884)
+ (pt 612.18237 431.5)
+ (pt 612.25222 431.85116)
+ (pt 612.45114 432.14886)
+ (pt 612.74884 432.34778)
+ (pt 613.1 432.41763)
+ (pt 613.45116 432.34778)
+ (pt 613.74886 432.14886)
+ (pt 613.94778 431.85116)
+ (pt 614.01763 431.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 621.29358 284.50786)
+ (pt 621.11676 284.24324)
+ (pt 620.85214 284.06642)
+ (pt 620.54 284.00433)
+ (pt 620.22786 284.06642)
+ (pt 619.96324 284.24324)
+ (pt 619.78642 284.50786)
+ (pt 619.72433 284.82)
+ (pt 619.78642 285.13214)
+ (pt 619.96324 285.39676)
+ (pt 620.22786 285.57358)
+ (pt 620.54 285.63567)
+ (pt 620.85214 285.57358)
+ (pt 621.11676 285.39676)
+ (pt 621.29358 285.13214)
+ (pt 621.35567 284.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.95358 284.30786)
+ (pt 623.77676 284.04324)
+ (pt 623.51214 283.86642)
+ (pt 623.2 283.80433)
+ (pt 622.88786 283.86642)
+ (pt 622.62324 284.04324)
+ (pt 622.44642 284.30786)
+ (pt 622.38433 284.62)
+ (pt 622.44642 284.93214)
+ (pt 622.62324 285.19676)
+ (pt 622.88786 285.37358)
+ (pt 623.2 285.43567)
+ (pt 623.51214 285.37358)
+ (pt 623.77676 285.19676)
+ (pt 623.95358 284.93214)
+ (pt 624.01567 284.62)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 621.15358 293.28786)
+ (pt 620.97676 293.02324)
+ (pt 620.71214 292.84642)
+ (pt 620.4 292.78433)
+ (pt 620.08786 292.84642)
+ (pt 619.82324 293.02324)
+ (pt 619.64642 293.28786)
+ (pt 619.58433 293.6)
+ (pt 619.64642 293.91214)
+ (pt 619.82324 294.17676)
+ (pt 620.08786 294.35358)
+ (pt 620.4 294.41567)
+ (pt 620.71214 294.35358)
+ (pt 620.97676 294.17676)
+ (pt 621.15358 293.91214)
+ (pt 621.21567 293.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.93358 292.76786)
+ (pt 623.75676 292.50324)
+ (pt 623.49214 292.32642)
+ (pt 623.18 292.26433)
+ (pt 622.86786 292.32642)
+ (pt 622.60324 292.50324)
+ (pt 622.42642 292.76786)
+ (pt 622.36433 293.08)
+ (pt 622.42642 293.39214)
+ (pt 622.60324 293.65676)
+ (pt 622.86786 293.83358)
+ (pt 623.18 293.89567)
+ (pt 623.49214 293.83358)
+ (pt 623.75676 293.65676)
+ (pt 623.93358 293.39214)
+ (pt 623.99567 293.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.73358 306.90786)
+ (pt 623.55676 306.64324)
+ (pt 623.29214 306.46642)
+ (pt 622.98 306.40433)
+ (pt 622.66786 306.46642)
+ (pt 622.40324 306.64324)
+ (pt 622.22642 306.90786)
+ (pt 622.16433 307.22)
+ (pt 622.22642 307.53214)
+ (pt 622.40324 307.79676)
+ (pt 622.66786 307.97358)
+ (pt 622.98 308.03567)
+ (pt 623.29214 307.97358)
+ (pt 623.55676 307.79676)
+ (pt 623.73358 307.53214)
+ (pt 623.79567 307.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.37358 308.14786)
+ (pt 620.19676 307.88324)
+ (pt 619.93214 307.70642)
+ (pt 619.62 307.64433)
+ (pt 619.30786 307.70642)
+ (pt 619.04324 307.88324)
+ (pt 618.86642 308.14786)
+ (pt 618.80433 308.46)
+ (pt 618.86642 308.77214)
+ (pt 619.04324 309.03676)
+ (pt 619.30786 309.21358)
+ (pt 619.62 309.27567)
+ (pt 619.93214 309.21358)
+ (pt 620.19676 309.03676)
+ (pt 620.37358 308.77214)
+ (pt 620.43567 308.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 623.51358 322.58786)
+ (pt 623.33676 322.32324)
+ (pt 623.07214 322.14642)
+ (pt 622.76 322.08433)
+ (pt 622.44786 322.14642)
+ (pt 622.18324 322.32324)
+ (pt 622.06594 322.49879)
+ (pt 622.07763 322.44)
+ (pt 622.00778 322.08884)
+ (pt 621.80886 321.79114)
+ (pt 621.51116 321.59222)
+ (pt 621.16 321.52237)
+ (pt 620.80884 321.59222)
+ (pt 620.51114 321.79114)
+ (pt 620.31222 322.08884)
+ (pt 620.24237 322.44)
+ (pt 620.31222 322.79116)
+ (pt 620.51114 323.08886)
+ (pt 620.80884 323.28778)
+ (pt 621.16 323.35763)
+ (pt 621.51116 323.28778)
+ (pt 621.80886 323.08886)
+ (pt 621.94826 322.88023)
+ (pt 621.94433 322.9)
+ (pt 622.00642 323.21214)
+ (pt 622.18324 323.47676)
+ (pt 622.44786 323.65358)
+ (pt 622.76 323.71567)
+ (pt 623.07214 323.65358)
+ (pt 623.33676 323.47676)
+ (pt 623.51358 323.21214)
+ (pt 623.57567 322.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.40778 345.88884)
+ (pt 619.20886 345.59114)
+ (pt 618.91116 345.39222)
+ (pt 618.56 345.32237)
+ (pt 618.20884 345.39222)
+ (pt 617.91114 345.59114)
+ (pt 617.71222 345.88884)
+ (pt 617.64237 346.24)
+ (pt 617.71222 346.59116)
+ (pt 617.91114 346.88886)
+ (pt 618.20884 347.08778)
+ (pt 618.56 347.15763)
+ (pt 618.91116 347.08778)
+ (pt 619.20886 346.88886)
+ (pt 619.40778 346.59116)
+ (pt 619.47763 346.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.30778 348.38884)
+ (pt 619.10886 348.09114)
+ (pt 618.81116 347.89222)
+ (pt 618.46 347.82237)
+ (pt 618.10884 347.89222)
+ (pt 617.81114 348.09114)
+ (pt 617.61222 348.38884)
+ (pt 617.54237 348.74)
+ (pt 617.61222 349.09116)
+ (pt 617.81114 349.38886)
+ (pt 618.10884 349.58778)
+ (pt 618.46 349.65763)
+ (pt 618.81116 349.58778)
+ (pt 619.10886 349.38886)
+ (pt 619.30778 349.09116)
+ (pt 619.37763 348.74)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.20778 353.38884)
+ (pt 619.00886 353.09114)
+ (pt 618.71116 352.89222)
+ (pt 618.36 352.82237)
+ (pt 618.00884 352.89222)
+ (pt 617.71114 353.09114)
+ (pt 617.51222 353.38884)
+ (pt 617.44237 353.74)
+ (pt 617.51222 354.09116)
+ (pt 617.71114 354.38886)
+ (pt 618.00884 354.58778)
+ (pt 618.36 354.65763)
+ (pt 618.71116 354.58778)
+ (pt 619.00886 354.38886)
+ (pt 619.20778 354.09116)
+ (pt 619.27763 353.74)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.26778 405.18884)
+ (pt 620.06886 404.89114)
+ (pt 619.77116 404.69222)
+ (pt 619.42 404.62237)
+ (pt 619.06884 404.69222)
+ (pt 618.77114 404.89114)
+ (pt 618.57222 405.18884)
+ (pt 618.50237 405.54)
+ (pt 618.57222 405.89116)
+ (pt 618.77114 406.18886)
+ (pt 619.06884 406.38778)
+ (pt 619.42 406.45763)
+ (pt 619.77116 406.38778)
+ (pt 620.06886 406.18886)
+ (pt 620.26778 405.89116)
+ (pt 620.33763 405.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.53358 415.32786)
+ (pt 620.35676 415.06324)
+ (pt 620.09214 414.88642)
+ (pt 619.78 414.82433)
+ (pt 619.46786 414.88642)
+ (pt 619.20324 415.06324)
+ (pt 619.02642 415.32786)
+ (pt 618.96433 415.64)
+ (pt 619.02642 415.95214)
+ (pt 619.20324 416.21676)
+ (pt 619.46786 416.39358)
+ (pt 619.78 416.45567)
+ (pt 620.09214 416.39358)
+ (pt 620.35676 416.21676)
+ (pt 620.53358 415.95214)
+ (pt 620.59567 415.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 622.45358 412.90786)
+ (pt 622.27676 412.64324)
+ (pt 622.01214 412.46642)
+ (pt 621.7 412.40433)
+ (pt 621.38786 412.46642)
+ (pt 621.12324 412.64324)
+ (pt 620.94642 412.90786)
+ (pt 620.88433 413.22)
+ (pt 620.94642 413.53214)
+ (pt 621.12324 413.79676)
+ (pt 621.38786 413.97358)
+ (pt 621.7 414.03567)
+ (pt 622.01214 413.97358)
+ (pt 622.27676 413.79676)
+ (pt 622.45358 413.53214)
+ (pt 622.51567 413.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.78778 423.68884)
+ (pt 620.58886 423.39114)
+ (pt 620.29116 423.19222)
+ (pt 619.94 423.12237)
+ (pt 619.58884 423.19222)
+ (pt 619.29114 423.39114)
+ (pt 619.09222 423.68884)
+ (pt 619.02237 424.04)
+ (pt 619.09222 424.39116)
+ (pt 619.29114 424.68886)
+ (pt 619.58884 424.88778)
+ (pt 619.94 424.95763)
+ (pt 620.29116 424.88778)
+ (pt 620.40117 424.81428)
+ (pt 620.34433 425.1)
+ (pt 620.40642 425.41214)
+ (pt 620.58324 425.67676)
+ (pt 620.84786 425.85358)
+ (pt 621.16 425.91567)
+ (pt 621.47214 425.85358)
+ (pt 621.73676 425.67676)
+ (pt 621.91358 425.41214)
+ (pt 621.97567 425.1)
+ (pt 621.91358 424.78786)
+ (pt 621.73676 424.52324)
+ (pt 621.47214 424.34642)
+ (pt 621.16 424.28433)
+ (pt 620.84786 424.34642)
+ (pt 620.78883 424.38586)
+ (pt 620.85763 424.04)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 624.21358 424.32786)
+ (pt 624.03676 424.06324)
+ (pt 623.77214 423.88642)
+ (pt 623.46 423.82433)
+ (pt 623.14786 423.88642)
+ (pt 622.88324 424.06324)
+ (pt 622.70642 424.32786)
+ (pt 622.64433 424.64)
+ (pt 622.70642 424.95214)
+ (pt 622.88324 425.21676)
+ (pt 623.14786 425.39358)
+ (pt 623.46 425.45567)
+ (pt 623.77214 425.39358)
+ (pt 624.03676 425.21676)
+ (pt 624.21358 424.95214)
+ (pt 624.27567 424.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 628.24778 255.98884)
+ (pt 628.04886 255.69114)
+ (pt 627.75116 255.49222)
+ (pt 627.4 255.42237)
+ (pt 627.04884 255.49222)
+ (pt 626.75114 255.69114)
+ (pt 626.55222 255.98884)
+ (pt 626.48237 256.34)
+ (pt 626.55222 256.69116)
+ (pt 626.75114 256.98886)
+ (pt 627.04884 257.18778)
+ (pt 627.4 257.25763)
+ (pt 627.75116 257.18778)
+ (pt 628.04886 256.98886)
+ (pt 628.24778 256.69116)
+ (pt 628.31763 256.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 630.84778 255.96884)
+ (pt 630.64886 255.67114)
+ (pt 630.35116 255.47222)
+ (pt 630.0 255.40237)
+ (pt 629.64884 255.47222)
+ (pt 629.35114 255.67114)
+ (pt 629.15222 255.96884)
+ (pt 629.08237 256.32)
+ (pt 629.15222 256.67116)
+ (pt 629.35114 256.96886)
+ (pt 629.64884 257.16778)
+ (pt 630.0 257.23763)
+ (pt 630.35116 257.16778)
+ (pt 630.64886 256.96886)
+ (pt 630.84778 256.67116)
+ (pt 630.91763 256.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 628.22778 263.44884)
+ (pt 628.02886 263.15114)
+ (pt 627.73116 262.95222)
+ (pt 627.38 262.88237)
+ (pt 627.02884 262.95222)
+ (pt 626.73114 263.15114)
+ (pt 626.53222 263.44884)
+ (pt 626.46237 263.8)
+ (pt 626.53222 264.15116)
+ (pt 626.73114 264.44886)
+ (pt 627.02884 264.64778)
+ (pt 627.38 264.71763)
+ (pt 627.73116 264.64778)
+ (pt 628.02886 264.44886)
+ (pt 628.22778 264.15116)
+ (pt 628.29763 263.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 630.80778 263.50884)
+ (pt 630.60886 263.21114)
+ (pt 630.31116 263.01222)
+ (pt 629.96 262.94237)
+ (pt 629.60884 263.01222)
+ (pt 629.31114 263.21114)
+ (pt 629.11222 263.50884)
+ (pt 629.04237 263.86)
+ (pt 629.11222 264.21116)
+ (pt 629.31114 264.50886)
+ (pt 629.60884 264.70778)
+ (pt 629.96 264.77763)
+ (pt 630.31116 264.70778)
+ (pt 630.60886 264.50886)
+ (pt 630.80778 264.21116)
+ (pt 630.87763 263.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 552.32 358.91532)
+ (pt 552.74095 358.74095)
+ (pt 553.14658 358.33532)
+ (pt 553.88101 358.33532)
+ (pt 553.90639 358.35228)
+ (pt 554.16 358.40273)
+ (pt 554.41361 358.35228)
+ (pt 554.62862 358.20862)
+ (pt 554.77228 357.99361)
+ (pt 554.82273 357.74)
+ (pt 554.80944 357.67319)
+ (pt 554.80944 357.64113)
+ (pt 554.88838 357.58838)
+ (pt 554.97679 357.45607)
+ (pt 555.00783 357.3)
+ (pt 555.00783 356.5)
+ (pt 554.97679 356.34393)
+ (pt 554.88838 356.21162)
+ (pt 554.8 356.15256)
+ (pt 554.8 356.04744)
+ (pt 554.88838 355.98838)
+ (pt 554.97679 355.85607)
+ (pt 555.00783 355.7)
+ (pt 555.00783 354.9)
+ (pt 554.97679 354.74393)
+ (pt 554.88838 354.61162)
+ (pt 554.75607 354.52321)
+ (pt 554.6 354.49217)
+ (pt 553.8 354.49217)
+ (pt 553.64393 354.52321)
+ (pt 553.51162 354.61162)
+ (pt 553.42321 354.74393)
+ (pt 553.39217 354.9)
+ (pt 553.39217 355.22743)
+ (pt 553.14 355.17727)
+ (pt 552.88639 355.22772)
+ (pt 552.67138 355.37138)
+ (pt 552.52772 355.58639)
+ (pt 552.47727 355.84)
+ (pt 552.52772 356.09361)
+ (pt 552.5523 356.1304)
+ (pt 552.34095 355.91905)
+ (pt 551.92 355.74468)
+ (pt 551.84377 355.74468)
+ (pt 551.81228 355.58639)
+ (pt 551.66862 355.37138)
+ (pt 551.45361 355.22772)
+ (pt 551.2 355.17727)
+ (pt 550.94639 355.22772)
+ (pt 550.73138 355.37138)
+ (pt 550.69 355.43331)
+ (pt 550.64862 355.37138)
+ (pt 550.60669 355.34336)
+ (pt 550.68862 355.28862)
+ (pt 550.83228 355.07361)
+ (pt 550.88273 354.82)
+ (pt 550.83228 354.56639)
+ (pt 550.68862 354.35138)
+ (pt 550.60669 354.29664)
+ (pt 550.64862 354.26862)
+ (pt 550.69332 354.20172)
+ (pt 550.75138 354.28862)
+ (pt 550.96639 354.43228)
+ (pt 551.22 354.48273)
+ (pt 551.47361 354.43228)
+ (pt 551.68862 354.28862)
+ (pt 551.83228 354.07361)
+ (pt 551.88273 353.82)
+ (pt 551.83228 353.56639)
+ (pt 551.68862 353.35138)
+ (pt 551.60669 353.29664)
+ (pt 551.64862 353.26862)
+ (pt 551.73004 353.14676)
+ (pt 551.77138 353.20862)
+ (pt 551.98639 353.35228)
+ (pt 552.24 353.40273)
+ (pt 552.49361 353.35228)
+ (pt 552.70862 353.20862)
+ (pt 552.74668 353.15165)
+ (pt 552.77138 353.18862)
+ (pt 552.98639 353.33228)
+ (pt 553.24 353.38273)
+ (pt 553.49217 353.33257)
+ (pt 553.49217 353.6)
+ (pt 553.52321 353.75607)
+ (pt 553.61162 353.88838)
+ (pt 553.74393 353.97679)
+ (pt 553.9 354.00783)
+ (pt 554.7 354.00783)
+ (pt 554.85607 353.97679)
+ (pt 554.98838 353.88838)
+ (pt 555.07679 353.75607)
+ (pt 555.0832 353.72385)
+ (pt 555.23922 353.65922)
+ (pt 555.55197 353.34647)
+ (pt 555.60862 353.30862)
+ (pt 555.75228 353.09361)
+ (pt 555.80273 352.84)
+ (pt 555.77215 352.68627)
+ (pt 555.78 352.68783)
+ (pt 556.58 352.68783)
+ (pt 556.73607 352.65679)
+ (pt 556.86838 352.56838)
+ (pt 556.8944 352.52944)
+ (pt 557.04 352.52944)
+ (pt 557.49922 352.33922)
+ (pt 557.57197 352.26647)
+ (pt 557.62862 352.22862)
+ (pt 557.77228 352.01361)
+ (pt 557.82273 351.76)
+ (pt 557.77228 351.50639)
+ (pt 557.62862 351.29138)
+ (pt 557.41361 351.14772)
+ (pt 557.16 351.09727)
+ (pt 556.90639 351.14772)
+ (pt 556.85453 351.18237)
+ (pt 556.78 351.13256)
+ (pt 556.78 351.02744)
+ (pt 556.86838 350.96838)
+ (pt 556.95679 350.83607)
+ (pt 556.98783 350.68)
+ (pt 556.98783 350.45644)
+ (pt 557.12 350.48273)
+ (pt 557.37361 350.43228)
+ (pt 557.55385 350.31185)
+ (pt 557.59162 350.36838)
+ (pt 557.72393 350.45679)
+ (pt 557.88 350.48783)
+ (pt 558.68 350.48783)
+ (pt 558.68024 350.48778)
+ (pt 558.62772 350.56639)
+ (pt 558.57727 350.82)
+ (pt 558.62772 351.07361)
+ (pt 558.77138 351.28862)
+ (pt 558.81835 351.32)
+ (pt 558.77138 351.35138)
+ (pt 558.62772 351.56639)
+ (pt 558.57727 351.82)
+ (pt 558.62772 352.07361)
+ (pt 558.77138 352.28862)
+ (pt 558.98639 352.43228)
+ (pt 559.24 352.48273)
+ (pt 559.49361 352.43228)
+ (pt 559.70862 352.28862)
+ (pt 559.85228 352.07361)
+ (pt 559.90273 351.82)
+ (pt 559.85228 351.56639)
+ (pt 559.70862 351.35138)
+ (pt 559.66165 351.32)
+ (pt 559.70862 351.28862)
+ (pt 559.85228 351.07361)
+ (pt 559.90273 350.82)
+ (pt 559.85228 350.56639)
+ (pt 559.70862 350.35138)
+ (pt 559.60676 350.28332)
+ (pt 559.68862 350.22862)
+ (pt 559.83228 350.01361)
+ (pt 559.88273 349.76)
+ (pt 559.86042 349.64783)
+ (pt 560.6 349.64783)
+ (pt 560.75607 349.61679)
+ (pt 560.88838 349.52838)
+ (pt 560.94744 349.44)
+ (pt 561.05256 349.44)
+ (pt 561.11162 349.52838)
+ (pt 561.21608 349.59818)
+ (pt 561.31301 349.83217)
+ (pt 560.94 349.83217)
+ (pt 560.78393 349.86321)
+ (pt 560.65162 349.95162)
+ (pt 560.56321 350.08393)
+ (pt 560.53217 350.24)
+ (pt 560.53217 351.04)
+ (pt 560.56321 351.19607)
+ (pt 560.65162 351.32838)
+ (pt 560.78393 351.41679)
+ (pt 560.94 351.44783)
+ (pt 561.62685 351.44783)
+ (pt 561.58772 351.50639)
+ (pt 561.53727 351.76)
+ (pt 561.58772 352.01361)
+ (pt 561.73138 352.22862)
+ (pt 561.94639 352.37228)
+ (pt 562.2 352.42273)
+ (pt 562.2083 352.42108)
+ (pt 562.22321 352.49607)
+ (pt 562.31162 352.62838)
+ (pt 562.44393 352.71679)
+ (pt 562.52126 352.73217)
+ (pt 562.38 352.73217)
+ (pt 562.22393 352.76321)
+ (pt 562.09162 352.85162)
+ (pt 562.03256 352.94)
+ (pt 561.92744 352.94)
+ (pt 561.86838 352.85162)
+ (pt 561.73607 352.76321)
+ (pt 561.58 352.73217)
+ (pt 561.29061 352.73217)
+ (pt 560.95922 352.40078)
+ (pt 560.5 352.21056)
+ (pt 560.22681 352.21056)
+ (pt 560.16 352.19727)
+ (pt 559.90639 352.24772)
+ (pt 559.69138 352.39138)
+ (pt 559.54772 352.60639)
+ (pt 559.49727 352.86)
+ (pt 559.54772 353.11361)
+ (pt 559.69138 353.32862)
+ (pt 559.74338 353.36336)
+ (pt 559.73138 353.37138)
+ (pt 559.68 353.44828)
+ (pt 559.62862 353.37138)
+ (pt 559.41361 353.22772)
+ (pt 559.16 353.17727)
+ (pt 558.90639 353.22772)
+ (pt 558.69138 353.37138)
+ (pt 558.54772 353.58639)
+ (pt 558.49727 353.84)
+ (pt 558.54772 354.09361)
+ (pt 558.68081 354.2928)
+ (pt 558.49361 354.16772)
+ (pt 558.24 354.11727)
+ (pt 557.98639 354.16772)
+ (pt 557.77138 354.31138)
+ (pt 557.68664 354.43821)
+ (pt 557.62862 354.35138)
+ (pt 557.41361 354.20772)
+ (pt 557.16 354.15727)
+ (pt 556.90639 354.20772)
+ (pt 556.69138 354.35138)
+ (pt 556.65353 354.40803)
+ (pt 556.50078 354.56078)
+ (pt 556.31056 355.02)
+ (pt 556.31056 355.0256)
+ (pt 556.27162 355.05162)
+ (pt 556.18321 355.18393)
+ (pt 556.15217 355.34)
+ (pt 556.15217 356.13076)
+ (pt 555.96639 356.16772)
+ (pt 555.75138 356.31138)
+ (pt 555.60772 356.52639)
+ (pt 555.55727 356.78)
+ (pt 555.60772 357.03361)
+ (pt 555.75138 357.24862)
+ (pt 555.77835 357.26664)
+ (pt 555.71138 357.31138)
+ (pt 555.56772 357.52639)
+ (pt 555.51727 357.78)
+ (pt 555.56772 358.03361)
+ (pt 555.71138 358.24862)
+ (pt 555.92639 358.39228)
+ (pt 556.18 358.44273)
+ (pt 556.43361 358.39228)
+ (pt 556.64862 358.24862)
+ (pt 556.79228 358.03361)
+ (pt 556.84273 357.78)
+ (pt 556.79228 357.52639)
+ (pt 556.64862 357.31138)
+ (pt 556.62165 357.29336)
+ (pt 556.68862 357.24862)
+ (pt 556.72 357.20165)
+ (pt 556.75138 357.24862)
+ (pt 556.96639 357.39228)
+ (pt 557.22 357.44273)
+ (pt 557.47361 357.39228)
+ (pt 557.68862 357.24862)
+ (pt 557.69332 357.24159)
+ (pt 557.71138 357.26862)
+ (pt 557.72841 357.28)
+ (pt 557.71138 357.29138)
+ (pt 557.56772 357.50639)
+ (pt 557.51727 357.76)
+ (pt 557.56772 358.01361)
+ (pt 557.71138 358.22862)
+ (pt 557.73338 358.24332)
+ (pt 557.69138 358.27138)
+ (pt 557.54772 358.48639)
+ (pt 557.49727 358.74)
+ (pt 557.54772 358.99361)
+ (pt 557.69138 359.20862)
+ (pt 557.90639 359.35228)
+ (pt 558.16 359.40273)
+ (pt 558.41361 359.35228)
+ (pt 558.62862 359.20862)
+ (pt 558.66664 359.15172)
+ (pt 558.73138 359.24862)
+ (pt 558.94639 359.39228)
+ (pt 559.2 359.44273)
+ (pt 559.45361 359.39228)
+ (pt 559.66862 359.24862)
+ (pt 559.81228 359.03361)
+ (pt 559.86273 358.78)
+ (pt 559.81228 358.52639)
+ (pt 559.66862 358.31138)
+ (pt 559.60669 358.27)
+ (pt 559.66862 358.22862)
+ (pt 559.81228 358.01361)
+ (pt 559.86273 357.76)
+ (pt 559.81228 357.50639)
+ (pt 559.66862 357.29138)
+ (pt 559.65159 357.28)
+ (pt 559.66862 357.26862)
+ (pt 559.70336 357.21662)
+ (pt 559.71138 357.22862)
+ (pt 559.92639 357.37228)
+ (pt 560.18 357.42273)
+ (pt 560.43361 357.37228)
+ (pt 560.64862 357.22862)
+ (pt 560.68664 357.17172)
+ (pt 560.75138 357.26862)
+ (pt 560.75338 357.26996)
+ (pt 560.69138 357.31138)
+ (pt 560.54772 357.52639)
+ (pt 560.49727 357.78)
+ (pt 560.54772 358.03361)
+ (pt 560.69138 358.24862)
+ (pt 560.70841 358.26)
+ (pt 560.69138 358.27138)
+ (pt 560.54772 358.48639)
+ (pt 560.49727 358.74)
+ (pt 560.54772 358.99361)
+ (pt 560.69138 359.20862)
+ (pt 560.90639 359.35228)
+ (pt 561.16 359.40273)
+ (pt 561.41361 359.35228)
+ (pt 561.62862 359.20862)
+ (pt 561.77228 358.99361)
+ (pt 561.82273 358.74)
+ (pt 561.77228 358.48639)
+ (pt 561.62862 358.27138)
+ (pt 561.61159 358.26)
+ (pt 561.62862 358.24862)
+ (pt 561.68 358.17172)
+ (pt 561.73138 358.24862)
+ (pt 561.94639 358.39228)
+ (pt 562.2 358.44273)
+ (pt 562.45361 358.39228)
+ (pt 562.66862 358.24862)
+ (pt 562.68332 358.22662)
+ (pt 562.71138 358.26862)
+ (pt 562.92639 358.41228)
+ (pt 563.18 358.46273)
+ (pt 563.43361 358.41228)
+ (pt 563.49858 358.36887)
+ (pt 563.51162 358.38838)
+ (pt 563.64393 358.47679)
+ (pt 563.64716 358.47743)
+ (pt 563.58772 358.56639)
+ (pt 563.53727 358.82)
+ (pt 563.58772 359.07361)
+ (pt 563.72648 359.28129)
+ (pt 563.71138 359.29138)
+ (pt 563.67668 359.34331)
+ (pt 563.62862 359.27138)
+ (pt 563.41361 359.12772)
+ (pt 563.16 359.07727)
+ (pt 562.90639 359.12772)
+ (pt 562.69138 359.27138)
+ (pt 562.54772 359.48639)
+ (pt 562.49727 359.74)
+ (pt 562.54772 359.99361)
+ (pt 562.69138 360.20862)
+ (pt 562.73835 360.24)
+ (pt 562.69138 360.27138)
+ (pt 562.66332 360.31338)
+ (pt 562.64862 360.29138)
+ (pt 562.43361 360.14772)
+ (pt 562.18 360.09727)
+ (pt 561.92639 360.14772)
+ (pt 561.91317 360.15655)
+ (pt 561.88679 360.02393)
+ (pt 561.79838 359.89162)
+ (pt 561.66607 359.80321)
+ (pt 561.51 359.77217)
+ (pt 560.81633 359.77217)
+ (pt 560.82273 359.74)
+ (pt 560.77228 359.48639)
+ (pt 560.62862 359.27138)
+ (pt 560.41361 359.12772)
+ (pt 560.16 359.07727)
+ (pt 559.90639 359.12772)
+ (pt 559.69138 359.27138)
+ (pt 559.54772 359.48639)
+ (pt 559.49727 359.74)
+ (pt 559.51056 359.80681)
+ (pt 559.51056 360.08)
+ (pt 559.70078 360.53922)
+ (pt 559.80217 360.64061)
+ (pt 559.80217 361.38)
+ (pt 559.82809 361.51032)
+ (pt 559.74862 361.39138)
+ (pt 559.53361 361.24772)
+ (pt 559.28 361.19727)
+ (pt 559.02639 361.24772)
+ (pt 558.81138 361.39138)
+ (pt 558.79341 361.41828)
+ (pt 558.70862 361.29138)
+ (pt 558.61669 361.22996)
+ (pt 558.64862 361.20862)
+ (pt 558.79228 360.99361)
+ (pt 558.84273 360.74)
+ (pt 558.79228 360.48639)
+ (pt 558.64862 360.27138)
+ (pt 558.43361 360.12772)
+ (pt 558.18 360.07727)
+ (pt 557.92639 360.12772)
+ (pt 557.71138 360.27138)
+ (pt 557.67 360.33331)
+ (pt 557.62862 360.27138)
+ (pt 557.57165 360.23332)
+ (pt 557.60862 360.20862)
+ (pt 557.75228 359.99361)
+ (pt 557.80273 359.74)
+ (pt 557.75228 359.48639)
+ (pt 557.60862 359.27138)
+ (pt 557.39361 359.12772)
+ (pt 557.14 359.07727)
+ (pt 556.88639 359.12772)
+ (pt 556.67138 359.27138)
+ (pt 556.65 359.30338)
+ (pt 556.62862 359.27138)
+ (pt 556.41361 359.12772)
+ (pt 556.16 359.07727)
+ (pt 555.90639 359.12772)
+ (pt 555.69138 359.27138)
+ (pt 555.66588 359.30955)
+ (pt 555.45361 359.16772)
+ (pt 555.2 359.11727)
+ (pt 554.94639 359.16772)
+ (pt 554.73138 359.31138)
+ (pt 554.69668 359.36331)
+ (pt 554.64862 359.29138)
+ (pt 554.43361 359.14772)
+ (pt 554.18 359.09727)
+ (pt 553.92639 359.14772)
+ (pt 553.71138 359.29138)
+ (pt 553.68 359.33835)
+ (pt 553.64862 359.29138)
+ (pt 553.43361 359.14772)
+ (pt 553.18 359.09727)
+ (pt 552.92639 359.14772)
+ (pt 552.71138 359.29138)
+ (pt 552.68 359.33835)
+ (pt 552.64862 359.29138)
+ (pt 552.43361 359.14772)
+ (pt 552.18 359.09727)
+ (pt 551.92639 359.14772)
+ (pt 551.71138 359.29138)
+ (pt 551.56772 359.50639)
+ (pt 551.51727 359.76)
+ (pt 551.56772 360.01361)
+ (pt 551.71138 360.22862)
+ (pt 551.74835 360.25332)
+ (pt 551.69138 360.29138)
+ (pt 551.67 360.32338)
+ (pt 551.64862 360.29138)
+ (pt 551.43361 360.14772)
+ (pt 551.18 360.09727)
+ (pt 550.92639 360.14772)
+ (pt 550.71138 360.29138)
+ (pt 550.56772 360.50639)
+ (pt 550.51727 360.76)
+ (pt 550.56772 361.01361)
+ (pt 550.71138 361.22862)
+ (pt 550.78324 361.27664)
+ (pt 550.67138 361.35138)
+ (pt 550.52772 361.56639)
+ (pt 550.47727 361.82)
+ (pt 550.52772 362.07361)
+ (pt 550.67138 362.28862)
+ (pt 550.88639 362.43228)
+ (pt 551.14 362.48273)
+ (pt 551.39361 362.43228)
+ (pt 551.60862 362.28862)
+ (pt 551.61871 362.27352)
+ (pt 551.82639 362.41228)
+ (pt 552.08 362.46273)
+ (pt 552.33361 362.41228)
+ (pt 552.54862 362.26862)
+ (pt 552.63673 362.13676)
+ (pt 552.67138 362.18862)
+ (pt 552.88639 362.33228)
+ (pt 553.14 362.38273)
+ (pt 553.39361 362.33228)
+ (pt 553.60862 362.18862)
+ (pt 553.64 362.14165)
+ (pt 553.67138 362.18862)
+ (pt 553.88639 362.33228)
+ (pt 554.14 362.38273)
+ (pt 554.39361 362.33228)
+ (pt 554.60862 362.18862)
+ (pt 554.62332 362.16662)
+ (pt 554.65138 362.20862)
+ (pt 554.86639 362.35228)
+ (pt 555.12 362.40273)
+ (pt 555.37361 362.35228)
+ (pt 555.58862 362.20862)
+ (pt 555.66 362.10179)
+ (pt 555.73138 362.20862)
+ (pt 555.94639 362.35228)
+ (pt 556.2 362.40273)
+ (pt 556.45361 362.35228)
+ (pt 556.66862 362.20862)
+ (pt 556.68332 362.18662)
+ (pt 556.71138 362.22862)
+ (pt 556.92639 362.37228)
+ (pt 557.18 362.42273)
+ (pt 557.43361 362.37228)
+ (pt 557.64862 362.22862)
+ (pt 557.71 362.13676)
+ (pt 557.77138 362.22862)
+ (pt 557.98639 362.37228)
+ (pt 558.24 362.42273)
+ (pt 558.24062 362.42261)
+ (pt 558.21727 362.54)
+ (pt 558.26772 362.79361)
+ (pt 558.41138 363.00862)
+ (pt 558.62639 363.15228)
+ (pt 558.88 363.20273)
+ (pt 559.03479 363.17194)
+ (pt 559.01727 363.26)
+ (pt 559.06772 363.51361)
+ (pt 559.21138 363.72862)
+ (pt 559.42639 363.87228)
+ (pt 559.68 363.92273)
+ (pt 559.93361 363.87228)
+ (pt 560.09441 363.76484)
+ (pt 560.21 363.78783)
+ (pt 560.55958 363.78783)
+ (pt 560.54356 363.86839)
+ (pt 560.44639 363.88772)
+ (pt 560.23138 364.03138)
+ (pt 560.08772 364.24639)
+ (pt 560.03727 364.5)
+ (pt 560.08772 364.75361)
+ (pt 560.23138 364.96862)
+ (pt 560.44639 365.11228)
+ (pt 560.7 365.16273)
+ (pt 560.95361 365.11228)
+ (pt 561.16862 364.96862)
+ (pt 561.2 364.92165)
+ (pt 561.23138 364.96862)
+ (pt 561.44639 365.11228)
+ (pt 561.7 365.16273)
+ (pt 561.95361 365.11228)
+ (pt 562.16862 364.96862)
+ (pt 562.31228 364.75361)
+ (pt 562.36273 364.5)
+ (pt 562.31228 364.24639)
+ (pt 562.16862 364.03138)
+ (pt 561.95361 363.88772)
+ (pt 561.85644 363.86839)
+ (pt 561.81246 363.64731)
+ (pt 561.88679 363.53607)
+ (pt 561.91783 363.38)
+ (pt 561.91783 362.18)
+ (pt 561.88679 362.02393)
+ (pt 561.86 361.98384)
+ (pt 561.86 361.57616)
+ (pt 561.88679 361.53607)
+ (pt 561.91783 361.38)
+ (pt 561.91783 361.36656)
+ (pt 561.92639 361.37228)
+ (pt 562.18 361.42273)
+ (pt 562.43361 361.37228)
+ (pt 562.64862 361.22862)
+ (pt 562.67668 361.18662)
+ (pt 562.69138 361.20862)
+ (pt 562.81324 361.29004)
+ (pt 562.75138 361.33138)
+ (pt 562.60772 361.54639)
+ (pt 562.55727 361.8)
+ (pt 562.60772 362.05361)
+ (pt 562.75138 362.26862)
+ (pt 562.96639 362.41228)
+ (pt 563.22 362.46273)
+ (pt 563.47361 362.41228)
+ (pt 563.68862 362.26862)
+ (pt 563.71668 362.22662)
+ (pt 563.73138 362.24862)
+ (pt 563.94639 362.39228)
+ (pt 564.2 362.44273)
+ (pt 564.45361 362.39228)
+ (pt 564.66862 362.24862)
+ (pt 564.74336 362.13676)
+ (pt 564.79138 362.20862)
+ (pt 565.00639 362.35228)
+ (pt 565.26 362.40273)
+ (pt 565.51361 362.35228)
+ (pt 565.72862 362.20862)
+ (pt 565.87228 361.99361)
+ (pt 565.92273 361.74)
+ (pt 565.87228 361.48639)
+ (pt 565.72862 361.27138)
+ (pt 565.61669 361.19659)
+ (pt 565.62862 361.18862)
+ (pt 565.77228 360.97361)
+ (pt 565.82273 360.72)
+ (pt 565.77228 360.46639)
+ (pt 565.62862 360.25138)
+ (pt 565.57165 360.21332)
+ (pt 565.60862 360.18862)
+ (pt 565.64996 360.12676)
+ (pt 565.73138 360.24862)
+ (pt 565.94639 360.39228)
+ (pt 566.2 360.44273)
+ (pt 566.45361 360.39228)
+ (pt 566.66862 360.24862)
+ (pt 566.69664 360.20669)
+ (pt 566.75138 360.28862)
+ (pt 566.77841 360.30668)
+ (pt 566.77138 360.31138)
+ (pt 566.62772 360.52639)
+ (pt 566.57727 360.78)
+ (pt 566.62772 361.03361)
+ (pt 566.71193 361.15964)
+ (pt 566.7 361.15727)
+ (pt 566.44639 361.20772)
+ (pt 566.23138 361.35138)
+ (pt 566.08772 361.56639)
+ (pt 566.03727 361.82)
+ (pt 566.08772 362.07361)
+ (pt 566.23138 362.28862)
+ (pt 566.44639 362.43228)
+ (pt 566.7 362.48273)
+ (pt 566.95361 362.43228)
+ (pt 567.16862 362.28862)
+ (pt 567.2 362.24165)
+ (pt 567.23138 362.28862)
+ (pt 567.44639 362.43228)
+ (pt 567.7 362.48273)
+ (pt 567.85217 362.45246)
+ (pt 567.85217 363.16)
+ (pt 567.88321 363.31607)
+ (pt 567.97162 363.44838)
+ (pt 568.10393 363.53679)
+ (pt 568.26 363.56783)
+ (pt 569.06 363.56783)
+ (pt 569.21607 363.53679)
+ (pt 569.34838 363.44838)
+ (pt 569.40744 363.36)
+ (pt 569.51256 363.36)
+ (pt 569.57162 363.44838)
+ (pt 569.70393 363.53679)
+ (pt 569.86 363.56783)
+ (pt 570.66 363.56783)
+ (pt 570.81607 363.53679)
+ (pt 570.94838 363.44838)
+ (pt 570.99772 363.37453)
+ (pt 571.24 363.42273)
+ (pt 571.49361 363.37228)
+ (pt 571.70862 363.22862)
+ (pt 571.85228 363.01361)
+ (pt 571.90273 362.76)
+ (pt 571.85228 362.50639)
+ (pt 571.70862 362.29138)
+ (pt 571.49361 362.14772)
+ (pt 571.24 362.09727)
+ (pt 570.99772 362.14547)
+ (pt 570.94838 362.07162)
+ (pt 570.81607 361.98321)
+ (pt 570.66 361.95217)
+ (pt 569.86 361.95217)
+ (pt 569.70393 361.98321)
+ (pt 569.57162 362.07162)
+ (pt 569.51256 362.16)
+ (pt 569.40744 362.16)
+ (pt 569.34838 362.07162)
+ (pt 569.31686 362.05056)
+ (pt 569.36273 361.82)
+ (pt 569.31228 361.56639)
+ (pt 569.22618 361.43752)
+ (pt 569.45361 361.39228)
+ (pt 569.66862 361.24862)
+ (pt 569.81228 361.03361)
+ (pt 569.85878 360.79984)
+ (pt 569.89138 360.84862)
+ (pt 570.10639 360.99228)
+ (pt 570.36 361.04273)
+ (pt 570.61361 360.99228)
+ (pt 570.82862 360.84862)
+ (pt 570.97228 360.63361)
+ (pt 571.02273 360.38)
+ (pt 570.97228 360.12639)
+ (pt 570.82862 359.91138)
+ (pt 570.61361 359.76772)
+ (pt 570.36 359.71727)
+ (pt 570.10639 359.76772)
+ (pt 569.89138 359.91138)
+ (pt 569.74772 360.12639)
+ (pt 569.70122 360.36016)
+ (pt 569.67712 360.32411)
+ (pt 569.69783 360.22)
+ (pt 569.69783 359.02)
+ (pt 569.66679 358.86393)
+ (pt 569.64 358.82384)
+ (pt 569.64 358.41616)
+ (pt 569.66679 358.37607)
+ (pt 569.688 358.26944)
+ (pt 569.93217 358.26944)
+ (pt 569.93217 358.33)
+ (pt 569.96321 358.48607)
+ (pt 570.05162 358.61838)
+ (pt 570.18393 358.70679)
+ (pt 570.34 358.73783)
+ (pt 571.54 358.73783)
+ (pt 571.69607 358.70679)
+ (pt 571.73616 358.68)
+ (pt 572.14384 358.68)
+ (pt 572.18393 358.70679)
+ (pt 572.29056 358.728)
+ (pt 572.29056 359.18)
+ (pt 572.32664 359.2671)
+ (pt 572.36772 359.47361)
+ (pt 572.51138 359.68862)
+ (pt 572.72639 359.83228)
+ (pt 572.98 359.88273)
+ (pt 573.23361 359.83228)
+ (pt 573.44862 359.68862)
+ (pt 573.59228 359.47361)
+ (pt 573.64273 359.22)
+ (pt 573.59228 358.96639)
+ (pt 573.58944 358.96214)
+ (pt 573.58944 358.728)
+ (pt 573.69607 358.70679)
+ (pt 573.82838 358.61838)
+ (pt 573.91679 358.48607)
+ (pt 573.94783 358.33)
+ (pt 573.94783 357.03)
+ (pt 573.91679 356.87393)
+ (pt 573.82838 356.74162)
+ (pt 573.69607 356.65321)
+ (pt 573.54 356.62217)
+ (pt 573.46944 356.62217)
+ (pt 573.46944 356.40783)
+ (pt 573.47 356.40783)
+ (pt 573.62607 356.37679)
+ (pt 573.75838 356.28838)
+ (pt 573.84679 356.15607)
+ (pt 573.87783 356.0)
+ (pt 573.87783 354.8)
+ (pt 573.84679 354.64393)
+ (pt 573.82 354.60384)
+ (pt 573.82 354.19616)
+ (pt 573.84679 354.15607)
+ (pt 573.87783 354.0)
+ (pt 573.87783 352.8)
+ (pt 573.84679 352.64393)
+ (pt 573.75838 352.51162)
+ (pt 573.62607 352.42321)
+ (pt 573.47 352.39217)
+ (pt 572.17 352.39217)
+ (pt 572.01393 352.42321)
+ (pt 571.88162 352.51162)
+ (pt 571.79321 352.64393)
+ (pt 571.76217 352.8)
+ (pt 571.76217 354.0)
+ (pt 571.79321 354.15607)
+ (pt 571.82 354.19616)
+ (pt 571.82 354.60384)
+ (pt 571.79321 354.64393)
+ (pt 571.76217 354.8)
+ (pt 571.76217 356.0)
+ (pt 571.79321 356.15607)
+ (pt 571.88162 356.28838)
+ (pt 572.01393 356.37679)
+ (pt 572.17 356.40783)
+ (pt 572.17056 356.40783)
+ (pt 572.17056 356.66214)
+ (pt 572.14384 356.68)
+ (pt 571.73616 356.68)
+ (pt 571.69607 356.65321)
+ (pt 571.54 356.62217)
+ (pt 570.34 356.62217)
+ (pt 570.18393 356.65321)
+ (pt 570.05162 356.74162)
+ (pt 569.96321 356.87393)
+ (pt 569.94399 356.97056)
+ (pt 569.688 356.97056)
+ (pt 569.66679 356.86393)
+ (pt 569.57838 356.73162)
+ (pt 569.44607 356.64321)
+ (pt 569.29 356.61217)
+ (pt 567.99 356.61217)
+ (pt 567.8547 356.63908)
+ (pt 567.83228 356.52639)
+ (pt 567.71326 356.34826)
+ (pt 568.82 356.34826)
+ (pt 569.22182 356.18182)
+ (pt 569.29581 356.10783)
+ (pt 569.7 356.10783)
+ (pt 569.85607 356.07679)
+ (pt 569.98838 355.98838)
+ (pt 570.07679 355.85607)
+ (pt 570.10783 355.7)
+ (pt 570.10783 354.9)
+ (pt 570.07679 354.74393)
+ (pt 569.98838 354.61162)
+ (pt 569.9 354.55256)
+ (pt 569.9 354.44744)
+ (pt 569.98838 354.38838)
+ (pt 570.07679 354.25607)
+ (pt 570.10783 354.1)
+ (pt 570.10783 353.3)
+ (pt 570.07679 353.14393)
+ (pt 569.98838 353.01162)
+ (pt 569.85607 352.92321)
+ (pt 569.7 352.89217)
+ (pt 569.29581 352.89217)
+ (pt 569.26182 352.85818)
+ (pt 568.86 352.69174)
+ (pt 567.53538 352.69174)
+ (pt 567.31213 352.46849)
+ (pt 567.39361 352.45228)
+ (pt 567.60862 352.30862)
+ (pt 567.75228 352.09361)
+ (pt 567.80273 351.84)
+ (pt 567.75228 351.58639)
+ (pt 567.60862 351.37138)
+ (pt 567.57165 351.34668)
+ (pt 567.62862 351.30862)
+ (pt 567.63332 351.30159)
+ (pt 567.65138 351.32862)
+ (pt 567.86639 351.47228)
+ (pt 568.12 351.52273)
+ (pt 568.31525 351.48389)
+ (pt 568.33162 351.50838)
+ (pt 568.46393 351.59679)
+ (pt 568.62 351.62783)
+ (pt 569.42 351.62783)
+ (pt 569.57607 351.59679)
+ (pt 569.70838 351.50838)
+ (pt 569.76744 351.42)
+ (pt 569.87256 351.42)
+ (pt 569.93162 351.50838)
+ (pt 570.06393 351.59679)
+ (pt 570.22 351.62783)
+ (pt 571.02 351.62783)
+ (pt 571.13542 351.60487)
+ (pt 571.19138 351.68862)
+ (pt 571.40639 351.83228)
+ (pt 571.66 351.88273)
+ (pt 571.91361 351.83228)
+ (pt 572.12862 351.68862)
+ (pt 572.27228 351.47361)
+ (pt 572.32273 351.22)
+ (pt 572.27228 350.96639)
+ (pt 572.12862 350.75138)
+ (pt 571.91361 350.60772)
+ (pt 571.66 350.55727)
+ (pt 571.42783 350.60345)
+ (pt 571.42783 350.42)
+ (pt 571.39679 350.26393)
+ (pt 571.30838 350.13162)
+ (pt 571.17607 350.04321)
+ (pt 571.02 350.01217)
+ (pt 570.22 350.01217)
+ (pt 570.06393 350.04321)
+ (pt 569.93162 350.13162)
+ (pt 569.87256 350.22)
+ (pt 569.76744 350.22)
+ (pt 569.70838 350.13162)
+ (pt 569.57607 350.04321)
+ (pt 569.42 350.01217)
+ (pt 568.62 350.01217)
+ (pt 568.46393 350.04321)
+ (pt 568.33162 350.13162)
+ (pt 568.3056 350.17056)
+ (pt 568.16 350.17056)
+ (pt 568.0729 350.20664)
+ (pt 567.86639 350.24772)
+ (pt 567.65138 350.39138)
+ (pt 567.64668 350.39841)
+ (pt 567.62862 350.37138)
+ (pt 567.57669 350.33668)
+ (pt 567.64862 350.28862)
+ (pt 567.79228 350.07361)
+ (pt 567.84273 349.82)
+ (pt 567.79228 349.56639)
+ (pt 567.64862 349.35138)
+ (pt 567.61669 349.33004)
+ (pt 567.70862 349.26862)
+ (pt 567.85228 349.05361)
+ (pt 567.90273 348.8)
+ (pt 567.85228 348.54639)
+ (pt 567.70862 348.33138)
+ (pt 567.49361 348.18772)
+ (pt 567.24 348.13727)
+ (pt 566.98639 348.18772)
+ (pt 566.77138 348.33138)
+ (pt 566.62772 348.54639)
+ (pt 566.57727 348.8)
+ (pt 566.62772 349.05361)
+ (pt 566.77138 349.26862)
+ (pt 566.80331 349.28996)
+ (pt 566.73719 349.33414)
+ (pt 566.70862 349.29138)
+ (pt 566.49361 349.14772)
+ (pt 566.24 349.09727)
+ (pt 565.98639 349.14772)
+ (pt 565.77138 349.29138)
+ (pt 565.77004 349.29338)
+ (pt 565.72862 349.23138)
+ (pt 565.51361 349.08772)
+ (pt 565.26 349.03727)
+ (pt 565.00639 349.08772)
+ (pt 564.79138 349.23138)
+ (pt 564.73664 349.31331)
+ (pt 564.70862 349.27138)
+ (pt 564.65662 349.23664)
+ (pt 564.66862 349.22862)
+ (pt 564.81228 349.01361)
+ (pt 564.86273 348.76)
+ (pt 564.81228 348.50639)
+ (pt 564.66862 348.29138)
+ (pt 564.64159 348.27332)
+ (pt 564.64862 348.26862)
+ (pt 564.68332 348.21669)
+ (pt 564.73138 348.28862)
+ (pt 564.94639 348.43228)
+ (pt 565.2 348.48273)
+ (pt 565.45361 348.43228)
+ (pt 565.66862 348.28862)
+ (pt 565.67996 348.27165)
+ (pt 565.73138 348.34862)
+ (pt 565.94639 348.49228)
+ (pt 566.2 348.54273)
+ (pt 566.45361 348.49228)
+ (pt 566.66862 348.34862)
+ (pt 566.81228 348.13361)
+ (pt 566.86273 347.88)
+ (pt 566.81228 347.62639)
+ (pt 566.66862 347.41138)
+ (pt 566.57179 347.34668)
+ (pt 566.68862 347.26862)
+ (pt 566.72 347.22165)
+ (pt 566.75138 347.26862)
+ (pt 566.96639 347.41228)
+ (pt 567.22 347.46273)
+ (pt 567.47361 347.41228)
+ (pt 567.68862 347.26862)
+ (pt 567.71715 347.22593)
+ (pt 567.84639 347.31228)
+ (pt 568.1 347.36273)
+ (pt 568.35361 347.31228)
+ (pt 568.56862 347.16862)
+ (pt 568.71228 346.95361)
+ (pt 568.76273 346.7)
+ (pt 568.71228 346.44639)
+ (pt 568.56862 346.23138)
+ (pt 568.35361 346.08772)
+ (pt 568.1 346.03727)
+ (pt 567.84639 346.08772)
+ (pt 567.65935 346.21269)
+ (pt 567.75228 346.07361)
+ (pt 567.79423 345.86271)
+ (pt 567.82 345.86783)
+ (pt 568.62 345.86783)
+ (pt 568.77607 345.83679)
+ (pt 568.90838 345.74838)
+ (pt 568.9344 345.70944)
+ (pt 569.36896 345.70944)
+ (pt 569.38162 345.72838)
+ (pt 569.51393 345.81679)
+ (pt 569.67 345.84783)
+ (pt 570.97 345.84783)
+ (pt 571.12607 345.81679)
+ (pt 571.25838 345.72838)
+ (pt 571.34679 345.59607)
+ (pt 571.368 345.48944)
+ (pt 571.66803 345.48944)
+ (pt 571.69321 345.61607)
+ (pt 571.78162 345.74838)
+ (pt 571.91393 345.83679)
+ (pt 572.07 345.86783)
+ (pt 573.37 345.86783)
+ (pt 573.52607 345.83679)
+ (pt 573.65838 345.74838)
+ (pt 573.74679 345.61607)
+ (pt 573.77783 345.46)
+ (pt 573.77783 344.26)
+ (pt 573.74679 344.10393)
+ (pt 573.72 344.06384)
+ (pt 573.72 343.65616)
+ (pt 573.74679 343.61607)
+ (pt 573.77783 343.46)
+ (pt 573.77783 342.26)
+ (pt 573.74679 342.10393)
+ (pt 573.65838 341.97162)
+ (pt 573.52607 341.88321)
+ (pt 573.37 341.85217)
+ (pt 573.36944 341.85217)
+ (pt 573.36944 341.54681)
+ (pt 573.38273 341.48)
+ (pt 573.33228 341.22639)
+ (pt 573.18862 341.01138)
+ (pt 572.97361 340.86772)
+ (pt 572.72 340.81727)
+ (pt 572.46639 340.86772)
+ (pt 572.25138 341.01138)
+ (pt 572.10772 341.22639)
+ (pt 572.05727 341.48)
+ (pt 572.07056 341.54681)
+ (pt 572.07056 341.85217)
+ (pt 572.07 341.85217)
+ (pt 571.91393 341.88321)
+ (pt 571.78162 341.97162)
+ (pt 571.69321 342.10393)
+ (pt 571.66217 342.26)
+ (pt 571.66217 343.46)
+ (pt 571.69321 343.61607)
+ (pt 571.72 343.65616)
+ (pt 571.72 344.06384)
+ (pt 571.69321 344.10393)
+ (pt 571.67598 344.19056)
+ (pt 571.368 344.19056)
+ (pt 571.34679 344.08393)
+ (pt 571.32 344.04384)
+ (pt 571.32 343.63616)
+ (pt 571.34679 343.59607)
+ (pt 571.37783 343.44)
+ (pt 571.37783 342.24)
+ (pt 571.34679 342.08393)
+ (pt 571.25838 341.95162)
+ (pt 571.12607 341.86321)
+ (pt 570.97 341.83217)
+ (pt 569.67 341.83217)
+ (pt 569.51393 341.86321)
+ (pt 569.38162 341.95162)
+ (pt 569.29321 342.08393)
+ (pt 569.26217 342.24)
+ (pt 569.26217 343.44)
+ (pt 569.29321 343.59607)
+ (pt 569.32 343.63616)
+ (pt 569.32 344.04384)
+ (pt 569.29321 344.08393)
+ (pt 569.26217 344.24)
+ (pt 569.26217 344.41056)
+ (pt 568.9344 344.41056)
+ (pt 568.90838 344.37162)
+ (pt 568.82 344.31256)
+ (pt 568.82 344.20744)
+ (pt 568.90838 344.14838)
+ (pt 568.99679 344.01607)
+ (pt 569.02783 343.86)
+ (pt 569.02783 343.06)
+ (pt 568.99679 342.90393)
+ (pt 568.90838 342.77162)
+ (pt 568.77607 342.68321)
+ (pt 568.62 342.65217)
+ (pt 567.82 342.65217)
+ (pt 567.8174 342.65269)
+ (pt 567.79228 342.52639)
+ (pt 567.64862 342.31138)
+ (pt 567.43361 342.16772)
+ (pt 567.18 342.11727)
+ (pt 566.92639 342.16772)
+ (pt 566.71138 342.31138)
+ (pt 566.56772 342.52639)
+ (pt 566.51727 342.78)
+ (pt 566.56772 343.03361)
+ (pt 566.71138 343.24862)
+ (pt 566.74338 343.27)
+ (pt 566.71138 343.29138)
+ (pt 566.66123 343.36644)
+ (pt 566.45361 343.22772)
+ (pt 566.2 343.17727)
+ (pt 565.94639 343.22772)
+ (pt 565.73138 343.37138)
+ (pt 565.58772 343.58639)
+ (pt 565.53727 343.84)
+ (pt 565.58772 344.09361)
+ (pt 565.73138 344.30862)
+ (pt 565.77835 344.34)
+ (pt 565.73138 344.37138)
+ (pt 565.69332 344.42835)
+ (pt 565.66862 344.39138)
+ (pt 565.45361 344.24772)
+ (pt 565.2 344.19727)
+ (pt 564.94639 344.24772)
+ (pt 564.73138 344.39138)
+ (pt 564.71336 344.41835)
+ (pt 564.66862 344.35138)
+ (pt 564.64662 344.33668)
+ (pt 564.68862 344.30862)
+ (pt 564.83228 344.09361)
+ (pt 564.88273 343.84)
+ (pt 564.83228 343.58639)
+ (pt 564.68862 343.37138)
+ (pt 564.47361 343.22772)
+ (pt 564.22 343.17727)
+ (pt 564.16783 343.18765)
+ (pt 564.16783 342.78)
+ (pt 564.13679 342.62393)
+ (pt 564.04838 342.49162)
+ (pt 563.91607 342.40321)
+ (pt 563.76 342.37217)
+ (pt 563.50357 342.37217)
+ (pt 563.62862 342.28862)
+ (pt 563.77228 342.07361)
+ (pt 563.82273 341.82)
+ (pt 563.77228 341.56639)
+ (pt 563.62862 341.35138)
+ (pt 563.41361 341.20772)
+ (pt 563.16 341.15727)
+ (pt 562.90639 341.20772)
+ (pt 562.69138 341.35138)
+ (pt 562.54772 341.56639)
+ (pt 562.49727 341.82)
+ (pt 562.54772 342.07361)
+ (pt 562.69138 342.28862)
+ (pt 562.84936 342.39417)
+ (pt 562.80393 342.40321)
+ (pt 562.77581 342.422)
+ (pt 562.72862 342.35138)
+ (pt 562.51361 342.20772)
+ (pt 562.26 342.15727)
+ (pt 562.00639 342.20772)
+ (pt 561.79138 342.35138)
+ (pt 561.71668 342.46318)
+ (pt 561.62862 342.33138)
+ (pt 561.41361 342.18772)
+ (pt 561.16 342.13727)
+ (pt 560.90639 342.18772)
+ (pt 560.69138 342.33138)
+ (pt 560.54772 342.54639)
+ (pt 560.49727 342.8)
+ (pt 560.54772 343.05361)
+ (pt 560.69138 343.26862)
+ (pt 560.90639 343.41228)
+ (pt 561.16 343.46273)
+ (pt 561.41361 343.41228)
+ (pt 561.62862 343.26862)
+ (pt 561.70332 343.15682)
+ (pt 561.79138 343.28862)
+ (pt 561.80835 343.29996)
+ (pt 561.73138 343.35138)
+ (pt 561.58772 343.56639)
+ (pt 561.53727 343.82)
+ (pt 561.58772 344.07361)
+ (pt 561.73138 344.28862)
+ (pt 561.77835 344.32)
+ (pt 561.73138 344.35138)
+ (pt 561.71 344.38338)
+ (pt 561.68862 344.35138)
+ (pt 561.47361 344.20772)
+ (pt 561.22 344.15727)
+ (pt 560.96639 344.20772)
+ (pt 560.75138 344.35138)
+ (pt 560.70332 344.42331)
+ (pt 560.66862 344.37138)
+ (pt 560.57676 344.31)
+ (pt 560.66862 344.24862)
+ (pt 560.81228 344.03361)
+ (pt 560.86273 343.78)
+ (pt 560.81228 343.52639)
+ (pt 560.66862 343.31138)
+ (pt 560.45361 343.16772)
+ (pt 560.2 343.11727)
+ (pt 559.94639 343.16772)
+ (pt 559.73138 343.31138)
+ (pt 559.67664 343.39331)
+ (pt 559.64862 343.35138)
+ (pt 559.58172 343.30668)
+ (pt 559.66862 343.24862)
+ (pt 559.81228 343.03361)
+ (pt 559.86273 342.78)
+ (pt 559.81228 342.52639)
+ (pt 559.66862 342.31138)
+ (pt 559.63969 342.29205)
+ (pt 559.77228 342.09361)
+ (pt 559.82273 341.84)
+ (pt 559.77228 341.58639)
+ (pt 559.62862 341.37138)
+ (pt 559.41361 341.22772)
+ (pt 559.16 341.17727)
+ (pt 558.90639 341.22772)
+ (pt 558.69138 341.37138)
+ (pt 558.54772 341.58639)
+ (pt 558.49727 341.84)
+ (pt 558.54772 342.09361)
+ (pt 558.69138 342.30862)
+ (pt 558.72031 342.32795)
+ (pt 558.65996 342.41828)
+ (pt 558.62862 342.37138)
+ (pt 558.41361 342.22772)
+ (pt 558.16 342.17727)
+ (pt 557.90639 342.22772)
+ (pt 557.69138 342.37138)
+ (pt 557.54772 342.58639)
+ (pt 557.49727 342.84)
+ (pt 557.54772 343.09361)
+ (pt 557.69138 343.30862)
+ (pt 557.73835 343.34)
+ (pt 557.69138 343.37138)
+ (pt 557.54772 343.58639)
+ (pt 557.49727 343.84)
+ (pt 557.54772 344.09361)
+ (pt 557.69138 344.30862)
+ (pt 557.90639 344.45228)
+ (pt 558.16 344.50273)
+ (pt 558.41361 344.45228)
+ (pt 558.62862 344.30862)
+ (pt 558.67668 344.23669)
+ (pt 558.71138 344.28862)
+ (pt 558.92639 344.43228)
+ (pt 559.18 344.48273)
+ (pt 559.43361 344.43228)
+ (pt 559.64862 344.28862)
+ (pt 559.70336 344.20669)
+ (pt 559.73138 344.24862)
+ (pt 559.82324 344.31)
+ (pt 559.73138 344.37138)
+ (pt 559.58772 344.58639)
+ (pt 559.53727 344.84)
+ (pt 559.58772 345.09361)
+ (pt 559.73138 345.30862)
+ (pt 559.74841 345.32)
+ (pt 559.73138 345.33138)
+ (pt 559.67996 345.40835)
+ (pt 559.66862 345.39138)
+ (pt 559.45361 345.24772)
+ (pt 559.2 345.19727)
+ (pt 558.94639 345.24772)
+ (pt 558.73138 345.39138)
+ (pt 558.72004 345.40835)
+ (pt 558.66862 345.33138)
+ (pt 558.45361 345.18772)
+ (pt 558.2 345.13727)
+ (pt 557.94639 345.18772)
+ (pt 557.73138 345.33138)
+ (pt 557.69664 345.38338)
+ (pt 557.68862 345.37138)
+ (pt 557.62165 345.32664)
+ (pt 557.64862 345.30862)
+ (pt 557.79228 345.09361)
+ (pt 557.84273 344.84)
+ (pt 557.79228 344.58639)
+ (pt 557.64862 344.37138)
+ (pt 557.43361 344.22772)
+ (pt 557.18 344.17727)
+ (pt 556.92639 344.22772)
+ (pt 556.71138 344.37138)
+ (pt 556.68 344.41835)
+ (pt 556.64862 344.37138)
+ (pt 556.61165 344.34668)
+ (pt 556.66862 344.30862)
+ (pt 556.81228 344.09361)
+ (pt 556.86273 343.84)
+ (pt 556.81228 343.58639)
+ (pt 556.66862 343.37138)
+ (pt 556.56676 343.30332)
+ (pt 556.64862 343.24862)
+ (pt 556.79228 343.03361)
+ (pt 556.84273 342.78)
+ (pt 556.79228 342.52639)
+ (pt 556.64862 342.31138)
+ (pt 556.62893 342.29822)
+ (pt 556.75228 342.11361)
+ (pt 556.80273 341.86)
+ (pt 556.75228 341.60639)
+ (pt 556.60862 341.39138)
+ (pt 556.46861 341.29783)
+ (pt 557.48 341.29783)
+ (pt 557.63607 341.26679)
+ (pt 557.76838 341.17838)
+ (pt 557.85679 341.04607)
+ (pt 557.88783 340.89)
+ (pt 557.88783 339.59)
+ (pt 557.85679 339.43393)
+ (pt 557.76838 339.30162)
+ (pt 557.63607 339.21321)
+ (pt 557.48 339.18217)
+ (pt 556.28 339.18217)
+ (pt 556.12393 339.21321)
+ (pt 556.08384 339.24)
+ (pt 555.67616 339.24)
+ (pt 555.63607 339.21321)
+ (pt 555.52944 339.192)
+ (pt 555.52944 338.97197)
+ (pt 555.65607 338.94679)
+ (pt 555.69616 338.92)
+ (pt 556.10384 338.92)
+ (pt 556.14393 338.94679)
+ (pt 556.3 338.97783)
+ (pt 557.5 338.97783)
+ (pt 557.65607 338.94679)
+ (pt 557.78838 338.85838)
+ (pt 557.87679 338.72607)
+ (pt 557.90783 338.57)
+ (pt 557.90783 337.83061)
+ (pt 558.3317 337.40674)
+ (pt 558.44862 337.32862)
+ (pt 558.59228 337.11361)
+ (pt 558.64273 336.86)
+ (pt 558.59228 336.60639)
+ (pt 558.44862 336.39138)
+ (pt 558.23361 336.24772)
+ (pt 557.98 336.19727)
+ (pt 557.72639 336.24772)
+ (pt 557.51138 336.39138)
+ (pt 557.50675 336.39831)
+ (pt 557.50078 336.40078)
+ (pt 557.03939 336.86217)
+ (pt 556.3 336.86217)
+ (pt 556.14393 336.89321)
+ (pt 556.10384 336.92)
+ (pt 555.69616 336.92)
+ (pt 555.65607 336.89321)
+ (pt 555.5 336.86217)
+ (pt 554.3 336.86217)
+ (pt 554.14393 336.89321)
+ (pt 554.01162 336.98162)
+ (pt 553.92321 337.11393)
+ (pt 553.89217 337.27)
+ (pt 553.89217 338.57)
+ (pt 553.92321 338.72607)
+ (pt 554.01162 338.85838)
+ (pt 554.14393 338.94679)
+ (pt 554.23056 338.96402)
+ (pt 554.23056 339.192)
+ (pt 554.12393 339.21321)
+ (pt 553.99162 339.30162)
+ (pt 553.90321 339.43393)
+ (pt 553.87217 339.59)
+ (pt 553.87217 340.89)
+ (pt 553.90321 341.04607)
+ (pt 553.99162 341.17838)
+ (pt 554.12393 341.26679)
+ (pt 554.19056 341.28004)
+ (pt 554.19056 342.12313)
+ (pt 553.96639 342.16772)
+ (pt 553.75138 342.31138)
+ (pt 553.70123 342.38644)
+ (pt 553.49361 342.24772)
+ (pt 553.24 342.19727)
+ (pt 552.98639 342.24772)
+ (pt 552.77138 342.39138)
+ (pt 552.73336 342.44828)
+ (pt 552.66862 342.35138)
+ (pt 552.45361 342.20772)
+ (pt 552.2 342.15727)
+ (pt 551.94639 342.20772)
+ (pt 551.73138 342.35138)
+ (pt 551.68332 342.42331)
+ (pt 551.64862 342.37138)
+ (pt 551.59172 342.33336)
+ (pt 551.68862 342.26862)
+ (pt 551.83228 342.05361)
+ (pt 551.88273 341.8)
+ (pt 551.83228 341.54639)
+ (pt 551.68862 341.33138)
+ (pt 551.59676 341.27)
+ (pt 551.68862 341.20862)
+ (pt 551.83228 340.99361)
+ (pt 551.88273 340.74)
+ (pt 551.83228 340.48639)
+ (pt 551.69352 340.27871)
+ (pt 551.70862 340.26862)
+ (pt 551.85228 340.05361)
+ (pt 551.90273 339.8)
+ (pt 551.85228 339.54639)
+ (pt 551.70862 339.33138)
+ (pt 551.49361 339.18772)
+ (pt 551.24 339.13727)
+ (pt 550.98639 339.18772)
+ (pt 550.77138 339.33138)
+ (pt 550.73664 339.38338)
+ (pt 550.72862 339.37138)
+ (pt 550.51361 339.22772)
+ (pt 550.26 339.17727)
+ (pt 550.00639 339.22772)
+ (pt 549.79138 339.37138)
+ (pt 549.77332 339.39841)
+ (pt 549.76862 339.39138)
+ (pt 549.55361 339.24772)
+ (pt 549.3 339.19727)
+ (pt 549.18138 339.22087)
+ (pt 549.10838 339.11162)
+ (pt 548.97607 339.02321)
+ (pt 548.82 338.99217)
+ (pt 548.02 338.99217)
+ (pt 547.86393 339.02321)
+ (pt 547.73162 339.11162)
+ (pt 547.67256 339.2)
+ (pt 547.56744 339.2)
+ (pt 547.50838 339.11162)
+ (pt 547.37607 339.02321)
+ (pt 547.22 338.99217)
+ (pt 546.42 338.99217)
+ (pt 546.26393 339.02321)
+ (pt 546.13162 339.11162)
+ (pt 546.04321 339.24393)
+ (pt 546.01217 339.4)
+ (pt 546.01217 340.2)
+ (pt 546.04321 340.35607)
+ (pt 546.13162 340.48838)
+ (pt 546.26393 340.57679)
+ (pt 546.29615 340.5832)
+ (pt 546.36078 340.73922)
+ (pt 546.92078 341.29922)
+ (pt 547.38 341.48944)
+ (pt 547.7125 341.48944)
+ (pt 547.64772 341.58639)
+ (pt 547.59727 341.84)
+ (pt 547.64772 342.09361)
+ (pt 547.79138 342.30862)
+ (pt 547.81338 342.32332)
+ (pt 547.77138 342.35138)
+ (pt 547.62772 342.56639)
+ (pt 547.57727 342.82)
+ (pt 547.62772 343.07361)
+ (pt 547.77138 343.28862)
+ (pt 547.87324 343.35668)
+ (pt 547.79138 343.41138)
+ (pt 547.64772 343.62639)
+ (pt 547.59727 343.88)
+ (pt 547.64772 344.13361)
+ (pt 547.77107 344.31822)
+ (pt 547.75138 344.33138)
+ (pt 547.60772 344.54639)
+ (pt 547.55727 344.8)
+ (pt 547.60772 345.05361)
+ (pt 547.75138 345.26862)
+ (pt 547.96639 345.41228)
+ (pt 548.22 345.46273)
+ (pt 548.47361 345.41228)
+ (pt 548.68862 345.26862)
+ (pt 548.71332 345.23165)
+ (pt 548.75138 345.28862)
+ (pt 548.96639 345.43228)
+ (pt 549.22 345.48273)
+ (pt 549.47361 345.43228)
+ (pt 549.68862 345.28862)
+ (pt 549.72668 345.23165)
+ (pt 549.75138 345.26862)
+ (pt 549.78331 345.28996)
+ (pt 549.69138 345.35138)
+ (pt 549.54772 345.56639)
+ (pt 549.49727 345.82)
+ (pt 549.54772 346.07361)
+ (pt 549.69138 346.28862)
+ (pt 549.74338 346.32336)
+ (pt 549.73138 346.33138)
+ (pt 549.58772 346.54639)
+ (pt 549.53727 346.8)
+ (pt 549.58772 347.05361)
+ (pt 549.73138 347.26862)
+ (pt 549.79835 347.31336)
+ (pt 549.77138 347.33138)
+ (pt 549.62772 347.54639)
+ (pt 549.57727 347.8)
+ (pt 549.62772 348.05361)
+ (pt 549.77138 348.26862)
+ (pt 549.83828 348.31332)
+ (pt 549.75138 348.37138)
+ (pt 549.60772 348.58639)
+ (pt 549.55727 348.84)
+ (pt 549.60772 349.09361)
+ (pt 549.75138 349.30862)
+ (pt 549.96639 349.45228)
+ (pt 550.22 349.50273)
+ (pt 550.47361 349.45228)
+ (pt 550.68862 349.30862)
+ (pt 550.7 349.29159)
+ (pt 550.71138 349.30862)
+ (pt 550.92639 349.45228)
+ (pt 551.18 349.50273)
+ (pt 551.43361 349.45228)
+ (pt 551.64862 349.30862)
+ (pt 551.79228 349.09361)
+ (pt 551.84273 348.84)
+ (pt 551.79228 348.58639)
+ (pt 551.64862 348.37138)
+ (pt 551.43361 348.22772)
+ (pt 551.18 348.17727)
+ (pt 550.92639 348.22772)
+ (pt 550.71138 348.37138)
+ (pt 550.7 348.38841)
+ (pt 550.68862 348.37138)
+ (pt 550.62172 348.32668)
+ (pt 550.70862 348.26862)
+ (pt 550.85228 348.05361)
+ (pt 550.90273 347.8)
+ (pt 550.85228 347.54639)
+ (pt 550.70862 347.33138)
+ (pt 550.64165 347.28664)
+ (pt 550.66862 347.26862)
+ (pt 550.75673 347.13676)
+ (pt 550.79138 347.18862)
+ (pt 551.00639 347.33228)
+ (pt 551.26 347.38273)
+ (pt 551.51361 347.33228)
+ (pt 551.72862 347.18862)
+ (pt 551.87228 346.97361)
+ (pt 551.92273 346.72)
+ (pt 551.87228 346.46639)
+ (pt 551.81161 346.37559)
+ (pt 551.92639 346.45228)
+ (pt 552.18 346.50273)
+ (pt 552.43361 346.45228)
+ (pt 552.64862 346.30862)
+ (pt 552.79228 346.09361)
+ (pt 552.84273 345.84)
+ (pt 552.79228 345.58639)
+ (pt 552.64862 345.37138)
+ (pt 552.43361 345.22772)
+ (pt 552.18 345.17727)
+ (pt 551.92639 345.22772)
+ (pt 551.71138 345.37138)
+ (pt 551.56772 345.58639)
+ (pt 551.51727 345.84)
+ (pt 551.56772 346.09361)
+ (pt 551.62839 346.18441)
+ (pt 551.51361 346.10772)
+ (pt 551.26 346.05727)
+ (pt 551.00639 346.10772)
+ (pt 550.79138 346.25138)
+ (pt 550.70327 346.38324)
+ (pt 550.66862 346.33138)
+ (pt 550.61662 346.29664)
+ (pt 550.62862 346.28862)
+ (pt 550.77228 346.07361)
+ (pt 550.82273 345.82)
+ (pt 550.77228 345.56639)
+ (pt 550.62862 345.35138)
+ (pt 550.59669 345.33004)
+ (pt 550.68862 345.26862)
+ (pt 550.7 345.25159)
+ (pt 550.71138 345.26862)
+ (pt 550.92639 345.41228)
+ (pt 551.18 345.46273)
+ (pt 551.43361 345.41228)
+ (pt 551.64862 345.26862)
+ (pt 551.79228 345.05361)
+ (pt 551.84273 344.8)
+ (pt 551.79228 344.54639)
+ (pt 551.65045 344.33412)
+ (pt 551.68862 344.30862)
+ (pt 551.83228 344.09361)
+ (pt 551.88273 343.84)
+ (pt 551.83228 343.58639)
+ (pt 551.68862 343.37138)
+ (pt 551.62165 343.32664)
+ (pt 551.64862 343.30862)
+ (pt 551.69668 343.23669)
+ (pt 551.73138 343.28862)
+ (pt 551.94639 343.43228)
+ (pt 552.2 343.48273)
+ (pt 552.45361 343.43228)
+ (pt 552.66862 343.28862)
+ (pt 552.70664 343.23172)
+ (pt 552.77138 343.32862)
+ (pt 552.78835 343.33996)
+ (pt 552.71138 343.39138)
+ (pt 552.56772 343.60639)
+ (pt 552.51727 343.86)
+ (pt 552.56772 344.11361)
+ (pt 552.71138 344.32862)
+ (pt 552.74031 344.34795)
+ (pt 552.60772 344.54639)
+ (pt 552.55727 344.8)
+ (pt 552.60772 345.05361)
+ (pt 552.75138 345.26862)
+ (pt 552.96639 345.41228)
+ (pt 553.22 345.46273)
+ (pt 553.47361 345.41228)
+ (pt 553.61056 345.32078)
+ (pt 553.61056 345.65319)
+ (pt 553.59727 345.72)
+ (pt 553.61056 345.78681)
+ (pt 553.61056 346.56)
+ (pt 553.80078 347.01922)
+ (pt 554.07217 347.29061)
+ (pt 554.07217 347.58)
+ (pt 554.10321 347.73607)
+ (pt 554.19162 347.86838)
+ (pt 554.32393 347.95679)
+ (pt 554.48 347.98783)
+ (pt 555.28 347.98783)
+ (pt 555.43607 347.95679)
+ (pt 555.56838 347.86838)
+ (pt 555.62744 347.78)
+ (pt 555.73256 347.78)
+ (pt 555.79162 347.86838)
+ (pt 555.92393 347.95679)
+ (pt 556.08 347.98783)
+ (pt 556.88 347.98783)
+ (pt 557.03607 347.95679)
+ (pt 557.16838 347.86838)
+ (pt 557.25679 347.73607)
+ (pt 557.28783 347.58)
+ (pt 557.28783 346.78)
+ (pt 557.25679 346.62393)
+ (pt 557.16903 346.49259)
+ (pt 557.22 346.50273)
+ (pt 557.47361 346.45228)
+ (pt 557.68862 346.30862)
+ (pt 557.72336 346.25662)
+ (pt 557.73138 346.26862)
+ (pt 557.94639 346.41228)
+ (pt 558.2 346.46273)
+ (pt 558.45361 346.41228)
+ (pt 558.66862 346.26862)
+ (pt 558.67996 346.25165)
+ (pt 558.73138 346.32862)
+ (pt 558.94639 346.47228)
+ (pt 559.2 346.52273)
+ (pt 559.45361 346.47228)
+ (pt 559.66862 346.32862)
+ (pt 559.72004 346.25165)
+ (pt 559.73138 346.26862)
+ (pt 559.94639 346.41228)
+ (pt 560.2 346.46273)
+ (pt 560.45361 346.41228)
+ (pt 560.66862 346.26862)
+ (pt 560.7 346.22165)
+ (pt 560.73138 346.26862)
+ (pt 560.94639 346.41228)
+ (pt 561.2 346.46273)
+ (pt 561.45361 346.41228)
+ (pt 561.66862 346.26862)
+ (pt 561.81228 346.05361)
+ (pt 561.86273 345.8)
+ (pt 561.81228 345.54639)
+ (pt 561.66862 345.33138)
+ (pt 561.64662 345.31668)
+ (pt 561.68862 345.28862)
+ (pt 561.71 345.25662)
+ (pt 561.73138 345.28862)
+ (pt 561.94639 345.43228)
+ (pt 562.2 345.48273)
+ (pt 562.45361 345.43228)
+ (pt 562.58765 345.34272)
+ (pt 562.65573 345.4446)
+ (pt 562.58772 345.54639)
+ (pt 562.53727 345.8)
+ (pt 562.58772 346.05361)
+ (pt 562.73138 346.26862)
+ (pt 562.94639 346.41228)
+ (pt 563.2 346.46273)
+ (pt 563.45361 346.41228)
+ (pt 563.66862 346.26862)
+ (pt 563.70643 346.21204)
+ (pt 563.81324 346.28341)
+ (pt 563.77138 346.31138)
+ (pt 563.62772 346.52639)
+ (pt 563.57727 346.78)
+ (pt 563.62772 347.03361)
+ (pt 563.77138 347.24862)
+ (pt 563.80331 347.26996)
+ (pt 563.71138 347.33138)
+ (pt 563.69332 347.35841)
+ (pt 563.68862 347.35138)
+ (pt 563.47361 347.20772)
+ (pt 563.22 347.15727)
+ (pt 562.96639 347.20772)
+ (pt 562.75138 347.35138)
+ (pt 562.60772 347.56639)
+ (pt 562.55727 347.82)
+ (pt 562.60772 348.07361)
+ (pt 562.75138 348.28862)
+ (pt 562.77841 348.30668)
+ (pt 562.77138 348.31138)
+ (pt 562.62772 348.52639)
+ (pt 562.60783 348.62638)
+ (pt 562.60783 348.44)
+ (pt 562.57679 348.28393)
+ (pt 562.48838 348.15162)
+ (pt 562.35607 348.06321)
+ (pt 562.2 348.03217)
+ (pt 561.4 348.03217)
+ (pt 561.24393 348.06321)
+ (pt 561.11162 348.15162)
+ (pt 561.05256 348.24)
+ (pt 560.94744 348.24)
+ (pt 560.88838 348.15162)
+ (pt 560.75607 348.06321)
+ (pt 560.6 348.03217)
+ (pt 559.8 348.03217)
+ (pt 559.78386 348.03538)
+ (pt 559.82273 347.84)
+ (pt 559.77228 347.58639)
+ (pt 559.62862 347.37138)
+ (pt 559.41361 347.22772)
+ (pt 559.16 347.17727)
+ (pt 558.90639 347.22772)
+ (pt 558.80319 347.29667)
+ (pt 558.68 347.27217)
+ (pt 557.88 347.27217)
+ (pt 557.72393 347.30321)
+ (pt 557.59162 347.39162)
+ (pt 557.50321 347.52393)
+ (pt 557.47217 347.68)
+ (pt 557.47217 348.48)
+ (pt 557.50321 348.63607)
+ (pt 557.59162 348.76838)
+ (pt 557.68 348.82744)
+ (pt 557.68 348.93256)
+ (pt 557.59162 348.99162)
+ (pt 557.50321 349.12393)
+ (pt 557.4733 349.27433)
+ (pt 557.37361 349.20772)
+ (pt 557.12 349.15727)
+ (pt 556.86639 349.20772)
+ (pt 556.65138 349.35138)
+ (pt 556.57067 349.47217)
+ (pt 555.78 349.47217)
+ (pt 555.75444 349.47725)
+ (pt 555.75228 349.46639)
+ (pt 555.60862 349.25138)
+ (pt 555.58662 349.23668)
+ (pt 555.62862 349.20862)
+ (pt 555.77228 348.99361)
+ (pt 555.82273 348.74)
+ (pt 555.77228 348.48639)
+ (pt 555.62862 348.27138)
+ (pt 555.41361 348.12772)
+ (pt 555.16 348.07727)
+ (pt 554.90639 348.12772)
+ (pt 554.69138 348.27138)
+ (pt 554.54772 348.48639)
+ (pt 554.49727 348.74)
+ (pt 554.54772 348.99361)
+ (pt 554.69138 349.20862)
+ (pt 554.71338 349.22332)
+ (pt 554.67138 349.25138)
+ (pt 554.52772 349.46639)
+ (pt 554.47727 349.72)
+ (pt 554.52772 349.97361)
+ (pt 554.67138 350.18862)
+ (pt 554.88639 350.33228)
+ (pt 555.14 350.38273)
+ (pt 555.37217 350.33655)
+ (pt 555.37217 350.68)
+ (pt 555.40321 350.83607)
+ (pt 555.49162 350.96838)
+ (pt 555.58 351.02744)
+ (pt 555.58 351.13256)
+ (pt 555.49162 351.19162)
+ (pt 555.45393 351.24802)
+ (pt 555.39361 351.20772)
+ (pt 555.14 351.15727)
+ (pt 555.10088 351.16505)
+ (pt 555.07679 351.04393)
+ (pt 554.98838 350.91162)
+ (pt 554.85607 350.82321)
+ (pt 554.7 350.79217)
+ (pt 553.9 350.79217)
+ (pt 553.84199 350.80371)
+ (pt 553.84273 350.8)
+ (pt 553.79228 350.54639)
+ (pt 553.65045 350.33412)
+ (pt 553.68862 350.30862)
+ (pt 553.83228 350.09361)
+ (pt 553.88273 349.84)
+ (pt 553.83228 349.58639)
+ (pt 553.68862 349.37138)
+ (pt 553.47361 349.22772)
+ (pt 553.22 349.17727)
+ (pt 552.96639 349.22772)
+ (pt 552.75138 349.37138)
+ (pt 552.73 349.40338)
+ (pt 552.70862 349.37138)
+ (pt 552.49361 349.22772)
+ (pt 552.24 349.17727)
+ (pt 551.98639 349.22772)
+ (pt 551.77138 349.37138)
+ (pt 551.62772 349.58639)
+ (pt 551.57727 349.84)
+ (pt 551.62772 350.09361)
+ (pt 551.76644 350.30123)
+ (pt 551.69412 350.34955)
+ (pt 551.66862 350.31138)
+ (pt 551.45361 350.16772)
+ (pt 551.2 350.11727)
+ (pt 550.94639 350.16772)
+ (pt 550.78943 350.27259)
+ (pt 550.78862 350.27138)
+ (pt 550.57361 350.12772)
+ (pt 550.32 350.07727)
+ (pt 550.06639 350.12772)
+ (pt 549.85138 350.27138)
+ (pt 549.70772 350.48639)
+ (pt 549.65727 350.74)
+ (pt 549.70772 350.99361)
+ (pt 549.85138 351.20862)
+ (pt 549.94318 351.26996)
+ (pt 549.79138 351.37138)
+ (pt 549.64772 351.58639)
+ (pt 549.59727 351.84)
+ (pt 549.64772 352.09361)
+ (pt 549.67624 352.13629)
+ (pt 549.57361 352.06772)
+ (pt 549.32 352.01727)
+ (pt 549.06639 352.06772)
+ (pt 548.85138 352.21138)
+ (pt 548.70772 352.42639)
+ (pt 548.65727 352.68)
+ (pt 548.70772 352.93361)
+ (pt 548.85138 353.14862)
+ (pt 549.06639 353.29228)
+ (pt 549.32 353.34273)
+ (pt 549.57361 353.29228)
+ (pt 549.78862 353.14862)
+ (pt 549.93228 352.93361)
+ (pt 549.98273 352.68)
+ (pt 549.93228 352.42639)
+ (pt 549.90376 352.38371)
+ (pt 550.00639 352.45228)
+ (pt 550.26 352.50273)
+ (pt 550.51361 352.45228)
+ (pt 550.72862 352.30862)
+ (pt 550.75719 352.26586)
+ (pt 550.78331 352.28332)
+ (pt 550.71138 352.33138)
+ (pt 550.56772 352.54639)
+ (pt 550.51727 352.8)
+ (pt 550.56772 353.05361)
+ (pt 550.71138 353.26862)
+ (pt 550.79331 353.32336)
+ (pt 550.75138 353.35138)
+ (pt 550.70668 353.41828)
+ (pt 550.64862 353.33138)
+ (pt 550.43361 353.18772)
+ (pt 550.18 353.13727)
+ (pt 549.92639 353.18772)
+ (pt 549.71138 353.33138)
+ (pt 549.56772 353.54639)
+ (pt 549.51727 353.8)
+ (pt 549.56772 354.05361)
+ (pt 549.71138 354.26862)
+ (pt 549.79331 354.32336)
+ (pt 549.75138 354.35138)
+ (pt 549.60772 354.56639)
+ (pt 549.55727 354.82)
+ (pt 549.60772 355.07361)
+ (pt 549.75138 355.28862)
+ (pt 549.79331 355.31664)
+ (pt 549.71138 355.37138)
+ (pt 549.56772 355.58639)
+ (pt 549.53623 355.74468)
+ (pt 549.53383 355.74468)
+ (pt 549.49838 355.69162)
+ (pt 549.36607 355.60321)
+ (pt 549.21 355.57217)
+ (pt 547.91 355.57217)
+ (pt 547.75393 355.60321)
+ (pt 547.62162 355.69162)
+ (pt 547.53321 355.82393)
+ (pt 547.50217 355.98)
+ (pt 547.50217 357.18)
+ (pt 547.53321 357.33607)
+ (pt 547.56 357.37616)
+ (pt 547.56 357.78384)
+ (pt 547.53321 357.82393)
+ (pt 547.50217 357.98)
+ (pt 547.50217 357.98468)
+ (pt 547.35478 357.98468)
+ (pt 547.32679 357.84393)
+ (pt 547.3 357.80384)
+ (pt 547.3 357.39616)
+ (pt 547.32679 357.35607)
+ (pt 547.35783 357.2)
+ (pt 547.35783 356.0)
+ (pt 547.32679 355.84393)
+ (pt 547.23838 355.71162)
+ (pt 547.10607 355.62321)
+ (pt 546.97208 355.59656)
+ (pt 546.99361 355.59228)
+ (pt 547.20862 355.44862)
+ (pt 547.35228 355.23361)
+ (pt 547.40273 354.98)
+ (pt 547.35228 354.72639)
+ (pt 547.20862 354.51138)
+ (pt 546.99361 354.36772)
+ (pt 546.74 354.31727)
+ (pt 546.48639 354.36772)
+ (pt 546.27138 354.51138)
+ (pt 546.12772 354.72639)
+ (pt 546.07727 354.98)
+ (pt 546.12772 355.23361)
+ (pt 546.27138 355.44862)
+ (pt 546.48623 355.59217)
+ (pt 545.65 355.59217)
+ (pt 545.49393 355.62321)
+ (pt 545.36162 355.71162)
+ (pt 545.27321 355.84393)
+ (pt 545.24217 356.0)
+ (pt 545.24217 357.2)
+ (pt 545.27321 357.35607)
+ (pt 545.3 357.39616)
+ (pt 545.3 357.80384)
+ (pt 545.27321 357.84393)
+ (pt 545.24217 358.0)
+ (pt 545.24217 359.2)
+ (pt 545.27321 359.35607)
+ (pt 545.32746 359.43725)
+ (pt 545.18772 359.64639)
+ (pt 545.13727 359.9)
+ (pt 545.18772 360.15361)
+ (pt 545.33138 360.36862)
+ (pt 545.54639 360.51228)
+ (pt 545.8 360.56273)
+ (pt 546.05361 360.51228)
+ (pt 546.26862 360.36862)
+ (pt 546.41228 360.15361)
+ (pt 546.46273 359.9)
+ (pt 546.41228 359.64639)
+ (pt 546.38652 359.60783)
+ (pt 546.95 359.60783)
+ (pt 547.10607 359.57679)
+ (pt 547.23838 359.48838)
+ (pt 547.32679 359.35607)
+ (pt 547.35783 359.2)
+ (pt 547.35783 359.17532)
+ (pt 547.50217 359.17532)
+ (pt 547.50217 359.18)
+ (pt 547.53321 359.33607)
+ (pt 547.62162 359.46838)
+ (pt 547.75393 359.55679)
+ (pt 547.91 359.58783)
+ (pt 549.21 359.58783)
+ (pt 549.36607 359.55679)
+ (pt 549.49838 359.46838)
+ (pt 549.58679 359.33607)
+ (pt 549.61783 359.18)
+ (pt 549.61783 359.14861)
+ (pt 549.71138 359.28862)
+ (pt 549.92639 359.43228)
+ (pt 550.18 359.48273)
+ (pt 550.43361 359.43228)
+ (pt 550.64862 359.28862)
+ (pt 550.79228 359.07361)
+ (pt 550.82377 358.91532)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 530.04778 388.02884)
+ (pt 529.84886 387.73114)
+ (pt 529.55116 387.53222)
+ (pt 529.2 387.46237)
+ (pt 528.84884 387.53222)
+ (pt 528.55114 387.73114)
+ (pt 528.35222 388.02884)
+ (pt 528.28237 388.38)
+ (pt 528.35222 388.73116)
+ (pt 528.55114 389.02886)
+ (pt 528.84884 389.22778)
+ (pt 529.2 389.29763)
+ (pt 529.55116 389.22778)
+ (pt 529.84886 389.02886)
+ (pt 530.04778 388.73116)
+ (pt 530.11763 388.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 529.55116 411.84778)
+ (pt 529.84886 411.64886)
+ (pt 530.04778 411.35116)
+ (pt 530.11763 411.0)
+ (pt 530.04778 410.64884)
+ (pt 529.84886 410.35114)
+ (pt 529.55116 410.15222)
+ (pt 529.2 410.08237)
+ (pt 528.84884 410.15222)
+ (pt 528.55114 410.35114)
+ (pt 528.35222 410.64884)
+ (pt 528.28237 411.0)
+ (pt 528.35222 411.35116)
+ (pt 528.55114 411.64886)
+ (pt 528.84884 411.84778)
+ (pt 529.2 411.91763)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 532.41228 342.20639)
+ (pt 532.26862 341.99138)
+ (pt 532.05361 341.84772)
+ (pt 531.8 341.79727)
+ (pt 531.54639 341.84772)
+ (pt 531.33138 341.99138)
+ (pt 531.18772 342.20639)
+ (pt 531.13727 342.46)
+ (pt 531.18772 342.71361)
+ (pt 531.33138 342.92862)
+ (pt 531.54639 343.07228)
+ (pt 531.8 343.12273)
+ (pt 532.05361 343.07228)
+ (pt 532.26862 342.92862)
+ (pt 532.41228 342.71361)
+ (pt 532.46273 342.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 627.54778 340.04884)
+ (pt 627.34886 339.75114)
+ (pt 627.05116 339.55222)
+ (pt 626.7 339.48237)
+ (pt 626.34884 339.55222)
+ (pt 626.05114 339.75114)
+ (pt 625.85222 340.04884)
+ (pt 625.78237 340.4)
+ (pt 625.85222 340.75116)
+ (pt 626.05114 341.04886)
+ (pt 626.34884 341.24778)
+ (pt 626.7 341.31763)
+ (pt 627.05116 341.24778)
+ (pt 627.34886 341.04886)
+ (pt 627.54778 340.75116)
+ (pt 627.61763 340.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 628.04778 360.54884)
+ (pt 627.84886 360.25114)
+ (pt 627.55116 360.05222)
+ (pt 627.2 359.98237)
+ (pt 626.84884 360.05222)
+ (pt 626.55114 360.25114)
+ (pt 626.35222 360.54884)
+ (pt 626.28237 360.9)
+ (pt 626.35222 361.25116)
+ (pt 626.55114 361.54886)
+ (pt 626.84884 361.74778)
+ (pt 627.2 361.81763)
+ (pt 627.55116 361.74778)
+ (pt 627.84886 361.54886)
+ (pt 628.04778 361.25116)
+ (pt 628.11763 360.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 632.24778 360.54884)
+ (pt 632.04886 360.25114)
+ (pt 631.75116 360.05222)
+ (pt 631.4 359.98237)
+ (pt 631.04884 360.05222)
+ (pt 630.75114 360.25114)
+ (pt 630.55222 360.54884)
+ (pt 630.48237 360.9)
+ (pt 630.55222 361.25116)
+ (pt 630.75114 361.54886)
+ (pt 631.04884 361.74778)
+ (pt 631.4 361.81763)
+ (pt 631.75116 361.74778)
+ (pt 632.04886 361.54886)
+ (pt 632.24778 361.25116)
+ (pt 632.31763 360.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 627.39358 405.22786)
+ (pt 627.21676 404.96324)
+ (pt 626.95214 404.78642)
+ (pt 626.64 404.72433)
+ (pt 626.32786 404.78642)
+ (pt 626.06324 404.96324)
+ (pt 625.88642 405.22786)
+ (pt 625.82433 405.54)
+ (pt 625.88642 405.85214)
+ (pt 626.06324 406.11676)
+ (pt 626.32786 406.29358)
+ (pt 626.64 406.35567)
+ (pt 626.95214 406.29358)
+ (pt 627.01642 406.25063)
+ (pt 627.07222 406.53116)
+ (pt 627.27114 406.82886)
+ (pt 627.56884 407.02778)
+ (pt 627.92 407.09763)
+ (pt 628.27116 407.02778)
+ (pt 628.56886 406.82886)
+ (pt 628.76778 406.53116)
+ (pt 628.83763 406.18)
+ (pt 628.76778 405.82884)
+ (pt 628.56886 405.53114)
+ (pt 628.27116 405.33222)
+ (pt 627.92 405.26237)
+ (pt 627.56884 405.33222)
+ (pt 627.43247 405.42334)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 529.81228 357.44639)
+ (pt 529.66862 357.23138)
+ (pt 529.45361 357.08772)
+ (pt 529.2 357.03727)
+ (pt 528.94639 357.08772)
+ (pt 528.73138 357.23138)
+ (pt 528.72668 357.23841)
+ (pt 528.70862 357.21138)
+ (pt 528.49361 357.06772)
+ (pt 528.24 357.01727)
+ (pt 527.98639 357.06772)
+ (pt 527.77138 357.21138)
+ (pt 527.62772 357.42639)
+ (pt 527.57727 357.68)
+ (pt 527.62772 357.93361)
+ (pt 527.77138 358.14862)
+ (pt 527.98639 358.29228)
+ (pt 528.24 358.34273)
+ (pt 528.49361 358.29228)
+ (pt 528.70862 358.14862)
+ (pt 528.71332 358.14159)
+ (pt 528.73138 358.16862)
+ (pt 528.94639 358.31228)
+ (pt 529.2 358.36273)
+ (pt 529.45361 358.31228)
+ (pt 529.66862 358.16862)
+ (pt 529.81228 357.95361)
+ (pt 529.86273 357.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.28838 409.21162)
+ (pt 526.15607 409.12321)
+ (pt 526.0 409.09217)
+ (pt 525.2 409.09217)
+ (pt 525.04393 409.12321)
+ (pt 524.93432 409.19645)
+ (pt 524.45783 409.19645)
+ (pt 524.45783 408.1)
+ (pt 524.42679 407.94393)
+ (pt 524.4 407.90384)
+ (pt 524.4 407.49616)
+ (pt 524.42679 407.45607)
+ (pt 524.43724 407.40355)
+ (pt 524.7 407.40355)
+ (pt 525.19748 407.19748)
+ (pt 525.3 407.09496)
+ (pt 525.40252 407.19748)
+ (pt 525.9 407.40355)
+ (pt 526.10282 407.40355)
+ (pt 526.12321 407.50607)
+ (pt 526.21162 407.63838)
+ (pt 526.34393 407.72679)
+ (pt 526.5 407.75783)
+ (pt 527.7 407.75783)
+ (pt 527.85607 407.72679)
+ (pt 527.89616 407.7)
+ (pt 528.30384 407.7)
+ (pt 528.34393 407.72679)
+ (pt 528.5 407.75783)
+ (pt 529.7 407.75783)
+ (pt 529.85607 407.72679)
+ (pt 529.98838 407.63838)
+ (pt 530.07679 407.50607)
+ (pt 530.10783 407.35)
+ (pt 530.10783 406.05)
+ (pt 530.07679 405.89393)
+ (pt 529.98838 405.76162)
+ (pt 529.85607 405.67321)
+ (pt 529.7071 405.64358)
+ (pt 529.84886 405.54886)
+ (pt 530.04778 405.25116)
+ (pt 530.11763 404.9)
+ (pt 530.04778 404.54884)
+ (pt 529.84886 404.25114)
+ (pt 529.55116 404.05222)
+ (pt 529.2 403.98237)
+ (pt 528.84884 404.05222)
+ (pt 528.71047 404.14468)
+ (pt 528.68838 404.11162)
+ (pt 528.55607 404.02321)
+ (pt 528.4 403.99217)
+ (pt 527.6 403.99217)
+ (pt 527.44393 404.02321)
+ (pt 527.31162 404.11162)
+ (pt 527.25256 404.2)
+ (pt 527.14744 404.2)
+ (pt 527.08838 404.11162)
+ (pt 526.95607 404.02321)
+ (pt 526.8 403.99217)
+ (pt 526.0 403.99217)
+ (pt 525.84393 404.02321)
+ (pt 525.71162 404.11162)
+ (pt 525.62321 404.24393)
+ (pt 525.59217 404.4)
+ (pt 525.59217 404.61287)
+ (pt 524.95381 405.25123)
+ (pt 524.94884 405.25222)
+ (pt 524.65114 405.45114)
+ (pt 524.45222 405.74884)
+ (pt 524.41648 405.9285)
+ (pt 524.33838 405.81162)
+ (pt 524.20607 405.72321)
+ (pt 524.05 405.69217)
+ (pt 522.75 405.69217)
+ (pt 522.59393 405.72321)
+ (pt 522.46162 405.81162)
+ (pt 522.37321 405.94393)
+ (pt 522.34217 406.1)
+ (pt 522.34217 407.3)
+ (pt 522.37321 407.45607)
+ (pt 522.4 407.49616)
+ (pt 522.4 407.90384)
+ (pt 522.37321 407.94393)
+ (pt 522.34217 408.1)
+ (pt 522.34217 409.3)
+ (pt 522.37321 409.45607)
+ (pt 522.46162 409.58838)
+ (pt 522.59393 409.67679)
+ (pt 522.69645 409.69718)
+ (pt 522.69645 409.81299)
+ (pt 522.64642 409.88786)
+ (pt 522.58433 410.2)
+ (pt 522.64642 410.51214)
+ (pt 522.82324 410.77676)
+ (pt 523.08786 410.95358)
+ (pt 523.4 411.01567)
+ (pt 523.71214 410.95358)
+ (pt 523.97676 410.77676)
+ (pt 524.0925 410.60355)
+ (pt 524.93432 410.60355)
+ (pt 525.04393 410.67679)
+ (pt 525.2 410.70783)
+ (pt 526.0 410.70783)
+ (pt 526.15607 410.67679)
+ (pt 526.28838 410.58838)
+ (pt 526.34744 410.5)
+ (pt 526.45256 410.5)
+ (pt 526.51162 410.58838)
+ (pt 526.64393 410.67679)
+ (pt 526.8 410.70783)
+ (pt 527.6 410.70783)
+ (pt 527.75607 410.67679)
+ (pt 527.88838 410.58838)
+ (pt 527.97679 410.45607)
+ (pt 528.00783 410.3)
+ (pt 528.00783 409.5)
+ (pt 527.97679 409.34393)
+ (pt 527.88838 409.21162)
+ (pt 527.75607 409.12321)
+ (pt 527.6 409.09217)
+ (pt 526.8 409.09217)
+ (pt 526.64393 409.12321)
+ (pt 526.51162 409.21162)
+ (pt 526.45256 409.3)
+ (pt 526.34744 409.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 557.64778 285.84884)
+ (pt 557.44886 285.55114)
+ (pt 557.15116 285.35222)
+ (pt 556.8 285.28237)
+ (pt 556.44884 285.35222)
+ (pt 556.15114 285.55114)
+ (pt 555.95222 285.84884)
+ (pt 555.88237 286.2)
+ (pt 555.95222 286.55116)
+ (pt 556.15114 286.84886)
+ (pt 556.44884 287.04778)
+ (pt 556.8 287.11763)
+ (pt 557.15116 287.04778)
+ (pt 557.44886 286.84886)
+ (pt 557.64778 286.55116)
+ (pt 557.71763 286.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 525.95228 397.82639)
+ (pt 525.80862 397.61138)
+ (pt 525.59361 397.46772)
+ (pt 525.34 397.41727)
+ (pt 525.08639 397.46772)
+ (pt 524.87138 397.61138)
+ (pt 524.72772 397.82639)
+ (pt 524.67727 398.08)
+ (pt 524.72772 398.33361)
+ (pt 524.87138 398.54862)
+ (pt 525.08639 398.69228)
+ (pt 525.34 398.74273)
+ (pt 525.59361 398.69228)
+ (pt 525.80862 398.54862)
+ (pt 525.95228 398.33361)
+ (pt 526.00273 398.08)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 542.42778 363.44884)
+ (pt 542.22886 363.15114)
+ (pt 541.93116 362.95222)
+ (pt 541.58 362.88237)
+ (pt 541.22884 362.95222)
+ (pt 540.93114 363.15114)
+ (pt 540.73222 363.44884)
+ (pt 540.66237 363.8)
+ (pt 540.73222 364.15116)
+ (pt 540.93114 364.44886)
+ (pt 541.22884 364.64778)
+ (pt 541.58 364.71763)
+ (pt 541.93116 364.64778)
+ (pt 542.22886 364.44886)
+ (pt 542.42778 364.15116)
+ (pt 542.49763 363.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 540.97361 359.26772)
+ (pt 540.72 359.21727)
+ (pt 540.46639 359.26772)
+ (pt 540.30503 359.37553)
+ (pt 540.17361 359.28772)
+ (pt 539.92 359.23727)
+ (pt 539.66639 359.28772)
+ (pt 539.45138 359.43138)
+ (pt 539.30772 359.64639)
+ (pt 539.25727 359.9)
+ (pt 539.30772 360.15361)
+ (pt 539.45138 360.36862)
+ (pt 539.66639 360.51228)
+ (pt 539.92 360.56273)
+ (pt 540.17361 360.51228)
+ (pt 540.33497 360.40447)
+ (pt 540.46639 360.49228)
+ (pt 540.72 360.54273)
+ (pt 540.97361 360.49228)
+ (pt 541.16 360.36774)
+ (pt 541.34639 360.49228)
+ (pt 541.6 360.54273)
+ (pt 541.85361 360.49228)
+ (pt 542.06862 360.34862)
+ (pt 542.21228 360.13361)
+ (pt 542.26273 359.88)
+ (pt 542.21228 359.62639)
+ (pt 542.06862 359.41138)
+ (pt 541.85361 359.26772)
+ (pt 541.6 359.21727)
+ (pt 541.34639 359.26772)
+ (pt 541.16 359.39226)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 526.04778 295.30884)
+ (pt 525.84886 295.01114)
+ (pt 525.55116 294.81222)
+ (pt 525.2 294.74237)
+ (pt 524.84884 294.81222)
+ (pt 524.55114 295.01114)
+ (pt 524.35222 295.30884)
+ (pt 524.28237 295.66)
+ (pt 524.35222 296.01116)
+ (pt 524.55114 296.30886)
+ (pt 524.84884 296.50778)
+ (pt 525.2 296.57763)
+ (pt 525.55116 296.50778)
+ (pt 525.84886 296.30886)
+ (pt 526.04778 296.01116)
+ (pt 526.11763 295.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 542.34778 262.84884)
+ (pt 542.14886 262.55114)
+ (pt 541.85116 262.35222)
+ (pt 541.5 262.28237)
+ (pt 541.14884 262.35222)
+ (pt 540.85114 262.55114)
+ (pt 540.65222 262.84884)
+ (pt 540.58237 263.2)
+ (pt 540.65222 263.55116)
+ (pt 540.85114 263.84886)
+ (pt 541.14884 264.04778)
+ (pt 541.5 264.11763)
+ (pt 541.85116 264.04778)
+ (pt 542.14886 263.84886)
+ (pt 542.34778 263.55116)
+ (pt 542.41763 263.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 519.42 415.90783)
+ (pt 519.57607 415.87679)
+ (pt 519.70838 415.78838)
+ (pt 519.79679 415.65607)
+ (pt 519.82783 415.5)
+ (pt 519.82783 414.5)
+ (pt 519.79679 414.34393)
+ (pt 519.70838 414.21162)
+ (pt 519.57607 414.12321)
+ (pt 519.42 414.09217)
+ (pt 518.42 414.09217)
+ (pt 518.26393 414.12321)
+ (pt 518.13162 414.21162)
+ (pt 518.04321 414.34393)
+ (pt 518.01217 414.5)
+ (pt 518.01217 415.5)
+ (pt 518.04321 415.65607)
+ (pt 518.13162 415.78838)
+ (pt 518.26393 415.87679)
+ (pt 518.42 415.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 510.53256 399.32)
+ (pt 510.59162 399.40838)
+ (pt 510.72393 399.49679)
+ (pt 510.88 399.52783)
+ (pt 511.68 399.52783)
+ (pt 511.83607 399.49679)
+ (pt 511.94568 399.42355)
+ (pt 512.12278 399.42355)
+ (pt 512.24884 399.50778)
+ (pt 512.6 399.57763)
+ (pt 512.95116 399.50778)
+ (pt 513.24886 399.30886)
+ (pt 513.44778 399.01116)
+ (pt 513.51763 398.66)
+ (pt 513.44778 398.30884)
+ (pt 513.24886 398.01114)
+ (pt 512.95116 397.81222)
+ (pt 512.6 397.74237)
+ (pt 512.24884 397.81222)
+ (pt 511.95114 398.01114)
+ (pt 511.94759 398.01645)
+ (pt 511.94568 398.01645)
+ (pt 511.83607 397.94321)
+ (pt 511.68 397.91217)
+ (pt 510.88 397.91217)
+ (pt 510.72393 397.94321)
+ (pt 510.59162 398.03162)
+ (pt 510.53256 398.12)
+ (pt 510.42744 398.12)
+ (pt 510.36838 398.03162)
+ (pt 510.23607 397.94321)
+ (pt 510.08 397.91217)
+ (pt 509.28 397.91217)
+ (pt 509.12393 397.94321)
+ (pt 508.99162 398.03162)
+ (pt 508.99103 398.0325)
+ (pt 508.75116 397.87222)
+ (pt 508.4 397.80237)
+ (pt 508.04884 397.87222)
+ (pt 507.75114 398.07114)
+ (pt 507.55222 398.36884)
+ (pt 507.48237 398.72)
+ (pt 507.55222 399.07116)
+ (pt 507.75114 399.36886)
+ (pt 508.04884 399.56778)
+ (pt 508.4 399.63763)
+ (pt 508.75116 399.56778)
+ (pt 508.99103 399.4075)
+ (pt 508.99162 399.40838)
+ (pt 509.12393 399.49679)
+ (pt 509.28 399.52783)
+ (pt 510.08 399.52783)
+ (pt 510.23607 399.49679)
+ (pt 510.36838 399.40838)
+ (pt 510.42744 399.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 378.9113)
+ (pt 496.5491 378.5309)
+ (pt 496.1687 378.27673)
+ (pt 495.72 378.18748)
+ (pt 495.2713 378.27673)
+ (pt 494.8909 378.5309)
+ (pt 494.63673 378.9113)
+ (pt 494.54748 379.36)
+ (pt 494.63673 379.8087)
+ (pt 494.8909 380.1891)
+ (pt 495.2713 380.44327)
+ (pt 495.72 380.53252)
+ (pt 496.1687 380.44327)
+ (pt 496.5491 380.1891)
+ (pt 496.80327 379.8087)
+ (pt 496.89252 379.36)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 496.80327 376.3713)
+ (pt 496.5491 375.9909)
+ (pt 496.1687 375.73673)
+ (pt 495.72 375.64748)
+ (pt 495.2713 375.73673)
+ (pt 494.8909 375.9909)
+ (pt 494.63673 376.3713)
+ (pt 494.54748 376.82)
+ (pt 494.63673 377.2687)
+ (pt 494.8909 377.6491)
+ (pt 495.2713 377.90327)
+ (pt 495.72 377.99252)
+ (pt 496.1687 377.90327)
+ (pt 496.5491 377.6491)
+ (pt 496.80327 377.2687)
+ (pt 496.89252 376.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 518.04778 376.24884)
+ (pt 517.84886 375.95114)
+ (pt 517.55116 375.75222)
+ (pt 517.2 375.68237)
+ (pt 516.84884 375.75222)
+ (pt 516.55114 375.95114)
+ (pt 516.35222 376.24884)
+ (pt 516.28237 376.6)
+ (pt 516.35222 376.95116)
+ (pt 516.55114 377.24886)
+ (pt 516.84884 377.44778)
+ (pt 517.2 377.51763)
+ (pt 517.55116 377.44778)
+ (pt 517.84886 377.24886)
+ (pt 518.04778 376.95116)
+ (pt 518.11763 376.6)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 519.78783 368.64)
+ (pt 519.75679 368.48393)
+ (pt 519.66838 368.35162)
+ (pt 519.53607 368.26321)
+ (pt 519.38 368.23217)
+ (pt 518.38 368.23217)
+ (pt 518.22393 368.26321)
+ (pt 518.09162 368.35162)
+ (pt 518.00321 368.48393)
+ (pt 517.97217 368.64)
+ (pt 517.97217 369.64)
+ (pt 518.00321 369.79607)
+ (pt 518.09162 369.92838)
+ (pt 518.22393 370.01679)
+ (pt 518.38 370.04783)
+ (pt 519.38 370.04783)
+ (pt 519.53607 370.01679)
+ (pt 519.66838 369.92838)
+ (pt 519.75679 369.79607)
+ (pt 519.78783 369.64)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 250.98243)
+ (pt 644.77438 250.71438)
+ (pt 645.04243 250.31321)
+ (pt 645.13656 249.84)
+ (pt 645.04243 249.36679)
+ (pt 644.77438 248.96562)
+ (pt 644.37321 248.69757)
+ (pt 643.9 248.60344)
+ (pt 643.42679 248.69757)
+ (pt 643.02562 248.96562)
+ (pt 642.75757 249.36679)
+ (pt 642.66344 249.84)
+ (pt 642.75757 250.31321)
+ (pt 643.02562 250.71438)
+ (pt 643.42679 250.98243)
+ (pt 643.9 251.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 248.44243)
+ (pt 644.77438 248.17438)
+ (pt 645.04243 247.77321)
+ (pt 645.13656 247.3)
+ (pt 645.04243 246.82679)
+ (pt 644.77438 246.42562)
+ (pt 644.37321 246.15757)
+ (pt 643.9 246.06344)
+ (pt 643.42679 246.15757)
+ (pt 643.02562 246.42562)
+ (pt 642.75757 246.82679)
+ (pt 642.66344 247.3)
+ (pt 642.75757 247.77321)
+ (pt 643.02562 248.17438)
+ (pt 643.42679 248.44243)
+ (pt 643.9 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 258.60243)
+ (pt 644.77438 258.33438)
+ (pt 645.04243 257.93321)
+ (pt 645.13656 257.46)
+ (pt 645.04243 256.98679)
+ (pt 644.77438 256.58562)
+ (pt 644.37321 256.31757)
+ (pt 643.9 256.22344)
+ (pt 643.42679 256.31757)
+ (pt 643.02562 256.58562)
+ (pt 642.75757 256.98679)
+ (pt 642.66344 257.46)
+ (pt 642.75757 257.93321)
+ (pt 643.02562 258.33438)
+ (pt 643.42679 258.60243)
+ (pt 643.9 258.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 256.06243)
+ (pt 644.77438 255.79438)
+ (pt 645.04243 255.39321)
+ (pt 645.13656 254.92)
+ (pt 645.04243 254.44679)
+ (pt 644.77438 254.04562)
+ (pt 644.37321 253.77757)
+ (pt 643.9 253.68344)
+ (pt 643.42679 253.77757)
+ (pt 643.02562 254.04562)
+ (pt 642.75757 254.44679)
+ (pt 642.66344 254.92)
+ (pt 642.75757 255.39321)
+ (pt 643.02562 255.79438)
+ (pt 643.42679 256.06243)
+ (pt 643.9 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 266.22243)
+ (pt 644.77438 265.95438)
+ (pt 645.04243 265.55321)
+ (pt 645.13656 265.08)
+ (pt 645.04243 264.60679)
+ (pt 644.77438 264.20562)
+ (pt 644.37321 263.93757)
+ (pt 643.9 263.84344)
+ (pt 643.42679 263.93757)
+ (pt 643.02562 264.20562)
+ (pt 642.75757 264.60679)
+ (pt 642.66344 265.08)
+ (pt 642.75757 265.55321)
+ (pt 643.02562 265.95438)
+ (pt 643.42679 266.22243)
+ (pt 643.9 266.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 263.68243)
+ (pt 644.77438 263.41438)
+ (pt 645.04243 263.01321)
+ (pt 645.13656 262.54)
+ (pt 645.04243 262.06679)
+ (pt 644.77438 261.66562)
+ (pt 644.37321 261.39757)
+ (pt 643.9 261.30344)
+ (pt 643.42679 261.39757)
+ (pt 643.02562 261.66562)
+ (pt 642.75757 262.06679)
+ (pt 642.66344 262.54)
+ (pt 642.75757 263.01321)
+ (pt 643.02562 263.41438)
+ (pt 643.42679 263.68243)
+ (pt 643.9 263.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 273.84243)
+ (pt 644.77438 273.57438)
+ (pt 645.04243 273.17321)
+ (pt 645.13656 272.7)
+ (pt 645.04243 272.22679)
+ (pt 644.77438 271.82562)
+ (pt 644.37321 271.55757)
+ (pt 643.9 271.46344)
+ (pt 643.42679 271.55757)
+ (pt 643.02562 271.82562)
+ (pt 642.75757 272.22679)
+ (pt 642.66344 272.7)
+ (pt 642.75757 273.17321)
+ (pt 643.02562 273.57438)
+ (pt 643.42679 273.84243)
+ (pt 643.9 273.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 271.30243)
+ (pt 644.77438 271.03438)
+ (pt 645.04243 270.63321)
+ (pt 645.13656 270.16)
+ (pt 645.04243 269.68679)
+ (pt 644.77438 269.28562)
+ (pt 644.37321 269.01757)
+ (pt 643.9 268.92344)
+ (pt 643.42679 269.01757)
+ (pt 643.02562 269.28562)
+ (pt 642.75757 269.68679)
+ (pt 642.66344 270.16)
+ (pt 642.75757 270.63321)
+ (pt 643.02562 271.03438)
+ (pt 643.42679 271.30243)
+ (pt 643.9 271.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 281.46243)
+ (pt 644.77438 281.19438)
+ (pt 645.04243 280.79321)
+ (pt 645.13656 280.32)
+ (pt 645.04243 279.84679)
+ (pt 644.77438 279.44562)
+ (pt 644.37321 279.17757)
+ (pt 643.9 279.08344)
+ (pt 643.42679 279.17757)
+ (pt 643.02562 279.44562)
+ (pt 642.75757 279.84679)
+ (pt 642.66344 280.32)
+ (pt 642.75757 280.79321)
+ (pt 643.02562 281.19438)
+ (pt 643.42679 281.46243)
+ (pt 643.9 281.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 278.92243)
+ (pt 644.77438 278.65438)
+ (pt 645.04243 278.25321)
+ (pt 645.13656 277.78)
+ (pt 645.04243 277.30679)
+ (pt 644.77438 276.90562)
+ (pt 644.37321 276.63757)
+ (pt 643.9 276.54344)
+ (pt 643.42679 276.63757)
+ (pt 643.02562 276.90562)
+ (pt 642.75757 277.30679)
+ (pt 642.66344 277.78)
+ (pt 642.75757 278.25321)
+ (pt 643.02562 278.65438)
+ (pt 643.42679 278.92243)
+ (pt 643.9 279.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 289.08243)
+ (pt 644.77438 288.81438)
+ (pt 645.04243 288.41321)
+ (pt 645.13656 287.94)
+ (pt 645.04243 287.46679)
+ (pt 644.77438 287.06562)
+ (pt 644.37321 286.79757)
+ (pt 643.9 286.70344)
+ (pt 643.42679 286.79757)
+ (pt 643.02562 287.06562)
+ (pt 642.75757 287.46679)
+ (pt 642.66344 287.94)
+ (pt 642.75757 288.41321)
+ (pt 643.02562 288.81438)
+ (pt 643.42679 289.08243)
+ (pt 643.9 289.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 286.54243)
+ (pt 644.77438 286.27438)
+ (pt 645.04243 285.87321)
+ (pt 645.13656 285.4)
+ (pt 645.04243 284.92679)
+ (pt 644.77438 284.52562)
+ (pt 644.37321 284.25757)
+ (pt 643.9 284.16344)
+ (pt 643.42679 284.25757)
+ (pt 643.02562 284.52562)
+ (pt 642.75757 284.92679)
+ (pt 642.66344 285.4)
+ (pt 642.75757 285.87321)
+ (pt 643.02562 286.27438)
+ (pt 643.42679 286.54243)
+ (pt 643.9 286.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 296.70243)
+ (pt 644.77438 296.43438)
+ (pt 645.04243 296.03321)
+ (pt 645.13656 295.56)
+ (pt 645.04243 295.08679)
+ (pt 644.77438 294.68562)
+ (pt 644.37321 294.41757)
+ (pt 643.9 294.32344)
+ (pt 643.42679 294.41757)
+ (pt 643.02562 294.68562)
+ (pt 642.75757 295.08679)
+ (pt 642.66344 295.56)
+ (pt 642.75757 296.03321)
+ (pt 643.02562 296.43438)
+ (pt 643.42679 296.70243)
+ (pt 643.9 296.79656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 294.16243)
+ (pt 644.77438 293.89438)
+ (pt 645.04243 293.49321)
+ (pt 645.13656 293.02)
+ (pt 645.04243 292.54679)
+ (pt 644.77438 292.14562)
+ (pt 644.37321 291.87757)
+ (pt 643.9 291.78344)
+ (pt 643.42679 291.87757)
+ (pt 643.02562 292.14562)
+ (pt 642.75757 292.54679)
+ (pt 642.66344 293.02)
+ (pt 642.75757 293.49321)
+ (pt 643.02562 293.89438)
+ (pt 643.42679 294.16243)
+ (pt 643.9 294.25656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 304.32243)
+ (pt 644.77438 304.05438)
+ (pt 645.04243 303.65321)
+ (pt 645.13656 303.18)
+ (pt 645.04243 302.70679)
+ (pt 644.77438 302.30562)
+ (pt 644.37321 302.03757)
+ (pt 643.9 301.94344)
+ (pt 643.42679 302.03757)
+ (pt 643.02562 302.30562)
+ (pt 642.75757 302.70679)
+ (pt 642.66344 303.18)
+ (pt 642.75757 303.65321)
+ (pt 643.02562 304.05438)
+ (pt 643.42679 304.32243)
+ (pt 643.9 304.41656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 301.78243)
+ (pt 644.77438 301.51438)
+ (pt 645.04243 301.11321)
+ (pt 645.13656 300.64)
+ (pt 645.04243 300.16679)
+ (pt 644.77438 299.76562)
+ (pt 644.37321 299.49757)
+ (pt 643.9 299.40344)
+ (pt 643.42679 299.49757)
+ (pt 643.02562 299.76562)
+ (pt 642.75757 300.16679)
+ (pt 642.66344 300.64)
+ (pt 642.75757 301.11321)
+ (pt 643.02562 301.51438)
+ (pt 643.42679 301.78243)
+ (pt 643.9 301.87656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 311.94243)
+ (pt 644.77438 311.67438)
+ (pt 645.04243 311.27321)
+ (pt 645.13656 310.8)
+ (pt 645.04243 310.32679)
+ (pt 644.77438 309.92562)
+ (pt 644.37321 309.65757)
+ (pt 643.9 309.56344)
+ (pt 643.42679 309.65757)
+ (pt 643.02562 309.92562)
+ (pt 642.75757 310.32679)
+ (pt 642.66344 310.8)
+ (pt 642.75757 311.27321)
+ (pt 643.02562 311.67438)
+ (pt 643.42679 311.94243)
+ (pt 643.9 312.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 309.40243)
+ (pt 644.77438 309.13438)
+ (pt 645.04243 308.73321)
+ (pt 645.13656 308.26)
+ (pt 645.04243 307.78679)
+ (pt 644.77438 307.38562)
+ (pt 644.37321 307.11757)
+ (pt 643.9 307.02344)
+ (pt 643.42679 307.11757)
+ (pt 643.02562 307.38562)
+ (pt 642.75757 307.78679)
+ (pt 642.66344 308.26)
+ (pt 642.75757 308.73321)
+ (pt 643.02562 309.13438)
+ (pt 643.42679 309.40243)
+ (pt 643.9 309.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 319.56243)
+ (pt 644.77438 319.29438)
+ (pt 645.04243 318.89321)
+ (pt 645.13656 318.42)
+ (pt 645.04243 317.94679)
+ (pt 644.77438 317.54562)
+ (pt 644.37321 317.27757)
+ (pt 643.9 317.18344)
+ (pt 643.42679 317.27757)
+ (pt 643.02562 317.54562)
+ (pt 642.75757 317.94679)
+ (pt 642.66344 318.42)
+ (pt 642.75757 318.89321)
+ (pt 643.02562 319.29438)
+ (pt 643.42679 319.56243)
+ (pt 643.9 319.65656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 317.02243)
+ (pt 644.77438 316.75438)
+ (pt 645.04243 316.35321)
+ (pt 645.13656 315.88)
+ (pt 645.04243 315.40679)
+ (pt 644.77438 315.00562)
+ (pt 644.37321 314.73757)
+ (pt 643.9 314.64344)
+ (pt 643.42679 314.73757)
+ (pt 643.02562 315.00562)
+ (pt 642.75757 315.40679)
+ (pt 642.66344 315.88)
+ (pt 642.75757 316.35321)
+ (pt 643.02562 316.75438)
+ (pt 643.42679 317.02243)
+ (pt 643.9 317.11656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.7128 324.72063)
+ (pt 644.86887 324.68959)
+ (pt 645.00118 324.60118)
+ (pt 645.08959 324.46887)
+ (pt 645.12063 324.3128)
+ (pt 645.12063 322.6872)
+ (pt 645.08959 322.53113)
+ (pt 645.00118 322.39882)
+ (pt 644.86887 322.31041)
+ (pt 644.7128 322.27937)
+ (pt 643.0872 322.27937)
+ (pt 642.93113 322.31041)
+ (pt 642.79882 322.39882)
+ (pt 642.71041 322.53113)
+ (pt 642.67937 322.6872)
+ (pt 642.67937 324.3128)
+ (pt 642.71041 324.46887)
+ (pt 642.79882 324.60118)
+ (pt 642.93113 324.68959)
+ (pt 643.0872 324.72063)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 379.20243)
+ (pt 642.33438 378.93438)
+ (pt 642.60243 378.53321)
+ (pt 642.69656 378.06)
+ (pt 642.60243 377.58679)
+ (pt 642.33438 377.18562)
+ (pt 641.93321 376.91757)
+ (pt 641.46 376.82344)
+ (pt 640.98679 376.91757)
+ (pt 640.58562 377.18562)
+ (pt 640.31757 377.58679)
+ (pt 640.22344 378.06)
+ (pt 640.31757 378.53321)
+ (pt 640.58562 378.93438)
+ (pt 640.98679 379.20243)
+ (pt 641.46 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 379.20243)
+ (pt 644.87438 378.93438)
+ (pt 645.14243 378.53321)
+ (pt 645.23656 378.06)
+ (pt 645.14243 377.58679)
+ (pt 644.87438 377.18562)
+ (pt 644.47321 376.91757)
+ (pt 644.0 376.82344)
+ (pt 643.52679 376.91757)
+ (pt 643.12562 377.18562)
+ (pt 642.85757 377.58679)
+ (pt 642.76344 378.06)
+ (pt 642.85757 378.53321)
+ (pt 643.12562 378.93438)
+ (pt 643.52679 379.20243)
+ (pt 644.0 379.29656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 384.28243)
+ (pt 642.33438 384.01438)
+ (pt 642.60243 383.61321)
+ (pt 642.69656 383.14)
+ (pt 642.60243 382.66679)
+ (pt 642.33438 382.26562)
+ (pt 641.93321 381.99757)
+ (pt 641.46 381.90344)
+ (pt 640.98679 381.99757)
+ (pt 640.58562 382.26562)
+ (pt 640.31757 382.66679)
+ (pt 640.22344 383.14)
+ (pt 640.31757 383.61321)
+ (pt 640.58562 384.01438)
+ (pt 640.98679 384.28243)
+ (pt 641.46 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 384.28243)
+ (pt 644.87438 384.01438)
+ (pt 645.14243 383.61321)
+ (pt 645.23656 383.14)
+ (pt 645.14243 382.66679)
+ (pt 644.87438 382.26562)
+ (pt 644.47321 381.99757)
+ (pt 644.0 381.90344)
+ (pt 643.52679 381.99757)
+ (pt 643.12562 382.26562)
+ (pt 642.85757 382.66679)
+ (pt 642.76344 383.14)
+ (pt 642.85757 383.61321)
+ (pt 643.12562 384.01438)
+ (pt 643.52679 384.28243)
+ (pt 644.0 384.37656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 386.82243)
+ (pt 642.33438 386.55438)
+ (pt 642.60243 386.15321)
+ (pt 642.69656 385.68)
+ (pt 642.60243 385.20679)
+ (pt 642.33438 384.80562)
+ (pt 641.93321 384.53757)
+ (pt 641.46 384.44344)
+ (pt 640.98679 384.53757)
+ (pt 640.58562 384.80562)
+ (pt 640.31757 385.20679)
+ (pt 640.22344 385.68)
+ (pt 640.31757 386.15321)
+ (pt 640.58562 386.55438)
+ (pt 640.98679 386.82243)
+ (pt 641.46 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 386.82243)
+ (pt 644.87438 386.55438)
+ (pt 645.14243 386.15321)
+ (pt 645.23656 385.68)
+ (pt 645.14243 385.20679)
+ (pt 644.87438 384.80562)
+ (pt 644.47321 384.53757)
+ (pt 644.0 384.44344)
+ (pt 643.52679 384.53757)
+ (pt 643.12562 384.80562)
+ (pt 642.85757 385.20679)
+ (pt 642.76344 385.68)
+ (pt 642.85757 386.15321)
+ (pt 643.12562 386.55438)
+ (pt 643.52679 386.82243)
+ (pt 644.0 386.91656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 391.90243)
+ (pt 642.33438 391.63438)
+ (pt 642.60243 391.23321)
+ (pt 642.69656 390.76)
+ (pt 642.60243 390.28679)
+ (pt 642.33438 389.88562)
+ (pt 641.93321 389.61757)
+ (pt 641.46 389.52344)
+ (pt 640.98679 389.61757)
+ (pt 640.58562 389.88562)
+ (pt 640.31757 390.28679)
+ (pt 640.22344 390.76)
+ (pt 640.31757 391.23321)
+ (pt 640.58562 391.63438)
+ (pt 640.98679 391.90243)
+ (pt 641.46 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 391.90243)
+ (pt 644.87438 391.63438)
+ (pt 645.14243 391.23321)
+ (pt 645.23656 390.76)
+ (pt 645.14243 390.28679)
+ (pt 644.87438 389.88562)
+ (pt 644.47321 389.61757)
+ (pt 644.0 389.52344)
+ (pt 643.52679 389.61757)
+ (pt 643.12562 389.88562)
+ (pt 642.85757 390.28679)
+ (pt 642.76344 390.76)
+ (pt 642.85757 391.23321)
+ (pt 643.12562 391.63438)
+ (pt 643.52679 391.90243)
+ (pt 644.0 391.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 394.44243)
+ (pt 642.33438 394.17438)
+ (pt 642.60243 393.77321)
+ (pt 642.69656 393.3)
+ (pt 642.60243 392.82679)
+ (pt 642.33438 392.42562)
+ (pt 641.93321 392.15757)
+ (pt 641.46 392.06344)
+ (pt 640.98679 392.15757)
+ (pt 640.58562 392.42562)
+ (pt 640.31757 392.82679)
+ (pt 640.22344 393.3)
+ (pt 640.31757 393.77321)
+ (pt 640.58562 394.17438)
+ (pt 640.98679 394.44243)
+ (pt 641.46 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 394.44243)
+ (pt 644.87438 394.17438)
+ (pt 645.14243 393.77321)
+ (pt 645.23656 393.3)
+ (pt 645.14243 392.82679)
+ (pt 644.87438 392.42562)
+ (pt 644.47321 392.15757)
+ (pt 644.0 392.06344)
+ (pt 643.52679 392.15757)
+ (pt 643.12562 392.42562)
+ (pt 642.85757 392.82679)
+ (pt 642.76344 393.3)
+ (pt 642.85757 393.77321)
+ (pt 643.12562 394.17438)
+ (pt 643.52679 394.44243)
+ (pt 644.0 394.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 399.52243)
+ (pt 642.33438 399.25438)
+ (pt 642.60243 398.85321)
+ (pt 642.69656 398.38)
+ (pt 642.60243 397.90679)
+ (pt 642.33438 397.50562)
+ (pt 641.93321 397.23757)
+ (pt 641.46 397.14344)
+ (pt 640.98679 397.23757)
+ (pt 640.58562 397.50562)
+ (pt 640.31757 397.90679)
+ (pt 640.22344 398.38)
+ (pt 640.31757 398.85321)
+ (pt 640.58562 399.25438)
+ (pt 640.98679 399.52243)
+ (pt 641.46 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 399.52243)
+ (pt 644.87438 399.25438)
+ (pt 645.14243 398.85321)
+ (pt 645.23656 398.38)
+ (pt 645.14243 397.90679)
+ (pt 644.87438 397.50562)
+ (pt 644.47321 397.23757)
+ (pt 644.0 397.14344)
+ (pt 643.52679 397.23757)
+ (pt 643.12562 397.50562)
+ (pt 642.85757 397.90679)
+ (pt 642.76344 398.38)
+ (pt 642.85757 398.85321)
+ (pt 643.12562 399.25438)
+ (pt 643.52679 399.52243)
+ (pt 644.0 399.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 402.06243)
+ (pt 642.33438 401.79438)
+ (pt 642.60243 401.39321)
+ (pt 642.69656 400.92)
+ (pt 642.60243 400.44679)
+ (pt 642.33438 400.04562)
+ (pt 641.93321 399.77757)
+ (pt 641.46 399.68344)
+ (pt 640.98679 399.77757)
+ (pt 640.58562 400.04562)
+ (pt 640.31757 400.44679)
+ (pt 640.22344 400.92)
+ (pt 640.31757 401.39321)
+ (pt 640.58562 401.79438)
+ (pt 640.98679 402.06243)
+ (pt 641.46 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 402.06243)
+ (pt 644.87438 401.79438)
+ (pt 645.14243 401.39321)
+ (pt 645.23656 400.92)
+ (pt 645.14243 400.44679)
+ (pt 644.87438 400.04562)
+ (pt 644.47321 399.77757)
+ (pt 644.0 399.68344)
+ (pt 643.52679 399.77757)
+ (pt 643.12562 400.04562)
+ (pt 642.85757 400.44679)
+ (pt 642.76344 400.92)
+ (pt 642.85757 401.39321)
+ (pt 643.12562 401.79438)
+ (pt 643.52679 402.06243)
+ (pt 644.0 402.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 407.14243)
+ (pt 642.33438 406.87438)
+ (pt 642.60243 406.47321)
+ (pt 642.69656 406.0)
+ (pt 642.60243 405.52679)
+ (pt 642.33438 405.12562)
+ (pt 641.93321 404.85757)
+ (pt 641.46 404.76344)
+ (pt 640.98679 404.85757)
+ (pt 640.58562 405.12562)
+ (pt 640.31757 405.52679)
+ (pt 640.22344 406.0)
+ (pt 640.31757 406.47321)
+ (pt 640.58562 406.87438)
+ (pt 640.98679 407.14243)
+ (pt 641.46 407.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 407.14243)
+ (pt 644.87438 406.87438)
+ (pt 645.14243 406.47321)
+ (pt 645.23656 406.0)
+ (pt 645.14243 405.52679)
+ (pt 644.87438 405.12562)
+ (pt 644.47321 404.85757)
+ (pt 644.0 404.76344)
+ (pt 643.52679 404.85757)
+ (pt 643.12562 405.12562)
+ (pt 642.85757 405.52679)
+ (pt 642.76344 406.0)
+ (pt 642.85757 406.47321)
+ (pt 643.12562 406.87438)
+ (pt 643.52679 407.14243)
+ (pt 644.0 407.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 409.68243)
+ (pt 642.33438 409.41438)
+ (pt 642.60243 409.01321)
+ (pt 642.69656 408.54)
+ (pt 642.60243 408.06679)
+ (pt 642.33438 407.66562)
+ (pt 641.93321 407.39757)
+ (pt 641.46 407.30344)
+ (pt 640.98679 407.39757)
+ (pt 640.58562 407.66562)
+ (pt 640.31757 408.06679)
+ (pt 640.22344 408.54)
+ (pt 640.31757 409.01321)
+ (pt 640.58562 409.41438)
+ (pt 640.98679 409.68243)
+ (pt 641.46 409.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 409.68243)
+ (pt 644.87438 409.41438)
+ (pt 645.14243 409.01321)
+ (pt 645.23656 408.54)
+ (pt 645.14243 408.06679)
+ (pt 644.87438 407.66562)
+ (pt 644.47321 407.39757)
+ (pt 644.0 407.30344)
+ (pt 643.52679 407.39757)
+ (pt 643.12562 407.66562)
+ (pt 642.85757 408.06679)
+ (pt 642.76344 408.54)
+ (pt 642.85757 409.01321)
+ (pt 643.12562 409.41438)
+ (pt 643.52679 409.68243)
+ (pt 644.0 409.77656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 414.76243)
+ (pt 642.33438 414.49438)
+ (pt 642.60243 414.09321)
+ (pt 642.69656 413.62)
+ (pt 642.60243 413.14679)
+ (pt 642.33438 412.74562)
+ (pt 641.93321 412.47757)
+ (pt 641.46 412.38344)
+ (pt 640.98679 412.47757)
+ (pt 640.58562 412.74562)
+ (pt 640.31757 413.14679)
+ (pt 640.22344 413.62)
+ (pt 640.31757 414.09321)
+ (pt 640.58562 414.49438)
+ (pt 640.98679 414.76243)
+ (pt 641.46 414.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 414.76243)
+ (pt 644.87438 414.49438)
+ (pt 645.14243 414.09321)
+ (pt 645.23656 413.62)
+ (pt 645.14243 413.14679)
+ (pt 644.87438 412.74562)
+ (pt 644.47321 412.47757)
+ (pt 644.0 412.38344)
+ (pt 643.52679 412.47757)
+ (pt 643.12562 412.74562)
+ (pt 642.85757 413.14679)
+ (pt 642.76344 413.62)
+ (pt 642.85757 414.09321)
+ (pt 643.12562 414.49438)
+ (pt 643.52679 414.76243)
+ (pt 644.0 414.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 417.30243)
+ (pt 642.33438 417.03438)
+ (pt 642.60243 416.63321)
+ (pt 642.69656 416.16)
+ (pt 642.60243 415.68679)
+ (pt 642.33438 415.28562)
+ (pt 641.93321 415.01757)
+ (pt 641.46 414.92344)
+ (pt 640.98679 415.01757)
+ (pt 640.58562 415.28562)
+ (pt 640.31757 415.68679)
+ (pt 640.22344 416.16)
+ (pt 640.31757 416.63321)
+ (pt 640.58562 417.03438)
+ (pt 640.98679 417.30243)
+ (pt 641.46 417.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 417.30243)
+ (pt 644.87438 417.03438)
+ (pt 645.14243 416.63321)
+ (pt 645.23656 416.16)
+ (pt 645.14243 415.68679)
+ (pt 644.87438 415.28562)
+ (pt 644.47321 415.01757)
+ (pt 644.0 414.92344)
+ (pt 643.52679 415.01757)
+ (pt 643.12562 415.28562)
+ (pt 642.85757 415.68679)
+ (pt 642.76344 416.16)
+ (pt 642.85757 416.63321)
+ (pt 643.12562 417.03438)
+ (pt 643.52679 417.30243)
+ (pt 644.0 417.39656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 422.38243)
+ (pt 642.33438 422.11438)
+ (pt 642.60243 421.71321)
+ (pt 642.69656 421.24)
+ (pt 642.60243 420.76679)
+ (pt 642.33438 420.36562)
+ (pt 641.93321 420.09757)
+ (pt 641.46 420.00344)
+ (pt 640.98679 420.09757)
+ (pt 640.58562 420.36562)
+ (pt 640.31757 420.76679)
+ (pt 640.22344 421.24)
+ (pt 640.31757 421.71321)
+ (pt 640.58562 422.11438)
+ (pt 640.98679 422.38243)
+ (pt 641.46 422.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 422.38243)
+ (pt 644.87438 422.11438)
+ (pt 645.14243 421.71321)
+ (pt 645.23656 421.24)
+ (pt 645.14243 420.76679)
+ (pt 644.87438 420.36562)
+ (pt 644.47321 420.09757)
+ (pt 644.0 420.00344)
+ (pt 643.52679 420.09757)
+ (pt 643.12562 420.36562)
+ (pt 642.85757 420.76679)
+ (pt 642.76344 421.24)
+ (pt 642.85757 421.71321)
+ (pt 643.12562 422.11438)
+ (pt 643.52679 422.38243)
+ (pt 644.0 422.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 424.92243)
+ (pt 642.33438 424.65438)
+ (pt 642.60243 424.25321)
+ (pt 642.69656 423.78)
+ (pt 642.60243 423.30679)
+ (pt 642.33438 422.90562)
+ (pt 641.93321 422.63757)
+ (pt 641.46 422.54344)
+ (pt 640.98679 422.63757)
+ (pt 640.58562 422.90562)
+ (pt 640.31757 423.30679)
+ (pt 640.22344 423.78)
+ (pt 640.31757 424.25321)
+ (pt 640.58562 424.65438)
+ (pt 640.98679 424.92243)
+ (pt 641.46 425.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 424.92243)
+ (pt 644.87438 424.65438)
+ (pt 645.14243 424.25321)
+ (pt 645.23656 423.78)
+ (pt 645.14243 423.30679)
+ (pt 644.87438 422.90562)
+ (pt 644.47321 422.63757)
+ (pt 644.0 422.54344)
+ (pt 643.52679 422.63757)
+ (pt 643.12562 422.90562)
+ (pt 642.85757 423.30679)
+ (pt 642.76344 423.78)
+ (pt 642.85757 424.25321)
+ (pt 643.12562 424.65438)
+ (pt 643.52679 424.92243)
+ (pt 644.0 425.01656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 430.00243)
+ (pt 642.33438 429.73438)
+ (pt 642.60243 429.33321)
+ (pt 642.69656 428.86)
+ (pt 642.60243 428.38679)
+ (pt 642.33438 427.98562)
+ (pt 641.93321 427.71757)
+ (pt 641.46 427.62344)
+ (pt 640.98679 427.71757)
+ (pt 640.58562 427.98562)
+ (pt 640.31757 428.38679)
+ (pt 640.22344 428.86)
+ (pt 640.31757 429.33321)
+ (pt 640.58562 429.73438)
+ (pt 640.98679 430.00243)
+ (pt 641.46 430.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.87877 306.91375)
+ (pt 372.56934 306.45066)
+ (pt 372.10625 306.14123)
+ (pt 371.56 306.03258)
+ (pt 371.01375 306.14123)
+ (pt 370.55066 306.45066)
+ (pt 370.24123 306.91375)
+ (pt 370.13258 307.46)
+ (pt 370.24123 308.00625)
+ (pt 370.55066 308.46934)
+ (pt 371.01375 308.77877)
+ (pt 371.56 308.88742)
+ (pt 372.10625 308.77877)
+ (pt 372.56934 308.46934)
+ (pt 372.87877 308.00625)
+ (pt 372.98742 307.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 432.54243)
+ (pt 642.33438 432.27438)
+ (pt 642.60243 431.87321)
+ (pt 642.69656 431.4)
+ (pt 642.60243 430.92679)
+ (pt 642.33438 430.52562)
+ (pt 641.93321 430.25757)
+ (pt 641.46 430.16344)
+ (pt 640.98679 430.25757)
+ (pt 640.58562 430.52562)
+ (pt 640.31757 430.92679)
+ (pt 640.22344 431.4)
+ (pt 640.31757 431.87321)
+ (pt 640.58562 432.27438)
+ (pt 640.98679 432.54243)
+ (pt 641.46 432.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 432.54243)
+ (pt 644.87438 432.27438)
+ (pt 645.14243 431.87321)
+ (pt 645.23656 431.4)
+ (pt 645.14243 430.92679)
+ (pt 644.87438 430.52562)
+ (pt 644.47321 430.25757)
+ (pt 644.0 430.16344)
+ (pt 643.52679 430.25757)
+ (pt 643.12562 430.52562)
+ (pt 642.85757 430.92679)
+ (pt 642.76344 431.4)
+ (pt 642.85757 431.87321)
+ (pt 643.12562 432.27438)
+ (pt 643.52679 432.54243)
+ (pt 644.0 432.63656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.9 251.4)
+ (pt 614.3 251.4)
+ (pt 614.3 241.2)
+ (pt 595.9 241.2)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 593.0 382.40783)
+ (pt 593.15607 382.37679)
+ (pt 593.28838 382.28838)
+ (pt 593.37679 382.15607)
+ (pt 593.40783 382.0)
+ (pt 593.40783 381.0)
+ (pt 593.37679 380.84393)
+ (pt 593.28838 380.71162)
+ (pt 593.15607 380.62321)
+ (pt 593.0 380.59217)
+ (pt 592.0 380.59217)
+ (pt 591.84393 380.62321)
+ (pt 591.71162 380.71162)
+ (pt 591.62321 380.84393)
+ (pt 591.59217 381.0)
+ (pt 591.59217 382.0)
+ (pt 591.62321 382.15607)
+ (pt 591.71162 382.28838)
+ (pt 591.84393 382.37679)
+ (pt 592.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 590.5 382.40783)
+ (pt 590.65607 382.37679)
+ (pt 590.78838 382.28838)
+ (pt 590.87679 382.15607)
+ (pt 590.90783 382.0)
+ (pt 590.90783 381.0)
+ (pt 590.87679 380.84393)
+ (pt 590.78838 380.71162)
+ (pt 590.65607 380.62321)
+ (pt 590.5 380.59217)
+ (pt 589.5 380.59217)
+ (pt 589.34393 380.62321)
+ (pt 589.21162 380.71162)
+ (pt 589.12321 380.84393)
+ (pt 589.09217 381.0)
+ (pt 589.09217 382.0)
+ (pt 589.12321 382.15607)
+ (pt 589.21162 382.28838)
+ (pt 589.34393 382.37679)
+ (pt 589.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 518.88783 371.34)
+ (pt 518.85679 371.18393)
+ (pt 518.76838 371.05162)
+ (pt 518.63607 370.96321)
+ (pt 518.48 370.93217)
+ (pt 517.48 370.93217)
+ (pt 517.32393 370.96321)
+ (pt 517.19162 371.05162)
+ (pt 517.10321 371.18393)
+ (pt 517.07217 371.34)
+ (pt 517.07217 372.34)
+ (pt 517.10321 372.49607)
+ (pt 517.19162 372.62838)
+ (pt 517.32393 372.71679)
+ (pt 517.48 372.74783)
+ (pt 518.48 372.74783)
+ (pt 518.63607 372.71679)
+ (pt 518.76838 372.62838)
+ (pt 518.85679 372.49607)
+ (pt 518.88783 372.34)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 452.86243)
+ (pt 644.87438 452.59438)
+ (pt 645.14243 452.19321)
+ (pt 645.23656 451.72)
+ (pt 645.14243 451.24679)
+ (pt 644.87438 450.84562)
+ (pt 644.47321 450.57757)
+ (pt 644.0 450.48344)
+ (pt 643.52679 450.57757)
+ (pt 643.12562 450.84562)
+ (pt 642.85757 451.24679)
+ (pt 642.76344 451.72)
+ (pt 642.85757 452.19321)
+ (pt 643.12562 452.59438)
+ (pt 643.52679 452.86243)
+ (pt 644.0 452.95656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 455.40243)
+ (pt 642.33438 455.13438)
+ (pt 642.60243 454.73321)
+ (pt 642.69656 454.26)
+ (pt 642.60243 453.78679)
+ (pt 642.33438 453.38562)
+ (pt 641.93321 453.11757)
+ (pt 641.46 453.02344)
+ (pt 640.98679 453.11757)
+ (pt 640.58562 453.38562)
+ (pt 640.31757 453.78679)
+ (pt 640.22344 454.26)
+ (pt 640.31757 454.73321)
+ (pt 640.58562 455.13438)
+ (pt 640.98679 455.40243)
+ (pt 641.46 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 455.40243)
+ (pt 644.87438 455.13438)
+ (pt 645.14243 454.73321)
+ (pt 645.23656 454.26)
+ (pt 645.14243 453.78679)
+ (pt 644.87438 453.38562)
+ (pt 644.47321 453.11757)
+ (pt 644.0 453.02344)
+ (pt 643.52679 453.11757)
+ (pt 643.12562 453.38562)
+ (pt 642.85757 453.78679)
+ (pt 642.76344 454.26)
+ (pt 642.85757 454.73321)
+ (pt 643.12562 455.13438)
+ (pt 643.52679 455.40243)
+ (pt 644.0 455.49656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.64924 289.44768)
+ (pt 614.74786 289.51358)
+ (pt 615.06 289.57567)
+ (pt 615.37214 289.51358)
+ (pt 615.63676 289.33676)
+ (pt 615.81358 289.07214)
+ (pt 615.87567 288.76)
+ (pt 615.81358 288.44786)
+ (pt 615.63676 288.18324)
+ (pt 615.54212 288.12)
+ (pt 615.63676 288.05676)
+ (pt 615.81358 287.79214)
+ (pt 615.87567 287.48)
+ (pt 615.81358 287.16786)
+ (pt 615.63676 286.90324)
+ (pt 615.54212 286.84)
+ (pt 615.63676 286.77676)
+ (pt 615.81358 286.51214)
+ (pt 615.87567 286.2)
+ (pt 615.81358 285.88786)
+ (pt 615.63676 285.62324)
+ (pt 615.37214 285.44642)
+ (pt 615.06 285.38433)
+ (pt 614.74786 285.44642)
+ (pt 614.49237 285.61714)
+ (pt 614.51567 285.5)
+ (pt 614.45358 285.18786)
+ (pt 614.27676 284.92324)
+ (pt 614.01214 284.74642)
+ (pt 613.7 284.68433)
+ (pt 613.38786 284.74642)
+ (pt 613.12324 284.92324)
+ (pt 612.94642 285.18786)
+ (pt 612.88433 285.5)
+ (pt 612.94642 285.81214)
+ (pt 613.12324 286.07676)
+ (pt 613.22781 286.14664)
+ (pt 613.08324 286.24324)
+ (pt 612.90642 286.50786)
+ (pt 612.84433 286.82)
+ (pt 612.90642 287.13214)
+ (pt 613.08324 287.39676)
+ (pt 613.16292 287.45)
+ (pt 613.08324 287.50324)
+ (pt 612.90642 287.76786)
+ (pt 612.84433 288.08)
+ (pt 612.90642 288.39214)
+ (pt 613.08324 288.65676)
+ (pt 613.34786 288.83358)
+ (pt 613.36299 288.83659)
+ (pt 613.26324 288.90324)
+ (pt 613.08642 289.16786)
+ (pt 613.02433 289.48)
+ (pt 613.08642 289.79214)
+ (pt 613.26324 290.05676)
+ (pt 613.52786 290.23358)
+ (pt 613.84 290.29567)
+ (pt 614.15214 290.23358)
+ (pt 614.41676 290.05676)
+ (pt 614.59358 289.79214)
+ (pt 614.65567 289.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 598.0 382.40783)
+ (pt 598.15607 382.37679)
+ (pt 598.28838 382.28838)
+ (pt 598.37679 382.15607)
+ (pt 598.40783 382.0)
+ (pt 598.40783 381.0)
+ (pt 598.37679 380.84393)
+ (pt 598.28838 380.71162)
+ (pt 598.15607 380.62321)
+ (pt 598.0 380.59217)
+ (pt 597.0 380.59217)
+ (pt 596.84393 380.62321)
+ (pt 596.71162 380.71162)
+ (pt 596.62321 380.84393)
+ (pt 596.59217 381.0)
+ (pt 596.59217 382.0)
+ (pt 596.62321 382.15607)
+ (pt 596.71162 382.28838)
+ (pt 596.84393 382.37679)
+ (pt 597.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 504.34838 323.05162)
+ (pt 504.21607 322.96321)
+ (pt 504.06 322.93217)
+ (pt 503.26 322.93217)
+ (pt 503.10393 322.96321)
+ (pt 503.07532 322.98233)
+ (pt 503.04588 322.98233)
+ (pt 502.85116 322.85222)
+ (pt 502.5 322.78237)
+ (pt 502.14884 322.85222)
+ (pt 501.85114 323.05114)
+ (pt 501.65222 323.34884)
+ (pt 501.58237 323.7)
+ (pt 501.65222 324.05116)
+ (pt 501.85114 324.34886)
+ (pt 502.14884 324.54778)
+ (pt 502.5 324.61763)
+ (pt 502.85116 324.54778)
+ (pt 502.92615 324.49767)
+ (pt 503.07532 324.49767)
+ (pt 503.10393 324.51679)
+ (pt 503.26 324.54783)
+ (pt 504.06 324.54783)
+ (pt 504.21607 324.51679)
+ (pt 504.34838 324.42838)
+ (pt 504.40744 324.34)
+ (pt 504.51256 324.34)
+ (pt 504.57162 324.42838)
+ (pt 504.70393 324.51679)
+ (pt 504.86 324.54783)
+ (pt 505.63156 324.54783)
+ (pt 505.63222 324.55116)
+ (pt 505.83114 324.84886)
+ (pt 506.12884 325.04778)
+ (pt 506.48 325.11763)
+ (pt 506.83116 325.04778)
+ (pt 507.12886 324.84886)
+ (pt 507.32778 324.55116)
+ (pt 507.39763 324.2)
+ (pt 507.32778 323.84884)
+ (pt 507.12886 323.55114)
+ (pt 506.83116 323.35222)
+ (pt 506.48 323.28237)
+ (pt 506.12884 323.35222)
+ (pt 506.06783 323.39299)
+ (pt 506.06783 323.34)
+ (pt 506.03679 323.18393)
+ (pt 505.94838 323.05162)
+ (pt 505.81607 322.96321)
+ (pt 505.66 322.93217)
+ (pt 504.86 322.93217)
+ (pt 504.70393 322.96321)
+ (pt 504.57162 323.05162)
+ (pt 504.51256 323.14)
+ (pt 504.40744 323.14)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 518.55228 355.96639)
+ (pt 518.40862 355.75138)
+ (pt 518.19361 355.60772)
+ (pt 517.94 355.55727)
+ (pt 517.68639 355.60772)
+ (pt 517.47138 355.75138)
+ (pt 517.32772 355.96639)
+ (pt 517.27727 356.22)
+ (pt 517.32772 356.47361)
+ (pt 517.44482 356.64886)
+ (pt 517.29138 356.75138)
+ (pt 517.14772 356.96639)
+ (pt 517.09727 357.22)
+ (pt 517.14772 357.47361)
+ (pt 517.29138 357.68862)
+ (pt 517.50639 357.83228)
+ (pt 517.76 357.88273)
+ (pt 518.01361 357.83228)
+ (pt 518.22862 357.68862)
+ (pt 518.37228 357.47361)
+ (pt 518.42273 357.22)
+ (pt 518.37228 356.96639)
+ (pt 518.25518 356.79114)
+ (pt 518.40862 356.68862)
+ (pt 518.55228 356.47361)
+ (pt 518.60273 356.22)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 365.71375)
+ (pt 372.46934 365.25066)
+ (pt 372.00625 364.94123)
+ (pt 371.46 364.83258)
+ (pt 370.91375 364.94123)
+ (pt 370.45066 365.25066)
+ (pt 370.14123 365.71375)
+ (pt 370.03258 366.26)
+ (pt 370.14123 366.80625)
+ (pt 370.45066 367.26934)
+ (pt 370.91375 367.57877)
+ (pt 371.46 367.68742)
+ (pt 372.00625 367.57877)
+ (pt 372.46934 367.26934)
+ (pt 372.77877 366.80625)
+ (pt 372.88742 366.26)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 419.91375)
+ (pt 372.46934 419.45066)
+ (pt 372.00625 419.14123)
+ (pt 371.46 419.03258)
+ (pt 370.91375 419.14123)
+ (pt 370.45066 419.45066)
+ (pt 370.14123 419.91375)
+ (pt 370.03258 420.46)
+ (pt 370.14123 421.00625)
+ (pt 370.45066 421.46934)
+ (pt 370.91375 421.77877)
+ (pt 371.46 421.88742)
+ (pt 372.00625 421.77877)
+ (pt 372.46934 421.46934)
+ (pt 372.77877 421.00625)
+ (pt 372.88742 420.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 372.77877 424.99375)
+ (pt 372.46934 424.53066)
+ (pt 372.00625 424.22123)
+ (pt 371.46 424.11258)
+ (pt 370.91375 424.22123)
+ (pt 370.45066 424.53066)
+ (pt 370.14123 424.99375)
+ (pt 370.03258 425.54)
+ (pt 370.14123 426.08625)
+ (pt 370.45066 426.54934)
+ (pt 370.91375 426.85877)
+ (pt 371.46 426.96742)
+ (pt 372.00625 426.85877)
+ (pt 372.46934 426.54934)
+ (pt 372.77877 426.08625)
+ (pt 372.88742 425.54)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.95877 318.91375)
+ (pt 377.64934 318.45066)
+ (pt 377.18625 318.14123)
+ (pt 376.64 318.03258)
+ (pt 376.09375 318.14123)
+ (pt 375.63066 318.45066)
+ (pt 375.32123 318.91375)
+ (pt 375.21258 319.46)
+ (pt 375.32123 320.00625)
+ (pt 375.63066 320.46934)
+ (pt 376.09375 320.77877)
+ (pt 376.64 320.88742)
+ (pt 377.18625 320.77877)
+ (pt 377.64934 320.46934)
+ (pt 377.95877 320.00625)
+ (pt 378.06742 319.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 465.18838 334.83162)
+ (pt 465.05607 334.74321)
+ (pt 464.9 334.71217)
+ (pt 464.1 334.71217)
+ (pt 463.94393 334.74321)
+ (pt 463.81162 334.83162)
+ (pt 463.7856 334.87056)
+ (pt 463.34783 334.87056)
+ (pt 463.34783 334.56)
+ (pt 463.31679 334.40393)
+ (pt 463.22838 334.27162)
+ (pt 463.09607 334.18321)
+ (pt 462.94 334.15217)
+ (pt 461.14 334.15217)
+ (pt 460.98393 334.18321)
+ (pt 460.85162 334.27162)
+ (pt 460.77 334.39377)
+ (pt 460.68838 334.27162)
+ (pt 460.55607 334.18321)
+ (pt 460.4 334.15217)
+ (pt 458.6 334.15217)
+ (pt 458.44393 334.18321)
+ (pt 458.31162 334.27162)
+ (pt 458.22321 334.40393)
+ (pt 458.19217 334.56)
+ (pt 458.19217 334.81056)
+ (pt 456.14783 334.81056)
+ (pt 456.14783 334.56)
+ (pt 456.11679 334.40393)
+ (pt 456.02838 334.27162)
+ (pt 455.89607 334.18321)
+ (pt 455.74 334.15217)
+ (pt 455.56355 334.15217)
+ (pt 455.56355 333.16568)
+ (pt 455.63679 333.05607)
+ (pt 455.66783 332.9)
+ (pt 455.66783 332.1)
+ (pt 455.63679 331.94393)
+ (pt 455.54838 331.81162)
+ (pt 455.46 331.75256)
+ (pt 455.46 331.64744)
+ (pt 455.54838 331.58838)
+ (pt 455.63679 331.45607)
+ (pt 455.66783 331.3)
+ (pt 455.66783 330.5)
+ (pt 455.63679 330.34393)
+ (pt 455.54838 330.21162)
+ (pt 455.41607 330.12321)
+ (pt 455.38864 330.11776)
+ (pt 455.35748 330.04252)
+ (pt 454.96279 329.64783)
+ (pt 455.46 329.64783)
+ (pt 455.61607 329.61679)
+ (pt 455.74838 329.52838)
+ (pt 455.80744 329.44)
+ (pt 455.91256 329.44)
+ (pt 455.97162 329.52838)
+ (pt 456.10393 329.61679)
+ (pt 456.26 329.64783)
+ (pt 457.06 329.64783)
+ (pt 457.21607 329.61679)
+ (pt 457.29437 329.56447)
+ (pt 457.36786 329.61358)
+ (pt 457.68 329.67567)
+ (pt 457.99214 329.61358)
+ (pt 458.25676 329.43676)
+ (pt 458.43358 329.17214)
+ (pt 458.49567 328.86)
+ (pt 458.43358 328.54786)
+ (pt 458.25676 328.28324)
+ (pt 457.99214 328.10642)
+ (pt 457.68 328.04433)
+ (pt 457.36786 328.10642)
+ (pt 457.3243 328.13553)
+ (pt 457.21607 328.06321)
+ (pt 457.06 328.03217)
+ (pt 456.26 328.03217)
+ (pt 456.10393 328.06321)
+ (pt 455.97162 328.15162)
+ (pt 455.91256 328.24)
+ (pt 455.80744 328.24)
+ (pt 455.74838 328.15162)
+ (pt 455.61607 328.06321)
+ (pt 455.46 328.03217)
+ (pt 454.66 328.03217)
+ (pt 454.50393 328.06321)
+ (pt 454.37162 328.15162)
+ (pt 454.30539 328.25073)
+ (pt 453.89905 328.41905)
+ (pt 453.70726 328.61084)
+ (pt 453.42786 328.66642)
+ (pt 453.16324 328.84324)
+ (pt 452.98642 329.10786)
+ (pt 452.92433 329.42)
+ (pt 452.98642 329.73214)
+ (pt 453.16324 329.99676)
+ (pt 453.42786 330.17358)
+ (pt 453.51619 330.19115)
+ (pt 454.05217 330.72713)
+ (pt 454.05217 331.3)
+ (pt 454.08321 331.45607)
+ (pt 454.17162 331.58838)
+ (pt 454.26 331.64744)
+ (pt 454.26 331.75256)
+ (pt 454.17162 331.81162)
+ (pt 454.08321 331.94393)
+ (pt 454.05217 332.1)
+ (pt 454.05217 332.9)
+ (pt 454.08321 333.05607)
+ (pt 454.15645 333.16568)
+ (pt 454.15645 334.15217)
+ (pt 453.94 334.15217)
+ (pt 453.78393 334.18321)
+ (pt 453.65162 334.27162)
+ (pt 453.56321 334.40393)
+ (pt 453.53217 334.56)
+ (pt 453.53217 336.36)
+ (pt 453.56321 336.51607)
+ (pt 453.65162 336.64838)
+ (pt 453.77377 336.73)
+ (pt 453.65162 336.81162)
+ (pt 453.56321 336.94393)
+ (pt 453.53217 337.1)
+ (pt 453.53217 338.9)
+ (pt 453.56321 339.05607)
+ (pt 453.65162 339.18838)
+ (pt 453.78393 339.27679)
+ (pt 453.94 339.30783)
+ (pt 455.74 339.30783)
+ (pt 455.89607 339.27679)
+ (pt 456.02838 339.18838)
+ (pt 456.11679 339.05607)
+ (pt 456.14783 338.9)
+ (pt 456.14783 337.1)
+ (pt 456.11679 336.94393)
+ (pt 456.02838 336.81162)
+ (pt 455.90623 336.73)
+ (pt 456.02838 336.64838)
+ (pt 456.11679 336.51607)
+ (pt 456.14783 336.36)
+ (pt 456.14783 336.10944)
+ (pt 458.19217 336.10944)
+ (pt 458.19217 336.36)
+ (pt 458.22321 336.51607)
+ (pt 458.31162 336.64838)
+ (pt 458.44393 336.73679)
+ (pt 458.6 336.76783)
+ (pt 460.4 336.76783)
+ (pt 460.55607 336.73679)
+ (pt 460.68838 336.64838)
+ (pt 460.77 336.52623)
+ (pt 460.85162 336.64838)
+ (pt 460.98393 336.73679)
+ (pt 461.14 336.76783)
+ (pt 462.94 336.76783)
+ (pt 463.09607 336.73679)
+ (pt 463.22838 336.64838)
+ (pt 463.31679 336.51607)
+ (pt 463.34783 336.36)
+ (pt 463.34783 336.16944)
+ (pt 463.7856 336.16944)
+ (pt 463.81162 336.20838)
+ (pt 463.94393 336.29679)
+ (pt 464.1 336.32783)
+ (pt 464.9 336.32783)
+ (pt 465.05607 336.29679)
+ (pt 465.18838 336.20838)
+ (pt 465.24744 336.12)
+ (pt 465.35256 336.12)
+ (pt 465.41162 336.20838)
+ (pt 465.54393 336.29679)
+ (pt 465.7 336.32783)
+ (pt 466.5 336.32783)
+ (pt 466.65607 336.29679)
+ (pt 466.78838 336.20838)
+ (pt 466.8144 336.16944)
+ (pt 466.93201 336.16944)
+ (pt 467.08786 336.27358)
+ (pt 467.4 336.33567)
+ (pt 467.71214 336.27358)
+ (pt 467.97676 336.09676)
+ (pt 468.15358 335.83214)
+ (pt 468.21567 335.52)
+ (pt 468.15358 335.20786)
+ (pt 467.97676 334.94324)
+ (pt 467.71214 334.76642)
+ (pt 467.4 334.70433)
+ (pt 467.08786 334.76642)
+ (pt 466.93201 334.87056)
+ (pt 466.8144 334.87056)
+ (pt 466.78838 334.83162)
+ (pt 466.65607 334.74321)
+ (pt 466.5 334.71217)
+ (pt 465.7 334.71217)
+ (pt 465.54393 334.74321)
+ (pt 465.41162 334.83162)
+ (pt 465.35256 334.92)
+ (pt 465.24744 334.92)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 616.55418 271.6712)
+ (pt 616.74437 271.6712)
+ (pt 616.66786 271.68642)
+ (pt 616.40324 271.86324)
+ (pt 616.22642 272.12786)
+ (pt 616.16433 272.44)
+ (pt 616.22642 272.75214)
+ (pt 616.40324 273.01676)
+ (pt 616.66786 273.19358)
+ (pt 616.91122 273.24199)
+ (pt 616.68786 273.28642)
+ (pt 616.42324 273.46324)
+ (pt 616.24642 273.72786)
+ (pt 616.18433 274.04)
+ (pt 616.24642 274.35214)
+ (pt 616.31645 274.45694)
+ (pt 616.31645 274.47432)
+ (pt 616.24321 274.58393)
+ (pt 616.21217 274.74)
+ (pt 616.21217 275.54)
+ (pt 616.24321 275.69607)
+ (pt 616.33162 275.82838)
+ (pt 616.42 275.88744)
+ (pt 616.42 275.99256)
+ (pt 616.33162 276.05162)
+ (pt 616.24321 276.18393)
+ (pt 616.21217 276.34)
+ (pt 616.21217 277.14)
+ (pt 616.24321 277.29607)
+ (pt 616.33162 277.42838)
+ (pt 616.4017 277.47521)
+ (pt 616.32642 277.58786)
+ (pt 616.26433 277.9)
+ (pt 616.32642 278.21214)
+ (pt 616.50324 278.47676)
+ (pt 616.76786 278.65358)
+ (pt 617.08 278.71567)
+ (pt 617.39214 278.65358)
+ (pt 617.65676 278.47676)
+ (pt 617.83358 278.21214)
+ (pt 617.89567 277.9)
+ (pt 617.83358 277.58786)
+ (pt 617.7177 277.41444)
+ (pt 617.79679 277.29607)
+ (pt 617.82783 277.14)
+ (pt 617.82783 276.34)
+ (pt 617.79679 276.18393)
+ (pt 617.70838 276.05162)
+ (pt 617.62 275.99256)
+ (pt 617.62 275.88744)
+ (pt 617.70838 275.82838)
+ (pt 617.79679 275.69607)
+ (pt 617.82783 275.54)
+ (pt 617.82783 274.74)
+ (pt 617.79679 274.58393)
+ (pt 617.72355 274.47432)
+ (pt 617.72355 274.39708)
+ (pt 617.75358 274.35214)
+ (pt 617.81567 274.04)
+ (pt 617.75358 273.72786)
+ (pt 617.57676 273.46324)
+ (pt 617.31214 273.28642)
+ (pt 617.06878 273.23801)
+ (pt 617.29214 273.19358)
+ (pt 617.42687 273.10355)
+ (pt 618.03893 273.10355)
+ (pt 618.09 273.11371)
+ (pt 619.09 273.11371)
+ (pt 619.36312 273.05938)
+ (pt 619.59467 272.90467)
+ (pt 619.74938 272.67312)
+ (pt 619.80371 272.4)
+ (pt 619.74938 272.12688)
+ (pt 619.59467 271.89533)
+ (pt 619.39961 271.765)
+ (pt 619.59467 271.63467)
+ (pt 619.74938 271.40312)
+ (pt 619.80371 271.13)
+ (pt 619.74938 270.85688)
+ (pt 619.59467 270.62533)
+ (pt 619.39961 270.495)
+ (pt 619.59467 270.36467)
+ (pt 619.74938 270.13312)
+ (pt 619.80371 269.86)
+ (pt 619.74938 269.58688)
+ (pt 619.59467 269.35533)
+ (pt 619.39961 269.225)
+ (pt 619.59467 269.09467)
+ (pt 619.74938 268.86312)
+ (pt 619.80371 268.59)
+ (pt 619.74938 268.31688)
+ (pt 619.59467 268.08533)
+ (pt 619.36312 267.93062)
+ (pt 619.09 267.87629)
+ (pt 618.09 267.87629)
+ (pt 617.81688 267.93062)
+ (pt 617.66269 268.03364)
+ (pt 617.65358 267.98786)
+ (pt 617.47676 267.72324)
+ (pt 617.21214 267.54642)
+ (pt 616.9 267.48433)
+ (pt 616.58786 267.54642)
+ (pt 616.32324 267.72324)
+ (pt 616.14642 267.98786)
+ (pt 616.08433 268.3)
+ (pt 616.14642 268.61214)
+ (pt 616.32324 268.87676)
+ (pt 616.58786 269.05358)
+ (pt 616.9 269.11567)
+ (pt 617.21214 269.05358)
+ (pt 617.45116 268.89386)
+ (pt 617.58533 269.09467)
+ (pt 617.78039 269.225)
+ (pt 617.64 269.3188)
+ (pt 615.96 269.3188)
+ (pt 615.57731 269.47731)
+ (pt 608.03186 277.02276)
+ (pt 607.90639 277.04772)
+ (pt 607.69138 277.19138)
+ (pt 607.54772 277.40639)
+ (pt 607.49727 277.66)
+ (pt 607.54772 277.91361)
+ (pt 607.69138 278.12862)
+ (pt 607.76648 278.1788)
+ (pt 606.73999 278.1788)
+ (pt 606.63361 278.10772)
+ (pt 606.38 278.05727)
+ (pt 606.12639 278.10772)
+ (pt 605.91138 278.25138)
+ (pt 605.76772 278.46639)
+ (pt 605.71727 278.72)
+ (pt 605.76772 278.97361)
+ (pt 605.91138 279.18862)
+ (pt 606.12639 279.33228)
+ (pt 606.38 279.38273)
+ (pt 606.63361 279.33228)
+ (pt 606.73999 279.2612)
+ (pt 608.74 279.2612)
+ (pt 609.12269 279.10269)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 342.91375)
+ (pt 377.54934 342.45066)
+ (pt 377.08625 342.14123)
+ (pt 376.54 342.03258)
+ (pt 375.99375 342.14123)
+ (pt 375.53066 342.45066)
+ (pt 375.22123 342.91375)
+ (pt 375.11258 343.46)
+ (pt 375.22123 344.00625)
+ (pt 375.53066 344.46934)
+ (pt 375.99375 344.77877)
+ (pt 376.54 344.88742)
+ (pt 377.08625 344.77877)
+ (pt 377.54934 344.46934)
+ (pt 377.85877 344.00625)
+ (pt 377.96742 343.46)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 377.85877 365.71375)
+ (pt 377.54934 365.25066)
+ (pt 377.08625 364.94123)
+ (pt 376.54 364.83258)
+ (pt 375.99375 364.94123)
+ (pt 375.53066 365.25066)
+ (pt 375.22123 365.71375)
+ (pt 375.11258 366.26)
+ (pt 375.22123 366.80625)
+ (pt 375.53066 367.26934)
+ (pt 375.99375 367.57877)
+ (pt 376.54 367.68742)
+ (pt 377.08625 367.57877)
+ (pt 377.54934 367.26934)
+ (pt 377.85877 366.80625)
+ (pt 377.96742 366.26)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 615.31214 425.84642)
+ (pt 615.0 425.78433)
+ (pt 614.68786 425.84642)
+ (pt 614.42324 426.02324)
+ (pt 614.24642 426.28786)
+ (pt 614.18433 426.6)
+ (pt 614.24642 426.91214)
+ (pt 614.42324 427.17676)
+ (pt 614.58285 427.28341)
+ (pt 614.52324 427.32324)
+ (pt 614.34642 427.58786)
+ (pt 614.28433 427.9)
+ (pt 614.34642 428.21214)
+ (pt 614.52324 428.47676)
+ (pt 614.63285 428.55)
+ (pt 614.52324 428.62324)
+ (pt 614.34642 428.88786)
+ (pt 614.28433 429.2)
+ (pt 614.34642 429.51214)
+ (pt 614.52324 429.77676)
+ (pt 614.78786 429.95358)
+ (pt 615.1 430.01567)
+ (pt 615.41214 429.95358)
+ (pt 615.67676 429.77676)
+ (pt 615.85358 429.51214)
+ (pt 615.88544 429.35196)
+ (pt 615.88786 429.35358)
+ (pt 616.2 429.41567)
+ (pt 616.51214 429.35358)
+ (pt 616.77676 429.17676)
+ (pt 616.95358 428.91214)
+ (pt 617.01567 428.6)
+ (pt 616.95358 428.28786)
+ (pt 616.77676 428.02324)
+ (pt 616.66715 427.95)
+ (pt 616.77676 427.87676)
+ (pt 616.95358 427.61214)
+ (pt 617.01567 427.3)
+ (pt 616.95358 426.98786)
+ (pt 616.77676 426.72324)
+ (pt 616.66715 426.65)
+ (pt 616.77676 426.57676)
+ (pt 616.95358 426.31214)
+ (pt 617.01567 426.0)
+ (pt 616.95358 425.68786)
+ (pt 616.77676 425.42324)
+ (pt 616.51214 425.24642)
+ (pt 616.2 425.18433)
+ (pt 615.88786 425.24642)
+ (pt 615.62324 425.42324)
+ (pt 615.44642 425.68786)
+ (pt 615.40283 425.90702)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 495.90783 358.80001)
+ (pt 496.18884 358.98778)
+ (pt 496.54 359.05763)
+ (pt 496.89116 358.98778)
+ (pt 497.18886 358.78886)
+ (pt 497.38778 358.49116)
+ (pt 497.45763 358.14)
+ (pt 497.38778 357.78884)
+ (pt 497.18886 357.49114)
+ (pt 496.89116 357.29222)
+ (pt 496.54 357.22237)
+ (pt 496.18884 357.29222)
+ (pt 495.89114 357.49114)
+ (pt 495.69222 357.78884)
+ (pt 495.69072 357.79637)
+ (pt 495.65607 357.77321)
+ (pt 495.5 357.74217)
+ (pt 494.3 357.74217)
+ (pt 494.14393 357.77321)
+ (pt 494.10384 357.8)
+ (pt 493.69616 357.8)
+ (pt 493.65607 357.77321)
+ (pt 493.5 357.74217)
+ (pt 492.3 357.74217)
+ (pt 492.14393 357.77321)
+ (pt 492.01162 357.86162)
+ (pt 491.92321 357.99393)
+ (pt 491.8941 358.14032)
+ (pt 491.50252 358.30252)
+ (pt 491.20347 358.60157)
+ (pt 490.94884 358.65222)
+ (pt 490.65114 358.85114)
+ (pt 490.45222 359.14884)
+ (pt 490.38237 359.5)
+ (pt 490.45222 359.85116)
+ (pt 490.65114 360.14886)
+ (pt 490.94884 360.34778)
+ (pt 491.3 360.41763)
+ (pt 491.65116 360.34778)
+ (pt 491.94886 360.14886)
+ (pt 492.14778 359.85116)
+ (pt 492.1523 359.82845)
+ (pt 492.3 359.85783)
+ (pt 493.5 359.85783)
+ (pt 493.65607 359.82679)
+ (pt 493.69616 359.8)
+ (pt 494.10384 359.8)
+ (pt 494.14393 359.82679)
+ (pt 494.3 359.85783)
+ (pt 495.5 359.85783)
+ (pt 495.65607 359.82679)
+ (pt 495.78838 359.73838)
+ (pt 495.87679 359.60607)
+ (pt 495.90783 359.45)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 613.14778 411.54884)
+ (pt 612.94886 411.25114)
+ (pt 612.65116 411.05222)
+ (pt 612.3 410.98237)
+ (pt 611.94884 411.05222)
+ (pt 611.65114 411.25114)
+ (pt 611.45222 411.54884)
+ (pt 611.38237 411.9)
+ (pt 611.45222 412.25116)
+ (pt 611.65114 412.54886)
+ (pt 611.94884 412.74778)
+ (pt 612.3 412.81763)
+ (pt 612.65116 412.74778)
+ (pt 612.94886 412.54886)
+ (pt 613.14778 412.25116)
+ (pt 613.21763 411.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 427.46243)
+ (pt 639.79438 427.19438)
+ (pt 640.06243 426.79321)
+ (pt 640.15656 426.32)
+ (pt 640.06243 425.84679)
+ (pt 639.79438 425.44562)
+ (pt 639.39321 425.17757)
+ (pt 638.92 425.08344)
+ (pt 638.44679 425.17757)
+ (pt 638.04562 425.44562)
+ (pt 637.77757 425.84679)
+ (pt 637.68344 426.32)
+ (pt 637.77757 426.79321)
+ (pt 638.04562 427.19438)
+ (pt 638.44679 427.46243)
+ (pt 638.92 427.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.94778 259.12884)
+ (pt 620.74886 258.83114)
+ (pt 620.45116 258.63222)
+ (pt 620.1 258.56237)
+ (pt 619.74884 258.63222)
+ (pt 619.45114 258.83114)
+ (pt 619.25222 259.12884)
+ (pt 619.18237 259.48)
+ (pt 619.25222 259.83116)
+ (pt 619.37964 260.02186)
+ (pt 619.35217 260.16)
+ (pt 619.35217 260.96)
+ (pt 619.38321 261.11607)
+ (pt 619.47162 261.24838)
+ (pt 619.56 261.30744)
+ (pt 619.56 261.41256)
+ (pt 619.47162 261.47162)
+ (pt 619.38321 261.60393)
+ (pt 619.35217 261.76)
+ (pt 619.35217 262.56)
+ (pt 619.38321 262.71607)
+ (pt 619.4088 262.75437)
+ (pt 619.29222 262.92884)
+ (pt 619.22237 263.28)
+ (pt 619.29222 263.63116)
+ (pt 619.49114 263.92886)
+ (pt 619.78884 264.12778)
+ (pt 620.14 264.19763)
+ (pt 620.49116 264.12778)
+ (pt 620.78886 263.92886)
+ (pt 620.98778 263.63116)
+ (pt 621.05763 263.28)
+ (pt 620.98778 262.92884)
+ (pt 620.8912 262.7843)
+ (pt 620.93679 262.71607)
+ (pt 620.96783 262.56)
+ (pt 620.96783 261.76)
+ (pt 620.93679 261.60393)
+ (pt 620.84838 261.47162)
+ (pt 620.76 261.41256)
+ (pt 620.76 261.30744)
+ (pt 620.84838 261.24838)
+ (pt 620.93679 261.11607)
+ (pt 620.96783 260.96)
+ (pt 620.96783 260.16)
+ (pt 620.93679 260.00393)
+ (pt 620.88456 259.92577)
+ (pt 620.94778 259.83116)
+ (pt 621.01763 259.48)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.39321 457.94243)
+ (pt 639.79438 457.67438)
+ (pt 640.06243 457.27321)
+ (pt 640.15656 456.8)
+ (pt 640.06243 456.32679)
+ (pt 639.79438 455.92562)
+ (pt 639.39321 455.65757)
+ (pt 638.92 455.56344)
+ (pt 638.44679 455.65757)
+ (pt 638.04562 455.92562)
+ (pt 637.77757 456.32679)
+ (pt 637.68344 456.8)
+ (pt 637.77757 457.27321)
+ (pt 638.04562 457.67438)
+ (pt 638.44679 457.94243)
+ (pt 638.92 458.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 561.92054 383.68144)
+ (pt 562.07997 383.92003)
+ (pt 562.31856 384.07946)
+ (pt 562.6 384.13544)
+ (pt 562.6 384.13543)
+ (pt 569.028 384.13543)
+ (pt 568.95222 384.24884)
+ (pt 568.88237 384.6)
+ (pt 568.95222 384.95116)
+ (pt 569.15114 385.24886)
+ (pt 569.44884 385.44778)
+ (pt 569.8 385.51763)
+ (pt 570.15116 385.44778)
+ (pt 570.44886 385.24886)
+ (pt 570.64778 384.95116)
+ (pt 570.71763 384.6)
+ (pt 570.64778 384.24884)
+ (pt 570.572 384.13543)
+ (pt 576.5 384.13543)
+ (pt 576.5 384.13544)
+ (pt 576.78144 384.07946)
+ (pt 577.02003 383.92003)
+ (pt 577.17946 383.68144)
+ (pt 577.23544 383.4)
+ (pt 577.23543 383.4)
+ (pt 577.23543 367.6)
+ (pt 577.23544 367.6)
+ (pt 577.17946 367.31856)
+ (pt 577.02003 367.07997)
+ (pt 576.78144 366.92054)
+ (pt 576.5 366.86456)
+ (pt 576.5 366.86457)
+ (pt 562.6 366.86457)
+ (pt 562.6 366.86456)
+ (pt 562.31856 366.92054)
+ (pt 562.07997 367.07997)
+ (pt 561.92054 367.31856)
+ (pt 561.86456 367.6)
+ (pt 561.86457 367.6)
+ (pt 561.86457 383.4)
+ (pt 561.86456 383.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 299.24243)
+ (pt 642.23438 298.97438)
+ (pt 642.50243 298.57321)
+ (pt 642.59656 298.1)
+ (pt 642.50243 297.62679)
+ (pt 642.23438 297.22562)
+ (pt 641.83321 296.95757)
+ (pt 641.36 296.86344)
+ (pt 640.88679 296.95757)
+ (pt 640.48562 297.22562)
+ (pt 640.21757 297.62679)
+ (pt 640.12344 298.1)
+ (pt 640.21757 298.57321)
+ (pt 640.48562 298.97438)
+ (pt 640.88679 299.24243)
+ (pt 641.36 299.33656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 284.00243)
+ (pt 639.69438 283.73438)
+ (pt 639.96243 283.33321)
+ (pt 640.05656 282.86)
+ (pt 639.96243 282.38679)
+ (pt 639.69438 281.98562)
+ (pt 639.29321 281.71757)
+ (pt 638.82 281.62344)
+ (pt 638.34679 281.71757)
+ (pt 637.94562 281.98562)
+ (pt 637.67757 282.38679)
+ (pt 637.58344 282.86)
+ (pt 637.67757 283.33321)
+ (pt 637.94562 283.73438)
+ (pt 638.34679 284.00243)
+ (pt 638.82 284.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.78778 433.30884)
+ (pt 620.58886 433.01114)
+ (pt 620.29116 432.81222)
+ (pt 619.94 432.74237)
+ (pt 619.58884 432.81222)
+ (pt 619.29114 433.01114)
+ (pt 619.09222 433.30884)
+ (pt 619.02237 433.66)
+ (pt 619.09222 434.01116)
+ (pt 619.29114 434.30886)
+ (pt 619.58884 434.50778)
+ (pt 619.94 434.57763)
+ (pt 620.29116 434.50778)
+ (pt 620.58886 434.30886)
+ (pt 620.78778 434.01116)
+ (pt 620.85763 433.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.71228 409.18639)
+ (pt 620.56862 408.97138)
+ (pt 620.35361 408.82772)
+ (pt 620.29936 408.81693)
+ (pt 620.30273 408.8)
+ (pt 620.25228 408.54639)
+ (pt 620.10862 408.33138)
+ (pt 619.89361 408.18772)
+ (pt 619.64 408.13727)
+ (pt 619.38639 408.18772)
+ (pt 619.17138 408.33138)
+ (pt 619.02772 408.54639)
+ (pt 618.97727 408.8)
+ (pt 619.02772 409.05361)
+ (pt 619.17138 409.26862)
+ (pt 619.38639 409.41228)
+ (pt 619.44064 409.42307)
+ (pt 619.43727 409.44)
+ (pt 619.44523 409.47999)
+ (pt 619.40639 409.48772)
+ (pt 619.19138 409.63138)
+ (pt 619.04772 409.84639)
+ (pt 618.99727 410.1)
+ (pt 619.04772 410.35361)
+ (pt 619.19138 410.56862)
+ (pt 619.40639 410.71228)
+ (pt 619.4414 410.71924)
+ (pt 619.43727 410.74)
+ (pt 619.48772 410.99361)
+ (pt 619.63138 411.20862)
+ (pt 619.84639 411.35228)
+ (pt 620.1 411.40273)
+ (pt 620.35361 411.35228)
+ (pt 620.56862 411.20862)
+ (pt 620.71228 410.99361)
+ (pt 620.76273 410.74)
+ (pt 620.71228 410.48639)
+ (pt 620.56862 410.27138)
+ (pt 620.35361 410.12772)
+ (pt 620.3186 410.12076)
+ (pt 620.32273 410.1)
+ (pt 620.31477 410.06001)
+ (pt 620.35361 410.05228)
+ (pt 620.56862 409.90862)
+ (pt 620.71228 409.69361)
+ (pt 620.76273 409.44)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 503.34778 315.54884)
+ (pt 503.14886 315.25114)
+ (pt 502.85116 315.05222)
+ (pt 502.5 314.98237)
+ (pt 502.14884 315.05222)
+ (pt 501.85114 315.25114)
+ (pt 501.65222 315.54884)
+ (pt 501.58237 315.9)
+ (pt 501.65222 316.25116)
+ (pt 501.85114 316.54886)
+ (pt 502.14884 316.74778)
+ (pt 502.5 316.81763)
+ (pt 502.85116 316.74778)
+ (pt 503.14886 316.54886)
+ (pt 503.34778 316.25116)
+ (pt 503.41763 315.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 618.41358 265.98786)
+ (pt 618.23676 265.72324)
+ (pt 617.97214 265.54642)
+ (pt 617.66 265.48433)
+ (pt 617.34786 265.54642)
+ (pt 617.08324 265.72324)
+ (pt 616.90642 265.98786)
+ (pt 616.84433 266.3)
+ (pt 616.90642 266.61214)
+ (pt 617.08324 266.87676)
+ (pt 617.34786 267.05358)
+ (pt 617.66 267.11567)
+ (pt 617.97214 267.05358)
+ (pt 618.23676 266.87676)
+ (pt 618.41358 266.61214)
+ (pt 618.47567 266.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 452.16778 311.38884)
+ (pt 451.96886 311.09114)
+ (pt 451.67116 310.89222)
+ (pt 451.32 310.82237)
+ (pt 450.96884 310.89222)
+ (pt 450.67114 311.09114)
+ (pt 450.47222 311.38884)
+ (pt 450.40237 311.74)
+ (pt 450.47222 312.09116)
+ (pt 450.67114 312.38886)
+ (pt 450.96884 312.58778)
+ (pt 451.32 312.65763)
+ (pt 451.67116 312.58778)
+ (pt 451.96886 312.38886)
+ (pt 452.16778 312.09116)
+ (pt 452.23763 311.74)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 453.39233 341.21346)
+ (pt 453.26002 341.12505)
+ (pt 453.10395 341.09401)
+ (pt 452.94788 341.12505)
+ (pt 452.81557 341.21346)
+ (pt 451.40136 342.62767)
+ (pt 451.31295 342.75998)
+ (pt 451.28191 342.91605)
+ (pt 451.31295 343.07212)
+ (pt 451.40136 343.20443)
+ (pt 452.81557 344.61864)
+ (pt 452.94788 344.70705)
+ (pt 453.10395 344.73809)
+ (pt 453.26002 344.70705)
+ (pt 453.39233 344.61864)
+ (pt 454.80654 343.20443)
+ (pt 454.89495 343.07212)
+ (pt 454.92599 342.91605)
+ (pt 454.89495 342.75998)
+ (pt 454.80654 342.62767)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 639.29321 268.76243)
+ (pt 639.69438 268.49438)
+ (pt 639.96243 268.09321)
+ (pt 640.05656 267.62)
+ (pt 639.96243 267.14679)
+ (pt 639.69438 266.74562)
+ (pt 639.29321 266.47757)
+ (pt 638.82 266.38344)
+ (pt 638.34679 266.47757)
+ (pt 637.94562 266.74562)
+ (pt 637.67757 267.14679)
+ (pt 637.58344 267.62)
+ (pt 637.67757 268.09321)
+ (pt 637.94562 268.49438)
+ (pt 638.34679 268.76243)
+ (pt 638.82 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 374.93724 333.06276)
+ (pt 374.50723 332.77543)
+ (pt 374.0 332.67454)
+ (pt 373.49277 332.77543)
+ (pt 373.06276 333.06276)
+ (pt 372.77543 333.49277)
+ (pt 372.67454 334.0)
+ (pt 372.77543 334.50723)
+ (pt 373.06276 334.93724)
+ (pt 373.49277 335.22457)
+ (pt 374.0 335.32546)
+ (pt 374.50723 335.22457)
+ (pt 374.93724 334.93724)
+ (pt 375.09339 334.70355)
+ (pt 379.14866 334.70355)
+ (pt 379.15251 334.71793)
+ (pt 379.22289 334.86064)
+ (pt 379.34253 334.96556)
+ (pt 379.49321 335.01672)
+ (pt 379.652 335.00631)
+ (pt 380.61793 334.74749)
+ (pt 380.76064 334.67711)
+ (pt 380.86556 334.55747)
+ (pt 380.91672 334.40679)
+ (pt 380.90631 334.248)
+ (pt 380.64749 333.28207)
+ (pt 380.57711 333.13936)
+ (pt 380.45747 333.03444)
+ (pt 380.30679 332.98328)
+ (pt 380.148 332.99369)
+ (pt 379.18207 333.25251)
+ (pt 379.09297 333.29645)
+ (pt 375.09339 333.29645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 256.06243)
+ (pt 642.23438 255.79438)
+ (pt 642.50243 255.39321)
+ (pt 642.59656 254.92)
+ (pt 642.50243 254.44679)
+ (pt 642.23438 254.04562)
+ (pt 641.83321 253.77757)
+ (pt 641.36 253.68344)
+ (pt 640.88679 253.77757)
+ (pt 640.48562 254.04562)
+ (pt 640.21757 254.44679)
+ (pt 640.12344 254.92)
+ (pt 640.21757 255.39321)
+ (pt 640.48562 255.79438)
+ (pt 640.88679 256.06243)
+ (pt 641.36 256.15656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 627.97228 434.06639)
+ (pt 627.82862 433.85138)
+ (pt 627.61361 433.70772)
+ (pt 627.36 433.65727)
+ (pt 627.26208 433.67675)
+ (pt 627.21228 433.42639)
+ (pt 627.06862 433.21138)
+ (pt 626.85361 433.06772)
+ (pt 626.6 433.01727)
+ (pt 626.34639 433.06772)
+ (pt 626.13138 433.21138)
+ (pt 625.98772 433.42639)
+ (pt 625.93727 433.68)
+ (pt 625.98772 433.93361)
+ (pt 626.13138 434.14862)
+ (pt 626.34639 434.29228)
+ (pt 626.48574 434.32)
+ (pt 626.34639 434.34772)
+ (pt 626.13138 434.49138)
+ (pt 625.98772 434.70639)
+ (pt 625.93727 434.96)
+ (pt 625.98772 435.21361)
+ (pt 626.13138 435.42862)
+ (pt 626.34639 435.57228)
+ (pt 626.58628 435.62)
+ (pt 626.34639 435.66772)
+ (pt 626.13138 435.81138)
+ (pt 625.98772 436.02639)
+ (pt 625.93727 436.28)
+ (pt 625.98772 436.53361)
+ (pt 626.13138 436.74862)
+ (pt 626.34639 436.89228)
+ (pt 626.58628 436.94)
+ (pt 626.34639 436.98772)
+ (pt 626.13138 437.13138)
+ (pt 625.98772 437.34639)
+ (pt 625.93727 437.6)
+ (pt 625.98772 437.85361)
+ (pt 626.13138 438.06862)
+ (pt 626.34639 438.21228)
+ (pt 626.58104 438.25896)
+ (pt 626.62772 438.49361)
+ (pt 626.77138 438.70862)
+ (pt 626.98639 438.85228)
+ (pt 627.24 438.90273)
+ (pt 627.49361 438.85228)
+ (pt 627.70862 438.70862)
+ (pt 627.85228 438.49361)
+ (pt 627.90273 438.24)
+ (pt 627.85228 437.98639)
+ (pt 627.70862 437.77138)
+ (pt 627.49361 437.62772)
+ (pt 627.25896 437.58104)
+ (pt 627.25844 437.57844)
+ (pt 627.28 437.58273)
+ (pt 627.53361 437.53228)
+ (pt 627.74862 437.38862)
+ (pt 627.89228 437.17361)
+ (pt 627.94273 436.92)
+ (pt 627.89228 436.66639)
+ (pt 627.74862 436.45138)
+ (pt 627.53361 436.30772)
+ (pt 627.41426 436.28398)
+ (pt 627.57361 436.25228)
+ (pt 627.78862 436.10862)
+ (pt 627.93228 435.89361)
+ (pt 627.98273 435.64)
+ (pt 627.93228 435.38639)
+ (pt 627.78862 435.17138)
+ (pt 627.57361 435.02772)
+ (pt 627.32 434.97727)
+ (pt 627.25679 434.98984)
+ (pt 627.26208 434.96325)
+ (pt 627.36 434.98273)
+ (pt 627.61361 434.93228)
+ (pt 627.82862 434.78862)
+ (pt 627.97228 434.57361)
+ (pt 628.02273 434.32)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 488.58 342.68783)
+ (pt 488.73607 342.65679)
+ (pt 488.86838 342.56838)
+ (pt 488.95679 342.43607)
+ (pt 488.98783 342.28)
+ (pt 488.98783 341.28)
+ (pt 488.95679 341.12393)
+ (pt 488.86838 340.99162)
+ (pt 488.73607 340.90321)
+ (pt 488.58 340.87217)
+ (pt 487.58 340.87217)
+ (pt 487.42393 340.90321)
+ (pt 487.29162 340.99162)
+ (pt 487.20321 341.12393)
+ (pt 487.17217 341.28)
+ (pt 487.17217 342.28)
+ (pt 487.20321 342.43607)
+ (pt 487.29162 342.56838)
+ (pt 487.42393 342.65679)
+ (pt 487.58 342.68783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 488.48 337.28783)
+ (pt 488.63607 337.25679)
+ (pt 488.76838 337.16838)
+ (pt 488.85679 337.03607)
+ (pt 488.88783 336.88)
+ (pt 488.88783 335.88)
+ (pt 488.85679 335.72393)
+ (pt 488.76838 335.59162)
+ (pt 488.63607 335.50321)
+ (pt 488.48 335.47217)
+ (pt 487.48 335.47217)
+ (pt 487.32393 335.50321)
+ (pt 487.19162 335.59162)
+ (pt 487.10321 335.72393)
+ (pt 487.07217 335.88)
+ (pt 487.07217 336.88)
+ (pt 487.10321 337.03607)
+ (pt 487.19162 337.16838)
+ (pt 487.32393 337.25679)
+ (pt 487.48 337.28783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.83321 248.44243)
+ (pt 642.23438 248.17438)
+ (pt 642.50243 247.77321)
+ (pt 642.59656 247.3)
+ (pt 642.50243 246.82679)
+ (pt 642.23438 246.42562)
+ (pt 641.83321 246.15757)
+ (pt 641.36 246.06344)
+ (pt 640.88679 246.15757)
+ (pt 640.48562 246.42562)
+ (pt 640.21757 246.82679)
+ (pt 640.12344 247.3)
+ (pt 640.21757 247.77321)
+ (pt 640.48562 248.17438)
+ (pt 640.88679 248.44243)
+ (pt 641.36 248.53656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 513.06418 371.93217)
+ (pt 513.18886 371.84886)
+ (pt 513.38778 371.55116)
+ (pt 513.45763 371.2)
+ (pt 513.38778 370.84884)
+ (pt 513.18886 370.55114)
+ (pt 512.89116 370.35222)
+ (pt 512.54 370.28237)
+ (pt 512.18884 370.35222)
+ (pt 511.89114 370.55114)
+ (pt 511.69222 370.84884)
+ (pt 511.62237 371.2)
+ (pt 511.69222 371.55116)
+ (pt 511.89114 371.84886)
+ (pt 512.01582 371.93217)
+ (pt 511.89 371.93217)
+ (pt 511.73393 371.96321)
+ (pt 511.60162 372.05162)
+ (pt 511.51321 372.18393)
+ (pt 511.48217 372.34)
+ (pt 511.48217 373.54)
+ (pt 511.51321 373.69607)
+ (pt 511.54 373.73616)
+ (pt 511.54 374.14384)
+ (pt 511.51321 374.18393)
+ (pt 511.48217 374.34)
+ (pt 511.48217 375.54)
+ (pt 511.51321 375.69607)
+ (pt 511.60162 375.82838)
+ (pt 511.73393 375.91679)
+ (pt 511.89 375.94783)
+ (pt 511.89645 375.94783)
+ (pt 511.89645 375.99299)
+ (pt 511.75222 376.20884)
+ (pt 511.68237 376.56)
+ (pt 511.75222 376.91116)
+ (pt 511.95114 377.20886)
+ (pt 512.24884 377.40778)
+ (pt 512.6 377.47763)
+ (pt 512.95116 377.40778)
+ (pt 513.24886 377.20886)
+ (pt 513.44778 376.91116)
+ (pt 513.51763 376.56)
+ (pt 513.44778 376.20884)
+ (pt 513.30355 375.99299)
+ (pt 513.30355 375.92525)
+ (pt 513.34607 375.91679)
+ (pt 513.47838 375.82838)
+ (pt 513.56679 375.69607)
+ (pt 513.59783 375.54)
+ (pt 513.59783 374.34)
+ (pt 513.56679 374.18393)
+ (pt 513.54 374.14384)
+ (pt 513.54 373.73616)
+ (pt 513.56679 373.69607)
+ (pt 513.59783 373.54)
+ (pt 513.59783 372.34)
+ (pt 513.56679 372.18393)
+ (pt 513.47838 372.05162)
+ (pt 513.34607 371.96321)
+ (pt 513.19 371.93217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 595.5 379.90783)
+ (pt 595.65607 379.87679)
+ (pt 595.78838 379.78838)
+ (pt 595.87679 379.65607)
+ (pt 595.90783 379.5)
+ (pt 595.90783 378.5)
+ (pt 595.87679 378.34393)
+ (pt 595.78838 378.21162)
+ (pt 595.65607 378.12321)
+ (pt 595.5 378.09217)
+ (pt 594.5 378.09217)
+ (pt 594.34393 378.12321)
+ (pt 594.21162 378.21162)
+ (pt 594.12321 378.34393)
+ (pt 594.09217 378.5)
+ (pt 594.09217 379.5)
+ (pt 594.12321 379.65607)
+ (pt 594.21162 379.78838)
+ (pt 594.34393 379.87679)
+ (pt 594.5 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 488.48 339.98783)
+ (pt 488.63607 339.95679)
+ (pt 488.76838 339.86838)
+ (pt 488.85679 339.73607)
+ (pt 488.88783 339.58)
+ (pt 488.88783 338.58)
+ (pt 488.85679 338.42393)
+ (pt 488.76838 338.29162)
+ (pt 488.63607 338.20321)
+ (pt 488.48 338.17217)
+ (pt 487.48 338.17217)
+ (pt 487.32393 338.20321)
+ (pt 487.19162 338.29162)
+ (pt 487.10321 338.42393)
+ (pt 487.07217 338.58)
+ (pt 487.07217 339.58)
+ (pt 487.10321 339.73607)
+ (pt 487.19162 339.86838)
+ (pt 487.32393 339.95679)
+ (pt 487.48 339.98783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 521.15228 327.76639)
+ (pt 521.00862 327.55138)
+ (pt 520.79361 327.40772)
+ (pt 520.54 327.35727)
+ (pt 520.28639 327.40772)
+ (pt 520.07138 327.55138)
+ (pt 519.92772 327.76639)
+ (pt 519.87727 328.02)
+ (pt 519.92772 328.27361)
+ (pt 520.07138 328.48862)
+ (pt 520.28639 328.63228)
+ (pt 520.54 328.68273)
+ (pt 520.79361 328.63228)
+ (pt 521.00862 328.48862)
+ (pt 521.15228 328.27361)
+ (pt 521.20273 328.02)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.65358 311.78786)
+ (pt 522.47676 311.52324)
+ (pt 522.21214 311.34642)
+ (pt 521.9 311.28433)
+ (pt 521.58786 311.34642)
+ (pt 521.32324 311.52324)
+ (pt 521.14642 311.78786)
+ (pt 521.08433 312.1)
+ (pt 521.14642 312.41214)
+ (pt 521.32324 312.67676)
+ (pt 521.58786 312.85358)
+ (pt 521.9 312.91567)
+ (pt 522.21214 312.85358)
+ (pt 522.47676 312.67676)
+ (pt 522.65358 312.41214)
+ (pt 522.71567 312.1)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 521.31228 342.40639)
+ (pt 521.16862 342.19138)
+ (pt 520.95361 342.04772)
+ (pt 520.7 341.99727)
+ (pt 520.44639 342.04772)
+ (pt 520.23138 342.19138)
+ (pt 520.08772 342.40639)
+ (pt 520.03727 342.66)
+ (pt 520.08772 342.91361)
+ (pt 520.23138 343.12862)
+ (pt 520.44639 343.27228)
+ (pt 520.7 343.32273)
+ (pt 520.95361 343.27228)
+ (pt 521.16862 343.12862)
+ (pt 521.31228 342.91361)
+ (pt 521.36273 342.66)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 522.08778 388.08884)
+ (pt 521.88886 387.79114)
+ (pt 521.59116 387.59222)
+ (pt 521.24 387.52237)
+ (pt 520.88884 387.59222)
+ (pt 520.59114 387.79114)
+ (pt 520.39222 388.08884)
+ (pt 520.32237 388.44)
+ (pt 520.39222 388.79116)
+ (pt 520.59114 389.08886)
+ (pt 520.88884 389.28778)
+ (pt 521.24 389.35763)
+ (pt 521.59116 389.28778)
+ (pt 521.88886 389.08886)
+ (pt 522.08778 388.79116)
+ (pt 522.15763 388.44)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 253.52243)
+ (pt 644.77438 253.25438)
+ (pt 645.04243 252.85321)
+ (pt 645.13656 252.38)
+ (pt 645.04243 251.90679)
+ (pt 644.77438 251.50562)
+ (pt 644.37321 251.23757)
+ (pt 643.9 251.14344)
+ (pt 643.42679 251.23757)
+ (pt 643.02562 251.50562)
+ (pt 642.75757 251.90679)
+ (pt 642.66344 252.38)
+ (pt 642.75757 252.85321)
+ (pt 643.02562 253.25438)
+ (pt 643.42679 253.52243)
+ (pt 643.9 253.61656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 480.15116 291.71222)
+ (pt 479.8 291.64237)
+ (pt 479.44884 291.71222)
+ (pt 479.15114 291.91114)
+ (pt 478.95222 292.20884)
+ (pt 478.88237 292.56)
+ (pt 478.95222 292.91116)
+ (pt 479.15114 293.20886)
+ (pt 479.44884 293.40778)
+ (pt 479.8 293.47763)
+ (pt 480.15116 293.40778)
+ (pt 480.44886 293.20886)
+ (pt 480.48844 293.14962)
+ (pt 480.60393 293.22679)
+ (pt 480.76 293.25783)
+ (pt 481.96 293.25783)
+ (pt 482.11607 293.22679)
+ (pt 482.15616 293.2)
+ (pt 482.56384 293.2)
+ (pt 482.60393 293.22679)
+ (pt 482.76 293.25783)
+ (pt 483.96 293.25783)
+ (pt 484.11607 293.22679)
+ (pt 484.12435 293.22126)
+ (pt 484.14321 293.31607)
+ (pt 484.23162 293.44838)
+ (pt 484.36393 293.53679)
+ (pt 484.52 293.56783)
+ (pt 486.52 293.56783)
+ (pt 486.67607 293.53679)
+ (pt 486.80838 293.44838)
+ (pt 486.89679 293.31607)
+ (pt 486.92783 293.16)
+ (pt 486.92783 291.16)
+ (pt 486.89679 291.00393)
+ (pt 486.80838 290.87162)
+ (pt 486.67607 290.78321)
+ (pt 486.52 290.75217)
+ (pt 484.52 290.75217)
+ (pt 484.36393 290.78321)
+ (pt 484.23162 290.87162)
+ (pt 484.14321 291.00393)
+ (pt 484.11217 291.16)
+ (pt 484.11217 291.17243)
+ (pt 483.96 291.14217)
+ (pt 482.76 291.14217)
+ (pt 482.60393 291.17321)
+ (pt 482.56384 291.2)
+ (pt 482.15616 291.2)
+ (pt 482.11607 291.17321)
+ (pt 481.96 291.14217)
+ (pt 480.76 291.14217)
+ (pt 480.60393 291.17321)
+ (pt 480.47162 291.26162)
+ (pt 480.38321 291.39393)
+ (pt 480.35217 291.55)
+ (pt 480.35217 291.84653)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 245.90243)
+ (pt 644.77438 245.63438)
+ (pt 645.04243 245.23321)
+ (pt 645.13656 244.76)
+ (pt 645.04243 244.28679)
+ (pt 644.77438 243.88562)
+ (pt 644.37321 243.61757)
+ (pt 643.9 243.52344)
+ (pt 643.42679 243.61757)
+ (pt 643.02562 243.88562)
+ (pt 642.75757 244.28679)
+ (pt 642.66344 244.76)
+ (pt 642.75757 245.23321)
+ (pt 643.02562 245.63438)
+ (pt 643.42679 245.90243)
+ (pt 643.9 245.99656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 530.71138 350.29138)
+ (pt 530.56772 350.50639)
+ (pt 530.51727 350.76)
+ (pt 530.56772 351.01361)
+ (pt 530.71138 351.22862)
+ (pt 530.74955 351.25412)
+ (pt 530.60772 351.46639)
+ (pt 530.55727 351.72)
+ (pt 530.60772 351.97361)
+ (pt 530.75138 352.18862)
+ (pt 530.80331 352.22332)
+ (pt 530.73138 352.27138)
+ (pt 530.58772 352.48639)
+ (pt 530.53727 352.74)
+ (pt 530.58772 352.99361)
+ (pt 530.73138 353.20862)
+ (pt 530.77835 353.24)
+ (pt 530.73138 353.27138)
+ (pt 530.58772 353.48639)
+ (pt 530.53727 353.74)
+ (pt 530.58772 353.99361)
+ (pt 530.73138 354.20862)
+ (pt 530.75338 354.22332)
+ (pt 530.71138 354.25138)
+ (pt 530.56772 354.46639)
+ (pt 530.51727 354.72)
+ (pt 530.56772 354.97361)
+ (pt 530.71138 355.18862)
+ (pt 530.92639 355.33228)
+ (pt 531.18 355.38273)
+ (pt 531.43361 355.33228)
+ (pt 531.64862 355.18862)
+ (pt 531.79228 354.97361)
+ (pt 531.84273 354.72)
+ (pt 531.79228 354.46639)
+ (pt 531.64862 354.25138)
+ (pt 531.62662 354.23668)
+ (pt 531.66862 354.20862)
+ (pt 531.7 354.16165)
+ (pt 531.73138 354.20862)
+ (pt 531.94639 354.35228)
+ (pt 532.2 354.40273)
+ (pt 532.45361 354.35228)
+ (pt 532.66862 354.20862)
+ (pt 532.81228 353.99361)
+ (pt 532.86273 353.74)
+ (pt 532.81228 353.48639)
+ (pt 532.66862 353.27138)
+ (pt 532.66159 353.26668)
+ (pt 532.68862 353.24862)
+ (pt 532.83228 353.03361)
+ (pt 532.88273 352.78)
+ (pt 532.83228 352.52639)
+ (pt 532.68862 352.31138)
+ (pt 532.58676 352.24332)
+ (pt 532.66862 352.18862)
+ (pt 532.81228 351.97361)
+ (pt 532.86273 351.72)
+ (pt 532.81228 351.46639)
+ (pt 532.66862 351.25138)
+ (pt 532.62165 351.22)
+ (pt 532.66862 351.18862)
+ (pt 532.81228 350.97361)
+ (pt 532.86273 350.72)
+ (pt 532.81228 350.46639)
+ (pt 532.66862 350.25138)
+ (pt 532.63165 350.22668)
+ (pt 532.68862 350.18862)
+ (pt 532.83228 349.97361)
+ (pt 532.88273 349.72)
+ (pt 532.83228 349.46639)
+ (pt 532.68862 349.25138)
+ (pt 532.64662 349.22332)
+ (pt 532.66862 349.20862)
+ (pt 532.81228 348.99361)
+ (pt 532.86273 348.74)
+ (pt 532.81228 348.48639)
+ (pt 532.66862 348.27138)
+ (pt 532.45361 348.12772)
+ (pt 532.2 348.07727)
+ (pt 531.94639 348.12772)
+ (pt 531.73138 348.27138)
+ (pt 531.68664 348.33835)
+ (pt 531.66862 348.31138)
+ (pt 531.45361 348.16772)
+ (pt 531.2 348.11727)
+ (pt 530.94639 348.16772)
+ (pt 530.73138 348.31138)
+ (pt 530.58772 348.52639)
+ (pt 530.53727 348.78)
+ (pt 530.58772 349.03361)
+ (pt 530.73138 349.24862)
+ (pt 530.77835 349.28)
+ (pt 530.73138 349.31138)
+ (pt 530.58772 349.52639)
+ (pt 530.53727 349.78)
+ (pt 530.58772 350.03361)
+ (pt 530.73138 350.24862)
+ (pt 530.75338 350.26332)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 532.31228 358.64639)
+ (pt 532.16862 358.43138)
+ (pt 531.95361 358.28772)
+ (pt 531.7 358.23727)
+ (pt 531.44639 358.28772)
+ (pt 531.23138 358.43138)
+ (pt 531.08772 358.64639)
+ (pt 531.03727 358.9)
+ (pt 531.08772 359.15361)
+ (pt 531.23138 359.36862)
+ (pt 531.44639 359.51228)
+ (pt 531.7 359.56273)
+ (pt 531.95361 359.51228)
+ (pt 532.16862 359.36862)
+ (pt 532.31228 359.15361)
+ (pt 532.36273 358.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 548.44 361.13217)
+ (pt 548.28393 361.16321)
+ (pt 548.15162 361.25162)
+ (pt 548.09256 361.34)
+ (pt 547.98744 361.34)
+ (pt 547.92838 361.25162)
+ (pt 547.79607 361.16321)
+ (pt 547.64 361.13217)
+ (pt 546.84 361.13217)
+ (pt 546.68393 361.16321)
+ (pt 546.55162 361.25162)
+ (pt 546.46321 361.38393)
+ (pt 546.43217 361.54)
+ (pt 546.43217 362.34)
+ (pt 546.46321 362.49607)
+ (pt 546.55162 362.62838)
+ (pt 546.68393 362.71679)
+ (pt 546.84 362.74783)
+ (pt 547.64 362.74783)
+ (pt 547.79607 362.71679)
+ (pt 547.92838 362.62838)
+ (pt 547.98744 362.54)
+ (pt 548.09256 362.54)
+ (pt 548.15162 362.62838)
+ (pt 548.28393 362.71679)
+ (pt 548.44 362.74783)
+ (pt 549.24 362.74783)
+ (pt 549.39607 362.71679)
+ (pt 549.52838 362.62838)
+ (pt 549.55185 362.59326)
+ (pt 549.7 362.62273)
+ (pt 549.95361 362.57228)
+ (pt 550.16862 362.42862)
+ (pt 550.31228 362.21361)
+ (pt 550.36273 361.96)
+ (pt 550.31228 361.70639)
+ (pt 550.16862 361.49138)
+ (pt 549.95361 361.34772)
+ (pt 549.7 361.29727)
+ (pt 549.69743 361.29778)
+ (pt 549.68 361.29056)
+ (pt 549.59592 361.29056)
+ (pt 549.68862 361.22862)
+ (pt 549.83228 361.01361)
+ (pt 549.88273 360.76)
+ (pt 549.83228 360.50639)
+ (pt 549.68862 360.29138)
+ (pt 549.47361 360.14772)
+ (pt 549.22 360.09727)
+ (pt 548.96639 360.14772)
+ (pt 548.76186 360.28438)
+ (pt 548.76273 360.28)
+ (pt 548.71228 360.02639)
+ (pt 548.56862 359.81138)
+ (pt 548.35361 359.66772)
+ (pt 548.1 359.61727)
+ (pt 547.84639 359.66772)
+ (pt 547.63138 359.81138)
+ (pt 547.48772 360.02639)
+ (pt 547.43727 360.28)
+ (pt 547.48772 360.53361)
+ (pt 547.63138 360.74862)
+ (pt 547.84639 360.89228)
+ (pt 548.1 360.94273)
+ (pt 548.35361 360.89228)
+ (pt 548.55814 360.75562)
+ (pt 548.55727 360.76)
+ (pt 548.60772 361.01361)
+ (pt 548.68694 361.13217)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 525.81228 355.44639)
+ (pt 525.66862 355.23138)
+ (pt 525.45361 355.08772)
+ (pt 525.2 355.03727)
+ (pt 524.94639 355.08772)
+ (pt 524.73138 355.23138)
+ (pt 524.58772 355.44639)
+ (pt 524.53727 355.7)
+ (pt 524.58772 355.95361)
+ (pt 524.73138 356.16862)
+ (pt 524.78331 356.20332)
+ (pt 524.71138 356.25138)
+ (pt 524.56772 356.46639)
+ (pt 524.51727 356.72)
+ (pt 524.56772 356.97361)
+ (pt 524.71138 357.18862)
+ (pt 524.92639 357.33228)
+ (pt 525.18 357.38273)
+ (pt 525.43361 357.33228)
+ (pt 525.64862 357.18862)
+ (pt 525.79228 356.97361)
+ (pt 525.84273 356.72)
+ (pt 525.79228 356.46639)
+ (pt 525.64862 356.25138)
+ (pt 525.59669 356.21668)
+ (pt 525.66862 356.16862)
+ (pt 525.81228 355.95361)
+ (pt 525.86273 355.7)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 261.14243)
+ (pt 644.77438 260.87438)
+ (pt 645.04243 260.47321)
+ (pt 645.13656 260.0)
+ (pt 645.04243 259.52679)
+ (pt 644.77438 259.12562)
+ (pt 644.37321 258.85757)
+ (pt 643.9 258.76344)
+ (pt 643.42679 258.85757)
+ (pt 643.02562 259.12562)
+ (pt 642.75757 259.52679)
+ (pt 642.66344 260.0)
+ (pt 642.75757 260.47321)
+ (pt 643.02562 260.87438)
+ (pt 643.42679 261.14243)
+ (pt 643.9 261.23656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 588.0 379.90783)
+ (pt 588.15607 379.87679)
+ (pt 588.28838 379.78838)
+ (pt 588.37679 379.65607)
+ (pt 588.40783 379.5)
+ (pt 588.40783 378.5)
+ (pt 588.37679 378.34393)
+ (pt 588.28838 378.21162)
+ (pt 588.15607 378.12321)
+ (pt 588.0 378.09217)
+ (pt 587.0 378.09217)
+ (pt 586.84393 378.12321)
+ (pt 586.71162 378.21162)
+ (pt 586.62321 378.34393)
+ (pt 586.59217 378.5)
+ (pt 586.59217 379.5)
+ (pt 586.62321 379.65607)
+ (pt 586.71162 379.78838)
+ (pt 586.84393 379.87679)
+ (pt 587.0 379.90783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 535.84778 281.44884)
+ (pt 535.64886 281.15114)
+ (pt 535.35116 280.95222)
+ (pt 535.0 280.88237)
+ (pt 534.64884 280.95222)
+ (pt 534.35114 281.15114)
+ (pt 534.15222 281.44884)
+ (pt 534.08237 281.8)
+ (pt 534.15222 282.15116)
+ (pt 534.35114 282.44886)
+ (pt 534.64884 282.64778)
+ (pt 535.0 282.71763)
+ (pt 535.35116 282.64778)
+ (pt 535.64886 282.44886)
+ (pt 535.84778 282.15116)
+ (pt 535.91763 281.8)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 545.91228 326.64639)
+ (pt 545.76862 326.43138)
+ (pt 545.55361 326.28772)
+ (pt 545.3 326.23727)
+ (pt 545.04639 326.28772)
+ (pt 544.83138 326.43138)
+ (pt 544.68772 326.64639)
+ (pt 544.63727 326.9)
+ (pt 544.68772 327.15361)
+ (pt 544.83138 327.36862)
+ (pt 545.04639 327.51228)
+ (pt 545.3 327.56273)
+ (pt 545.55361 327.51228)
+ (pt 545.76862 327.36862)
+ (pt 545.91228 327.15361)
+ (pt 545.96273 326.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 544.59228 357.62639)
+ (pt 544.44862 357.41138)
+ (pt 544.23361 357.26772)
+ (pt 543.98 357.21727)
+ (pt 543.72639 357.26772)
+ (pt 543.51138 357.41138)
+ (pt 543.36772 357.62639)
+ (pt 543.31727 357.88)
+ (pt 543.36772 358.13361)
+ (pt 543.51138 358.34862)
+ (pt 543.61981 358.42107)
+ (pt 543.58639 358.42772)
+ (pt 543.37138 358.57138)
+ (pt 543.22772 358.78639)
+ (pt 543.17727 359.04)
+ (pt 543.22772 359.29361)
+ (pt 543.37138 359.50862)
+ (pt 543.58639 359.65228)
+ (pt 543.84 359.70273)
+ (pt 544.09361 359.65228)
+ (pt 544.30862 359.50862)
+ (pt 544.45228 359.29361)
+ (pt 544.50273 359.04)
+ (pt 544.45228 358.78639)
+ (pt 544.30862 358.57138)
+ (pt 544.20019 358.49893)
+ (pt 544.23361 358.49228)
+ (pt 544.44862 358.34862)
+ (pt 544.59228 358.13361)
+ (pt 544.64273 357.88)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 284.00243)
+ (pt 644.77438 283.73438)
+ (pt 645.04243 283.33321)
+ (pt 645.13656 282.86)
+ (pt 645.04243 282.38679)
+ (pt 644.77438 281.98562)
+ (pt 644.37321 281.71757)
+ (pt 643.9 281.62344)
+ (pt 643.42679 281.71757)
+ (pt 643.02562 281.98562)
+ (pt 642.75757 282.38679)
+ (pt 642.66344 282.86)
+ (pt 642.75757 283.33321)
+ (pt 643.02562 283.73438)
+ (pt 643.42679 284.00243)
+ (pt 643.9 284.09656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 276.38243)
+ (pt 644.77438 276.11438)
+ (pt 645.04243 275.71321)
+ (pt 645.13656 275.24)
+ (pt 645.04243 274.76679)
+ (pt 644.77438 274.36562)
+ (pt 644.37321 274.09757)
+ (pt 643.9 274.00344)
+ (pt 643.42679 274.09757)
+ (pt 643.02562 274.36562)
+ (pt 642.75757 274.76679)
+ (pt 642.66344 275.24)
+ (pt 642.75757 275.71321)
+ (pt 643.02562 276.11438)
+ (pt 643.42679 276.38243)
+ (pt 643.9 276.47656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 410.68838 321.04451)
+ (pt 410.55607 320.9561)
+ (pt 410.4 320.92506)
+ (pt 410.24393 320.9561)
+ (pt 410.11162 321.04451)
+ (pt 409.40451 321.75162)
+ (pt 409.3161 321.88393)
+ (pt 409.28506 322.04)
+ (pt 409.3161 322.19607)
+ (pt 409.40451 322.32838)
+ (pt 410.11162 323.03549)
+ (pt 410.24393 323.1239)
+ (pt 410.4 323.15494)
+ (pt 410.55607 323.1239)
+ (pt 410.68838 323.03549)
+ (pt 411.39549 322.32838)
+ (pt 411.4839 322.19607)
+ (pt 411.51494 322.04)
+ (pt 411.4839 321.88393)
+ (pt 411.39549 321.75162)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 374.93724 422.06276)
+ (pt 374.50723 421.77543)
+ (pt 374.0 421.67454)
+ (pt 373.49277 421.77543)
+ (pt 373.06276 422.06276)
+ (pt 372.77543 422.49277)
+ (pt 372.67454 423.0)
+ (pt 372.77543 423.50723)
+ (pt 373.06276 423.93724)
+ (pt 373.49277 424.22457)
+ (pt 374.0 424.32546)
+ (pt 374.50723 424.22457)
+ (pt 374.93724 423.93724)
+ (pt 375.09339 423.70355)
+ (pt 379.45418 423.70355)
+ (pt 379.50393 423.73679)
+ (pt 379.66 423.76783)
+ (pt 380.66 423.76783)
+ (pt 380.81607 423.73679)
+ (pt 380.94838 423.64838)
+ (pt 381.03679 423.51607)
+ (pt 381.06783 423.36)
+ (pt 381.06783 422.36)
+ (pt 381.03679 422.20393)
+ (pt 380.94838 422.07162)
+ (pt 380.81607 421.98321)
+ (pt 380.66 421.95217)
+ (pt 379.66 421.95217)
+ (pt 379.50393 421.98321)
+ (pt 379.37162 422.07162)
+ (pt 379.28321 422.20393)
+ (pt 379.26481 422.29645)
+ (pt 375.09339 422.29645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 383.88783 367.86)
+ (pt 383.85679 367.70393)
+ (pt 383.76838 367.57162)
+ (pt 383.63607 367.48321)
+ (pt 383.48 367.45217)
+ (pt 381.48 367.45217)
+ (pt 381.32393 367.48321)
+ (pt 381.19162 367.57162)
+ (pt 381.10321 367.70393)
+ (pt 381.07217 367.86)
+ (pt 381.07217 369.86)
+ (pt 381.10321 370.01607)
+ (pt 381.19162 370.14838)
+ (pt 381.32393 370.23679)
+ (pt 381.48 370.26783)
+ (pt 383.48 370.26783)
+ (pt 383.63607 370.23679)
+ (pt 383.76838 370.14838)
+ (pt 383.85679 370.01607)
+ (pt 383.88783 369.86)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 374.93724 367.86276)
+ (pt 374.50723 367.57543)
+ (pt 374.0 367.47454)
+ (pt 373.49277 367.57543)
+ (pt 373.06276 367.86276)
+ (pt 372.77543 368.29277)
+ (pt 372.67454 368.8)
+ (pt 372.77543 369.30723)
+ (pt 373.06276 369.73724)
+ (pt 373.49277 370.02457)
+ (pt 374.0 370.12546)
+ (pt 374.50723 370.02457)
+ (pt 374.93724 369.73724)
+ (pt 375.09339 369.50355)
+ (pt 379.06072 369.50355)
+ (pt 379.06321 369.51607)
+ (pt 379.15162 369.64838)
+ (pt 379.28393 369.73679)
+ (pt 379.44 369.76783)
+ (pt 380.44 369.76783)
+ (pt 380.59607 369.73679)
+ (pt 380.72838 369.64838)
+ (pt 380.81679 369.51607)
+ (pt 380.84783 369.36)
+ (pt 380.84783 368.36)
+ (pt 380.81679 368.20393)
+ (pt 380.72838 368.07162)
+ (pt 380.59607 367.98321)
+ (pt 380.44 367.95217)
+ (pt 379.44 367.95217)
+ (pt 379.28393 367.98321)
+ (pt 379.15162 368.07162)
+ (pt 379.13503 368.09645)
+ (pt 375.09339 368.09645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 374.93724 345.06276)
+ (pt 374.50723 344.77543)
+ (pt 374.0 344.67454)
+ (pt 373.49277 344.77543)
+ (pt 373.06276 345.06276)
+ (pt 372.77543 345.49277)
+ (pt 372.67454 346.0)
+ (pt 372.77543 346.50723)
+ (pt 373.06276 346.93724)
+ (pt 373.49277 347.22457)
+ (pt 374.0 347.32546)
+ (pt 374.50723 347.22457)
+ (pt 374.93724 346.93724)
+ (pt 375.09339 346.70355)
+ (pt 379.33432 346.70355)
+ (pt 379.44393 346.77679)
+ (pt 379.6 346.80783)
+ (pt 380.6 346.80783)
+ (pt 380.75607 346.77679)
+ (pt 380.88838 346.68838)
+ (pt 380.97679 346.55607)
+ (pt 381.00783 346.4)
+ (pt 381.00783 345.4)
+ (pt 380.97679 345.24393)
+ (pt 380.88838 345.11162)
+ (pt 380.75607 345.02321)
+ (pt 380.6 344.99217)
+ (pt 379.6 344.99217)
+ (pt 379.44393 345.02321)
+ (pt 379.31162 345.11162)
+ (pt 379.22321 345.24393)
+ (pt 379.21276 345.29645)
+ (pt 375.09339 345.29645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 565.77228 342.56639)
+ (pt 565.62862 342.35138)
+ (pt 565.41361 342.20772)
+ (pt 565.16 342.15727)
+ (pt 564.90639 342.20772)
+ (pt 564.69138 342.35138)
+ (pt 564.54772 342.56639)
+ (pt 564.49727 342.82)
+ (pt 564.54772 343.07361)
+ (pt 564.69138 343.28862)
+ (pt 564.90639 343.43228)
+ (pt 565.16 343.48273)
+ (pt 565.41361 343.43228)
+ (pt 565.62862 343.28862)
+ (pt 565.77228 343.07361)
+ (pt 565.82273 342.82)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 291.62243)
+ (pt 644.77438 291.35438)
+ (pt 645.04243 290.95321)
+ (pt 645.13656 290.48)
+ (pt 645.04243 290.00679)
+ (pt 644.77438 289.60562)
+ (pt 644.37321 289.33757)
+ (pt 643.9 289.24344)
+ (pt 643.42679 289.33757)
+ (pt 643.02562 289.60562)
+ (pt 642.75757 290.00679)
+ (pt 642.66344 290.48)
+ (pt 642.75757 290.95321)
+ (pt 643.02562 291.35438)
+ (pt 643.42679 291.62243)
+ (pt 643.9 291.71656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 584.00778 319.78884)
+ (pt 583.80886 319.49114)
+ (pt 583.51116 319.29222)
+ (pt 583.16 319.22237)
+ (pt 582.80884 319.29222)
+ (pt 582.51114 319.49114)
+ (pt 582.31222 319.78884)
+ (pt 582.24257 320.13899)
+ (pt 581.96078 320.42078)
+ (pt 581.94129 320.46782)
+ (pt 581.86393 320.48321)
+ (pt 581.73162 320.57162)
+ (pt 581.64321 320.70393)
+ (pt 581.61217 320.86)
+ (pt 581.61217 321.66)
+ (pt 581.64321 321.81607)
+ (pt 581.73162 321.94838)
+ (pt 581.82 322.00744)
+ (pt 581.82 322.11256)
+ (pt 581.73162 322.17162)
+ (pt 581.64321 322.30393)
+ (pt 581.61217 322.46)
+ (pt 581.61217 323.26)
+ (pt 581.64321 323.41607)
+ (pt 581.73162 323.54838)
+ (pt 581.86393 323.63679)
+ (pt 582.02 323.66783)
+ (pt 582.50855 323.66783)
+ (pt 582.46237 323.9)
+ (pt 582.53222 324.25116)
+ (pt 582.73114 324.54886)
+ (pt 583.02884 324.74778)
+ (pt 583.38 324.81763)
+ (pt 583.73116 324.74778)
+ (pt 584.02886 324.54886)
+ (pt 584.22778 324.25116)
+ (pt 584.29763 323.9)
+ (pt 584.22778 323.54884)
+ (pt 584.02886 323.25114)
+ (pt 583.73116 323.05222)
+ (pt 583.38 322.98237)
+ (pt 583.22783 323.01264)
+ (pt 583.22783 322.46)
+ (pt 583.19679 322.30393)
+ (pt 583.10838 322.17162)
+ (pt 583.02 322.11256)
+ (pt 583.02 322.00744)
+ (pt 583.10838 321.94838)
+ (pt 583.19679 321.81607)
+ (pt 583.22783 321.66)
+ (pt 583.22783 321.04414)
+ (pt 583.51116 320.98778)
+ (pt 583.80886 320.78886)
+ (pt 584.00778 320.49116)
+ (pt 584.07763 320.14)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 583.19162 334.03162)
+ (pt 583.10321 334.16393)
+ (pt 583.07217 334.32)
+ (pt 583.07217 335.117)
+ (pt 582.99114 335.17114)
+ (pt 582.79222 335.46884)
+ (pt 582.72237 335.82)
+ (pt 582.79222 336.17116)
+ (pt 582.99114 336.46886)
+ (pt 583.28884 336.66778)
+ (pt 583.64 336.73763)
+ (pt 583.99116 336.66778)
+ (pt 584.28886 336.46886)
+ (pt 584.48778 336.17116)
+ (pt 584.55763 335.82)
+ (pt 584.51623 335.61188)
+ (pt 584.52944 335.58)
+ (pt 584.52944 335.4344)
+ (pt 584.56838 335.40838)
+ (pt 584.65679 335.27607)
+ (pt 584.68783 335.12)
+ (pt 584.68783 334.32)
+ (pt 584.65679 334.16393)
+ (pt 584.56838 334.03162)
+ (pt 584.48 333.97256)
+ (pt 584.48 333.86744)
+ (pt 584.56838 333.80838)
+ (pt 584.65679 333.67607)
+ (pt 584.68783 333.52)
+ (pt 584.68783 332.72)
+ (pt 584.65679 332.56393)
+ (pt 584.56838 332.43162)
+ (pt 584.43607 332.34321)
+ (pt 584.28 332.31217)
+ (pt 583.76327 332.31217)
+ (pt 583.77763 332.24)
+ (pt 583.70778 331.88884)
+ (pt 583.50886 331.59114)
+ (pt 583.21116 331.39222)
+ (pt 582.86 331.32237)
+ (pt 582.50884 331.39222)
+ (pt 582.21114 331.59114)
+ (pt 582.01222 331.88884)
+ (pt 581.94237 332.24)
+ (pt 582.01222 332.59116)
+ (pt 582.21114 332.88886)
+ (pt 582.50884 333.08778)
+ (pt 582.86 333.15763)
+ (pt 583.07217 333.11543)
+ (pt 583.07217 333.52)
+ (pt 583.10321 333.67607)
+ (pt 583.19162 333.80838)
+ (pt 583.28 333.86744)
+ (pt 583.28 333.97256)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 586.32778 366.02884)
+ (pt 586.12886 365.73114)
+ (pt 585.83116 365.53222)
+ (pt 585.48 365.46237)
+ (pt 585.12884 365.53222)
+ (pt 584.83114 365.73114)
+ (pt 584.63222 366.02884)
+ (pt 584.56237 366.38)
+ (pt 584.63222 366.73116)
+ (pt 584.83114 367.02886)
+ (pt 585.12884 367.22778)
+ (pt 585.48 367.29763)
+ (pt 585.83116 367.22778)
+ (pt 586.12886 367.02886)
+ (pt 586.32778 366.73116)
+ (pt 586.39763 366.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 583.0 382.40783)
+ (pt 583.15607 382.37679)
+ (pt 583.28838 382.28838)
+ (pt 583.37679 382.15607)
+ (pt 583.40783 382.0)
+ (pt 583.40783 381.0)
+ (pt 583.37679 380.84393)
+ (pt 583.28838 380.71162)
+ (pt 583.15607 380.62321)
+ (pt 583.0 380.59217)
+ (pt 582.0 380.59217)
+ (pt 581.84393 380.62321)
+ (pt 581.71162 380.71162)
+ (pt 581.62321 380.84393)
+ (pt 581.59217 381.0)
+ (pt 581.59217 382.0)
+ (pt 581.62321 382.15607)
+ (pt 581.71162 382.28838)
+ (pt 581.84393 382.37679)
+ (pt 582.0 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 585.5 382.40783)
+ (pt 585.65607 382.37679)
+ (pt 585.78838 382.28838)
+ (pt 585.87679 382.15607)
+ (pt 585.90783 382.0)
+ (pt 585.90783 381.0)
+ (pt 585.87679 380.84393)
+ (pt 585.78838 380.71162)
+ (pt 585.65607 380.62321)
+ (pt 585.5 380.59217)
+ (pt 584.5 380.59217)
+ (pt 584.34393 380.62321)
+ (pt 584.21162 380.71162)
+ (pt 584.12321 380.84393)
+ (pt 584.09217 381.0)
+ (pt 584.09217 382.0)
+ (pt 584.12321 382.15607)
+ (pt 584.21162 382.28838)
+ (pt 584.34393 382.37679)
+ (pt 584.5 382.40783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 589.57564 358.22783)
+ (pt 589.59222 358.31116)
+ (pt 589.79114 358.60886)
+ (pt 590.08884 358.80778)
+ (pt 590.44 358.87763)
+ (pt 590.79116 358.80778)
+ (pt 591.08886 358.60886)
+ (pt 591.28778 358.31116)
+ (pt 591.35763 357.96)
+ (pt 591.28778 357.60884)
+ (pt 591.08886 357.31114)
+ (pt 590.79116 357.11222)
+ (pt 590.44 357.04237)
+ (pt 590.08884 357.11222)
+ (pt 589.98783 357.17971)
+ (pt 589.98783 357.02)
+ (pt 589.95679 356.86393)
+ (pt 589.86838 356.73162)
+ (pt 589.78 356.67256)
+ (pt 589.78 356.56744)
+ (pt 589.86838 356.50838)
+ (pt 589.95679 356.37607)
+ (pt 589.98783 356.22)
+ (pt 589.98783 355.51061)
+ (pt 590.08101 355.41743)
+ (pt 590.43116 355.34778)
+ (pt 590.72886 355.14886)
+ (pt 590.92778 354.85116)
+ (pt 590.99763 354.5)
+ (pt 590.92778 354.14884)
+ (pt 590.72886 353.85114)
+ (pt 590.43116 353.65222)
+ (pt 590.08 353.58237)
+ (pt 589.72884 353.65222)
+ (pt 589.43114 353.85114)
+ (pt 589.23222 354.14884)
+ (pt 589.16257 354.49899)
+ (pt 588.72078 354.94078)
+ (pt 588.68324 355.03141)
+ (pt 588.62393 355.04321)
+ (pt 588.49162 355.13162)
+ (pt 588.40321 355.26393)
+ (pt 588.37217 355.42)
+ (pt 588.37217 356.22)
+ (pt 588.40321 356.37607)
+ (pt 588.49162 356.50838)
+ (pt 588.58 356.56744)
+ (pt 588.58 356.67256)
+ (pt 588.49162 356.73162)
+ (pt 588.40321 356.86393)
+ (pt 588.37217 357.02)
+ (pt 588.37217 357.82)
+ (pt 588.40321 357.97607)
+ (pt 588.49162 358.10838)
+ (pt 588.62393 358.19679)
+ (pt 588.78 358.22783)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 519.05228 361.58639)
+ (pt 518.90862 361.37138)
+ (pt 518.69361 361.22772)
+ (pt 518.44 361.17727)
+ (pt 518.18639 361.22772)
+ (pt 517.97138 361.37138)
+ (pt 517.82772 361.58639)
+ (pt 517.77727 361.84)
+ (pt 517.82772 362.09361)
+ (pt 517.97138 362.30862)
+ (pt 518.18639 362.45228)
+ (pt 518.44 362.50273)
+ (pt 518.69361 362.45228)
+ (pt 518.90862 362.30862)
+ (pt 519.05228 362.09361)
+ (pt 519.10273 361.84)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 322.10243)
+ (pt 644.77438 321.83438)
+ (pt 645.04243 321.43321)
+ (pt 645.13656 320.96)
+ (pt 645.04243 320.48679)
+ (pt 644.77438 320.08562)
+ (pt 644.37321 319.81757)
+ (pt 643.9 319.72344)
+ (pt 643.42679 319.81757)
+ (pt 643.02562 320.08562)
+ (pt 642.75757 320.48679)
+ (pt 642.66344 320.96)
+ (pt 642.75757 321.43321)
+ (pt 643.02562 321.83438)
+ (pt 643.42679 322.10243)
+ (pt 643.9 322.19656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 314.48243)
+ (pt 644.77438 314.21438)
+ (pt 645.04243 313.81321)
+ (pt 645.13656 313.34)
+ (pt 645.04243 312.86679)
+ (pt 644.77438 312.46562)
+ (pt 644.37321 312.19757)
+ (pt 643.9 312.10344)
+ (pt 643.42679 312.19757)
+ (pt 643.02562 312.46562)
+ (pt 642.75757 312.86679)
+ (pt 642.66344 313.34)
+ (pt 642.75757 313.81321)
+ (pt 643.02562 314.21438)
+ (pt 643.42679 314.48243)
+ (pt 643.9 314.57656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.03724 321.06276)
+ (pt 374.60723 320.77543)
+ (pt 374.1 320.67454)
+ (pt 373.59277 320.77543)
+ (pt 373.16276 321.06276)
+ (pt 372.87543 321.49277)
+ (pt 372.77454 322.0)
+ (pt 372.87543 322.50723)
+ (pt 373.16276 322.93724)
+ (pt 373.59277 323.22457)
+ (pt 374.1 323.32546)
+ (pt 374.60723 323.22457)
+ (pt 375.03724 322.93724)
+ (pt 375.19339 322.70355)
+ (pt 379.59297 322.70355)
+ (pt 379.68207 322.74749)
+ (pt 380.648 323.00631)
+ (pt 380.80679 323.01672)
+ (pt 380.95747 322.96556)
+ (pt 381.07711 322.86064)
+ (pt 381.14749 322.71793)
+ (pt 381.40631 321.752)
+ (pt 381.41672 321.59321)
+ (pt 381.36556 321.44253)
+ (pt 381.26064 321.32289)
+ (pt 381.11793 321.25251)
+ (pt 380.152 320.99369)
+ (pt 379.99321 320.98328)
+ (pt 379.84253 321.03444)
+ (pt 379.72289 321.13936)
+ (pt 379.65251 321.28207)
+ (pt 379.64866 321.29645)
+ (pt 375.19339 321.29645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.32324 304.06324)
+ (pt 614.14642 304.32786)
+ (pt 614.08433 304.64)
+ (pt 614.14642 304.95214)
+ (pt 614.32324 305.21676)
+ (pt 614.41788 305.28)
+ (pt 614.32324 305.34324)
+ (pt 614.14642 305.60786)
+ (pt 614.08433 305.92)
+ (pt 614.14642 306.23214)
+ (pt 614.32324 306.49676)
+ (pt 614.45285 306.58336)
+ (pt 614.36324 306.64324)
+ (pt 614.18642 306.90786)
+ (pt 614.12433 307.22)
+ (pt 614.18642 307.53214)
+ (pt 614.36324 307.79676)
+ (pt 614.62786 307.97358)
+ (pt 614.94 308.03567)
+ (pt 615.25214 307.97358)
+ (pt 615.51676 307.79676)
+ (pt 615.69358 307.53214)
+ (pt 615.74067 307.29541)
+ (pt 615.76786 307.31358)
+ (pt 616.08 307.37567)
+ (pt 616.39214 307.31358)
+ (pt 616.65676 307.13676)
+ (pt 616.83358 306.87214)
+ (pt 616.89567 306.56)
+ (pt 616.83358 306.24786)
+ (pt 616.65676 305.98324)
+ (pt 616.55715 305.91668)
+ (pt 616.67676 305.83676)
+ (pt 616.85358 305.57214)
+ (pt 616.91567 305.26)
+ (pt 616.85358 304.94786)
+ (pt 616.67676 304.68324)
+ (pt 616.57212 304.61332)
+ (pt 616.65676 304.55676)
+ (pt 616.83358 304.29214)
+ (pt 616.89567 303.98)
+ (pt 616.83358 303.66786)
+ (pt 616.65676 303.40324)
+ (pt 616.39214 303.22642)
+ (pt 616.08 303.16433)
+ (pt 615.76786 303.22642)
+ (pt 615.68771 303.27998)
+ (pt 615.63358 303.00786)
+ (pt 615.45676 302.74324)
+ (pt 615.19214 302.56642)
+ (pt 614.88 302.50433)
+ (pt 614.56786 302.56642)
+ (pt 614.30324 302.74324)
+ (pt 614.12642 303.00786)
+ (pt 614.06433 303.32)
+ (pt 614.12642 303.63214)
+ (pt 614.30324 303.89676)
+ (pt 614.43781 303.98668)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 614.15358 311.98786)
+ (pt 613.97676 311.72324)
+ (pt 613.71214 311.54642)
+ (pt 613.4 311.48433)
+ (pt 613.08786 311.54642)
+ (pt 612.82324 311.72324)
+ (pt 612.64642 311.98786)
+ (pt 612.58433 312.3)
+ (pt 612.64642 312.61214)
+ (pt 612.82324 312.87676)
+ (pt 613.08786 313.05358)
+ (pt 613.4 313.11567)
+ (pt 613.71214 313.05358)
+ (pt 613.97676 312.87676)
+ (pt 613.97697 312.87644)
+ (pt 613.96433 312.94)
+ (pt 614.02642 313.25214)
+ (pt 614.20324 313.51676)
+ (pt 614.39285 313.64346)
+ (pt 614.36324 313.66324)
+ (pt 614.18642 313.92786)
+ (pt 614.12433 314.24)
+ (pt 614.18642 314.55214)
+ (pt 614.36324 314.81676)
+ (pt 614.41788 314.85327)
+ (pt 614.28324 314.94324)
+ (pt 614.10642 315.20786)
+ (pt 614.04433 315.52)
+ (pt 614.10642 315.83214)
+ (pt 614.28324 316.09676)
+ (pt 614.44285 316.20341)
+ (pt 614.38324 316.24324)
+ (pt 614.20642 316.50786)
+ (pt 614.14433 316.82)
+ (pt 614.20642 317.13214)
+ (pt 614.38324 317.39676)
+ (pt 614.64786 317.57358)
+ (pt 614.96 317.63567)
+ (pt 615.27214 317.57358)
+ (pt 615.53676 317.39676)
+ (pt 615.71358 317.13214)
+ (pt 615.75481 316.92486)
+ (pt 615.76786 316.93358)
+ (pt 616.08 316.99567)
+ (pt 616.39214 316.93358)
+ (pt 616.65676 316.75676)
+ (pt 616.83358 316.49214)
+ (pt 616.89567 316.18)
+ (pt 616.83358 315.86786)
+ (pt 616.65676 315.60324)
+ (pt 616.54715 315.53)
+ (pt 616.65676 315.45676)
+ (pt 616.83358 315.19214)
+ (pt 616.89567 314.88)
+ (pt 616.83358 314.56786)
+ (pt 616.65676 314.30324)
+ (pt 616.51715 314.20995)
+ (pt 616.59676 314.15676)
+ (pt 616.77358 313.89214)
+ (pt 616.83567 313.58)
+ (pt 616.77358 313.26786)
+ (pt 616.59676 313.00324)
+ (pt 616.33214 312.82642)
+ (pt 616.02 312.76433)
+ (pt 615.70786 312.82642)
+ (pt 615.58889 312.90592)
+ (pt 615.53358 312.62786)
+ (pt 615.35676 312.36324)
+ (pt 615.09214 312.18642)
+ (pt 614.78 312.12433)
+ (pt 614.46786 312.18642)
+ (pt 614.20324 312.36324)
+ (pt 614.20303 312.36356)
+ (pt 614.21567 312.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 616.95358 418.58786)
+ (pt 616.77676 418.32324)
+ (pt 616.66715 418.25)
+ (pt 616.77676 418.17676)
+ (pt 616.95358 417.91214)
+ (pt 617.01567 417.6)
+ (pt 616.95358 417.28786)
+ (pt 616.77676 417.02324)
+ (pt 616.66715 416.95)
+ (pt 616.77676 416.87676)
+ (pt 616.95358 416.61214)
+ (pt 617.01567 416.3)
+ (pt 616.95358 415.98786)
+ (pt 616.77676 415.72324)
+ (pt 616.51214 415.54642)
+ (pt 616.2 415.48433)
+ (pt 615.88786 415.54642)
+ (pt 615.62324 415.72324)
+ (pt 615.44642 415.98786)
+ (pt 615.39109 416.266)
+ (pt 615.21214 416.14642)
+ (pt 614.9 416.08433)
+ (pt 614.58786 416.14642)
+ (pt 614.32324 416.32324)
+ (pt 614.14642 416.58786)
+ (pt 614.08433 416.9)
+ (pt 614.14642 417.21214)
+ (pt 614.32324 417.47676)
+ (pt 614.50767 417.6)
+ (pt 614.32324 417.72324)
+ (pt 614.14642 417.98786)
+ (pt 614.08433 418.3)
+ (pt 614.14642 418.61214)
+ (pt 614.32324 418.87676)
+ (pt 614.35802 418.9)
+ (pt 614.32324 418.92324)
+ (pt 614.14642 419.18786)
+ (pt 614.08433 419.5)
+ (pt 614.14642 419.81214)
+ (pt 614.32324 420.07676)
+ (pt 614.58786 420.25358)
+ (pt 614.9 420.31567)
+ (pt 615.21214 420.25358)
+ (pt 615.47676 420.07676)
+ (pt 615.65358 419.81214)
+ (pt 615.70891 419.534)
+ (pt 615.88786 419.65358)
+ (pt 616.2 419.71567)
+ (pt 616.51214 419.65358)
+ (pt 616.77676 419.47676)
+ (pt 616.95358 419.21214)
+ (pt 617.01567 418.9)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 381.74243)
+ (pt 644.87438 381.47438)
+ (pt 645.14243 381.07321)
+ (pt 645.23656 380.6)
+ (pt 645.14243 380.12679)
+ (pt 644.87438 379.72562)
+ (pt 644.47321 379.45757)
+ (pt 644.0 379.36344)
+ (pt 643.52679 379.45757)
+ (pt 643.12562 379.72562)
+ (pt 642.85757 380.12679)
+ (pt 642.76344 380.6)
+ (pt 642.85757 381.07321)
+ (pt 643.12562 381.47438)
+ (pt 643.52679 381.74243)
+ (pt 644.0 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 381.74243)
+ (pt 642.33438 381.47438)
+ (pt 642.60243 381.07321)
+ (pt 642.69656 380.6)
+ (pt 642.60243 380.12679)
+ (pt 642.33438 379.72562)
+ (pt 641.93321 379.45757)
+ (pt 641.46 379.36344)
+ (pt 640.98679 379.45757)
+ (pt 640.58562 379.72562)
+ (pt 640.31757 380.12679)
+ (pt 640.22344 380.6)
+ (pt 640.31757 381.07321)
+ (pt 640.58562 381.47438)
+ (pt 640.98679 381.74243)
+ (pt 641.46 381.83656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.26679 286.47757)
+ (pt 380.91043 286.71568)
+ (pt 380.89759 286.65113)
+ (pt 380.80918 286.51882)
+ (pt 380.67687 286.43041)
+ (pt 380.5208 286.39937)
+ (pt 378.8952 286.39937)
+ (pt 378.73913 286.43041)
+ (pt 378.60682 286.51882)
+ (pt 378.51841 286.65113)
+ (pt 378.48737 286.8072)
+ (pt 378.48737 288.4328)
+ (pt 378.51841 288.58887)
+ (pt 378.60682 288.72118)
+ (pt 378.73913 288.80959)
+ (pt 378.8952 288.84063)
+ (pt 380.5208 288.84063)
+ (pt 380.67687 288.80959)
+ (pt 380.80918 288.72118)
+ (pt 380.89759 288.58887)
+ (pt 380.91043 288.52432)
+ (pt 381.26679 288.76243)
+ (pt 381.74 288.85656)
+ (pt 382.21321 288.76243)
+ (pt 382.61438 288.49438)
+ (pt 382.837 288.1612)
+ (pt 383.12 288.1612)
+ (pt 383.50269 288.00269)
+ (pt 385.49805 286.00733)
+ (pt 385.54 286.01567)
+ (pt 385.85214 285.95358)
+ (pt 386.11676 285.77676)
+ (pt 386.29358 285.51214)
+ (pt 386.35567 285.2)
+ (pt 386.29358 284.88786)
+ (pt 386.11676 284.62324)
+ (pt 385.85214 284.44642)
+ (pt 385.54 284.38433)
+ (pt 385.22786 284.44642)
+ (pt 384.96324 284.62324)
+ (pt 384.78642 284.88786)
+ (pt 384.72433 285.2)
+ (pt 384.73267 285.24195)
+ (pt 382.89582 287.0788)
+ (pt 382.837 287.0788)
+ (pt 382.61438 286.74562)
+ (pt 382.21321 286.47757)
+ (pt 381.74 286.38344)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 619.30778 350.88884)
+ (pt 619.10886 350.59114)
+ (pt 618.81116 350.39222)
+ (pt 618.46 350.32237)
+ (pt 618.10884 350.39222)
+ (pt 617.81114 350.59114)
+ (pt 617.61222 350.88884)
+ (pt 617.54237 351.24)
+ (pt 617.61222 351.59116)
+ (pt 617.81114 351.88886)
+ (pt 618.10884 352.08778)
+ (pt 618.46 352.15763)
+ (pt 618.81116 352.08778)
+ (pt 619.10886 351.88886)
+ (pt 619.30778 351.59116)
+ (pt 619.37763 351.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 489.34778 362.14884)
+ (pt 489.14886 361.85114)
+ (pt 488.85116 361.65222)
+ (pt 488.5 361.58237)
+ (pt 488.14884 361.65222)
+ (pt 487.85114 361.85114)
+ (pt 487.65222 362.14884)
+ (pt 487.58237 362.5)
+ (pt 487.65222 362.85116)
+ (pt 487.85114 363.14886)
+ (pt 488.14884 363.34778)
+ (pt 488.5 363.41763)
+ (pt 488.85116 363.34778)
+ (pt 489.14886 363.14886)
+ (pt 489.34778 362.85116)
+ (pt 489.41763 362.5)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 389.36243)
+ (pt 642.33438 389.09438)
+ (pt 642.60243 388.69321)
+ (pt 642.69656 388.22)
+ (pt 642.60243 387.74679)
+ (pt 642.33438 387.34562)
+ (pt 641.93321 387.07757)
+ (pt 641.46 386.98344)
+ (pt 640.98679 387.07757)
+ (pt 640.58562 387.34562)
+ (pt 640.31757 387.74679)
+ (pt 640.22344 388.22)
+ (pt 640.31757 388.69321)
+ (pt 640.58562 389.09438)
+ (pt 640.98679 389.36243)
+ (pt 641.46 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 620.52778 442.04884)
+ (pt 620.32886 441.75114)
+ (pt 620.03116 441.55222)
+ (pt 619.68 441.48237)
+ (pt 619.32884 441.55222)
+ (pt 619.03114 441.75114)
+ (pt 618.83222 442.04884)
+ (pt 618.76237 442.4)
+ (pt 618.83222 442.75116)
+ (pt 619.03114 443.04886)
+ (pt 619.32884 443.24778)
+ (pt 619.68 443.31763)
+ (pt 620.03116 443.24778)
+ (pt 620.32886 443.04886)
+ (pt 620.52778 442.75116)
+ (pt 620.59763 442.4)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 472.95358 322.78786)
+ (pt 472.77676 322.52324)
+ (pt 472.51214 322.34642)
+ (pt 472.2 322.28433)
+ (pt 471.88786 322.34642)
+ (pt 471.62324 322.52324)
+ (pt 471.44642 322.78786)
+ (pt 471.38433 323.1)
+ (pt 471.44642 323.41214)
+ (pt 471.62324 323.67676)
+ (pt 471.88786 323.85358)
+ (pt 472.2 323.91567)
+ (pt 472.51214 323.85358)
+ (pt 472.77676 323.67676)
+ (pt 472.95358 323.41214)
+ (pt 473.01567 323.1)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 443.44778 337.02884)
+ (pt 443.24886 336.73114)
+ (pt 442.95116 336.53222)
+ (pt 442.6 336.46237)
+ (pt 442.24884 336.53222)
+ (pt 441.95114 336.73114)
+ (pt 441.75222 337.02884)
+ (pt 441.68237 337.38)
+ (pt 441.75222 337.73116)
+ (pt 441.95114 338.02886)
+ (pt 442.24884 338.22778)
+ (pt 442.6 338.29763)
+ (pt 442.95116 338.22778)
+ (pt 443.24886 338.02886)
+ (pt 443.44778 337.73116)
+ (pt 443.51763 337.38)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 449.66778 316.88884)
+ (pt 449.46886 316.59114)
+ (pt 449.17116 316.39222)
+ (pt 448.82 316.32237)
+ (pt 448.46884 316.39222)
+ (pt 448.17114 316.59114)
+ (pt 447.97222 316.88884)
+ (pt 447.90237 317.24)
+ (pt 447.97222 317.59116)
+ (pt 448.17114 317.88886)
+ (pt 448.46884 318.08778)
+ (pt 448.82 318.15763)
+ (pt 449.17116 318.08778)
+ (pt 449.46886 317.88886)
+ (pt 449.66778 317.59116)
+ (pt 449.73763 317.24)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 396.98243)
+ (pt 644.87438 396.71438)
+ (pt 645.14243 396.31321)
+ (pt 645.23656 395.84)
+ (pt 645.14243 395.36679)
+ (pt 644.87438 394.96562)
+ (pt 644.47321 394.69757)
+ (pt 644.0 394.60344)
+ (pt 643.52679 394.69757)
+ (pt 643.12562 394.96562)
+ (pt 642.85757 395.36679)
+ (pt 642.76344 395.84)
+ (pt 642.85757 396.31321)
+ (pt 643.12562 396.71438)
+ (pt 643.52679 396.98243)
+ (pt 644.0 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 451.09358 330.74786)
+ (pt 450.91676 330.48324)
+ (pt 450.65214 330.30642)
+ (pt 450.34 330.24433)
+ (pt 450.02786 330.30642)
+ (pt 449.76324 330.48324)
+ (pt 449.58642 330.74786)
+ (pt 449.56193 330.87098)
+ (pt 449.55676 330.86324)
+ (pt 449.29214 330.68642)
+ (pt 448.98 330.62433)
+ (pt 448.66786 330.68642)
+ (pt 448.40324 330.86324)
+ (pt 448.22642 331.12786)
+ (pt 448.16433 331.44)
+ (pt 448.18362 331.53699)
+ (pt 448.12 331.52433)
+ (pt 447.80786 331.58642)
+ (pt 447.54324 331.76324)
+ (pt 447.36642 332.02786)
+ (pt 447.30433 332.34)
+ (pt 447.36642 332.65214)
+ (pt 447.54324 332.91676)
+ (pt 447.80786 333.09358)
+ (pt 448.12 333.15567)
+ (pt 448.43214 333.09358)
+ (pt 448.69676 332.91676)
+ (pt 448.87358 332.65214)
+ (pt 448.93567 332.34)
+ (pt 448.91638 332.24301)
+ (pt 448.98 332.25567)
+ (pt 449.29214 332.19358)
+ (pt 449.55676 332.01676)
+ (pt 449.73358 331.75214)
+ (pt 449.75807 331.62902)
+ (pt 449.76324 331.63676)
+ (pt 450.02786 331.81358)
+ (pt 450.34 331.87567)
+ (pt 450.65214 331.81358)
+ (pt 450.91676 331.63676)
+ (pt 451.09358 331.37214)
+ (pt 451.15567 331.06)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 404.60243)
+ (pt 642.33438 404.33438)
+ (pt 642.60243 403.93321)
+ (pt 642.69656 403.46)
+ (pt 642.60243 402.98679)
+ (pt 642.33438 402.58562)
+ (pt 641.93321 402.31757)
+ (pt 641.46 402.22344)
+ (pt 640.98679 402.31757)
+ (pt 640.58562 402.58562)
+ (pt 640.31757 402.98679)
+ (pt 640.22344 403.46)
+ (pt 640.31757 403.93321)
+ (pt 640.58562 404.33438)
+ (pt 640.98679 404.60243)
+ (pt 641.46 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 268.76243)
+ (pt 644.77438 268.49438)
+ (pt 645.04243 268.09321)
+ (pt 645.13656 267.62)
+ (pt 645.04243 267.14679)
+ (pt 644.77438 266.74562)
+ (pt 644.37321 266.47757)
+ (pt 643.9 266.38344)
+ (pt 643.42679 266.47757)
+ (pt 643.02562 266.74562)
+ (pt 642.75757 267.14679)
+ (pt 642.66344 267.62)
+ (pt 642.75757 268.09321)
+ (pt 643.02562 268.49438)
+ (pt 643.42679 268.76243)
+ (pt 643.9 268.85656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 381.25241 334.6729)
+ (pt 381.32279 334.81562)
+ (pt 381.44243 334.92054)
+ (pt 381.59311 334.97169)
+ (pt 381.7519 334.96128)
+ (pt 383.68375 334.44364)
+ (pt 383.82647 334.37326)
+ (pt 383.93139 334.25362)
+ (pt 383.98254 334.10294)
+ (pt 383.97213 333.94415)
+ (pt 383.45449 332.0123)
+ (pt 383.38411 331.86958)
+ (pt 383.26447 331.76466)
+ (pt 383.11379 331.71351)
+ (pt 382.955 331.72392)
+ (pt 381.02315 332.24156)
+ (pt 380.88043 332.31194)
+ (pt 380.77551 332.43158)
+ (pt 380.72436 332.58226)
+ (pt 380.73477 332.74105)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 412.22243)
+ (pt 642.33438 411.95438)
+ (pt 642.60243 411.55321)
+ (pt 642.69656 411.08)
+ (pt 642.60243 410.60679)
+ (pt 642.33438 410.20562)
+ (pt 641.93321 409.93757)
+ (pt 641.46 409.84344)
+ (pt 640.98679 409.93757)
+ (pt 640.58562 410.20562)
+ (pt 640.31757 410.60679)
+ (pt 640.22344 411.08)
+ (pt 640.31757 411.55321)
+ (pt 640.58562 411.95438)
+ (pt 640.98679 412.22243)
+ (pt 641.46 412.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 404.60243)
+ (pt 644.87438 404.33438)
+ (pt 645.14243 403.93321)
+ (pt 645.23656 403.46)
+ (pt 645.14243 402.98679)
+ (pt 644.87438 402.58562)
+ (pt 644.47321 402.31757)
+ (pt 644.0 402.22344)
+ (pt 643.52679 402.31757)
+ (pt 643.12562 402.58562)
+ (pt 642.85757 402.98679)
+ (pt 642.76344 403.46)
+ (pt 642.85757 403.93321)
+ (pt 643.12562 404.33438)
+ (pt 643.52679 404.60243)
+ (pt 644.0 404.69656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 299.24243)
+ (pt 644.77438 298.97438)
+ (pt 645.04243 298.57321)
+ (pt 645.13656 298.1)
+ (pt 645.04243 297.62679)
+ (pt 644.77438 297.22562)
+ (pt 644.37321 296.95757)
+ (pt 643.9 296.86344)
+ (pt 643.42679 296.95757)
+ (pt 643.02562 297.22562)
+ (pt 642.75757 297.62679)
+ (pt 642.66344 298.1)
+ (pt 642.75757 298.57321)
+ (pt 643.02562 298.97438)
+ (pt 643.42679 299.24243)
+ (pt 643.9 299.33656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.37321 306.86243)
+ (pt 644.77438 306.59438)
+ (pt 645.04243 306.19321)
+ (pt 645.13656 305.72)
+ (pt 645.04243 305.24679)
+ (pt 644.77438 304.84562)
+ (pt 644.37321 304.57757)
+ (pt 643.9 304.48344)
+ (pt 643.42679 304.57757)
+ (pt 643.02562 304.84562)
+ (pt 642.75757 305.24679)
+ (pt 642.66344 305.72)
+ (pt 642.75757 306.19321)
+ (pt 643.02562 306.59438)
+ (pt 643.42679 306.86243)
+ (pt 643.9 306.95656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.03724 309.06276)
+ (pt 374.60723 308.77543)
+ (pt 374.1 308.67454)
+ (pt 373.59277 308.77543)
+ (pt 373.16276 309.06276)
+ (pt 372.87543 309.49277)
+ (pt 372.77454 310.0)
+ (pt 372.87543 310.50723)
+ (pt 373.16276 310.93724)
+ (pt 373.59277 311.22457)
+ (pt 374.1 311.32546)
+ (pt 374.60723 311.22457)
+ (pt 375.03724 310.93724)
+ (pt 375.19339 310.70355)
+ (pt 379.25494 310.70355)
+ (pt 379.31162 310.78838)
+ (pt 379.44393 310.87679)
+ (pt 379.6 310.90783)
+ (pt 380.6 310.90783)
+ (pt 380.75607 310.87679)
+ (pt 380.88838 310.78838)
+ (pt 380.97679 310.65607)
+ (pt 381.00783 310.5)
+ (pt 381.00783 309.5)
+ (pt 380.97679 309.34393)
+ (pt 380.88838 309.21162)
+ (pt 380.75607 309.12321)
+ (pt 380.6 309.09217)
+ (pt 379.6 309.09217)
+ (pt 379.44393 309.12321)
+ (pt 379.31162 309.21162)
+ (pt 379.25494 309.29645)
+ (pt 375.19339 309.29645)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 419.84243)
+ (pt 642.33438 419.57438)
+ (pt 642.60243 419.17321)
+ (pt 642.69656 418.7)
+ (pt 642.60243 418.22679)
+ (pt 642.33438 417.82562)
+ (pt 641.93321 417.55757)
+ (pt 641.46 417.46344)
+ (pt 640.98679 417.55757)
+ (pt 640.58562 417.82562)
+ (pt 640.31757 418.22679)
+ (pt 640.22344 418.7)
+ (pt 640.31757 419.17321)
+ (pt 640.58562 419.57438)
+ (pt 640.98679 419.84243)
+ (pt 641.46 419.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 591.38778 365.94884)
+ (pt 591.18886 365.65114)
+ (pt 590.89116 365.45222)
+ (pt 590.54 365.38237)
+ (pt 590.18884 365.45222)
+ (pt 589.89114 365.65114)
+ (pt 589.79644 365.79287)
+ (pt 589.68078 365.84078)
+ (pt 589.22939 366.29217)
+ (pt 588.94 366.29217)
+ (pt 588.78393 366.32321)
+ (pt 588.65162 366.41162)
+ (pt 588.56321 366.54393)
+ (pt 588.53217 366.7)
+ (pt 588.53217 367.5)
+ (pt 588.56321 367.65607)
+ (pt 588.65162 367.78838)
+ (pt 588.74 367.84744)
+ (pt 588.74 367.95256)
+ (pt 588.65162 368.01162)
+ (pt 588.56321 368.14393)
+ (pt 588.53217 368.3)
+ (pt 588.53217 369.1)
+ (pt 588.56321 369.25607)
+ (pt 588.65162 369.38838)
+ (pt 588.78393 369.47679)
+ (pt 588.94 369.50783)
+ (pt 588.96626 369.50783)
+ (pt 588.95222 369.52884)
+ (pt 588.88237 369.88)
+ (pt 588.95222 370.23116)
+ (pt 589.15114 370.52886)
+ (pt 589.44884 370.72778)
+ (pt 589.8 370.79763)
+ (pt 590.15116 370.72778)
+ (pt 590.44886 370.52886)
+ (pt 590.64778 370.23116)
+ (pt 590.71763 369.88)
+ (pt 590.64778 369.52884)
+ (pt 590.44886 369.23114)
+ (pt 590.15116 369.03222)
+ (pt 590.14783 369.03156)
+ (pt 590.14783 368.3)
+ (pt 590.11679 368.14393)
+ (pt 590.02838 368.01162)
+ (pt 589.94 367.95256)
+ (pt 589.94 367.84744)
+ (pt 590.02838 367.78838)
+ (pt 590.11679 367.65607)
+ (pt 590.14783 367.5)
+ (pt 590.14783 367.21061)
+ (pt 590.20704 367.1514)
+ (pt 590.54 367.21763)
+ (pt 590.89116 367.14778)
+ (pt 591.18886 366.94886)
+ (pt 591.38778 366.65116)
+ (pt 591.45763 366.3)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 427.46243)
+ (pt 642.33438 427.19438)
+ (pt 642.60243 426.79321)
+ (pt 642.69656 426.32)
+ (pt 642.60243 425.84679)
+ (pt 642.33438 425.44562)
+ (pt 641.93321 425.17757)
+ (pt 641.46 425.08344)
+ (pt 640.98679 425.17757)
+ (pt 640.58562 425.44562)
+ (pt 640.31757 425.84679)
+ (pt 640.22344 426.32)
+ (pt 640.31757 426.79321)
+ (pt 640.58562 427.19438)
+ (pt 640.98679 427.46243)
+ (pt 641.46 427.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 375.96509 277.96311)
+ (pt 375.16063 278.50063)
+ (pt 374.62311 279.30509)
+ (pt 374.43436 280.254)
+ (pt 374.62311 281.20291)
+ (pt 375.16063 282.00737)
+ (pt 375.96509 282.54489)
+ (pt 376.914 282.73364)
+ (pt 377.86291 282.54489)
+ (pt 378.66737 282.00737)
+ (pt 379.20489 281.20291)
+ (pt 379.39364 280.254)
+ (pt 379.20489 279.30509)
+ (pt 378.66737 278.50063)
+ (pt 377.86291 277.96311)
+ (pt 376.914 277.77436)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 396.98243)
+ (pt 642.33438 396.71438)
+ (pt 642.60243 396.31321)
+ (pt 642.69656 395.84)
+ (pt 642.60243 395.36679)
+ (pt 642.33438 394.96562)
+ (pt 641.93321 394.69757)
+ (pt 641.46 394.60344)
+ (pt 640.98679 394.69757)
+ (pt 640.58562 394.96562)
+ (pt 640.31757 395.36679)
+ (pt 640.22344 395.84)
+ (pt 640.31757 396.31321)
+ (pt 640.58562 396.71438)
+ (pt 640.98679 396.98243)
+ (pt 641.46 397.07656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 389.36243)
+ (pt 644.87438 389.09438)
+ (pt 645.14243 388.69321)
+ (pt 645.23656 388.22)
+ (pt 645.14243 387.74679)
+ (pt 644.87438 387.34562)
+ (pt 644.47321 387.07757)
+ (pt 644.0 386.98344)
+ (pt 643.52679 387.07757)
+ (pt 643.12562 387.34562)
+ (pt 642.85757 387.74679)
+ (pt 642.76344 388.22)
+ (pt 642.85757 388.69321)
+ (pt 643.12562 389.09438)
+ (pt 643.52679 389.36243)
+ (pt 644.0 389.45656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.8128 458.02063)
+ (pt 644.96887 457.98959)
+ (pt 645.10118 457.90118)
+ (pt 645.18959 457.76887)
+ (pt 645.22063 457.6128)
+ (pt 645.22063 455.9872)
+ (pt 645.18959 455.83113)
+ (pt 645.10118 455.69882)
+ (pt 644.96887 455.61041)
+ (pt 644.8128 455.57937)
+ (pt 643.1872 455.57937)
+ (pt 643.03113 455.61041)
+ (pt 642.89882 455.69882)
+ (pt 642.81041 455.83113)
+ (pt 642.77937 455.9872)
+ (pt 642.77937 457.6128)
+ (pt 642.81041 457.76887)
+ (pt 642.89882 457.90118)
+ (pt 643.03113 457.98959)
+ (pt 643.1872 458.02063)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 450.32243)
+ (pt 644.87438 450.05438)
+ (pt 645.14243 449.65321)
+ (pt 645.23656 449.18)
+ (pt 645.14243 448.70679)
+ (pt 644.87438 448.30562)
+ (pt 644.47321 448.03757)
+ (pt 644.0 447.94344)
+ (pt 643.52679 448.03757)
+ (pt 643.12562 448.30562)
+ (pt 642.85757 448.70679)
+ (pt 642.76344 449.18)
+ (pt 642.85757 449.65321)
+ (pt 643.12562 450.05438)
+ (pt 643.52679 450.32243)
+ (pt 644.0 450.41656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 435.08243)
+ (pt 644.87438 434.81438)
+ (pt 645.14243 434.41321)
+ (pt 645.23656 433.94)
+ (pt 645.14243 433.46679)
+ (pt 644.87438 433.06562)
+ (pt 644.47321 432.79757)
+ (pt 644.0 432.70344)
+ (pt 643.52679 432.79757)
+ (pt 643.12562 433.06562)
+ (pt 642.85757 433.46679)
+ (pt 642.76344 433.94)
+ (pt 642.85757 434.41321)
+ (pt 643.12562 434.81438)
+ (pt 643.52679 435.08243)
+ (pt 644.0 435.17656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 412.22243)
+ (pt 644.87438 411.95438)
+ (pt 645.14243 411.55321)
+ (pt 645.23656 411.08)
+ (pt 645.14243 410.60679)
+ (pt 644.87438 410.20562)
+ (pt 644.47321 409.93757)
+ (pt 644.0 409.84344)
+ (pt 643.52679 409.93757)
+ (pt 643.12562 410.20562)
+ (pt 642.85757 410.60679)
+ (pt 642.76344 411.08)
+ (pt 642.85757 411.55321)
+ (pt 643.12562 411.95438)
+ (pt 643.52679 412.22243)
+ (pt 644.0 412.31656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 641.93321 457.94243)
+ (pt 642.33438 457.67438)
+ (pt 642.60243 457.27321)
+ (pt 642.69656 456.8)
+ (pt 642.60243 456.32679)
+ (pt 642.33438 455.92562)
+ (pt 641.93321 455.65757)
+ (pt 641.46 455.56344)
+ (pt 640.98679 455.65757)
+ (pt 640.58562 455.92562)
+ (pt 640.31757 456.32679)
+ (pt 640.22344 456.8)
+ (pt 640.31757 457.27321)
+ (pt 640.58562 457.67438)
+ (pt 640.98679 457.94243)
+ (pt 641.46 458.03656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 427.46243)
+ (pt 644.87438 427.19438)
+ (pt 645.14243 426.79321)
+ (pt 645.23656 426.32)
+ (pt 645.14243 425.84679)
+ (pt 644.87438 425.44562)
+ (pt 644.47321 425.17757)
+ (pt 644.0 425.08344)
+ (pt 643.52679 425.17757)
+ (pt 643.12562 425.44562)
+ (pt 642.85757 425.84679)
+ (pt 642.76344 426.32)
+ (pt 642.85757 426.79321)
+ (pt 643.12562 427.19438)
+ (pt 643.52679 427.46243)
+ (pt 644.0 427.55656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 419.84243)
+ (pt 644.87438 419.57438)
+ (pt 645.14243 419.17321)
+ (pt 645.23656 418.7)
+ (pt 645.14243 418.22679)
+ (pt 644.87438 417.82562)
+ (pt 644.47321 417.55757)
+ (pt 644.0 417.46344)
+ (pt 643.52679 417.55757)
+ (pt 643.12562 417.82562)
+ (pt 642.85757 418.22679)
+ (pt 642.76344 418.7)
+ (pt 642.85757 419.17321)
+ (pt 643.12562 419.57438)
+ (pt 643.52679 419.84243)
+ (pt 644.0 419.93656)
+ )
+ )
+ (cutout
+ (cutoutOutline
+ (pt 644.47321 442.70243)
+ (pt 644.87438 442.43438)
+ (pt 645.14243 442.03321)
+ (pt 645.23656 441.56)
+ (pt 645.14243 441.08679)
+ (pt 644.87438 440.68562)
+ (pt 644.47321 440.41757)
+ (pt 644.0 440.32344)
+ (pt 643.52679 440.41757)
+ (pt 643.12562 440.68562)
+ (pt 642.85757 441.08679)
+ (pt 642.76344 441.56)
+ (pt 642.85757 442.03321)
+ (pt 643.12562 442.43438)
+ (pt 643.52679 442.70243)
+ (pt 644.0 442.79656)
+ )
+ )
+ (thermal (pt 385.49 296.01) (pt 385.88886 296.40886) (thermalWidth 0.381))
+ (thermal (pt 384.99 295.51) (pt 384.59114 295.11114) (thermalWidth 0.381))
+ (thermal (pt 385.49 295.51) (pt 385.88886 295.11114) (thermalWidth 0.381))
+ (thermal (pt 389.66 260.92) (pt 390.03676 261.29676) (thermalWidth 0.381))
+ (thermal (pt 389.26 260.52) (pt 388.88324 260.14324) (thermalWidth 0.381))
+ (thermal (pt 389.66 260.52) (pt 390.03676 260.14324) (thermalWidth 0.381))
+ (thermal (pt 407.47895 330.80597) (pt 407.81757 330.21946) (thermalWidth 0.381))
+ (thermal (pt 405.91512 331.225) (pt 405.32861 330.88638) (thermalWidth 0.381))
+ (thermal (pt 406.33415 332.78883) (pt 405.99553 333.37534) (thermalWidth 0.381))
+ (thermal (pt 407.89798 332.3698) (pt 408.48449 332.70842) (thermalWidth 0.381))
+ (thermal (pt 415.35 311.55) (pt 415.74886 311.94886) (thermalWidth 0.381))
+ (thermal (pt 414.85 311.55) (pt 414.45114 311.94886) (thermalWidth 0.381))
+ (thermal (pt 414.85 311.05) (pt 414.45114 310.65114) (thermalWidth 0.381))
+ (thermal (pt 415.35 311.05) (pt 415.74886 310.65114) (thermalWidth 0.381))
+ (thermal (pt 415.75 332.65) (pt 415.35114 333.04886) (thermalWidth 0.381))
+ (thermal (pt 415.75 332.15) (pt 415.35114 331.75114) (thermalWidth 0.381))
+ (thermal (pt 425.55 332.65) (pt 425.94886 333.04886) (thermalWidth 0.381))
+ (thermal (pt 425.05 332.65) (pt 424.65114 333.04886) (thermalWidth 0.381))
+ (thermal (pt 425.5095 331.0905) (pt 425.98838 330.61162) (thermalWidth 0.381))
+ (thermal (pt 430.55 330.95) (pt 430.94886 331.34886) (thermalWidth 0.381))
+ (thermal (pt 430.05 330.95) (pt 429.65114 331.34886) (thermalWidth 0.381))
+ (thermal (pt 430.55 330.45) (pt 430.94886 330.05114) (thermalWidth 0.381))
+ (thermal (pt 438.79 321.55) (pt 439.18886 321.94886) (thermalWidth 0.381))
+ (thermal (pt 438.29 321.55) (pt 437.89114 321.94886) (thermalWidth 0.381))
+ (thermal (pt 438.29 321.05) (pt 437.89114 320.65114) (thermalWidth 0.381))
+ (thermal (pt 438.79 321.05) (pt 439.18886 320.65114) (thermalWidth 0.381))
+ (thermal (pt 434.97 333.89) (pt 434.57114 334.28886) (thermalWidth 0.381))
+ (thermal (pt 434.97 333.39) (pt 434.57114 332.99114) (thermalWidth 0.381))
+ (thermal (pt 445.09 322.27) (pt 445.48886 322.66886) (thermalWidth 0.381))
+ (thermal (pt 444.59 322.27) (pt 444.19114 322.66886) (thermalWidth 0.381))
+ (thermal (pt 444.59 321.77) (pt 444.19114 321.37114) (thermalWidth 0.381))
+ (thermal (pt 445.09 321.77) (pt 445.48886 321.37114) (thermalWidth 0.381))
+ (thermal (pt 446.21 329.31) (pt 446.60886 328.91114) (thermalWidth 0.381))
+ (thermal (pt 442.85 337.63) (pt 443.24886 338.02886) (thermalWidth 0.381))
+ (thermal (pt 442.35 337.63) (pt 441.95114 338.02886) (thermalWidth 0.381))
+ (thermal (pt 442.35 337.13) (pt 441.95114 336.73114) (thermalWidth 0.381))
+ (thermal (pt 442.85 337.13) (pt 443.24886 336.73114) (thermalWidth 0.381))
+ (thermal (pt 448.55 345.85) (pt 448.94886 346.24886) (thermalWidth 0.381))
+ (thermal (pt 448.05 345.85) (pt 447.65114 346.24886) (thermalWidth 0.381))
+ (thermal (pt 448.05 345.35) (pt 447.65114 344.95114) (thermalWidth 0.381))
+ (thermal (pt 448.55 345.35) (pt 448.94886 344.95114) (thermalWidth 0.381))
+ (thermal (pt 443.45 343.95) (pt 443.84886 344.34886) (thermalWidth 0.381))
+ (thermal (pt 442.95 343.95) (pt 442.55114 344.34886) (thermalWidth 0.381))
+ (thermal (pt 442.95 343.45) (pt 442.55114 343.05114) (thermalWidth 0.381))
+ (thermal (pt 443.45 343.45) (pt 443.84886 343.05114) (thermalWidth 0.381))
+ (thermal (pt 451.57 311.99) (pt 451.96886 312.38886) (thermalWidth 0.381))
+ (thermal (pt 451.07 311.99) (pt 450.67114 312.38886) (thermalWidth 0.381))
+ (thermal (pt 451.07 311.49) (pt 450.67114 311.09114) (thermalWidth 0.381))
+ (thermal (pt 451.57 311.49) (pt 451.96886 311.09114) (thermalWidth 0.381))
+ (thermal (pt 451.65 325.75) (pt 452.04886 326.14886) (thermalWidth 0.381))
+ (thermal (pt 451.15 325.75) (pt 450.75114 326.14886) (thermalWidth 0.381))
+ (thermal (pt 451.15 325.25) (pt 450.79521 324.8217) (thermalWidth 0.381))
+ (thermal (pt 451.65 325.25) (pt 452.04886 324.85114) (thermalWidth 0.381))
+ (thermal (pt 450.57 321.03) (pt 450.96886 321.42886) (thermalWidth 0.381))
+ (thermal (pt 450.07 321.03) (pt 449.67114 321.42886) (thermalWidth 0.381))
+ (thermal (pt 450.07 320.53) (pt 449.67114 320.13114) (thermalWidth 0.381))
+ (thermal (pt 450.57 320.53) (pt 450.96886 320.13114) (thermalWidth 0.381))
+ (thermal (pt 457.88 329.06) (pt 458.25676 329.43676) (thermalWidth 0.381))
+ (thermal (pt 457.88 328.66) (pt 458.25676 328.28324) (thermalWidth 0.381))
+ (thermal (pt 478.53 356.21) (pt 478.92886 356.60886) (thermalWidth 0.381))
+ (thermal (pt 478.03 356.21) (pt 477.63114 356.60886) (thermalWidth 0.381))
+ (thermal (pt 478.53 355.71) (pt 478.97059 355.37359) (thermalWidth 0.381))
+ (thermal (pt 483.39 317.73) (pt 483.78886 318.12886) (thermalWidth 0.381))
+ (thermal (pt 482.89 317.73) (pt 482.49114 318.12886) (thermalWidth 0.381))
+ (thermal (pt 482.89 317.23) (pt 482.49114 316.83114) (thermalWidth 0.381))
+ (thermal (pt 483.39 317.23) (pt 483.78886 316.83114) (thermalWidth 0.381))
+ (thermal (pt 486.05 328.97) (pt 486.44886 329.36886) (thermalWidth 0.381))
+ (thermal (pt 485.55 328.97) (pt 485.15114 329.36886) (thermalWidth 0.381))
+ (thermal (pt 485.55 328.47) (pt 485.15114 328.07114) (thermalWidth 0.381))
+ (thermal (pt 486.05 328.47) (pt 486.44886 328.07114) (thermalWidth 0.381))
+ (thermal (pt 482.94 405.84) (pt 483.31676 406.21676) (thermalWidth 0.381))
+ (thermal (pt 482.54 405.84) (pt 482.16324 406.21676) (thermalWidth 0.381))
+ (thermal (pt 482.54 405.44) (pt 482.16324 405.06324) (thermalWidth 0.381))
+ (thermal (pt 482.94 405.44) (pt 483.31676 405.06324) (thermalWidth 0.381))
+ (thermal (pt 484.7 416.38) (pt 485.07676 416.75676) (thermalWidth 0.381))
+ (thermal (pt 484.7 415.98) (pt 485.07676 415.60324) (thermalWidth 0.381))
+ (thermal (pt 493.45 303.15) (pt 493.84886 303.54886) (thermalWidth 0.381))
+ (thermal (pt 492.95 303.15) (pt 492.55114 303.54886) (thermalWidth 0.381))
+ (thermal (pt 492.95 302.65) (pt 492.55114 302.25114) (thermalWidth 0.381))
+ (thermal (pt 493.45 302.65) (pt 493.84886 302.25114) (thermalWidth 0.381))
+ (thermal (pt 491.8095 302.4405) (pt 492.28838 301.96162) (thermalWidth 0.381))
+ (thermal (pt 491.8095 303.3595) (pt 492.28838 303.83838) (thermalWidth 0.381))
+ (thermal (pt 490.75 319.25) (pt 491.14886 319.64886) (thermalWidth 0.381))
+ (thermal (pt 490.25 318.75) (pt 489.82393 318.35679) (thermalWidth 0.381))
+ (thermal (pt 490.75 318.75) (pt 491.14886 318.35114) (thermalWidth 0.381))
+ (thermal (pt 494.97 315.59) (pt 495.36886 315.98886) (thermalWidth 0.381))
+ (thermal (pt 494.47 315.59) (pt 494.07114 315.98886) (thermalWidth 0.381))
+ (thermal (pt 494.47 315.09) (pt 494.07114 314.69114) (thermalWidth 0.381))
+ (thermal (pt 494.97 315.09) (pt 495.46639 314.58772) (thermalWidth 0.381))
+ (thermal (pt 493.2295 315.0995) (pt 493.70838 315.57838) (thermalWidth 0.381))
+ (thermal (pt 493.2295 314.1805) (pt 493.70838 313.70162) (thermalWidth 0.381))
+ (thermal (pt 490.0095 377.4705) (pt 490.48838 376.99162) (thermalWidth 0.381))
+ (thermal (pt 493.12 411.18) (pt 493.49676 411.55676) (thermalWidth 0.381))
+ (thermal (pt 492.72 411.18) (pt 492.34324 411.55676) (thermalWidth 0.381))
+ (thermal (pt 493.12 410.78) (pt 493.49676 410.40324) (thermalWidth 0.381))
+ (thermal (pt 497.1095 326.7895) (pt 497.58838 327.26838) (thermalWidth 0.381))
+ (thermal (pt 496.93 356.53) (pt 497.32886 356.92886) (thermalWidth 0.381))
+ (thermal (pt 496.43 356.53) (pt 496.03114 356.92886) (thermalWidth 0.381))
+ (thermal (pt 496.43 356.03) (pt 496.03114 355.63114) (thermalWidth 0.381))
+ (thermal (pt 496.93 356.03) (pt 497.32886 355.63114) (thermalWidth 0.381))
+ (thermal (pt 506.73 324.45) (pt 507.12886 324.84886) (thermalWidth 0.381))
+ (thermal (pt 506.23 324.45) (pt 505.83114 324.84886) (thermalWidth 0.381))
+ (thermal (pt 506.73 323.95) (pt 507.12886 323.55114) (thermalWidth 0.381))
+ (thermal (pt 509.73 355.29) (pt 510.12886 355.68886) (thermalWidth 0.381))
+ (thermal (pt 509.23 355.29) (pt 508.83114 355.68886) (thermalWidth 0.381))
+ (thermal (pt 509.73 354.79) (pt 510.12886 354.39114) (thermalWidth 0.381))
+ (thermal (pt 504.99 353.11) (pt 505.38886 353.50886) (thermalWidth 0.381))
+ (thermal (pt 504.49 353.11) (pt 504.09114 353.50886) (thermalWidth 0.381))
+ (thermal (pt 504.49 352.61) (pt 504.09114 352.21114) (thermalWidth 0.381))
+ (thermal (pt 504.99 352.61) (pt 505.38886 352.21114) (thermalWidth 0.381))
+ (thermal (pt 505.11 357.87) (pt 505.50886 358.26886) (thermalWidth 0.381))
+ (thermal (pt 504.61 357.87) (pt 504.21114 358.26886) (thermalWidth 0.381))
+ (thermal (pt 505.11 357.37) (pt 505.50886 356.97114) (thermalWidth 0.381))
+ (thermal (pt 505.05 356.27) (pt 505.44886 356.66886) (thermalWidth 0.381))
+ (thermal (pt 505.05 355.77) (pt 505.44886 355.37114) (thermalWidth 0.381))
+ (thermal (pt 508.27 370.75) (pt 508.66886 371.14886) (thermalWidth 0.381))
+ (thermal (pt 507.77 370.75) (pt 507.37114 371.14886) (thermalWidth 0.381))
+ (thermal (pt 507.77 370.25) (pt 507.37114 369.85114) (thermalWidth 0.381))
+ (thermal (pt 508.27 370.25) (pt 508.66886 369.85114) (thermalWidth 0.381))
+ (thermal (pt 508.65 398.97) (pt 508.99103 399.4075) (thermalWidth 0.381))
+ (thermal (pt 508.15 398.97) (pt 507.75114 399.36886) (thermalWidth 0.381))
+ (thermal (pt 508.15 398.47) (pt 507.75114 398.07114) (thermalWidth 0.381))
+ (thermal (pt 508.65 398.47) (pt 508.99103 398.0325) (thermalWidth 0.381))
+ (thermal (pt 513.975 305.975) (pt 513.63138 305.63138) (thermalWidth 0.381))
+ (thermal (pt 510.975 320.545) (pt 510.63138 320.88862) (thermalWidth 0.381))
+ (thermal (pt 510.975 320.295) (pt 510.63138 319.95138) (thermalWidth 0.381))
+ (thermal (pt 511.36 327.4) (pt 511.6804 327.81442) (thermalWidth 0.381))
+ (thermal (pt 510.96 327.4) (pt 510.58324 327.77676) (thermalWidth 0.381))
+ (thermal (pt 510.96 327.0) (pt 510.58324 326.62324) (thermalWidth 0.381))
+ (thermal (pt 510.96 325.8) (pt 510.58324 326.17676) (thermalWidth 0.381))
+ (thermal (pt 510.96 325.4) (pt 510.58324 325.02324) (thermalWidth 0.381))
+ (thermal (pt 512.79 371.45) (pt 513.18886 371.84886) (thermalWidth 0.381))
+ (thermal (pt 512.29 371.45) (pt 511.89114 371.84886) (thermalWidth 0.381))
+ (thermal (pt 512.29 370.95) (pt 511.89114 370.55114) (thermalWidth 0.381))
+ (thermal (pt 512.79 370.95) (pt 513.18886 370.55114) (thermalWidth 0.381))
+ (thermal (pt 517.45 376.85) (pt 517.84886 377.24886) (thermalWidth 0.381))
+ (thermal (pt 516.95 376.85) (pt 516.55114 377.24886) (thermalWidth 0.381))
+ (thermal (pt 516.95 376.35) (pt 516.55114 375.95114) (thermalWidth 0.381))
+ (thermal (pt 517.45 376.35) (pt 517.84886 375.95114) (thermalWidth 0.381))
+ (thermal (pt 512.63 413.01) (pt 513.02886 413.40886) (thermalWidth 0.381))
+ (thermal (pt 512.13 413.01) (pt 511.73114 413.40886) (thermalWidth 0.381))
+ (thermal (pt 512.13 412.51) (pt 511.73114 412.11114) (thermalWidth 0.381))
+ (thermal (pt 512.63 412.51) (pt 513.02886 412.11114) (thermalWidth 0.381))
+ (thermal (pt 525.45 295.91) (pt 525.84886 296.30886) (thermalWidth 0.381))
+ (thermal (pt 524.95 295.91) (pt 524.55114 296.30886) (thermalWidth 0.381))
+ (thermal (pt 524.95 295.41) (pt 524.55114 295.01114) (thermalWidth 0.381))
+ (thermal (pt 525.45 295.41) (pt 525.84886 295.01114) (thermalWidth 0.381))
+ (thermal (pt 520.99 290.91) (pt 521.38886 291.30886) (thermalWidth 0.381))
+ (thermal (pt 520.49 290.91) (pt 520.09114 291.30886) (thermalWidth 0.381))
+ (thermal (pt 520.49 290.41) (pt 520.09114 290.01114) (thermalWidth 0.381))
+ (thermal (pt 520.99 290.41) (pt 521.38886 290.01114) (thermalWidth 0.381))
+ (thermal (pt 519.8 314.9) (pt 520.17676 315.27676) (thermalWidth 0.381))
+ (thermal (pt 519.4 314.9) (pt 519.02324 315.27676) (thermalWidth 0.381))
+ (thermal (pt 519.4 314.5) (pt 519.02324 314.12324) (thermalWidth 0.381))
+ (thermal (pt 519.8 314.5) (pt 520.17676 314.12324) (thermalWidth 0.381))
+ (thermal (pt 523.175 323.325) (pt 522.83138 323.66862) (thermalWidth 0.381))
+ (thermal (pt 523.175 323.075) (pt 522.83138 322.73138) (thermalWidth 0.381))
+ (thermal (pt 520.665 328.145) (pt 521.00862 328.48862) (thermalWidth 0.381))
+ (thermal (pt 520.415 328.145) (pt 520.07138 328.48862) (thermalWidth 0.381))
+ (thermal (pt 520.415 327.895) (pt 520.07138 327.55138) (thermalWidth 0.381))
+ (thermal (pt 520.665 327.895) (pt 521.00862 327.55138) (thermalWidth 0.381))
+ (thermal (pt 525.345 349.825) (pt 525.68862 350.16862) (thermalWidth 0.381))
+ (thermal (pt 525.095 349.575) (pt 524.75138 349.23138) (thermalWidth 0.381))
+ (thermal (pt 525.345 349.575) (pt 525.68862 349.23138) (thermalWidth 0.381))
+ (thermal (pt 519.365 343.885) (pt 519.70862 344.22862) (thermalWidth 0.381))
+ (thermal (pt 519.115 343.885) (pt 518.77138 344.22862) (thermalWidth 0.381))
+ (thermal (pt 519.115 343.635) (pt 518.77138 343.29138) (thermalWidth 0.381))
+ (thermal (pt 519.365 343.635) (pt 519.70862 343.29138) (thermalWidth 0.381))
+ (thermal (pt 519.075 357.595) (pt 518.73138 357.25138) (thermalWidth 0.381))
+ (thermal (pt 519.325 357.595) (pt 519.66862 357.25138) (thermalWidth 0.381))
+ (thermal (pt 525.305 351.825) (pt 525.64862 352.16862) (thermalWidth 0.381))
+ (thermal (pt 525.305 351.575) (pt 525.64862 351.23138) (thermalWidth 0.381))
+ (thermal (pt 522.9 399.58) (pt 523.27676 399.95676) (thermalWidth 0.381))
+ (thermal (pt 522.5 399.58) (pt 522.12324 399.95676) (thermalWidth 0.381))
+ (thermal (pt 522.5 399.18) (pt 522.12324 398.80324) (thermalWidth 0.381))
+ (thermal (pt 522.9 399.18) (pt 523.27676 398.80324) (thermalWidth 0.381))
+ (thermal (pt 532.925 329.345) (pt 533.26862 329.68862) (thermalWidth 0.381))
+ (thermal (pt 532.675 329.345) (pt 532.33138 329.68862) (thermalWidth 0.381))
+ (thermal (pt 527.035 351.635) (pt 526.69138 351.29138) (thermalWidth 0.381))
+ (thermal (pt 527.285 351.635) (pt 527.62862 351.29138) (thermalWidth 0.381))
+ (thermal (pt 527.0105 352.4705) (pt 526.53162 351.99162) (thermalWidth 0.381))
+ (thermal (pt 527.4295 352.4705) (pt 527.90838 351.99162) (thermalWidth 0.381))
+ (thermal (pt 529.45 405.15) (pt 529.84886 405.54886) (thermalWidth 0.381))
+ (thermal (pt 529.45 404.65) (pt 529.84886 404.25114) (thermalWidth 0.381))
+ (thermal (pt 539.83 295.85) (pt 540.22886 296.24886) (thermalWidth 0.381))
+ (thermal (pt 539.33 295.85) (pt 538.93114 296.24886) (thermalWidth 0.381))
+ (thermal (pt 539.33 295.35) (pt 538.93114 294.95114) (thermalWidth 0.381))
+ (thermal (pt 539.83 295.35) (pt 540.22886 294.95114) (thermalWidth 0.381))
+ (thermal (pt 545.87 288.73) (pt 546.26886 289.12886) (thermalWidth 0.381))
+ (thermal (pt 545.37 288.73) (pt 544.97114 289.12886) (thermalWidth 0.381))
+ (thermal (pt 545.37 288.23) (pt 544.97114 287.83114) (thermalWidth 0.381))
+ (thermal (pt 545.87 288.23) (pt 546.26886 287.83114) (thermalWidth 0.381))
+ (thermal (pt 546.885 310.965) (pt 547.22862 311.30862) (thermalWidth 0.381))
+ (thermal (pt 546.635 310.965) (pt 546.34503 311.34447) (thermalWidth 0.381))
+ (thermal (pt 546.885 310.715) (pt 547.26447 310.42503) (thermalWidth 0.381))
+ (thermal (pt 544.7 345.2) (pt 545.07676 345.57676) (thermalWidth 0.381))
+ (thermal (pt 544.3 345.2) (pt 543.92324 345.57676) (thermalWidth 0.381))
+ (thermal (pt 544.3 344.8) (pt 543.92324 344.42324) (thermalWidth 0.381))
+ (thermal (pt 544.7 344.8) (pt 545.07676 344.42324) (thermalWidth 0.381))
+ (thermal (pt 546.865 355.105) (pt 547.20862 355.44862) (thermalWidth 0.381))
+ (thermal (pt 546.615 355.105) (pt 546.27138 355.44862) (thermalWidth 0.381))
+ (thermal (pt 546.615 354.855) (pt 546.27138 354.51138) (thermalWidth 0.381))
+ (thermal (pt 546.865 354.855) (pt 547.20862 354.51138) (thermalWidth 0.381))
+ (thermal (pt 544.4 364.9) (pt 544.77676 365.27676) (thermalWidth 0.381))
+ (thermal (pt 544.0 364.9) (pt 543.62324 365.27676) (thermalWidth 0.381))
+ (thermal (pt 544.0 364.5) (pt 543.62324 364.12324) (thermalWidth 0.381))
+ (thermal (pt 544.4 364.5) (pt 544.77676 364.12324) (thermalWidth 0.381))
+ (thermal (pt 545.61 392.05) (pt 545.21114 392.44886) (thermalWidth 0.381))
+ (thermal (pt 545.61 391.55) (pt 545.21114 391.15114) (thermalWidth 0.381))
+ (thermal (pt 555.015 349.845) (pt 554.67138 350.18862) (thermalWidth 0.381))
+ (thermal (pt 555.015 349.595) (pt 554.67138 349.25138) (thermalWidth 0.381))
+ (thermal (pt 555.265 349.595) (pt 555.60862 349.25138) (thermalWidth 0.381))
+ (thermal (pt 550.325 346.925) (pt 550.66862 347.26862) (thermalWidth 0.381))
+ (thermal (pt 550.075 346.925) (pt 549.73138 347.26862) (thermalWidth 0.381))
+ (thermal (pt 550.075 346.675) (pt 549.73138 346.33138) (thermalWidth 0.381))
+ (thermal (pt 550.325 346.675) (pt 550.66862 346.33138) (thermalWidth 0.381))
+ (thermal (pt 553.055 343.985) (pt 552.71138 344.32862) (thermalWidth 0.381))
+ (thermal (pt 553.055 343.735) (pt 552.71138 343.39138) (thermalWidth 0.381))
+ (thermal (pt 553.015 355.715) (pt 552.67138 355.37138) (thermalWidth 0.381))
+ (thermal (pt 550.385 351.965) (pt 550.72862 352.30862) (thermalWidth 0.381))
+ (thermal (pt 550.135 351.715) (pt 549.79138 351.37138) (thermalWidth 0.381))
+ (thermal (pt 554.5095 351.3905) (pt 554.98838 350.91162) (thermalWidth 0.381))
+ (thermal (pt 553.055 359.635) (pt 552.71138 359.29138) (thermalWidth 0.381))
+ (thermal (pt 553.305 359.635) (pt 553.64862 359.29138) (thermalWidth 0.381))
+ (thermal (pt 549.345 360.885) (pt 549.68862 361.22862) (thermalWidth 0.381))
+ (thermal (pt 549.095 360.635) (pt 548.76186 360.28438) (thermalWidth 0.381))
+ (thermal (pt 549.345 360.635) (pt 549.68862 360.29138) (thermalWidth 0.381))
+ (thermal (pt 561.33 276.77) (pt 560.93114 276.37114) (thermalWidth 0.381))
+ (thermal (pt 561.83 276.77) (pt 562.22886 276.37114) (thermalWidth 0.381))
+ (thermal (pt 557.05 286.45) (pt 557.44886 286.84886) (thermalWidth 0.381))
+ (thermal (pt 556.55 286.45) (pt 556.15114 286.84886) (thermalWidth 0.381))
+ (thermal (pt 556.55 285.95) (pt 556.15114 285.55114) (thermalWidth 0.381))
+ (thermal (pt 557.05 285.95) (pt 557.44886 285.55114) (thermalWidth 0.381))
+ (thermal (pt 560.31 295.15) (pt 560.70886 295.54886) (thermalWidth 0.381))
+ (thermal (pt 559.81 295.15) (pt 559.41114 295.54886) (thermalWidth 0.381))
+ (thermal (pt 559.8505 293.9695) (pt 559.32548 294.37933) (thermalWidth 0.381))
+ (thermal (pt 559.8505 293.5505) (pt 559.37162 293.07162) (thermalWidth 0.381))
+ (thermal (pt 556.73 300.25) (pt 556.33114 300.64886) (thermalWidth 0.381))
+ (thermal (pt 556.73 299.75) (pt 556.33114 299.35114) (thermalWidth 0.381))
+ (thermal (pt 557.23 299.75) (pt 557.62886 299.35114) (thermalWidth 0.381))
+ (thermal (pt 563.285 341.945) (pt 563.62862 342.28862) (thermalWidth 0.381))
+ (thermal (pt 563.035 341.945) (pt 562.69138 342.28862) (thermalWidth 0.381))
+ (thermal (pt 563.035 341.695) (pt 562.69138 341.35138) (thermalWidth 0.381))
+ (thermal (pt 563.285 341.695) (pt 563.62862 341.35138) (thermalWidth 0.381))
+ (thermal (pt 560.325 345.925) (pt 560.66862 346.26862) (thermalWidth 0.381))
+ (thermal (pt 560.075 345.925) (pt 559.73138 346.26862) (thermalWidth 0.381))
+ (thermal (pt 560.075 345.675) (pt 559.73138 345.33138) (thermalWidth 0.381))
+ (thermal (pt 559.345 349.885) (pt 559.68862 350.22862) (thermalWidth 0.381))
+ (thermal (pt 557.345 345.965) (pt 557.68862 346.30862) (thermalWidth 0.381))
+ (thermal (pt 557.345 345.715) (pt 557.68862 345.37138) (thermalWidth 0.381))
+ (thermal (pt 559.365 350.945) (pt 559.70862 351.28862) (thermalWidth 0.381))
+ (thermal (pt 559.115 350.945) (pt 558.77138 351.28862) (thermalWidth 0.381))
+ (thermal (pt 559.365 350.695) (pt 559.70862 350.35138) (thermalWidth 0.381))
+ (thermal (pt 558.115 354.655) (pt 557.77138 354.31138) (thermalWidth 0.381))
+ (thermal (pt 558.365 354.655) (pt 558.54772 354.09361) (thermalWidth 0.381))
+ (thermal (pt 559.365 351.945) (pt 559.70862 352.28862) (thermalWidth 0.381))
+ (thermal (pt 559.115 351.945) (pt 558.77138 352.28862) (thermalWidth 0.381))
+ (thermal (pt 559.115 351.695) (pt 558.77138 351.35138) (thermalWidth 0.381))
+ (thermal (pt 559.365 351.695) (pt 559.70862 351.35138) (thermalWidth 0.381))
+ (thermal (pt 559.805 363.385) (pt 560.20729 363.78729) (thermalWidth 0.381))
+ (thermal (pt 559.555 363.385) (pt 559.21138 363.72862) (thermalWidth 0.381))
+ (thermal (pt 558.285 358.865) (pt 558.62862 359.20862) (thermalWidth 0.381))
+ (thermal (pt 558.035 358.865) (pt 557.69138 359.20862) (thermalWidth 0.381))
+ (thermal (pt 558.035 358.615) (pt 557.69138 358.27138) (thermalWidth 0.381))
+ (thermal (pt 563.035 359.865) (pt 562.69138 360.20862) (thermalWidth 0.381))
+ (thermal (pt 563.035 359.615) (pt 562.69138 359.27138) (thermalWidth 0.381))
+ (thermal (pt 563.285 359.615) (pt 563.62862 359.27138) (thermalWidth 0.381))
+ (thermal (pt 561.285 358.865) (pt 561.62862 359.20862) (thermalWidth 0.381))
+ (thermal (pt 561.035 358.865) (pt 560.69138 359.20862) (thermalWidth 0.381))
+ (thermal (pt 561.035 358.615) (pt 560.69138 358.27138) (thermalWidth 0.381))
+ (thermal (pt 561.285 358.615) (pt 561.62862 358.27138) (thermalWidth 0.381))
+ (thermal (pt 569.305 340.925) (pt 569.64862 341.26862) (thermalWidth 0.381))
+ (thermal (pt 569.305 340.675) (pt 569.64862 340.33138) (thermalWidth 0.381))
+ (thermal (pt 568.0505 341.4495) (pt 567.57162 341.92838) (thermalWidth 0.381))
+ (thermal (pt 568.4695 341.4495) (pt 568.94838 341.92838) (thermalWidth 0.381))
+ (thermal (pt 564.325 348.885) (pt 564.66862 349.22862) (thermalWidth 0.381))
+ (thermal (pt 564.325 348.635) (pt 564.66862 348.29138) (thermalWidth 0.381))
+ (thermal (pt 564.115 346.905) (pt 563.77138 347.24862) (thermalWidth 0.381))
+ (thermal (pt 564.115 346.655) (pt 563.77138 346.31138) (thermalWidth 0.381))
+ (thermal (pt 564.345 343.965) (pt 564.68862 344.30862) (thermalWidth 0.381))
+ (thermal (pt 564.345 343.715) (pt 564.68862 343.37138) (thermalWidth 0.381))
+ (thermal (pt 567.055 343.635) (pt 566.71138 343.29138) (thermalWidth 0.381))
+ (thermal (pt 568.225 346.825) (pt 568.56862 347.16862) (thermalWidth 0.381))
+ (thermal (pt 567.975 346.575) (pt 567.65935 346.21269) (thermalWidth 0.381))
+ (thermal (pt 568.225 346.575) (pt 568.56862 346.23138) (thermalWidth 0.381))
+ (thermal (pt 566.115 349.635) (pt 565.77138 349.29138) (thermalWidth 0.381))
+ (thermal (pt 566.365 349.635) (pt 566.70862 349.29138) (thermalWidth 0.381))
+ (thermal (pt 567.265 351.965) (pt 567.60862 352.30862) (thermalWidth 0.381))
+ (thermal (pt 567.265 351.715) (pt 567.60862 351.37138) (thermalWidth 0.381))
+ (thermal (pt 569.325 360.905) (pt 569.66862 361.24862) (thermalWidth 0.381))
+ (thermal (pt 569.325 360.655) (pt 569.68239 360.29761) (thermalWidth 0.381))
+ (thermal (pt 570.4695 362.9695) (pt 570.94838 363.44838) (thermalWidth 0.381))
+ (thermal (pt 570.4695 362.5505) (pt 570.94838 362.07162) (thermalWidth 0.381))
+ (thermal (pt 570.05 384.85) (pt 570.44886 385.24886) (thermalWidth 0.381))
+ (thermal (pt 569.55 384.85) (pt 569.15114 385.24886) (thermalWidth 0.381))
+ (thermal (pt 572.3605 352.9905) (pt 571.88162 352.51162) (thermalWidth 0.381))
+ (thermal (pt 573.2795 352.9905) (pt 573.75838 352.51162) (thermalWidth 0.381))
+ (thermal (pt 583.63 324.15) (pt 584.02886 324.54886) (thermalWidth 0.381))
+ (thermal (pt 583.13 324.15) (pt 582.73114 324.54886) (thermalWidth 0.381))
+ (thermal (pt 583.63 323.65) (pt 584.02886 323.25114) (thermalWidth 0.381))
+ (thermal (pt 582.2105 323.0695) (pt 581.73162 323.54838) (thermalWidth 0.381))
+ (thermal (pt 582.61 332.49) (pt 582.21114 332.88886) (thermalWidth 0.381))
+ (thermal (pt 582.61 331.99) (pt 582.21114 331.59114) (thermalWidth 0.381))
+ (thermal (pt 583.11 331.99) (pt 583.50886 331.59114) (thermalWidth 0.381))
+ (thermal (pt 585.73 366.63) (pt 586.12886 367.02886) (thermalWidth 0.381))
+ (thermal (pt 585.23 366.63) (pt 584.83114 367.02886) (thermalWidth 0.381))
+ (thermal (pt 585.23 366.13) (pt 584.83114 365.73114) (thermalWidth 0.381))
+ (thermal (pt 585.73 366.13) (pt 586.12886 365.73114) (thermalWidth 0.381))
+ (thermal (pt 590.05 370.13) (pt 590.44886 370.52886) (thermalWidth 0.381))
+ (thermal (pt 589.55 370.13) (pt 589.15114 370.52886) (thermalWidth 0.381))
+ (thermal (pt 590.05 369.63) (pt 590.44886 369.23114) (thermalWidth 0.381))
+ (thermal (pt 600.67 338.31) (pt 601.07178 338.70449) (thermalWidth 0.381))
+ (thermal (pt 600.17 338.31) (pt 599.76587 338.70097) (thermalWidth 0.381))
+ (thermal (pt 600.17 337.81) (pt 599.73994 337.45783) (thermalWidth 0.381))
+ (thermal (pt 600.67 337.81) (pt 601.06886 337.41114) (thermalWidth 0.381))
+ (thermal (pt 604.05 341.15) (pt 604.44886 341.54886) (thermalWidth 0.381))
+ (thermal (pt 603.55 341.15) (pt 603.15114 341.54886) (thermalWidth 0.381))
+ (thermal (pt 603.55 340.65) (pt 603.15114 340.25114) (thermalWidth 0.381))
+ (thermal (pt 604.05 340.65) (pt 604.44886 340.25114) (thermalWidth 0.381))
+ (thermal (pt 616.77 284.41) (pt 617.16886 284.80886) (thermalWidth 0.381))
+ (thermal (pt 616.27 284.41) (pt 615.87114 284.80886) (thermalWidth 0.381))
+ (thermal (pt 616.27 283.91) (pt 615.87114 283.51114) (thermalWidth 0.381))
+ (thermal (pt 616.77 283.91) (pt 617.16886 283.51114) (thermalWidth 0.381))
+ (thermal (pt 616.71 293.21) (pt 617.10886 293.60886) (thermalWidth 0.381))
+ (thermal (pt 616.21 293.21) (pt 615.7598 293.53203) (thermalWidth 0.381))
+ (thermal (pt 616.21 292.71) (pt 615.81114 292.31114) (thermalWidth 0.381))
+ (thermal (pt 616.71 292.71) (pt 617.10886 292.31114) (thermalWidth 0.381))
+ (thermal (pt 616.71 302.27) (pt 617.10886 302.66886) (thermalWidth 0.381))
+ (thermal (pt 616.21 302.27) (pt 615.81114 302.66886) (thermalWidth 0.381))
+ (thermal (pt 616.21 301.77) (pt 615.81114 301.37114) (thermalWidth 0.381))
+ (thermal (pt 616.71 301.77) (pt 617.10886 301.37114) (thermalWidth 0.381))
+ (thermal (pt 616.73 311.85) (pt 617.12886 312.24886) (thermalWidth 0.381))
+ (thermal (pt 616.23 311.85) (pt 615.83114 312.24886) (thermalWidth 0.381))
+ (thermal (pt 616.23 311.35) (pt 615.83114 310.95114) (thermalWidth 0.381))
+ (thermal (pt 616.73 311.35) (pt 617.12886 310.95114) (thermalWidth 0.381))
+ (thermal (pt 616.87 414.53) (pt 617.26886 414.92886) (thermalWidth 0.381))
+ (thermal (pt 616.37 414.53) (pt 615.97114 414.92886) (thermalWidth 0.381))
+ (thermal (pt 616.37 414.03) (pt 615.97114 413.63114) (thermalWidth 0.381))
+ (thermal (pt 616.87 414.03) (pt 617.26886 413.63114) (thermalWidth 0.381))
+ (thermal (pt 620.39 263.53) (pt 620.78886 263.92886) (thermalWidth 0.381))
+ (thermal (pt 619.89 263.53) (pt 619.49114 263.92886) (thermalWidth 0.381))
+ (thermal (pt 624.03 298.41) (pt 624.42886 298.80886) (thermalWidth 0.381))
+ (thermal (pt 623.53 298.41) (pt 623.13114 298.80886) (thermalWidth 0.381))
+ (thermal (pt 623.53 297.91) (pt 623.13114 297.51114) (thermalWidth 0.381))
+ (thermal (pt 623.03 310.17) (pt 623.42886 310.56886) (thermalWidth 0.381))
+ (thermal (pt 622.53 310.17) (pt 622.13114 310.56886) (thermalWidth 0.381))
+ (thermal (pt 618.81 346.49) (pt 619.20886 346.88886) (thermalWidth 0.381))
+ (thermal (pt 618.31 346.49) (pt 617.91114 346.88886) (thermalWidth 0.381))
+ (thermal (pt 618.31 345.99) (pt 617.91114 345.59114) (thermalWidth 0.381))
+ (thermal (pt 618.81 345.99) (pt 619.20886 345.59114) (thermalWidth 0.381))
+ (thermal (pt 618.71 348.99) (pt 619.10886 349.38886) (thermalWidth 0.381))
+ (thermal (pt 618.21 348.99) (pt 617.81114 349.38886) (thermalWidth 0.381))
+ (thermal (pt 618.21 348.49) (pt 617.81114 348.09114) (thermalWidth 0.381))
+ (thermal (pt 618.71 348.49) (pt 619.10886 348.09114) (thermalWidth 0.381))
+ (thermal (pt 618.71 351.49) (pt 619.10886 351.88886) (thermalWidth 0.381))
+ (thermal (pt 618.21 351.49) (pt 617.81114 351.88886) (thermalWidth 0.381))
+ (thermal (pt 618.21 350.99) (pt 617.81114 350.59114) (thermalWidth 0.381))
+ (thermal (pt 618.71 350.99) (pt 619.10886 350.59114) (thermalWidth 0.381))
+ (thermal (pt 618.61 353.99) (pt 619.00886 354.38886) (thermalWidth 0.381))
+ (thermal (pt 618.11 353.99) (pt 617.71114 354.38886) (thermalWidth 0.381))
+ (thermal (pt 618.11 353.49) (pt 617.71114 353.09114) (thermalWidth 0.381))
+ (thermal (pt 618.61 353.49) (pt 619.00886 353.09114) (thermalWidth 0.381))
+ (thermal (pt 623.19 410.99) (pt 622.79114 411.38886) (thermalWidth 0.381))
+ (thermal (pt 623.19 410.49) (pt 622.79114 410.09114) (thermalWidth 0.381))
+ (thermal (pt 623.69 410.49) (pt 624.08886 410.09114) (thermalWidth 0.381))
+ (thermal (pt 619.67 405.79) (pt 620.06886 406.18886) (thermalWidth 0.381))
+ (thermal (pt 619.17 405.79) (pt 618.77114 406.18886) (thermalWidth 0.381))
+ (thermal (pt 619.17 405.29) (pt 618.77114 404.89114) (thermalWidth 0.381))
+ (thermal (pt 619.67 405.29) (pt 620.06886 404.89114) (thermalWidth 0.381))
+ (thermal (pt 619.69 424.29) (pt 619.29114 424.68886) (thermalWidth 0.381))
+ (thermal (pt 619.69 423.79) (pt 619.29114 423.39114) (thermalWidth 0.381))
+ (thermal (pt 620.19 423.79) (pt 620.58886 423.39114) (thermalWidth 0.381))
+ (thermal (pt 620.19 433.91) (pt 620.58886 434.30886) (thermalWidth 0.381))
+ (thermal (pt 619.69 433.91) (pt 619.29114 434.30886) (thermalWidth 0.381))
+ (thermal (pt 619.69 433.41) (pt 619.29114 433.01114) (thermalWidth 0.381))
+ (thermal (pt 620.19 433.41) (pt 620.58886 433.01114) (thermalWidth 0.381))
+ (thermal (pt 623.19 429.49) (pt 622.79114 429.88886) (thermalWidth 0.381))
+ (thermal (pt 623.19 428.99) (pt 622.79114 428.59114) (thermalWidth 0.381))
+ (thermal (pt 623.69 428.99) (pt 624.08886 428.59114) (thermalWidth 0.381))
+ (thermal (pt 621.64 451.46) (pt 622.01676 451.83676) (thermalWidth 0.381))
+ (thermal (pt 621.24 451.46) (pt 620.86324 451.83676) (thermalWidth 0.381))
+ (thermal (pt 621.24 451.06) (pt 620.86324 450.68324) (thermalWidth 0.381))
+ (thermal (pt 621.64 451.06) (pt 622.01676 450.68324) (thermalWidth 0.381))
+ (thermal (pt 630.25 256.57) (pt 630.64886 256.96886) (thermalWidth 0.381))
+ (thermal (pt 629.75 256.57) (pt 629.35114 256.96886) (thermalWidth 0.381))
+ (thermal (pt 629.75 256.07) (pt 629.35114 255.67114) (thermalWidth 0.381))
+ (thermal (pt 630.25 256.07) (pt 630.64886 255.67114) (thermalWidth 0.381))
+ (thermal (pt 630.21 264.11) (pt 630.60886 264.50886) (thermalWidth 0.381))
+ (thermal (pt 629.71 264.11) (pt 629.31114 264.50886) (thermalWidth 0.381))
+ (thermal (pt 629.71 263.61) (pt 629.31114 263.21114) (thermalWidth 0.381))
+ (thermal (pt 630.21 263.61) (pt 630.60886 263.21114) (thermalWidth 0.381))
+ (thermal (pt 625.76 267.5) (pt 626.13676 267.87676) (thermalWidth 0.381))
+ (thermal (pt 625.36 267.5) (pt 624.98293 267.87629) (thermalWidth 0.381))
+ (thermal (pt 625.36 267.1) (pt 624.98324 266.72324) (thermalWidth 0.381))
+ (thermal (pt 625.76 267.1) (pt 626.13676 266.72324) (thermalWidth 0.381))
+ (thermal (pt 626.11 322.93) (pt 626.50886 323.32886) (thermalWidth 0.381))
+ (thermal (pt 625.61 322.93) (pt 625.21114 323.32886) (thermalWidth 0.381))
+ (thermal (pt 637.05 346.25) (pt 637.44886 346.64886) (thermalWidth 0.381))
+ (thermal (pt 636.55 346.25) (pt 636.20138 346.68243) (thermalWidth 0.381))
+ (thermal (pt 636.55 345.75) (pt 636.20138 345.31757) (thermalWidth 0.381))
+ (thermal (pt 637.05 345.75) (pt 637.44886 345.35114) (thermalWidth 0.381))
+ (thermal (pt 639.43 348.83) (pt 639.82886 349.22886) (thermalWidth 0.381))
+ (thermal (pt 638.93 348.83) (pt 638.53114 349.22886) (thermalWidth 0.381))
+ (thermal (pt 638.93 348.33) (pt 638.53114 347.93114) (thermalWidth 0.381))
+ (thermal (pt 639.43 348.33) (pt 639.82886 347.93114) (thermalWidth 0.381))
+ (thermal (pt 382.05 274.13) (pt 382.44886 274.52886) (thermalWidth 0.381))
+ (thermal (pt 381.55 274.13) (pt 381.15114 274.52886) (thermalWidth 0.381))
+ (thermal (pt 381.55 273.63) (pt 381.15114 273.23114) (thermalWidth 0.381))
+ (thermal (pt 382.05 273.63) (pt 382.44886 273.23114) (thermalWidth 0.381))
+ (thermal (pt 385.45 297.81) (pt 385.84886 298.20886) (thermalWidth 0.381))
+ (thermal (pt 384.95 297.81) (pt 384.55114 298.20886) (thermalWidth 0.381))
+ (thermal (pt 385.45 297.31) (pt 385.84886 296.91114) (thermalWidth 0.381))
+ (thermal (pt 383.9895 297.7695) (pt 384.46838 298.24838) (thermalWidth 0.381))
+ (thermal (pt 407.91798 325.5702) (pt 408.50449 325.23158) (thermalWidth 0.381))
+ (thermal (pt 406.35415 325.15117) (pt 406.01553 324.56466) (thermalWidth 0.381))
+ (thermal (pt 405.93512 326.715) (pt 405.34861 327.05362) (thermalWidth 0.381))
+ (thermal (pt 407.49895 327.13403) (pt 407.83757 327.72054) (thermalWidth 0.381))
+ (thermal (pt 420.45 327.45) (pt 420.01353 327.79258) (thermalWidth 0.381))
+ (thermal (pt 420.45 326.95) (pt 420.05114 326.55114) (thermalWidth 0.381))
+ (thermal (pt 420.95 326.95) (pt 421.29217 326.51326) (thermalWidth 0.381))
+ (thermal (pt 421.8905 325.9405) (pt 421.41162 325.46162) (thermalWidth 0.381))
+ (thermal (pt 435.6305 298.6595) (pt 435.18705 299.16205) (thermalWidth 0.381))
+ (thermal (pt 435.6305 297.7405) (pt 435.15162 297.26162) (thermalWidth 0.381))
+ (thermal (pt 436.2305 333.2005) (pt 435.75162 332.72162) (thermalWidth 0.381))
+ (thermal (pt 436.2305 334.1195) (pt 435.75162 334.59838) (thermalWidth 0.381))
+ (thermal (pt 453.10395 341.77124) (pt 453.10395 341.09401) (thermalWidth 0.381))
+ (thermal (pt 451.95914 342.91605) (pt 451.28191 342.91605) (thermalWidth 0.381))
+ (thermal (pt 453.10395 344.06086) (pt 453.10395 344.73809) (thermalWidth 0.381))
+ (thermal (pt 454.24876 342.91605) (pt 454.92599 342.91605) (thermalWidth 0.381))
+ (thermal (pt 480.9505 292.6595) (pt 480.48844 293.14962) (thermalWidth 0.381))
+ (thermal (pt 480.9505 291.7405) (pt 480.47162 291.26162) (thermalWidth 0.381))
+ (thermal (pt 483.5695 415.9905) (pt 484.04838 415.51162) (thermalWidth 0.381))
+ (thermal (pt 483.5695 416.4095) (pt 484.04838 416.88838) (thermalWidth 0.381))
+ (thermal (pt 491.77 312.49) (pt 492.16886 312.88886) (thermalWidth 0.381))
+ (thermal (pt 491.27 311.99) (pt 490.87114 311.59114) (thermalWidth 0.381))
+ (thermal (pt 491.77 311.99) (pt 492.16886 311.59114) (thermalWidth 0.381))
+ (thermal (pt 489.9895 376.0095) (pt 490.46838 376.48838) (thermalWidth 0.381))
+ (thermal (pt 491.9295 409.9105) (pt 492.40838 409.43162) (thermalWidth 0.381))
+ (thermal (pt 496.79 358.39) (pt 497.18886 358.78886) (thermalWidth 0.381))
+ (thermal (pt 496.29 358.39) (pt 495.90783 358.80001) (thermalWidth 0.381))
+ (thermal (pt 496.29 357.89) (pt 495.89114 357.49114) (thermalWidth 0.381))
+ (thermal (pt 496.79 357.89) (pt 497.18886 357.49114) (thermalWidth 0.381))
+ (thermal (pt 517.71 388.73) (pt 518.10886 389.12886) (thermalWidth 0.381))
+ (thermal (pt 517.21 388.73) (pt 516.81114 389.12886) (thermalWidth 0.381))
+ (thermal (pt 517.21 388.23) (pt 516.81114 387.83114) (thermalWidth 0.381))
+ (thermal (pt 517.71 388.23) (pt 518.10886 387.83114) (thermalWidth 0.381))
+ (thermal (pt 514.93 412.03) (pt 515.32886 412.42886) (thermalWidth 0.381))
+ (thermal (pt 514.43 412.03) (pt 514.03114 412.42886) (thermalWidth 0.381))
+ (thermal (pt 514.43 411.53) (pt 514.03114 411.13114) (thermalWidth 0.381))
+ (thermal (pt 514.93 411.53) (pt 515.32886 411.13114) (thermalWidth 0.381))
+ (thermal (pt 522.1 312.3) (pt 522.47676 312.67676) (thermalWidth 0.381))
+ (thermal (pt 521.7 312.3) (pt 521.32324 312.67676) (thermalWidth 0.381))
+ (thermal (pt 521.7 311.9) (pt 521.32324 311.52324) (thermalWidth 0.381))
+ (thermal (pt 522.1 311.9) (pt 522.47676 311.52324) (thermalWidth 0.381))
+ (thermal (pt 524.3695 352.4295) (pt 524.84838 352.90838) (thermalWidth 0.381))
+ (thermal (pt 523.9505 352.4295) (pt 523.47162 352.90838) (thermalWidth 0.381))
+ (thermal (pt 525.37 388.59) (pt 525.76886 388.98886) (thermalWidth 0.381))
+ (thermal (pt 524.87 388.59) (pt 524.47114 388.98886) (thermalWidth 0.381))
+ (thermal (pt 524.87 388.09) (pt 524.47114 387.69114) (thermalWidth 0.381))
+ (thermal (pt 525.37 388.09) (pt 525.76886 387.69114) (thermalWidth 0.381))
+ (thermal (pt 521.49 388.69) (pt 521.88886 389.08886) (thermalWidth 0.381))
+ (thermal (pt 520.99 388.69) (pt 520.59114 389.08886) (thermalWidth 0.381))
+ (thermal (pt 520.99 388.19) (pt 520.59114 387.79114) (thermalWidth 0.381))
+ (thermal (pt 521.49 388.19) (pt 521.88886 387.79114) (thermalWidth 0.381))
+ (thermal (pt 527.305 350.865) (pt 527.64862 351.20862) (thermalWidth 0.381))
+ (thermal (pt 527.055 350.865) (pt 526.71138 351.20862) (thermalWidth 0.381))
+ (thermal (pt 529.45 388.63) (pt 529.84886 389.02886) (thermalWidth 0.381))
+ (thermal (pt 528.95 388.63) (pt 528.55114 389.02886) (thermalWidth 0.381))
+ (thermal (pt 528.95 388.13) (pt 528.55114 387.73114) (thermalWidth 0.381))
+ (thermal (pt 529.45 388.13) (pt 529.84886 387.73114) (thermalWidth 0.381))
+ (thermal (pt 528.95 411.25) (pt 528.55114 411.64886) (thermalWidth 0.381))
+ (thermal (pt 528.95 410.75) (pt 528.55114 410.35114) (thermalWidth 0.381))
+ (thermal (pt 529.45 410.75) (pt 529.84886 410.35114) (thermalWidth 0.381))
+ (thermal (pt 529.45 411.25) (pt 529.84886 411.64886) (thermalWidth 0.381))
+ (thermal (pt 535.25 282.05) (pt 535.64886 282.44886) (thermalWidth 0.381))
+ (thermal (pt 534.75 282.05) (pt 534.35114 282.44886) (thermalWidth 0.381))
+ (thermal (pt 534.75 281.55) (pt 534.35114 281.15114) (thermalWidth 0.381))
+ (thermal (pt 535.25 281.55) (pt 535.64886 281.15114) (thermalWidth 0.381))
+ (thermal (pt 545.8405 356.1905) (pt 545.36162 355.71162) (thermalWidth 0.381))
+ (thermal (pt 546.7595 356.1905) (pt 547.23838 355.71162) (thermalWidth 0.381))
+ (thermal (pt 551.075 350.655) (pt 550.78943 350.27259) (thermalWidth 0.381))
+ (thermal (pt 551.325 350.655) (pt 551.66862 350.31138) (thermalWidth 0.381))
+ (thermal (pt 553.9905 355.0905) (pt 553.51162 354.61162) (thermalWidth 0.381))
+ (thermal (pt 554.4095 355.0905) (pt 554.88838 354.61162) (thermalWidth 0.381))
+ (thermal (pt 561.285 342.925) (pt 561.62862 343.26862) (thermalWidth 0.381))
+ (thermal (pt 561.035 342.925) (pt 560.69138 343.26862) (thermalWidth 0.381))
+ (thermal (pt 561.035 342.675) (pt 560.69138 342.33138) (thermalWidth 0.381))
+ (thermal (pt 561.285 342.675) (pt 561.62862 342.33138) (thermalWidth 0.381))
+ (thermal (pt 558.035 342.965) (pt 557.69138 343.30862) (thermalWidth 0.381))
+ (thermal (pt 558.035 342.715) (pt 557.69138 342.37138) (thermalWidth 0.381))
+ (thermal (pt 558.285 342.715) (pt 558.62862 342.37138) (thermalWidth 0.381))
+ (thermal (pt 558.0705 349.8895) (pt 557.59162 350.36838) (thermalWidth 0.381))
+ (thermal (pt 561.1305 350.8495) (pt 560.65162 351.32838) (thermalWidth 0.381))
+ (thermal (pt 561.1305 350.4305) (pt 560.65162 349.95162) (thermalWidth 0.381))
+ (thermal (pt 568.4295 343.2505) (pt 568.90838 342.77162) (thermalWidth 0.381))
+ (thermal (pt 584.0895 332.9105) (pt 584.56838 332.43162) (thermalWidth 0.381))
+ (thermal (pt 590.69 358.21) (pt 591.08886 358.60886) (thermalWidth 0.381))
+ (thermal (pt 590.19 358.21) (pt 589.79114 358.60886) (thermalWidth 0.381))
+ (thermal (pt 590.69 357.71) (pt 591.08886 357.31114) (thermalWidth 0.381))
+ (thermal (pt 600.2895 335.9405) (pt 600.76838 335.46162) (thermalWidth 0.381))
+ (thermal (pt 623.39 289.61) (pt 622.99114 290.00886) (thermalWidth 0.381))
+ (thermal (pt 623.39 289.11) (pt 622.99114 288.71114) (thermalWidth 0.381))
+ (thermal (pt 623.89 289.11) (pt 624.28886 288.71114) (thermalWidth 0.381))
+ (thermal (pt 623.93 419.79) (pt 624.38016 420.11209) (thermalWidth 0.381))
+ (thermal (pt 623.43 419.79) (pt 623.03114 420.18886) (thermalWidth 0.381))
+ (thermal (pt 623.43 419.29) (pt 623.03114 418.89114) (thermalWidth 0.381))
+ (thermal (pt 623.93 419.29) (pt 624.32886 418.89114) (thermalWidth 0.381))
+ (thermal (pt 619.93 442.65) (pt 620.32886 443.04886) (thermalWidth 0.381))
+ (thermal (pt 619.43 442.65) (pt 619.03114 443.04886) (thermalWidth 0.381))
+ (thermal (pt 619.43 442.15) (pt 619.03114 441.75114) (thermalWidth 0.381))
+ (thermal (pt 619.93 442.15) (pt 620.32886 441.75114) (thermalWidth 0.381))
+ (thermal (pt 621.8705 441.6895) (pt 621.39162 442.16838) (thermalWidth 0.381))
+ (thermal (pt 621.8705 441.2705) (pt 621.39162 440.79162) (thermalWidth 0.381))
+ (thermal (pt 561.3705 277.9705) (pt 560.85216 277.55067) (thermalWidth 0.381))
+ (thermal (pt 561.7895 277.9705) (pt 562.30784 277.55067) (thermalWidth 0.381))
+ (thermal (pt 599.9755 340.9145) (pt 599.49662 341.39338) (thermalWidth 0.381))
+ (thermal (pt 600.8445 340.9145) (pt 601.32338 341.39338) (thermalWidth 0.381))
+ (thermal (pt 600.8445 339.2955) (pt 601.32338 338.81662) (thermalWidth 0.381))
+ (thermal (pt 599.9755 339.2955) (pt 599.49662 338.81662) (thermalWidth 0.381))
+ (thermal (pt 375.75 240.95) (pt 376.59078 241.79078) (thermalWidth 0.381))
+ (thermal (pt 373.25 240.95) (pt 372.40922 241.79078) (thermalWidth 0.381))
+ (thermal (pt 373.25 238.45) (pt 372.40922 237.60922) (thermalWidth 0.381))
+ (thermal (pt 375.75 238.45) (pt 376.59078 237.60922) (thermalWidth 0.381))
+ (thermal (pt 381.3405 275.2305) (pt 380.86162 274.75162) (thermalWidth 0.381))
+ (thermal (pt 382.2595 275.2305) (pt 382.73838 274.75162) (thermalWidth 0.381))
+ (thermal (pt 384.0495 295.5305) (pt 384.52838 295.05162) (thermalWidth 0.381))
+ (thermal (pt 381.8305 310.8095) (pt 381.35162 311.28838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 310.8095) (pt 383.92838 311.28838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 309.1905) (pt 383.92838 308.71162) (thermalWidth 0.381))
+ (thermal (pt 381.8305 309.1905) (pt 381.35162 308.71162) (thermalWidth 0.381))
+ (thermal (pt 381.86202 323.2298) (pt 381.27551 323.56842) (thermalWidth 0.381))
+ (thermal (pt 383.42585 323.64883) (pt 383.76447 324.23534) (thermalWidth 0.381))
+ (thermal (pt 383.84488 322.085) (pt 384.43139 321.74638) (thermalWidth 0.381))
+ (thermal (pt 382.28105 321.66597) (pt 381.94243 321.07946) (thermalWidth 0.381))
+ (thermal (pt 381.78105 334.33403) (pt 381.44243 334.92054) (thermalWidth 0.381))
+ (thermal (pt 383.34488 333.915) (pt 383.93139 334.25362) (thermalWidth 0.381))
+ (thermal (pt 382.92585 332.35117) (pt 383.26447 331.76466) (thermalWidth 0.381))
+ (thermal (pt 381.36202 332.7702) (pt 380.77551 332.43158) (thermalWidth 0.381))
+ (thermal (pt 381.8305 346.7095) (pt 381.35162 347.18838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 346.7095) (pt 383.92838 347.18838) (thermalWidth 0.381))
+ (thermal (pt 383.4495 345.0905) (pt 383.92838 344.61162) (thermalWidth 0.381))
+ (thermal (pt 381.8305 345.0905) (pt 381.35162 344.61162) (thermalWidth 0.381))
+ (thermal (pt 381.6705 369.6695) (pt 381.19162 370.14838) (thermalWidth 0.381))
+ (thermal (pt 383.2895 369.6695) (pt 383.76838 370.14838) (thermalWidth 0.381))
+ (thermal (pt 383.2895 368.0505) (pt 383.76838 367.57162) (thermalWidth 0.381))
+ (thermal (pt 381.6705 368.0505) (pt 381.19162 367.57162) (thermalWidth 0.381))
+ (thermal (pt 381.8905 423.6695) (pt 381.41162 424.14838) (thermalWidth 0.381))
+ (thermal (pt 383.5095 423.6695) (pt 383.98838 424.14838) (thermalWidth 0.381))
+ (thermal (pt 383.5095 422.0505) (pt 383.98838 421.57162) (thermalWidth 0.381))
+ (thermal (pt 381.8905 422.0505) (pt 381.41162 421.57162) (thermalWidth 0.381))
+ (thermal (pt 375.75 463.2) (pt 376.59078 464.04078) (thermalWidth 0.381))
+ (thermal (pt 373.25 463.2) (pt 372.40922 464.04078) (thermalWidth 0.381))
+ (thermal (pt 373.25 460.7) (pt 372.40922 459.85922) (thermalWidth 0.381))
+ (thermal (pt 375.75 460.7) (pt 376.59078 459.85922) (thermalWidth 0.381))
+ (thermal (pt 429.0095 331.4095) (pt 429.48838 331.88838) (thermalWidth 0.381))
+ (thermal (pt 416.9905 332.9595) (pt 416.51162 333.43838) (thermalWidth 0.381))
+ (thermal (pt 416.9905 332.0405) (pt 416.51162 331.56162) (thermalWidth 0.381))
+ (thermal (pt 434.65 298.97) (pt 435.04886 299.36886) (thermalWidth 0.381))
+ (thermal (pt 434.15 298.97) (pt 433.75114 299.36886) (thermalWidth 0.381))
+ (thermal (pt 434.15 298.47) (pt 433.75114 298.07114) (thermalWidth 0.381))
+ (thermal (pt 434.65 298.47) (pt 435.03217 297.55) (thermalWidth 0.381))
+ (thermal (pt 450.2695 325.6495) (pt 450.74083 326.13343) (thermalWidth 0.381))
+ (thermal (pt 450.2695 325.2305) (pt 450.74838 324.75162) (thermalWidth 0.381))
+ (thermal (pt 446.6095 331.3505) (pt 447.08838 330.87162) (thermalWidth 0.381))
+ (thermal (pt 480.05 292.81) (pt 480.44886 293.20886) (thermalWidth 0.381))
+ (thermal (pt 479.55 292.81) (pt 479.15114 293.20886) (thermalWidth 0.381))
+ (thermal (pt 479.55 292.31) (pt 479.15114 291.91114) (thermalWidth 0.381))
+ (thermal (pt 487.25 322.57) (pt 486.85114 322.96886) (thermalWidth 0.381))
+ (thermal (pt 487.25 322.07) (pt 486.85114 321.67114) (thermalWidth 0.381))
+ (thermal (pt 487.75 322.07) (pt 488.14886 321.67114) (thermalWidth 0.381))
+ (thermal (pt 472.4 323.3) (pt 472.77676 323.67676) (thermalWidth 0.381))
+ (thermal (pt 472.0 323.3) (pt 471.62324 323.67676) (thermalWidth 0.381))
+ (thermal (pt 472.0 322.9) (pt 471.62324 322.52324) (thermalWidth 0.381))
+ (thermal (pt 472.4 322.9) (pt 472.77676 322.52324) (thermalWidth 0.381))
+ (thermal (pt 487.5705 323.7295) (pt 487.09162 324.20838) (thermalWidth 0.381))
+ (thermal (pt 478.4995 354.8895) (pt 478.97838 355.36838) (thermalWidth 0.381))
+ (thermal (pt 477.5805 354.8895) (pt 477.10162 355.36838) (thermalWidth 0.381))
+ (thermal (pt 479.94 409.62) (pt 479.56324 409.24324) (thermalWidth 0.381))
+ (thermal (pt 480.34 409.62) (pt 480.71676 409.24324) (thermalWidth 0.381))
+ (thermal (pt 477.4495 415.4105) (pt 477.92838 414.93162) (thermalWidth 0.381))
+ (thermal (pt 475.8305 415.4105) (pt 475.35162 414.93162) (thermalWidth 0.381))
+ (thermal (pt 475.8305 417.0295) (pt 475.35162 417.50838) (thermalWidth 0.381))
+ (thermal (pt 477.4495 417.0295) (pt 477.92838 417.50838) (thermalWidth 0.381))
+ (thermal (pt 511.75 240.95) (pt 512.59078 241.79078) (thermalWidth 0.381))
+ (thermal (pt 509.25 240.95) (pt 508.40922 241.79078) (thermalWidth 0.381))
+ (thermal (pt 509.25 238.45) (pt 508.40922 237.60922) (thermalWidth 0.381))
+ (thermal (pt 511.75 238.45) (pt 512.59078 237.60922) (thermalWidth 0.381))
+ (thermal (pt 510.68 316.38) (pt 510.30324 316.75676) (thermalWidth 0.381))
+ (thermal (pt 510.68 315.98) (pt 510.30324 315.60324) (thermalWidth 0.381))
+ (thermal (pt 511.08 315.98) (pt 511.38985 315.55853) (thermalWidth 0.381))
+ (thermal (pt 502.75 316.15) (pt 503.14886 316.54886) (thermalWidth 0.381))
+ (thermal (pt 502.25 316.15) (pt 501.85114 316.54886) (thermalWidth 0.381))
+ (thermal (pt 502.25 315.65) (pt 501.85114 315.25114) (thermalWidth 0.381))
+ (thermal (pt 502.75 315.65) (pt 503.14886 315.25114) (thermalWidth 0.381))
+ (thermal (pt 510.9 318.58) (pt 511.27676 318.95676) (thermalWidth 0.381))
+ (thermal (pt 510.5 318.58) (pt 510.12324 318.95676) (thermalWidth 0.381))
+ (thermal (pt 510.5 318.18) (pt 510.12324 317.80324) (thermalWidth 0.381))
+ (thermal (pt 510.9 318.18) (pt 511.27676 317.80324) (thermalWidth 0.381))
+ (thermal (pt 505.4695 323.5305) (pt 505.94838 323.05162) (thermalWidth 0.381))
+ (thermal (pt 504.6095 354.2405) (pt 505.08838 353.76162) (thermalWidth 0.381))
+ (thermal (pt 508.1105 355.0695) (pt 507.63162 355.54838) (thermalWidth 0.381))
+ (thermal (pt 509.4705 398.9295) (pt 508.99162 399.40838) (thermalWidth 0.381))
+ (thermal (pt 509.4705 398.5105) (pt 508.99162 398.03162) (thermalWidth 0.381))
+ (thermal (pt 503.47 404.67) (pt 503.86886 405.06886) (thermalWidth 0.381))
+ (thermal (pt 502.97 404.67) (pt 502.57114 405.06886) (thermalWidth 0.381))
+ (thermal (pt 502.97 404.17) (pt 502.57114 403.77114) (thermalWidth 0.381))
+ (thermal (pt 503.47 404.17) (pt 503.86886 403.77114) (thermalWidth 0.381))
+ (thermal (pt 511.75 463.2) (pt 512.59078 464.04078) (thermalWidth 0.381))
+ (thermal (pt 509.25 463.2) (pt 508.40922 464.04078) (thermalWidth 0.381))
+ (thermal (pt 509.25 460.7) (pt 508.40922 459.85922) (thermalWidth 0.381))
+ (thermal (pt 511.75 460.7) (pt 512.59078 459.85922) (thermalWidth 0.381))
+ (thermal (pt 541.75 263.45) (pt 542.14886 263.84886) (thermalWidth 0.381))
+ (thermal (pt 541.25 263.45) (pt 540.85114 263.84886) (thermalWidth 0.381))
+ (thermal (pt 541.25 262.95) (pt 540.85114 262.55114) (thermalWidth 0.381))
+ (thermal (pt 541.75 262.95) (pt 542.14886 262.55114) (thermalWidth 0.381))
+ (thermal (pt 548.6295 339.5905) (pt 549.10838 339.11162) (thermalWidth 0.381))
+ (thermal (pt 533.265 343.885) (pt 533.59217 344.23961) (thermalWidth 0.381))
+ (thermal (pt 533.015 343.885) (pt 532.67138 344.22862) (thermalWidth 0.381))
+ (thermal (pt 533.015 343.635) (pt 532.67138 343.29138) (thermalWidth 0.381))
+ (thermal (pt 533.265 343.635) (pt 533.60862 343.29138) (thermalWidth 0.381))
+ (thermal (pt 533.325 357.845) (pt 533.66862 358.18862) (thermalWidth 0.381))
+ (thermal (pt 533.075 357.845) (pt 532.73138 358.18862) (thermalWidth 0.381))
+ (thermal (pt 533.075 357.595) (pt 532.73138 357.25138) (thermalWidth 0.381))
+ (thermal (pt 533.325 357.595) (pt 533.65217 356.72) (thermalWidth 0.381))
+ (thermal (pt 547.0305 361.7305) (pt 546.55162 361.25162) (thermalWidth 0.381))
+ (thermal (pt 547.0305 362.1495) (pt 546.55162 362.62838) (thermalWidth 0.381))
+ (thermal (pt 529.5095 406.2405) (pt 529.98838 405.76162) (thermalWidth 0.381))
+ (thermal (pt 529.5095 407.1595) (pt 529.98838 407.63838) (thermalWidth 0.381))
+ (thermal (pt 564.59 268.13) (pt 564.98886 268.52886) (thermalWidth 0.381))
+ (thermal (pt 564.09 268.13) (pt 563.69114 268.52886) (thermalWidth 0.381))
+ (thermal (pt 564.09 267.63) (pt 563.69114 267.23114) (thermalWidth 0.381))
+ (thermal (pt 556.265 341.985) (pt 556.62893 342.29822) (thermalWidth 0.381))
+ (thermal (pt 556.265 341.735) (pt 556.60862 341.39138) (thermalWidth 0.381))
+ (thermal (pt 557.2895 339.7805) (pt 557.76838 339.30162) (thermalWidth 0.381))
+ (thermal (pt 557.2895 340.6995) (pt 557.76838 341.17838) (thermalWidth 0.381))
+ (thermal (pt 571.785 351.345) (pt 572.12862 351.68862) (thermalWidth 0.381))
+ (thermal (pt 571.535 351.345) (pt 571.19138 351.68862) (thermalWidth 0.381))
+ (thermal (pt 571.785 351.095) (pt 572.12862 350.75138) (thermalWidth 0.381))
+ (thermal (pt 571.365 362.885) (pt 571.70862 363.22862) (thermalWidth 0.381))
+ (thermal (pt 571.365 362.635) (pt 571.70862 362.29138) (thermalWidth 0.381))
+ (thermal (pt 556.035 359.615) (pt 555.69138 359.27138) (thermalWidth 0.381))
+ (thermal (pt 556.285 359.615) (pt 556.62862 359.27138) (thermalWidth 0.381))
+ (thermal (pt 561.3195 363.1895) (pt 561.81246 363.64731) (thermalWidth 0.381))
+ (thermal (pt 579.01 379.77) (pt 579.40886 380.16886) (thermalWidth 0.381))
+ (thermal (pt 578.51 379.77) (pt 578.11114 380.16886) (thermalWidth 0.381))
+ (thermal (pt 578.51 379.27) (pt 578.11114 378.87114) (thermalWidth 0.381))
+ (thermal (pt 579.01 379.27) (pt 579.40886 378.87114) (thermalWidth 0.381))
+ (thermal (pt 589.1305 368.9095) (pt 588.65162 369.38838) (thermalWidth 0.381))
+ (thermal (pt 620.3695 262.3695) (pt 620.8912 262.7843) (thermalWidth 0.381))
+ (thermal (pt 617.1 268.5) (pt 617.45116 268.89386) (thermalWidth 0.381))
+ (thermal (pt 616.7 268.5) (pt 616.32324 268.87676) (thermalWidth 0.381))
+ (thermal (pt 616.7 268.1) (pt 616.32324 267.72324) (thermalWidth 0.381))
+ (thermal (pt 617.1 268.1) (pt 617.47676 267.72324) (thermalWidth 0.381))
+ (thermal (pt 617.28 278.1) (pt 617.65676 278.47676) (thermalWidth 0.381))
+ (thermal (pt 616.88 278.1) (pt 616.50324 278.47676) (thermalWidth 0.381))
+ (thermal (pt 622.5905 308.6905) (pt 622.11162 308.21162) (thermalWidth 0.381))
+ (thermal (pt 635.6095 345.5405) (pt 636.08838 345.06162) (thermalWidth 0.381))
+ (thermal (pt 635.6095 346.4595) (pt 636.08838 346.93838) (thermalWidth 0.381))
+ (thermal (pt 623.6705 421.1095) (pt 623.19162 421.58838) (thermalWidth 0.381))
+ (thermal (pt 623.6705 420.6905) (pt 623.1526 420.27002) (thermalWidth 0.381))
+ (thermal (pt 623.6905 430.6295) (pt 623.21162 431.10838) (thermalWidth 0.381))
+ (thermal (pt 622.6305 450.9505) (pt 622.15162 450.47162) (thermalWidth 0.381))
+ (thermal (pt 622.6305 451.3695) (pt 622.15162 451.84838) (thermalWidth 0.381))
+ (thermal (pt 387.665 260.575) (pt 387.2464 260.1564) (thermalWidth 0.381))
+ (thermal (pt 381.108 256.752) (pt 381.62088 256.23912) (thermalWidth 0.381))
+ (thermal (pt 380.092 257.768) (pt 379.57912 258.28088) (thermalWidth 0.381))
+ (thermal (pt 380.092 256.752) (pt 379.57912 256.23912) (thermalWidth 0.381))
+ (thermal (pt 381.108 267.928) (pt 381.62088 268.44088) (thermalWidth 0.381))
+ (thermal (pt 380.092 267.928) (pt 379.57912 268.44088) (thermalWidth 0.381))
+ (thermal (pt 380.092 266.912) (pt 379.57912 266.39912) (thermalWidth 0.381))
+ (thermal (pt 420.5905 328.5095) (pt 420.11162 328.98838) (thermalWidth 0.381))
+ (thermal (pt 409.74876 320.24395) (pt 410.42599 320.24395) (thermalWidth 0.381))
+ (thermal (pt 408.60395 319.09914) (pt 408.60395 318.42191) (thermalWidth 0.381))
+ (thermal (pt 407.45914 320.24395) (pt 406.78191 320.24395) (thermalWidth 0.381))
+ (thermal (pt 408.60395 321.38876) (pt 408.60395 322.06599) (thermalWidth 0.381))
+ (thermal (pt 456.8695 329.0495) (pt 457.29437 329.56447) (thermalWidth 0.381))
+ (thermal (pt 456.8695 328.6305) (pt 457.36786 328.10642) (thermalWidth 0.381))
+ (thermal (pt 488.7305 319.3505) (pt 488.25162 318.87162) (thermalWidth 0.381))
+ (thermal (pt 489.1495 319.3505) (pt 489.61031 318.85954) (thermalWidth 0.381))
+ (thermal (pt 488.5695 396.6305) (pt 489.04838 396.15162) (thermalWidth 0.381))
+ (thermal (pt 488.5695 398.0495) (pt 489.04838 398.52838) (thermalWidth 0.381))
+ (thermal (pt 487.1505 398.0495) (pt 486.67162 398.52838) (thermalWidth 0.381))
+ (thermal (pt 487.1505 396.6305) (pt 486.67162 396.15162) (thermalWidth 0.381))
+ (thermal (pt 479.9305 410.6305) (pt 479.42553 410.19067) (thermalWidth 0.381))
+ (thermal (pt 502.73 320.03) (pt 503.12886 320.42886) (thermalWidth 0.381))
+ (thermal (pt 502.23 319.53) (pt 501.83114 319.13114) (thermalWidth 0.381))
+ (thermal (pt 502.73 319.53) (pt 503.12886 319.13114) (thermalWidth 0.381))
+ (thermal (pt 495.99 327.45) (pt 496.38886 327.84886) (thermalWidth 0.381))
+ (thermal (pt 495.49 327.45) (pt 495.09114 327.84886) (thermalWidth 0.381))
+ (thermal (pt 495.49 326.95) (pt 495.09114 326.55114) (thermalWidth 0.381))
+ (thermal (pt 495.0695 314.0495) (pt 495.54838 314.52838) (thermalWidth 0.381))
+ (thermal (pt 494.6505 314.0495) (pt 494.17162 314.52838) (thermalWidth 0.381))
+ (thermal (pt 502.3695 321.1295) (pt 502.84838 321.60838) (thermalWidth 0.381))
+ (thermal (pt 503.7695 357.6895) (pt 504.17622 358.2166) (thermalWidth 0.381))
+ (thermal (pt 517.9905 358.9895) (pt 517.51162 359.46838) (thermalWidth 0.381))
+ (thermal (pt 517.9905 358.5705) (pt 517.51162 358.09162) (thermalWidth 0.381))
+ (thermal (pt 517.7305 342.6105) (pt 517.25162 342.13162) (thermalWidth 0.381))
+ (thermal (pt 518.1495 342.6105) (pt 518.62838 342.13162) (thermalWidth 0.381))
+ (thermal (pt 495.3095 359.2595) (pt 495.78838 359.73838) (thermalWidth 0.381))
+ (thermal (pt 512.0805 372.5305) (pt 511.60162 372.05162) (thermalWidth 0.381))
+ (thermal (pt 512.9995 372.5305) (pt 513.47838 372.05162) (thermalWidth 0.381))
+ (thermal (pt 533.0095 328.5295) (pt 533.48838 329.00838) (thermalWidth 0.381))
+ (thermal (pt 532.5905 328.5295) (pt 532.11162 329.00838) (thermalWidth 0.381))
+ (thermal (pt 534.6695 358.9295) (pt 535.14838 359.40838) (thermalWidth 0.381))
+ (thermal (pt 534.2505 358.9295) (pt 533.77162 359.40838) (thermalWidth 0.381))
+ (thermal (pt 534.1905 342.5905) (pt 533.71162 342.11162) (thermalWidth 0.381))
+ (thermal (pt 534.6095 342.5905) (pt 535.08838 342.11162) (thermalWidth 0.381))
+ (thermal (pt 546.815 391.325) (pt 546.47138 390.98138) (thermalWidth 0.381))
+ (thermal (pt 546.815 392.275) (pt 546.3964 392.6936) (thermalWidth 0.381))
+ (thermal (pt 547.065 391.325) (pt 547.34 390.93553) (thermalWidth 0.381))
+ (thermal (pt 528.2095 404.5905) (pt 528.68838 404.11162) (thermalWidth 0.381))
+ (thermal (pt 527.4095 410.1095) (pt 527.88838 410.58838) (thermalWidth 0.381))
+ (thermal (pt 527.4095 409.6905) (pt 527.88838 409.21162) (thermalWidth 0.381))
+ (thermal (pt 564.195 266.045) (pt 563.7764 265.6264) (thermalWidth 0.381))
+ (thermal (pt 578.91 335.93) (pt 579.30886 336.32886) (thermalWidth 0.381))
+ (thermal (pt 578.41 335.93) (pt 578.01114 336.32886) (thermalWidth 0.381))
+ (thermal (pt 578.41 335.43) (pt 578.01114 335.03114) (thermalWidth 0.381))
+ (thermal (pt 578.91 335.43) (pt 579.30886 335.03114) (thermalWidth 0.381))
+ (thermal (pt 570.8295 350.6105) (pt 571.30838 350.13162) (thermalWidth 0.381))
+ (thermal (pt 563.5695 342.9705) (pt 564.04838 342.49162) (thermalWidth 0.381))
+ (thermal (pt 562.7905 352.1495) (pt 562.31162 352.62838) (thermalWidth 0.381))
+ (thermal (pt 569.8605 342.4305) (pt 569.38162 341.95162) (thermalWidth 0.381))
+ (thermal (pt 570.7795 342.4305) (pt 571.25838 341.95162) (thermalWidth 0.381))
+ (thermal (pt 563.9905 357.9095) (pt 563.51162 358.38838) (thermalWidth 0.381))
+ (thermal (pt 578.0055 377.3155) (pt 577.52662 376.83662) (thermalWidth 0.381))
+ (thermal (pt 578.0055 378.1845) (pt 577.52662 378.66338) (thermalWidth 0.381))
+ (thermal (pt 579.6245 378.1845) (pt 580.10338 378.66338) (thermalWidth 0.381))
+ (thermal (pt 579.6245 377.3155) (pt 580.10338 376.83662) (thermalWidth 0.381))
+ (thermal (pt 588.9705 357.6295) (pt 588.49162 358.10838) (thermalWidth 0.381))
+ (thermal (pt 617.94 268.74) (pt 617.58533 269.09467) (thermalWidth 0.381))
+ (thermal (pt 619.24 268.74) (pt 619.59467 269.09467) (thermalWidth 0.381))
+ (thermal (pt 619.24 268.44) (pt 619.59467 268.08533) (thermalWidth 0.381))
+ (thermal (pt 617.94 268.44) (pt 617.66269 268.03364) (thermalWidth 0.381))
+ (thermal (pt 624.8105 297.3305) (pt 624.33162 296.85162) (thermalWidth 0.381))
+ (thermal (pt 623.6105 290.7895) (pt 623.13162 291.26838) (thermalWidth 0.381))
+ (thermal (pt 626.0895 321.7095) (pt 626.70565 322.32565) (thermalWidth 0.381))
+ (thermal (pt 625.6705 321.7095) (pt 625.14885 322.12437) (thermalWidth 0.381))
+ (thermal (pt 623.6705 412.1495) (pt 623.19162 412.62838) (thermalWidth 0.381))
+ (thermal (pt 408.46395 337.19124) (pt 408.46395 336.51401) (thermalWidth 0.381))
+ (thermal (pt 407.31914 338.33605) (pt 406.64191 338.33605) (thermalWidth 0.381))
+ (thermal (pt 408.46395 339.48086) (pt 408.46395 340.15809) (thermalWidth 0.381))
+ (thermal (pt 409.60876 338.33605) (pt 410.28599 338.33605) (thermalWidth 0.381))
+ (thermal (pt 430.5095 329.0905) (pt 430.98838 328.61162) (thermalWidth 0.381))
+ (thermal (pt 430.5095 329.5095) (pt 430.98838 329.98838) (thermalWidth 0.381))
+ (thermal (pt 556.6895 346.9705) (pt 557.16903 346.49259) (thermalWidth 0.381))
+ (thermal (pt 556.6895 347.3895) (pt 557.16838 347.86838) (thermalWidth 0.381))
+ (thermal (pt 372.06 319.96) (pt 372.56934 320.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 319.96) (pt 370.55066 320.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 318.96) (pt 370.55066 318.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 318.96) (pt 372.56934 318.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 325.04) (pt 372.56934 325.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 325.04) (pt 370.55066 325.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 324.04) (pt 370.55066 323.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 324.04) (pt 372.56934 323.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 319.96) (pt 377.64934 320.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 319.96) (pt 375.63066 320.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 318.96) (pt 375.63066 318.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 318.96) (pt 377.64934 318.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 325.04) (pt 377.64934 325.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 325.04) (pt 375.63066 325.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 324.04) (pt 375.63066 323.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 324.04) (pt 377.64934 323.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 343.96) (pt 372.46934 344.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 343.96) (pt 370.45066 344.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 342.96) (pt 370.45066 342.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 342.96) (pt 372.46934 342.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 349.04) (pt 372.46934 349.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 349.04) (pt 370.45066 349.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 348.04) (pt 370.45066 347.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 348.04) (pt 372.46934 347.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 343.96) (pt 377.54934 344.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 343.96) (pt 375.53066 344.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 342.96) (pt 375.53066 342.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 342.96) (pt 377.54934 342.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 349.04) (pt 377.54934 349.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 349.04) (pt 375.53066 349.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 348.04) (pt 375.53066 347.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 348.04) (pt 377.54934 347.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 420.96) (pt 372.46934 421.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 420.96) (pt 370.45066 421.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 419.96) (pt 370.45066 419.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 419.96) (pt 372.46934 419.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 426.04) (pt 372.46934 426.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 426.04) (pt 370.45066 426.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 425.04) (pt 370.45066 424.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 425.04) (pt 372.46934 424.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 420.96) (pt 377.54934 421.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 420.96) (pt 375.53066 421.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 419.96) (pt 375.53066 419.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 419.96) (pt 377.54934 419.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 426.04) (pt 377.54934 426.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 426.04) (pt 375.53066 426.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 425.04) (pt 375.53066 424.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 425.04) (pt 377.54934 424.53066) (thermalWidth 0.381))
+ (thermal (pt 488.475 377.195) (pt 488.9291 377.6491) (thermalWidth 0.381))
+ (thermal (pt 487.725 377.195) (pt 487.2709 377.6491) (thermalWidth 0.381))
+ (thermal (pt 487.725 376.445) (pt 487.2709 375.9909) (thermalWidth 0.381))
+ (thermal (pt 488.475 376.445) (pt 488.9291 375.9909) (thermalWidth 0.381))
+ (thermal (pt 617.2295 276.9495) (pt 617.7177 277.41444) (thermalWidth 0.381))
+ (thermal (pt 616.8105 276.9495) (pt 616.33162 277.42838) (thermalWidth 0.381))
+ (thermal (pt 575.272 255.312) (pt 574.75912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 576.288 255.312) (pt 576.80088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 572.732 255.312) (pt 572.21912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 573.748 255.312) (pt 574.26088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 577.812 255.312) (pt 577.29912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 578.828 255.312) (pt 579.34088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 578.828 256.328) (pt 579.34088 256.84088) (thermalWidth 0.381))
+ (thermal (pt 570.192 255.312) (pt 569.67912 254.79912) (thermalWidth 0.381))
+ (thermal (pt 571.208 255.312) (pt 571.72088 254.79912) (thermalWidth 0.381))
+ (thermal (pt 562.2545 254.9945) (pt 561.77562 254.51562) (thermalWidth 0.381))
+ (thermal (pt 563.9055 254.9945) (pt 564.38438 254.51562) (thermalWidth 0.381))
+ (thermal (pt 562.2545 256.6455) (pt 561.77562 257.12438) (thermalWidth 0.381))
+ (thermal (pt 371.96 366.76) (pt 372.46934 367.26934) (thermalWidth 0.381))
+ (thermal (pt 370.96 366.76) (pt 370.45066 367.26934) (thermalWidth 0.381))
+ (thermal (pt 370.96 365.76) (pt 370.45066 365.25066) (thermalWidth 0.381))
+ (thermal (pt 371.96 365.76) (pt 372.46934 365.25066) (thermalWidth 0.381))
+ (thermal (pt 371.96 371.84) (pt 372.46934 372.34934) (thermalWidth 0.381))
+ (thermal (pt 370.96 371.84) (pt 370.45066 372.34934) (thermalWidth 0.381))
+ (thermal (pt 370.96 370.84) (pt 370.45066 370.33066) (thermalWidth 0.381))
+ (thermal (pt 371.96 370.84) (pt 372.46934 370.33066) (thermalWidth 0.381))
+ (thermal (pt 377.04 366.76) (pt 377.54934 367.26934) (thermalWidth 0.381))
+ (thermal (pt 376.04 366.76) (pt 375.53066 367.26934) (thermalWidth 0.381))
+ (thermal (pt 376.04 365.76) (pt 375.53066 365.25066) (thermalWidth 0.381))
+ (thermal (pt 377.04 365.76) (pt 377.54934 365.25066) (thermalWidth 0.381))
+ (thermal (pt 377.04 371.84) (pt 377.54934 372.34934) (thermalWidth 0.381))
+ (thermal (pt 376.04 371.84) (pt 375.53066 372.34934) (thermalWidth 0.381))
+ (thermal (pt 376.04 370.84) (pt 375.53066 370.33066) (thermalWidth 0.381))
+ (thermal (pt 377.04 370.84) (pt 377.54934 370.33066) (thermalWidth 0.381))
+ (thermal (pt 371.96 331.96) (pt 372.46934 332.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 331.96) (pt 370.45066 332.46934) (thermalWidth 0.381))
+ (thermal (pt 370.96 330.96) (pt 370.45066 330.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 330.96) (pt 372.46934 330.45066) (thermalWidth 0.381))
+ (thermal (pt 371.96 337.04) (pt 372.46934 337.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 337.04) (pt 370.45066 337.54934) (thermalWidth 0.381))
+ (thermal (pt 370.96 336.04) (pt 370.45066 335.53066) (thermalWidth 0.381))
+ (thermal (pt 371.96 336.04) (pt 372.46934 335.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 331.96) (pt 377.54934 332.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 331.96) (pt 375.53066 332.46934) (thermalWidth 0.381))
+ (thermal (pt 376.04 330.96) (pt 375.53066 330.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 330.96) (pt 377.54934 330.45066) (thermalWidth 0.381))
+ (thermal (pt 377.04 337.04) (pt 377.54934 337.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 337.04) (pt 375.53066 337.54934) (thermalWidth 0.381))
+ (thermal (pt 376.04 336.04) (pt 375.53066 335.53066) (thermalWidth 0.381))
+ (thermal (pt 377.04 336.04) (pt 377.54934 335.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 307.96) (pt 372.56934 308.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 307.96) (pt 370.55066 308.46934) (thermalWidth 0.381))
+ (thermal (pt 371.06 306.96) (pt 370.55066 306.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 306.96) (pt 372.56934 306.45066) (thermalWidth 0.381))
+ (thermal (pt 372.06 313.04) (pt 372.56934 313.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 313.04) (pt 370.55066 313.54934) (thermalWidth 0.381))
+ (thermal (pt 371.06 312.04) (pt 370.55066 311.53066) (thermalWidth 0.381))
+ (thermal (pt 372.06 312.04) (pt 372.56934 311.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 307.96) (pt 377.64934 308.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 307.96) (pt 375.63066 308.46934) (thermalWidth 0.381))
+ (thermal (pt 376.14 306.96) (pt 375.63066 306.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 306.96) (pt 377.64934 306.45066) (thermalWidth 0.381))
+ (thermal (pt 377.14 313.04) (pt 377.64934 313.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 313.04) (pt 375.63066 313.54934) (thermalWidth 0.381))
+ (thermal (pt 376.14 312.04) (pt 375.63066 311.53066) (thermalWidth 0.381))
+ (thermal (pt 377.14 312.04) (pt 377.64934 311.53066) (thermalWidth 0.381))
+ (thermal (pt 511.8095 306.2714) (pt 511.465 305.9269) (thermalWidth 0.381))
+ (thermal (pt 511.811 320.927) (pt 511.41872 321.2) (thermalWidth 0.381))
+ (thermal (pt 513.589 327.327) (pt 513.9335 327.6715) (thermalWidth 0.381))
+ (thermal (pt 511.8095 316.9267) (pt 511.41726 317.19975) (thermalWidth 0.381))
+ (thermal (pt 513.5875 316.6727) (pt 513.97974 316.39965) (thermalWidth 0.381))
+ (thermal (pt 544.08 399.14) (pt 543.65904 398.71904) (thermalWidth 0.381))
+ (thermal (pt 544.68 399.74) (pt 545.10096 400.16096) (thermalWidth 0.381))
+ (thermal (pt 544.08 399.74) (pt 543.65904 400.16096) (thermalWidth 0.381))
+ (thermal (pt 552.68 399.14) (pt 553.10096 398.71904) (thermalWidth 0.381))
+ (thermal (pt 552.68 399.74) (pt 553.10096 400.16096) (thermalWidth 0.381))
+ (thermal (pt 552.08 399.74) (pt 551.65904 400.16096) (thermalWidth 0.381))
+ (thermal (pt 638.4136 245.1664) (pt 637.94562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 244.3536) (pt 637.94562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 244.3536) (pt 639.69438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 245.1664) (pt 639.69438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 321.3664) (pt 637.94562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 320.5536) (pt 637.94562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 320.5536) (pt 639.69438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 321.3664) (pt 639.69438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 245.1664) (pt 640.48562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 244.3536) (pt 640.48562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 244.3536) (pt 642.23438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 245.1664) (pt 642.23438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 245.1664) (pt 643.02562 245.63438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 244.3536) (pt 643.02562 243.88562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 244.3536) (pt 644.77438 243.88562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 245.1664) (pt 644.77438 245.63438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 321.3664) (pt 640.48562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 320.5536) (pt 640.48562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 320.5536) (pt 642.23438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 321.3664) (pt 642.23438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 321.3664) (pt 643.02562 321.83438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 320.5536) (pt 643.02562 320.08562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 320.5536) (pt 644.77438 320.08562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 321.3664) (pt 644.77438 321.83438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 247.7064) (pt 637.94562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 246.8936) (pt 637.94562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 246.8936) (pt 639.69438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 247.7064) (pt 639.69438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 323.9064) (pt 637.94562 324.37438) (thermalWidth 0.381))
+ (thermal (pt 638.4136 323.0936) (pt 637.94562 322.62562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 323.0936) (pt 639.69438 322.62562) (thermalWidth 0.381))
+ (thermal (pt 639.2264 323.9064) (pt 639.69438 324.37438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 247.7064) (pt 640.48562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 246.8936) (pt 640.48562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 246.8936) (pt 642.23438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 247.7064) (pt 642.23438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 247.7064) (pt 643.02562 248.17438) (thermalWidth 0.381))
+ (thermal (pt 643.4936 246.8936) (pt 643.02562 246.42562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 246.8936) (pt 644.77438 246.42562) (thermalWidth 0.381))
+ (thermal (pt 644.3064 247.7064) (pt 644.77438 248.17438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 323.9064) (pt 640.48562 324.37438) (thermalWidth 0.381))
+ (thermal (pt 640.9536 323.0936) (pt 640.48562 322.62562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 323.0936) (pt 642.23438 322.62562) (thermalWidth 0.381))
+ (thermal (pt 641.7664 323.9064) (pt 642.23438 324.37438) (thermalWidth 0.381))
+ (thermal (pt 643.2777 324.1223) (pt 642.79882 324.60118) (thermalWidth 0.381))
+ (thermal (pt 643.2777 322.8777) (pt 642.79882 322.39882) (thermalWidth 0.381))
+ (thermal (pt 644.5223 322.8777) (pt 645.00118 322.39882) (thermalWidth 0.381))
+ (thermal (pt 644.5223 324.1223) (pt 645.00118 324.60118) (thermalWidth 0.381))
+ (thermal (pt 638.5136 378.4664) (pt 638.04562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 377.6536) (pt 638.04562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 377.6536) (pt 639.79438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 378.4664) (pt 639.79438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 454.6664) (pt 638.04562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 453.8536) (pt 638.04562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 453.8536) (pt 639.79438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 454.6664) (pt 639.79438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 378.4664) (pt 640.58562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 377.6536) (pt 640.58562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 377.6536) (pt 642.33438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 378.4664) (pt 642.33438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 378.4664) (pt 643.12562 378.93438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 377.6536) (pt 643.12562 377.18562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 377.6536) (pt 644.87438 377.18562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 378.4664) (pt 644.87438 378.93438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 454.6664) (pt 640.58562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 453.8536) (pt 640.58562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 453.8536) (pt 642.33438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 454.6664) (pt 642.33438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 454.6664) (pt 643.12562 455.13438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 453.8536) (pt 643.12562 453.38562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 453.8536) (pt 644.87438 453.38562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 454.6664) (pt 644.87438 455.13438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 381.0064) (pt 638.04562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 380.1936) (pt 638.04562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 380.1936) (pt 639.79438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 381.0064) (pt 639.79438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 457.2064) (pt 638.04562 457.67438) (thermalWidth 0.381))
+ (thermal (pt 638.5136 456.3936) (pt 638.04562 455.92562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 456.3936) (pt 639.79438 455.92562) (thermalWidth 0.381))
+ (thermal (pt 639.3264 457.2064) (pt 639.79438 457.67438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 381.0064) (pt 640.58562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 380.1936) (pt 640.58562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 380.1936) (pt 642.33438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 381.0064) (pt 642.33438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 381.0064) (pt 643.12562 381.47438) (thermalWidth 0.381))
+ (thermal (pt 643.5936 380.1936) (pt 643.12562 379.72562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 380.1936) (pt 644.87438 379.72562) (thermalWidth 0.381))
+ (thermal (pt 644.4064 381.0064) (pt 644.87438 381.47438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 457.2064) (pt 640.58562 457.67438) (thermalWidth 0.381))
+ (thermal (pt 641.0536 456.3936) (pt 640.58562 455.92562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 456.3936) (pt 642.33438 455.92562) (thermalWidth 0.381))
+ (thermal (pt 641.8664 457.2064) (pt 642.33438 457.67438) (thermalWidth 0.381))
+ (thermal (pt 643.3777 457.4223) (pt 642.89882 457.90118) (thermalWidth 0.381))
+ (thermal (pt 643.3777 456.1777) (pt 642.89882 455.69882) (thermalWidth 0.381))
+ (thermal (pt 644.6223 456.1777) (pt 645.10118 455.69882) (thermalWidth 0.381))
+ (thermal (pt 644.6223 457.4223) (pt 645.10118 457.90118) (thermalWidth 0.381))
+ )
+ )
+ )
+ (layerContents (layerNumRef 3)
+ (line (pt 369.5 465.0) (pt 369.5 236.7) (width 0.127) )
+ (line (pt 369.5 465.0) (pt 369.5 236.7) (width 0.3) )
+ (line (pt 649.5 236.7) (pt 649.5 465.0) (width 0.127) )
+ (line (pt 649.5 236.7) (pt 649.5 465.0) (width 0.3) )
+ (line (pt 369.5 236.7) (pt 649.5 236.7) (width 0.3) )
+ (line (pt 369.5 236.7) (pt 649.5 236.7) (width 0.127) )
+ (line (pt 649.5 465.0) (pt 369.5 465.0) (width 0.3) )
+ (line (pt 649.5 465.0) (pt 369.5 465.0) (width 0.127) )
+ )
+ (layerContents (layerNumRef 4)
+ (pcbPoly
+ (pt 479.32 305.36)
+ (pt 479.32 298.16)
+ (pt 487.4 298.2)
+ (pt 487.36 305.36)
+ )
+ (pcbPoly
+ (pt 484.24 348.56)
+ (pt 491.44 348.56)
+ (pt 491.4 356.64)
+ (pt 484.24 356.6)
+ )
+ (pcbPoly
+ (pt 547.96 268.52)
+ (pt 547.96 275.72)
+ (pt 539.88 275.68)
+ (pt 539.92 268.52)
+ )
+ (pcbPoly
+ (pt 632.96 354.72)
+ (pt 625.76 354.72)
+ (pt 625.8 346.64)
+ (pt 632.96 346.68)
+ )
+ (pcbPoly
+ (pt 433.36 311.24)
+ (pt 433.36 304.04)
+ (pt 441.44 304.08)
+ (pt 441.4 311.24)
+ )
+ )
+ (layerContents (layerNumRef 5)
+ (pcbPoly
+ (pt 398.2 347.3)
+ (pt 398.2 344.4)
+ (pt 402.9 344.4)
+ (pt 402.9 347.3)
+ )
+ (pcbPoly
+ (pt 466.8 424.3)
+ (pt 466.8 421.4)
+ (pt 471.5 421.4)
+ (pt 471.5 424.3)
+ )
+ (pcbPoly
+ (pt 601.76 350.92)
+ (pt 594.56 350.92)
+ (pt 594.6 342.84)
+ (pt 601.76 342.88)
+ )
+ (pcbPoly
+ (pt 424.7 370.3)
+ (pt 424.7 367.4)
+ (pt 427.0 367.4)
+ (pt 429.4 367.4)
+ (pt 429.4 370.3)
+ )
+ (pcbPoly
+ (pt 417.9 424.4)
+ (pt 417.9 421.5)
+ (pt 422.6 421.5)
+ (pt 422.6 424.4)
+ )
+ (pcbPoly
+ (pt 576.16 379.32)
+ (pt 568.96 379.32)
+ (pt 569.0 371.24)
+ (pt 576.16 371.28)
+ )
+ (pcbPoly
+ (pt 395.9 312.0)
+ (pt 395.9 309.1)
+ (pt 400.6 309.1)
+ (pt 400.6 312.0)
+ )
+ )
+ (layerContents (layerNumRef 6)
+ (text (pt 519.2 404.1) "1" (textStyleRef "T:H60W6") (justify LowerRight) (extent 0.96162 2.057) )
+ (text (pt 486.9 380.9) "1" (textStyleRef "T:H60W6") (justify LowerRight) (extent 0.96162 2.057) )
+ (text (pt 399.68 320.32) "O\r\n\r\nU\r\n\r\nT\r\n\r\n" (textStyleRef "TH100") (extent 4.30625 19.775) )
+ (text (pt 386.76 308.92) "FS4" (textStyleRef "T:H80W8") (extent 5.09375 3.375) )
+ (text (pt 386.72 321.88) "FS3" (textStyleRef "T:H80W8") (extent 5.01562 3.375) )
+ (text (pt 386.68 344.84) "FS1" (textStyleRef "T:H80W8") (extent 4.54687 3.375) )
+ (text (pt 386.68 367.64) "IN RF" (textStyleRef "T:H80W8") (extent 6.65625 3.375) )
+ (text (pt 386.04 421.64) "IN SYNC" (textStyleRef "T:H80W8") (extent 9.70312 3.375) )
+ (text (pt 386.68 332.6) "FS2" (textStyleRef "T:H80W8") (extent 5.01562 3.375) )
+ (text (pt 396.04 284.84) "USB 2.0" (textStyleRef "T:H80W8") (extent 9.78125 3.375) )
+ )
+ (layerContents (layerNumRef 10)
+ (dimension
+ (dimStyle dim_leader )
+ (pt 396.31645 461.91674) (rotation 0)
+ (isFlipped False)
+ (dimOrient dim_horizontal )
+ (dimTextOrient dim_horizontal )
+ (dimPrecision 0)
+ (dimDisplayUnits False)
+ (dimUnits dim_units_inch )
+ (dimLineWidth 30480)
+ (dimLeaderStyle dim_leader_style_text )
+ (dimLeaderSize 1270000)
+ (dimCenterSize 508000)
+ (dimPlusLinearTol 12700)
+ (dimMinusLinearTol 12700)
+ (dimPlusDegTol 0)
+ (dimMinusDegTol 0)
+ (dimShowTolerance False)
+ (dimShowDiaSymbol False)
+ (dimDimLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 418.19 480.4) (pt 411.84 480.4) (width 0.3048) )
+ )
+ )
+ )
+ (dimExtLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 396.31645 461.91674) (pt 411.84 480.4) (width 0.3048) )
+ )
+ (dimGraphic (poly
+ (pt 396.31645 461.91674)
+ (pt 398.76643 466.06165)
+ (pt 399.97295 465.04926)
+ )
+ )
+ )
+ )
+ (dimTextGraphics
+ (dimGraphics
+ (dimGraphic (text (pt 420.5 480.4) "S1.5*" (textStyleRef "H16 [1]") (justify Center) (extent 4.02 2.12) )
+ )
+ )
+ )
+ (dimPoints
+ (pt 396.31645 461.91674) (pt 420.5 480.4) )
+ (arrowheadWidth 1.575)
+ (arrowheadHeight 4.75)
+ (dimensionID -1)
+ )
+ )
+ (layerContents (layerNumRef 11)
+ (text (pt 686.68 346.28) "Material : FR-4\r\n------------------------\r\nThickness of PCB: 1,5mm\r\n------------------------\r\nLayers:\r\n------------------------\r\n1. Top Silk \r\n2. Top Mask (Solder Resist)\r\n3. Top (Surface plating - GOLD)\r\n(Cu - 35mkm) , Laminate 0,3-0,4mm\r\n4. Power (Plane Type)\r\n5. INT1\r\n6. INT2\r\n7. GND (Plane Type)\r\n8. Bottom (Surface plating - GOLD)\r\n9. Bot Mask (Solder Resist)\r\n10. Bot Silk" (textStyleRef "T2.5") (extent 61.53467 72.51382) )
+ )
+ (layerContents (layerNumRef 12)
+ (line (pt 369.78 236.68) (pt 369.38 236.68) (width 0.254) (dimensionRef 0 0) )
+ (line (pt 370.02 252.18) (pt 369.38 252.18) (width 0.254) )
+ (line (pt 374.0 239.7) (pt 375.0 239.7) (width 0.1) )
+ (line (pt 374.5 240.2) (pt 374.5 239.2) (width 0.1) )
+ (line (pt 377.5 243.7) (pt 377.5 236.7) (width 0.1) )
+ (line (pt 376.92 280.28) (pt 374.94 280.28) (width 0.254) )
+ (line (pt 374.0 461.95) (pt 375.0 461.95) (width 0.1) )
+ (line (pt 374.5 462.45) (pt 374.5 461.45) (width 0.1) )
+ (text (pt 383.7 240.1) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (line (pt 383.12 257.24) (pt 381.9 257.24) (width 0.254) )
+ (line (pt 389.0 243.7) (pt 389.0 236.7) (width 0.1) )
+ (line (pt 507.0 243.7) (pt 507.0 236.7) (width 0.1) )
+ (line (pt 514.0 243.7) (pt 514.0 236.7) (width 0.1) )
+ (line (pt 525.0 243.7) (pt 525.0 236.7) (width 0.1) )
+ (line (pt 646.0 239.7) (pt 647.0 239.7) (width 0.1) )
+ (line (pt 646.5 240.2) (pt 646.5 239.2) (width 0.1) )
+ (line (pt 643.5 243.7) (pt 643.5 236.7) (width 0.1) )
+ (line (pt 646.0 328.6) (pt 647.0 328.6) (width 0.1) )
+ (line (pt 646.5 329.1) (pt 646.5 328.1) (width 0.1) )
+ (line (pt 646.0 373.05) (pt 647.0 373.05) (width 0.1) )
+ (line (pt 646.0 461.95) (pt 647.0 461.95) (width 0.1) )
+ (line (pt 646.5 462.45) (pt 646.5 461.45) (width 0.1) )
+ (line (pt 369.5 464.2) (pt 369.5 465.0) (width 0.15) (dimensionRef 1 0) )
+ (line (pt 646.5 373.55) (pt 646.5 372.55) (width 0.1) )
+ (line (pt 649.5 465.0) (pt 649.5 463.8) (width 0.15) (dimensionRef 1 1) )
+ (line (pt 377.5 465.0) (pt 377.5 458.0) (width 0.1) )
+ (line (pt 374.0 465.0) (pt 374.0 428.0) (width 0.25) )
+ (line (pt 389.0 465.0) (pt 389.0 458.0) (width 0.1) )
+ (line (pt 507.0 465.0) (pt 507.0 458.0) (width 0.1) )
+ (line (pt 514.0 465.0) (pt 514.0 458.0) (width 0.1) )
+ (line (pt 525.0 465.0) (pt 525.0 458.0) (width 0.1) )
+ (line (pt 643.5 465.0) (pt 643.5 458.0) (width 0.1) )
+ (line (pt 623.9 458.0) (pt 623.9 250.7) (width 0.25) )
+ (line (pt 374.1 310.0) (pt 372.7 310.0) (width 0.254) )
+ (line (pt 374.1 322.0) (pt 372.8 322.0) (width 0.254) )
+ (line (pt 374.0 334.0) (pt 372.7 334.0) (width 0.254) )
+ (line (pt 374.0 346.0) (pt 372.6 346.0) (width 0.254) )
+ (line (pt 373.9 368.8) (pt 372.5 368.8) (width 0.254) )
+ (line (pt 374.0 423.0) (pt 372.5 423.0) (width 0.254) )
+ (text (pt 383.5 461.5) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (line (pt 510.0 239.7) (pt 511.0 239.7) (width 0.1) )
+ (line (pt 510.5 240.2) (pt 510.5 239.2) (width 0.1) )
+ (line (pt 510.5 462.45) (pt 510.5 461.45) (width 0.1) )
+ (line (pt 510.0 461.95) (pt 511.0 461.95) (width 0.1) )
+ (text (pt 539.5 240.1) "5,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.57 2.12) )
+ (text (pt 539.6 247.1) "3max" (textStyleRef "H16 [1]") (justify Center) (extent 4.32 2.12) )
+ (text (pt 539.4 252.7) "8,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.57 2.12) )
+ (text (pt 539.5 454.3) "3max" (textStyleRef "H16 [1]") (justify Center) (extent 4.32 2.12) )
+ (text (pt 539.8 461.3) "5,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.57 2.12) )
+ (line (pt 632.5 243.7) (pt 632.5 236.7) (width 0.1) )
+ (text (pt 639.0 284.6) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (text (pt 638.0 461.4) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (text (pt 630.0 467.8) "Max element height on bottom" (textStyleRef "H16 [1]") (justify Center) (extent 22.77 2.12) )
+ (line (pt 632.5 465.0) (pt 632.5 458.0) (width 0.1) )
+ (dimension
+ (dimStyle dim_point_to_point )
+ (pt 369.38 236.68) (rotation 0)
+ (isFlipped False)
+ (dimOrient dim_vertical )
+ (dimTextOrient dim_horizontal )
+ (dimPrecision 1)
+ (dimDisplayUnits False)
+ (dimUnits dim_units_mm )
+ (dimLineWidth 30000)
+ (dimLeaderStyle dim_leader_style_text )
+ (dimLeaderSize 1270000)
+ (dimCenterSize 508000)
+ (dimPlusLinearTol 0)
+ (dimMinusLinearTol 0)
+ (dimPlusDegTol 0)
+ (dimMinusDegTol 0)
+ (dimShowTolerance False)
+ (dimShowDiaSymbol False)
+ (dimDimLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 348.00469 236.68) (pt 348.00469 344.05893) (width 0.3) )
+ )
+ (dimGraphic (poly
+ (pt 348.00469 236.68)
+ (pt 348.15469 237.18)
+ (pt 347.85469 237.18)
+ )
+ )
+ (dimGraphic (line (pt 348.00469 465.0) (pt 348.00469 347.94193) (width 0.3) )
+ )
+ (dimGraphic (poly
+ (pt 348.00469 465.0)
+ (pt 348.15469 464.5)
+ (pt 347.85469 464.5)
+ )
+ )
+ )
+ )
+ (dimExtLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 367.856 236.68) (pt 346.75469 236.68) (width 0.3) )
+ )
+ (dimGraphic (line (pt 367.976 465.0) (pt 346.75469 465.0) (width 0.3) )
+ )
+ )
+ )
+ (dimTextGraphics
+ (dimGraphics
+ (dimGraphic (text (pt 348.00469 346.00043) "228.3" (textStyleRef "T:H80W8") (justify Center) (extent 7.125 3.375) )
+ )
+ )
+ )
+ (dimPoints
+ (pt 369.38 236.68) (pt 369.5 465.0) (pt 348.00469 346.00043) )
+ (arrowheadWidth 0.3)
+ (arrowheadHeight 0.5)
+ (dimensionID 0)
+ (dimensionOffsets (pt 0.0 0.1) (pt 0.1 0.0) )
+ )
+ (line (pt 369.5 465.0) (pt 374.0 465.0) (width 0.25) (dimensionRef 0 1) )
+ (text (pt 519.7 240.1) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (text (pt 519.5 461.5) "1,5max" (textStyleRef "H16 [1]") (justify Center) (extent 5.27 2.12) )
+ (table drillTable
+ (pt 687.44 286.64)
+ (extent 45.48186 51.84775)
+ (title "Drill Table")
+ (textStyleRef "(Default)")
+ (drillTableInfo
+ (units mm)
+ (dimPrecision 3)
+
+ )
+ )
+ (line (pt 369.5 243.7) (pt 649.5 243.7) (width 0.1) )
+ (line (pt 369.5 250.7) (pt 649.5 250.7) (width 0.1) )
+ (line (pt 649.5 451.0) (pt 369.5 451.0) (width 0.1) )
+ (line (pt 649.5 458.0) (pt 369.5 458.0) (width 0.1) )
+ (dimension
+ (dimStyle dim_point_to_point )
+ (pt 369.5 465.0) (rotation 0)
+ (isFlipped False)
+ (dimOrient dim_horizontal )
+ (dimTextOrient dim_horizontal )
+ (dimPrecision 1)
+ (dimDisplayUnits False)
+ (dimUnits dim_units_mm )
+ (dimLineWidth 30000)
+ (dimLeaderStyle dim_leader_style_text )
+ (dimLeaderSize 1270000)
+ (dimCenterSize 508000)
+ (dimPlusLinearTol 0)
+ (dimMinusLinearTol 0)
+ (dimPlusDegTol 0)
+ (dimMinusDegTol 0)
+ (dimShowTolerance False)
+ (dimShowDiaSymbol False)
+ (dimDimLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 369.5 476.16596) (pt 390.94334 476.16596) (width 0.3) )
+ )
+ (dimGraphic (poly
+ (pt 369.5 476.16596)
+ (pt 370.0 476.31596)
+ (pt 370.0 476.01596)
+ )
+ )
+ (dimGraphic (line (pt 649.5 476.16596) (pt 399.04508 476.16596) (width 0.3) )
+ )
+ (dimGraphic (poly
+ (pt 649.5 476.16596)
+ (pt 649.0 476.31596)
+ (pt 649.0 476.01596)
+ )
+ )
+ )
+ )
+ (dimExtLineGraphics
+ (dimGraphics
+ (dimGraphic (line (pt 369.5 466.524) (pt 369.5 477.41596) (width 0.3) )
+ )
+ (dimGraphic (line (pt 649.5 466.524) (pt 649.5 477.41596) (width 0.3) )
+ )
+ )
+ )
+ (dimTextGraphics
+ (dimGraphics
+ (dimGraphic (text (pt 394.99421 476.16596) "280.0" (textStyleRef "T:H80W8") (justify Center) (extent 7.125 3.375) )
+ )
+ )
+ )
+ (dimPoints
+ (pt 369.5 465.0) (pt 649.5 465.0) (pt 394.99421 476.16596) )
+ (arrowheadWidth 0.3)
+ (arrowheadHeight 0.5)
+ (dimensionID 1)
+ (dimensionOffsets (pt 0.0 0.1) (pt 0.1 0.0) )
+ )
+ )
+ (layerContents (layerNumRef 13)
+ (planeObj
+ (width 0.4)
+ (pcbPoly
+ (pt 451.7 314.76)
+ (pt 451.7 335.56)
+ (pt 451.7 344.1)
+ (pt 437.2 344.1)
+ (pt 437.2 335.56)
+ (pt 437.2 334.06)
+ (pt 437.2 314.76)
+ (netNameRef "+3,3V")
+ )
+ (netNameRef "+3,3V")
+ )
+ (planeObj
+ (width 0.3)
+ (pcbPoly
+ (pt 534.0 319.1)
+ (pt 534.0 315.2)
+ (pt 529.3 315.2)
+ (pt 529.3 305.5)
+ (pt 529.3 290.9)
+ (pt 532.1 290.9)
+ (pt 532.1 312.3)
+ (pt 544.1 312.3)
+ (pt 544.1 317.1)
+ (pt 537.8 317.1)
+ (pt 537.8 319.1)
+ (netNameRef "VDDINT")
+ )
+ (netNameRef "VDDINT")
+ )
+ (planeObj
+ (width 0.2)
+ (pcbPoly
+ (pt 552.0 357.4)
+ (pt 552.0 355.3)
+ (pt 553.8 355.3)
+ (pt 553.8 353.7)
+ (pt 553.8 353.3)
+ (pt 555.7 353.3)
+ (pt 555.7 347.9)
+ (pt 552.6 347.9)
+ (pt 552.6 344.3)
+ (pt 553.9 344.3)
+ (pt 553.9 346.5)
+ (pt 561.58 346.5)
+ (pt 561.58 339.1)
+ (pt 559.8 339.1)
+ (pt 556.1 339.1)
+ (pt 556.1 335.4)
+ (pt 566.3 335.4)
+ (pt 566.3 341.1)
+ (pt 566.3 341.3)
+ (pt 572.1 341.3)
+ (pt 572.1 340.6)
+ (pt 573.7 340.6)
+ (pt 573.7 342.6)
+ (pt 565.6 342.6)
+ (pt 565.6 342.3)
+ (pt 564.6 342.3)
+ (pt 564.6 346.2)
+ (pt 564.6 347.36)
+ (pt 563.7 347.36)
+ (pt 563.7 353.9)
+ (pt 565.7 353.9)
+ (pt 565.7 356.5)
+ (pt 575.2 356.5)
+ (pt 575.2 358.9)
+ (pt 575.2 360.2)
+ (pt 572.48 360.2)
+ (pt 572.48 358.1)
+ (pt 563.7 358.1)
+ (pt 563.7 355.4)
+ (pt 558.7 355.4)
+ (pt 558.7 354.3)
+ (pt 556.7 354.3)
+ (pt 556.7 357.2)
+ (pt 557.7 357.2)
+ (pt 557.7 360.9)
+ (pt 560.6 360.9)
+ (pt 560.6 370.9)
+ (pt 572.3 370.9)
+ (pt 572.3 380.2)
+ (pt 555.1 380.2)
+ (pt 555.1 378.2)
+ (pt 555.1 363.5)
+ (pt 555.1 358.5)
+ (pt 552.0 358.5)
+ (netNameRef "+1,2V7")
+ )
+ (netNameRef "+1,2V7")
+ )
+ (planeObj
+ (width 0.5)
+ (pcbPoly
+ (pt 510.1 328.94)
+ (pt 510.1 310.54)
+ (pt 518.2 310.54)
+ (pt 518.2 305.34)
+ (pt 525.2 305.34)
+ (pt 525.2 319.34)
+ (pt 540.6 319.34)
+ (pt 540.6 317.34)
+ (pt 544.3 317.34)
+ (pt 559.8 317.34)
+ (pt 562.0 317.34)
+ (pt 562.0 293.44)
+ (pt 562.0 284.84)
+ (pt 536.7 284.84)
+ (pt 536.7 280.54)
+ (pt 536.7 278.94)
+ (pt 536.7 275.94)
+ (pt 562.0 275.94)
+ (pt 562.0 266.34)
+ (pt 565.0 266.34)
+ (pt 575.0 266.34)
+ (pt 575.0 275.24)
+ (pt 568.76 275.24)
+ (pt 568.76 284.08)
+ (pt 568.76 288.36)
+ (pt 568.76 292.56)
+ (pt 568.76 301.76)
+ (pt 568.76 310.84)
+ (pt 568.76 320.0)
+ (pt 568.76 328.96)
+ (netNameRef "VDDEXT")
+ )
+ (netNameRef "VDDEXT")
+ )
+ (planeObj
+ (width 0.2)
+ (pcbPoly
+ (pt 540.5 402.6)
+ (pt 540.4 332.8)
+ (pt 577.5 332.8)
+ (pt 577.5 318.0)
+ (pt 588.7 318.0)
+ (pt 588.7 342.8)
+ (pt 604.1 342.8)
+ (pt 604.1 372.4)
+ (pt 600.1 372.4)
+ (pt 578.7 372.4)
+ (pt 577.52 372.4)
+ (pt 577.52 388.52)
+ (pt 562.5 388.5)
+ (pt 562.5 402.6)
+ (netNameRef "+3,3V7")
+ )
+ (netNameRef "+3,3V7")
+ )
+ (planeObj
+ (width 0.5)
+ (pcbPoly
+ (pt 607.6 452.2)
+ (pt 607.6 416.5)
+ (pt 607.58 410.44)
+ (pt 628.24 410.38)
+ (pt 628.3 387.6)
+ (pt 620.4 387.6)
+ (pt 620.4 380.6)
+ (pt 620.4 362.4)
+ (pt 620.4 335.0)
+ (pt 620.4 313.7)
+ (pt 610.7 313.7)
+ (pt 610.7 299.9)
+ (pt 610.74 285.02)
+ (pt 624.96 285.02)
+ (pt 629.4 285.0)
+ (pt 630.3 285.0)
+ (pt 635.5 285.0)
+ (pt 635.5 333.1)
+ (pt 635.5 352.3)
+ (pt 635.5 376.4)
+ (pt 635.5 378.9)
+ (pt 635.5 380.5)
+ (pt 635.5 398.1)
+ (pt 635.5 425.1)
+ (pt 635.5 452.2)
+ (netNameRef "+3,3V2")
+ )
+ (netNameRef "+3,3V2")
+ )
+ (planeObj
+ (width 0.5)
+ (pcbPoly
+ (pt 488.22 321.1)
+ (pt 488.22 316.2)
+ (pt 495.12 316.2)
+ (pt 495.12 311.1)
+ (pt 495.12 295.8)
+ (pt 514.52 295.8)
+ (pt 514.52 280.5)
+ (pt 514.52 264.8)
+ (pt 554.82 264.8)
+ (pt 554.82 250.5)
+ (pt 632.42 250.6)
+ (pt 632.42 274.7)
+ (pt 632.42 275.98)
+ (pt 632.42 277.16)
+ (pt 632.42 277.58)
+ (pt 587.58 277.58)
+ (pt 587.62 301.9)
+ (pt 583.02 301.9)
+ (pt 568.92 301.92)
+ (pt 568.92 289.28)
+ (pt 578.32 289.3)
+ (pt 578.32 283.9)
+ (pt 578.32 262.3)
+ (pt 561.42 262.3)
+ (pt 561.42 275.5)
+ (pt 536.52 275.5)
+ (pt 536.52 285.2)
+ (pt 525.82 285.2)
+ (pt 525.82 302.5)
+ (pt 503.42 302.5)
+ (pt 503.42 311.1)
+ (pt 503.42 329.0)
+ (pt 538.72 329.0)
+ (pt 538.72 347.7)
+ (pt 538.72 373.4)
+ (pt 538.72 402.7)
+ (pt 538.72 404.1)
+ (pt 538.72 406.56)
+ (pt 538.72 407.08)
+ (pt 538.72 407.64)
+ (pt 538.72 408.44)
+ (pt 538.72 409.28)
+ (pt 538.72 410.08)
+ (pt 538.72 410.68)
+ (pt 538.72 411.88)
+ (pt 538.6 411.88)
+ (pt 538.08 411.88)
+ (pt 537.6 411.88)
+ (pt 536.88 411.9)
+ (pt 516.84 411.9)
+ (pt 516.84 414.1)
+ (pt 496.2 414.12)
+ (pt 475.72 414.12)
+ (pt 475.72 384.82)
+ (pt 514.92 384.8)
+ (pt 514.92 382.2)
+ (pt 514.92 355.3)
+ (pt 514.92 354.3)
+ (pt 514.92 354.0)
+ (pt 500.52 354.0)
+ (pt 500.52 355.88)
+ (pt 500.52 364.68)
+ (pt 482.7 364.7)
+ (pt 482.7 355.8)
+ (pt 489.4 355.8)
+ (pt 489.42 355.4)
+ (pt 489.42 333.1)
+ (pt 489.42 326.2)
+ (pt 492.72 326.2)
+ (pt 492.7 321.7)
+ (pt 488.2 321.68)
+ (netNameRef "+3,3VF")
+ )
+ (netNameRef "+3,3VF")
+ )
+ (planeObj
+ (width 0.7)
+ (pcbPoly
+ (pt 374.4 241.08)
+ (pt 410.9 241.1)
+ (pt 645.0 241.1)
+ (pt 648.7 241.1)
+ (pt 648.7 459.9)
+ (pt 604.32 459.88)
+ (pt 590.04 459.68)
+ (pt 411.1 459.8)
+ (pt 374.36 459.78)
+ (pt 374.36 405.72)
+ (pt 374.4 350.92)
+ (pt 374.4 337.62)
+ (pt 374.4 323.38)
+ (pt 374.4 295.9)
+ (netNameRef "+5V")
+ )
+ (netNameRef "+5V")
+ )
+ )
+ (layerContents (layerNumRef 14)
+ (line (pt 370.16 464.36) (pt 370.16 237.32) (width 0.7) )
+ (line (pt 648.92 237.28) (pt 648.92 464.4) (width 0.7) )
+ (line (pt 370.16 237.32) (pt 648.92 237.28) (width 0.7) )
+ (line (pt 648.92 464.4) (pt 370.16 464.28) (width 0.7) )
+ )
+ (layerContents (layerNumRef 15)
+ (line (pt 384.8 263.6) (pt 381.88 263.6) (width 0.15) (netNameRef "USB-") )
+ (line (pt 381.84 261.1) (pt 386.7 261.1) (width 0.15) (netNameRef "USB+") )
+ (line (pt 384.9 263.5) (pt 384.8 263.6) (width 0.15) (netNameRef "USB-") )
+ (line (pt 386.7 261.1) (pt 388.4 262.8) (width 0.15) (netNameRef "USB+") )
+ (line (pt 386.64 288.14) (pt 383.58 285.08) (width 0.2) (netNameRef "NET00256") )
+ (line (pt 386.66 286.62) (pt 386.64 286.6) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 385.56 285.18) (pt 385.54 285.2) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 383.58 285.08) (pt 381.74 285.08) (width 0.2) (netNameRef "NET00256") )
+ (line (pt 443.78 330.98) (pt 442.68 332.08) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 500.44 317.48) (pt 499.7 316.74) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 497.86 317.34) (pt 495.72 315.2) (width 0.127) (netNameRef "30MHZ") )
+ (line (pt 501.1 358.94) (pt 500.5 358.34) (width 0.15) (netNameRef "USB-") )
+ (line (pt 502.0 358.8) (pt 502.0 359.6) (width 0.15) (netNameRef "USB+") )
+ (line (pt 506.02 354.36) (pt 505.98 354.4) (width 0.127) (netNameRef "RXF") )
+ (line (pt 514.58 321.6) (pt 514.02 322.16) (width 0.127) (netNameRef "D11") )
+ (line (pt 517.46 321.42) (pt 517.68 321.2) (width 0.127) (netNameRef "D10") )
+ (line (pt 517.76 357.22) (pt 514.9 354.36) (width 0.127) (netNameRef "RXF") )
+ (line (pt 520.02 308.12) (pt 520.0 308.1) (width 0.127) (netNameRef "A3") )
+ (line (pt 521.08 318.2) (pt 521.66 318.78) (width 0.127) (netNameRef "D6") )
+ (line (pt 520.0 318.2) (pt 519.82 318.38) (width 0.127) (netNameRef "D5") )
+ (line (pt 522.22 318.34) (pt 522.1 318.22) (width 0.127) (netNameRef "D7") )
+ (line (pt 522.78 342.22) (pt 523.22 342.66) (width 0.127) (netNameRef "A17") )
+ (line (pt 519.82 346.36) (pt 520.22 346.76) (width 0.127) (netNameRef "D5") )
+ (line (pt 518.32 344.82) (pt 518.5 345.0) (width 0.127) (netNameRef "D9") )
+ (line (pt 518.84 344.86) (pt 518.84 349.38) (width 0.127) (netNameRef "D8") )
+ (line (pt 518.72 343.54) (pt 518.72 344.74) (width 0.127) (netNameRef "D8") )
+ (line (pt 518.86 343.4) (pt 518.72 343.54) (width 0.127) (netNameRef "D8") )
+ (line (pt 518.72 344.74) (pt 518.84 344.86) (width 0.127) (netNameRef "D8") )
+ (line (pt 518.5 345.0) (pt 518.5 350.0) (width 0.127) (netNameRef "D9") )
+ (line (pt 521.66 346.34) (pt 521.24 346.76) (width 0.127) (netNameRef "D6") )
+ (line (pt 525.66 343.26) (pt 525.22 343.7) (width 0.127) (netNameRef "D1") )
+ (line (pt 524.2 343.72) (pt 524.68 343.24) (width 0.127) (netNameRef "D2") )
+ (line (pt 523.68 343.2) (pt 523.2 343.68) (width 0.127) (netNameRef "D4") )
+ (line (pt 523.2 350.74) (pt 522.74 351.2) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 519.46 354.76) (pt 520.2 354.76) (width 0.127) (netNameRef "D11") )
+ (line (pt 520.74 354.28) (pt 521.24 354.78) (width 0.127) (netNameRef "D15") )
+ (line (pt 520.7 353.22) (pt 521.22 353.74) (width 0.127) (netNameRef "D13") )
+ (line (pt 521.24 355.74) (pt 520.78 355.28) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 520.78 355.28) (pt 519.24 355.28) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 519.52 354.28) (pt 520.74 354.28) (width 0.127) (netNameRef "D15") )
+ (line (pt 522.74 351.2) (pt 522.74 355.36) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 520.22 355.74) (pt 518.6 355.74) (width 0.127) (netNameRef "30MHZ") )
+ (line (pt 519.66 353.74) (pt 520.22 353.74) (width 0.127) (netNameRef "D12") )
+ (line (pt 519.7 353.22) (pt 520.7 353.22) (width 0.127) (netNameRef "D13") )
+ (line (pt 519.88 352.72) (pt 520.18 352.72) (width 0.127) (netNameRef "D14") )
+ (line (pt 521.18 352.74) (pt 520.74 352.3) (width 0.127) (netNameRef "D10") )
+ (line (pt 520.02 352.3) (pt 520.74 352.3) (width 0.127) (netNameRef "D10") )
+ (line (pt 518.44 359.66) (pt 518.44 361.84) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 533.08 313.68) (pt 532.98 313.78) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.98 313.78) (pt 532.98 315.94) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.98 315.94) (pt 531.76 317.16) (width 0.127) (netNameRef "A18") )
+ (line (pt 531.8 315.82) (pt 531.42 316.2) (width 0.127) (netNameRef "D1") )
+ (line (pt 530.66 313.32) (pt 529.4 314.58) (width 0.127) (netNameRef "D0") )
+ (line (pt 527.18 320.88) (pt 526.46 321.6) (width 0.127) (netNameRef "D4") )
+ (line (pt 526.42 322.4) (pt 527.72 321.1) (width 0.127) (netNameRef "D3") )
+ (line (pt 526.88 326.12) (pt 530.7 322.3) (width 0.127) (netNameRef "BMOD0") )
+ (line (pt 528.68 321.62) (pt 526.3 324.0) (width 0.127) (netNameRef "D2") )
+ (line (pt 531.42 321.2) (pt 530.8 321.82) (width 0.127) (netNameRef "D1") )
+ (line (pt 530.8 321.82) (pt 529.78 321.82) (width 0.127) (netNameRef "D1") )
+ (line (pt 529.78 321.82) (pt 526.8 324.8) (width 0.127) (netNameRef "D1") )
+ (line (pt 532.9 322.3) (pt 532.1 323.1) (width 0.127) (netNameRef "BMOD1") )
+ (line (pt 532.98 322.3) (pt 532.9 322.3) (width 0.127) (netNameRef "BMOD1") )
+ (line (pt 526.1 324.9) (pt 526.1 326.4) (width 0.127) (netNameRef "D0") )
+ (line (pt 529.4 321.6) (pt 526.1 324.9) (width 0.127) (netNameRef "D0") )
+ (line (pt 526.52 325.08) (pt 526.52 326.58) (width 0.127) (netNameRef "D1") )
+ (line (pt 526.8 324.8) (pt 526.52 325.08) (width 0.127) (netNameRef "D1") )
+ (line (pt 526.2 342.7) (pt 526.88 342.02) (width 0.127) (netNameRef "BMOD0") )
+ (line (pt 531.76 337.48) (pt 526.7 342.54) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.1 337.74) (pt 527.18 342.66) (width 0.127) (netNameRef "BMOD1") )
+ (line (pt 531.72 349.26) (pt 531.2 349.78) (width 0.127) (netNameRef "PF13") )
+ (line (pt 531.2 348.76) (pt 531.7 348.26) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 531.2 348.78) (pt 531.2 348.76) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 533.28 349.26) (pt 531.72 349.26) (width 0.127) (netNameRef "PF13") )
+ (line (pt 532.56 348.74) (pt 532.2 348.74) (width 0.127) (netNameRef "PPI") )
+ (line (pt 531.7 348.26) (pt 532.56 348.26) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 532.6 347.74) (pt 530.2 347.74) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 529.24 347.74) (pt 529.66 347.32) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 526.7 343.2) (pt 526.2 343.7) (width 0.127) (netNameRef "A18") )
+ (line (pt 529.22 344.32) (pt 529.22 344.74) (width 0.127) (netNameRef "A5") )
+ (line (pt 529.64 343.9) (pt 529.22 344.32) (width 0.127) (netNameRef "A5") )
+ (line (pt 529.64 344.46) (pt 529.64 345.28) (width 0.127) (netNameRef "A4") )
+ (line (pt 529.64 345.28) (pt 529.2 345.72) (width 0.127) (netNameRef "A4") )
+ (line (pt 529.88 344.22) (pt 529.64 344.46) (width 0.127) (netNameRef "A4") )
+ (line (pt 528.22 343.34) (pt 528.22 343.74) (width 0.127) (netNameRef "A7") )
+ (line (pt 530.68 345.24) (pt 530.2 345.72) (width 0.127) (netNameRef "A2") )
+ (line (pt 531.2 344.78) (pt 531.2 344.12) (width 0.127) (netNameRef "A0") )
+ (line (pt 529.66 347.32) (pt 530.22 347.32) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 531.82 345.12) (pt 531.18 345.76) (width 0.127) (netNameRef "A1") )
+ (line (pt 531.82 344.02) (pt 531.82 345.12) (width 0.127) (netNameRef "A1") )
+ (line (pt 531.18 350.68) (pt 531.18 350.76) (width 0.127) (netNameRef "PF0") )
+ (line (pt 531.72 351.22) (pt 531.22 351.72) (width 0.127) (netNameRef "PF1") )
+ (line (pt 531.58 352.36) (pt 531.2 352.74) (width 0.127) (netNameRef "PF9") )
+ (line (pt 531.62 353.32) (pt 531.2 353.74) (width 0.127) (netNameRef "PF12") )
+ (line (pt 531.16 356.68) (pt 531.66 357.18) (width 0.12) (netNameRef "7NCONF") )
+ (line (pt 532.24 356.74) (pt 532.16 356.66) (width 0.12) (netNameRef "CONFD7") )
+ (line (pt 533.28 352.78) (pt 532.22 352.78) (width 0.127) (netNameRef "PF11") )
+ (line (pt 533.1 353.32) (pt 531.62 353.32) (width 0.127) (netNameRef "PF12") )
+ (line (pt 533.04 353.74) (pt 532.2 353.74) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 532.42 354.72) (pt 531.18 354.72) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 531.9 355.66) (pt 530.16 355.66) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 536.84 310.84) (pt 536.32 311.36) (width 0.127) (netNameRef "A7") )
+ (line (pt 537.78 310.82) (pt 537.26 311.34) (width 0.127) (netNameRef "A5") )
+ (line (pt 539.8 310.82) (pt 540.32 311.34) (width 0.127) (netNameRef "A1") )
+ (line (pt 538.84 310.8) (pt 538.34 311.3) (width 0.127) (netNameRef "A3") )
+ (line (pt 540.8 360.78) (pt 539.92 359.9) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 541.3 311.2) (pt 541.3 309.7) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 541.68 315.64) (pt 544.3 313.02) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 548.0 315.3) (pt 546.3 317.0) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 545.6 321.3) (pt 542.44 324.46) (width 0.127) (netNameRef "PF13") )
+ (line (pt 542.78 325.12) (pt 545.6 322.3) (width 0.127) (netNameRef "PF10") )
+ (line (pt 544.3 324.7) (pt 543.12 325.88) (width 0.127) (netNameRef "PF0") )
+ (line (pt 545.6 324.3) (pt 543.46 326.44) (width 0.127) (netNameRef "PF6") )
+ (line (pt 547.9 323.3) (pt 548.32 323.72) (width 0.127) (netNameRef "PF9") )
+ (line (pt 545.3 326.9) (pt 544.88 327.32) (width 0.127) (netNameRef "PF1") )
+ (line (pt 546.3 336.5) (pt 545.16 337.64) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 548.24 342.82) (pt 547.98 342.82) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 547.98 342.82) (pt 547.58 342.42) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 545.16 337.64) (pt 545.16 340.18) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 545.42 337.78) (pt 545.42 340.28) (width 0.127) (netNameRef "PF9") )
+ (line (pt 545.68 337.92) (pt 545.68 340.38) (width 0.127) (netNameRef "PF11") )
+ (line (pt 548.14 342.32) (pt 547.84 342.02) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 546.2 338.2) (pt 546.2 340.58) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 545.94 338.06) (pt 545.94 340.48) (width 0.127) (netNameRef "PF12") )
+ (line (pt 546.46 338.34) (pt 546.46 340.68) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 546.76 338.5) (pt 546.76 340.8) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 547.84 342.02) (pt 547.84 339.08) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 547.58 342.42) (pt 547.58 338.98) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 548.22 344.8) (pt 547.06 343.64) (width 0.127) (netNameRef "4_IO7") )
+ (line (pt 543.98 357.88) (pt 544.0 357.9) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 542.66 359.82) (pt 542.08 360.4) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 542.08 360.4) (pt 541.24 360.4) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 543.36 359.94) (pt 542.52 360.78) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 543.84 359.04) (pt 543.84 362.6) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 545.9 364.66) (pt 543.84 362.6) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 544.82 358.72) (pt 544.82 362.98) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 544.82 362.98) (pt 546.36 364.52) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 555.44 304.36) (pt 555.44 302.68) (width 0.2) (netNameRef "PF2") )
+ (line (pt 553.44 301.3) (pt 553.34 301.2) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 553.44 301.3) (pt 550.72 304.02) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 550.26 341.82) (pt 550.82 341.26) (width 0.127) (netNameRef "3_IO5") )
+ (line (pt 550.22 340.8) (pt 550.72 340.3) (width 0.127) (netNameRef "4_IO0") )
+ (line (pt 550.72 340.3) (pt 550.72 338.96) (width 0.127) (netNameRef "4_IO0") )
+ (line (pt 549.26 341.84) (pt 549.78 341.32) (width 0.127) (netNameRef "4_IO2") )
+ (line (pt 550.26 342.82) (pt 550.76 342.32) (width 0.127) (netNameRef "3_IO3") )
+ (line (pt 548.72 341.38) (pt 548.72 338.58) (width 0.127) (netNameRef "4_IO3") )
+ (line (pt 550.26 339.84) (pt 550.26 338.92) (width 0.127) (netNameRef "4_IO1") )
+ (line (pt 549.78 341.32) (pt 549.78 339.0) (width 0.127) (netNameRef "4_IO2") )
+ (line (pt 550.82 341.26) (pt 551.3 341.26) (width 0.127) (netNameRef "3_IO5") )
+ (line (pt 550.76 342.32) (pt 551.56 342.32) (width 0.127) (netNameRef "3_IO3") )
+ (line (pt 549.72 343.32) (pt 549.26 343.78) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 550.22 344.8) (pt 550.64 344.38) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 549.22 344.82) (pt 549.74 345.34) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 550.64 344.38) (pt 551.72 344.38) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 551.72 344.38) (pt 552.7 343.4) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 549.74 345.34) (pt 553.42 345.34) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 553.42 345.34) (pt 555.02 343.74) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 551.42 343.32) (pt 549.72 343.32) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 552.16 350.82) (pt 551.7 351.28) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 552.22 351.76) (pt 551.72 352.26) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 552.24 352.74) (pt 552.24 354.02) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 553.24 352.72) (pt 553.66 353.14) (width 0.127) (netNameRef "TMS7") )
+ (line (pt 553.66 353.14) (pt 553.66 357.06) (width 0.127) (netNameRef "TMS7") )
+ (line (pt 553.66 357.06) (pt 552.66 358.06) (width 0.127) (netNameRef "TMS7") )
+ (line (pt 551.72 352.26) (pt 551.72 354.06) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 551.72 354.06) (pt 550.7 355.08) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 551.2 351.78) (pt 550.62 352.36) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 550.62 352.36) (pt 549.9 352.36) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 549.9 352.36) (pt 549.7 352.16) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 549.7 352.16) (pt 548.9 352.16) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 552.24 354.02) (pt 551.66 354.6) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 552.66 362.34) (pt 549.52 365.48) (width 0.127) (netNameRef "TMS7") )
+ (line (pt 551.66 362.34) (pt 549.1 364.9) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 549.1 366.66) (pt 549.12 366.68) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 558.82 281.36) (pt 557.34 279.88) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 560.86 286.6) (pt 560.76 286.26) (width 0.2) (netNameRef "PF2") )
+ (line (pt 557.84 293.7) (pt 558.82 292.72) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 557.12 303.32) (pt 559.12 301.32) (width 0.2) (netNameRef "MISO") )
+ (line (pt 559.12 301.32) (pt 562.92 301.32) (width 0.2) (netNameRef "MISO") )
+ (line (pt 562.8 300.02) (pt 559.28 300.02) (width 0.2) (netNameRef "PF3") )
+ (line (pt 563.26 301.32) (pt 562.92 301.32) (width 0.2) (netNameRef "MISO") )
+ (line (pt 563.24 348.78) (pt 563.72 348.3) (width 0.127) (netNameRef "3_~OE1") )
+ (line (pt 561.68 357.26) (pt 561.22 356.8) (width 0.127) (netNameRef "TP12") )
+ (line (pt 558.18 356.8) (pt 558.74 357.36) (width 0.127) (netNameRef "TP3") )
+ (line (pt 557.22 356.78) (pt 557.54 357.1) (width 0.127) (netNameRef "TP9") )
+ (line (pt 559.2 356.8) (pt 559.92 357.52) (width 0.127) (netNameRef "TP11") )
+ (line (pt 560.18 356.76) (pt 560.2 356.78) (width 0.127) (netNameRef "TP5") )
+ (line (pt 560.22 353.82) (pt 560.2 353.84) (width 0.127) (netNameRef "VD7") )
+ (line (pt 560.16 354.82) (pt 560.2 354.82) (width 0.127) (netNameRef "VD5") )
+ (line (pt 560.2 354.82) (pt 560.7 354.32) (width 0.127) (netNameRef "VD5") )
+ (line (pt 560.4 354.28) (pt 559.7 354.28) (width 0.127) (netNameRef "VD6") )
+ (line (pt 559.7 354.28) (pt 559.18 354.8) (width 0.127) (netNameRef "VD6") )
+ (line (pt 559.58 353.42) (pt 559.16 353.84) (width 0.127) (netNameRef "VD8") )
+ (line (pt 562.84 352.32) (pt 561.74 353.42) (width 0.127) (netNameRef "VD8") )
+ (line (pt 561.74 353.42) (pt 559.58 353.42) (width 0.127) (netNameRef "VD8") )
+ (line (pt 560.6 354.08) (pt 560.4 354.28) (width 0.127) (netNameRef "VD6") )
+ (line (pt 561.18 354.78) (pt 561.18 355.82) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 561.18 355.82) (pt 562.68 357.32) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 562.68 357.32) (pt 563.3 357.32) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 563.64 355.24) (pt 563.18 354.78) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 563.64 356.86) (pt 563.64 355.24) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 562.7 355.36) (pt 562.16 354.82) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 562.7 356.32) (pt 562.7 355.36) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 557.26 359.26) (pt 557.7 359.7) (width 0.127) (netNameRef "TP8") )
+ (line (pt 557.7 359.7) (pt 557.7 362.84) (width 0.127) (netNameRef "TP8") )
+ (line (pt 556.7 358.3) (pt 556.7 362.54) (width 0.127) (netNameRef "TP1") )
+ (line (pt 561.06 360.64) (pt 561.06 359.6) (width 0.127) (netNameRef "TP5") )
+ (line (pt 561.06 359.6) (pt 560.2 358.74) (width 0.127) (netNameRef "TP5") )
+ (line (pt 560.78 360.76) (pt 560.78 359.72) (width 0.127) (netNameRef "TP11") )
+ (line (pt 560.78 359.72) (pt 559.92 358.86) (width 0.127) (netNameRef "TP11") )
+ (line (pt 559.2 359.98) (pt 559.2 358.78) (width 0.127) (netNameRef "TP4") )
+ (line (pt 559.86 361.86) (pt 559.28 361.86) (width 0.127) (netNameRef "TP2") )
+ (line (pt 565.94 279.38) (pt 566.74 278.58) (width 0.2) (netNameRef "PF8") )
+ (line (pt 566.54 292.4) (pt 565.94 291.8) (width 0.2) (netNameRef "PF8") )
+ (line (pt 565.04 348.8) (pt 567.24 348.8) (width 0.127) (netNameRef "NSTAT7") )
+ (line (pt 565.26 349.7) (pt 564.66 350.3) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 564.54 349.3) (pt 565.04 348.8) (width 0.127) (netNameRef "NSTAT7") )
+ (line (pt 566.78 346.24) (pt 567.42 346.24) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 566.22 346.8) (pt 566.78 346.24) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 565.56 347.46) (pt 565.2 347.82) (width 0.12) (netNameRef "3_P_RQ") )
+ (line (pt 567.22 346.8) (pt 567.34 346.8) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 566.02 353.34) (pt 565.54 353.82) (width 0.127) (netNameRef "VD7") )
+ (line (pt 566.06 354.22) (pt 565.92 354.08) (width 0.127) (netNameRef "VD6") )
+ (line (pt 565.76 355.0) (pt 566.0 355.24) (width 0.127) (netNameRef "VD5") )
+ (line (pt 565.76 354.76) (pt 565.76 355.0) (width 0.127) (netNameRef "VD5") )
+ (line (pt 565.32 354.32) (pt 565.76 354.76) (width 0.127) (netNameRef "VD5") )
+ (line (pt 564.64 355.22) (pt 564.2 354.78) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 564.64 356.72) (pt 564.64 355.22) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 565.38 357.46) (pt 564.64 356.72) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 564.72 359.34) (pt 564.2 358.82) (width 0.127) (netNameRef "TP6") )
+ (line (pt 564.72 362.42) (pt 564.72 359.34) (width 0.127) (netNameRef "TP6") )
+ (line (pt 567.52 365.22) (pt 564.72 362.42) (width 0.127) (netNameRef "TP6") )
+ (line (pt 567.24 360.78) (pt 567.76 361.3) (width 0.2) (netNameRef "TP13") )
+ (line (pt 567.22 358.84) (pt 567.3 358.76) (width 0.2) (netNameRef "TP14") )
+ (line (pt 571.58 342.56) (pt 572.94 342.56) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 572.94 342.56) (pt 577.82 337.68) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 572.8 342.22) (pt 577.68 337.34) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 576.92 347.02) (pt 576.48 347.46) (width 0.12) (netNameRef "3_P_RQ") )
+ (line (pt 579.94 338.2) (pt 585.1 338.2) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 581.82 354.22) (pt 584.72 351.32) (width 0.127) (netNameRef "VD6") )
+ (line (pt 582.64 355.24) (pt 584.44 353.44) (width 0.127) (netNameRef "VD5") )
+ (line (pt 583.74 380.24) (pt 583.74 375.98) (width 0.127) (netNameRef "TP2") )
+ (line (pt 585.0 376.84) (pt 585.0 379.0) (width 0.127) (netNameRef "TP9") )
+ (line (pt 586.04 377.48) (pt 586.04 380.04) (width 0.127) (netNameRef "TP3") )
+ (line (pt 582.5 375.14) (pt 582.5 379.0) (width 0.127) (netNameRef "TP8") )
+ (line (pt 581.58 374.62) (pt 581.58 380.58) (width 0.127) (netNameRef "TP1") )
+ (line (pt 586.38 377.42) (pt 586.38 379.74) (width 0.127) (netNameRef "TP4") )
+ (line (pt 591.14 378.88) (pt 591.14 380.14) (width 0.127) (netNameRef "TP5") )
+ (line (pt 593.8 380.3) (pt 593.8 377.3) (width 0.127) (netNameRef "TP6") )
+ (line (pt 586.92 380.28) (pt 589.04 380.28) (width 0.127) (netNameRef "TP4") )
+ (line (pt 592.5 379.0) (pt 592.5 376.92) (width 0.127) (netNameRef "TP12") )
+ (line (pt 587.5 378.1) (pt 587.5 379.0) (width 0.127) (netNameRef "TP10") )
+ (line (pt 590.0 381.24) (pt 590.0 381.5) (width 0.127) (netNameRef "TP4") )
+ (line (pt 606.26 348.82) (pt 605.74 349.34) (width 0.127) (netNameRef "VD7") )
+ (line (pt 605.98 353.44) (pt 606.2 353.66) (width 0.127) (netNameRef "VD5") )
+ (line (pt 614.86 303.34) (pt 614.88 303.32) (width 0.127) (netNameRef "4_IO6") )
+ (line (pt 616.06 304.0) (pt 616.08 303.98) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 614.84 304.58) (pt 614.9 304.64) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 614.84 305.86) (pt 614.9 305.92) (width 0.127) (netNameRef "4_IO2") )
+ (line (pt 614.88 307.16) (pt 614.94 307.22) (width 0.127) (netNameRef "4_IO0") )
+ (line (pt 613.4 312.3) (pt 613.34 312.3) (width 0.127) (netNameRef "3_IO7") )
+ (line (pt 613.34 312.3) (pt 613.3 312.26) (width 0.127) (netNameRef "3_IO7") )
+ (line (pt 614.86 314.16) (pt 614.94 314.24) (width 0.127) (netNameRef "3_IO4") )
+ (line (pt 612.12 407.6) (pt 612.4 407.88) (width 0.2) (netNameRef "1S") )
+ (line (pt 621.96 285.86) (pt 623.2 284.62) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 623.18 293.08) (pt 621.04 295.22) (width 0.127) (netNameRef "3_P_RQ") )
+ (line (pt 620.24 295.16) (pt 621.96 293.44) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 621.58 308.62) (pt 622.98 307.22) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 617.5 317.9) (pt 620.24 315.16) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 617.34 317.48) (pt 619.62 315.2) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 621.76 323.9) (pt 622.76 322.9) (width 0.127) (netNameRef "3_~OE1") )
+ (line (pt 620.1 410.74) (pt 621.2 409.64) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 619.66 410.1) (pt 620.04 410.1) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 620.04 410.1) (pt 620.9 409.24) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 620.1 409.44) (pt 620.66 408.88) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 620.28 408.16) (pt 619.64 408.8) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 619.78 415.64) (pt 620.46 414.96) (width 0.2) (netNameRef "1_RQ") )
+ (line (pt 621.16 425.1) (pt 621.16 424.88) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 621.16 423.98) (pt 621.16 425.1) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 627.6 311.64) (pt 627.6 308.64) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 626.72 312.28) (pt 628.12 312.28) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 628.12 312.28) (pt 629.0 311.4) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 629.0 311.4) (pt 629.0 308.44) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 627.6 312.92) (pt 628.8 312.92) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 629.56 313.56) (pt 626.72 313.56) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 627.56 314.24) (pt 630.64 314.24) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 631.32 314.92) (pt 626.72 314.92) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 631.68 314.56) (pt 631.32 314.92) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 631.48 316.16) (pt 626.8 316.16) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 627.32 435.64) (pt 631.56 435.64) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 626.6 436.28) (pt 629.84 436.28) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 626.6 437.6) (pt 626.64 437.64) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 626.64 437.64) (pt 628.16 437.64) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 627.28 436.92) (pt 629.2 436.92) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 636.0 263.2) (pt 636.0 264.0) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 636.0 264.0) (pt 638.44 266.44) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 638.82 267.62) (pt 638.48 267.62) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 635.72 315.56) (pt 637.32 317.16) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 638.66 433.68) (pt 638.92 433.94) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 636.6 436.48) (pt 638.92 436.48) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 637.18 439.02) (pt 638.92 439.02) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 633.12 434.96) (pt 637.18 439.02) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 637.48 441.56) (pt 638.92 441.56) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 637.66 444.1) (pt 638.92 444.1) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 636.72 446.98) (pt 638.92 449.18) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 636.72 446.2) (pt 636.72 446.98) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 634.56 445.56) (pt 634.56 447.28) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 638.92 451.64) (pt 638.92 451.72) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 641.46 385.68) (pt 640.18 386.96) (width 0.2) (netNameRef "10M") )
+ (line (pt 640.26 414.96) (pt 641.46 416.16) (width 0.2) (netNameRef "1_RQ") )
+ (line (pt 376.914 280.254) (pt 376.914 292.446) (width 0.7) (netNameRef "NET00042") )
+ (line (pt 443.78 327.02) (pt 443.78 330.98) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 492.8 315.0) (pt 492.8 330.7) (width 0.15) (netNameRef "USB+") )
+ (line (pt 492.5 330.9) (pt 492.5 315.5) (width 0.15) (netNameRef "USB-") )
+ (line (pt 500.44 336.48) (pt 500.44 317.48) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 497.86 335.0) (pt 497.86 317.34) (width 0.127) (netNameRef "30MHZ") )
+ (line (pt 501.0 357.8) (pt 502.0 358.8) (width 0.15) (netNameRef "USB+") )
+ (line (pt 515.1 387.92) (pt 515.1 395.24) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 518.84 349.38) (pt 521.18 351.72) (width 0.127) (netNameRef "D8") )
+ (line (pt 518.5 350.0) (pt 520.22 351.72) (width 0.127) (netNameRef "D9") )
+ (line (pt 522.74 355.36) (pt 518.44 359.66) (width 0.2) (netNameRef "60MHZ") )
+ (line (pt 527.18 315.32) (pt 527.18 320.88) (width 0.127) (netNameRef "D4") )
+ (line (pt 527.72 321.1) (pt 527.72 314.22) (width 0.127) (netNameRef "D3") )
+ (line (pt 528.68 314.3) (pt 528.68 321.62) (width 0.127) (netNameRef "D2") )
+ (line (pt 531.42 316.2) (pt 531.42 321.2) (width 0.127) (netNameRef "D1") )
+ (line (pt 529.4 314.58) (pt 529.4 321.6) (width 0.127) (netNameRef "D0") )
+ (line (pt 531.76 317.16) (pt 531.76 337.48) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.1 323.1) (pt 532.1 337.74) (width 0.127) (netNameRef "BMOD1") )
+ (line (pt 531.7 350.16) (pt 531.18 350.68) (width 0.127) (netNameRef "PF0") )
+ (line (pt 526.7 342.54) (pt 526.7 343.2) (width 0.127) (netNameRef "A18") )
+ (line (pt 529.22 342.68) (pt 529.22 343.72) (width 0.127) (netNameRef "A6") )
+ (line (pt 529.64 342.6) (pt 529.64 343.9) (width 0.127) (netNameRef "A5") )
+ (line (pt 529.88 342.7) (pt 529.88 344.22) (width 0.127) (netNameRef "A4") )
+ (line (pt 530.22 342.7) (pt 530.22 344.74) (width 0.127) (netNameRef "A3") )
+ (line (pt 530.68 342.58) (pt 530.68 345.24) (width 0.127) (netNameRef "A2") )
+ (line (pt 539.24 312.54) (pt 539.8 311.98) (width 0.127) (netNameRef "A0") )
+ (line (pt 534.32 313.68) (pt 534.32 336.62) (width 0.127) (netNameRef "A16") )
+ (line (pt 538.34 311.3) (pt 538.34 334.58) (width 0.127) (netNameRef "A3") )
+ (line (pt 537.8 311.96) (pt 537.8 334.78) (width 0.127) (netNameRef "A4") )
+ (line (pt 537.26 311.34) (pt 537.26 334.98) (width 0.127) (netNameRef "A5") )
+ (line (pt 536.82 311.9) (pt 536.82 335.08) (width 0.127) (netNameRef "A6") )
+ (line (pt 536.32 311.36) (pt 536.32 335.24) (width 0.127) (netNameRef "A7") )
+ (line (pt 538.84 311.96) (pt 538.84 334.42) (width 0.127) (netNameRef "A2") )
+ (line (pt 539.24 336.08) (pt 539.24 312.54) (width 0.127) (netNameRef "A0") )
+ (line (pt 540.66 336.88) (pt 540.66 311.84) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 540.32 311.34) (pt 540.32 335.52) (width 0.127) (netNameRef "A1") )
+ (line (pt 537.2 357.18) (pt 539.92 359.9) (width 0.12) (netNameRef "7NCONF") )
+ (line (pt 540.72 359.88) (pt 537.58 356.74) (width 0.12) (netNameRef "CONFD7") )
+ (line (pt 545.7 317.3) (pt 542.02 320.98) (width 0.127) (netNameRef "PPI") )
+ (line (pt 544.3 313.02) (pt 544.3 309.7) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 546.3 317.0) (pt 546.3 336.5) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 548.32 323.72) (pt 548.32 334.88) (width 0.127) (netNameRef "PF9") )
+ (line (pt 548.32 334.88) (pt 545.42 337.78) (width 0.127) (netNameRef "PF9") )
+ (line (pt 547.16 354.84) (pt 547.16 366.74) (width 0.127) (netNameRef "TCK7") )
+ (line (pt 543.36 356.54) (pt 543.36 359.94) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 542.66 356.24) (pt 542.66 359.82) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 541.6 359.88) (pt 541.6 356.82) (width 0.127) (netNameRef "NSTAT7") )
+ (line (pt 548.14 365.16) (pt 548.14 366.7) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 545.8 355.26) (pt 545.8 359.9) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 548.26 343.88) (pt 547.32 342.94) (width 0.127) (netNameRef "4_IO6") )
+ (line (pt 543.98 357.88) (pt 544.82 358.72) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 545.9 368.4) (pt 545.9 364.66) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 546.36 364.52) (pt 546.36 368.18) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 556.06 303.24) (pt 556.06 306.34) (width 0.2) (netNameRef "PF3") )
+ (line (pt 553.34 301.2) (pt 553.34 287.48) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 553.44 278.58) (pt 553.44 285.6) (width 0.2) (netNameRef "SCK") )
+ (line (pt 549.2 313.3) (pt 549.2 335.2) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 548.88 322.28) (pt 548.88 335.12) (width 0.127) (netNameRef "PF12") )
+ (line (pt 549.86 320.12) (pt 549.86 334.94) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 552.66 358.06) (pt 552.66 362.34) (width 0.127) (netNameRef "TMS7") )
+ (line (pt 549.1 364.9) (pt 549.1 366.66) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 550.7 355.08) (pt 550.7 362.6) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 551.66 354.6) (pt 551.66 362.34) (width 0.127) (netNameRef "TDI7") )
+ (line (pt 549.34 342.84) (pt 548.82 342.32) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 555.02 343.74) (pt 555.02 342.38) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 552.7 343.4) (pt 552.7 342.8) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 551.42 343.32) (pt 551.78 342.96) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 551.78 342.96) (pt 551.78 342.46) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 560.86 297.26) (pt 560.86 286.6) (width 0.2) (netNameRef "PF2") )
+ (line (pt 558.82 292.72) (pt 558.82 281.36) (width 0.2) (netNameRef "MOSI") )
+ (line (pt 557.2 289.36) (pt 557.2 292.4) (width 0.2) (netNameRef "SCK") )
+ (line (pt 559.2 357.76) (pt 559.64 358.2) (width 0.127) (netNameRef "TP10") )
+ (line (pt 557.26 357.82) (pt 557.26 359.26) (width 0.127) (netNameRef "TP8") )
+ (line (pt 557.54 357.1) (pt 557.54 359.12) (width 0.127) (netNameRef "TP9") )
+ (line (pt 557.7 362.84) (pt 563.14 368.28) (width 0.127) (netNameRef "TP8") )
+ (line (pt 556.7 362.54) (pt 562.76 368.6) (width 0.127) (netNameRef "TP1") )
+ (line (pt 561.68 360.86) (pt 561.68 357.26) (width 0.127) (netNameRef "TP12") )
+ (line (pt 560.2 358.74) (pt 560.2 356.78) (width 0.127) (netNameRef "TP5") )
+ (line (pt 559.92 358.86) (pt 559.92 357.52) (width 0.127) (netNameRef "TP11") )
+ (line (pt 559.64 360.02) (pt 559.64 358.2) (width 0.127) (netNameRef "TP10") )
+ (line (pt 558.74 359.92) (pt 558.74 357.36) (width 0.127) (netNameRef "TP3") )
+ (line (pt 565.94 291.8) (pt 565.94 279.38) (width 0.2) (netNameRef "PF8") )
+ (line (pt 564.44 288.98) (pt 564.44 300.14) (width 0.2) (netNameRef "MISO") )
+ (line (pt 584.5 349.34) (pt 580.5 353.34) (width 0.127) (netNameRef "VD7") )
+ (line (pt 585.0 381.5) (pt 583.74 380.24) (width 0.127) (netNameRef "TP2") )
+ (line (pt 581.58 380.58) (pt 582.5 381.5) (width 0.127) (netNameRef "TP1") )
+ (line (pt 591.14 380.14) (pt 592.5 381.5) (width 0.127) (netNameRef "TP5") )
+ (line (pt 589.04 380.28) (pt 590.0 381.24) (width 0.127) (netNameRef "TP4") )
+ (line (pt 597.5 381.5) (pt 596.34 380.34) (width 0.2) (netNameRef "TP7") )
+ (line (pt 596.34 380.34) (pt 596.34 370.02) (width 0.2) (netNameRef "TP7") )
+ (line (pt 597.5 370.72) (pt 597.5 379.0) (width 0.2) (netNameRef "TP14") )
+ (line (pt 621.96 293.44) (pt 621.96 285.86) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 634.44 434.32) (pt 636.6 436.48) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 634.56 447.28) (pt 638.92 451.64) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 640.18 266.44) (pt 641.36 267.62) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 500.5 358.34) (pt 500.5 338.9) (width 0.15) (netNameRef "USB-") )
+ (line (pt 501.0 338.9) (pt 501.0 357.8) (width 0.15) (netNameRef "USB+") )
+ (line (pt 514.02 322.16) (pt 514.02 349.32) (width 0.127) (netNameRef "D11") )
+ (line (pt 514.58 326.4) (pt 514.58 349.34) (width 0.127) (netNameRef "D15") )
+ (line (pt 516.22 324.02) (pt 516.22 349.74) (width 0.127) (netNameRef "D13") )
+ (line (pt 515.8 322.38) (pt 515.8 349.88) (width 0.127) (netNameRef "D12") )
+ (line (pt 516.78 324.82) (pt 516.78 349.62) (width 0.127) (netNameRef "D14") )
+ (line (pt 517.46 349.74) (pt 517.46 321.42) (width 0.127) (netNameRef "D10") )
+ (line (pt 519.82 318.38) (pt 519.82 346.36) (width 0.127) (netNameRef "D5") )
+ (line (pt 518.32 320.52) (pt 518.32 344.82) (width 0.127) (netNameRef "D9") )
+ (line (pt 518.86 319.84) (pt 518.86 343.4) (width 0.127) (netNameRef "D8") )
+ (line (pt 521.66 318.78) (pt 521.66 346.34) (width 0.127) (netNameRef "D6") )
+ (line (pt 522.22 342.64) (pt 522.22 318.34) (width 0.127) (netNameRef "D7") )
+ (line (pt 525.2 342.68) (pt 525.2 327.3) (width 0.127) (netNameRef "D0") )
+ (line (pt 525.66 327.44) (pt 525.66 343.26) (width 0.127) (netNameRef "D1") )
+ (line (pt 524.68 343.24) (pt 524.68 325.62) (width 0.127) (netNameRef "D2") )
+ (line (pt 524.18 324.64) (pt 524.18 342.66) (width 0.127) (netNameRef "D3") )
+ (line (pt 523.68 324.38) (pt 523.68 343.2) (width 0.127) (netNameRef "D4") )
+ (line (pt 522.78 317.72) (pt 522.78 342.22) (width 0.127) (netNameRef "A17") )
+ (line (pt 525.18 356.72) (pt 525.18 377.84) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 526.88 342.02) (pt 526.88 326.12) (width 0.127) (netNameRef "BMOD0") )
+ (line (pt 542.44 324.46) (pt 542.44 340.1) (width 0.127) (netNameRef "PF13") )
+ (line (pt 542.78 340.76) (pt 542.78 325.12) (width 0.127) (netNameRef "PF10") )
+ (line (pt 542.02 320.98) (pt 542.02 339.28) (width 0.127) (netNameRef "PPI") )
+ (line (pt 541.3 312.0) (pt 541.3 339.04) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 541.68 339.14) (pt 541.68 315.64) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 543.12 325.88) (pt 543.12 341.02) (width 0.127) (netNameRef "PF0") )
+ (line (pt 543.46 326.44) (pt 543.46 341.08) (width 0.127) (netNameRef "PF6") )
+ (line (pt 544.88 340.06) (pt 544.88 327.32) (width 0.127) (netNameRef "PF1") )
+ (line (pt 547.32 342.94) (pt 547.32 338.88) (width 0.127) (netNameRef "4_IO6") )
+ (line (pt 547.06 343.64) (pt 547.06 338.78) (width 0.127) (netNameRef "4_IO7") )
+ (line (pt 550.72 304.02) (pt 550.72 334.54) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 595.0 369.4) (pt 595.0 379.0) (width 0.2) (netNameRef "TP13") )
+ (line (pt 621.58 316.1) (pt 621.58 308.62) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 621.04 295.22) (pt 621.04 315.34) (width 0.127) (netNameRef "3_P_RQ") )
+ (line (pt 620.24 315.16) (pt 620.24 295.16) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 619.62 315.2) (pt 619.62 308.46) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 620.9 409.24) (pt 620.9 390.22) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 620.66 408.88) (pt 620.66 390.32) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 620.28 390.34) (pt 620.28 408.16) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 621.2 409.64) (pt 621.2 390.02) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 627.92 396.94) (pt 627.92 406.18) (width 0.2) (netNameRef "10M") )
+ (line (pt 526.26 356.76) (pt 526.26 397.16) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 381.88 263.6) (pt 380.6 264.88) (width 0.15) (netNameRef "USB-") )
+ (line (pt 380.6 262.34) (pt 381.84 261.1) (width 0.15) (netNameRef "USB+") )
+ (line (pt 442.68 332.08) (pt 440.84 332.08) (width 0.4) (netNameRef "NET00028") )
+ (line (pt 483.02 319.36) (pt 478.48 319.36) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 483.06 321.38) (pt 478.64 321.38) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 514.9 354.36) (pt 506.02 354.36) (width 0.127) (netNameRef "RXF") )
+ (line (pt 540.66 311.84) (pt 541.3 311.2) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 547.9 322.3) (pt 548.6 323.0) (width 0.127) (netNameRef "PF11") )
+ (line (pt 547.9 321.3) (pt 548.88 322.28) (width 0.127) (netNameRef "PF12") )
+ (line (pt 525.2 327.3) (pt 526.1 326.4) (width 0.127) (netNameRef "D0") )
+ (line (pt 526.52 326.58) (pt 525.66 327.44) (width 0.127) (netNameRef "D1") )
+ (line (pt 526.42 322.4) (pt 524.18 324.64) (width 0.127) (netNameRef "D3") )
+ (line (pt 523.68 324.38) (pt 526.46 321.6) (width 0.127) (netNameRef "D4") )
+ (line (pt 524.68 325.62) (pt 526.3 324.0) (width 0.127) (netNameRef "D2") )
+ (line (pt 548.26 341.84) (pt 548.72 341.38) (width 0.127) (netNameRef "4_IO3") )
+ (line (pt 548.82 342.32) (pt 548.14 342.32) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 534.32 336.62) (pt 528.22 342.72) (width 0.127) (netNameRef "A16") )
+ (line (pt 533.82 349.72) (pt 532.22 349.72) (width 0.127) (netNameRef "PF10") )
+ (line (pt 533.98 350.16) (pt 531.7 350.16) (width 0.127) (netNameRef "PF0") )
+ (line (pt 549.32 352.68) (pt 547.16 354.84) (width 0.127) (netNameRef "TCK7") )
+ (line (pt 551.7 351.28) (pt 548.62 351.28) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 548.62 351.28) (pt 543.36 356.54) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 531.66 357.18) (pt 537.2 357.18) (width 0.12) (netNameRef "7NCONF") )
+ (line (pt 537.58 356.74) (pt 532.24 356.74) (width 0.12) (netNameRef "CONFD7") )
+ (line (pt 548.9 352.16) (pt 545.8 355.26) (width 0.127) (netNameRef "7DATA0") )
+ (line (pt 533.82 350.72) (pt 532.2 350.72) (width 0.127) (netNameRef "PF6") )
+ (line (pt 533.72 351.22) (pt 531.72 351.22) (width 0.127) (netNameRef "PF1") )
+ (line (pt 533.62 351.72) (pt 532.2 351.72) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 533.34 352.36) (pt 531.58 352.36) (width 0.127) (netNameRef "PF9") )
+ (line (pt 525.2 355.7) (pt 526.26 356.76) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 541.24 360.4) (pt 540.72 359.88) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 542.52 360.78) (pt 540.8 360.78) (width 0.127) (netNameRef "7NCONF") )
+ (line (pt 550.7 362.6) (pt 548.14 365.16) (width 0.127) (netNameRef "TDO7") )
+ (line (pt 526.26 397.16) (pt 525.34 398.08) (width 0.2) (netNameRef "10MHZ") )
+ (line (pt 562.94 287.48) (pt 564.44 288.98) (width 0.2) (netNameRef "MISO") )
+ (line (pt 553.44 285.6) (pt 557.2 289.36) (width 0.2) (netNameRef "SCK") )
+ (line (pt 559.28 300.02) (pt 556.06 303.24) (width 0.2) (netNameRef "PF3") )
+ (line (pt 564.44 300.14) (pt 563.26 301.32) (width 0.2) (netNameRef "MISO") )
+ (line (pt 571.44 342.22) (pt 572.8 342.22) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 563.22 347.82) (pt 563.82 347.22) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 563.82 347.22) (pt 570.92 347.22) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 576.48 347.46) (pt 565.56 347.46) (width 0.12) (netNameRef "3_P_RQ") )
+ (line (pt 563.72 348.3) (pt 577.28 348.3) (width 0.127) (netNameRef "3_~OE1") )
+ (line (pt 566.2 347.88) (pt 577.04 347.88) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 556.22 356.78) (pt 557.26 357.82) (width 0.127) (netNameRef "TP8") )
+ (line (pt 580.5 353.34) (pt 566.02 353.34) (width 0.127) (netNameRef "VD7") )
+ (line (pt 565.54 353.82) (pt 560.22 353.82) (width 0.127) (netNameRef "VD7") )
+ (line (pt 581.08 352.32) (pt 562.84 352.32) (width 0.127) (netNameRef "VD8") )
+ (line (pt 565.92 354.08) (pt 560.6 354.08) (width 0.127) (netNameRef "VD6") )
+ (line (pt 560.7 354.32) (pt 565.32 354.32) (width 0.127) (netNameRef "VD5") )
+ (line (pt 564.44 358.06) (pt 562.7 356.32) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 566.0 355.24) (pt 582.64 355.24) (width 0.127) (netNameRef "VD5") )
+ (line (pt 566.06 354.22) (pt 581.82 354.22) (width 0.127) (netNameRef "VD6") )
+ (line (pt 564.56 357.78) (pt 563.64 356.86) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 581.72 365.22) (pt 567.52 365.22) (width 0.127) (netNameRef "TP6") )
+ (line (pt 566.48 365.66) (pt 581.24 365.66) (width 0.127) (netNameRef "TP12") )
+ (line (pt 561.68 360.86) (pt 566.48 365.66) (width 0.127) (netNameRef "TP12") )
+ (line (pt 575.56 368.6) (pt 562.76 368.6) (width 0.127) (netNameRef "TP1") )
+ (line (pt 563.14 368.28) (pt 575.64 368.28) (width 0.127) (netNameRef "TP8") )
+ (line (pt 566.58 366.16) (pt 578.42 366.16) (width 0.127) (netNameRef "TP5") )
+ (line (pt 566.46 366.44) (pt 577.44 366.44) (width 0.127) (netNameRef "TP11") )
+ (line (pt 576.12 366.72) (pt 566.34 366.72) (width 0.127) (netNameRef "TP10") )
+ (line (pt 576.12 367.16) (pt 566.38 367.16) (width 0.127) (netNameRef "TP4") )
+ (line (pt 576.0 367.44) (pt 566.26 367.44) (width 0.127) (netNameRef "TP3") )
+ (line (pt 575.88 367.72) (pt 566.14 367.72) (width 0.127) (netNameRef "TP9") )
+ (line (pt 575.76 368.0) (pt 566.0 368.0) (width 0.127) (netNameRef "TP2") )
+ (line (pt 605.74 349.34) (pt 584.5 349.34) (width 0.127) (netNameRef "VD7") )
+ (line (pt 606.26 346.3) (pt 587.1 346.3) (width 0.127) (netNameRef "VD8") )
+ (line (pt 584.44 353.44) (pt 605.98 353.44) (width 0.127) (netNameRef "VD5") )
+ (line (pt 606.26 351.32) (pt 584.72 351.32) (width 0.127) (netNameRef "VD6") )
+ (line (pt 586.38 379.74) (pt 586.92 380.28) (width 0.127) (netNameRef "TP4") )
+ (line (pt 638.44 266.44) (pt 640.18 266.44) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 640.08 301.92) (pt 641.36 300.64) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 634.32 301.92) (pt 640.08 301.92) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 640.1 304.44) (pt 641.36 303.18) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 633.0 304.44) (pt 640.1 304.44) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 640.08 307.0) (pt 641.36 305.72) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 634.72 307.0) (pt 640.08 307.0) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 641.36 308.26) (pt 640.1 309.52) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 640.1 309.52) (pt 633.6 309.52) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 640.04 312.12) (pt 641.36 310.8) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 632.76 312.12) (pt 640.04 312.12) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 621.04 315.34) (pt 617.12 319.26) (width 0.127) (netNameRef "3_P_RQ") )
+ (line (pt 641.36 313.34) (pt 640.14 314.56) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 640.14 314.56) (pt 631.68 314.56) (width 0.2) (netNameRef "3_OUT2") )
+ (line (pt 627.56 315.56) (pt 635.72 315.56) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 640.08 317.16) (pt 641.36 315.88) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 637.32 317.16) (pt 640.08 317.16) (width 0.2) (netNameRef "3_OUT1") )
+ (line (pt 641.36 318.42) (pt 640.06 319.72) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 640.06 319.72) (pt 635.04 319.72) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 635.04 319.72) (pt 631.48 316.16) (width 0.2) (netNameRef "3_OUT0") )
+ (line (pt 640.18 386.96) (pt 637.9 386.96) (width 0.2) (netNameRef "10M") )
+ (line (pt 620.46 414.96) (pt 640.26 414.96) (width 0.2) (netNameRef "1_RQ") )
+ (line (pt 638.92 416.16) (pt 628.98 416.16) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 626.6 433.68) (pt 638.66 433.68) (width 0.2) (netNameRef "2_OUT7") )
+ (line (pt 626.6 434.96) (pt 633.12 434.96) (width 0.2) (netNameRef "2_OUT5") )
+ (line (pt 631.56 435.64) (pt 637.48 441.56) (width 0.2) (netNameRef "2_OUT4") )
+ (line (pt 500.5 338.9) (pt 492.5 330.9) (width 0.15) (netNameRef "USB-") )
+ (line (pt 492.8 330.7) (pt 501.0 338.9) (width 0.15) (netNameRef "USB+") )
+ (line (pt 514.02 349.32) (pt 519.46 354.76) (width 0.127) (netNameRef "D11") )
+ (line (pt 514.58 349.34) (pt 519.52 354.28) (width 0.127) (netNameRef "D15") )
+ (line (pt 516.22 349.74) (pt 519.7 353.22) (width 0.127) (netNameRef "D13") )
+ (line (pt 515.8 349.88) (pt 519.66 353.74) (width 0.127) (netNameRef "D12") )
+ (line (pt 516.78 349.62) (pt 519.88 352.72) (width 0.127) (netNameRef "D14") )
+ (line (pt 517.46 349.74) (pt 520.02 352.3) (width 0.127) (netNameRef "D10") )
+ (line (pt 548.6 323.0) (pt 548.6 335.0) (width 0.127) (netNameRef "PF11") )
+ (line (pt 548.6 335.0) (pt 545.68 337.92) (width 0.127) (netNameRef "PF11") )
+ (line (pt 548.88 335.12) (pt 545.94 338.06) (width 0.127) (netNameRef "PF12") )
+ (line (pt 549.2 335.2) (pt 546.2 338.2) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 549.86 334.94) (pt 546.46 338.34) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 550.72 334.54) (pt 546.76 338.5) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 528.9 311.6) (pt 522.78 317.72) (width 0.127) (netNameRef "A17") )
+ (line (pt 542.44 340.1) (pt 533.28 349.26) (width 0.127) (netNameRef "PF13") )
+ (line (pt 542.78 340.76) (pt 533.82 349.72) (width 0.127) (netNameRef "PF10") )
+ (line (pt 542.02 339.28) (pt 532.56 348.74) (width 0.127) (netNameRef "PPI") )
+ (line (pt 548.6 350.3) (pt 542.66 356.24) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 541.6 356.82) (pt 549.12 349.3) (width 0.127) (netNameRef "NSTAT7") )
+ (line (pt 543.12 341.02) (pt 533.98 350.16) (width 0.127) (netNameRef "PF0") )
+ (line (pt 543.46 341.08) (pt 533.82 350.72) (width 0.127) (netNameRef "PF6") )
+ (line (pt 533.72 351.22) (pt 544.88 340.06) (width 0.127) (netNameRef "PF1") )
+ (line (pt 546.76 340.8) (pt 531.9 355.66) (width 0.2) (netNameRef "W/VP") )
+ (line (pt 546.46 340.68) (pt 532.42 354.72) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 545.94 340.48) (pt 533.1 353.32) (width 0.127) (netNameRef "PF12") )
+ (line (pt 546.2 340.58) (pt 533.04 353.74) (width 0.127) (netNameRef "CLKIN") )
+ (line (pt 545.16 340.18) (pt 533.62 351.72) (width 0.127) (netNameRef "~DRES") )
+ (line (pt 545.42 340.28) (pt 533.34 352.36) (width 0.127) (netNameRef "PF9") )
+ (line (pt 545.68 340.38) (pt 533.28 352.78) (width 0.127) (netNameRef "PF11") )
+ (line (pt 555.44 302.68) (pt 560.86 297.26) (width 0.2) (netNameRef "PF2") )
+ (line (pt 556.18 357.78) (pt 556.7 358.3) (width 0.127) (netNameRef "TP1") )
+ (line (pt 561.06 360.64) (pt 566.58 366.16) (width 0.127) (netNameRef "TP5") )
+ (line (pt 560.78 360.76) (pt 566.46 366.44) (width 0.127) (netNameRef "TP11") )
+ (line (pt 566.34 366.72) (pt 559.64 360.02) (width 0.127) (netNameRef "TP10") )
+ (line (pt 566.38 367.16) (pt 559.2 359.98) (width 0.127) (netNameRef "TP4") )
+ (line (pt 566.26 367.44) (pt 558.74 359.92) (width 0.127) (netNameRef "TP3") )
+ (line (pt 566.14 367.72) (pt 557.54 359.12) (width 0.127) (netNameRef "TP9") )
+ (line (pt 566.0 368.0) (pt 559.86 361.86) (width 0.127) (netNameRef "TP2") )
+ (line (pt 567.42 346.24) (pt 571.44 342.22) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 567.34 346.8) (pt 571.58 342.56) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 563.3 357.32) (pt 564.32 358.34) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 585.1 338.2) (pt 604.72 318.58) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 585.14 337.68) (pt 604.92 317.9) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 584.82 337.34) (pt 604.68 317.48) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 586.9 361.3) (pt 595.0 369.4) (width 0.2) (netNameRef "TP13") )
+ (line (pt 595.0 381.5) (pt 593.8 380.3) (width 0.127) (netNameRef "TP6") )
+ (line (pt 586.04 380.04) (pt 587.5 381.5) (width 0.127) (netNameRef "TP3") )
+ (line (pt 631.88 259.08) (pt 636.0 263.2) (width 0.2) (netNameRef "D_IN") )
+ (line (pt 638.48 267.62) (pt 631.8 260.94) (width 0.2) (netNameRef "~D_IN") )
+ (line (pt 629.0 308.44) (pt 633.0 304.44) (width 0.2) (netNameRef "3_OUT6") )
+ (line (pt 617.24 320.44) (pt 621.58 316.1) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 633.6 309.52) (pt 629.56 313.56) (width 0.2) (netNameRef "3_OUT4") )
+ (line (pt 630.64 314.24) (pt 632.76 312.12) (width 0.2) (netNameRef "3_OUT3") )
+ (line (pt 637.9 386.96) (pt 627.92 396.94) (width 0.2) (netNameRef "10M") )
+ (line (pt 628.98 416.16) (pt 621.16 423.98) (width 0.2) (netNameRef "2_RQ") )
+ (line (pt 627.36 434.32) (pt 634.44 434.32) (width 0.2) (netNameRef "2_OUT6") )
+ (line (pt 629.84 436.28) (pt 637.66 444.1) (width 0.2) (netNameRef "2_OUT3") )
+ (line (pt 629.2 436.92) (pt 638.92 446.64) (width 0.2) (netNameRef "2_OUT2") )
+ (line (pt 628.16 437.64) (pt 636.72 446.2) (width 0.2) (netNameRef "2_OUT1") )
+ (line (pt 627.24 438.24) (pt 634.56 445.56) (width 0.2) (netNameRef "2_OUT0") )
+ (line (pt 519.24 355.28) (pt 500.44 336.48) (width 0.127) (netNameRef "~DMA_WR") )
+ (line (pt 518.6 355.74) (pt 497.86 335.0) (width 0.127) (netNameRef "30MHZ") )
+ (line (pt 532.56 348.26) (pt 541.68 339.14) (width 0.127) (netNameRef "~AMS0") )
+ (line (pt 541.3 339.04) (pt 532.6 347.74) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 536.32 335.24) (pt 528.22 343.34) (width 0.127) (netNameRef "A7") )
+ (line (pt 536.82 335.08) (pt 529.22 342.68) (width 0.127) (netNameRef "A6") )
+ (line (pt 537.26 334.98) (pt 529.64 342.6) (width 0.127) (netNameRef "A5") )
+ (line (pt 537.8 334.78) (pt 529.88 342.7) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.34 334.58) (pt 530.22 342.7) (width 0.127) (netNameRef "A3") )
+ (line (pt 538.84 334.42) (pt 530.68 342.58) (width 0.127) (netNameRef "A2") )
+ (line (pt 531.2 344.12) (pt 539.24 336.08) (width 0.127) (netNameRef "A0") )
+ (line (pt 530.22 347.32) (pt 540.66 336.88) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 540.32 335.52) (pt 531.82 344.02) (width 0.127) (netNameRef "A1") )
+ (line (pt 581.58 374.62) (pt 575.56 368.6) (width 0.127) (netNameRef "TP1") )
+ (line (pt 575.64 368.28) (pt 582.5 375.14) (width 0.127) (netNameRef "TP8") )
+ (line (pt 570.92 347.22) (pt 579.94 338.2) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 555.02 342.38) (pt 580.58 316.82) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 552.7 342.8) (pt 579.32 316.18) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 596.34 370.02) (pt 586.14 359.82) (width 0.2) (netNameRef "TP7") )
+ (line (pt 585.54 358.76) (pt 597.5 370.72) (width 0.2) (netNameRef "TP14") )
+ (line (pt 627.6 308.64) (pt 634.32 301.92) (width 0.2) (netNameRef "3_OUT7") )
+ (line (pt 628.8 312.92) (pt 634.72 307.0) (width 0.2) (netNameRef "3_OUT5") )
+ (line (pt 388.4 262.8) (pt 440.6 262.8) (width 0.15) (netNameRef "USB+") )
+ (line (pt 440.5 263.5) (pt 384.9 263.5) (width 0.15) (netNameRef "USB-") )
+ (line (pt 443.88 286.62) (pt 386.66 286.62) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 444.3 285.18) (pt 385.56 285.18) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 443.28 288.14) (pt 386.64 288.14) (width 0.2) (netNameRef "NET00256") )
+ (line (pt 583.12 302.72) (pt 613.36 302.72) (width 0.127) (netNameRef "4_IO7") )
+ (line (pt 582.86 303.34) (pt 614.86 303.34) (width 0.127) (netNameRef "4_IO6") )
+ (line (pt 582.56 304.0) (pt 616.06 304.0) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 582.34 304.58) (pt 614.84 304.58) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 582.04 305.26) (pt 616.1 305.26) (width 0.127) (netNameRef "4_IO3") )
+ (line (pt 582.92 305.86) (pt 614.84 305.86) (width 0.127) (netNameRef "4_IO2") )
+ (line (pt 582.62 306.56) (pt 616.08 306.56) (width 0.127) (netNameRef "4_IO1") )
+ (line (pt 582.52 307.16) (pt 614.88 307.16) (width 0.127) (netNameRef "4_IO0") )
+ (line (pt 613.3 312.26) (pt 578.78 312.26) (width 0.127) (netNameRef "3_IO7") )
+ (line (pt 614.78 312.94) (pt 579.02 312.94) (width 0.127) (netNameRef "3_IO6") )
+ (line (pt 578.98 313.58) (pt 616.02 313.58) (width 0.127) (netNameRef "3_IO5") )
+ (line (pt 578.86 314.16) (pt 614.86 314.16) (width 0.127) (netNameRef "3_IO4") )
+ (line (pt 579.0 314.88) (pt 616.08 314.88) (width 0.127) (netNameRef "3_IO3") )
+ (line (pt 578.72 315.52) (pt 614.86 315.52) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 579.32 316.18) (pt 616.08 316.18) (width 0.127) (netNameRef "3_IO1") )
+ (line (pt 580.58 316.82) (pt 614.96 316.82) (width 0.127) (netNameRef "3_IO0") )
+ (line (pt 617.12 319.26) (pt 604.68 319.26) (width 0.127) (netNameRef "3_P_RQ") )
+ (line (pt 604.72 318.58) (pt 615.78 318.58) (width 0.127) (netNameRef "3_DIR1") )
+ (line (pt 604.92 317.9) (pt 617.5 317.9) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 604.68 317.48) (pt 617.34 317.48) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 621.76 323.9) (pt 601.68 323.9) (width 0.127) (netNameRef "3_~OE1") )
+ (line (pt 604.48 320.44) (pt 617.24 320.44) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 577.68 337.34) (pt 584.82 337.34) (width 0.127) (netNameRef "4_DIR1") )
+ (line (pt 577.82 337.68) (pt 585.14 337.68) (width 0.127) (netNameRef "4_P_RQ") )
+ (line (pt 564.66 350.3) (pt 548.6 350.3) (width 0.127) (netNameRef "CONFD7") )
+ (line (pt 549.12 349.3) (pt 564.54 349.3) (width 0.127) (netNameRef "NSTAT7") )
+ (line (pt 588.46 357.78) (pt 564.56 357.78) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 588.4 358.06) (pt 564.44 358.06) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 588.64 357.46) (pt 565.38 357.46) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 567.76 361.3) (pt 586.9 361.3) (width 0.2) (netNameRef "TP13") )
+ (line (pt 586.14 359.82) (pt 567.22 359.82) (width 0.2) (netNameRef "TP7") )
+ (line (pt 567.3 358.76) (pt 585.54 358.76) (width 0.2) (netNameRef "TP14") )
+ (line (pt 564.32 358.34) (pt 588.28 358.34) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 584.34 406.84) (pt 615.62 406.84) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 584.38 406.2) (pt 616.34 406.2) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 587.1 346.3) (pt 581.08 352.32) (width 0.127) (netNameRef "VD8") )
+ (line (pt 525.18 377.84) (pt 515.1 387.92) (width 0.2) (netNameRef "SHIM") )
+ (line (pt 481.32 326.18) (pt 443.28 288.14) (width 0.2) (netNameRef "NET00256") )
+ (line (pt 478.64 321.38) (pt 443.88 286.62) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 478.48 319.36) (pt 444.3 285.18) (width 0.2) (netNameRef "USB_DM") )
+ (line (pt 492.5 315.5) (pt 440.5 263.5) (width 0.15) (netNameRef "USB-") )
+ (line (pt 593.8 377.3) (pt 581.72 365.22) (width 0.127) (netNameRef "TP6") )
+ (line (pt 592.5 376.92) (pt 581.24 365.66) (width 0.127) (netNameRef "TP12") )
+ (line (pt 583.74 375.98) (pt 575.76 368.0) (width 0.127) (netNameRef "TP2") )
+ (line (pt 576.12 366.72) (pt 587.5 378.1) (width 0.127) (netNameRef "TP10") )
+ (line (pt 577.44 366.44) (pt 590.0 379.0) (width 0.127) (netNameRef "TP11") )
+ (line (pt 578.42 366.16) (pt 591.14 378.88) (width 0.127) (netNameRef "TP5") )
+ (line (pt 586.38 377.42) (pt 576.12 367.16) (width 0.127) (netNameRef "TP4") )
+ (line (pt 586.04 377.48) (pt 576.0 367.44) (width 0.127) (netNameRef "TP3") )
+ (line (pt 585.0 376.84) (pt 575.88 367.72) (width 0.127) (netNameRef "TP9") )
+ (line (pt 547.06 338.78) (pt 583.12 302.72) (width 0.127) (netNameRef "4_IO7") )
+ (line (pt 547.32 338.88) (pt 582.86 303.34) (width 0.127) (netNameRef "4_IO6") )
+ (line (pt 547.58 338.98) (pt 582.56 304.0) (width 0.127) (netNameRef "4_IO5") )
+ (line (pt 547.84 339.08) (pt 582.34 304.58) (width 0.127) (netNameRef "4_IO4") )
+ (line (pt 548.72 338.58) (pt 582.04 305.26) (width 0.127) (netNameRef "4_IO3") )
+ (line (pt 549.78 339.0) (pt 582.92 305.86) (width 0.127) (netNameRef "4_IO2") )
+ (line (pt 550.26 338.92) (pt 582.62 306.56) (width 0.127) (netNameRef "4_IO1") )
+ (line (pt 550.72 338.96) (pt 582.52 307.16) (width 0.127) (netNameRef "4_IO0") )
+ (line (pt 578.78 312.26) (pt 551.24 339.8) (width 0.127) (netNameRef "3_IO7") )
+ (line (pt 551.22 340.74) (pt 579.02 312.94) (width 0.127) (netNameRef "3_IO6") )
+ (line (pt 601.68 323.9) (pt 577.28 348.3) (width 0.127) (netNameRef "3_~OE1") )
+ (line (pt 551.22 341.8) (pt 578.86 314.16) (width 0.127) (netNameRef "3_IO4") )
+ (line (pt 551.3 341.26) (pt 578.98 313.58) (width 0.127) (netNameRef "3_IO5") )
+ (line (pt 577.04 347.88) (pt 604.48 320.44) (width 0.127) (netNameRef "4_~OE1") )
+ (line (pt 551.78 342.46) (pt 578.72 315.52) (width 0.127) (netNameRef "3_IO2") )
+ (line (pt 551.56 342.32) (pt 579.0 314.88) (width 0.127) (netNameRef "3_IO3") )
+ (line (pt 604.68 319.26) (pt 576.92 347.02) (width 0.127) (netNameRef "3_P_RQ") )
+ (line (pt 440.6 262.8) (pt 492.8 315.0) (width 0.15) (netNameRef "USB+") )
+ (line (pt 545.9 368.4) (pt 584.34 406.84) (width 0.127) (netNameRef "I_10M") )
+ (line (pt 546.36 368.18) (pt 584.38 406.2) (width 0.127) (netNameRef "I_1S") )
+ (line (pt 588.28 358.34) (pt 620.28 390.34) (width 0.127) (netNameRef "P_BLOK") )
+ (line (pt 620.66 390.32) (pt 588.4 358.06) (width 0.127) (netNameRef "~P_ZAP") )
+ (line (pt 620.9 390.22) (pt 588.46 357.78) (width 0.127) (netNameRef "P_PUSK") )
+ (line (pt 621.2 390.02) (pt 588.64 357.46) (width 0.127) (netNameRef "P_RES") )
+ (line (pt 494.34 407.6) (pt 612.12 407.6) (width 0.2) (netNameRef "1S") )
+ )
+ (layerContents (layerNumRef 16)
+ (line (pt 385.72 262.38) (pt 385.72 264.04) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 383.14 259.8) (pt 385.72 262.38) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 386.64 286.6) (pt 386.44 286.4) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 449.36 331.82) (pt 448.98 331.44) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 448.48 332.7) (pt 448.12 332.34) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 490.66 322.9) (pt 490.5 323.06) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 490.5 323.06) (pt 490.24 323.06) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 495.16 351.96) (pt 494.32 351.12) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 498.0 323.7) (pt 497.2 322.9) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 497.32 376.82) (pt 495.72 376.82) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 495.72 379.36) (pt 497.0 379.36) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 508.24 354.26) (pt 507.6 353.62) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 521.72 347.3) (pt 522.26 346.76) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 523.18 355.74) (pt 523.08 355.74) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 522.22 353.74) (pt 521.72 353.24) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 521.72 353.24) (pt 519.64 353.24) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 522.24 354.76) (pt 521.74 354.26) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 519.64 353.24) (pt 518.36 351.96) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 522.22 352.74) (pt 521.7 352.22) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 521.7 352.22) (pt 519.56 352.22) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 519.56 352.22) (pt 518.94 351.6) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 521.1 350.62) (pt 522.2 351.72) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 532.24 311.36) (pt 532.82 310.78) (width 0.127) (netNameRef "A14") )
+ (line (pt 526.3 310.4) (pt 528.58 308.12) (width 0.127) (netNameRef "SA10") )
+ (line (pt 527.18 315.32) (pt 527.22 315.36) (width 0.127) (netNameRef "D4") )
+ (line (pt 528.96 317.9) (pt 530.56 316.3) (width 0.127) (netNameRef "D5") )
+ (line (pt 530.66 313.32) (pt 528.72 315.26) (width 0.127) (netNameRef "D0") )
+ (line (pt 533.08 313.68) (pt 532.48 314.28) (width 0.127) (netNameRef "A18") )
+ (line (pt 531.9 317.66) (pt 532.24 317.32) (width 0.127) (netNameRef "A14") )
+ (line (pt 531.66 315.96) (pt 531.8 315.82) (width 0.127) (netNameRef "D1") )
+ (line (pt 530.56 316.3) (pt 530.56 316.22) (width 0.127) (netNameRef "D5") )
+ (line (pt 530.56 317.3) (pt 530.56 317.26) (width 0.127) (netNameRef "D7") )
+ (line (pt 529.44 319.42) (pt 530.56 318.3) (width 0.127) (netNameRef "D9") )
+ (line (pt 529.2 318.66) (pt 530.56 317.3) (width 0.127) (netNameRef "D7") )
+ (line (pt 530.58 320.32) (pt 530.04 320.86) (width 0.127) (netNameRef "D12") )
+ (line (pt 530.28 321.6) (pt 530.6 321.28) (width 0.127) (netNameRef "D14") )
+ (line (pt 532.48 320.98) (pt 532.14 321.32) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.38 321.96) (pt 533.0 321.34) (width 0.127) (netNameRef "D15") )
+ (line (pt 528.24 357.68) (pt 528.06 357.86) (width 0.2) (netNameRef "4S") )
+ (line (pt 534.76 310.82) (pt 535.36 311.42) (width 0.127) (netNameRef "A10") )
+ (line (pt 535.78 310.82) (pt 536.3 311.34) (width 0.127) (netNameRef "A8") )
+ (line (pt 534.18 311.18) (pt 533.8 310.8) (width 0.127) (netNameRef "A12") )
+ (line (pt 533.82 312.0) (pt 533.76 311.94) (width 0.127) (netNameRef "A13") )
+ (line (pt 536.84 310.84) (pt 537.38 311.38) (width 0.127) (netNameRef "A7") )
+ (line (pt 538.32 311.36) (pt 537.78 310.82) (width 0.127) (netNameRef "A5") )
+ (line (pt 538.84 310.8) (pt 539.32 311.28) (width 0.127) (netNameRef "A3") )
+ (line (pt 539.08 312.2) (pt 538.84 311.96) (width 0.127) (netNameRef "A2") )
+ (line (pt 540.46 311.48) (pt 539.8 310.82) (width 0.127) (netNameRef "A1") )
+ (line (pt 534.74 312.68) (pt 535.18 313.12) (width 0.127) (netNameRef "A11") )
+ (line (pt 535.36 312.84) (pt 537.34 314.82) (width 0.127) (netNameRef "A10") )
+ (line (pt 534.4 316.24) (pt 533.82 315.66) (width 0.127) (netNameRef "A13") )
+ (line (pt 534.4 318.56) (pt 534.4 316.24) (width 0.127) (netNameRef "A13") )
+ (line (pt 533.92 318.76) (pt 534.22 319.06) (width 0.127) (netNameRef "D3") )
+ (line (pt 533.92 317.76) (pt 533.92 318.76) (width 0.127) (netNameRef "D3") )
+ (line (pt 534.16 318.66) (pt 534.94 319.44) (width 0.127) (netNameRef "D2") )
+ (line (pt 534.16 316.34) (pt 534.16 318.66) (width 0.127) (netNameRef "D2") )
+ (line (pt 535.18 319.34) (pt 534.4 318.56) (width 0.127) (netNameRef "A13") )
+ (line (pt 534.94 313.96) (pt 534.94 313.22) (width 0.127) (netNameRef "A12") )
+ (line (pt 535.18 313.12) (pt 535.18 313.86) (width 0.127) (netNameRef "A11") )
+ (line (pt 536.02 319.38) (pt 534.82 318.18) (width 0.127) (netNameRef "D6") )
+ (line (pt 537.1 315.18) (pt 535.6 313.68) (width 0.127) (netNameRef "A17") )
+ (line (pt 535.18 313.86) (pt 536.86 315.54) (width 0.127) (netNameRef "A11") )
+ (line (pt 536.62 315.64) (pt 534.94 313.96) (width 0.127) (netNameRef "A12") )
+ (line (pt 534.32 313.68) (pt 536.38 315.74) (width 0.127) (netNameRef "A16") )
+ (line (pt 535.78 312.92) (pt 537.58 314.72) (width 0.127) (netNameRef "A9") )
+ (line (pt 536.3 313.1) (pt 537.82 314.62) (width 0.127) (netNameRef "A8") )
+ (line (pt 536.82 313.26) (pt 538.06 314.5) (width 0.127) (netNameRef "A6") )
+ (line (pt 537.38 313.34) (pt 538.3 314.26) (width 0.127) (netNameRef "A7") )
+ (line (pt 537.8 313.28) (pt 538.54 314.02) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.78 313.78) (pt 538.32 313.32) (width 0.127) (netNameRef "A5") )
+ (line (pt 535.52 321.82) (pt 535.18 321.48) (width 0.127) (netNameRef "A13") )
+ (line (pt 534.94 321.58) (pt 535.26 321.9) (width 0.127) (netNameRef "D2") )
+ (line (pt 542.1 292.2) (pt 542.06 292.2) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 545.14 295.24) (pt 542.1 292.2) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 541.42 308.12) (pt 545.6 312.3) (width 0.127) (netNameRef "SA10") )
+ (line (pt 546.4 311.8) (pt 545.14 310.54) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 541.3 309.7) (pt 542.26 310.66) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 545.6 315.3) (pt 546.4 314.5) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 545.6 320.3) (pt 547.1 321.8) (width 0.127) (netNameRef "PF15") )
+ (line (pt 547.1 321.8) (pt 548.0 321.8) (width 0.127) (netNameRef "PF15") )
+ (line (pt 547.9 324.32) (pt 547.9 324.3) (width 0.12) (netNameRef "PF7") )
+ (line (pt 547.9 326.3) (pt 548.02 326.3) (width 0.127) (netNameRef "PF4") )
+ (line (pt 547.24 348.32) (pt 547.22 348.32) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 547.14 366.76) (pt 547.16 366.74) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 544.38 385.16) (pt 547.14 382.4) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 548.14 393.4) (pt 546.38 395.16) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 555.6 341.44) (pt 555.6 342.26) (width 0.127) (netNameRef "A4") )
+ (line (pt 552.2 342.82) (pt 552.2 340.08) (width 0.127) (netNameRef "A17") )
+ (line (pt 554.22 341.76) (pt 554.22 342.78) (width 0.127) (netNameRef "A10") )
+ (line (pt 555.6 342.26) (pt 556.12 342.78) (width 0.127) (netNameRef "A4") )
+ (line (pt 556.12 342.78) (pt 556.18 342.78) (width 0.127) (netNameRef "A4") )
+ (line (pt 554.64 345.26) (pt 555.22 345.84) (width 0.127) (netNameRef "A9") )
+ (line (pt 554.88 344.42) (pt 555.26 344.8) (width 0.127) (netNameRef "A8") )
+ (line (pt 553.22 349.84) (pt 552.72 349.34) (width 0.127) (netNameRef "D13") )
+ (line (pt 551.18 348.82) (pt 551.18 348.84) (width 0.127) (netNameRef "D8") )
+ (line (pt 550.66 348.3) (pt 551.18 348.82) (width 0.127) (netNameRef "D8") )
+ (line (pt 551.76 347.38) (pt 552.22 347.84) (width 0.127) (netNameRef "D2") )
+ (line (pt 552.7 350.32) (pt 549.24 350.32) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 555.12 343.78) (pt 556.18 344.84) (width 0.127) (netNameRef "A6") )
+ (line (pt 551.68 345.34) (pt 552.18 345.84) (width 0.127) (netNameRef "D6") )
+ (line (pt 549.4 347.38) (pt 551.76 347.38) (width 0.127) (netNameRef "D2") )
+ (line (pt 549.48 347.8) (pt 550.24 347.8) (width 0.127) (netNameRef "D3") )
+ (line (pt 549.64 348.3) (pt 550.66 348.3) (width 0.127) (netNameRef "D8") )
+ (line (pt 550.22 348.84) (pt 549.84 348.84) (width 0.127) (netNameRef "D10") )
+ (line (pt 552.72 349.34) (pt 550.0 349.34) (width 0.127) (netNameRef "D13") )
+ (line (pt 552.24 349.84) (pt 550.16 349.84) (width 0.127) (netNameRef "D15") )
+ (line (pt 550.72 344.34) (pt 551.18 344.8) (width 0.127) (netNameRef "A16") )
+ (line (pt 551.22 343.84) (pt 550.72 343.34) (width 0.127) (netNameRef "A12") )
+ (line (pt 551.2 357.82) (pt 550.82 357.82) (width 0.127) (netNameRef "D5") )
+ (line (pt 551.2 356.84) (pt 550.8 356.84) (width 0.127) (netNameRef "D9") )
+ (line (pt 550.82 357.82) (pt 550.4 357.4) (width 0.127) (netNameRef "D5") )
+ (line (pt 550.6 355.24) (pt 551.2 355.84) (width 0.127) (netNameRef "D12") )
+ (line (pt 552.2 354.8) (pt 551.76 354.36) (width 0.127) (netNameRef "A15") )
+ (line (pt 550.04 355.24) (pt 550.6 355.24) (width 0.127) (netNameRef "D12") )
+ (line (pt 551.76 354.36) (pt 550.06 354.36) (width 0.127) (netNameRef "A15") )
+ (line (pt 550.18 354.82) (pt 550.22 354.82) (width 0.127) (netNameRef "D14") )
+ (line (pt 550.18 353.8) (pt 549.84 353.8) (width 0.127) (netNameRef "D1") )
+ (line (pt 551.22 353.82) (pt 551.16 353.82) (width 0.127) (netNameRef "A14") )
+ (line (pt 550.48 352.8) (pt 551.18 352.8) (width 0.127) (netNameRef "A18") )
+ (line (pt 551.16 353.82) (pt 549.4 352.06) (width 0.127) (netNameRef "A14") )
+ (line (pt 549.4 352.06) (pt 548.9 352.06) (width 0.127) (netNameRef "A14") )
+ (line (pt 550.8 356.84) (pt 550.38 356.42) (width 0.127) (netNameRef "D9") )
+ (line (pt 552.72 360.3) (pt 552.18 359.76) (width 0.12) (netNameRef "1_IO2") )
+ (line (pt 553.18 360.76) (pt 553.64 361.22) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 555.2 359.78) (pt 555.76 360.34) (width 0.12) (netNameRef "2_DIR1") )
+ (line (pt 552.5 361.1) (pt 552.16 360.76) (width 0.12) (netNameRef "1_IO1") )
+ (line (pt 554.18 360.76) (pt 554.64 361.22) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 555.18 360.74) (pt 555.54 361.1) (width 0.12) (netNameRef "2_~OE1") )
+ (line (pt 555.76 360.34) (pt 555.76 364.94) (width 0.12) (netNameRef "2_DIR1") )
+ (line (pt 550.52 361.42) (pt 551.18 360.76) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 555.54 361.1) (pt 555.54 365.3) (width 0.12) (netNameRef "2_~OE1") )
+ (line (pt 555.76 364.94) (pt 556.04 365.22) (width 0.12) (netNameRef "2_DIR1") )
+ (line (pt 554.64 361.22) (pt 554.64 365.6) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 555.54 365.3) (pt 555.54 365.44) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 555.12 361.74) (pt 555.12 365.52) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 552.64 367.02) (pt 552.5 366.88) (width 0.12) (netNameRef "1_IO1") )
+ (line (pt 553.08 366.88) (pt 552.72 366.52) (width 0.12) (netNameRef "1_IO2") )
+ (line (pt 552.38 369.94) (pt 549.12 366.68) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 559.2 342.76) (pt 559.2 342.78) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 558.32 341.9) (pt 559.2 342.78) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 558.32 341.2) (pt 558.32 341.9) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 563.2 342.74) (pt 562.62 342.16) (width 0.12) (netNameRef "PF7") )
+ (line (pt 562.26 339.66) (pt 562.26 342.82) (width 0.127) (netNameRef "PF5") )
+ (line (pt 562.62 342.16) (pt 562.62 339.04) (width 0.12) (netNameRef "PF7") )
+ (line (pt 557.8 340.1) (pt 558.3 340.1) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 558.3 340.1) (pt 559.98 341.78) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 558.2 345.8) (pt 557.6 345.2) (width 0.127) (netNameRef "A2") )
+ (line (pt 561.84 343.46) (pt 562.2 343.82) (width 0.127) (netNameRef "PF4") )
+ (line (pt 559.18 343.82) (pt 558.78 343.42) (width 0.127) (netNameRef "A1") )
+ (line (pt 558.78 343.42) (pt 557.9 343.42) (width 0.127) (netNameRef "A1") )
+ (line (pt 557.18 344.84) (pt 556.66 344.32) (width 0.127) (netNameRef "A5") )
+ (line (pt 557.9 343.42) (pt 557.62 343.14) (width 0.127) (netNameRef "A1") )
+ (line (pt 557.6 345.2) (pt 557.6 344.66) (width 0.127) (netNameRef "A2") )
+ (line (pt 557.6 344.66) (pt 556.9 343.96) (width 0.127) (netNameRef "A2") )
+ (line (pt 560.2 344.84) (pt 558.56 344.84) (width 0.127) (netNameRef "A0") )
+ (line (pt 558.56 344.84) (pt 557.38 343.66) (width 0.127) (netNameRef "A0") )
+ (line (pt 557.14 343.8) (pt 559.2 345.86) (width 0.127) (netNameRef "A3") )
+ (line (pt 562.2 344.82) (pt 562.2 344.78) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 562.2 344.78) (pt 560.4 342.98) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 561.22 344.16) (pt 561.22 344.82) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 563.22 357.76) (pt 563.18 357.8) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 563.12 355.86) (pt 563.56 356.3) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 558.66 361.22) (pt 558.18 360.74) (width 0.12) (netNameRef "2_IO6") )
+ (line (pt 557.72 360.32) (pt 557.14 359.74) (width 0.12) (netNameRef "2_IO4") )
+ (line (pt 558.66 362.18) (pt 558.66 361.22) (width 0.12) (netNameRef "2_IO6") )
+ (line (pt 558.46 362.38) (pt 558.66 362.18) (width 0.12) (netNameRef "2_IO6") )
+ (line (pt 557.16 361.06) (pt 557.16 360.74) (width 0.12) (netNameRef "2_IO3") )
+ (line (pt 558.46 363.64) (pt 558.46 362.38) (width 0.12) (netNameRef "2_IO6") )
+ (line (pt 558.6 363.78) (pt 558.46 363.64) (width 0.12) (netNameRef "2_IO6") )
+ (line (pt 557.6 361.5) (pt 557.16 361.06) (width 0.12) (netNameRef "2_IO3") )
+ (line (pt 557.82 364.14) (pt 557.82 361.4) (width 0.12) (netNameRef "2_IO4") )
+ (line (pt 557.82 361.4) (pt 557.72 361.3) (width 0.12) (netNameRef "2_IO4") )
+ (line (pt 557.72 361.3) (pt 557.72 360.32) (width 0.12) (netNameRef "2_IO4") )
+ (line (pt 557.6 364.46) (pt 557.6 361.5) (width 0.12) (netNameRef "2_IO3") )
+ (line (pt 563.72 361.3) (pt 563.16 360.74) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 558.14 361.86) (pt 558.24 361.76) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 557.6 364.72) (pt 557.6 364.46) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 557.18 364.8) (pt 557.18 361.76) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 556.7 364.82) (pt 556.7 361.28) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 558.1 364.42) (pt 557.82 364.14) (width 0.12) (netNameRef "2_IO4") )
+ (line (pt 561.7 364.5) (pt 561.7 364.76) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 562.18 360.76) (pt 562.18 364.72) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 563.72 365.26) (pt 563.72 361.3) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 563.22 365.26) (pt 563.22 361.8) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 561.2 364.84) (pt 561.2 363.9) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 560.7 364.84) (pt 560.7 364.5) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 558.88 363.52) (pt 558.88 362.54) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 558.14 363.88) (pt 558.14 361.86) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 566.56 336.82) (pt 566.56 342.16) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 566.56 342.16) (pt 567.18 342.78) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 564.36 343.24) (pt 564.94 343.82) (width 0.127) (netNameRef "PF9") )
+ (line (pt 564.94 343.82) (pt 564.94 344.6) (width 0.127) (netNameRef "PF9") )
+ (line (pt 564.94 344.6) (pt 565.2 344.86) (width 0.127) (netNameRef "PF9") )
+ (line (pt 566.0 343.64) (pt 566.2 343.84) (width 0.127) (netNameRef "PF14") )
+ (line (pt 564.6 343.14) (pt 565.48 344.02) (width 0.127) (netNameRef "PF11") )
+ (line (pt 565.48 344.48) (pt 565.76 344.76) (width 0.127) (netNameRef "PF11") )
+ (line (pt 565.48 344.02) (pt 565.48 344.48) (width 0.127) (netNameRef "PF11") )
+ (line (pt 565.76 344.76) (pt 565.76 345.38) (width 0.127) (netNameRef "PF11") )
+ (line (pt 565.76 345.38) (pt 566.2 345.82) (width 0.127) (netNameRef "PF11") )
+ (line (pt 565.72 344.38) (pt 566.18 344.84) (width 0.127) (netNameRef "PF15") )
+ (line (pt 566.18 344.84) (pt 566.2 344.84) (width 0.127) (netNameRef "PF15") )
+ (line (pt 569.62 350.32) (pt 566.68 350.32) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 569.62 349.82) (pt 567.18 349.82) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 567.7 351.38) (pt 567.16 350.84) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 569.22 351.38) (pt 567.7 351.38) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 566.7 353.26) (pt 566.2 353.76) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 570.6 353.26) (pt 566.7 353.26) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 567.2 353.8) (pt 570.78 353.8) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 565.72 354.28) (pt 565.2 354.8) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 566.66 357.3) (pt 566.18 356.82) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 569.06 352.82) (pt 566.18 352.82) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 565.64 352.34) (pt 565.18 352.8) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 568.84 352.34) (pt 565.64 352.34) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 567.1 354.82) (pt 566.18 354.82) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 567.62 355.34) (pt 567.1 354.82) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 571.12 355.34) (pt 567.62 355.34) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 567.26 356.82) (pt 567.22 356.78) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 570.96 356.82) (pt 567.26 356.82) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 564.18 359.76) (pt 564.74 360.32) (width 0.12) (netNameRef "2_P_R\\W") )
+ (line (pt 566.7 362.98) (pt 566.7 361.82) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 568.2 360.76) (pt 568.2 364.74) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 565.26 361.74) (pt 565.26 364.8) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 565.14 359.72) (pt 565.96 360.54) (width 0.12) (netNameRef "1_P_RDY") )
+ (line (pt 566.2 363.08) (pt 566.2 359.78) (width 0.12) (netNameRef "2_P_CW") )
+ (line (pt 565.96 360.54) (pt 565.96 363.44) (width 0.12) (netNameRef "1_P_RDY") )
+ (line (pt 565.74 363.78) (pt 565.74 364.78) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 565.16 360.72) (pt 565.74 361.3) (width 0.12) (netNameRef "2_P_RDY") )
+ (line (pt 565.74 361.3) (pt 565.74 363.78) (width 0.12) (netNameRef "2_P_RDY") )
+ (line (pt 565.96 363.44) (pt 566.2 363.68) (width 0.12) (netNameRef "1_P_RDY") )
+ (line (pt 566.2 363.68) (pt 566.2 364.14) (width 0.12) (netNameRef "1_P_RDY") )
+ (line (pt 566.58 363.86) (pt 566.58 363.46) (width 0.12) (netNameRef "2_P_CW") )
+ (line (pt 566.2 364.14) (pt 566.2 364.74) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 566.58 363.46) (pt 566.2 363.08) (width 0.12) (netNameRef "2_P_CW") )
+ (line (pt 567.0 363.28) (pt 566.7 362.98) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 567.7 361.82) (pt 567.7 364.74) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 567.0 364.54) (pt 567.0 363.28) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 566.58 364.62) (pt 566.58 363.86) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 564.74 360.88) (pt 564.84 360.98) (width 0.12) (netNameRef "2_P_R\\W") )
+ (line (pt 564.74 360.32) (pt 564.74 360.88) (width 0.12) (netNameRef "2_P_R\\W") )
+ (line (pt 564.62 361.18) (pt 564.62 364.4) (width 0.12) (netNameRef "1__A2") )
+ (line (pt 564.18 360.74) (pt 564.62 361.18) (width 0.12) (netNameRef "1__A2") )
+ (line (pt 564.96 364.28) (pt 564.96 365.0) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 564.84 364.16) (pt 564.96 364.28) (width 0.12) (netNameRef "2_P_R\\W") )
+ (line (pt 564.84 360.98) (pt 564.84 364.16) (width 0.12) (netNameRef "2_P_R\\W") )
+ (line (pt 564.62 364.4) (pt 564.62 365.16) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 564.2 365.24) (pt 564.2 361.78) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 597.5 379.0) (pt 597.16 379.0) (width 0.127) (netNameRef "TP14") )
+ (line (pt 613.7 285.5) (pt 610.98 285.5) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 615.06 286.2) (pt 610.78 286.2) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 613.66 286.82) (pt 610.66 286.82) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 615.06 287.48) (pt 610.5 287.48) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 613.66 288.08) (pt 610.4 288.08) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 615.06 288.76) (pt 610.22 288.76) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 616.48 297.5) (pt 616.46 297.52) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 616.2 416.3) (pt 615.9 416.0) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 616.2 426.0) (pt 615.56 425.36) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 616.16 427.26) (pt 616.2 427.3) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 622.5 282.86) (pt 620.54 284.82) (width 0.2) (netNameRef "4_RQ") )
+ (line (pt 620.4 293.6) (pt 620.54 293.6) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 620.68 412.2) (pt 621.7 413.22) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 623.04 424.64) (pt 623.46 424.64) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 618.5 420.1) (pt 623.04 424.64) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 621.2 447.56) (pt 619.86 448.9) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 449.8 303.12) (pt 449.8 307.5) (width 0.2) (netNameRef "MAX-TDI") )
+ (line (pt 450.1 302.9) (pt 450.1 306.2) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 450.4 302.7) (pt 450.4 306.0) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 450.7 302.5) (pt 450.7 305.8) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 484.92 312.1) (pt 485.66 311.36) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 484.92 317.74) (pt 484.92 312.1) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 523.08 355.74) (pt 520.0 358.82) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 523.22 359.22) (pt 523.22 356.68) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 530.56 319.3) (pt 529.68 320.18) (width 0.127) (netNameRef "D11") )
+ (line (pt 531.34 312.94) (pt 530.7 312.3) (width 0.127) (netNameRef "A15") )
+ (line (pt 532.24 317.32) (pt 532.24 311.36) (width 0.127) (netNameRef "A14") )
+ (line (pt 532.48 314.28) (pt 532.48 320.98) (width 0.127) (netNameRef "A18") )
+ (line (pt 531.34 335.64) (pt 531.34 312.94) (width 0.127) (netNameRef "A15") )
+ (line (pt 530.28 334.92) (pt 530.28 321.6) (width 0.127) (netNameRef "D14") )
+ (line (pt 530.04 320.86) (pt 530.04 335.24) (width 0.127) (netNameRef "D12") )
+ (line (pt 531.66 335.62) (pt 531.66 315.96) (width 0.127) (netNameRef "D1") )
+ (line (pt 531.9 335.06) (pt 531.9 317.66) (width 0.127) (netNameRef "A14") )
+ (line (pt 532.14 321.32) (pt 532.14 334.46) (width 0.127) (netNameRef "A18") )
+ (line (pt 532.38 332.06) (pt 532.38 321.96) (width 0.127) (netNameRef "D15") )
+ (line (pt 535.36 311.42) (pt 535.36 312.84) (width 0.127) (netNameRef "A10") )
+ (line (pt 534.18 312.46) (pt 534.18 311.18) (width 0.127) (netNameRef "A12") )
+ (line (pt 534.74 311.92) (pt 534.74 312.68) (width 0.127) (netNameRef "A11") )
+ (line (pt 533.82 315.66) (pt 533.82 312.0) (width 0.127) (netNameRef "A13") )
+ (line (pt 537.38 311.38) (pt 537.38 313.34) (width 0.127) (netNameRef "A7") )
+ (line (pt 537.8 311.96) (pt 537.8 313.28) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.32 313.32) (pt 538.32 311.36) (width 0.127) (netNameRef "A5") )
+ (line (pt 540.22 312.4) (pt 539.8 311.98) (width 0.127) (netNameRef "A0") )
+ (line (pt 540.46 323.92) (pt 540.46 311.48) (width 0.127) (netNameRef "A1") )
+ (line (pt 540.22 324.02) (pt 540.22 312.4) (width 0.127) (netNameRef "A0") )
+ (line (pt 535.18 321.48) (pt 535.18 319.34) (width 0.127) (netNameRef "A13") )
+ (line (pt 534.94 319.44) (pt 534.94 321.58) (width 0.127) (netNameRef "D2") )
+ (line (pt 534.94 313.22) (pt 534.18 312.46) (width 0.127) (netNameRef "A12") )
+ (line (pt 535.52 333.16) (pt 535.52 321.82) (width 0.127) (netNameRef "A13") )
+ (line (pt 535.26 321.9) (pt 535.26 333.24) (width 0.127) (netNameRef "D2") )
+ (line (pt 534.22 319.06) (pt 534.22 332.54) (width 0.127) (netNameRef "D3") )
+ (line (pt 533.98 319.24) (pt 533.98 332.64) (width 0.127) (netNameRef "D8") )
+ (line (pt 533.74 332.74) (pt 533.74 320.0) (width 0.127) (netNameRef "D10") )
+ (line (pt 533.5 332.84) (pt 533.5 320.78) (width 0.127) (netNameRef "D13") )
+ (line (pt 536.02 333.32) (pt 536.02 319.38) (width 0.127) (netNameRef "D6") )
+ (line (pt 535.78 311.92) (pt 535.78 312.92) (width 0.127) (netNameRef "A9") )
+ (line (pt 536.3 311.34) (pt 536.3 313.1) (width 0.127) (netNameRef "A8") )
+ (line (pt 536.82 311.9) (pt 536.82 313.26) (width 0.127) (netNameRef "A6") )
+ (line (pt 536.38 315.74) (pt 536.38 333.26) (width 0.127) (netNameRef "A16") )
+ (line (pt 536.62 333.1) (pt 536.62 315.64) (width 0.127) (netNameRef "A12") )
+ (line (pt 536.86 315.54) (pt 536.86 332.86) (width 0.127) (netNameRef "A11") )
+ (line (pt 539.32 323.46) (pt 539.32 311.28) (width 0.127) (netNameRef "A3") )
+ (line (pt 537.1 324.98) (pt 537.1 315.18) (width 0.127) (netNameRef "A17") )
+ (line (pt 539.08 323.62) (pt 539.08 312.2) (width 0.127) (netNameRef "A2") )
+ (line (pt 538.78 323.9) (pt 538.78 313.78) (width 0.127) (netNameRef "A5") )
+ (line (pt 537.58 314.72) (pt 537.58 324.78) (width 0.127) (netNameRef "A9") )
+ (line (pt 537.82 314.62) (pt 537.82 324.68) (width 0.127) (netNameRef "A8") )
+ (line (pt 538.06 314.5) (pt 538.06 324.58) (width 0.127) (netNameRef "A6") )
+ (line (pt 538.3 314.26) (pt 538.3 324.48) (width 0.127) (netNameRef "A7") )
+ (line (pt 538.54 314.02) (pt 538.54 324.38) (width 0.127) (netNameRef "A4") )
+ (line (pt 537.34 314.82) (pt 537.34 324.88) (width 0.127) (netNameRef "A10") )
+ (line (pt 546.4 314.5) (pt 546.4 311.8) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 545.08 313.82) (pt 543.3 312.04) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 541.3 312.0) (pt 541.3 324.18) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 542.26 310.66) (pt 542.26 324.56) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 545.08 325.48) (pt 545.08 313.82) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 546.38 395.16) (pt 546.38 397.44) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 544.38 397.44) (pt 544.38 385.16) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 553.18 350.8) (pt 552.7 350.32) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 552.08 367.02) (pt 552.08 361.8) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 553.64 361.22) (pt 553.64 365.96) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 552.5 366.88) (pt 552.5 361.1) (width 0.12) (netNameRef "1_IO1") )
+ (line (pt 553.14 366.3) (pt 553.14 361.72) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 552.72 366.52) (pt 552.72 360.3) (width 0.12) (netNameRef "1_IO2") )
+ (line (pt 551.14 367.2) (pt 551.14 361.82) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 550.52 367.32) (pt 550.52 361.42) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 554.14 361.72) (pt 554.14 365.72) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 550.68 342.34) (pt 551.18 342.84) (width 0.127) (netNameRef "A11") )
+ (line (pt 554.64 341.84) (pt 554.64 345.26) (width 0.127) (netNameRef "A9") )
+ (line (pt 554.88 341.74) (pt 554.88 344.42) (width 0.127) (netNameRef "A8") )
+ (line (pt 555.12 341.64) (pt 555.12 343.78) (width 0.127) (netNameRef "A6") )
+ (line (pt 555.36 341.54) (pt 555.36 343.0) (width 0.127) (netNameRef "A7") )
+ (line (pt 552.38 397.44) (pt 552.38 369.94) (width 0.2) (netNameRef "TDI7") )
+ (line (pt 563.2 345.8) (pt 563.2 342.74) (width 0.12) (netNameRef "PF7") )
+ (line (pt 557.62 343.14) (pt 557.62 341.08) (width 0.127) (netNameRef "A1") )
+ (line (pt 557.14 341.28) (pt 557.14 343.8) (width 0.127) (netNameRef "A3") )
+ (line (pt 557.38 343.66) (pt 557.38 341.18) (width 0.127) (netNameRef "A0") )
+ (line (pt 559.98 341.78) (pt 559.98 342.92) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 560.4 342.98) (pt 560.4 340.8) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 559.98 342.92) (pt 561.22 344.16) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 556.9 343.96) (pt 556.9 341.44) (width 0.127) (netNameRef "A2") )
+ (line (pt 556.66 344.32) (pt 556.66 341.78) (width 0.127) (netNameRef "A5") )
+ (line (pt 562.2 357.78) (pt 562.68 358.26) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 561.84 340.12) (pt 561.84 343.46) (width 0.127) (netNameRef "PF4") )
+ (line (pt 559.8 399.9) (pt 559.8 372.96) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 560.16 372.48) (pt 560.16 399.76) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 560.52 399.62) (pt 560.52 372.1) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 560.88 399.48) (pt 560.88 371.84) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 561.24 399.34) (pt 561.24 371.64) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 561.6 399.2) (pt 561.6 371.5) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 561.96 371.14) (pt 561.96 399.06) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 562.38 398.98) (pt 562.38 371.02) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 562.74 398.84) (pt 562.74 370.86) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 563.1 398.7) (pt 563.1 370.72) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 563.46 398.56) (pt 563.46 370.58) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 564.36 339.76) (pt 564.36 343.24) (width 0.127) (netNameRef "PF9") )
+ (line (pt 565.72 339.52) (pt 565.72 344.38) (width 0.127) (netNameRef "PF15") )
+ (line (pt 566.68 350.32) (pt 566.2 350.8) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 564.18 398.28) (pt 564.18 369.92) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 564.54 398.14) (pt 564.54 369.72) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 574.76 398.96) (pt 574.76 372.8) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 574.38 372.92) (pt 574.38 399.16) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 574.02 399.3) (pt 574.02 373.06) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 573.66 373.2) (pt 573.66 399.44) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 573.3 399.58) (pt 573.3 373.34) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 572.94 373.48) (pt 572.94 399.72) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 572.54 399.94) (pt 572.54 373.58) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 575.12 398.82) (pt 575.12 372.66) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 575.48 372.52) (pt 575.48 398.68) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 575.84 372.38) (pt 575.84 398.54) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 610.0 289.48) (pt 613.84 289.48) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 613.1 410.1) (pt 615.2 412.2) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 615.16 434.32) (pt 614.9 434.06) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 618.5 414.5) (pt 618.5 420.1) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 628.64 403.54) (pt 626.64 405.54) (width 0.2) (netNameRef "1S") )
+ (line (pt 527.22 315.36) (pt 527.22 340.04) (width 0.127) (netNameRef "D4") )
+ (line (pt 529.68 320.18) (pt 529.68 339.1) (width 0.127) (netNameRef "D11") )
+ (line (pt 529.44 340.9) (pt 529.44 319.42) (width 0.127) (netNameRef "D9") )
+ (line (pt 529.2 341.0) (pt 529.2 318.66) (width 0.127) (netNameRef "D7") )
+ (line (pt 528.72 315.26) (pt 528.72 341.2) (width 0.127) (netNameRef "D0") )
+ (line (pt 528.96 341.1) (pt 528.96 317.9) (width 0.127) (netNameRef "D5") )
+ (line (pt 529.72 372.22) (pt 529.72 358.94) (width 0.2) (netNameRef "1S") )
+ (line (pt 529.2 357.7) (pt 529.2 371.48) (width 0.2) (netNameRef "2S") )
+ (line (pt 528.7 370.72) (pt 528.7 358.96) (width 0.2) (netNameRef "3S") )
+ (line (pt 528.06 357.86) (pt 528.06 370.22) (width 0.2) (netNameRef "4S") )
+ (line (pt 545.14 310.54) (pt 545.14 295.24) (width 0.3) (netNameRef "VROUT") )
+ (line (pt 547.14 382.4) (pt 547.14 366.76) (width 0.2) (netNameRef "TCK7") )
+ (line (pt 563.46 370.58) (pt 557.6 364.72) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 562.74 370.86) (pt 556.7 364.82) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 563.1 370.72) (pt 557.18 364.8) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 566.0 338.5) (pt 566.0 343.64) (width 0.127) (netNameRef "PF14") )
+ (line (pt 564.6 339.0) (pt 564.6 343.14) (width 0.127) (netNameRef "PF11") )
+ (line (pt 574.4 322.08) (pt 574.4 345.04) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 574.76 345.18) (pt 574.76 322.22) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 575.12 322.36) (pt 575.12 345.48) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 576.2 322.78) (pt 576.2 347.66) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 576.56 348.02) (pt 576.56 322.92) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 575.84 322.64) (pt 575.84 346.04) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 575.48 322.5) (pt 575.48 345.7) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 585.26 316.72) (pt 585.26 344.62) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 585.98 345.5) (pt 585.98 317.0) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 585.62 316.86) (pt 585.62 344.76) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 580.04 319.94) (pt 580.04 345.7) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 580.4 320.08) (pt 580.4 346.06) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 581.12 320.36) (pt 581.12 346.66) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 580.76 346.38) (pt 580.76 320.22) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 628.64 395.96) (pt 628.64 403.54) (width 0.2) (netNameRef "1S") )
+ (line (pt 548.14 366.7) (pt 548.14 393.4) (width 0.2) (netNameRef "TDO7") )
+ (line (pt 557.8 400.4) (pt 557.8 374.6) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 558.2 400.3) (pt 558.2 374.26) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 558.6 400.2) (pt 558.6 373.54) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 559.0 400.1) (pt 559.0 373.38) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 559.4 400.0) (pt 559.4 373.2) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 564.9 398.0) (pt 564.9 369.54) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 565.3 397.8) (pt 565.3 369.44) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 565.76 397.5) (pt 565.76 369.4) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 566.16 369.22) (pt 566.16 397.16) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 571.82 400.22) (pt 571.82 373.86) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 572.18 400.08) (pt 572.18 373.72) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 380.928 286.4) (pt 379.708 287.62) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 386.44 286.4) (pt 380.928 286.4) (width 0.2) (netNameRef "USB_DP") )
+ (line (pt 502.5 323.7) (pt 498.0 323.7) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 521.74 354.26) (pt 508.24 354.26) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 518.36 351.96) (pt 495.16 351.96) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 518.94 351.6) (pt 495.3 351.6) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 495.46 350.62) (pt 521.1 350.62) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 520.0 358.82) (pt 515.32 358.82) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 511.98 364.38) (pt 518.06 364.38) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 528.58 308.12) (pt 541.42 308.12) (width 0.127) (netNameRef "SA10") )
+ (line (pt 533.4 315.58) (pt 534.16 316.34) (width 0.127) (netNameRef "D2") )
+ (line (pt 533.08 318.34) (pt 533.98 319.24) (width 0.127) (netNameRef "D8") )
+ (line (pt 533.0 316.84) (pt 533.92 317.76) (width 0.127) (netNameRef "D3") )
+ (line (pt 533.5 320.78) (pt 533.04 320.32) (width 0.127) (netNameRef "D13") )
+ (line (pt 546.34 342.34) (pt 550.68 342.34) (width 0.127) (netNameRef "A11") )
+ (line (pt 549.24 350.32) (pt 547.24 348.32) (width 0.127) (netNameRef "DCLK7") )
+ (line (pt 550.16 345.82) (pt 548.18 345.82) (width 0.127) (netNameRef "A13") )
+ (line (pt 548.04 345.34) (pt 551.68 345.34) (width 0.127) (netNameRef "D6") )
+ (line (pt 550.72 343.34) (pt 546.86 343.34) (width 0.127) (netNameRef "A12") )
+ (line (pt 547.46 344.34) (pt 550.72 344.34) (width 0.127) (netNameRef "A16") )
+ (line (pt 545.34 357.82) (pt 550.22 357.82) (width 0.127) (netNameRef "D0") )
+ (line (pt 550.4 357.4) (pt 545.26 357.4) (width 0.127) (netNameRef "D5") )
+ (line (pt 550.2 356.84) (pt 545.04 356.84) (width 0.127) (netNameRef "D7") )
+ (line (pt 550.38 356.42) (pt 544.96 356.42) (width 0.127) (netNameRef "D9") )
+ (line (pt 546.42 355.84) (pt 550.18 355.84) (width 0.127) (netNameRef "D11") )
+ (line (pt 546.0 358.82) (pt 550.18 358.82) (width 0.127) (netNameRef "D4") )
+ (line (pt 548.64 397.18) (pt 548.38 397.44) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 557.2 292.4) (pt 556.18 293.42) (width 0.2) (netNameRef "SCK") )
+ (line (pt 555.36 343.0) (pt 556.2 343.84) (width 0.127) (netNameRef "A7") )
+ (line (pt 574.4 345.04) (pt 569.62 349.82) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 569.62 350.32) (pt 574.76 345.18) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 572.58 357.3) (pt 566.66 357.3) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 572.62 357.76) (pt 563.22 357.76) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 571.46 354.28) (pt 565.72 354.28) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 563.56 356.3) (pt 570.84 356.3) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 556.7 361.28) (pt 556.18 360.76) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 556.2 364.84) (pt 556.2 361.74) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 562.68 358.26) (pt 573.22 358.26) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 559.4 373.2) (pt 553.08 366.88) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 559.8 372.96) (pt 553.14 366.3) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 553.64 365.96) (pt 560.16 372.48) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 587.4 410.1) (pt 613.1 410.1) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 638.82 282.86) (pt 622.5 282.86) (width 0.2) (netNameRef "4_RQ") )
+ (line (pt 640.16 284.06) (pt 641.36 282.86) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 630.08 284.06) (pt 640.16 284.06) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 617.0 413.0) (pt 618.5 414.5) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 615.2 412.2) (pt 620.68 412.2) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 385.72 264.04) (pt 388.52 266.84) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 490.24 323.06) (pt 484.92 317.74) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 495.3 351.6) (pt 492.64 348.94) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 495.46 350.62) (pt 493.26 348.42) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 533.74 320.0) (pt 533.06 319.32) (width 0.127) (netNameRef "D10") )
+ (line (pt 549.52 365.48) (pt 548.64 366.36) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 544.96 356.42) (pt 529.44 340.9) (width 0.127) (netNameRef "D9") )
+ (line (pt 527.22 340.04) (pt 546.0 358.82) (width 0.127) (netNameRef "D4") )
+ (line (pt 528.72 341.2) (pt 545.34 357.82) (width 0.127) (netNameRef "D0") )
+ (line (pt 545.26 357.4) (pt 528.96 341.1) (width 0.127) (netNameRef "D5") )
+ (line (pt 545.04 356.84) (pt 529.2 341.0) (width 0.127) (netNameRef "D7") )
+ (line (pt 556.18 304.44) (pt 556.54 304.8) (width 0.2) (netNameRef "SCK") )
+ (line (pt 556.18 293.42) (pt 556.18 304.44) (width 0.2) (netNameRef "SCK") )
+ (line (pt 565.3 369.44) (pt 560.7 364.84) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 565.76 369.4) (pt 561.2 364.84) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 561.7 364.76) (pt 566.16 369.22) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 575.12 345.48) (pt 569.22 351.38) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 576.2 347.66) (pt 570.6 353.26) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 570.78 353.8) (pt 576.56 348.02) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 575.84 346.04) (pt 569.06 352.82) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 575.48 345.7) (pt 568.84 352.34) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 580.04 345.7) (pt 571.46 354.28) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 580.4 346.06) (pt 571.12 355.34) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 581.12 346.66) (pt 570.96 356.82) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 570.84 356.3) (pt 580.76 346.38) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 563.82 398.42) (pt 563.82 370.14) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 620.54 293.6) (pt 630.08 284.06) (width 0.2) (netNameRef "3_RQ") )
+ (line (pt 638.92 385.68) (pt 628.64 395.96) (width 0.2) (netNameRef "1S") )
+ (line (pt 484.3 348.94) (pt 467.18 331.82) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 485.22 351.12) (pt 466.8 332.7) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 485.5 353.62) (pt 467.4 335.52) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 467.22 331.06) (pt 484.58 348.42) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 515.32 358.82) (pt 497.32 376.82) (width 0.2) (netNameRef "~WDI") )
+ (line (pt 497.0 379.36) (pt 511.98 364.38) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 530.04 335.24) (pt 550.04 355.24) (width 0.127) (netNameRef "D12") )
+ (line (pt 550.18 354.82) (pt 530.28 334.92) (width 0.127) (netNameRef "D14") )
+ (line (pt 550.06 354.36) (pt 531.34 335.64) (width 0.127) (netNameRef "A15") )
+ (line (pt 532.14 334.46) (pt 550.48 352.8) (width 0.127) (netNameRef "A18") )
+ (line (pt 548.9 352.06) (pt 531.9 335.06) (width 0.127) (netNameRef "A14") )
+ (line (pt 549.84 353.8) (pt 531.66 335.62) (width 0.127) (netNameRef "D1") )
+ (line (pt 550.16 349.84) (pt 532.38 332.06) (width 0.127) (netNameRef "D15") )
+ (line (pt 550.0 349.34) (pt 533.5 332.84) (width 0.127) (netNameRef "D13") )
+ (line (pt 549.84 348.84) (pt 533.74 332.74) (width 0.127) (netNameRef "D10") )
+ (line (pt 533.98 332.64) (pt 549.64 348.3) (width 0.127) (netNameRef "D8") )
+ (line (pt 534.22 332.54) (pt 549.48 347.8) (width 0.127) (netNameRef "D3") )
+ (line (pt 535.26 333.24) (pt 549.4 347.38) (width 0.127) (netNameRef "D2") )
+ (line (pt 548.18 345.82) (pt 535.52 333.16) (width 0.127) (netNameRef "A13") )
+ (line (pt 536.02 333.32) (pt 548.04 345.34) (width 0.127) (netNameRef "D6") )
+ (line (pt 536.86 332.86) (pt 546.34 342.34) (width 0.127) (netNameRef "A11") )
+ (line (pt 546.86 343.34) (pt 536.62 333.1) (width 0.127) (netNameRef "A12") )
+ (line (pt 536.38 333.26) (pt 547.46 344.34) (width 0.127) (netNameRef "A16") )
+ (line (pt 552.2 340.08) (pt 537.1 324.98) (width 0.127) (netNameRef "A17") )
+ (line (pt 529.68 339.1) (pt 546.42 355.84) (width 0.127) (netNameRef "D11") )
+ (line (pt 565.74 364.78) (pt 574.02 373.06) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 565.26 364.8) (pt 573.66 373.2) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 574.76 372.8) (pt 566.58 364.62) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 566.2 364.74) (pt 574.38 372.92) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 559.0 373.38) (pt 552.64 367.02) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 560.52 372.1) (pt 554.14 365.72) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 560.88 371.84) (pt 554.64 365.6) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 561.24 371.64) (pt 555.12 365.52) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 561.6 371.5) (pt 555.54 365.44) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 556.04 365.22) (pt 561.96 371.14) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 562.38 371.02) (pt 556.2 364.84) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 564.96 365.0) (pt 573.3 373.34) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 564.62 365.16) (pt 572.94 373.48) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 572.54 373.58) (pt 564.2 365.24) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 572.18 373.72) (pt 563.72 365.26) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 571.82 373.86) (pt 563.22 365.26) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 562.18 364.72) (pt 571.46 374.0) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 563.82 370.14) (pt 558.1 364.42) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 564.18 369.92) (pt 558.14 363.88) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 564.54 369.72) (pt 558.6 363.78) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 564.9 369.54) (pt 558.88 363.52) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 568.2 364.74) (pt 575.84 372.38) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 567.7 364.74) (pt 575.48 372.52) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 575.12 372.66) (pt 567.0 364.54) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 605.06 296.92) (pt 585.26 316.72) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 604.96 297.52) (pt 585.62 316.86) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 585.98 317.0) (pt 604.82 298.16) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 548.64 366.36) (pt 548.64 397.18) (width 0.2) (netNameRef "TMS7") )
+ (line (pt 571.46 374.0) (pt 571.46 400.36) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 389.94 266.06) (pt 413.76 266.06) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 388.52 266.84) (pt 414.04 266.84) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 497.2 322.9) (pt 490.66 322.9) (width 0.9) (netNameRef "+2,5V") )
+ (line (pt 450.34 331.06) (pt 467.22 331.06) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 467.18 331.82) (pt 449.36 331.82) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 466.8 332.7) (pt 448.48 332.7) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 492.64 348.94) (pt 484.3 348.94) (width 0.2) (netNameRef "D_ADF") )
+ (line (pt 493.26 348.42) (pt 484.58 348.42) (width 0.2) (netNameRef "CLK_ADF") )
+ (line (pt 494.32 351.12) (pt 485.22 351.12) (width 0.2) (netNameRef "LE_ADF") )
+ (line (pt 615.52 294.3) (pt 605.68 294.3) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 616.62 294.94) (pt 605.54 294.94) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 605.38 295.6) (pt 615.52 295.6) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 616.56 296.24) (pt 605.24 296.24) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 615.54 296.92) (pt 605.06 296.92) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 616.46 297.52) (pt 604.96 297.52) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 604.82 298.16) (pt 615.56 298.16) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 518.06 364.38) (pt 523.22 359.22) (width 0.2) (netNameRef "RS_I") )
+ (line (pt 615.9 416.0) (pt 591.8 416.0) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 592.62 418.9) (pt 616.2 418.9) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 592.52 418.3) (pt 614.9 418.3) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 592.32 417.6) (pt 616.2 417.6) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 592.12 416.9) (pt 614.9 416.9) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 614.9 415.0) (pt 591.3 415.0) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 589.8 413.0) (pt 617.0 413.0) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 592.72 419.5) (pt 614.9 419.5) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 597.2 424.6) (pt 614.9 424.6) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 597.46 425.36) (pt 615.56 425.36) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 615.0 426.6) (pt 598.2 426.6) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 614.9 434.06) (pt 600.96 434.06) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 615.1 429.2) (pt 596.7 429.2) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 616.2 428.6) (pt 596.86 428.6) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 596.9 427.9) (pt 615.1 427.9) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 598.36 427.26) (pt 616.16 427.26) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 616.36 438.86) (pt 602.26 438.86) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 602.42 439.52) (pt 615.24 439.52) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 602.96 440.56) (pt 620.46 440.56) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 615.22 438.2) (pt 602.1 438.2) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 616.32 437.56) (pt 601.96 437.56) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 615.2 436.92) (pt 601.82 436.92) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 616.32 436.26) (pt 601.66 436.26) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 615.18 435.62) (pt 601.52 435.62) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 616.28 434.96) (pt 601.36 434.96) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 604.96 443.06) (pt 615.14 443.06) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 605.08 443.68) (pt 616.3 443.68) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 605.24 444.34) (pt 615.16 444.34) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 605.4 445.0) (pt 616.34 445.0) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 615.24 445.64) (pt 605.54 445.64) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 616.36 446.3) (pt 605.7 446.3) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 615.26 446.92) (pt 605.82 446.92) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 616.38 447.58) (pt 605.98 447.58) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 615.42 448.22) (pt 606.12 448.22) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 619.86 448.9) (pt 606.3 448.9) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 549.86 320.12) (pt 566.56 336.82) (width 0.127) (netNameRef "~AOE") )
+ (line (pt 547.9 320.4) (pt 566.0 338.5) (width 0.127) (netNameRef "PF14") )
+ (line (pt 547.9 322.3) (pt 564.6 339.0) (width 0.127) (netNameRef "PF11") )
+ (line (pt 585.62 344.76) (pt 572.62 357.76) (width 0.2) (netNameRef "3_STR_0") )
+ (line (pt 585.26 344.62) (pt 572.58 357.3) (width 0.2) (netNameRef "4__A0") )
+ (line (pt 573.22 358.26) (pt 585.98 345.5) (width 0.2) (netNameRef "4_STR_0") )
+ (line (pt 598.2 426.6) (pt 571.82 400.22) (width 0.2) (netNameRef "2__A1") )
+ (line (pt 571.46 400.36) (pt 598.36 427.26) (width 0.2) (netNameRef "1__A0") )
+ (line (pt 414.04 266.84) (pt 450.1 302.9) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 413.76 266.06) (pt 450.4 302.7) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 450.7 305.8) (pt 489.66 344.76) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 450.4 306.0) (pt 490.18 345.78) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 491.2 347.3) (pt 450.1 306.2) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 449.8 307.5) (pt 490.08 347.78) (width 0.2) (netNameRef "MAX-TDI") )
+ (line (pt 414.1 267.42) (pt 449.8 303.12) (width 0.2) (netNameRef "MAX-TDI") )
+ (line (pt 547.9 323.3) (pt 564.36 339.76) (width 0.127) (netNameRef "PF9") )
+ (line (pt 548.0 321.8) (pt 565.72 339.52) (width 0.127) (netNameRef "PF15") )
+ (line (pt 547.9 325.3) (pt 562.26 339.66) (width 0.127) (netNameRef "PF5") )
+ (line (pt 562.62 339.04) (pt 547.9 324.32) (width 0.12) (netNameRef "PF7") )
+ (line (pt 541.3 324.18) (pt 558.32 341.2) (width 0.127) (netNameRef "~ARE") )
+ (line (pt 542.26 324.56) (pt 557.8 340.1) (width 0.127) (netNameRef "~AWE") )
+ (line (pt 560.4 340.8) (pt 545.08 325.48) (width 0.127) (netNameRef "~AMS1") )
+ (line (pt 558.6 373.54) (pt 552.08 367.02) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 558.2 374.26) (pt 551.14 367.2) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 557.8 374.6) (pt 550.52 367.32) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 557.62 341.08) (pt 540.46 323.92) (width 0.127) (netNameRef "A1") )
+ (line (pt 557.38 341.18) (pt 540.22 324.02) (width 0.127) (netNameRef "A0") )
+ (line (pt 557.14 341.28) (pt 539.32 323.46) (width 0.127) (netNameRef "A3") )
+ (line (pt 556.9 341.44) (pt 539.08 323.62) (width 0.127) (netNameRef "A2") )
+ (line (pt 556.66 341.78) (pt 538.78 323.9) (width 0.127) (netNameRef "A5") )
+ (line (pt 538.54 324.38) (pt 555.6 341.44) (width 0.127) (netNameRef "A4") )
+ (line (pt 538.3 324.48) (pt 555.36 341.54) (width 0.127) (netNameRef "A7") )
+ (line (pt 538.06 324.58) (pt 555.12 341.64) (width 0.127) (netNameRef "A6") )
+ (line (pt 537.82 324.68) (pt 554.88 341.74) (width 0.127) (netNameRef "A8") )
+ (line (pt 537.34 324.88) (pt 554.22 341.76) (width 0.127) (netNameRef "A10") )
+ (line (pt 610.98 285.5) (pt 574.4 322.08) (width 0.2) (netNameRef "3_P_CW1") )
+ (line (pt 610.78 286.2) (pt 574.76 322.22) (width 0.2) (netNameRef "4_P_CW1") )
+ (line (pt 610.66 286.82) (pt 575.12 322.36) (width 0.2) (netNameRef "3_P_RDY") )
+ (line (pt 610.5 287.48) (pt 575.48 322.5) (width 0.2) (netNameRef "4_P_RDY") )
+ (line (pt 610.4 288.08) (pt 575.84 322.64) (width 0.2) (netNameRef "3_P_R\\W") )
+ (line (pt 605.24 296.24) (pt 581.12 320.36) (width 0.2) (netNameRef "3__A0") )
+ (line (pt 610.22 288.76) (pt 576.2 322.78) (width 0.2) (netNameRef "4_P_R\\W") )
+ (line (pt 576.56 322.92) (pt 610.0 289.48) (width 0.2) (netNameRef "3__A2") )
+ (line (pt 580.76 320.22) (pt 605.38 295.6) (width 0.2) (netNameRef "4__A1") )
+ (line (pt 605.54 294.94) (pt 580.4 320.08) (width 0.2) (netNameRef "3__A1") )
+ (line (pt 605.68 294.3) (pt 580.04 319.94) (width 0.2) (netNameRef "4__A2") )
+ (line (pt 548.02 326.3) (pt 561.84 340.12) (width 0.127) (netNameRef "PF4") )
+ (line (pt 537.58 324.78) (pt 554.64 341.84) (width 0.127) (netNameRef "A9") )
+ (line (pt 606.12 448.22) (pt 558.2 400.3) (width 0.2) (netNameRef "1_DIR1") )
+ (line (pt 606.3 448.9) (pt 557.8 400.4) (width 0.2) (netNameRef "1_~OE1") )
+ (line (pt 605.98 447.58) (pt 558.6 400.2) (width 0.2) (netNameRef "1_IO0") )
+ (line (pt 605.82 446.92) (pt 559.0 400.1) (width 0.2) (netNameRef "1_IO1") )
+ (line (pt 605.7 446.3) (pt 559.4 400.0) (width 0.2) (netNameRef "1_IO2") )
+ (line (pt 605.54 445.64) (pt 559.8 399.9) (width 0.2) (netNameRef "1_IO3") )
+ (line (pt 560.16 399.76) (pt 605.4 445.0) (width 0.2) (netNameRef "1_IO4") )
+ (line (pt 560.52 399.62) (pt 605.24 444.34) (width 0.2) (netNameRef "1_IO5") )
+ (line (pt 560.88 399.48) (pt 605.08 443.68) (width 0.2) (netNameRef "1_IO6") )
+ (line (pt 561.24 399.34) (pt 604.96 443.06) (width 0.2) (netNameRef "1_IO7") )
+ (line (pt 561.6 399.2) (pt 602.96 440.56) (width 0.2) (netNameRef "2_~OE1") )
+ (line (pt 561.96 399.06) (pt 602.42 439.52) (width 0.2) (netNameRef "2_DIR1") )
+ (line (pt 602.26 438.86) (pt 562.38 398.98) (width 0.2) (netNameRef "2_IO0") )
+ (line (pt 602.1 438.2) (pt 562.74 398.84) (width 0.2) (netNameRef "2_IO1") )
+ (line (pt 601.96 437.56) (pt 563.1 398.7) (width 0.2) (netNameRef "2_IO2") )
+ (line (pt 601.82 436.92) (pt 563.46 398.56) (width 0.2) (netNameRef "2_IO3") )
+ (line (pt 601.66 436.26) (pt 563.82 398.42) (width 0.2) (netNameRef "2_IO4") )
+ (line (pt 601.52 435.62) (pt 564.18 398.28) (width 0.2) (netNameRef "2_IO5") )
+ (line (pt 601.36 434.96) (pt 564.54 398.14) (width 0.2) (netNameRef "2_IO6") )
+ (line (pt 600.96 434.06) (pt 564.9 398.0) (width 0.2) (netNameRef "2_IO7") )
+ (line (pt 591.8 416.0) (pt 574.76 398.96) (width 0.2) (netNameRef "2_P_CW") )
+ (line (pt 596.7 429.2) (pt 565.3 397.8) (width 0.2) (netNameRef "2_STR_0") )
+ (line (pt 574.38 399.16) (pt 592.12 416.9) (width 0.2) (netNameRef "1_P_RDY") )
+ (line (pt 592.32 417.6) (pt 574.02 399.3) (width 0.2) (netNameRef "2_P_RDY") )
+ (line (pt 573.66 399.44) (pt 592.52 418.3) (width 0.2) (netNameRef "1_P_R\\W") )
+ (line (pt 592.62 418.9) (pt 573.3 399.58) (width 0.2) (netNameRef "2_P_R\\W") )
+ (line (pt 572.94 399.72) (pt 592.72 419.5) (width 0.2) (netNameRef "1__A2") )
+ (line (pt 572.54 399.94) (pt 597.2 424.6) (width 0.2) (netNameRef "2__A2") )
+ (line (pt 572.18 400.08) (pt 597.46 425.36) (width 0.2) (netNameRef "1__A1") )
+ (line (pt 596.86 428.6) (pt 565.76 397.5) (width 0.2) (netNameRef "1_STR_0") )
+ (line (pt 566.16 397.16) (pt 596.9 427.9) (width 0.2) (netNameRef "2__A0") )
+ (line (pt 575.84 398.54) (pt 587.4 410.1) (width 0.2) (netNameRef "1_P_RQ") )
+ (line (pt 575.48 398.68) (pt 589.8 413.0) (width 0.2) (netNameRef "2_P_RQ") )
+ (line (pt 591.3 415.0) (pt 575.12 398.82) (width 0.2) (netNameRef "1_P_CW") )
+ (line (pt 405.46 257.26) (pt 450.7 302.5) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 383.14 257.26) (pt 405.46 257.26) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 383.14 267.42) (pt 414.1 267.42) (width 0.2) (netNameRef "MAX-TDI") )
+ (line (pt 490.18 345.78) (pt 521.24 345.78) (width 0.2) (netNameRef "MAX-TMS") )
+ (line (pt 489.66 344.76) (pt 520.24 344.76) (width 0.2) (netNameRef "MAX-TCK") )
+ (line (pt 521.72 347.3) (pt 491.2 347.3) (width 0.2) (netNameRef "MAX-TDO") )
+ (line (pt 490.08 347.78) (pt 523.26 347.78) (width 0.2) (netNameRef "MAX-TDI") )
+ (line (pt 507.6 353.62) (pt 485.5 353.62) (width 0.2) (netNameRef "20MHZ") )
+ (line (pt 494.34 407.6) (pt 529.72 372.22) (width 0.2) (netNameRef "1S") )
+ (line (pt 529.2 371.48) (pt 493.72 406.96) (width 0.2) (netNameRef "2S") )
+ (line (pt 493.14 406.28) (pt 528.7 370.72) (width 0.2) (netNameRef "3S") )
+ (line (pt 528.06 370.22) (pt 492.64 405.64) (width 0.2) (netNameRef "4S") )
+ )
+ (layerContents (layerNumRef 17)
+ (line (pt 382.5 310.3) (pt 398.4 310.3) (width 2.0) )
+ (line (pt 469.9 422.9) (pt 476.6 416.2) (width 2.0) )
+ (line (pt 401.1 345.9) (pt 408.5 338.5) (width 2.0) )
+ (line (pt 398.4 310.3) (pt 408.3 320.2) (width 2.0) )
+ (line (pt 453.1 342.9) (pt 427.1 368.9) (width 2.0) )
+ (line (pt 382.8 323.2) (pt 406.9 326.3) (width 2.0) )
+ (line (pt 382.3 333.5) (pt 406.8 331.7) (width 2.0) )
+ (line (pt 382.5 345.9) (pt 401.1 345.9) (width 2.0) )
+ (line (pt 427.1 368.9) (pt 382.5 368.9) (width 2.0) )
+ (line (pt 382.7 422.9) (pt 469.9 422.9) (width 2.0) )
+ )
+ (pcbPrintSettings
+ (printQueueEntry "TOP"
+ (orderedLayerList
+ (layerNumRef 6)
+ (layerNumRef 3)
+ )
+ (isRotated True)
+ (isThinStrokeText False)
+ (scaling User 0.80)
+ (isSelected False)
+ (drillSymSize 2.032)
+ (outputRefDes True)
+ (PrintRegion
+ (pt 0.0 0.0) (pt 656.793 481.46) )
+ )
+ (printQueueEntry "BOTTOM"
+ (orderedLayerList
+ (layerNumRef 3)
+ (layerNumRef 7)
+ (layerNumRef 17)
+ )
+ (isRotated True)
+ (isThinStrokeText False)
+ (scaling User 0.80)
+ (isSelected True)
+ (drillSymSize 2.032)
+ (outputMirror True)
+ (outputRefDes True)
+ (PrintRegion
+ (pt 0.0 0.0) (pt 656.793 481.46) )
+ )
+ (printQueueEntry "INT1"
+ (orderedLayerList
+ (layerNumRef 3)
+ (layerNumRef 15)
+ )
+ (isRotated True)
+ (isThinStrokeText False)
+ (scaling User 0.80)
+ (isSelected False)
+ (drillSymSize 2.032)
+ (outputVias True)
+ (outputHoles True)
+ (outputConnect True)
+ (PrintRegion
+ (pt 0.0 0.0) (pt 656.793 481.46) )
+ )
+ (printQueueEntry "INT2"
+ (orderedLayerList
+ (layerNumRef 16)
+ )
+ (isRotated True)
+ (isThinStrokeText False)
+ (scaling User 0.80)
+ (isSelected False)
+ (drillSymSize 2.032)
+ (outputVias True)
+ (outputHoles True)
+ (outputConnect True)
+ (PrintRegion
+ (pt 0.0 0.0) (pt 656.793 481.46) )
+ )
+ (printQueueEntry "POWER"
+ (orderedLayerList
+ (layerNumRef 3)
+ (layerNumRef 13)
+ )
+ (isRotated True)
+ (isThinStrokeText False)
+ (scaling User 0.80)
+ (isSelected False)
+ (drillSymSize 2.032)
+ (outputVias True)
+ (outputHoles True)
+ (outputKeepout True)
+ (outputConnect True)
+ (outputCutout True)
+ (PrintRegion
+ (pt 0.0 0.0) (pt 656.793 481.46) )
+ )
+ )
+ (drillSymSettings
+ (drillSym Cross (holeDiam 0.3))
+ (drillSym X (holeDiam 0.4))
+ (drillSym Y (holeDiam 0.5))
+ (drillSym T (holeDiam 0.6))
+ (drillSym Hour (holeDiam 0.7))
+ (drillSym Side_Hour (holeDiam 0.9))
+ (drillSym Box_Line (holeDiam 1.0))
+ (drillSym Diamond_Line (holeDiam 1.2))
+ (drillSym Box_V (holeDiam 1.4))
+ (drillSym Diamond_V (holeDiam 1.5))
+ (drillSym Box_X (holeDiam 2.3))
+ (drillSym Diamond_Cross (holeDiam 2.8))
+ )
+ (gerberSettings
+ (units in)
+ (numFormat gbr44)
+ (autoDrawApertureSize 0.254)
+ (outputPath "D:\\Andrey\\MyProekt\\CK1202\\")
+ (viewLog False)
+ (autoClear True)
+ (g54Option False)
+ (useArcs False)
+ (embedApertures True)
+ (useApertureHoles False)
+ (drawRotated True)
+ (drawPolygons True)
+ )
+ (ncDrillSettings
+ (units in)
+ (codeFormat AsciiNone)
+ (zeroFormat None)
+ (outputPath "D:\\ANDREY\\MYPROEKT\\CK1202\\")
+ (viewLog True)
+ (autoClear True)
+ )
+ (programState
+ (layerState
+ (currentLayer (layerNumRef 1))
+ )
+ (gridState
+ (currentAbsGrid "0.04mm")
+ (currentRelGrid "0.04mm")
+ (currentViaGrid "0.04mm")
+ (isAbsoluteGrid True)
+ (isDottedGrid True)
+ (isVisibleGrid True)
+ (isPromptForRel False)
+ (viaGridVisibility hide )
+ )
+ (ecoState (ecoRecording True))
+ (onlineDrcState
+ (onlineDrcEnabled False)
+ (onlineDrcReport True)
+ (onlineDrcClearanceEnabled True)
+ (onlineDrcTextEnabled False)
+ (onlineDrcSameCompPadsEnabled True)
+ (onlineDrcComponentEnabled False)
+ (onlineDrcSilkEnabled False)
+ (onlineDrcNetlistEnabled True)
+ (onlineDrcWidthEnabled True)
+ )
+ (drcState
+ (drcRegion
+ (pt 0.0 0.0) (pt 0.0 0.0) )
+ )
+ (currentTextStyle "T:H80W8")
+ (currentPadStyle "P:EX80Y80D40A [1]")
+ (currentViaStyle "P:OV05D03")
+ )
+
+ (layerSets
+ (layerSet "All Layers" "1" "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "13" "15" "16" "14" "12" "17")
+ (layerSet "Signal Layers" "1" "1" "2" "15" "16")
+ (layerSet "Plane Layers" "13" "13" "14")
+ (layerSet "Nonsignal Layers" "6" "6" "3" "4" "5" "7" "8" "9" "10" "11" "12" "17")
+ (layerSet "top" "1" "1" "3" "6")
+ (layerSet "bottom" "2" "2" "7" "3")
+ (layerSet "topbot" "1" "1" "2" "3" "6" "7" "12" "15" "16")
+ (layerSet "int1" "15" "15" "3")
+ (layerSet "int2" "16" "16" "3")
+ (layerSet "POWER" "13" "13" "3")
+ )
+ (reportSettings
+ (reportStyle reportStyleAccel)
+ (reportDestination DestinationScreen)
+ (pt 0.0 0.0)
+ (reportDefinitions
+ (reportDefinition
+ (reportName "Aperture Information")
+ (reportExtension "apr")
+ (reportType ReportTypeApertures)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "DCode")
+ (reportFieldType PropertyTypeDCode)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Shape")
+ (reportFieldType PropertyTypeShape)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "DimX")
+ (reportFieldType PropertyTypeDimX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "DimY")
+ (reportFieldType PropertyTypeDimY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Diameter")
+ (reportFieldType PropertyTypeDiameter)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "Type")
+ (reportFieldType PropertyTypeType)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Angle")
+ (reportFieldType PropertyTypeAngle)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "OffsetX")
+ (reportFieldType PropertyTypeOffsetX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "OffsetY")
+ (reportFieldType PropertyTypeOffsetY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ )
+ (reportFields
+ (reportField
+ (reportFieldName "Shape")
+ (reportFieldType PropertyTypeShape)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "DimX")
+ (reportFieldType PropertyTypeDimX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "DimY")
+ (reportFieldType PropertyTypeDimY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Diameter")
+ (reportFieldType PropertyTypeDiameter)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "Angle")
+ (reportFieldType PropertyTypeAngle)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "OffsetX")
+ (reportFieldType PropertyTypeOffsetX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "OffsetY")
+ (reportFieldType PropertyTypeOffsetY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "DCode")
+ (reportFieldType PropertyTypeDCode)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Attributes")
+ (reportExtension "atr")
+ (reportShowFlag True)
+ (reportType ReportTypeAttributes)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "RefDes")
+ (reportFieldType PropertyTypeRefdes)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "Type")
+ (reportFieldType PropertyTypeType)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Value")
+ (reportFieldType PropertyTypeCompValue)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Èçãîòîâèòåëü ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "Ýëåìåíò")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "Íàèìåíîâàíèå ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 2)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "ÃÎÑÒ; ÒÓ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "Èçãîãîâèòåëü ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "Èçãîòîâèòåü")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 11)
+ )
+ (reportField
+ (reportFieldName "ÝËÅÌÅÍÒ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "RefDes2")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ )
+ (reportFields
+ (reportField
+ (reportFieldName "NetName")
+ (reportFieldType PropertyTypeNetname)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Bill of Materials")
+ (reportExtension "bom")
+ (reportType ReportTypeBillOfMaterials)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "These are the headers")
+ (reportFooter "These are the footers")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "_Count")
+ (reportFieldType PropertyTypeCount)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "ComponentName")
+ (reportFieldType PropertyTypeComponentName)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 13)
+ )
+ (reportField
+ (reportFieldName "RefDes")
+ (reportFieldType PropertyTypeRefdes)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "PatternName")
+ (reportFieldType PropertyTypePatternName)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 11)
+ )
+ (reportField
+ (reportFieldName "Value")
+ (reportFieldType PropertyTypeCompValue)
+ (reportFieldSortOrder 2)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Èçãîòîâèòåëü ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "Ýëåìåíò")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "Íàèìåíîâàíèå ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "ÃÎÑÒ; ÒÓ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "Êîðïóñ ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "Title")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "SType")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Addit")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Docum")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Note")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "RefDes2")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "Èçãîãîâèòåëü ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 12)
+ )
+ (reportField
+ (reportFieldName "Èçãîòîâèòåü")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 11)
+ )
+ (reportField
+ (reportFieldName "ÝËÅÌÅÍÒ")
+ (reportFieldType PropertyTypeAttribute)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Component Locations")
+ (reportExtension "cpl")
+ (reportType ReportTypeComponentsLocations)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "Pick and Place Location")
+ (reportFooter "Pick and Place Location")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "RefDes")
+ (reportFieldType PropertyTypeRefdes)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "Layer")
+ (reportFieldType PropertyTypeLayer)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "LocationX")
+ (reportFieldType PropertyTypeLocationX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "LocationY")
+ (reportFieldType PropertyTypeLocationY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "Rotation")
+ (reportFieldType PropertyTypeRotation)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "Fixed")
+ (reportFieldType PropertyTypeFixed)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "DRC Error Indicators")
+ (reportExtension "dei")
+ (reportType ReportTypeDrcErrors)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "ErrorNum")
+ (reportFieldType PropertyTypeErrorNumber)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ (reportField
+ (reportFieldName "LocationX")
+ (reportFieldType PropertyTypeLocationX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "LocationY")
+ (reportFieldType PropertyTypeLocationY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "Error")
+ (reportFieldType PropertyTypeError)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Glue Dot Locations")
+ (reportExtension "glu")
+ (reportType ReportTypeGlueDots)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "RefDes")
+ (reportFieldType PropertyTypeRefdes)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "PatternName")
+ (reportFieldType PropertyTypePatternName)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 11)
+ )
+ (reportField
+ (reportFieldName "Type")
+ (reportFieldType PropertyTypeType)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Value")
+ (reportFieldType PropertyTypeCompValue)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Layer")
+ (reportFieldType PropertyTypeLayer)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "LocationX")
+ (reportFieldType PropertyTypeLocationX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "LocationY")
+ (reportFieldType PropertyTypeLocationY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Library Contents")
+ (reportExtension "lct")
+ (reportType ReportTypeLibrary)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 30)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ )
+ (reportDefinition
+ (reportName "Pick and Place Locations")
+ (reportExtension "pnp")
+ (reportType ReportTypePickAndPlace)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "Pick and Place Location")
+ (reportFooter "Pick and Place Location")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "RefDes")
+ (reportFieldType PropertyTypeRefdes)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 6)
+ )
+ (reportField
+ (reportFieldName "PatternName")
+ (reportFieldType PropertyTypePatternName)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 11)
+ )
+ (reportField
+ (reportFieldName "Type")
+ (reportFieldType PropertyTypeType)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Value")
+ (reportFieldType PropertyTypeCompValue)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "Layer")
+ (reportFieldType PropertyTypeLayer)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "LocationX")
+ (reportFieldType PropertyTypeLocationX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "LocationY")
+ (reportFieldType PropertyTypeLocationY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "Rotation")
+ (reportFieldType PropertyTypeRotation)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 8)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Rooms")
+ (reportExtension "rom")
+ (reportType ReportTypeRooms)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "Room")
+ (reportFieldType PropertyTypeRoom)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Side")
+ (reportFieldType PropertyTypeBoardside)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Components")
+ (reportFieldType PropertyTypeComponents)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 10)
+ )
+ )
+ (reportFields
+ (reportField
+ (reportFieldName "Components")
+ (reportFieldType PropertyTypeComponents)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 10)
+ )
+ (reportField
+ (reportFieldName "Room")
+ (reportFieldType PropertyTypeRoom)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Unassigned Components")
+ (reportFieldType PropertyTypeUnassignedComps)
+ (reportFieldSortOrder 2)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 21)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Statistics")
+ (reportExtension "sta")
+ (reportType ReportTypeStatistics)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 30)
+ (reportHeader "Any questions, contact Chris Robertson @ (256) 722-2626")
+ (reportFooter "Any questions, contact Chris Robertson @ (256) 722-2626")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ )
+ (reportDefinition
+ (reportName "Test Point")
+ (reportExtension "tst")
+ (reportType ReportTypeTestPoint)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 15)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "NetName")
+ (reportFieldType PropertyTypeNetname)
+ (reportFieldSortOrder 2)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "Side")
+ (reportFieldType PropertyTypeBoardside)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType descending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 4)
+ )
+ (reportField
+ (reportFieldName "Fixed")
+ (reportFieldType PropertyTypeFixed)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 5)
+ )
+ (reportField
+ (reportFieldName "LocationX")
+ (reportFieldType PropertyTypeLocationX)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ (reportField
+ (reportFieldName "LocationY")
+ (reportFieldType PropertyTypeLocationY)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 9)
+ )
+ )
+ )
+ )
+ (reportDefinition
+ (reportName "Variant")
+ (reportExtension "var")
+ (reportShowFlag True)
+ (reportType ReportTypeVariant)
+ (reportLinesPerPage 60)
+ (reportColumnWidth 35)
+ (reportHeader "")
+ (reportFooter "")
+ (reportShowCDFPreface True)
+ (reportShowColumnNames True)
+ (reportFieldsSections
+ (reportFields
+ (reportField
+ (reportFieldName "Variant")
+ (reportFieldType PropertyTypeVariant)
+ (reportFieldSortOrder 1)
+ (reportFieldSortType ascending)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 7)
+ )
+ (reportField
+ (reportFieldName "Variant Decription")
+ (reportFieldType PropertyTypeVariantDescription)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 18)
+ )
+ (reportField
+ (reportFieldName "Variant Excluded Components")
+ (reportFieldType PropertyTypeExcludedComponents)
+ (reportFieldSortOrder 0)
+ (reportFieldSortType None)
+ (reportFieldShowFlag True)
+ (reportFieldColumnWidth 27)
+ )
+ )
+ )
+ )
+ )
+ )
+ (odbSettings
+ (outputPath "")
+ (viewLog False)
+ )
+ (layersStackup
+ (layerStackupData
+ (layerStackupName "Top Silk")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Top Mask")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Top")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Power")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "INT1")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "INT2")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "GND")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Bottom")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Bot Mask")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ (layerStackupData
+ (layerStackupName "Bot Silk")
+ (layerStackupMaterial "")
+ (layerStackupThickness "")
+ (layerStackupDielectricConstant "")
+ (layerStackupDisplay True)
+ )
+ )
+)
diff --git a/pcbnew/pcad2kicadpcb_plugin/examples/files.txt b/pcbnew/pcad2kicadpcb_plugin/examples/files.txt
new file mode 100644
index 0000000000..72b65f97e9
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/examples/files.txt
@@ -0,0 +1,6 @@
+
+Examples description
+====================
+
+CK1202_V1.pcb - provided by author Andrey Manin ,
+downloaded from http://www.pcadbegin.webtm.ru/schetchik.php?scach=1
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.cpp b/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.cpp
new file mode 100644
index 0000000000..d178888446
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.cpp
@@ -0,0 +1,460 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcad2kicad_common.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+wxString GetWord( wxString* aStr )
+{
+ wxString result = wxEmptyString;
+
+ *aStr = aStr->Trim( false );
+
+ if( aStr->Len() == 0 )
+ return result;
+
+ if( (*aStr)[0] == wxT( '"' ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 ); // remove Frot apostrofe
+
+ while( aStr->Len() > 0 && (*aStr)[0] != wxT( '"' ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 );
+ }
+
+ if( aStr->Len() > 0 && (*aStr)[0] == wxT( '"' ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 ); // remove ending apostrophe
+ }
+ }
+ else
+ {
+ while( aStr->Len() > 0
+ && !( (*aStr)[0] == wxT( ' ' )
+ || (*aStr)[0] == wxT( '(' )
+ || (*aStr)[0] == wxT( ')' ) ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 );
+ }
+ }
+
+ result.Trim( true );
+ result.Trim( false );
+
+ return result;
+}
+
+
+XNODE* FindPinMap( XNODE* aNode )
+{
+ XNODE* result, * lNode;
+
+ result = NULL;
+ lNode = FindNode( aNode, wxT( "attachedPattern" ) );
+
+ if( lNode )
+ result = FindNode( lNode, wxT( "padPinMap" ) );
+
+ return result;
+}
+
+
+double StrToDoublePrecisionUnits( wxString aStr, char aAxe, wxString aActualConversion )
+{
+ wxString ls;
+ double i;
+ char u;
+
+ ls = aStr;
+ ls.Trim( true );
+ ls.Trim( false );
+
+ if( ls.Len() > 0 )
+ {
+ u = ls[ls.Len() - 1];
+
+ while( ls.Len() > 0
+ && !( ls[ls.Len() - 1] == wxT( '.' )
+ || ls[ls.Len() - 1] == wxT( ',' )
+ || (ls[ls.Len() - 1] >= wxT( '0' ) && ls[ls.Len() - 1] <= wxT( '9' ) ) ) )
+ {
+ ls = ls.Left( ls.Len() - 1 );
+ }
+
+ while( ls.Len() > 0
+ && !( ls[0] == wxT( '-' )
+ || ls[0] == wxT( '+' )
+ || ls[0] == wxT( '.' )
+ || ls[0] == wxT( ',' )
+ || (ls[0] >= wxT( '0' ) && ls[0] <= wxT( '9' ) ) ) )
+ {
+ ls = ls.Mid( 1 );
+ }
+
+ if( u == wxT( 'm' ) )
+ {
+ ls.ToDouble( &i );
+#ifdef PCAD2KICAD_SCALE_SCH_TO_INCH_GRID
+ if( aActualConversion == wxT( "SCH" ) )
+ i = i * (0.0254 / 0.025);
+#endif
+ i = Millimeter2iu( i );
+ }
+ else
+ {
+ ls.ToDouble( &i );
+ i = Mils2iu( i );
+ }
+ }
+ else
+ i = 0.0;
+
+ if( ( aActualConversion == wxT( "PCB" ) || aActualConversion == wxT( "SCH" ) )
+ && aAxe == wxT( 'Y' ) )
+ return -i;
+ else
+ return i; // Y axe is mirrored compared to P-Cad
+}
+
+
+int StrToIntUnits( wxString aStr, char aAxe, wxString aActualConversion )
+{
+ return KiROUND( StrToDoublePrecisionUnits( aStr, aAxe, aActualConversion ) );
+}
+
+
+wxString GetAndCutWordWithMeasureUnits( wxString* aStr, wxString aDefaultMeasurementUnit )
+{
+ wxString s1, s2, result;
+
+ aStr->Trim( false );
+ result = wxEmptyString;
+
+ // value
+ while( aStr->Len() > 0 && (*aStr)[0] != wxT( ' ' ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 );
+ }
+
+ aStr->Trim( false );
+
+ // if there is also measurement unit
+ while( aStr->Len() > 0
+ && ( ( (*aStr)[0] >= wxT( 'a' ) && (*aStr)[0] <= wxT( 'z' ) )
+ || ( (*aStr)[0] >= wxT( 'A' ) && (*aStr)[0] <= wxT( 'Z' ) ) ) )
+ {
+ result += (*aStr)[0];
+ *aStr = aStr->Mid( 1 );
+ }
+
+ // and if not, add default....
+ if( result.Len() > 0
+ && ( result[result.Len() - 1] == wxT( '.' )
+ || result[result.Len() - 1] == wxT( ',' )
+ || (result[result.Len() - 1] >= wxT( '0' )
+ && result[result.Len() - 1] <= wxT( '9' ) ) ) )
+ {
+ result += aDefaultMeasurementUnit;
+ }
+
+ return result;
+}
+
+
+int StrToInt1Units( wxString aStr )
+{
+ double num, precision = 10;
+
+ // TODO: Is the following commented string necessary?
+ // if (pos(',',s)>0) then DecimalSeparator:=',' else DecimalSeparator:='.';
+ aStr.ToDouble( &num );
+ return KiROUND( num * precision );
+}
+
+
+wxString ValidateName( wxString aName )
+{
+ aName.Replace( wxT( " " ), wxT( "_" ) );
+
+ return aName;
+}
+
+
+void SetWidth( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ int* aWidth,
+ wxString aActualConversion )
+{
+ *aWidth = StrToIntUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( ' ' ),
+ aActualConversion );
+}
+
+
+void SetHeight( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ int* aHeight,
+ wxString aActualConversion )
+{
+ *aHeight = StrToIntUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( ' ' ),
+ aActualConversion );
+}
+
+
+void SetPosition( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ int* aX,
+ int* aY,
+ wxString aActualConversion )
+{
+ *aX = StrToIntUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( 'X' ),
+ aActualConversion );
+ *aY = StrToIntUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( 'Y' ),
+ aActualConversion );
+}
+
+
+void SetDoublePrecisionPosition( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ double* aX,
+ double* aY,
+ wxString aActualConversion )
+{
+ *aX = StrToDoublePrecisionUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( 'X' ),
+ aActualConversion );
+ *aY = StrToDoublePrecisionUnits( GetAndCutWordWithMeasureUnits( &aStr,
+ aDefaultMeasurementUnit ), wxT( 'Y' ),
+ aActualConversion );
+}
+
+
+void SetTextParameters( XNODE* aNode,
+ TTEXTVALUE* aTextValue,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* tNode;
+ wxString str;
+
+ tNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( tNode )
+ SetPosition( tNode->GetNodeContent(),
+ aDefaultMeasurementUnit,
+ &aTextValue->textPositionX,
+ &aTextValue->textPositionY,
+ aActualConversion );
+
+ tNode = FindNode( aNode, wxT( "rotation" ) );
+
+ if( tNode )
+ {
+ str = tNode->GetNodeContent();
+ str.Trim( false );
+ aTextValue->textRotation = StrToInt1Units( str );
+ }
+
+ str = FindNodeGetContent( aNode, wxT( "isVisible" ) );
+
+ if( str == wxT( "True" ) )
+ aTextValue->textIsVisible = 1;
+ else if( str == wxT( "False" ) )
+ aTextValue->textIsVisible = 0;
+
+ tNode = FindNode( aNode, wxT( "textStyleRef" ) );
+
+ if( tNode )
+ SetFontProperty( tNode, aTextValue, aDefaultMeasurementUnit, aActualConversion );
+}
+
+
+void SetFontProperty( XNODE* aNode,
+ TTEXTVALUE* aTextValue,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ wxString n, propValue;
+
+ aNode->GetAttribute( wxT( "Name" ), &n );
+
+ while( aNode->GetName() != wxT( "www.lura.sk" ) )
+ aNode = aNode->GetParent();
+
+ aNode = FindNode( aNode, wxT( "library" ) );
+
+ if( aNode )
+ aNode = FindNode( aNode, wxT( "textStyleDef" ) );
+
+ if( aNode )
+ {
+ while( true )
+ {
+ aNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+
+ if( propValue == n )
+ break;
+
+ aNode = aNode->GetNext();
+ }
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "font" ) );
+
+ if( aNode )
+ {
+ if( FindNode( aNode, wxT( "fontHeight" ) ) )
+ // // SetWidth(iNode.ChildNodes.FindNode('fontHeight').Text,
+ // // DefaultMeasurementUnit,tv.TextHeight);
+ // Fixed By Lubo, 02/2008
+ SetHeight( FindNode( aNode, wxT(
+ "fontHeight" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &aTextValue->textHeight,
+ aActualConversion );
+
+ if( FindNode( aNode, wxT( "strokeWidth" ) ) )
+ SetWidth( FindNode( aNode, wxT(
+ "strokeWidth" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &aTextValue->textstrokeWidth,
+ aActualConversion );
+ }
+ }
+ }
+}
+
+
+void CorrectTextPosition( TTEXTVALUE* aValue, int aRotation )
+{
+ aValue->correctedPositionX = aValue->textPositionX;
+ aValue->correctedPositionY = aValue->textPositionY;
+ aValue->correctedPositionY = aValue->correctedPositionY - KiROUND(
+ (double) aValue->textHeight / 3.0 );
+ aValue->correctedPositionX = aValue->correctedPositionX +
+ KiROUND( ( (double) aValue->text.Len() /
+ 1.4 ) * ( (double) aValue->textHeight / 1.8 ) );
+
+ if( aRotation == 900 )
+ {
+ aValue->correctedPositionX = -aValue->textPositionY;
+ aValue->correctedPositionY = aValue->textPositionX;
+ aValue->correctedPositionX = aValue->correctedPositionX + KiROUND(
+ (double) aValue->textHeight / 3.0 );
+ aValue->correctedPositionY = aValue->correctedPositionY +
+ KiROUND( ( (double) aValue->text.Len() /
+ 1.4 ) * ( (double) aValue->textHeight / 1.8 ) );
+ }
+
+ if( aRotation == 1800 )
+ {
+ aValue->correctedPositionX = -aValue->textPositionX;
+ aValue->correctedPositionY = -aValue->textPositionY;
+ aValue->correctedPositionY = aValue->correctedPositionY +
+ KiROUND( (double) aValue->textHeight / 3.0 );
+ aValue->correctedPositionX = aValue->correctedPositionX -
+ KiROUND( ( (double) aValue->text.Len() /
+ 1.4 ) * ( (double) aValue->textHeight / 1.8 ) );
+ }
+
+ if( aRotation == 2700 )
+ {
+ aValue->correctedPositionX = aValue->textPositionY;
+ aValue->correctedPositionY = -aValue->textPositionX;
+ aValue->correctedPositionX = aValue->correctedPositionX +
+ KiROUND( (double) aValue->textHeight / 1.0 );
+ aValue->correctedPositionY = aValue->correctedPositionY -
+ KiROUND( ( (double) aValue->text.Len() /
+ 3.4 ) * ( (double) aValue->textHeight / 1.8 ) );
+ }
+}
+
+
+XNODE* FindNode( XNODE* aChild, wxString aTag )
+{
+ aChild = aChild->GetChildren();
+
+ while( aChild )
+ {
+ if( aChild->GetName() == aTag )
+ return aChild;
+
+ aChild = aChild->GetNext();
+ }
+
+ return NULL;
+}
+
+wxString FindNodeGetContent( XNODE* aChild, wxString aTag )
+{
+ wxString str = wxEmptyString;
+
+ aChild = FindNode( aChild, aTag );
+
+ if( aChild )
+ {
+ str = aChild->GetNodeContent();
+ str.Trim( false );
+ str.Trim( true );
+ }
+
+ return str;
+}
+
+void InitTTextValue( TTEXTVALUE* aTextValue )
+{
+ aTextValue->text = wxEmptyString;
+ aTextValue->textPositionX = 0;
+ aTextValue->textPositionY = 0;
+ aTextValue->textRotation = 0;
+ aTextValue->textHeight = 0;
+ aTextValue->textstrokeWidth = 0;
+ aTextValue->textIsVisible = 0;
+ aTextValue->mirror = 0;
+ aTextValue->textUnit = 0;
+ aTextValue->correctedPositionX = 0;
+ aTextValue->correctedPositionY = 0;
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.h b/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.h
new file mode 100644
index 0000000000..30ce190536
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcad2kicad_common.h
@@ -0,0 +1,88 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcad2kicad_common.h
+ */
+
+#ifndef PCAD2KICAD_COMMON_H_
+#define PCAD2KICAD_COMMON_H_
+
+#include
+#include
+#include
+
+namespace PCAD2KICAD
+{
+
+#define PCAD2KICAD_SCALE_SCH_TO_INCH_GRID
+
+typedef struct _TTEXTVALUE
+{
+ wxString text;
+ int textPositionX, textPositionY,
+ textRotation, textHeight, textstrokeWidth;
+ int textIsVisible, mirror, textUnit;
+ int correctedPositionX, correctedPositionY;
+} TTEXTVALUE;
+
+extern wxString GetWord( wxString* aStr );
+extern XNODE* FindPinMap( XNODE* aNode );
+extern int StrToIntUnits( wxString aStr, char aAxe, wxString aActualConversion );
+extern wxString GetAndCutWordWithMeasureUnits( wxString* aStr,
+ wxString aDefaultMeasurementUnit );
+extern int StrToInt1Units( wxString aStr );
+extern wxString ValidateName( wxString aName );
+extern void SetWidth( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ int* aWidth,
+ wxString aActualConversion );
+extern void SetPosition( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ int* aX,
+ int* aY,
+ wxString aActualConversion );
+extern void SetDoublePrecisionPosition( wxString aStr,
+ wxString aDefaultMeasurementUnit,
+ double* aX,
+ double* aY,
+ wxString aActualConversion );
+extern void SetTextParameters( XNODE* aNode,
+ TTEXTVALUE* aTextValue,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+extern void SetFontProperty( XNODE* aNode,
+ TTEXTVALUE* aTextValue,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+extern void CorrectTextPosition( TTEXTVALUE* aValue, int aRotation );
+
+extern XNODE* FindNode( XNODE* aChild, wxString aTag );
+extern wxString FindNodeGetContent( XNODE* aChild, wxString aTag );
+extern void InitTTextValue( TTEXTVALUE* aTextValue );
+
+} // namespace PCAD2KICAD
+
+#endif // PCAD2KICAD_COMMON_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.cpp b/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.cpp
new file mode 100644
index 0000000000..5bf58d7950
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.cpp
@@ -0,0 +1,95 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcad_plugin.cpp
+ * @brief Pcbnew PLUGIN for P-Cad 2002/2004 ASCII *.pcb format.
+ */
+
+#include
+
+#include
+#include
+#include
+
+#include
+#include
+#include
+
+#include
+#include
+#include
+
+using namespace PCAD2KICAD;
+
+PCAD_PLUGIN::PCAD_PLUGIN()
+{
+ m_board = NULL;
+ m_props = NULL;
+}
+
+
+PCAD_PLUGIN::~PCAD_PLUGIN()
+{
+}
+
+
+const wxString& PCAD_PLUGIN::PluginName() const
+{
+ static const wxString name = wxT( "P-Cad" );
+
+ return name;
+}
+
+
+const wxString& PCAD_PLUGIN::GetFileExtension() const
+{
+ static const wxString extension = wxT( "pcb" );
+
+ return extension;
+}
+
+
+BOARD* PCAD_PLUGIN::Load( const wxString& aFileName, BOARD* aAppendToMe, PROPERTIES* aProperties )
+{
+ wxXmlDocument xmlDoc;
+
+ m_props = aProperties;
+
+ m_board = aAppendToMe ? aAppendToMe : new BOARD();
+
+ // Give the filename to the board if it's new
+ if( !aAppendToMe )
+ m_board->SetFileName( aFileName );
+
+ PCB pcb( m_board );
+
+ LOCALE_IO toggle; // toggles on, then off, the C locale.
+
+ LoadInputFile( aFileName, &xmlDoc );
+ pcb.Parse( NULL, &xmlDoc, wxT( "PCB" ) );
+ pcb.AddToBoard();
+
+ return m_board;
+}
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.h b/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.h
new file mode 100644
index 0000000000..ae68ce62ac
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcad_plugin.h
@@ -0,0 +1,59 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcad_plugin.h
+ * @brief Pcbnew PLUGIN for P-Cad 2002/2004 ASCII *.pcb format.
+ */
+
+#ifndef PCAD_PLUGIN_H_
+#define PCAD_PLUGIN_H_
+
+
+#include
+
+class PCAD_PLUGIN : public PLUGIN
+{
+public:
+
+ // -------------------------------------------------------
+
+ const wxString& PluginName() const;
+
+ BOARD* Load( const wxString& aFileName,
+ BOARD* aAppendToMe,
+ PROPERTIES* aProperties = NULL );
+
+ const wxString& GetFileExtension() const;
+
+ // ------------------------------------------------------
+
+ PCAD_PLUGIN();
+ ~PCAD_PLUGIN();
+private:
+ PROPERTIES* m_props;
+ BOARD* m_board;
+};
+
+#endif // PCAD_PLUGIN_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb.cpp
new file mode 100644
index 0000000000..8cdc67e589
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb.cpp
@@ -0,0 +1,957 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+namespace PCAD2KICAD {
+
+int PCB::GetKiCadLayer( int aPCadLayer )
+{
+ assert( aPCadLayer >= FIRST_COPPER_LAYER && aPCadLayer <= LAST_NO_COPPER_LAYER );
+ return m_layersMap[aPCadLayer].KiCadLayer;
+}
+
+LAYER_TYPE_T PCB::GetLayerType( int aPCadLayer )
+{
+ assert( aPCadLayer >= FIRST_COPPER_LAYER && aPCadLayer <= LAST_NO_COPPER_LAYER );
+ return m_layersMap[aPCadLayer].layerType;
+}
+
+wxString PCB::GetLayerNetNameRef( int aPCadLayer )
+{
+ assert( aPCadLayer >= FIRST_COPPER_LAYER && aPCadLayer <= LAST_NO_COPPER_LAYER );
+ return m_layersMap[aPCadLayer].netNameRef;
+}
+
+PCB::PCB( BOARD* aBoard ) : PCB_MODULE( this, aBoard )
+{
+ int i;
+
+ m_defaultMeasurementUnit = wxT( "mil" );
+
+ for( i = 0; i < NB_LAYERS; i++ )
+ {
+ m_layersMap[i].KiCadLayer = SOLDERMASK_N_FRONT; // default
+ m_layersMap[i].layerType = LAYER_TYPE_NONSIGNAL; // default
+ m_layersMap[i].netNameRef = wxT( "" ); // default
+ }
+
+ m_sizeX = 0;
+ m_sizeY = 0;
+
+ m_layersMap[1].KiCadLayer = LAST_COPPER_LAYER;
+ m_layersMap[1].layerType = LAYER_TYPE_SIGNAL;
+
+ m_layersMap[2].KiCadLayer = FIRST_COPPER_LAYER;
+ m_layersMap[2].layerType = LAYER_TYPE_SIGNAL;
+
+ m_layersMap[3].KiCadLayer = ECO2_N;
+ m_layersMap[6].KiCadLayer = SILKSCREEN_N_FRONT;
+ m_layersMap[7].KiCadLayer = SILKSCREEN_N_BACK;
+ m_timestamp_cnt = 0x10000000;
+}
+
+
+PCB::~PCB()
+{
+ int i;
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ delete m_pcbComponents[i];
+ }
+
+ for( i = 0; i < (int) m_pcbNetlist.GetCount(); i++ )
+ {
+ delete m_pcbNetlist[i];
+ }
+}
+
+
+int PCB::GetNewTimestamp()
+{
+ return m_timestamp_cnt++;
+}
+
+int PCB::GetNetCode( wxString aNetName )
+{
+ PCB_NET* net;
+
+ for( int i = 0; i < (int) m_pcbNetlist.GetCount(); i++ )
+ {
+ net = m_pcbNetlist[i];
+
+ if( net->m_name == aNetName )
+ {
+ return net->m_netCode;
+ }
+ }
+
+ return 0;
+}
+
+XNODE* PCB::FindCompDefName( XNODE* aNode, wxString aName )
+{
+ XNODE* result = NULL, * lNode;
+ wxString propValue;
+
+ lNode = FindNode( aNode, wxT( "compDef" ) );
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "compDef" ) )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+
+ if( propValue == aName )
+ {
+ result = lNode;
+ lNode = NULL;
+ }
+ }
+
+ if( lNode )
+ lNode = lNode->GetNext();
+ }
+
+ return result;
+}
+
+
+void PCB::SetTextProperty( XNODE* aNode, TTEXTVALUE* aTextValue,
+ wxString aPatGraphRefName, wxString aXmlName,
+ wxString aActualConversion )
+{
+ XNODE* tNode, * t1Node;
+ wxString n, pn, propValue, str;
+
+ // aNode is pattern now
+ tNode = aNode;
+ t1Node = aNode;
+ n = aXmlName;
+
+ // new file foramat version
+ if( FindNode( tNode, wxT( "patternGraphicsNameRef" ) ) )
+ {
+ FindNode( tNode,
+ wxT( "patternGraphicsNameRef" ) )->GetAttribute( wxT( "Name" ),
+ &pn );
+ pn.Trim( false );
+ pn.Trim( true );
+ tNode = FindNode( tNode, wxT( "patternGraphicsRef" ) );
+
+ while( tNode )
+ {
+ if( tNode->GetName() == wxT( "patternGraphicsRef" ) )
+ {
+ if( FindNode( tNode, wxT( "patternGraphicsNameRef" ) ) )
+ {
+ FindNode( tNode,
+ wxT( "patternGraphicsNameRef" ) )->GetAttribute( wxT( "Name" ),
+ &propValue );
+
+ if( propValue == pn )
+ {
+ t1Node = tNode; // find correct section with same name.
+ str = aTextValue->text;
+ str.Trim( false );
+ str.Trim( true );
+ n = n + wxT( ' ' ) + str; // changed in new file version.....
+ tNode = NULL;
+ }
+ }
+ }
+
+ if( tNode )
+ tNode = tNode->GetNext();
+ }
+ }
+
+ // old version and compatibile fr both from this point
+ tNode = FindNode( t1Node, wxT( "attr" ) );
+
+ while( tNode )
+ {
+ tNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+
+ if( propValue == n )
+ break;
+
+ tNode = tNode->GetNext();
+ }
+
+ if( tNode )
+ SetTextParameters( tNode, aTextValue, m_defaultMeasurementUnit, aActualConversion );
+}
+
+
+void PCB::DoPCBComponents( XNODE* aNode,
+ wxXmlDocument* aXmlDoc,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar )
+{
+ XNODE* lNode, * tNode, * mNode;
+ PCB_MODULE* mc;
+ PCB_PAD* pad;
+ PCB_VIA* via;
+ PCB_KEEPOUT* keepOut;
+ wxString cn, str, propValue;
+
+ lNode = aNode->GetChildren();
+
+ while( lNode )
+ {
+ mc = NULL;
+
+ if( lNode->GetName() == wxT( "pattern" ) )
+ {
+ FindNode( lNode, wxT( "patternRef" ) )->GetAttribute( wxT( "Name" ),
+ &cn );
+ cn = ValidateName( cn );
+ tNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "library" ) );
+
+ if( tNode && cn.Len() > 0 )
+ {
+ tNode = FindModulePatternDefName( tNode, cn );
+
+ if( tNode )
+ {
+ mc = new PCB_MODULE( this, m_board );
+ mc->Parse( tNode, aStatusBar, m_defaultMeasurementUnit, aActualConversion );
+ }
+ }
+
+ if( mc )
+ {
+ mc->m_compRef = cn; // default - in new version of file it is updated later....
+ tNode = FindNode( lNode, wxT( "refDesRef" ) );
+
+ if( tNode )
+ {
+ tNode->GetAttribute( wxT( "Name" ), &mc->m_name.text );
+ SetTextProperty( lNode, &mc->m_name, mc->m_patGraphRefName, wxT(
+ "RefDes" ), aActualConversion );
+ SetTextProperty( lNode, &mc->m_value, mc->m_patGraphRefName, wxT(
+ "Value" ), aActualConversion );
+ }
+
+ tNode = FindNode( lNode, wxT( "pt" ) );
+
+ if( tNode )
+ SetPosition( tNode->GetNodeContent(),
+ m_defaultMeasurementUnit,
+ &mc->m_positionX,
+ &mc->m_positionY,
+ aActualConversion );
+
+ tNode = FindNode( lNode, wxT( "rotation" ) );
+
+ if( tNode )
+ {
+ str = tNode->GetNodeContent();
+ str.Trim( false );
+ mc->m_rotation = StrToInt1Units( str );
+ }
+
+ str = FindNodeGetContent( lNode, wxT( "isFlipped" ) );
+
+ if( str == wxT( "True" ) )
+ mc->m_mirror = 1;
+
+ tNode = aNode;
+
+ while( tNode->GetName() != wxT( "www.lura.sk" ) )
+ tNode = tNode->GetParent();
+
+ tNode = FindNode( tNode, wxT( "netlist" ) );
+
+ if( tNode )
+ {
+ tNode = FindNode( tNode, wxT( "compInst" ) );
+
+ while( tNode )
+ {
+ tNode->GetAttribute( wxT( "Name" ), &propValue );
+
+ if( propValue == mc->m_name.text )
+ {
+ if( FindNode( tNode, wxT( "compValue" ) ) )
+ {
+ FindNode( tNode,
+ wxT( "compValue" ) )->GetAttribute( wxT( "Name" ),
+ &mc->m_value.text );
+ mc->m_value.text.Trim( false );
+ mc->m_value.text.Trim( true );
+ }
+
+ if( FindNode( tNode, wxT( "compRef" ) ) )
+ {
+ FindNode( tNode,
+ wxT( "compRef" ) )->GetAttribute( wxT( "Name" ),
+ &mc->m_compRef );
+ mc->m_compRef.Trim( false );
+ mc->m_compRef.Trim( true );
+ }
+
+ tNode = NULL;
+ }
+ else
+ tNode = tNode->GetNext();
+ }
+ }
+
+ // map pins
+ tNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "library" ) );
+ tNode = FindCompDefName( tNode, mc->m_compRef );
+
+ if( tNode )
+ {
+ tNode = FindPinMap( tNode );
+
+ if( tNode )
+ {
+ mNode = tNode->GetChildren();
+
+ while( mNode )
+ {
+ if( mNode->GetName() == wxT( "padNum" ) )
+ {
+ str = mNode->GetNodeContent();
+ mNode = mNode->GetNext();
+
+ if( !mNode )
+ break;
+
+ mNode->GetAttribute( wxT( "Name" ), &propValue );
+ mc->SetPadName( str, propValue );
+ mNode = mNode->GetNext();
+ }
+ else
+ {
+ mNode = mNode->GetNext();
+
+ if( !mNode )
+ break;
+
+ mNode = mNode->GetNext();
+ }
+ }
+ }
+ }
+
+ m_pcbComponents.Add( mc );
+ }
+ }
+ else if( lNode->GetName() == wxT( "pad" ) )
+ {
+ pad = new PCB_PAD( this, m_board );
+ pad->Parse( lNode, m_defaultMeasurementUnit, aActualConversion );
+ m_pcbComponents.Add( pad );
+ }
+ else if( lNode->GetName() == wxT( "via" ) )
+ {
+ via = new PCB_VIA( this, m_board );
+ via->Parse( lNode, m_defaultMeasurementUnit, aActualConversion );
+ m_pcbComponents.Add( via );
+ }
+ else if( lNode->GetName() == wxT( "polyKeepOut" ) )
+ {
+ keepOut = new PCB_KEEPOUT( m_callbacks, m_board, 0 );
+
+ if( keepOut->Parse( lNode, m_defaultMeasurementUnit, aActualConversion ) )
+ m_pcbComponents.Add( keepOut );
+ else
+ delete keepOut;
+ }
+
+ lNode = lNode->GetNext();
+ }
+}
+
+
+void PCB::ConnectPinToNet( wxString aCompRef, wxString aPinRef, wxString aNetName )
+{
+ PCB_MODULE* module;
+ PCB_PAD* cp;
+ int i, j;
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ module = (PCB_MODULE*) m_pcbComponents[i];
+
+ if( module->m_objType == wxT( 'M' ) && module->m_name.text == aCompRef )
+ {
+ for( j = 0; j < (int) module->m_moduleObjects.GetCount(); j++ )
+ {
+ if( module->m_moduleObjects[j]->m_objType == wxT( 'P' ) )
+ {
+ cp = (PCB_PAD*) module->m_moduleObjects[j];
+
+ if( cp->m_name.text == aPinRef )
+ cp->m_net = aNetName;
+ }
+ }
+ }
+ }
+}
+
+int PCB::FindLayer( wxString aLayerName )
+{
+ int i;
+
+ for ( i = 0; i < (int) m_layersStackup.GetCount(); i++ )
+ {
+ if( m_layersStackup[i] == aLayerName )
+ return i;
+ }
+
+ return -1;
+}
+
+/* KiCad layers
+ * 0 Copper layer
+ * 1 to 14 Inner layers
+ * 15 Component layer
+ * 16 Copper side adhesive layer Technical layers
+ * 17 Component side adhesive layer
+ * 18 Copper side Solder paste layer
+ * 19 Component Solder paste layer
+ * 20 Copper side Silk screen layer
+ * 21 Component Silk screen layer
+ * 22 Copper side Solder mask layer
+ * 23 Component Solder mask layer
+ * 24 Draw layer (Used for general drawings)
+ * 25 Comment layer (Other layer used for general drawings)
+ * 26 ECO1 layer (Other layer used for general drawings) // BUG
+ * 26 ECO2 layer (Other layer used for general drawings) // BUG 27
+ * 27 Edge layer. Items on Edge layer are seen on all layers // BUG 28
+ */
+void PCB::MapLayer( XNODE* aNode )
+{
+ wxString lName, layerType;
+ int KiCadLayer;
+ long num = 0;
+
+ aNode->GetAttribute( wxT( "Name" ), &lName );
+ lName = lName.MakeUpper();
+
+ if( lName == wxT( "TOP ASSY" ) )
+ KiCadLayer = COMMENT_N;
+ else if( lName == wxT( "TOP SILK" ) )
+ KiCadLayer = SILKSCREEN_N_FRONT;
+ else if( lName == wxT( "TOP PASTE" ) )
+ KiCadLayer = SOLDERPASTE_N_FRONT;
+ else if( lName == wxT( "TOP MASK" ) )
+ KiCadLayer = SOLDERMASK_N_FRONT;
+ else if( lName == wxT( "TOP" ) )
+ KiCadLayer = LAST_COPPER_LAYER;
+ else if( lName == wxT( "BOTTOM" ) )
+ KiCadLayer = FIRST_COPPER_LAYER;
+ else if( lName == wxT( "BOT MASK" ) )
+ KiCadLayer = SOLDERMASK_N_BACK;
+ else if( lName == wxT( "BOT PASTE" ) )
+ KiCadLayer = SOLDERPASTE_N_BACK;
+ else if( lName == wxT( "BOT SILK" ) )
+ KiCadLayer = SILKSCREEN_N_BACK;
+ else if( lName == wxT( "BOT ASSY" ) )
+ KiCadLayer = DRAW_N;
+ else if( lName == wxT( "BOARD" ) )
+ KiCadLayer = EDGE_N;
+ else
+ {
+ KiCadLayer = FindLayer( lName );
+
+ if( KiCadLayer == -1 )
+ KiCadLayer = DRAW_N; // default
+ else
+ KiCadLayer = FIRST_COPPER_LAYER + m_layersStackup.GetCount() - 1 - KiCadLayer;
+ }
+
+ if( FindNode( aNode, wxT( "layerNum" ) ) )
+ FindNode( aNode, wxT( "layerNum" ) )->GetNodeContent().ToLong( &num );
+
+ assert( num >= FIRST_COPPER_LAYER && num <= LAST_NO_COPPER_LAYER );
+ m_layersMap[(int) num].KiCadLayer = KiCadLayer;
+
+ if( FindNode( aNode, wxT( "layerType" ) ) )
+ {
+ layerType = FindNode( aNode, wxT( "layerType" ) )->GetNodeContent().Trim( false );
+
+ if( layerType == wxT( "NonSignal" ) )
+ m_layersMap[(int) num].layerType = LAYER_TYPE_NONSIGNAL;
+ if( layerType == wxT( "Signal" ) )
+ m_layersMap[(int) num].layerType = LAYER_TYPE_SIGNAL;
+ if( layerType == wxT( "Plane" ) )
+ m_layersMap[(int) num].layerType = LAYER_TYPE_PLANE;
+ }
+
+ if( FindNode( aNode, wxT( "netNameRef" ) ) )
+ {
+ FindNode( aNode, wxT( "netNameRef" ) )->GetAttribute( wxT( "Name" ),
+ &m_layersMap[(int) num].netNameRef );
+ }
+}
+
+int PCB::FindOutlinePoint( VERTICES_ARRAY* aOutline, wxRealPoint aPoint )
+{
+ int i;
+
+ for( i = 0; i < (int) aOutline->GetCount(); i++ )
+ if( *((*aOutline)[i]) == aPoint )
+ return i;
+
+ return -1;
+}
+
+/*int cmpFunc( wxRealPoint **first, wxRealPoint **second )
+{
+ return sqrt( pow( (double) aPointA.x - (double) aPointB.x, 2 ) +
+ pow( (double) aPointA.y - (double) aPointB.y, 2 ) );
+
+ return 0;
+}*/
+double PCB::GetDistance( wxRealPoint* aPoint1, wxRealPoint* aPoint2 )
+{
+ return sqrt( ( aPoint1->x - aPoint2->x ) *
+ ( aPoint1->x - aPoint2->x ) +
+ ( aPoint1->y - aPoint2->y ) *
+ ( aPoint1->y - aPoint2->y ) );
+}
+
+void PCB::GetBoardOutline( wxXmlDocument* aXmlDoc, wxString aActualConversion )
+{
+ XNODE* iNode, *lNode, *pNode;
+ long PCadLayer = 0;
+ int x, y, i, j, targetInd;
+ wxRealPoint* xchgPoint;
+ double minDistance, distance;
+
+ iNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "pcbDesign" ) );
+
+ if( iNode )
+ {
+ // COMPONENTS AND OBJECTS
+ iNode = iNode->GetChildren();
+
+ while( iNode )
+ {
+ // objects
+ if( iNode->GetName() == wxT( "layerContents" ) )
+ {
+ if( FindNode( iNode, wxT( "layerNumRef" ) ) )
+ FindNode( iNode, wxT( "layerNumRef" ) )->GetNodeContent().ToLong( &PCadLayer );
+
+ if( GetKiCadLayer( PCadLayer ) == EDGE_N )
+ {
+ lNode = iNode->GetChildren();
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "line" ) )
+ {
+ pNode = FindNode( lNode, wxT( "pt" ) );
+
+ if( pNode )
+ {
+ SetPosition( pNode->GetNodeContent(), m_defaultMeasurementUnit,
+ &x, &y, aActualConversion );
+
+ if( FindOutlinePoint( &m_boardOutline, wxRealPoint( x, y) ) == -1 )
+ m_boardOutline.Add( new wxRealPoint( x, y ) );
+ }
+
+
+ pNode = pNode->GetNext();
+
+ if( pNode )
+ {
+ SetPosition( pNode->GetNodeContent(), m_defaultMeasurementUnit,
+ &x, &y, aActualConversion );
+
+ if( FindOutlinePoint( &m_boardOutline, wxRealPoint( x, y) ) == -1 )
+ m_boardOutline.Add( new wxRealPoint( x, y ) );
+ }
+ }
+
+ lNode = lNode->GetNext();
+ }
+
+ //m_boardOutline.Sort( cmpFunc );
+ // sort vertices according to the distances between them
+ if( m_boardOutline.GetCount() > 3 )
+ {
+ for( i = 0; i < (int) m_boardOutline.GetCount() - 1; i++ )
+ {
+ minDistance = GetDistance( m_boardOutline[i], m_boardOutline[i + 1] );
+ targetInd = i + 1;
+
+ for( j = i + 2; j < (int) m_boardOutline.GetCount(); j++ )
+ {
+ distance = GetDistance( m_boardOutline[i], m_boardOutline[j] );
+ if( distance < minDistance )
+ {
+ minDistance = distance;
+ targetInd = j;
+ }
+ }
+
+ xchgPoint = m_boardOutline[i + 1];
+ m_boardOutline[i + 1] = m_boardOutline[targetInd];
+ m_boardOutline[targetInd] = xchgPoint;
+ }
+ }
+
+ break;
+ }
+ }
+
+ iNode = iNode->GetNext();
+ }
+ }
+}
+
+void PCB::Parse( wxStatusBar* aStatusBar, wxXmlDocument* aXmlDoc, wxString aActualConversion )
+{
+ XNODE* aNode;//, *aaNode;
+ PCB_NET* net;
+ PCB_COMPONENT* comp;
+ PCB_MODULE* module;
+ wxString compRef, pinRef, layerName, layerType;
+ int i, j, netCode;
+
+ // Defaut measurement units
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "asciiHeader" ) );
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "fileUnits" ) );
+
+ if( aNode )
+ {
+ m_defaultMeasurementUnit = aNode->GetNodeContent();
+ m_defaultMeasurementUnit.Trim( true );
+ m_defaultMeasurementUnit.Trim( false );
+ }
+ }
+
+ // Determine layers stackup
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "pcbDesign" ) );
+
+ /*if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "layersStackup" ) );
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "layerStackupData" ) );
+
+ while( aNode )
+ {
+ if( aNode->GetName() == wxT( "layerStackupData" ) )
+ {
+ aaNode = FindNode( aNode, wxT( "layerStackupName" ) );
+
+ if( aaNode ) {
+ aaNode->GetAttribute( wxT( "Name" ), &layerName );
+ layerName = layerName.MakeUpper();
+ m_layersStackup.Add( layerName );
+ }
+ }
+
+ aNode = aNode->GetNext();
+ }
+ }
+ }*/
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "layerDef" ) );
+
+ while( aNode )
+ {
+ if( aNode->GetName() == wxT( "layerDef" ) )
+ {
+ if( FindNode( aNode, wxT( "layerType" ) ) )
+ {
+ layerType = FindNode( aNode,
+ wxT( "layerType" ) )->GetNodeContent().Trim( false );
+
+ if( layerType == wxT( "Signal" ) || layerType == wxT( "Plane" ) )
+ {
+ aNode->GetAttribute( wxT( "Name" ), &layerName );
+ layerName = layerName.MakeUpper();
+ m_layersStackup.Add( layerName );
+ }
+ }
+ }
+
+ aNode = aNode->GetNext();
+ }
+ }
+
+ // Layers mapping
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "pcbDesign" ) );
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "layerDef" ) );
+
+ while( aNode )
+ {
+ if( aNode->GetName() == wxT( "layerDef" ) )
+ MapLayer( aNode );
+
+ aNode = aNode->GetNext();
+ }
+ }
+
+ GetBoardOutline( aXmlDoc, aActualConversion );
+
+ // NETLIST
+ // aStatusBar->SetStatusText( wxT( "Loading NETLIST " ) );
+
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "netlist" ) );
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "net" ) );
+
+ netCode = 1;
+
+ while( aNode )
+ {
+ net = new PCB_NET( netCode++ );
+ net->Parse( aNode );
+ m_pcbNetlist.Add( net );
+
+ aNode = aNode->GetNext();
+ }
+ }
+
+ // BOARD FILE
+ // aStatusBar->SetStatusText( wxT( "Loading BOARD DEFINITION " ) );
+
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "pcbDesign" ) );
+
+ if( aNode )
+ {
+ // COMPONENTS AND OBJECTS
+ aNode = aNode->GetChildren();
+
+ while( aNode )
+ {
+ // Components/modules
+ if( aNode->GetName() == wxT( "multiLayer" ) )
+ DoPCBComponents( aNode, aXmlDoc, aActualConversion, aStatusBar );
+
+ // objects
+ if( aNode->GetName() == wxT( "layerContents" ) )
+ DoLayerContentsObjects( aNode, NULL, &m_pcbComponents, aStatusBar,
+ m_defaultMeasurementUnit, aActualConversion );
+
+ aNode = aNode->GetNext();
+ }
+
+ // POSTPROCESS -- SET NETLIST REFERENCES
+ // aStatusBar->SetStatusText( wxT( "Processing NETLIST " ) );
+
+ for( i = 0; i < (int) m_pcbNetlist.GetCount(); i++ )
+ {
+ net = m_pcbNetlist[i];
+
+ for( j = 0; j < (int) net->m_netNodes.GetCount(); j++ )
+ {
+ compRef = net->m_netNodes[j]->m_compRef;
+ compRef.Trim( false );
+ compRef.Trim( true );
+ pinRef = net->m_netNodes[j]->m_pinRef;
+ pinRef.Trim( false );
+ pinRef.Trim( true );
+ ConnectPinToNet( compRef, pinRef, net->m_name );
+ }
+ }
+
+ // POSTPROCESS -- FLIP COMPONENTS
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ if( m_pcbComponents[i]->m_objType == wxT( 'M' ) )
+ ( (PCB_MODULE*) m_pcbComponents[i] )->Flip();
+ }
+
+ // POSTPROCESS -- SET/OPTIMIZE NEW PCB POSITION
+ // aStatusBar->SetStatusText( wxT( "Optimizing BOARD POSITION " ) );
+
+ m_sizeX = 10000000;
+ m_sizeY = 0;
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ comp = m_pcbComponents[i];
+
+ if( comp->m_positionY < m_sizeY )
+ m_sizeY = comp->m_positionY; // max Y
+
+ if( comp->m_positionX < m_sizeX && comp->m_positionX > 0 )
+ m_sizeX = comp->m_positionX; // Min X
+ }
+
+ m_sizeY -= 10000;
+ m_sizeX -= 10000;
+ // aStatusBar->SetStatusText( wxT( " POSITIONING POSTPROCESS " ) );
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ m_pcbComponents[i]->SetPosOffset( -m_sizeX, -m_sizeY );
+
+ m_sizeX = 0;
+ m_sizeY = 0;
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ comp = m_pcbComponents[i];
+
+ if( comp->m_positionY < m_sizeY )
+ m_sizeY = comp->m_positionY; // max Y
+
+ if( comp->m_positionX > m_sizeX )
+ m_sizeX = comp->m_positionX; // Min X
+ }
+
+ // SHEET SIZE CALCULATION
+ m_sizeY = -m_sizeY; // it is in absolute units
+ m_sizeX += 10000;
+ m_sizeY += 10000;
+
+ // A4 is minimum $Descr A4 11700 8267
+ if( m_sizeX < 11700 )
+ m_sizeX = 11700;
+
+ if( m_sizeY < 8267 )
+ m_sizeY = 8267;
+ }
+ else
+ {
+ // LIBRARY FILE
+ // aStatusBar->SetStatusText( wxT( "Processing LIBRARY FILE " ) );
+
+ aNode = FindNode( (XNODE *)aXmlDoc->GetRoot(), wxT( "library" ) );
+
+ if( aNode )
+ {
+ aNode = FindNode( aNode, wxT( "compDef" ) );
+
+ while( aNode )
+ {
+ // aStatusBar->SetStatusText( wxT( "Processing COMPONENTS " ) );
+
+ if( aNode->GetName() == wxT( "compDef" ) )
+ {
+ module = new PCB_MODULE( this, m_board );
+ module->Parse( aNode, aStatusBar, m_defaultMeasurementUnit,
+ aActualConversion );
+ m_pcbComponents.Add( module );
+ }
+
+ aNode = aNode->GetNext();
+ }
+ }
+ }
+}
+
+
+void PCB::WriteToFile( wxString aFileName )
+{
+ wxFile f;
+ int i;
+
+ f.Open( aFileName, wxFile::write );
+
+ // LIBRARY
+ f.Write( wxT( "PCBNEW-LibModule-V1 01/01/2001-01:01:01\n" ) );
+ f.Write( wxT( "\n" ) );
+ f.Write( wxT( "$INDEX\n" ) );
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ if( m_pcbComponents[i]->m_objType == wxT( 'M' ) )
+ f.Write( m_pcbComponents[i]->m_name.text + wxT( "\n" ) );
+ }
+
+ f.Write( wxT( "$EndINDEX\n" ) );
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ if( m_pcbComponents[i]->m_objType == wxT( 'M' ) )
+ m_pcbComponents[i]->WriteToFile( &f, wxT( 'L' ) );
+ }
+
+ f.Write( wxT( "$EndLIBRARY\n" ) );
+
+ f.Close();
+}
+
+
+void PCB::AddToBoard()
+{
+ int i;
+ PCB_NET* net;
+
+ m_board->SetCopperLayerCount( m_layersStackup.GetCount() );
+
+ for( i = 0; i < (int) m_pcbComponents.GetCount(); i++ )
+ {
+ m_pcbComponents[i]->AddToBoard();
+ }
+
+ for( i = 0; i < (int) m_pcbNetlist.GetCount(); i++ )
+ {
+ net = m_pcbNetlist[i];
+
+ m_board->AppendNet( new NETINFO_ITEM( m_board, net->m_name, net->m_netCode ) );
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb.h b/pcbnew/pcad2kicadpcb_plugin/pcb.h
new file mode 100644
index 0000000000..2c4ae04aaa
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb.h
@@ -0,0 +1,91 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb.h
+ */
+
+#ifndef pcb_H_
+#define pcb_H_
+
+#include
+#include
+
+#include
+#include
+
+namespace PCAD2KICAD {
+
+class PCB : public PCB_MODULE, public PCB_CALLBACKS
+{
+public:
+ PCB_COMPONENTS_ARRAY m_pcbComponents; // PCB Modules,Lines,Routes,Texts, .... and so on
+ PCB_NETS_ARRAY m_pcbNetlist; // net objects collection
+ wxString m_defaultMeasurementUnit;
+ TLAYER m_layersMap[NB_LAYERS]; // flexible layers mapping
+ int m_sizeX;
+ int m_sizeY;
+
+ PCB( BOARD* aBoard );
+ ~PCB();
+
+ int GetKiCadLayer( int aPCadLayer );
+ LAYER_TYPE_T GetLayerType( int aPCadLayer );
+ wxString GetLayerNetNameRef( int aPCadLayer );
+ int GetNewTimestamp();
+ int GetNetCode( wxString aNetName );
+
+ void Parse( wxStatusBar* aStatusBar,
+ wxXmlDocument* aXmlDoc,
+ wxString aActualConversion );
+
+ virtual void WriteToFile( wxString aFileName );
+ void AddToBoard();
+
+private:
+ int m_timestamp_cnt;
+ wxArrayString m_layersStackup;
+
+ XNODE* FindCompDefName( XNODE* aNode, wxString aName );
+ void SetTextProperty( XNODE* aNode,
+ TTEXTVALUE* aTextValue,
+ wxString aPatGraphRefName,
+ wxString aXmlName,
+ wxString aActualConversion );
+ void DoPCBComponents( XNODE* aNode,
+ wxXmlDocument* aXmlDoc,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar );
+ void ConnectPinToNet( wxString aCr, wxString aPr, wxString aNetName );
+ int FindLayer( wxString aLayerName );
+ void MapLayer( XNODE* aNode );
+ int FindOutlinePoint( VERTICES_ARRAY* aOutline, wxRealPoint aPoint );
+ double GetDistance( wxRealPoint* aPoint1, wxRealPoint* aPoint2 );
+ void GetBoardOutline( wxXmlDocument* aXmlDoc, wxString aActualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // pcb_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_arc.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_arc.cpp
new file mode 100644
index 0000000000..b47c77b471
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_arc.cpp
@@ -0,0 +1,186 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_arc.cpp
+ */
+
+#include
+#include
+
+#include
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_ARC::PCB_ARC( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_COMPONENT( aCallbacks, aBoard )
+{
+ m_objType = wxT( 'A' );
+ m_startX = 0;
+ m_startY = 0;
+ m_angle = 0;
+ m_width = 0;
+}
+
+
+PCB_ARC::~PCB_ARC()
+{
+}
+
+
+void PCB_ARC::Parse( XNODE* aNode,
+ int aLayer,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+ double r = 0.0, a = 0.0;
+ int endPointX, endPointY;
+
+ m_PCadLayer = aLayer;
+ m_KiCadLayer = GetKiCadLayer();
+ if( FindNode( aNode, wxT( "width" ) ) )
+ SetWidth( FindNode( aNode, wxT( "width" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &m_width, aActualConversion );
+
+ if( aNode->GetName() == wxT( "triplePointArc" ) )
+ {
+ // center point
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ // start point
+ lNode = lNode->GetNext();
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_startX, &m_startY, aActualConversion );
+
+ // end point
+ lNode = lNode->GetNext();
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &endPointX, &endPointY, aActualConversion );
+
+ int alpha1 = ArcTangente( m_startY - m_positionY, m_startX - m_positionX );
+ int alpha2 = ArcTangente( endPointY - m_positionY, endPointX - m_positionX );
+ m_angle = alpha1 - alpha2;
+
+ if( m_angle < 0 )
+ m_angle = 3600 + m_angle;
+ }
+
+ if( aNode->GetName() == wxT( "arc" ) )
+ {
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "radius" ) );
+ if( lNode)
+ r = StrToIntUnits( lNode->GetNodeContent(), wxT( ' ' ), aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "startAngle" ) );
+ if( lNode )
+ a = StrToInt1Units( lNode->GetNodeContent() );
+
+ m_startX = KiROUND( m_positionX + r * sin( (a - 900.0) * M_PI / 1800.0 ) );
+ m_startY = KiROUND( m_positionY - r * cos( (a - 900.0) * M_PI / 1800.0 ) );
+
+ lNode = FindNode( aNode, wxT( "sweepAngle" ) );
+ if( lNode )
+ m_angle = StrToInt1Units( lNode->GetNodeContent() );
+ }
+}
+
+
+void PCB_ARC::WriteToFile( wxFile* aFile, char aFileType )
+{
+/*
+ * DC ox oy fx fy w DC is a Draw Circle DC Xcentre Ycentre Xpoint Ypoint Width Layer
+ * DA x0 y0 x1 y1 angle width layer DA is a Draw ArcX0,y0 = Start point x1,y1 = end point
+ */
+ if( aFileType == wxT( 'L' ) ) // Library component
+ {
+ aFile->Write( wxString::Format( wxT( "DA %d %d %d %d %d %d %d\n" ),
+ m_positionX, m_positionY, m_startX,
+ m_startY, m_angle, m_width,
+ m_KiCadLayer ) ); // ValueString
+ }
+}
+
+
+void PCB_ARC::SetPosOffset( int aX_offs, int aY_offs )
+{
+ PCB_COMPONENT::SetPosOffset( aX_offs, aY_offs );
+
+ m_startX += aX_offs;
+ m_startY += aY_offs;
+}
+
+
+void PCB_ARC::AddToModule( MODULE* aModule )
+{
+ if( IsValidNonCopperLayerIndex( m_KiCadLayer ) )
+ {
+ EDGE_MODULE* arc = new EDGE_MODULE( aModule, S_ARC );
+ aModule->m_Drawings.PushBack( arc );
+
+ arc->SetAngle( -m_angle );
+ arc->m_Start0 = wxPoint( m_positionX, m_positionY );
+ arc->m_End0 = wxPoint( m_startX, m_startY );
+
+ arc->SetWidth( m_width );
+ arc->SetLayer( m_KiCadLayer );
+
+ arc->SetDrawCoord();
+ }
+}
+
+
+void PCB_ARC::AddToBoard()
+{
+ DRAWSEGMENT* dseg = new DRAWSEGMENT( m_board );
+
+ m_board->Add( dseg, ADD_APPEND );
+
+ dseg->SetShape( S_ARC );
+ dseg->SetTimeStamp( m_timestamp );
+ dseg->SetLayer( m_KiCadLayer );
+ dseg->SetStart( wxPoint( m_positionX, m_positionY ) );
+ dseg->SetEnd( wxPoint( m_startX, m_startY ) );
+ dseg->SetAngle( -m_angle );
+ dseg->SetWidth( m_width );
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_arc.h b/pcbnew/pcad2kicadpcb_plugin/pcb_arc.h
new file mode 100644
index 0000000000..de91395748
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_arc.h
@@ -0,0 +1,61 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_arc.h
+ */
+
+#ifndef PCB_ARC_H_
+#define PCB_ARC_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_ARC : public PCB_COMPONENT
+{
+public:
+ int m_startX;
+ int m_startY;
+ int m_angle;
+ int m_width;
+
+ PCB_ARC( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_ARC();
+
+ virtual void Parse( XNODE* aNode, int aLayer,
+ wxString aDefaultMeasurementUnit, wxString aActualConversion );
+
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ virtual void SetPosOffset( int aX_offs, int aY_offs );
+ void AddToModule( MODULE* aModule );
+ void AddToBoard();
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_ARC_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_callbacks.h b/pcbnew/pcad2kicadpcb_plugin/pcb_callbacks.h
new file mode 100644
index 0000000000..2cbc11c53f
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_callbacks.h
@@ -0,0 +1,63 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_callbacks.h
+ */
+
+#ifndef PCB_CALLBACKS_H_
+#define PCB_CALLBACKS_H_
+
+#include
+
+enum LAYER_TYPE_T
+{
+ LAYER_TYPE_SIGNAL,
+ LAYER_TYPE_NONSIGNAL,
+ LAYER_TYPE_PLANE
+};
+
+typedef struct _TLAYER
+{
+ int KiCadLayer;
+ LAYER_TYPE_T layerType;
+ wxString netNameRef;
+} TLAYER;
+
+namespace PCAD2KICAD
+{
+
+ class PCB_CALLBACKS
+ {
+ public:
+ virtual int GetKiCadLayer( int aPCadLayer ) = 0;
+ virtual LAYER_TYPE_T GetLayerType( int aPCadLayer ) = 0;
+ virtual wxString GetLayerNetNameRef( int aPCadLayer ) = 0;
+ virtual int GetNewTimestamp() = 0;
+ virtual int GetNetCode( wxString netName ) = 0;
+ };
+}
+
+#endif // PCB_CALLBACKS_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_component.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_component.cpp
new file mode 100644
index 0000000000..23c0e461ad
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_component.cpp
@@ -0,0 +1,80 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_component.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_COMPONENT::PCB_COMPONENT( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard ) : m_callbacks( aCallbacks ),
+ m_board( aBoard )
+{
+ m_tag = 0;
+ m_objType = wxT( '?' );
+ m_PCadLayer = 0;
+ m_KiCadLayer = 0;
+ m_timestamp = 0;
+ m_positionX = 0;
+ m_positionY = 0;
+ m_rotation = 0;
+ InitTTextValue( &m_name );
+ m_net = wxEmptyString;
+ m_netCode = 0;
+ m_compRef = wxEmptyString;
+ m_patGraphRefName = wxEmptyString;
+}
+
+
+PCB_COMPONENT::~PCB_COMPONENT()
+{
+}
+
+
+void PCB_COMPONENT::WriteToFile( wxFile* aFile, char aFileType )
+{
+}
+
+
+void PCB_COMPONENT::AddToModule( MODULE* aModule )
+{
+}
+
+
+void PCB_COMPONENT::SetPosOffset( int aX_offs, int aY_offs )
+{
+ m_positionX += aX_offs;
+ m_positionY += aY_offs;
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_component.h b/pcbnew/pcad2kicadpcb_plugin/pcb_component.h
new file mode 100644
index 0000000000..98333326f4
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_component.h
@@ -0,0 +1,86 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_component.h
+ */
+
+#ifndef PCB_COMPONENT_H_
+#define PCB_COMPONENT_H_
+
+#include
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+namespace PCAD2KICAD {
+
+// basic parent class for PCB objects
+class PCB_COMPONENT : public wxObject
+{
+public:
+ int m_tag;
+ char m_objType;
+ int m_PCadLayer;
+ int m_KiCadLayer;
+ int m_timestamp;
+ int m_positionX;
+ int m_positionY;
+ int m_rotation;
+ TTEXTVALUE m_name; // name has also privete positions, rotations nand so on....
+ wxString m_net;
+ int m_netCode;
+ wxString m_compRef; // internal ussage for XL parsing
+ wxString m_patGraphRefName; // internal ussage for XL parsing
+
+ PCB_COMPONENT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_COMPONENT();
+
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ virtual void SetPosOffset( int aX_offs, int aY_offs );
+ virtual void AddToModule( MODULE* aModule );
+ virtual void AddToBoard() = 0;
+
+ int GetKiCadLayer() { return m_callbacks->GetKiCadLayer( m_PCadLayer ); }
+ int GetNewTimestamp() { return m_callbacks->GetNewTimestamp(); }
+ int GetNetCode( wxString aNetName ) { return m_callbacks->GetNetCode( aNetName ); }
+protected:
+ PCB_CALLBACKS* m_callbacks;
+ BOARD* m_board;
+};
+
+WX_DEFINE_ARRAY( PCB_COMPONENT*, PCB_COMPONENTS_ARRAY );
+WX_DEFINE_ARRAY( wxRealPoint*, VERTICES_ARRAY );
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_COMPONENT_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.cpp
new file mode 100644
index 0000000000..9aafe80588
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.cpp
@@ -0,0 +1,108 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_copper_pour.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_COPPER_POUR::PCB_COPPER_POUR( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard,
+ int aPCadLayer ) :
+ PCB_POLYGON( aCallbacks, aBoard, aPCadLayer )
+{
+}
+
+
+PCB_COPPER_POUR::~PCB_COPPER_POUR()
+{
+}
+
+
+bool PCB_COPPER_POUR::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar )
+{
+ XNODE* lNode;
+ wxString pourType, str, propValue;
+ int pourSpacing, thermalWidth;
+
+ // aStatusBar->SetStatusText( aStatusBar->GetStatusText() + wxT( " CooperPour..." ) );
+
+ //str = FindNode( aNode, wxT( "pourType" ) )->GetNodeContent();
+ //str.Trim( false );
+ //pourType = str.MakeUpper();
+
+ lNode = FindNode( aNode, wxT( "netNameRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_net = propValue;
+ m_netCode = GetNetCode( m_net );
+ }
+
+ if( FindNode( aNode, wxT( "width" ) ) )
+ SetWidth( FindNode( aNode, wxT( "width" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &m_width, aActualConversion );
+
+ if( FindNode( aNode, wxT( "pourSpacing" ) ) )
+ SetWidth( FindNode( aNode, wxT( "pourSpacing" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &pourSpacing, aActualConversion );
+
+ if( FindNode( aNode, wxT( "thermalWidth" ) ) )
+ SetWidth( FindNode( aNode, wxT( "thermalWidth" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &thermalWidth, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "pcbPoly" ) );
+
+ if( lNode )
+ {
+ // retrieve copper pour outline
+ FormPolygon( lNode, &m_outline, aDefaultMeasurementUnit, aActualConversion );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+ }
+ else
+ {
+ return false;
+ }
+
+ return true;
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.h b/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.h
new file mode 100644
index 0000000000..209b75f727
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_copper_pour.h
@@ -0,0 +1,54 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_copper_pour.h
+ */
+
+#ifndef PCB_COPPER_POUR_H_
+#define PCB_COPPER_POUR_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_COPPER_POUR : public PCB_POLYGON
+{
+public:
+
+ PCB_COPPER_POUR( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
+ ~PCB_COPPER_POUR();
+
+ virtual bool Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_COPPER_POUR_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.cpp
new file mode 100644
index 0000000000..4499783ea7
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.cpp
@@ -0,0 +1,74 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_cutout.cpp
+ */
+
+#include
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_CUTOUT::PCB_CUTOUT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer ) :
+ PCB_POLYGON( aCallbacks, aBoard, aPCadLayer )
+{
+ m_objType = wxT( 'C' );
+}
+
+
+PCB_CUTOUT::~PCB_CUTOUT()
+{
+}
+
+
+bool PCB_CUTOUT::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+
+ lNode = FindNode( aNode, wxT( "pcbPoly" ) );
+
+ if( lNode )
+ {
+ // retrieve cutout outline
+ FormPolygon( lNode, &m_outline, aDefaultMeasurementUnit, aActualConversion );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+ }
+ else
+ {
+ return false;
+ }
+
+ return true;
+}
+
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.h b/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.h
new file mode 100644
index 0000000000..9f8fa6be96
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_cutout.h
@@ -0,0 +1,53 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_cutout.h
+ */
+
+#ifndef PCB_CUTOUT_H_
+#define PCB_CUTOUT_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_CUTOUT : public PCB_POLYGON
+{
+public:
+
+ PCB_CUTOUT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
+ ~PCB_CUTOUT();
+
+ virtual bool Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString actualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_CUTOUT_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.cpp
new file mode 100644
index 0000000000..d6305b3343
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.cpp
@@ -0,0 +1,76 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_keepout.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_KEEPOUT::PCB_KEEPOUT( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard,
+ int aPCadLayer ) :
+ PCB_POLYGON( aCallbacks, aBoard, aPCadLayer )
+{
+ m_objType = wxT( 'K' );
+}
+
+
+PCB_KEEPOUT::~PCB_KEEPOUT()
+{
+}
+
+
+bool PCB_KEEPOUT::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+
+ lNode = FindNode( aNode, wxT( "pcbPoly" ) );
+
+ if( lNode )
+ {
+ // retrieve keepOut outline
+ FormPolygon( lNode, &m_outline, aDefaultMeasurementUnit, aActualConversion );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+ }
+ else
+ {
+ return false;
+ }
+
+ return true;
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.h b/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.h
new file mode 100644
index 0000000000..d6b951312d
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_keepout.h
@@ -0,0 +1,52 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_keepout.h
+ */
+
+#ifndef PCB_KEEPOUT_H_
+#define PCB_KEEPOUT_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_KEEPOUT : public PCB_POLYGON
+{
+public:
+
+ PCB_KEEPOUT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
+ ~PCB_KEEPOUT();
+
+ virtual bool Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_KEEPOUT_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_line.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_line.cpp
new file mode 100644
index 0000000000..a7e773b373
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_line.cpp
@@ -0,0 +1,166 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_line.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_LINE::PCB_LINE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_COMPONENT( aCallbacks,
+ aBoard )
+{
+ m_width = 0;
+ m_toX = 0;
+ m_toY = 0;
+ m_objType = wxT( 'L' );
+}
+
+
+PCB_LINE::~PCB_LINE()
+{
+}
+
+
+void PCB_LINE::Parse( XNODE* aNode,
+ int aLayer,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+ wxString propValue;
+
+ m_PCadLayer = aLayer;
+ m_KiCadLayer = GetKiCadLayer();
+ m_positionX = 0;
+ m_positionY = 0;
+ m_toX = 0;
+ m_toY = 0;
+ m_width = 0;
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ lNode = lNode->GetNext();
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_toX, &m_toY, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "width" ) );
+
+ if( lNode )
+ SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_width, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "netNameRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_net = propValue;
+ m_netCode = GetNetCode( m_net );
+ }
+}
+
+
+void PCB_LINE::SetPosOffset( int aX_offs, int aY_offs )
+{
+ PCB_COMPONENT::SetPosOffset( aX_offs, aY_offs );
+
+ m_toX += aX_offs;
+ m_toY += aY_offs;
+}
+
+
+void PCB_LINE::WriteToFile( wxFile* aFile, char aFileType )
+{
+ if( aFileType == wxT( 'L' ) ) // Library
+ {
+ aFile->Write( wxString::Format( wxT( "DS %d %d %d %d %d %d\n" ), m_positionX, m_positionY,
+ m_toX, m_toY, m_width, m_KiCadLayer ) ); // Position
+ }
+}
+
+
+void PCB_LINE::AddToModule( MODULE* aModule )
+{
+ if( IsValidNonCopperLayerIndex( m_KiCadLayer ) )
+ {
+ EDGE_MODULE* segment = new EDGE_MODULE( aModule, S_SEGMENT );
+ aModule->m_Drawings.PushBack( segment );
+
+ segment->m_Start0 = wxPoint( m_positionX, m_positionY );
+ segment->m_End0 = wxPoint( m_toX, m_toY );
+
+ segment->SetWidth( m_width );
+ segment->SetLayer( m_KiCadLayer );
+
+ segment->SetDrawCoord();
+ }
+}
+
+
+void PCB_LINE::AddToBoard()
+{
+ if( IsValidCopperLayerIndex( m_KiCadLayer ) )
+ {
+ TRACK* track = new TRACK( m_board );
+ m_board->m_Track.Append( track );
+
+ track->SetTimeStamp( m_timestamp );
+
+ track->SetPosition( wxPoint( m_positionX, m_positionY ) );
+ track->SetEnd( wxPoint( m_toX, m_toY ) );
+
+ track->SetWidth( m_width );
+
+ track->SetLayer( m_KiCadLayer );
+ track->SetNet( m_netCode );
+ }
+ else
+ {
+ DRAWSEGMENT* dseg = new DRAWSEGMENT( m_board );
+ m_board->Add( dseg, ADD_APPEND );
+
+ dseg->SetTimeStamp( m_timestamp );
+ dseg->SetLayer( m_KiCadLayer );
+ dseg->SetStart( wxPoint( m_positionX, m_positionY ) );
+ dseg->SetEnd( wxPoint( m_toX, m_toY ) );
+ dseg->SetWidth( m_width );
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_line.h b/pcbnew/pcad2kicadpcb_plugin/pcb_line.h
new file mode 100644
index 0000000000..7c4c36c8a3
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_line.h
@@ -0,0 +1,62 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_line.h
+ */
+
+#ifndef PCB_LINE_H_
+#define PCB_LINE_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+// Line , routes and drawings
+class PCB_LINE : public PCB_COMPONENT
+{
+public:
+ int m_width;
+ int m_toX;
+ int m_toY;
+
+ PCB_LINE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_LINE();
+
+ virtual void Parse( XNODE* aNode,
+ int aLayer,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ virtual void SetPosOffset( int aX_offs, int aY_offs );
+ void AddToModule( MODULE* aModule );
+ void AddToBoard();
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_LINE_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_module.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_module.cpp
new file mode 100644
index 0000000000..684c7f1e40
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_module.cpp
@@ -0,0 +1,801 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_module.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+namespace PCAD2KICAD {
+
+PCB_MODULE::PCB_MODULE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_COMPONENT( aCallbacks,
+ aBoard )
+{
+ InitTTextValue( &m_value );
+ m_mirror = 0;
+ m_objType = wxT( 'M' ); // MODULE
+ m_KiCadLayer = SILKSCREEN_N_FRONT; // default
+}
+
+
+PCB_MODULE::~PCB_MODULE()
+{
+ int i;
+
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ delete m_moduleObjects[i];
+ }
+}
+
+
+XNODE* PCB_MODULE::FindModulePatternDefName( XNODE* aNode, wxString aName )
+{
+ XNODE* result, * lNode;
+ wxString propValue1, propValue2;
+
+ result = NULL;
+ lNode = FindNode( aNode, wxT( "patternDef" ) );
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "patternDef" ) )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue1 );
+ FindNode( lNode,
+ wxT( "originalName" ) )->GetAttribute( wxT( "Name" ), &propValue2 );
+
+ if( ValidateName( propValue1 ) == aName
+ || ValidateName( propValue2 ) == aName )
+ {
+ result = lNode;
+ lNode = NULL;
+ }
+ }
+
+ if( lNode )
+ lNode = lNode->GetNext();
+ }
+
+ if( result == NULL )
+ {
+ lNode = FindNode( aNode, wxT( "patternDefExtended" ) ); // New file format
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "patternDefExtended" ) )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue1 );
+
+ if( ValidateName( propValue1 ) == aName )
+ {
+ result = lNode;
+ lNode = NULL;
+ }
+ }
+
+ if( lNode )
+ lNode = lNode->GetNext();
+ }
+ }
+
+ return result;
+}
+
+
+XNODE* PCB_MODULE::FindPatternMultilayerSection( XNODE* aNode, wxString* aPatGraphRefName )
+{
+ XNODE* result, * pNode, * lNode;
+ wxString propValue, patName;
+
+ result = NULL;
+ pNode = aNode; // pattern;
+ lNode = aNode;
+
+ // calling from library conversion we need to find pattern
+ if( lNode->GetName() == wxT( "compDef" ) )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ patName = ValidateName( propValue );
+
+ if( FindNode( lNode, wxT( "attachedPattern" ) ) )
+ {
+ FindNode( FindNode( lNode, wxT( "attachedPattern" ) ),
+ wxT( "patternName" ) )->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ patName = ValidateName( propValue );
+ }
+
+ lNode = FindModulePatternDefName( lNode->GetParent(), patName );
+ pNode = lNode; // pattern;
+ }
+
+ lNode = NULL;
+
+ if( pNode )
+ lNode = FindNode( pNode, wxT( "multiLayer" ) ); // Old file format
+
+ *aPatGraphRefName = wxEmptyString; // default
+
+ if( lNode )
+ result = lNode;
+ else
+ {
+ // New file format
+ if( FindNode( aNode, wxT( "patternGraphicsNameRef" ) ) )
+ {
+ FindNode( aNode,
+ wxT( "patternGraphicsNameRef" ) )->GetAttribute( wxT( "Name" ),
+ aPatGraphRefName );
+ }
+
+// /////////////////////////////////////////////////////////////////////
+// lNode:=iNode.ChildNodes.FindNode('patternGraphicsDef'); before
+// Fixed 02/08, Sergeys input file format
+// Did it work before ????
+// lNode:=pNode.ChildNodes.FindNode('patternGraphicsDef'); Nw for some files
+// ////////////////////////////////////////////////////////////////////
+ if( FindNode( aNode, wxT( "patternGraphicsDef" ) ) )
+ lNode = FindNode( aNode, wxT( "patternGraphicsDef" ) );
+ else
+ lNode = FindNode( pNode, wxT( "patternGraphicsDef" ) );
+
+ if( *aPatGraphRefName == wxEmptyString ) // no patern delection, the first is actual...
+ {
+ if( lNode )
+ {
+ result = FindNode( lNode, wxT( "multiLayer" ) );
+ lNode = NULL;
+ }
+ }
+
+ while( lNode ) // selected by name
+ {
+ if( lNode->GetName() == wxT( "patternGraphicsDef" ) )
+ {
+ FindNode( lNode,
+ wxT( "patternGraphicsNameDef" ) )->GetAttribute( wxT( "Name" ),
+ &propValue );
+
+ if( propValue == *aPatGraphRefName )
+ {
+ result = FindNode( lNode, wxT( "multiLayer" ) );
+ lNode = NULL;
+ }
+ else
+ lNode = lNode->GetNext();
+ }
+ else
+ lNode = lNode->GetNext();
+ }
+ }
+
+ return result;
+}
+
+
+void PCB_MODULE::DoLayerContentsObjects( XNODE* aNode,
+ PCB_MODULE* aPCBModule,
+ PCB_COMPONENTS_ARRAY* aList,
+ wxStatusBar* aStatusBar,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ PCB_ARC* arc;
+ PCB_POLYGON* polygon;
+ PCB_POLYGON *plane_layer = NULL;
+ PCB_COPPER_POUR* copperPour;
+ PCB_CUTOUT* cutout;
+ PCB_PLANE* plane;
+ VERTICES_ARRAY* plane_layer_polygon;
+ PCB_LINE* line;
+ PCB_TEXT* text;
+ XNODE* lNode, * tNode;
+ wxString propValue;
+ long long i;
+ int PCadLayer;
+ long num = 0;
+
+ i = 0;
+ // aStatusBar->SetStatusText( wxT( "Processing LAYER CONTENT OBJECTS " ) );
+ if( FindNode( aNode, wxT( "layerNumRef" ) ) )
+ FindNode( aNode, wxT( "layerNumRef" ) )->GetNodeContent().ToLong( &num );
+
+ PCadLayer = (int) num;
+
+ if( m_callbacks->GetLayerType( PCadLayer ) == LAYER_TYPE_PLANE )
+ {
+ plane_layer = new PCB_POLYGON( m_callbacks, m_board, PCadLayer );
+ plane_layer->AssignNet( m_callbacks->GetLayerNetNameRef( PCadLayer ) );
+ plane_layer->SetOutline( &m_boardOutline );
+ aList->Add( plane_layer );
+
+ // fill the polygon with the same contour as its outline is
+ //plane_layer->AddIsland( &m_boardOutline );
+ }
+
+ lNode = aNode->GetChildren();
+
+ while( lNode )
+ {
+ i++;
+ // aStatusBar->SetStatusText( wxString::Format( "Processing LAYER CONTENT OBJECTS :%lld",
+ // i ) );
+
+ if( lNode->GetName() == wxT( "line" ) )
+ {
+ line = new PCB_LINE( m_callbacks, m_board );
+ line->Parse( lNode, PCadLayer, aDefaultMeasurementUnit, aActualConversion );
+ aList->Add( line );
+ }
+
+ if( lNode->GetName() == wxT( "text" ) )
+ {
+ text = new PCB_TEXT( m_callbacks, m_board );
+ text->Parse( lNode, PCadLayer, aDefaultMeasurementUnit, aActualConversion );
+ aList->Add( text );
+ }
+
+ // added as Sergeys request 02/2008
+ if( lNode->GetName() == wxT( "attr" ) )
+ {
+ // assign fonts to Module Name,Value,Type,....s
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+
+ if( propValue == wxT( "Type" ) )
+ {
+ tNode = FindNode( lNode, wxT( "textStyleRef" ) );
+
+ if( tNode && aPCBModule )
+ {
+ // TODO: to understand and may be repair
+ // Alexander Lunev: originally in Delphi version of the project there was
+ // a strange access to pcbModule->m_name (it was global variable). This access
+ // is necessary when the function DoLayerContentsObjects() is called from
+ // function CreatePCBModule(). However it is not clear whether the access is
+ // required when the function DoLayerContentsObjects() is called from
+ // function ProcessXMLtoPCBLib().
+ SetFontProperty( tNode,
+ &aPCBModule->m_name,
+ aDefaultMeasurementUnit,
+ aActualConversion );
+ }
+ }
+ }
+
+ // added as Sergeys request 02/2008
+ if( lNode->GetName() == wxT( "arc" ) || lNode->GetName() == wxT( "triplePointArc" ) )
+ {
+ arc = new PCB_ARC( m_callbacks, m_board );
+ arc->Parse( lNode, PCadLayer, aDefaultMeasurementUnit, aActualConversion );
+ aList->Add( arc );
+ }
+
+ if( lNode->GetName() == wxT( "pcbPoly" ) )
+ {
+ if( m_callbacks->GetLayerType( PCadLayer ) == LAYER_TYPE_PLANE )
+ {
+ plane_layer_polygon = new VERTICES_ARRAY;
+ wxASSERT( plane_layer );
+ plane_layer->FormPolygon( lNode, plane_layer_polygon, aDefaultMeasurementUnit, aActualConversion );
+ plane_layer->m_cutouts.Add( plane_layer_polygon );
+ }
+ else
+ {
+ polygon = new PCB_POLYGON( m_callbacks, m_board, PCadLayer );
+ if( polygon->Parse( lNode,
+ aDefaultMeasurementUnit,
+ aActualConversion,
+ aStatusBar ) )
+ aList->Add( polygon );
+ else
+ delete polygon;
+ }
+ }
+
+ if( lNode->GetName() == wxT( "copperPour95" ) )
+ {
+ copperPour = new PCB_COPPER_POUR( m_callbacks, m_board, PCadLayer );
+
+ if( copperPour->Parse( lNode, aDefaultMeasurementUnit, aActualConversion,
+ aStatusBar ) )
+ aList->Add( copperPour );
+ else
+ delete copperPour;
+ }
+
+ if( lNode->GetName() == wxT( "polyCutOut" ) )
+ {
+ cutout = new PCB_CUTOUT( m_callbacks, m_board, PCadLayer );
+
+ if( cutout->Parse( lNode, aDefaultMeasurementUnit, aActualConversion ) )
+ aList->Add( cutout );
+ else
+ delete cutout;
+ }
+
+ if( lNode->GetName() == wxT( "planeObj" ) )
+ {
+ plane = new PCB_PLANE( m_callbacks, m_board, PCadLayer );
+
+ if( plane->Parse( lNode, aDefaultMeasurementUnit, aActualConversion,
+ aStatusBar ) )
+ aList->Add( plane );
+ else
+ delete plane;
+ }
+
+ lNode = lNode->GetNext();
+ }
+}
+
+
+void PCB_MODULE::SetPadName( wxString aPin, wxString aName )
+{
+ int i;
+ long num;
+
+ aPin.ToLong( &num );
+
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'P' ) )
+ if( ( (PCB_PAD*) m_moduleObjects[i] )->m_number == num )
+ ( (PCB_PAD*) m_moduleObjects[i] )->m_name.text = aName;
+
+
+ }
+}
+
+
+void PCB_MODULE::Parse( XNODE* aNode, wxStatusBar* aStatusBar,
+ wxString aDefaultMeasurementUnit, wxString aActualConversion )
+{
+ XNODE* lNode, * tNode, * mNode;
+ PCB_PAD* pad;
+ PCB_VIA* via;
+ wxString propValue, str;
+
+ FindNode( aNode, wxT( "originalName" ) )->GetAttribute( wxT( "Name" ),
+ &propValue );
+ propValue.Trim( false );
+ m_name.text = propValue;
+
+ // aStatusBar->SetStatusText( wxT( "Creating Component : " ) + m_name.text );
+ lNode = aNode;
+ lNode = FindPatternMultilayerSection( lNode, &m_patGraphRefName );
+
+ if( lNode )
+ {
+ tNode = lNode;
+ tNode = tNode->GetChildren();
+
+ while( tNode )
+ {
+ if( tNode->GetName() == wxT( "pad" ) )
+ {
+ pad = new PCB_PAD( m_callbacks, m_board );
+ pad->Parse( tNode, aDefaultMeasurementUnit, aActualConversion );
+ m_moduleObjects.Add( pad );
+ }
+
+ if( tNode->GetName() == wxT( "via" ) )
+ {
+ via = new PCB_VIA( m_callbacks, m_board );
+ via->Parse( tNode, aDefaultMeasurementUnit, aActualConversion );
+ m_moduleObjects.Add( via );
+ }
+
+ tNode = tNode->GetNext();
+ }
+ }
+
+ lNode = lNode->GetParent();
+ lNode = FindNode( lNode, wxT( "layerContents" ) );
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "layerContents" ) )
+ DoLayerContentsObjects( lNode, this, &m_moduleObjects, aStatusBar,
+ aDefaultMeasurementUnit, aActualConversion );
+
+ lNode = lNode->GetNext();
+ }
+
+ // map pins
+ lNode = FindPinMap( aNode );
+
+ if( lNode )
+ {
+ mNode = lNode->GetChildren();
+
+ while( mNode )
+ {
+ if( mNode->GetName() == wxT( "padNum" ) )
+ {
+ str = mNode->GetNodeContent();
+ mNode = mNode->GetNext();
+
+ if( !mNode )
+ break;
+
+ mNode->GetAttribute( wxT( "Name" ), &propValue );
+ SetPadName( str, propValue );
+ mNode = mNode->GetNext();
+ }
+ else
+ {
+ mNode = mNode->GetNext();
+
+ if( !mNode )
+ break;
+
+ mNode = mNode->GetNext();
+ }
+ }
+ }
+}
+
+
+wxString PCB_MODULE::ModuleLayer( int aMirror )
+{
+ wxString result;
+
+ // ///NOT ! {IntToStr(KiCadLayer)} NOT !
+ // / MODULES ARE HARD PLACED ON COMPONENT OR COPPER LAYER.
+ // / IsFLIPPED--> MIRROR attribute is decision Point!!!
+
+ if( aMirror == 0 )
+ result = wxT( "15" ); // Components side
+ else
+ result = wxT( "0" ); // Copper side
+
+ return result;
+}
+
+
+void PCB_MODULE::WriteToFile( wxFile* aFile, char aFileType )
+{
+ char visibility, mirrored;
+ int i;
+
+ // transform text positions ....
+ CorrectTextPosition( &m_name, m_rotation );
+ CorrectTextPosition( &m_value, m_rotation );
+ // Go out
+ aFile->Write( wxT( "\n" ) );
+ aFile->Write( wxT( "$MODULE " ) + m_name.text + wxT( "\n" ) );
+ aFile->Write( wxString::Format( wxT( "Po %d %d %d " ), m_positionX, m_positionY, m_rotation ) +
+ ModuleLayer( m_mirror ) + wxT( " 00000000 00000000 ~~\n" ) ); // Position
+ aFile->Write( wxT( "Li " ) + m_name.text + wxT( "\n" ) ); // Modulename
+ aFile->Write( wxT( "Sc 00000000\n" ) ); // Timestamp
+ aFile->Write( wxT( "Op 0 0 0\n" ) ); // Orientation
+ aFile->Write( wxT( "At SMD\n" ) ); // ??
+
+ // MODULE STRINGS
+ if( m_name.textIsVisible == 1 )
+ visibility = wxT( 'V' );
+ else
+ visibility = wxT( 'I' );
+
+ if( m_name.mirror == 1 )
+ mirrored = wxT( 'M' );
+ else
+ mirrored = wxT( 'N' );
+
+ aFile->Write( wxString::Format( wxT( "T0 %d %d %d %d %d %d" ), m_name.correctedPositionX,
+ m_name.correctedPositionY,
+ KiROUND( m_name.textHeight / 2 ),
+ KiROUND( m_name.textHeight / 1.5 ),
+ m_name.textRotation,
+ /* TODO: Is it correct to use m_value.textstrokeWidth here? */
+ m_value.textstrokeWidth ) +
+ wxT( ' ' ) + mirrored + wxT( ' ' ) + visibility +
+ wxString::Format( wxT( " %d \"" ), m_KiCadLayer ) +
+ m_name.text + wxT( "\"\n" ) ); // NameString
+
+ if( m_value.textIsVisible == 1 )
+ visibility = wxT( 'V' );
+ else
+ visibility = wxT( 'I' );
+
+ if( m_value.mirror == 1 )
+ mirrored = wxT( 'M' );
+ else
+ mirrored = wxT( 'N' );
+
+ aFile->Write( wxString::Format( wxT( "T1 %d %d %d %d %d %d" ), m_value.correctedPositionX,
+ m_value.correctedPositionY,
+ KiROUND( m_value.textHeight / 2 ),
+ KiROUND( m_value.textHeight / 1.5 ),
+ m_value.textRotation, m_value.textstrokeWidth ) +
+ wxT( ' ' ) + mirrored + wxT( ' ' ) + visibility +
+ wxString::Format( wxT( " %d \"" ), m_KiCadLayer ) + m_value.text +
+ wxT( "\"\n" ) ); // ValueString
+
+ // TEXTS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'T' ) )
+ {
+ ( (PCB_TEXT*) m_moduleObjects[i] )->m_tag = i + 2;
+ m_moduleObjects[i]->WriteToFile( aFile, aFileType );
+ }
+ }
+
+ // MODULE LINES
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'L' ) )
+ m_moduleObjects[i]->WriteToFile( aFile, aFileType );
+ }
+
+ // MODULE Arcs
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'A' ) )
+ m_moduleObjects[i]->WriteToFile( aFile, aFileType );
+ }
+
+ // PADS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'P' ) )
+ ( (PCB_PAD*) m_moduleObjects[i] )->WriteToFile( aFile, aFileType, m_rotation );
+ }
+
+ // VIAS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'V' ) )
+ ( (PCB_VIA*) m_moduleObjects[i] )->WriteToFile( aFile, aFileType, m_rotation );
+ }
+
+ // END
+ aFile->Write( wxT( "$EndMODULE " ) + m_name.text + wxT( "\n" ) );
+}
+
+
+void PCB_MODULE::AddToBoard()
+{
+ int i;
+
+ // transform text positions
+ CorrectTextPosition( &m_name, m_rotation );
+ CorrectTextPosition( &m_value, m_rotation );
+
+ MODULE* module = new MODULE( m_board );
+ m_board->Add( module, ADD_APPEND );
+
+ module->SetPosition( wxPoint( m_positionX, m_positionY ) );
+ module->SetLayer( m_mirror ? LAYER_N_BACK : LAYER_N_FRONT );
+ module->SetOrientation( m_rotation );
+ module->SetTimeStamp( 0 );
+ module->SetLastEditTime( 0 );
+
+ module->SetLibRef( m_compRef );
+
+ module->SetAttributes( MOD_DEFAULT | MOD_CMS );
+
+ // reference text
+ TEXTE_MODULE* ref_text = module->m_Reference;
+
+ ref_text->SetText( m_name.text );
+ ref_text->SetType( TEXT_is_REFERENCE );
+
+ ref_text->SetPos0( wxPoint( m_name.correctedPositionX, m_name.correctedPositionY ) );
+ ref_text->SetSize( wxSize( KiROUND( m_name.textHeight / 2 ),
+ KiROUND( m_name.textHeight / 1.5 ) ) );
+
+ ref_text->SetOrientation( m_name.textRotation );
+ ref_text->SetThickness( m_name.textstrokeWidth );
+
+ ref_text->SetMirrored( m_name.mirror );
+ ref_text->SetVisible( m_name.textIsVisible );
+
+ ref_text->SetLayer( m_KiCadLayer );
+
+ // Calculate the actual position.
+ ref_text->SetDrawCoord();
+
+ // value text
+ TEXTE_MODULE* val_text = module->m_Value;
+
+ val_text->SetText( m_value.text );
+ val_text->SetType( TEXT_is_REFERENCE );
+
+ val_text->SetPos0( wxPoint( m_value.correctedPositionX, m_value.correctedPositionY ) );
+ val_text->SetSize( wxSize( KiROUND( m_value.textHeight / 2 ),
+ KiROUND( m_value.textHeight / 1.5 ) ) );
+
+ val_text->SetOrientation( m_value.textRotation );
+ val_text->SetThickness( m_value.textstrokeWidth );
+
+ val_text->SetMirrored( m_value.mirror );
+ val_text->SetVisible( m_value.textIsVisible );
+
+ val_text->SetLayer( m_KiCadLayer );
+
+ // Calculate the actual position.
+ val_text->SetDrawCoord();
+
+ // TEXTS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'T' ) )
+ {
+ ( (PCB_TEXT*) m_moduleObjects[i] )->m_tag = i + 2;
+ m_moduleObjects[i]->AddToModule( module );
+ }
+ }
+
+ // MODULE LINES
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'L' ) )
+ m_moduleObjects[i]->AddToModule( module );
+ }
+
+ // MODULE Arcs
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'A' ) )
+ m_moduleObjects[i]->AddToModule( module );
+ }
+
+ // PADS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'P' ) )
+ ( (PCB_PAD*) m_moduleObjects[i] )->AddToModule( module, m_rotation );
+ }
+
+ // VIAS
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ if( m_moduleObjects[i]->m_objType == wxT( 'V' ) )
+ ( (PCB_VIA*) m_moduleObjects[i] )->AddToModule( module, m_rotation );
+ }
+
+ module->CalculateBoundingBox();
+}
+
+
+int PCB_MODULE::FlipLayers( int aLayer )
+{
+ int result = aLayer; // no swap default....
+
+ // routed layers
+ if( aLayer == 0 )
+ result = 15;
+
+ if( aLayer == 15 )
+ result = 0;
+
+ // Silk
+ if( aLayer == 21 )
+ result = 20;
+
+ if( aLayer == 20 )
+ result = 21;
+
+ // Paste
+ if( aLayer == 19 )
+ result = 18;
+
+ if( aLayer == 18 )
+ result = 19;
+
+ // Mask
+ if( aLayer == 23 )
+ result = 22;
+
+ if( aLayer == 22 )
+ result = 23;
+
+ return result;
+}
+
+
+void PCB_MODULE::Flip()
+{
+ int i, j;
+
+ if( m_mirror == 1 )
+ {
+ // Flipped
+ m_KiCadLayer = FlipLayers( m_KiCadLayer );
+ m_rotation = -m_rotation;
+ m_name.textPositionX = -m_name.textPositionX;
+ m_name.mirror = m_mirror;
+ m_value.textPositionX = -m_value.textPositionX;
+ m_value.mirror = m_mirror;
+
+ for( i = 0; i < (int) m_moduleObjects.GetCount(); i++ )
+ {
+ // MODULE LINES
+ if( m_moduleObjects[i]->m_objType == wxT( 'L' ) )
+ {
+ m_moduleObjects[i]->m_positionX = -m_moduleObjects[i]->m_positionX;
+ ( (PCB_LINE*) m_moduleObjects[i] )->m_toX =
+ -( (PCB_LINE*) m_moduleObjects[i] )->m_toX;
+ m_moduleObjects[i]->m_KiCadLayer = FlipLayers( m_moduleObjects[i]->m_KiCadLayer );
+ }
+
+ // MODULE Arcs
+ if( m_moduleObjects[i]->m_objType == wxT( 'A' ) )
+ {
+ m_moduleObjects[i]->m_positionX = -m_moduleObjects[i]->m_positionX;
+ ( (PCB_ARC*) m_moduleObjects[i] )->m_startX =
+ -( (PCB_ARC*) m_moduleObjects[i] )->m_startX;
+ m_moduleObjects[i]->m_KiCadLayer = FlipLayers( m_moduleObjects[i]->m_KiCadLayer );
+ }
+
+ // PADS
+ if( m_moduleObjects[i]->m_objType == wxT( 'P' ) )
+ {
+ m_moduleObjects[i]->m_positionX = -m_moduleObjects[i]->m_positionX;
+ m_moduleObjects[i]->m_rotation = -m_moduleObjects[i]->m_rotation;
+
+ for( j = 0; j < (int) ( (PCB_PAD*) m_moduleObjects[i] )->m_shapes.GetCount(); j++ )
+ ( (PCB_PAD*) m_moduleObjects[i] )->m_shapes[j]->m_KiCadLayer =
+ FlipLayers( ( (PCB_PAD*) m_moduleObjects[i] )->m_shapes[j]->m_KiCadLayer );
+
+ }
+
+ // VIAS
+ if( m_moduleObjects[i]->m_objType == wxT( 'V' ) )
+ {
+ m_moduleObjects[i]->m_positionX = -m_moduleObjects[i]->m_positionX;
+
+ for( j = 0; j < (int) ( (PCB_VIA*) m_moduleObjects[i] )->m_shapes.GetCount(); j++ )
+ ( (PCB_VIA*) m_moduleObjects[i] )->m_shapes[j]->m_KiCadLayer =
+ FlipLayers( ( (PCB_VIA*) m_moduleObjects[i] )->m_shapes[j]->m_KiCadLayer );
+
+ }
+ }
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_module.h b/pcbnew/pcad2kicadpcb_plugin/pcb_module.h
new file mode 100644
index 0000000000..839782d075
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_module.h
@@ -0,0 +1,77 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_module.h
+ */
+
+#ifndef PCB_MODULE_H_
+#define PCB_MODULE_H_
+
+#include
+
+#include
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_MODULE : public PCB_COMPONENT
+{
+public:
+ TTEXTVALUE m_value; // has reference (Name from parent) and value
+ PCB_COMPONENTS_ARRAY m_moduleObjects; // set of objects like PCB_LINE, PCB_PAD, PCB_VIA,....
+ int m_mirror;
+ VERTICES_ARRAY m_boardOutline;
+
+ PCB_MODULE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_MODULE();
+
+ XNODE* FindModulePatternDefName( XNODE* aNode, wxString aName );
+
+ void DoLayerContentsObjects( XNODE* aNode,
+ PCB_MODULE* aPCBModule,
+ PCB_COMPONENTS_ARRAY* aList,
+ wxStatusBar* aStatusBar,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+
+ void SetPadName( wxString aPin, wxString aName );
+
+ virtual void Parse( XNODE* aNode, wxStatusBar* aStatusBar,
+ wxString aDefaultMeasurementUnit, wxString aActualConversion );
+
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ virtual void Flip();
+ void AddToBoard();
+
+private:
+ XNODE* FindPatternMultilayerSection( XNODE* aNode, wxString* aPatGraphRefName );
+ wxString ModuleLayer( int aMirror );
+ int FlipLayers( int aLayer );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_MODULE_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_net.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_net.cpp
new file mode 100644
index 0000000000..c1dc5ee6df
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_net.cpp
@@ -0,0 +1,104 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_net.cpp
+ */
+
+#include
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_NET_NODE::PCB_NET_NODE()
+{
+ m_compRef = wxEmptyString;
+ m_pinRef = wxEmptyString;
+}
+
+
+PCB_NET_NODE::~PCB_NET_NODE()
+{
+}
+
+
+PCB_NET::PCB_NET( int aNetCode ) : m_netCode( aNetCode )
+{
+ m_name = wxEmptyString;
+}
+
+
+PCB_NET::~PCB_NET()
+{
+ int i;
+
+ for( i = 0; i < (int) m_netNodes.GetCount(); i++ )
+ {
+ delete m_netNodes[i];
+ }
+}
+
+
+void PCB_NET::Parse( XNODE* aNode )
+{
+ wxString propValue, s1, s2;
+ PCB_NET_NODE* netNode;
+ XNODE* lNode;
+
+ aNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_name = propValue;
+
+ lNode = FindNode( aNode, wxT( "node" ) );
+
+ while( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &s2 );
+ s2.Trim( false );
+ s1 = wxEmptyString;
+
+ while( s2.Len() > 0 && s2[0] != wxT( ' ' ) )
+ {
+ s1 = s1 + s2[0];
+ s2 = s2.Mid( 1 );
+ }
+
+ netNode = new PCB_NET_NODE;
+ s1.Trim( false );
+ s1.Trim( true );
+ netNode->m_compRef = s1;
+
+ s2.Trim( false );
+ s2.Trim( true );
+ netNode->m_pinRef = s2;
+ m_netNodes.Add( netNode );
+ lNode = lNode->GetNext();
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_net.h b/pcbnew/pcad2kicadpcb_plugin/pcb_net.h
new file mode 100644
index 0000000000..867271dc8e
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_net.h
@@ -0,0 +1,68 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_net.h
+ */
+
+#ifndef PCB_NET_H_
+#define PCB_NET_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_NET_NODE : public wxObject
+{
+public:
+ wxString m_compRef;
+ wxString m_pinRef;
+
+ PCB_NET_NODE();
+ ~PCB_NET_NODE();
+};
+
+WX_DEFINE_ARRAY( PCB_NET_NODE*, PCB_NET_NODES_ARRAY );
+
+class PCB_NET : public wxObject
+{
+public:
+ wxString m_name;
+ int m_netCode;
+ PCB_NET_NODES_ARRAY m_netNodes;
+
+ PCB_NET( int aNetCode );
+ ~PCB_NET();
+
+ void Parse( XNODE* aNode );
+};
+
+WX_DEFINE_ARRAY( PCB_NET*, PCB_NETS_ARRAY );
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_NET_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_pad.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_pad.cpp
new file mode 100644
index 0000000000..26b5471307
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_pad.cpp
@@ -0,0 +1,425 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_pad.cpp
+ */
+
+#include
+#include
+#include
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_PAD::PCB_PAD( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_COMPONENT( aCallbacks, aBoard )
+{
+ m_objType = wxT( 'P' );
+ m_number = 0;
+ m_hole = 0;
+ m_isHolePlated = true;
+}
+
+
+PCB_PAD::~PCB_PAD()
+{
+ int i;
+
+ for( i = 0; i < (int) m_shapes.GetCount(); i++ )
+ {
+ delete m_shapes[i];
+ }
+}
+
+
+void PCB_PAD::Parse( XNODE* aNode, wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode, *cNode;
+ long num;
+ wxString propValue, str, emsg;
+ PCB_PAD_SHAPE* padShape;
+
+ m_rotation = 0;
+ lNode = FindNode( aNode, wxT( "padNum" ) );
+
+ if( lNode )
+ {
+ lNode->GetNodeContent().ToLong( &num );
+ m_number = (int) num;
+ }
+
+ lNode = FindNode( aNode, wxT( "padStyleRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ m_name.text = propValue;
+ }
+
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "rotation" ) );
+
+ if( lNode )
+ {
+ str = lNode->GetNodeContent();
+ str.Trim( false );
+ m_rotation = StrToInt1Units( str );
+ }
+
+ lNode = aNode;
+
+ while( lNode && lNode->GetName() != wxT( "www.lura.sk" ) )
+ lNode = lNode->GetParent();
+
+ lNode = FindNode( lNode, wxT( "library" ) );
+ if ( !lNode )
+ THROW_IO_ERROR( wxT( "Unable to find library section" ) );
+
+ lNode = FindNode( lNode, wxT( "padStyleDef" ) );
+
+ while( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+
+ if( propValue.IsSameAs( m_name.text, false) )
+ break;
+
+ lNode = lNode->GetNext();
+ }
+
+ if ( !lNode )
+ THROW_IO_ERROR( wxString::Format( wxT( "Unable to find padStyleDef " ) + m_name.text ) );
+
+ cNode = FindNode( lNode, wxT( "holeDiam" ) );
+
+ if( cNode )
+ SetWidth( cNode->GetNodeContent(), aDefaultMeasurementUnit, &m_hole, aActualConversion );
+
+ if( FindNodeGetContent( lNode, wxT( "isHolePlated" ) ) == wxT( "False" ) )
+ m_isHolePlated = false;
+
+ cNode = FindNode( lNode, wxT( "padShape" ) );
+
+ while( cNode )
+ {
+ if( cNode->GetName() == wxT( "padShape" ) )
+ {
+ // we support only Pads on specific layers......
+ // we do not support pads on "Plane", "NonSignal" , "Signal" ... layerr
+ if( FindNode( cNode, wxT( "layerNumRef" ) ) )
+ {
+ padShape = new PCB_PAD_SHAPE( m_callbacks, m_board );
+ padShape->Parse( cNode, aDefaultMeasurementUnit, aActualConversion );
+ m_shapes.Add( padShape );
+ }
+ }
+
+ cNode = cNode->GetNext();
+ }
+}
+
+
+void PCB_PAD::WriteToFile( wxFile* aFile, char aFileType, int aRotation )
+{
+ PCB_PAD_SHAPE* padShape;
+ wxString padShapeName = wxT( "Ellipse" );
+ wxString s, padType;
+ uint32_t layerMask;
+ int i;
+ int width = 0;
+ int height = 0;
+
+ if( !m_isHolePlated && m_hole )
+ {
+ aFile->Write( wxT( "$PAD\n" ) );
+
+ // Name, Shape, Xsize Ysize Xdelta Ydelta Orientation
+ aFile->Write( wxT( "Sh \"" ) + m_name.text + wxT( "\" " ) + s +
+ wxString::Format( wxT( " %d %d 0 0 %d\n" ),
+ m_hole, m_hole, m_rotation + aRotation ) );
+
+ // Hole size , OffsetX, OffsetY
+ aFile->Write( wxString::Format( wxT( "Dr %d 0 0\n" ), m_hole ) );
+
+ layerMask = ALL_CU_LAYERS | SOLDERMASK_LAYER_BACK | SOLDERMASK_LAYER_FRONT;
+
+ // N
+ aFile->Write( wxT( "At HOLE N " ) + wxString::Format( wxT( "%8X" ), layerMask ) +
+ wxT( "\n" ) );
+
+ // Reference
+ aFile->Write( wxT( "Ne 0 \"\"\n" ) );
+
+ // Position
+ aFile->Write( wxString::Format( wxT( "Po %d %d\n" ), m_positionX, m_positionY ) );
+ aFile->Write( wxT( "$EndPAD\n" ) );
+ }
+ else
+ {
+ ( m_hole ) ? padType = wxT( "STD" ) : padType = wxT( "SMD" );
+
+ // form layer mask
+ layerMask = 0;
+ for( i = 0; i < (int) m_shapes.GetCount(); i++ )
+ {
+ padShape = m_shapes[i];
+
+ if( padShape->m_width > 0 && padShape->m_height > 0 )
+ {
+ if( padShape->m_KiCadLayer == LAYER_N_FRONT
+ || padShape->m_KiCadLayer == LAYER_N_BACK )
+ {
+ padShapeName = padShape->m_shape;
+ width = padShape->m_width;
+ height = padShape->m_height;
+
+ // assume this is SMD pad
+ if( padShape->m_KiCadLayer == LAYER_N_FRONT )
+ layerMask = LAYER_FRONT | SOLDERPASTE_LAYER_FRONT | SOLDERMASK_LAYER_FRONT;
+ else
+ layerMask = LAYER_BACK | SOLDERPASTE_LAYER_BACK | SOLDERMASK_LAYER_BACK;
+
+ break;
+ }
+ }
+ }
+
+ if( padType == wxT( "STD" ) )
+ // actually this is a thru-hole pad
+ layerMask = ALL_CU_LAYERS | SOLDERMASK_LAYER_BACK | SOLDERMASK_LAYER_FRONT;
+
+ if( width == 0 || height == 0 )
+ THROW_IO_ERROR( wxT( "pad with zero size" ) );
+
+
+ if( padShapeName == wxT( "Oval" )
+ || padShapeName == wxT( "Ellipse" )
+ || padShapeName == wxT( "MtHole" ) )
+ {
+ if( width != height )
+ s = wxT( "O" );
+ else
+ s = wxT( "C" );
+ }
+ else if( padShapeName == wxT( "Rect" )
+ || padShapeName == wxT( "RndRect" ) )
+ s = wxT( "R" );
+ else if( padShapeName == wxT( "Polygon" ) )
+ s = wxT( "R" ); // approximation.....
+
+ aFile->Write( wxT( "$PAD\n" ) );
+
+ // Name, Shape, Xsize Ysize Xdelta Ydelta Orientation
+ aFile->Write( wxT( "Sh \"" ) + m_name.text + wxT( "\" " ) + s +
+ wxString::Format( wxT( " %d %d 0 0 %d\n" ),
+ width, height, m_rotation + aRotation ) );
+
+ // Hole size , OffsetX, OffsetY
+ aFile->Write( wxString::Format( wxT( "Dr %d 0 0\n" ), m_hole ) );
+
+ // N
+ aFile->Write( wxT( "At " ) + padType + wxT( " N " ) +
+ wxString::Format( wxT( "%8X" ), layerMask ) + wxT( "\n" ) );
+
+ // Reference
+ aFile->Write( wxT( "Ne 0 \"" ) + m_net + wxT( "\"\n" ) );
+
+ // Position
+ aFile->Write( wxString::Format( wxT( "Po %d %d\n" ), m_positionX, m_positionY ) );
+ aFile->Write( wxT( "$EndPAD\n" ) );
+ }
+}
+
+
+void PCB_PAD::AddToModule( MODULE* aModule, int aRotation )
+{
+ PCB_PAD_SHAPE* padShape;
+ wxString padShapeName = wxT( "Ellipse" );
+ PAD_ATTR_T padType;
+ int i;
+ int width = 0;
+ int height = 0;
+
+ if( !m_isHolePlated && m_hole )
+ {
+ // mechanical hole
+ D_PAD* pad = new D_PAD( aModule );
+ aModule->m_Pads.PushBack( pad );
+
+ pad->SetShape( PAD_CIRCLE );
+ pad->SetAttribute( PAD_HOLE_NOT_PLATED );
+
+ pad->SetDrillShape( PAD_CIRCLE );
+ pad->SetDrillSize( wxSize( m_hole, m_hole ) );
+ pad->SetSize( wxSize( m_hole, m_hole ) );
+
+ // pad's "Position" is not relative to the module's,
+ // whereas Pos0 is relative to the module's but is the unrotated coordinate.
+ wxPoint padpos( m_positionX, m_positionY );
+ pad->SetPos0( padpos );
+ RotatePoint( &padpos, aModule->GetOrientation() );
+ pad->SetPosition( padpos + aModule->GetPosition() );
+
+ pad->SetLayerMask( ALL_CU_LAYERS | SOLDERMASK_LAYER_BACK | SOLDERMASK_LAYER_FRONT );
+ }
+ else
+ {
+ D_PAD* pad = new D_PAD( aModule );
+ aModule->m_Pads.PushBack( pad );
+
+ ( m_hole ) ? padType = PAD_STANDARD : padType = PAD_SMD;
+
+ // form layer mask
+ for( i = 0; i < (int) m_shapes.GetCount(); i++ )
+ {
+ padShape = m_shapes[i];
+
+ if( padShape->m_width > 0 && padShape->m_height > 0 )
+ {
+ if( padShape->m_KiCadLayer == LAYER_N_FRONT
+ || padShape->m_KiCadLayer == LAYER_N_BACK )
+ {
+ padShapeName = padShape->m_shape;
+ width = padShape->m_width;
+ height = padShape->m_height;
+
+ // assume this is SMD pad
+ if( padShape->m_KiCadLayer == LAYER_N_FRONT )
+ pad->SetLayerMask( LAYER_FRONT | SOLDERPASTE_LAYER_FRONT |
+ SOLDERMASK_LAYER_FRONT );
+ else
+ pad->SetLayerMask( LAYER_BACK | SOLDERPASTE_LAYER_BACK |
+ SOLDERMASK_LAYER_BACK );
+
+ break;
+ }
+ }
+ }
+
+ if( padType == PAD_STANDARD )
+ // actually this is a thru-hole pad
+ pad->SetLayerMask( ALL_CU_LAYERS | SOLDERMASK_LAYER_BACK | SOLDERMASK_LAYER_FRONT );
+
+ if( width == 0 || height == 0 )
+ THROW_IO_ERROR( wxT( "pad with zero size" ) );
+
+ pad->SetPadName( m_name.text );
+
+ if( padShapeName == wxT( "Oval" )
+ || padShapeName == wxT( "Ellipse" )
+ || padShapeName == wxT( "MtHole" ) )
+ {
+ if( width != height )
+ pad->SetShape( PAD_OVAL );
+ else
+ pad->SetShape( PAD_CIRCLE );
+ }
+ else if( padShapeName == wxT( "Rect" )
+ || padShapeName == wxT( "RndRect" ) )
+ pad->SetShape( PAD_RECT );
+ else if( padShapeName == wxT( "Polygon" ) )
+ pad->SetShape( PAD_RECT ); // approximation
+
+ pad->SetSize( wxSize( width, height ) );
+ pad->SetDelta( wxSize( 0, 0 ) );
+ pad->SetOrientation( m_rotation + aRotation );
+
+ pad->SetDrillShape( PAD_CIRCLE );
+ pad->SetOffset( wxPoint( 0, 0 ) );
+ pad->SetDrillSize( wxSize( m_hole, m_hole ) );
+
+ pad->SetAttribute( padType );
+
+ pad->SetNet( 0 );
+ pad->SetNetname( m_net );
+
+ // pad's "Position" is not relative to the module's,
+ // whereas Pos0 is relative to the module's but is the unrotated coordinate.
+ wxPoint padpos( m_positionX, m_positionY );
+ pad->SetPos0( padpos );
+ RotatePoint( &padpos, aModule->GetOrientation() );
+ pad->SetPosition( padpos + aModule->GetPosition() );
+ }
+}
+
+
+void PCB_PAD::AddToBoard()
+{
+ PCB_PAD_SHAPE* padShape;
+ int i;
+ int width = 0;
+ int height = 0;
+
+ // choose one of the shapes
+ for( i = 0; i < (int) m_shapes.GetCount(); i++ )
+ {
+ padShape = m_shapes[i];
+
+ if( padShape->m_width > 0 && padShape->m_height > 0 )
+ {
+ if( padShape->m_KiCadLayer == LAYER_N_FRONT
+ || padShape->m_KiCadLayer == LAYER_N_BACK )
+ {
+ width = padShape->m_width;
+ height = padShape->m_height;
+
+ break;
+ }
+ }
+ }
+
+ if( width == 0 || height == 0 )
+ THROW_IO_ERROR( wxT( "pad or via with zero size" ) );
+
+ if( IsValidCopperLayerIndex( m_KiCadLayer ) )
+ {
+ SEGVIA* via = new SEGVIA( m_board );
+ m_board->m_Track.Append( via );
+
+ via->SetTimeStamp( 0 );
+
+ via->SetPosition( wxPoint( m_positionX, m_positionY ) );
+ via->SetEnd( wxPoint( m_positionX, m_positionY ) );
+
+ via->SetWidth( height );
+ via->SetShape( VIA_THROUGH );
+ ( (SEGVIA*) via )->SetLayerPair( LAYER_N_FRONT, LAYER_N_BACK );
+ via->SetDrill( m_hole );
+
+ via->SetLayer( m_KiCadLayer );
+ via->SetNet( m_netCode );
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_pad.h b/pcbnew/pcad2kicadpcb_plugin/pcb_pad.h
new file mode 100644
index 0000000000..f595a145c4
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_pad.h
@@ -0,0 +1,61 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_pad.h
+ */
+
+#ifndef PCB_PAD_H_
+#define PCB_PAD_H_
+
+#include
+
+#include
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_PAD : public PCB_COMPONENT
+{
+public:
+ int m_number;
+ int m_hole;
+ bool m_isHolePlated;
+ PCB_PAD_SHAPES_ARRAY m_shapes;
+
+ PCB_PAD( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_PAD();
+
+ virtual void Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+ virtual void WriteToFile( wxFile* aFile, char aFileType, int aRotation );
+ void AddToModule( MODULE* aModule, int aRotation );
+ void AddToBoard();
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_PAD_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.cpp
new file mode 100644
index 0000000000..699f51fac1
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.cpp
@@ -0,0 +1,142 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_pad_shape.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_PAD_SHAPE::PCB_PAD_SHAPE( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard ) : PCB_COMPONENT( aCallbacks, aBoard )
+{
+ m_shape = wxEmptyString;
+ m_width = 0;
+ m_height = 0;
+}
+
+
+PCB_PAD_SHAPE::~PCB_PAD_SHAPE()
+{
+}
+
+
+void PCB_PAD_SHAPE::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ wxString str, s;
+ long num;
+ int minX, maxX, minY, maxY, x, y;
+ XNODE* lNode;
+
+ lNode = FindNode( aNode, wxT( "padShapeType" ) );
+
+ if( lNode )
+ {
+ str = lNode->GetNodeContent();
+ str.Trim( false );
+ m_shape = str;
+ }
+
+ lNode = FindNode( aNode, wxT( "layerNumRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetNodeContent().ToLong( &num );
+ m_PCadLayer = (int) num;
+ }
+
+ m_KiCadLayer = GetKiCadLayer();
+
+ if( m_shape == wxT( "Oval" )
+ || m_shape == wxT( "Rect" )
+ || m_shape == wxT( "Ellipse" )
+ || m_shape == wxT( "MtHole" )
+ || m_shape == wxT( "RndRect" ) )
+ {
+ lNode = FindNode( aNode, wxT( "shapeWidth" ) );
+
+ if( lNode )
+ SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_width,
+ aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "shapeHeight" ) );
+
+ if( lNode )
+ SetWidth(
+ lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_height, aActualConversion );
+ }
+ else if( m_shape == wxT( "Polygon" ) )
+ {
+ // aproximation to simplier pad shape .....
+ lNode = FindNode( aNode, wxT( "shapeOutline" ) );
+
+ if( lNode )
+ lNode = FindNode( lNode, wxT( "pt" ) );
+
+ minX = 0;
+ maxX = 0;
+ minY = 0;
+ maxY = 0;
+
+ while( lNode )
+ {
+ s = lNode->GetNodeContent();
+ SetPosition( s, aDefaultMeasurementUnit, &x, &y, aActualConversion );
+
+ if( minX > x )
+ minX = x;
+
+ if( maxX < x )
+ maxX = x;
+
+ if( minY > y )
+ minY = y;
+
+ if( maxY < y )
+ maxY = y;
+
+ lNode = lNode->GetNext();
+ }
+
+ m_width = maxX - minX;
+ m_height = maxY - minY;
+ }
+}
+
+
+void PCB_PAD_SHAPE::AddToBoard()
+{
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.h b/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.h
new file mode 100644
index 0000000000..662fb0380e
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_pad_shape.h
@@ -0,0 +1,61 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_pad_shape.h
+ */
+
+#ifndef PCB_PAD_SHAPE_H_
+#define PCB_PAD_SHAPE_H_
+
+#include
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_PAD_SHAPE : public PCB_COMPONENT
+{
+public:
+ wxString m_shape;
+ int m_width;
+ int m_height;
+
+ PCB_PAD_SHAPE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_PAD_SHAPE();
+
+ virtual void Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+
+ void AddToBoard();
+};
+
+WX_DEFINE_ARRAY( PCB_PAD_SHAPE*, PCB_PAD_SHAPES_ARRAY );
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_PAD_SHAPE_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_plane.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_plane.cpp
new file mode 100644
index 0000000000..be89e50e0a
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_plane.cpp
@@ -0,0 +1,95 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_plane.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_PLANE::PCB_PLANE( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard,
+ int aPCadLayer ) :
+ PCB_POLYGON( aCallbacks, aBoard, aPCadLayer )
+{
+ m_priority = 1;
+}
+
+
+PCB_PLANE::~PCB_PLANE()
+{
+}
+
+
+bool PCB_PLANE::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar )
+{
+ XNODE* lNode;
+ wxString pourType, str, propValue;
+
+ // aStatusBar->SetStatusText( aStatusBar->GetStatusText() + wxT( " Plane..." ) );
+
+ lNode = FindNode( aNode, wxT( "netNameRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_net = propValue;
+ m_netCode = GetNetCode( m_net );
+ }
+
+ if( FindNode( aNode, wxT( "width" ) ) )
+ SetWidth( FindNode( aNode, wxT( "width" ) )->GetNodeContent(),
+ aDefaultMeasurementUnit, &m_width, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "pcbPoly" ) );
+
+ if( lNode )
+ {
+ // retrieve plane outline
+ FormPolygon( lNode, &m_outline, aDefaultMeasurementUnit, aActualConversion );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+ }
+ else
+ {
+ return false;
+ }
+
+ return true;
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_plane.h b/pcbnew/pcad2kicadpcb_plugin/pcb_plane.h
new file mode 100644
index 0000000000..6ace28b407
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_plane.h
@@ -0,0 +1,53 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_plane.h
+ */
+
+#ifndef PCB_PLANE_H_
+#define PCB_PLANE_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_PLANE : public PCB_POLYGON
+{
+public:
+
+ PCB_PLANE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
+ ~PCB_PLANE();
+
+ virtual bool Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_PLANE_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.cpp
new file mode 100644
index 0000000000..a24057c351
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.cpp
@@ -0,0 +1,258 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_polygon.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_POLYGON::PCB_POLYGON( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer ) :
+ PCB_COMPONENT( aCallbacks, aBoard )
+{
+ m_width = 0;
+ m_priority = 0;
+ m_objType = wxT( 'Z' );
+ m_PCadLayer = aPCadLayer;
+ m_KiCadLayer = GetKiCadLayer();
+ m_timestamp = GetNewTimestamp();
+}
+
+
+PCB_POLYGON::~PCB_POLYGON()
+{
+ int i, island;
+
+ for( i = 0; i < (int) m_outline.GetCount(); i++ )
+ {
+ delete m_outline[i];
+ }
+
+ for( island = 0; island < (int) m_cutouts.GetCount(); island++ )
+ {
+ for( i = 0; i < (int) m_cutouts[island]->GetCount(); i++ )
+ {
+ delete (*m_cutouts[island])[i];
+ }
+
+ delete m_cutouts[island];
+ }
+
+ for( island = 0; island < (int) m_islands.GetCount(); island++ )
+ {
+ for( i = 0; i < (int) m_islands[island]->GetCount(); i++ )
+ {
+ delete (*m_islands[island])[i];
+ }
+
+ delete m_islands[island];
+ }
+}
+
+void PCB_POLYGON::AssignNet( wxString aNetName )
+{
+ m_net = aNetName;
+ m_netCode = GetNetCode( m_net );
+}
+
+void PCB_POLYGON::SetOutline( VERTICES_ARRAY* aOutline )
+{
+ int i;
+
+ m_outline.Empty();
+
+ for( i = 0; i < (int) aOutline->GetCount(); i++ )
+ m_outline.Add( new wxRealPoint( (*aOutline)[i]->x, (*aOutline)[i]->y ) );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+}
+
+void PCB_POLYGON::FormPolygon( XNODE* aNode, VERTICES_ARRAY* aPolygon,
+ wxString aDefaultMeasurementUnit, wxString aActualConversion )
+{
+ XNODE* lNode;
+ double x, y;
+
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "pt" ) )
+ {
+ SetDoublePrecisionPosition(
+ lNode->GetNodeContent(), aDefaultMeasurementUnit, &x, &y, aActualConversion );
+ aPolygon->Add( new wxRealPoint( x, y ) );
+ }
+
+ lNode = lNode->GetNext();
+ }
+}
+
+
+bool PCB_POLYGON::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar )
+{
+ XNODE* lNode;
+ wxString propValue;
+
+ // aStatusBar->SetStatusText( aStatusBar->GetStatusText() + wxT( " Polygon..." ) );
+
+ lNode = FindNode( aNode, wxT( "netNameRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_net = propValue;
+ m_netCode = GetNetCode( m_net );
+ }
+
+ // retrieve polygon outline
+ FormPolygon( aNode, &m_outline, aDefaultMeasurementUnit, aActualConversion );
+
+ m_positionX = m_outline[0]->x;
+ m_positionY = m_outline[0]->y;
+
+ // fill the polygon with the same contour as its outline is
+ m_islands.Add( new VERTICES_ARRAY );
+ FormPolygon( aNode, m_islands[0], aDefaultMeasurementUnit, aActualConversion );
+
+ return true;
+}
+
+
+void PCB_POLYGON::WriteToFile( wxFile* aFile, char aFileType )
+{
+}
+
+
+void PCB_POLYGON::WriteOutlineToFile( wxFile* aFile, char aFileType )
+{
+}
+
+
+void PCB_POLYGON::AddToModule( MODULE* aModule )
+{
+}
+
+
+void PCB_POLYGON::AddToBoard()
+{
+ int i = 0;
+
+ if( m_outline.GetCount() > 0 )
+ {
+ ZONE_CONTAINER* zone = new ZONE_CONTAINER( m_board );
+ m_board->Add( zone, ADD_APPEND );
+
+ zone->SetTimeStamp( m_timestamp );
+ zone->SetLayer( m_KiCadLayer );
+ zone->SetNet( m_netCode );
+ zone->SetNetName( m_net );
+
+ // add outline
+ int outline_hatch = CPolyLine::DIAGONAL_EDGE;
+
+ zone->m_Poly->Start( m_KiCadLayer, KiROUND( m_outline[i]->x ),
+ KiROUND( m_outline[i]->y ), outline_hatch );
+
+ for( i = 1; i < (int) m_outline.GetCount(); i++ )
+ {
+ zone->AppendCorner( wxPoint( KiROUND( m_outline[i]->x ),
+ KiROUND( m_outline[i]->y ) ) );
+ }
+
+ zone->m_Poly->CloseLastContour();
+
+ zone->SetZoneClearance( m_width );
+
+ zone->SetPriority( m_priority );
+
+ zone->m_Poly->SetHatch( outline_hatch,
+ Mils2iu( zone->m_Poly->GetDefaultHatchPitchMils() ),
+ true );
+
+ if ( m_objType == wxT( 'K' ) )
+ {
+ zone->SetIsKeepout( true );
+ zone->SetDoNotAllowTracks( true );
+ zone->SetDoNotAllowVias( true );
+ zone->SetDoNotAllowCopperPour( true );
+ }
+ else if( m_objType == wxT( 'C' ) )
+ {
+ // convert cutouts to keepouts because standalone cutouts are not supported in KiCad
+ zone->SetIsKeepout( true );
+ zone->SetDoNotAllowCopperPour( true );
+ }
+
+ //zone->BuildFilledPolysListData( m_board );
+ }
+}
+
+
+void PCB_POLYGON::SetPosOffset( int aX_offs, int aY_offs )
+{
+ int i, island;
+
+ PCB_COMPONENT::SetPosOffset( aX_offs, aY_offs );
+
+ for( i = 0; i < (int) m_outline.GetCount(); i++ )
+ {
+ m_outline[i]->x += aX_offs;
+ m_outline[i]->y += aY_offs;
+ }
+
+ for( island = 0; island < (int) m_islands.GetCount(); island++ )
+ {
+ for( i = 0; i < (int) m_islands[island]->GetCount(); i++ )
+ {
+ (*m_islands[island])[i]->x += aX_offs;
+ (*m_islands[island])[i]->y += aY_offs;
+ }
+ }
+
+ for( island = 0; island < (int) m_cutouts.GetCount(); island++ )
+ {
+ for( i = 0; i < (int) m_cutouts[island]->GetCount(); i++ )
+ {
+ (*m_cutouts[island])[i]->x += aX_offs;
+ (*m_cutouts[island])[i]->y += aY_offs;
+ }
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.h b/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.h
new file mode 100644
index 0000000000..1a1d3765fb
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_polygon.h
@@ -0,0 +1,75 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file PCBPolygon.h
+ */
+
+#ifndef PCB_POLYGON_H_
+#define PCB_POLYGON_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+//WX_DEFINE_ARRAY( wxRealPoint*, VERTICES_ARRAY );
+WX_DEFINE_ARRAY( VERTICES_ARRAY*, ISLANDS_ARRAY );
+
+class PCB_POLYGON : public PCB_COMPONENT
+{
+public:
+ int m_width;
+ int m_priority;
+ VERTICES_ARRAY m_outline; // collection of boundary/outline lines - objects
+ ISLANDS_ARRAY m_islands;
+ ISLANDS_ARRAY m_cutouts;
+
+ PCB_POLYGON( PCB_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
+ ~PCB_POLYGON();
+
+ virtual bool Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion,
+ wxStatusBar* aStatusBar );
+
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ virtual void WriteOutlineToFile( wxFile* aFile, char aFileType );
+ virtual void SetPosOffset( int aX_offs, int aY_offs );
+ void AddToModule( MODULE* aModule );
+ void AddToBoard();
+
+// protected:
+ void AssignNet( wxString aNetName );
+ void SetOutline( VERTICES_ARRAY* aOutline );
+
+ void FormPolygon( XNODE* aNode, VERTICES_ARRAY* aPolygon,
+ wxString aDefaultMeasurementUnit, wxString actualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_POLYGON_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_text.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_text.cpp
new file mode 100644
index 0000000000..26225d0322
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_text.cpp
@@ -0,0 +1,171 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_text.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_TEXT::PCB_TEXT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_COMPONENT( aCallbacks,
+ aBoard )
+{
+ m_objType = wxT( 'T' );
+}
+
+
+PCB_TEXT::~PCB_TEXT()
+{
+}
+
+
+void PCB_TEXT::Parse( XNODE* aNode,
+ int aLayer,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+ wxString str;
+
+ m_PCadLayer = aLayer;
+ m_KiCadLayer = GetKiCadLayer();
+ m_positionX = 0;
+ m_positionY = 0;
+ m_name.mirror = 0; // Normal, not mirrored
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "rotation" ) );
+
+ if( lNode )
+ {
+ str = lNode->GetNodeContent();
+ str.Trim( false );
+ m_rotation = StrToInt1Units( str );
+ }
+
+ lNode = FindNode( aNode, wxT( "value" ) );
+
+ if( lNode )
+ m_name.text = lNode->GetNodeContent();
+
+ str = FindNodeGetContent( aNode, wxT( "isFlipped" ) );
+
+ if( str == wxT( "True" ) )
+ m_name.mirror = 1;
+
+ lNode = FindNode( aNode, wxT( "textStyleRef" ) );
+
+ if( lNode )
+ SetFontProperty( lNode, &m_name, aDefaultMeasurementUnit, aActualConversion );
+}
+
+
+void PCB_TEXT::WriteToFile( wxFile* aFile, char aFileType )
+{
+ char visibility, mirrored;
+
+ if( m_name.textIsVisible == 1 )
+ visibility = wxT( 'V' );
+ else
+ visibility = wxT( 'I' );
+
+ if( m_name.mirror == 1 )
+ mirrored = wxT( 'M' );
+ else
+ mirrored = wxT( 'N' );
+
+ // Simple, not the best, but acceptable text positioning.....
+ m_name.textPositionX = m_positionX;
+ m_name.textPositionY = m_positionY;
+ CorrectTextPosition( &m_name, m_rotation );
+
+ // Go out
+ if( aFileType == wxT( 'L' ) ) // Library component
+ {
+ aFile->Write( wxString::Format( wxT( "T%d %d %d %d %d %d %d " ), m_tag,
+ m_name.correctedPositionX,
+ m_name.correctedPositionY,
+ KiROUND( m_name.textHeight / 2 ),
+ KiROUND( m_name.textHeight / 1.1 ),
+ m_rotation, m_name.textstrokeWidth ) +
+ mirrored + wxT( ' ' ) + visibility +
+ wxString::Format( wxT( " %d \"" ), m_KiCadLayer ) +
+ m_name.text + wxT( "\"\n" ) ); // ValueString
+ }
+}
+
+
+void PCB_TEXT::AddToModule( MODULE* aModule )
+{
+}
+
+
+void PCB_TEXT::AddToBoard()
+{
+ // Simple, not the best, but acceptable text positioning.
+ m_name.textPositionX = m_positionX;
+ m_name.textPositionY = m_positionY;
+ CorrectTextPosition( &m_name, m_rotation );
+
+ TEXTE_PCB* pcbtxt = new TEXTE_PCB( m_board );
+ m_board->Add( pcbtxt, ADD_APPEND );
+
+ pcbtxt->SetText( m_name.text );
+
+ pcbtxt->SetSize( wxSize( KiROUND( m_name.textHeight / 2 ),
+ KiROUND( m_name.textHeight / 1.1 ) ) );
+
+ pcbtxt->SetThickness( m_name.textstrokeWidth );
+ pcbtxt->SetOrientation( m_rotation );
+
+ pcbtxt->SetPosition( wxPoint( m_name.correctedPositionX, m_name.correctedPositionY ) );
+
+ pcbtxt->SetMirrored( m_name.mirror );
+ pcbtxt->SetTimeStamp( 0 );
+
+ pcbtxt->SetLayer( m_KiCadLayer );
+}
+
+
+// void PCB_TEXT::SetPosOffset( int aX_offs, int aY_offs )
+// {
+// PCB_COMPONENT::SetPosOffset( aX_offs, aY_offs );
+
+// m_name.textPositionX += aX_offs;
+// m_name.textPositionY += aY_offs;
+// }
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_text.h b/pcbnew/pcad2kicadpcb_plugin/pcb_text.h
new file mode 100644
index 0000000000..47720b5188
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_text.h
@@ -0,0 +1,60 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_text.h
+ */
+
+#ifndef PCB_TEXT_H_
+#define PCB_TEXT_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+// Name property of parent is used for text value
+class PCB_TEXT : public PCB_COMPONENT
+{
+public:
+
+ PCB_TEXT( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_TEXT();
+
+ virtual void Parse( XNODE* aNode,
+ int aLayer,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+ virtual void WriteToFile( wxFile* aFile, char aFileType );
+ void AddToModule( MODULE* aModule );
+ void AddToBoard();
+
+// virtual void SetPosOffset( int aX_offs, int aY_offs );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_TEXT_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_via.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_via.cpp
new file mode 100644
index 0000000000..49789d1d5e
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_via.cpp
@@ -0,0 +1,139 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_via.cpp
+ */
+
+#include
+#include
+
+#include
+#include
+
+namespace PCAD2KICAD {
+
+PCB_VIA::PCB_VIA( PCB_CALLBACKS* aCallbacks, BOARD* aBoard ) : PCB_PAD( aCallbacks, aBoard )
+{
+ m_objType = wxT( 'V' );
+}
+
+
+PCB_VIA::~PCB_VIA()
+{
+}
+
+
+void PCB_VIA::Parse( XNODE* aNode, wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode, * tNode;
+ wxString propValue;
+ PCB_VIA_SHAPE* viaShape;
+
+ m_rotation = 0;
+ lNode = FindNode( aNode, wxT( "viaStyleRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_name.text = propValue;
+ }
+
+ lNode = FindNode( aNode, wxT( "pt" ) );
+
+ if( lNode )
+ SetPosition( lNode->GetNodeContent(), aDefaultMeasurementUnit,
+ &m_positionX, &m_positionY, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "netNameRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+ propValue.Trim( false );
+ propValue.Trim( true );
+ m_net = propValue;
+ m_netCode = GetNetCode( m_net );
+ }
+
+ lNode = aNode;
+
+ while( lNode && lNode->GetName() != wxT( "www.lura.sk" ) )
+ lNode = lNode->GetParent();
+
+ lNode = FindNode( lNode, wxT( "library" ) );
+
+ if ( !lNode )
+ THROW_IO_ERROR( wxT( "Unable to find library section" ) );
+
+ lNode = FindNode( lNode, wxT( "viaStyleDef" ) );
+
+ while( lNode )
+ {
+ lNode->GetAttribute( wxT( "Name" ), &propValue );
+
+ if( propValue.IsSameAs( m_name.text, false ) )
+ break;
+
+ lNode = lNode->GetNext();
+ }
+
+ if ( !lNode )
+ THROW_IO_ERROR( wxString::Format( wxT( "Unable to find viaStyleDef " ) + m_name.text ) );
+
+ if( lNode )
+ {
+ tNode = lNode;
+ lNode = FindNode( tNode, wxT( "holeDiam" ) );
+
+ if( lNode )
+ SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_hole,
+ aActualConversion );
+
+ lNode = FindNode( tNode, wxT( "viaShape" ) );
+
+ while( lNode )
+ {
+ if( lNode->GetName() == wxT( "viaShape" ) )
+ {
+ // we support only Vias on specific layers......
+ // we do not support vias on "Plane", "NonSignal" , "Signal" ... layerr
+ if( FindNode( lNode, wxT( "layerNumRef" ) ) )
+ {
+ viaShape = new PCB_VIA_SHAPE( m_callbacks, m_board );
+ viaShape->Parse( lNode, aDefaultMeasurementUnit, aActualConversion );
+ m_shapes.Add( viaShape );
+ }
+ }
+
+ lNode = lNode->GetNext();
+ }
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_via.h b/pcbnew/pcad2kicadpcb_plugin/pcb_via.h
new file mode 100644
index 0000000000..05b5c3a79a
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_via.h
@@ -0,0 +1,54 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_via.h
+ */
+
+#ifndef PCB_VIA_H_
+#define PCB_VIA_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+// will be replaced by pad in next version ????
+class PCB_VIA : public PCB_PAD
+{
+public:
+
+ PCB_VIA( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_VIA();
+
+ virtual void Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_VIA_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.cpp b/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.cpp
new file mode 100644
index 0000000000..70e6d609cd
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.cpp
@@ -0,0 +1,88 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_via_shape.cpp
+ */
+
+#include
+#include
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+PCB_VIA_SHAPE::PCB_VIA_SHAPE( PCB_CALLBACKS* aCallbacks,
+ BOARD* aBoard ) : PCB_PAD_SHAPE( aCallbacks, aBoard )
+{
+}
+
+
+PCB_VIA_SHAPE::~PCB_VIA_SHAPE()
+{
+}
+
+
+void PCB_VIA_SHAPE::Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion )
+{
+ XNODE* lNode;
+ wxString str;
+ long num;
+
+ lNode = FindNode( aNode, wxT( "viaShapeType" ) );
+
+ if( lNode )
+ {
+ str = lNode->GetNodeContent();
+ str.Trim( false );
+ m_shape = str;
+ }
+
+ lNode = FindNode( aNode, wxT( "layerNumRef" ) );
+
+ if( lNode )
+ {
+ lNode->GetNodeContent().ToLong( &num );
+ m_PCadLayer = (int) num;
+ }
+
+ m_KiCadLayer = GetKiCadLayer();
+ lNode = FindNode( aNode, wxT( "shapeWidth" ) );
+
+ if( lNode )
+ SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_width, aActualConversion );
+
+ lNode = FindNode( aNode, wxT( "shapeHeight" ) );
+
+ if( lNode )
+ SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit, &m_height, aActualConversion );
+
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.h b/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.h
new file mode 100644
index 0000000000..d12fa62a87
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/pcb_via_shape.h
@@ -0,0 +1,52 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2007, 2008 Lubo Racko
+ * Copyright (C) 2007, 2008, 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file pcb_via_shape.h
+ */
+
+#ifndef PCB_VIA_SHAPE_H_
+#define PCB_VIA_SHAPE_H_
+
+#include
+
+#include
+
+namespace PCAD2KICAD {
+
+class PCB_VIA_SHAPE : public PCB_PAD_SHAPE
+{
+public:
+ PCB_VIA_SHAPE( PCB_CALLBACKS* aCallbacks, BOARD* aBoard );
+ ~PCB_VIA_SHAPE();
+
+ virtual void Parse( XNODE* aNode,
+ wxString aDefaultMeasurementUnit,
+ wxString aActualConversion );
+};
+
+} // namespace PCAD2KICAD
+
+#endif // PCB_VIA_SHAPE_H_
diff --git a/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.cpp b/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.cpp
new file mode 100644
index 0000000000..badcbd2770
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.cpp
@@ -0,0 +1,104 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file s_expr_loader.cpp
+ */
+
+#include
+#include
+#include
+#include
+#include
+
+namespace PCAD2KICAD {
+
+static KEYWORD empty_keywords[1] = {};
+
+void LoadInputFile( wxString aFileName, wxXmlDocument* aXmlDoc )
+{
+ int tok;
+ XNODE* iNode = NULL, *cNode = NULL;
+ wxString str;
+ bool growing = false;
+ bool attr = false;
+ wxCSConv conv( wxT( "windows-1251" ) );
+
+ FILE* fp = wxFopen( aFileName, wxT( "rt" ) );
+
+ if( !fp )
+ THROW_IO_ERROR( wxT( "Unable to open file: " ) + aFileName );
+
+ // lexer now owns fp, will close on exception or return
+ DSNLEXER lexer( empty_keywords, 0, fp, aFileName );
+
+ iNode = new XNODE( wxXML_ELEMENT_NODE, wxT( "www.lura.sk" ) );
+
+ while( ( tok = lexer.NextTok() ) != DSN_EOF )
+ {
+ if( growing && ( tok == DSN_LEFT || tok == DSN_RIGHT ) )
+ {
+ if( attr )
+ {
+ cNode->AddAttribute( wxT( "Name" ), str.Trim( false ) );
+ }
+ else if( str != wxEmptyString )
+ {
+ cNode->AddChild( new XNODE( wxXML_TEXT_NODE, wxEmptyString, str ) );
+ }
+
+ growing = false;
+ attr = false;
+ }
+
+ if( tok == DSN_RIGHT )
+ {
+ iNode = iNode->GetParent();
+ }
+ else if( tok == DSN_LEFT )
+ {
+ tok = lexer.NextTok();
+ str = wxEmptyString;
+ cNode = new XNODE( wxXML_ELEMENT_NODE, wxString( lexer.CurText(), conv ) );
+ iNode->AddChild( cNode );
+ iNode = cNode;
+ growing = true;
+ }
+ else
+ {
+ str += wxT( ' ' );
+ str += wxString( lexer.CurText(), conv );
+ if( tok == DSN_STRING )
+ attr = true;
+ }
+ }
+
+ if( iNode )
+ {
+ aXmlDoc->SetRoot( iNode );
+ //aXmlDoc->Save( wxT( "test.xml" ) );
+ }
+}
+
+} // namespace PCAD2KICAD
diff --git a/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.h b/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.h
new file mode 100644
index 0000000000..02c1857a06
--- /dev/null
+++ b/pcbnew/pcad2kicadpcb_plugin/s_expr_loader.h
@@ -0,0 +1,37 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2012 Alexander Lunev
+ * Copyright (C) 2012 KiCad Developers, see CHANGELOG.TXT for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * @file s_expr_loader.h
+ */
+
+#ifndef S_EXPR_LOADER_H_
+#define S_EXPR_LOADER_H_
+
+namespace PCAD2KICAD
+{
+ void LoadInputFile( wxString aFileName, wxXmlDocument* aXmlDoc );
+}
+
+#endif // S_EXPR_LOADER_H_