diff --git a/common/advanced_config.cpp b/common/advanced_config.cpp index b23a7ca14c..4b822ebeac 100644 --- a/common/advanced_config.cpp +++ b/common/advanced_config.cpp @@ -219,6 +219,8 @@ static const wxChar EnableGit[] = wxT( "EnableGit" ); static const wxChar EnableEeschemaPrintCairo[] = wxT( "EnableEeschemaPrintCairo" ); +static const wxChar Enable2581[] = wxT( "Enable2581" ); + /** * The time in milliseconds to wait before displaying a disambiguation menu. */ @@ -530,6 +532,11 @@ void ADVANCED_CFG::loadSettings( wxConfigBase& aCfg ) configParams.push_back( new PARAM_CFG_BOOL( true, AC_KEYS::EnableEeschemaPrintCairo, &m_EnableEeschemaPrintCairo, m_EnableEeschemaPrintCairo ) ); + configParams.push_back( new PARAM_CFG_BOOL( true, AC_KEYS::Enable2581, + &m_Enable2581, m_Enable2581 ) ); + + + // Special case for trace mask setting...we just grab them and set them immediately // Because we even use wxLogTrace inside of advanced config wxString traceMasks; diff --git a/common/bitmap_info.cpp b/common/bitmap_info.cpp index 75d7615684..05b6178537 100644 --- a/common/bitmap_info.cpp +++ b/common/bitmap_info.cpp @@ -620,6 +620,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_24.png" ), 24, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_24.png" ), 24, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_24.png" ), 24, wxT( "light" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_24.png" ), 24, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_24.png" ), 24, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_24.png" ), 24, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_24.png" ), 24, wxT( "light" ) ); @@ -1013,6 +1014,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_dark_24.png" ), 24, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_dark_24.png" ), 24, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_dark_24.png" ), 24, wxT( "dark" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_dark_24.png" ), 24, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_dark_24.png" ), 24, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_dark_24.png" ), 24, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_dark_24.png" ), 24, wxT( "dark" ) ); @@ -1405,6 +1407,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_16.png" ), 16, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_16.png" ), 16, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_16.png" ), 16, wxT( "light" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_16.png" ), 16, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_16.png" ), 16, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_16.png" ), 16, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_16.png" ), 16, wxT( "light" ) ); @@ -1798,6 +1801,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_dark_16.png" ), 16, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_dark_16.png" ), 16, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_dark_16.png" ), 16, wxT( "dark" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_dark_16.png" ), 16, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_dark_16.png" ), 16, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_dark_16.png" ), 16, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_dark_16.png" ), 16, wxT( "dark" ) ); @@ -2190,6 +2194,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_32.png" ), 32, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_32.png" ), 32, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_32.png" ), 32, wxT( "light" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_32.png" ), 32, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_32.png" ), 32, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_32.png" ), 32, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_32.png" ), 32, wxT( "light" ) ); @@ -2583,6 +2588,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_dark_32.png" ), 32, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_dark_32.png" ), 32, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_dark_32.png" ), 32, wxT( "dark" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_dark_32.png" ), 32, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_dark_32.png" ), 32, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_dark_32.png" ), 32, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_dark_32.png" ), 32, wxT( "dark" ) ); @@ -2975,6 +2981,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_48.png" ), 48, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_48.png" ), 48, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_48.png" ), 48, wxT( "light" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_48.png" ), 48, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_48.png" ), 48, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_48.png" ), 48, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_48.png" ), 48, wxT( "light" ) ); @@ -3368,6 +3375,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_dark_48.png" ), 48, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_dark_48.png" ), 48, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_dark_48.png" ), 48, wxT( "dark" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_dark_48.png" ), 48, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_dark_48.png" ), 48, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_dark_48.png" ), 48, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_dark_48.png" ), 48, wxT( "dark" ) ); @@ -3760,6 +3768,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_64.png" ), 64, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_64.png" ), 64, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_64.png" ), 64, wxT( "light" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_64.png" ), 64, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_64.png" ), 64, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_64.png" ), 64, wxT( "light" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_64.png" ), 64, wxT( "light" ) ); @@ -4153,6 +4162,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi aBitmapInfoCache[BITMAPS::post_gencad].emplace_back( BITMAPS::post_gencad, wxT( "post_gencad_dark_64.png" ), 64, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_gerber].emplace_back( BITMAPS::post_gerber, wxT( "post_gerber_dark_64.png" ), 64, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::post_rpt].emplace_back( BITMAPS::post_rpt, wxT( "post_rpt_dark_64.png" ), 64, wxT( "dark" ) ); + aBitmapInfoCache[BITMAPS::post_xml].emplace_back( BITMAPS::post_xml, wxT( "post_xml_dark_64.png" ), 64, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::preference].emplace_back( BITMAPS::preference, wxT( "preference_dark_64.png" ), 64, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::print_button].emplace_back( BITMAPS::print_button, wxT( "print_button_dark_64.png" ), 64, wxT( "dark" ) ); aBitmapInfoCache[BITMAPS::project].emplace_back( BITMAPS::project, wxT( "project_dark_64.png" ), 64, wxT( "dark" ) ); diff --git a/common/eda_shape.cpp b/common/eda_shape.cpp index 8ea7283876..749dacaa83 100644 --- a/common/eda_shape.cpp +++ b/common/eda_shape.cpp @@ -94,8 +94,6 @@ wxString EDA_SHAPE::SHAPE_T_asString() const case SHAPE_T::CIRCLE: return wxS( "S_CIRCLE" ); case SHAPE_T::POLY: return wxS( "S_POLYGON" ); case SHAPE_T::BEZIER: return wxS( "S_CURVE" ); - // Synthetic value, but if we come across it then we're going to want to know. - case SHAPE_T::LAST: return wxS( "!S_LAST!" ); } return wxEmptyString; // Just to quiet GCC. @@ -666,6 +664,23 @@ EDA_ANGLE EDA_SHAPE::GetArcAngle() const } +bool EDA_SHAPE::IsClockwiseArc() const +{ + if( m_shape == SHAPE_T::ARC ) + { + VECTOR2D mid = GetArcMid(); + + double orient = ( mid.x - m_start.x ) * ( m_end.y - m_start.y ) + - ( mid.y - m_start.y ) * ( m_end.x - m_start.x ); + + return orient < 0; + } + + UNIMPLEMENTED_FOR( SHAPE_T_asString() ); + return false; +} + + void EDA_SHAPE::SetArcAngleAndEnd( const EDA_ANGLE& aAngle, bool aCheckNegativeAngle ) { EDA_ANGLE angle( aAngle ); diff --git a/common/hash_eda.cpp b/common/hash_eda.cpp index 819fdcf11e..164019363a 100644 --- a/common/hash_eda.cpp +++ b/common/hash_eda.cpp @@ -30,6 +30,7 @@ #include <pcb_textbox.h> #include <pcb_shape.h> #include <pad.h> +#include <pcb_track.h> #include <macros.h> #include <functional> @@ -74,15 +75,66 @@ size_t hash_fp_item( const EDA_ITEM* aItem, int aFlags ) } break; + case PCB_VIA_T: + { + const PCB_VIA* via = static_cast<const PCB_VIA*>( aItem ); + ret = hash_val( via->GetWidth() ); + hash_combine( ret, via->GetDrillValue() ); + hash_combine( ret, via->TopLayer() ); + hash_combine( ret, via->BottomLayer() ); + + for( PCB_LAYER_ID layer : via->GetLayerSet().Seq() ) + hash_combine( ret, via->FlashLayer( layer ) ); + + break; + } + case PCB_PAD_T: { const PAD* pad = static_cast<const PAD*>( aItem ); ret = hash<int>{}( static_cast<int>( pad->GetShape() ) ); - hash_combine( ret, pad->GetDrillShape() ); + + hash_combine( ret, pad->GetAttribute() ); + + if( pad->GetAttribute() == PAD_ATTRIB::PTH || pad->GetAttribute() == PAD_ATTRIB::NPTH ) + { + hash_combine( ret, pad->GetDrillSizeX(), pad->GetDrillSizeY() ); + hash_combine( ret, pad->GetDrillShape() ); + + for( PCB_LAYER_ID layer : pad->GetLayerSet().Seq() ) + hash_combine( ret, pad->FlashLayer( layer ) ); + } + hash_combine( ret, pad->GetSize().x, pad->GetSize().y ); hash_combine( ret, pad->GetOffset().x, pad->GetOffset().y ); - hash_combine( ret, pad->GetDelta().x, pad->GetDelta().y ); + + switch( pad->GetShape() ) + { + case PAD_SHAPE::CHAMFERED_RECT: + hash_combine( ret, pad->GetChamferPositions() ); + hash_combine( ret, pad->GetChamferRectRatio() ); + break; + case PAD_SHAPE::ROUNDRECT: + hash_combine( ret, pad->GetRoundRectCornerRadius() ); + break; + case PAD_SHAPE::TRAPEZOID: + hash_combine( ret, pad->GetDelta().x, pad->GetDelta().y ); + break; + case PAD_SHAPE::CUSTOM: + { + auto poly = pad->GetEffectivePolygon( ERROR_INSIDE ); + + for( int ii = 0; ii < poly->VertexCount(); ++ii ) + { + VECTOR2I point = poly->CVertex( ii ) - pad->GetPosition(); + hash_combine( ret, point.x, point.y ); + } + break; + } + default: + break; + } hash_combine( ret, hash_board_item( pad, aFlags ) ); @@ -100,7 +152,7 @@ size_t hash_fp_item( const EDA_ITEM* aItem, int aFlags ) if( aFlags & HASH_NET ) hash_combine( ret, pad->GetNetCode() ); } - break; + break; case PCB_FIELD_T: if( !( aFlags & HASH_REF ) && static_cast<const PCB_FIELD*>( aItem )->IsReference() ) @@ -144,39 +196,57 @@ size_t hash_fp_item( const EDA_ITEM* aItem, int aFlags ) hash_combine( ret, shape->GetShape() ); hash_combine( ret, shape->GetWidth() ); hash_combine( ret, shape->IsFilled() ); + hash_combine( ret, shape->GetLineStyle() ); if( shape->GetShape() == SHAPE_T::ARC || shape->GetShape() == SHAPE_T::CIRCLE ) hash_combine( ret, shape->GetRadius() ); if( aFlags & HASH_POS ) { - VECTOR2I start = shape->GetStart(); - VECTOR2I end = shape->GetEnd(); - VECTOR2I center = shape->GetCenter(); + std::vector<VECTOR2I> points; + + points.push_back( shape->GetStart() ); + points.push_back( shape->GetEnd() ); + + if( shape->GetShape() == SHAPE_T::CIRCLE ) + points.push_back( shape->GetCenter() ); + + if( shape->GetShape() == SHAPE_T::ARC ) + points.push_back( shape->GetArcMid() ); FOOTPRINT* parentFP = shape->GetParentFootprint(); + if( shape->GetShape() == SHAPE_T::POLY ) + { + const SHAPE_POLY_SET& poly = shape->GetPolyShape(); + + for( auto it = poly.CIterateWithHoles(); it; it++ ) + points.push_back( *it ); + } + + if( shape->GetShape() == SHAPE_T::BEZIER ) + { + points.push_back( shape->GetBezierC1() ); + points.push_back( shape->GetBezierC2() ); + } + if( parentFP && ( aFlags & REL_COORD ) ) { - start -= parentFP->GetPosition(); - end -= parentFP->GetPosition(); - center -= parentFP->GetPosition(); - - RotatePoint( start, -parentFP->GetOrientation() ); - RotatePoint( end, -parentFP->GetOrientation() ); - RotatePoint( center, -parentFP->GetOrientation() ); + for( VECTOR2I& point : points ) + { + point -= parentFP->GetPosition(); + RotatePoint( point, -parentFP->GetOrientation() ); + } } - hash_combine( ret, start.x ); - hash_combine( ret, start.y ); - hash_combine( ret, end.x ); - hash_combine( ret, end.y ); - - if( shape->GetShape() == SHAPE_T::ARC ) + if( aFlags & REL_POS ) { - hash_combine( ret, center.x ); - hash_combine( ret, center.y ); + for( VECTOR2I& point : points ) + point -= shape->GetPosition(); } + + for( VECTOR2I& point : points ) + hash_combine( ret, point.x, point.y ); } } break; @@ -200,6 +270,7 @@ size_t hash_fp_item( const EDA_ITEM* aItem, int aFlags ) hash_combine( ret, textbox->GetShape() ); hash_combine( ret, textbox->GetWidth() ); + hash_combine( ret, textbox->GetLineStyle() ); if( aFlags & HASH_POS ) { diff --git a/common/project/project_file.cpp b/common/project/project_file.cpp index 01f90a19e7..da488c2061 100644 --- a/common/project/project_file.cpp +++ b/common/project/project_file.cpp @@ -122,6 +122,21 @@ PROJECT_FILE::PROJECT_FILE( const wxString& aFullPath ) : m_params.emplace_back( new PARAM_VIEWPORT( "board.viewports", &m_Viewports ) ); m_params.emplace_back( new PARAM_VIEWPORT3D( "board.3dviewports", &m_Viewports3D ) ); + + m_params.emplace_back( new PARAM<wxString>( "board.ipc2581.internal_id", + &m_IP2581Bom.id, wxEmptyString ) ); + + m_params.emplace_back( new PARAM<wxString>( "board.ipc2581.mpn", + &m_IP2581Bom.MPN, wxEmptyString ) ); + + m_params.emplace_back( new PARAM<wxString>( "board.ipc2581.mfg", + &m_IP2581Bom.mfg, wxEmptyString ) ); + + m_params.emplace_back( new PARAM<wxString>( "board.ipc2581.distpn", + &m_IP2581Bom.distPN, wxEmptyString ) ); + + m_params.emplace_back( new PARAM<wxString>( "board.ipc2581.dist", + &m_IP2581Bom.dist, wxEmptyString ) ); } diff --git a/common/widgets/progress_reporter_base.cpp b/common/widgets/progress_reporter_base.cpp index 7062414f89..7f4309c1e2 100644 --- a/common/widgets/progress_reporter_base.cpp +++ b/common/widgets/progress_reporter_base.cpp @@ -101,7 +101,7 @@ void PROGRESS_REPORTER_BASE::AddPhases( int aNumPhases ) } -int PROGRESS_REPORTER_BASE::currentProgress() const +int PROGRESS_REPORTER_BASE::CurrentProgress() const { double current = ( 1.0 / (double) m_numPhases ) * ( (double) m_phase + ( (double) m_progress.load() / (double) m_maxProgress ) ); diff --git a/common/widgets/wx_progress_reporters.cpp b/common/widgets/wx_progress_reporters.cpp index 49d0f05b4b..dcf4def6ec 100644 --- a/common/widgets/wx_progress_reporters.cpp +++ b/common/widgets/wx_progress_reporters.cpp @@ -57,7 +57,7 @@ WX_PROGRESS_REPORTER::~WX_PROGRESS_REPORTER() bool WX_PROGRESS_REPORTER::updateUI() { - int cur = currentProgress(); + int cur = CurrentProgress(); if( cur < 0 || cur > 1000 ) cur = 0; @@ -104,7 +104,7 @@ GAUGE_PROGRESS_REPORTER::GAUGE_PROGRESS_REPORTER( wxWindow* aParent, int aNumPha bool GAUGE_PROGRESS_REPORTER::updateUI() { - int cur = currentProgress(); + int cur = CurrentProgress(); if( cur < 0 || cur > 1000 ) cur = 0; diff --git a/common/wildcards_and_files_ext.cpp b/common/wildcards_and_files_ext.cpp index 8f62ece969..42fecb5847 100644 --- a/common/wildcards_and_files_ext.cpp +++ b/common/wildcards_and_files_ext.cpp @@ -181,6 +181,7 @@ const std::string KiCadFootprintFileExtension( "kicad_mod" ); const std::string SpecctraDsnFileExtension( "dsn" ); const std::string SpecctraSessionFileExtension( "ses" ); const std::string IpcD356FileExtension( "d356" ); +const std::string Ipc2581FileExtension( "xml" ); const std::string WorkbookFileExtension( "wbk" ); const std::string PngFileExtension( "png" ); diff --git a/eeschema/tools/symbol_editor_move_tool.cpp b/eeschema/tools/symbol_editor_move_tool.cpp index 53041f7f62..4ec42bdb41 100644 --- a/eeschema/tools/symbol_editor_move_tool.cpp +++ b/eeschema/tools/symbol_editor_move_tool.cpp @@ -461,10 +461,6 @@ int SYMBOL_EDITOR_MOVE_TOOL::AlignElements( const TOOL_EVENT& aEvent ) doMoveItem( shape, newStart - shape->GetStart() ); break; - - case SHAPE_T::LAST: - // Not a real shape - break; } } else diff --git a/include/advanced_config.h b/include/advanced_config.h index cd5f788213..14c18961f7 100644 --- a/include/advanced_config.h +++ b/include/advanced_config.h @@ -288,6 +288,12 @@ public: * When true, enable Eeschema printing using Cairo */ bool m_EnableEeschemaPrintCairo; + + /** + * When true, enable output to 2581 + */ + bool m_Enable2581; + ///@} diff --git a/include/bitmaps/bitmaps_list.h b/include/bitmaps/bitmaps_list.h index b8f23dd0be..de6a5956ec 100644 --- a/include/bitmaps/bitmaps_list.h +++ b/include/bitmaps/bitmaps_list.h @@ -454,6 +454,7 @@ enum class BITMAPS : unsigned int post_gerber, post_module, post_rpt, + post_xml, preference, primitives_to_custom_pad, print_button, diff --git a/include/eda_shape.h b/include/eda_shape.h index bc88ffe3b2..e807c13970 100644 --- a/include/eda_shape.h +++ b/include/eda_shape.h @@ -45,8 +45,7 @@ enum class SHAPE_T : int ARC, CIRCLE, POLY, - BEZIER, - LAST ///< marker for list end + BEZIER }; @@ -311,6 +310,8 @@ public: void SetSegmentAngle( const EDA_ANGLE& aAngle ); + bool IsClockwiseArc() const; + /** * @return the length of the segment using the hypotenuse calculation. */ diff --git a/include/hash_eda.h b/include/hash_eda.h index ca90f5eee3..7601426749 100644 --- a/include/hash_eda.h +++ b/include/hash_eda.h @@ -44,11 +44,13 @@ enum HASH_FLAGS ///< use coordinates relative to the parent object REL_COORD = 0x02, - HASH_ROT = 0x04, - HASH_LAYER = 0x08, - HASH_NET = 0x10, - HASH_REF = 0x20, - HASH_VALUE = 0x40, + ///< use coordinates relative to the shape position + REL_POS = 0x04, + HASH_ROT = 0x08, + HASH_LAYER = 0x10, + HASH_NET = 0x20, + HASH_REF = 0x40, + HASH_VALUE = 0x80, HASH_ALL = 0xff }; diff --git a/include/project/board_project_settings.h b/include/project/board_project_settings.h index 3e4247e687..4dcb214699 100644 --- a/include/project/board_project_settings.h +++ b/include/project/board_project_settings.h @@ -124,6 +124,16 @@ enum class RATSNEST_MODE VISIBLE ///< Ratsnest lines are drawn to items on visible layers only }; +///< BOM Data choices for IPC2581 export +struct IP2581_BOM +{ + wxString mfg; ///< Manufacturer name column + wxString MPN; ///< Manufacturer part number column + wxString dist; ///< Distributor name column + wxString distPN; ///< Distributor part number column + wxString id; ///< Internal ID column +}; + /** * A saved set of layers that are visible. */ diff --git a/include/project/project_file.h b/include/project/project_file.h index 035d4cc6a9..506a03f8b0 100644 --- a/include/project/project_file.h +++ b/include/project/project_file.h @@ -55,6 +55,7 @@ enum LAST_PATH_TYPE : unsigned int LAST_PATH_POS_FILES, LAST_PATH_SVG, LAST_PATH_PLOT, + LAST_PATH_2581, LAST_PATH_SIZE }; @@ -176,6 +177,8 @@ public: std::vector<VIEWPORT> m_Viewports; /// List of stored viewports (pos + zoom) std::vector<VIEWPORT3D> m_Viewports3D; /// List of stored 3D viewports (view matrixes) + struct IP2581_BOM m_IP2581Bom; /// IPC-2581 BOM settings + private: /// An list of schematic sheets in this project std::vector<FILE_INFO_PAIR> m_sheets; diff --git a/include/widgets/progress_reporter_base.h b/include/widgets/progress_reporter_base.h index a3ecd7c20e..756f80f73e 100644 --- a/include/widgets/progress_reporter_base.h +++ b/include/widgets/progress_reporter_base.h @@ -107,8 +107,9 @@ public: bool IsCancelled() const override { return m_cancelled; } + int CurrentProgress() const; + protected: - int currentProgress() const; virtual bool updateUI() = 0; diff --git a/include/wildcards_and_files_ext.h b/include/wildcards_and_files_ext.h index 60d5ffed8d..90c7b01a58 100644 --- a/include/wildcards_and_files_ext.h +++ b/include/wildcards_and_files_ext.h @@ -166,6 +166,7 @@ extern const std::string DrawingSheetFileExtension; extern const std::string SpecctraDsnFileExtension; extern const std::string SpecctraSessionFileExtension; extern const std::string IpcD356FileExtension; +extern const std::string Ipc2581FileExtension; extern const std::string WorkbookFileExtension; extern const std::string PngFileExtension; diff --git a/include/wx_fstream_progress.h b/include/wx_fstream_progress.h new file mode 100644 index 0000000000..d2f8e681d9 --- /dev/null +++ b/include/wx_fstream_progress.h @@ -0,0 +1,68 @@ +/* + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2023 KiCad Developers, see AUTHORS.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 + */ + +#ifndef WX_FSTREAM_PROGRESS_H +#define WX_FSTREAM_PROGRESS_H + +#include <wx/wfstream.h> + +class wxFileOutputStreamWithProgress : public wxFileOutputStream +{ +public: + wxFileOutputStreamWithProgress( const wxString& aFileName ) + : wxFileOutputStream( aFileName ) + { + } + + wxFileOutputStreamWithProgress( wxFile& aFile ) + : wxFileOutputStream( aFile ) + { + } + + wxFileOutputStreamWithProgress( int aFd ) + : wxFileOutputStream( aFd ) + { + } + + virtual ~wxFileOutputStreamWithProgress() = default; + + void SetProgressCallback( std::function<void( size_t )> aCallback ) + { + m_callback = aCallback; + } + + virtual size_t OnSysWrite( const void* aBuffer, size_t aSize ) override + { + size_t written = wxFileOutputStream::OnSysWrite( aBuffer, aSize ); + + if( m_callback ) + m_callback( written ); + + return written; + } + +private: + std::function<void( size_t )> m_callback; +}; + +#endif // WX_FSTREAM_PROGRESS_H \ No newline at end of file diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt index ad2b7cb449..8df9f09b5c 100644 --- a/pcbnew/CMakeLists.txt +++ b/pcbnew/CMakeLists.txt @@ -63,6 +63,8 @@ set( PCBNEW_DIALOGS dialogs/dialog_enum_pads_base.cpp dialogs/dialog_exchange_footprints.cpp dialogs/dialog_exchange_footprints_base.cpp + dialogs/dialog_export_2581.cpp + dialogs/dialog_export_2581_base.cpp dialogs/dialog_export_idf.cpp dialogs/dialog_export_idf_base.cpp dialogs/dialog_export_step.cpp @@ -598,8 +600,9 @@ add_subdirectory( plugins/cadstar ) add_subdirectory( plugins/easyeda ) add_subdirectory( plugins/easyedapro ) add_subdirectory( plugins/fabmaster ) +add_subdirectory( plugins/ipc2581 ) -set( PCBNEW_IO_LIBRARIES pcad2kicadpcb altium2pcbnew cadstar2pcbnew easyeda easyedapro fabmaster CACHE INTERNAL "") +set( PCBNEW_IO_LIBRARIES pcad2kicadpcb altium2pcbnew cadstar2pcbnew easyeda easyedapro fabmaster ipc2581 CACHE INTERNAL "") # a very small program launcher for pcbnew_kiface add_executable( pcbnew WIN32 MACOSX_BUNDLE diff --git a/pcbnew/convert_shape_list_to_polygon.cpp b/pcbnew/convert_shape_list_to_polygon.cpp index b99964854e..e9cf98e179 100644 --- a/pcbnew/convert_shape_list_to_polygon.cpp +++ b/pcbnew/convert_shape_list_to_polygon.cpp @@ -205,6 +205,7 @@ bool ConvertOutlineToPolygon( std::vector<PCB_SHAPE*>& aShapeList, SHAPE_POLY_SE contours.emplace_back(); SHAPE_LINE_CHAIN& currContour = contours.back(); + currContour.SetWidth( graphic->GetWidth() ); bool firstPt = true; // Circles, rects and polygons are closed shapes unto themselves (and do not combine diff --git a/pcbnew/dialogs/dialog_export_2581.cpp b/pcbnew/dialogs/dialog_export_2581.cpp new file mode 100644 index 0000000000..f90c9f4f3f --- /dev/null +++ b/pcbnew/dialogs/dialog_export_2581.cpp @@ -0,0 +1,305 @@ +/* + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2023 KiCad Developers, see AUTHORS.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 3 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include <dialogs/dialog_export_2581.h> + +#include <board.h> +#include <footprint.h> +#include <kiway_holder.h> +#include <pcb_edit_frame.h> +#include <pcbnew_settings.h> +#include <pgm_base.h> +#include <project.h> +#include <project/board_project_settings.h> +#include <project/project_file.h> +#include <settings/settings_manager.h> +#include <widgets/std_bitmap_button.h> + +#include <set> +#include <vector> +#include <wx/filedlg.h> + +static wxString s_oemColumn = wxEmptyString; + +DIALOG_EXPORT_2581::DIALOG_EXPORT_2581( PCB_EDIT_FRAME* aParent ) : + DIALOG_EXPORT_2581_BASE( aParent ), m_parent( aParent ) +{ + m_browseButton->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) ); + + SetupStandardButtons( { { wxID_OK, _( "Export" ) }, + { wxID_CANCEL, _( "Close" ) } } ); + + wxString path = m_parent->GetLastPath( LAST_PATH_2581 ); + + if( path.IsEmpty() ) + { + wxFileName brdFile( m_parent->GetBoard()->GetFileName() ); + brdFile.SetExt( wxT( "xml" ) ); + path = brdFile.GetFullPath(); + } + + m_outputFileName->SetValue( path ); + + m_textDistributor->SetSize( m_choiceDistPN->GetSize() ); + + // Now all widgets have the size fixed, call FinishDialogSettings + finishDialogSettings(); +} + + +void DIALOG_EXPORT_2581::onBrowseClicked( wxCommandEvent& event ) +{ + // Build the absolute path of current output directory to preselect it in the file browser. + wxString path = ExpandEnvVarSubstitutions( m_outputFileName->GetValue(), &Prj() ); + wxFileName fn( Prj().AbsolutePath( path ) ); + wxString ipc_files = _( "IPC-2581 Files (*.xml)|*.xml" ); + wxString compressed_files = _( "IPC-2581 Compressed Files (*.zip)|*.zip" ); + + wxFileDialog dlg( this, _( "Export IPC-2581 File" ), fn.GetPath(), fn.GetFullName(), + m_cbCompress->IsChecked() ? compressed_files : ipc_files, + wxFD_SAVE | wxFD_OVERWRITE_PROMPT ); + + if( dlg.ShowModal() == wxID_CANCEL ) + return; + + m_outputFileName->SetValue( dlg.GetPath() ); + +} + +void DIALOG_EXPORT_2581::onOKClick( wxCommandEvent& event ) +{ + m_parent->SetLastPath( LAST_PATH_2581, m_outputFileName->GetValue() ); + + event.Skip(); +} + + +void DIALOG_EXPORT_2581::onCompressCheck( wxCommandEvent& event ) +{ + if( m_cbCompress->GetValue() ) + { + wxFileName fn = m_outputFileName->GetValue(); + + fn.SetExt( "zip" ); + m_outputFileName->SetValue( fn.GetFullPath() ); + } + else + { + wxFileName fn = m_outputFileName->GetValue(); + + fn.SetExt( "xml" ); + m_outputFileName->SetValue( fn.GetFullPath() ); + } +} + + +void DIALOG_EXPORT_2581::onMfgPNChange( wxCommandEvent& event ) +{ + if( event.GetSelection() == 0 ) + { + m_choiceMfg->Enable( false ); + } + else + { + m_choiceMfg->Enable( true ); + + // Don't try to guess the manufacturer if the user has already selected one + if( m_choiceMfg->GetSelection() > 0 ) + return; + + int it = 0; + + if( it = m_choiceMfg->FindString( wxT( "manufacturer" ) ); it != wxNOT_FOUND ) + { + m_choiceMfg->Select( it ); + } + else if( it = m_choiceMfg->FindString( _( "manufacturer" ) ); it != wxNOT_FOUND ) + { + m_choiceMfg->Select( it ); + } + else if( it = m_choiceMfg->FindString( wxT( "mfg" ) ); it != wxNOT_FOUND ) + { + m_choiceMfg->Select( it ); + } + else if( it = m_choiceMfg->FindString( _( "mfg" ) ); it != wxNOT_FOUND ) + { + m_choiceMfg->Select( it ); + } + } +} + + +void DIALOG_EXPORT_2581::onDistPNChange( wxCommandEvent& event ) +{ + if( event.GetSelection() == 0 ) + { + m_textDistributor->Enable( false ); + m_textDistributor->SetValue( _( "N/A" ) ); + } + else + { + m_textDistributor->Enable( true ); + + // Don't try to guess the distributor if the user has already selected one + if( m_textDistributor->GetValue() != _( "N/A" ) ) + return; + + wxString dist = m_choiceDistPN->GetStringSelection(); + dist.MakeUpper(); + + // Try to guess the distributor from the part number column + + if( dist.Contains( wxT( "DIGIKEY" ) ) ) + { + m_textDistributor->SetValue( wxT( "Digi-Key" ) ); + } + else if( dist.Contains( wxT( "DIGI-KEY" ) ) ) + { + m_textDistributor->SetValue( wxT( "Digi-Key" ) ); + } + else if( dist.Contains( wxT( "MOUSER" ) ) ) + { + m_textDistributor->SetValue( wxT( "Mouser" ) ); + } + else if( dist.Contains( wxT( "NEWARK" ) ) ) + { + m_textDistributor->SetValue( wxT( "Newark" ) ); + } + else if( dist.Contains( wxT( "RS COMPONENTS" ) ) ) + { + m_textDistributor->SetValue( wxT( "RS Components" ) ); + } + else if( dist.Contains( wxT( "FARNELL" ) ) ) + { + m_textDistributor->SetValue( wxT( "Farnell" ) ); + } + else if( dist.Contains( wxT( "ARROW" ) ) ) + { + m_textDistributor->SetValue( wxT( "Arrow" ) ); + } + else if( dist.Contains( wxT( "AVNET" ) ) ) + { + m_textDistributor->SetValue( wxT( "Avnet" ) ); + } + else if( dist.Contains( wxT( "TME" ) ) ) + { + m_textDistributor->SetValue( wxT( "TME" ) ); + } + else if( dist.Contains( wxT( "LCSC" ) ) ) + { + m_textDistributor->SetValue( wxT( "LCSC" ) ); + } + } +} + + +bool DIALOG_EXPORT_2581::TransferDataToWindow() +{ + PCBNEW_SETTINGS* cfg = Pgm().GetSettingsManager().GetAppSettings<PCBNEW_SETTINGS>(); + + std::set<wxString> options; + BOARD* board = m_parent->GetBoard(); + + for( FOOTPRINT* fp : board->Footprints() ) + { + for( PCB_FIELD* field : fp->GetFields() ) + options.insert( field->GetName() ); + } + + m_choiceUnits->SetSelection( cfg->m_Export2581.units ); + m_precision->SetValue( cfg->m_Export2581.precision ); + m_versionChoice->SetSelection( cfg->m_Export2581.version ); + m_cbCompress->SetValue( cfg->m_Export2581.compress ); + + wxCommandEvent dummy; + onCompressCheck( dummy ); + + std::vector<wxString> items( options.begin(), options.end() ); + m_oemRef->Append( items ); + m_choiceMPN->Append( items ); + m_choiceMfg->Append( items ); + m_choiceDistPN->Append( items ); + + m_oemRef->SetStringSelection( s_oemColumn ); + + PROJECT_FILE& prj = Prj().GetProjectFile(); + + if( !m_choiceMPN->SetStringSelection( prj.m_IP2581Bom.id ) ) + m_choiceMPN->SetSelection( 0 ); + + if( m_choiceMPN->SetStringSelection( prj.m_IP2581Bom.MPN ) ) + { + m_choiceMfg->Enable( true ); + + if( !m_choiceMfg->SetStringSelection( prj.m_IP2581Bom.mfg ) ) + m_choiceMfg->SetSelection( 0 ); + } + else + { + m_choiceMPN->SetSelection( 0 ); + m_choiceMfg->SetSelection( 0 ); + m_choiceMfg->Enable( false ); + } + + if( m_choiceDistPN->SetStringSelection( prj.m_IP2581Bom.distPN ) ) + { + m_textDistributor->Enable( true ); + + // The combo box selection can be fixed, so any value can be entered + if( !prj.m_IP2581Bom.distPN.empty() ) + { + m_textDistributor->SetValue( prj.m_IP2581Bom.dist ); + } + else + { + wxCommandEvent evt; + onDistPNChange( evt ); + } + } + else + { + m_choiceDistPN->SetSelection( 0 ); + m_textDistributor->SetValue( _( "N/A" ) ); + m_textDistributor->Enable( false ); + } + + return true; +} + +bool DIALOG_EXPORT_2581::TransferDataFromWindow() +{ + PCBNEW_SETTINGS* cfg = Pgm().GetSettingsManager().GetAppSettings<PCBNEW_SETTINGS>(); + + cfg->m_Export2581.units = m_choiceUnits->GetSelection(); + cfg->m_Export2581.precision = m_precision->GetValue(); + cfg->m_Export2581.version = m_versionChoice->GetSelection(); + cfg->m_Export2581.compress = m_cbCompress->GetValue(); + + PROJECT_FILE& prj = Prj().GetProjectFile(); + wxString empty; + + prj.m_IP2581Bom.id = GetOEM(); + prj.m_IP2581Bom.mfg = GetMfg(); + prj.m_IP2581Bom.MPN = GetMPN(); + prj.m_IP2581Bom.distPN = GetDistPN(); + prj.m_IP2581Bom.dist = GetDist(); + + s_oemColumn = m_oemRef->GetStringSelection(); + return true; +} \ No newline at end of file diff --git a/pcbnew/dialogs/dialog_export_2581.fbp b/pcbnew/dialogs/dialog_export_2581.fbp new file mode 100644 index 0000000000..fc786dab4b --- /dev/null +++ b/pcbnew/dialogs/dialog_export_2581.fbp @@ -0,0 +1,1457 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<wxFormBuilder_Project> + <FileVersion major="1" minor="17"/> + <object class="Project" expanded="true"> + <property name="class_decoration"></property> + <property name="code_generation">C++</property> + <property name="disconnect_events">1</property> + <property name="disconnect_mode">source_name</property> + <property name="disconnect_php_events">0</property> + <property name="disconnect_python_events">0</property> + <property name="embedded_files_path">res</property> + <property name="encoding">UTF-8</property> + <property name="event_generation">connect</property> + <property name="file">dialog_export_2581_base</property> + <property name="first_id">1000</property> + <property name="help_provider">none</property> + <property name="image_path_wrapper_function_name"></property> + <property name="indent_with_spaces"></property> + <property name="internationalize">1</property> + <property name="name">DIALOG_EXPORT_2581_BASE</property> + <property name="namespace"></property> + <property name="path">.</property> + <property name="precompiled_header"></property> + <property name="relative_path">1</property> + <property name="skip_lua_events">1</property> + <property name="skip_php_events">1</property> + <property name="skip_python_events">1</property> + <property name="ui_table">UI</property> + <property name="use_array_enum">0</property> + <property name="use_enum">0</property> + <property name="use_microsoft_bom">0</property> + <object class="Dialog" expanded="true"> + <property name="aui_managed">0</property> + <property name="aui_manager_style">wxAUI_MGR_DEFAULT</property> + <property name="bg"></property> + <property name="center">wxBOTH</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="event_handler">impl_virtual</property> + <property name="extra_style"></property> + <property name="fg"></property> + <property name="font"></property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="maximum_size"></property> + <property name="minimum_size"></property> + <property name="name">DIALOG_EXPORT_2581_BASE</property> + <property name="pos"></property> + <property name="size">-1,-1</property> + <property name="style">wxDEFAULT_DIALOG_STYLE</property> + <property name="subclass">DIALOG_SHIM; dialog_shim.h</property> + <property name="title">Export IPC-2581</property> + <property name="tooltip"></property> + <property name="two_step_creation">0</property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <object class="wxBoxSizer" expanded="true"> + <property name="minimum_size"></property> + <property name="name">bMainSizer</property> + <property name="orient">wxVERTICAL</property> + <property name="permission">none</property> + <object class="sizeritem" expanded="true"> + <property name="border">15</property> + <property name="flag">wxBOTTOM|wxEXPAND|wxTOP</property> + <property name="proportion">0</property> + <object class="wxBoxSizer" expanded="true"> + <property name="minimum_size"></property> + <property name="name">bSizerTop</property> + <property name="orient">wxHORIZONTAL</property> + <property name="permission">protected</property> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">File:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_lblBrdFile</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass"></property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL</property> + <property name="proportion">1</property> + <object class="wxTextCtrl" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="maxlength">0</property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size">350,-1</property> + <property name="moveable">1</property> + <property name="name">m_outputFileName</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass"></property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Enter a filename if you do not want to use default file names
Can be used only when printing the current sheet</property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="value"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxRIGHT</property> + <property name="proportion">0</property> + <object class="wxBitmapButton" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="auth_needed">0</property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="bitmap"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="current"></property> + <property name="default">0</property> + <property name="default_pane">0</property> + <property name="disabled"></property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="focus"></property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">MyButton</property> + <property name="margins"></property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size">-1,-1</property> + <property name="moveable">1</property> + <property name="name">m_browseButton</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="position"></property> + <property name="pressed"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size">-1,-1</property> + <property name="style"></property> + <property name="subclass">STD_BITMAP_BUTTON; widgets/std_bitmap_button.h; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <event name="OnButtonClick">onBrowseClicked</event> + </object> + </object> + </object> + </object> + <object class="sizeritem" expanded="true"> + <property name="border">5</property> + <property name="flag">wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxBoxSizer" expanded="true"> + <property name="minimum_size"></property> + <property name="name">bSizer3</property> + <property name="orient">wxHORIZONTAL</property> + <property name="permission">none</property> + <object class="sizeritem" expanded="true"> + <property name="border">10</property> + <property name="flag">wxEXPAND|wxLEFT|wxRIGHT|wxTOP</property> + <property name="proportion">1</property> + <object class="wxStaticBoxSizer" expanded="true"> + <property name="id">wxID_ANY</property> + <property name="label">File Format</property> + <property name="minimum_size"></property> + <property name="name">sbSizer1</property> + <property name="orient">wxVERTICAL</property> + <property name="parent">1</property> + <property name="permission">none</property> + <object class="sizeritem" expanded="true"> + <property name="border">5</property> + <property name="flag">wxEXPAND|wxALL</property> + <property name="proportion">3</property> + <object class="wxFlexGridSizer" expanded="true"> + <property name="cols">2</property> + <property name="flexible_direction">wxBOTH</property> + <property name="growablecols">1</property> + <property name="growablerows"></property> + <property name="hgap">0</property> + <property name="minimum_size"></property> + <property name="name">fgSizer</property> + <property name="non_flexible_grow_mode">wxFLEX_GROWMODE_SPECIFIED</property> + <property name="permission">none</property> + <property name="rows">0</property> + <property name="vgap">0</property> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxALIGN_CENTER_VERTICAL</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Units:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_lblUnits</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass"></property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"Millimeters" "Inches"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_choiceUnits</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">0</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxALIGN_CENTER_VERTICAL</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Precision:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_lblPrecision</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass"></property> + <property name="toolbar_pane">0</property> + <property name="tooltip">The number of values following the decimal separator</property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxSpinCtrl" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="initial">3</property> + <property name="max">16</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min">2</property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_precision</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style">wxSP_ARROW_KEYS</property> + <property name="subclass"></property> + <property name="toolbar_pane">0</property> + <property name="tooltip">The number of values following the decimal separator</property> + <property name="value"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Version:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_lblVersion</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"B" "C"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_versionChoice</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">1</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxCheckBox" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="checked">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Compress Output</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_cbCompress</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Compress output into 'zip' file</property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <event name="OnCheckBox">onCompressCheck</event> + </object> + </object> + </object> + </object> + </object> + </object> + <object class="sizeritem" expanded="true"> + <property name="border">10</property> + <property name="flag">wxEXPAND|wxLEFT|wxRIGHT|wxTOP</property> + <property name="proportion">1</property> + <object class="wxStaticBoxSizer" expanded="true"> + <property name="id">wxID_ANY</property> + <property name="label">BOM Columns</property> + <property name="minimum_size"></property> + <property name="name">sbSizer2</property> + <property name="orient">wxVERTICAL</property> + <property name="parent">1</property> + <property name="permission">none</property> + <object class="sizeritem" expanded="true"> + <property name="border">5</property> + <property name="flag">wxEXPAND</property> + <property name="proportion">1</property> + <object class="wxFlexGridSizer" expanded="true"> + <property name="cols">2</property> + <property name="flexible_direction">wxBOTH</property> + <property name="growablecols"></property> + <property name="growablerows"></property> + <property name="hgap">0</property> + <property name="minimum_size"></property> + <property name="name">fgSizer4</property> + <property name="non_flexible_grow_mode">wxFLEX_GROWMODE_SPECIFIED</property> + <property name="permission">none</property> + <property name="rows">0</property> + <property name="vgap">0</property> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Internal ID:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_lblOEM</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Part ID number used internally during design.
This number must be unique to each part.</property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"Generate Unique"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_oemRef</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">0</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Part ID number used internally during design.
This number must be unique to each part.</property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Manufacturer P/N:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_staticText6</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Column containing the manufacturer part number</property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"Omit"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_choiceMPN</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">0</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Column containing the manufacturer part number</property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <event name="OnChoice">onMfgPNChange</event> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Manufacturer:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_staticText7</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"N/A"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">0</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_choiceMfg</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">0</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Distributor P/N:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_staticText8</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxChoice" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="choices">"Omit"</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_choiceDistPN</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="selection">0</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip">Column containing the distributor part number</property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <event name="OnChoice">onDistPNChange</event> + </object> + </object> + <object class="sizeritem" expanded="false"> + <property name="border">5</property> + <property name="flag">wxALIGN_CENTER_VERTICAL|wxALL</property> + <property name="proportion">0</property> + <object class="wxStaticText" expanded="false"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="label">Distributor:</property> + <property name="markup">0</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_staticText9</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size"></property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + <property name="wrap">-1</property> + </object> + </object> + <object class="sizeritem" expanded="true"> + <property name="border">5</property> + <property name="flag">wxALL|wxEXPAND</property> + <property name="proportion">0</property> + <object class="wxTextCtrl" expanded="true"> + <property name="BottomDockable">1</property> + <property name="LeftDockable">1</property> + <property name="RightDockable">1</property> + <property name="TopDockable">1</property> + <property name="aui_layer"></property> + <property name="aui_name"></property> + <property name="aui_position"></property> + <property name="aui_row"></property> + <property name="best_size"></property> + <property name="bg"></property> + <property name="caption"></property> + <property name="caption_visible">1</property> + <property name="center_pane">0</property> + <property name="close_button">1</property> + <property name="context_help"></property> + <property name="context_menu">1</property> + <property name="default_pane">0</property> + <property name="dock">Dock</property> + <property name="dock_fixed">0</property> + <property name="docking">Left</property> + <property name="drag_accept_files">0</property> + <property name="enabled">1</property> + <property name="fg"></property> + <property name="floatable">1</property> + <property name="font"></property> + <property name="gripper">0</property> + <property name="hidden">0</property> + <property name="id">wxID_ANY</property> + <property name="max_size"></property> + <property name="maximize_button">0</property> + <property name="maximum_size"></property> + <property name="maxlength"></property> + <property name="min_size"></property> + <property name="minimize_button">0</property> + <property name="minimum_size"></property> + <property name="moveable">1</property> + <property name="name">m_textDistributor</property> + <property name="pane_border">1</property> + <property name="pane_position"></property> + <property name="pane_size"></property> + <property name="permission">protected</property> + <property name="pin_button">1</property> + <property name="pos"></property> + <property name="resize">Resizable</property> + <property name="show">1</property> + <property name="size">-1,-1</property> + <property name="style"></property> + <property name="subclass">; ; forward_declare</property> + <property name="toolbar_pane">0</property> + <property name="tooltip"></property> + <property name="validator_data_type"></property> + <property name="validator_style">wxFILTER_NONE</property> + <property name="validator_type">wxDefaultValidator</property> + <property name="validator_variable"></property> + <property name="value">N/A</property> + <property name="window_extra_style"></property> + <property name="window_name"></property> + <property name="window_style"></property> + </object> + </object> + </object> + </object> + </object> + </object> + </object> + </object> + <object class="sizeritem" expanded="true"> + <property name="border">5</property> + <property name="flag">wxEXPAND|wxALL</property> + <property name="proportion">0</property> + <object class="wxStdDialogButtonSizer" expanded="true"> + <property name="Apply">0</property> + <property name="Cancel">1</property> + <property name="ContextHelp">0</property> + <property name="Help">0</property> + <property name="No">0</property> + <property name="OK">1</property> + <property name="Save">0</property> + <property name="Yes">0</property> + <property name="minimum_size"></property> + <property name="name">m_stdButtons</property> + <property name="permission">protected</property> + <event name="OnOKButtonClick">onOKClick</event> + </object> + </object> + </object> + </object> + </object> +</wxFormBuilder_Project> diff --git a/pcbnew/dialogs/dialog_export_2581.h b/pcbnew/dialogs/dialog_export_2581.h new file mode 100644 index 0000000000..a55c0c9eb8 --- /dev/null +++ b/pcbnew/dialogs/dialog_export_2581.h @@ -0,0 +1,113 @@ +/* + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2023 KiCad Developers, see AUTHORS.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 3 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef IPC2581_EXPORT_DIALOG_H +#define IPC2581_EXPORT_DIALOG_H +#include "dialog_export_2581_base.h" + +class PCB_EDIT_FRAME; + +class DIALOG_EXPORT_2581 : public DIALOG_EXPORT_2581_BASE +{ +public: + DIALOG_EXPORT_2581( PCB_EDIT_FRAME* aParent ); + + wxString GetOutputPath() const + { + return m_outputFileName->GetValue(); + } + + wxString GetUnitsString() const + { + if( m_choiceUnits->GetSelection() == 0 ) + return wxT( "mm" ); + else + return wxT( "inch" ); + } + + wxString GetPrecision() const + { + return wxString::Format( "%d", m_precision->GetValue() ); + } + + char GetVersion() const + { + return m_versionChoice->GetSelection() == 0 ? 'B' : 'C'; + } + + wxString GetOEM() const + { + if( m_oemRef->GetSelection() == 0 ) + return wxEmptyString; + else + return m_oemRef->GetStringSelection(); + } + + bool GetCompress() const + { + return m_cbCompress->GetValue(); + } + + wxString GetMPN() const + { + if( !m_choiceMPN->IsEnabled() || m_choiceMPN->GetSelection() == 0 ) + return wxEmptyString; + else + return m_choiceMPN->GetStringSelection(); + } + + wxString GetMfg() const + { + if( !m_choiceMfg->IsEnabled() || m_choiceMfg->GetSelection() == 0 ) + return wxEmptyString; + else + return m_choiceMfg->GetStringSelection(); + } + + wxString GetDistPN() const + { + if( !m_choiceDistPN->IsEnabled() || m_choiceDistPN->GetSelection() == 0 ) + return wxEmptyString; + else + return m_choiceDistPN->GetStringSelection(); + } + + wxString GetDist() const + { + if( !m_textDistributor->IsEnabled() || m_textDistributor->GetValue() == _( "N/A" ) ) + return wxEmptyString; + else + return m_textDistributor->GetValue(); + } + +private: + void onBrowseClicked( wxCommandEvent& event ) override; + void onOKClick( wxCommandEvent& event ) override; + void onCompressCheck( wxCommandEvent& event ) override; + void onMfgPNChange( wxCommandEvent& event ) override; + void onDistPNChange( wxCommandEvent& event ) override; + + + bool TransferDataToWindow() override; + bool TransferDataFromWindow() override; + + PCB_EDIT_FRAME* m_parent; +}; + +#endif // IPC2581_EXPORT_DIALOG_H \ No newline at end of file diff --git a/pcbnew/dialogs/dialog_export_2581_base.cpp b/pcbnew/dialogs/dialog_export_2581_base.cpp new file mode 100644 index 0000000000..a9a120b89a --- /dev/null +++ b/pcbnew/dialogs/dialog_export_2581_base.cpp @@ -0,0 +1,202 @@ +/////////////////////////////////////////////////////////////////////////// +// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf0) +// http://www.wxformbuilder.org/ +// +// PLEASE DO *NOT* EDIT THIS FILE! +/////////////////////////////////////////////////////////////////////////// + +#include "widgets/std_bitmap_button.h" + +#include "dialog_export_2581_base.h" + +/////////////////////////////////////////////////////////////////////////// + +DIALOG_EXPORT_2581_BASE::DIALOG_EXPORT_2581_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : DIALOG_SHIM( parent, id, title, pos, size, style ) +{ + this->SetSizeHints( wxDefaultSize, wxDefaultSize ); + + wxBoxSizer* bMainSizer; + bMainSizer = new wxBoxSizer( wxVERTICAL ); + + bSizerTop = new wxBoxSizer( wxHORIZONTAL ); + + m_lblBrdFile = new wxStaticText( this, wxID_ANY, _("File:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_lblBrdFile->Wrap( -1 ); + bSizerTop->Add( m_lblBrdFile, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); + + m_outputFileName = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); + m_outputFileName->SetToolTip( _("Enter a filename if you do not want to use default file names\nCan be used only when printing the current sheet") ); + m_outputFileName->SetMinSize( wxSize( 350,-1 ) ); + + bSizerTop->Add( m_outputFileName, 1, wxALIGN_CENTER_VERTICAL, 5 ); + + m_browseButton = new STD_BITMAP_BUTTON( this, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxSize( -1,-1 ), wxBU_AUTODRAW|0 ); + bSizerTop->Add( m_browseButton, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT, 5 ); + + + bMainSizer->Add( bSizerTop, 0, wxBOTTOM|wxEXPAND|wxTOP, 15 ); + + wxBoxSizer* bSizer3; + bSizer3 = new wxBoxSizer( wxHORIZONTAL ); + + wxStaticBoxSizer* sbSizer1; + sbSizer1 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("File Format") ), wxVERTICAL ); + + wxFlexGridSizer* fgSizer; + fgSizer = new wxFlexGridSizer( 0, 2, 0, 0 ); + fgSizer->AddGrowableCol( 1 ); + fgSizer->SetFlexibleDirection( wxBOTH ); + fgSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); + + m_lblUnits = new wxStaticText( sbSizer1->GetStaticBox(), wxID_ANY, _("Units:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_lblUnits->Wrap( -1 ); + fgSizer->Add( m_lblUnits, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); + + wxString m_choiceUnitsChoices[] = { _("Millimeters"), _("Inches") }; + int m_choiceUnitsNChoices = sizeof( m_choiceUnitsChoices ) / sizeof( wxString ); + m_choiceUnits = new wxChoice( sbSizer1->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceUnitsNChoices, m_choiceUnitsChoices, 0 ); + m_choiceUnits->SetSelection( 0 ); + fgSizer->Add( m_choiceUnits, 0, wxALL|wxEXPAND, 5 ); + + m_lblPrecision = new wxStaticText( sbSizer1->GetStaticBox(), wxID_ANY, _("Precision:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_lblPrecision->Wrap( -1 ); + m_lblPrecision->SetToolTip( _("The number of values following the decimal separator") ); + + fgSizer->Add( m_lblPrecision, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); + + m_precision = new wxSpinCtrl( sbSizer1->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 2, 16, 3 ); + m_precision->SetToolTip( _("The number of values following the decimal separator") ); + + fgSizer->Add( m_precision, 0, wxALL|wxEXPAND, 5 ); + + m_lblVersion = new wxStaticText( sbSizer1->GetStaticBox(), wxID_ANY, _("Version:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_lblVersion->Wrap( -1 ); + fgSizer->Add( m_lblVersion, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 ); + + wxString m_versionChoiceChoices[] = { _("B"), _("C") }; + int m_versionChoiceNChoices = sizeof( m_versionChoiceChoices ) / sizeof( wxString ); + m_versionChoice = new wxChoice( sbSizer1->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_versionChoiceNChoices, m_versionChoiceChoices, 0 ); + m_versionChoice->SetSelection( 1 ); + fgSizer->Add( m_versionChoice, 0, wxALL|wxEXPAND, 5 ); + + m_cbCompress = new wxCheckBox( sbSizer1->GetStaticBox(), wxID_ANY, _("Compress Output"), wxDefaultPosition, wxDefaultSize, 0 ); + m_cbCompress->SetToolTip( _("Compress output into 'zip' file") ); + + fgSizer->Add( m_cbCompress, 0, wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND, 5 ); + + + sbSizer1->Add( fgSizer, 3, wxEXPAND|wxALL, 5 ); + + + bSizer3->Add( sbSizer1, 1, wxEXPAND|wxLEFT|wxRIGHT|wxTOP, 10 ); + + wxStaticBoxSizer* sbSizer2; + sbSizer2 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("BOM Columns") ), wxVERTICAL ); + + wxFlexGridSizer* fgSizer4; + fgSizer4 = new wxFlexGridSizer( 0, 2, 0, 0 ); + fgSizer4->SetFlexibleDirection( wxBOTH ); + fgSizer4->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); + + m_lblOEM = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Internal ID:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_lblOEM->Wrap( -1 ); + m_lblOEM->SetToolTip( _("Part ID number used internally during design.\nThis number must be unique to each part.") ); + + fgSizer4->Add( m_lblOEM, 0, wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND, 5 ); + + wxString m_oemRefChoices[] = { _("Generate Unique") }; + int m_oemRefNChoices = sizeof( m_oemRefChoices ) / sizeof( wxString ); + m_oemRef = new wxChoice( sbSizer2->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_oemRefNChoices, m_oemRefChoices, 0 ); + m_oemRef->SetSelection( 0 ); + m_oemRef->SetToolTip( _("Part ID number used internally during design.\nThis number must be unique to each part.") ); + + fgSizer4->Add( m_oemRef, 0, wxALL|wxEXPAND, 5 ); + + m_staticText6 = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Manufacturer P/N:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticText6->Wrap( -1 ); + m_staticText6->SetToolTip( _("Column containing the manufacturer part number") ); + + fgSizer4->Add( m_staticText6, 0, wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND, 5 ); + + wxString m_choiceMPNChoices[] = { _("Omit") }; + int m_choiceMPNNChoices = sizeof( m_choiceMPNChoices ) / sizeof( wxString ); + m_choiceMPN = new wxChoice( sbSizer2->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceMPNNChoices, m_choiceMPNChoices, 0 ); + m_choiceMPN->SetSelection( 0 ); + m_choiceMPN->SetToolTip( _("Column containing the manufacturer part number") ); + + fgSizer4->Add( m_choiceMPN, 0, wxALL|wxEXPAND, 5 ); + + m_staticText7 = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Manufacturer:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticText7->Wrap( -1 ); + fgSizer4->Add( m_staticText7, 0, wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND, 5 ); + + wxString m_choiceMfgChoices[] = { _("N/A") }; + int m_choiceMfgNChoices = sizeof( m_choiceMfgChoices ) / sizeof( wxString ); + m_choiceMfg = new wxChoice( sbSizer2->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceMfgNChoices, m_choiceMfgChoices, 0 ); + m_choiceMfg->SetSelection( 0 ); + m_choiceMfg->Enable( false ); + + fgSizer4->Add( m_choiceMfg, 0, wxALL|wxEXPAND, 5 ); + + m_staticText8 = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Distributor P/N:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticText8->Wrap( -1 ); + fgSizer4->Add( m_staticText8, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 ); + + wxString m_choiceDistPNChoices[] = { _("Omit") }; + int m_choiceDistPNNChoices = sizeof( m_choiceDistPNChoices ) / sizeof( wxString ); + m_choiceDistPN = new wxChoice( sbSizer2->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceDistPNNChoices, m_choiceDistPNChoices, 0 ); + m_choiceDistPN->SetSelection( 0 ); + m_choiceDistPN->SetToolTip( _("Column containing the distributor part number") ); + + fgSizer4->Add( m_choiceDistPN, 0, wxALL|wxEXPAND, 5 ); + + m_staticText9 = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Distributor:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticText9->Wrap( -1 ); + fgSizer4->Add( m_staticText9, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 ); + + m_textDistributor = new wxTextCtrl( sbSizer2->GetStaticBox(), wxID_ANY, _("N/A"), wxDefaultPosition, wxDefaultSize, 0 ); + fgSizer4->Add( m_textDistributor, 0, wxALL|wxEXPAND, 5 ); + + + sbSizer2->Add( fgSizer4, 1, wxEXPAND, 5 ); + + + bSizer3->Add( sbSizer2, 1, wxEXPAND|wxLEFT|wxRIGHT|wxTOP, 10 ); + + + bMainSizer->Add( bSizer3, 0, wxEXPAND, 5 ); + + m_stdButtons = new wxStdDialogButtonSizer(); + m_stdButtonsOK = new wxButton( this, wxID_OK ); + m_stdButtons->AddButton( m_stdButtonsOK ); + m_stdButtonsCancel = new wxButton( this, wxID_CANCEL ); + m_stdButtons->AddButton( m_stdButtonsCancel ); + m_stdButtons->Realize(); + + bMainSizer->Add( m_stdButtons, 0, wxEXPAND|wxALL, 5 ); + + + this->SetSizer( bMainSizer ); + this->Layout(); + bMainSizer->Fit( this ); + + this->Centre( wxBOTH ); + + // Connect Events + m_browseButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onBrowseClicked ), NULL, this ); + m_cbCompress->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onCompressCheck ), NULL, this ); + m_choiceMPN->Connect( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onMfgPNChange ), NULL, this ); + m_choiceDistPN->Connect( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onDistPNChange ), NULL, this ); + m_stdButtonsOK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onOKClick ), NULL, this ); +} + +DIALOG_EXPORT_2581_BASE::~DIALOG_EXPORT_2581_BASE() +{ + // Disconnect Events + m_browseButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onBrowseClicked ), NULL, this ); + m_cbCompress->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onCompressCheck ), NULL, this ); + m_choiceMPN->Disconnect( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onMfgPNChange ), NULL, this ); + m_choiceDistPN->Disconnect( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onDistPNChange ), NULL, this ); + m_stdButtonsOK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_EXPORT_2581_BASE::onOKClick ), NULL, this ); + +} diff --git a/pcbnew/dialogs/dialog_export_2581_base.h b/pcbnew/dialogs/dialog_export_2581_base.h new file mode 100644 index 0000000000..7fe312373a --- /dev/null +++ b/pcbnew/dialogs/dialog_export_2581_base.h @@ -0,0 +1,86 @@ +/////////////////////////////////////////////////////////////////////////// +// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf0) +// http://www.wxformbuilder.org/ +// +// PLEASE DO *NOT* EDIT THIS FILE! +/////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include <wx/artprov.h> +#include <wx/xrc/xmlres.h> +#include <wx/intl.h> +class STD_BITMAP_BUTTON; + +#include "dialog_shim.h" +#include <wx/string.h> +#include <wx/stattext.h> +#include <wx/gdicmn.h> +#include <wx/font.h> +#include <wx/colour.h> +#include <wx/settings.h> +#include <wx/textctrl.h> +#include <wx/bmpbuttn.h> +#include <wx/bitmap.h> +#include <wx/image.h> +#include <wx/icon.h> +#include <wx/button.h> +#include <wx/sizer.h> +#include <wx/choice.h> +#include <wx/spinctrl.h> +#include <wx/checkbox.h> +#include <wx/statbox.h> +#include <wx/dialog.h> + +/////////////////////////////////////////////////////////////////////////// + + +/////////////////////////////////////////////////////////////////////////////// +/// Class DIALOG_EXPORT_2581_BASE +/////////////////////////////////////////////////////////////////////////////// +class DIALOG_EXPORT_2581_BASE : public DIALOG_SHIM +{ + private: + + protected: + wxBoxSizer* bSizerTop; + wxStaticText* m_lblBrdFile; + wxTextCtrl* m_outputFileName; + STD_BITMAP_BUTTON* m_browseButton; + wxStaticText* m_lblUnits; + wxChoice* m_choiceUnits; + wxStaticText* m_lblPrecision; + wxSpinCtrl* m_precision; + wxStaticText* m_lblVersion; + wxChoice* m_versionChoice; + wxCheckBox* m_cbCompress; + wxStaticText* m_lblOEM; + wxChoice* m_oemRef; + wxStaticText* m_staticText6; + wxChoice* m_choiceMPN; + wxStaticText* m_staticText7; + wxChoice* m_choiceMfg; + wxStaticText* m_staticText8; + wxChoice* m_choiceDistPN; + wxStaticText* m_staticText9; + wxTextCtrl* m_textDistributor; + wxStdDialogButtonSizer* m_stdButtons; + wxButton* m_stdButtonsOK; + wxButton* m_stdButtonsCancel; + + // Virtual event handlers, override them in your derived class + virtual void onBrowseClicked( wxCommandEvent& event ) { event.Skip(); } + virtual void onCompressCheck( wxCommandEvent& event ) { event.Skip(); } + virtual void onMfgPNChange( wxCommandEvent& event ) { event.Skip(); } + virtual void onDistPNChange( wxCommandEvent& event ) { event.Skip(); } + virtual void onOKClick( wxCommandEvent& event ) { event.Skip(); } + + + public: + + DIALOG_EXPORT_2581_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Export IPC-2581"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE ); + + ~DIALOG_EXPORT_2581_BASE(); + +}; + diff --git a/pcbnew/files.cpp b/pcbnew/files.cpp index 9045e04117..864581305d 100644 --- a/pcbnew/files.cpp +++ b/pcbnew/files.cpp @@ -28,6 +28,7 @@ #include <confirm.h> #include <core/arraydim.h> +#include <core/thread_pool.h> #include <gestfich.h> #include <pcb_edit_frame.h> #include <board_design_settings.h> @@ -58,6 +59,7 @@ #include <project/net_settings.h> #include <plugins/cadstar/cadstar_pcb_archive_plugin.h> #include <plugins/kicad/pcb_plugin.h> +#include <dialogs/dialog_export_2581.h> #include <dialogs/dialog_imported_layers.h> #include <dialogs/dialog_import_choose_project.h> #include <plugins/common/plugin_common_choose_project.h> @@ -70,8 +72,11 @@ #include <kiplatform/io.h> #include <wx/stdpaths.h> +#include <wx/ffile.h> #include <wx/filedlg.h> #include <wx/txtstrm.h> +#include <wx/wfstream.h> +#include <wx/zipstrm.h> #include "widgets/filedlg_hook_save_project.h" @@ -1220,3 +1225,131 @@ bool PCB_EDIT_FRAME::importFile( const wxString& aFileName, int aFileType, return false; } + +void PCB_EDIT_FRAME::GenIPC2581File( wxCommandEvent& event ) +{ + DIALOG_EXPORT_2581 dlg( this ); + + if( dlg.ShowModal() != wxID_OK ) + return; + + wxFileName pcbFileName = dlg.GetOutputPath(); + + // Write through symlinks, don't replace them + WX_FILENAME::ResolvePossibleSymlinks( pcbFileName ); + + if( pcbFileName.GetName().empty() ) + { + DisplayError( this, _( "The board must be saved before generating IPC2581 file." ) ); + return; + } + + if( !IsWritable( pcbFileName ) ) + { + wxString msg = wxString::Format( _( "Insufficient permissions to write file '%s'." ), + pcbFileName.GetFullPath() ); + + DisplayError( this, msg ); + return; + } + + wxString tempFile = wxFileName::CreateTempFileName( wxS( "pcbnew_ipc" ) ); + wxString upperTxt; + wxString lowerTxt; + WX_PROGRESS_REPORTER reporter( this, _( "Generating IPC2581 file" ), 5 ); + STRING_UTF8_MAP props; + + props["units"] = dlg.GetUnitsString(); + props["sigfig"] = dlg.GetPrecision(); + props["version"] = dlg.GetVersion(); + props["OEMRef"] = dlg.GetOEM(); + props["mpn"] = dlg.GetMPN(); + props["mfg"] = dlg.GetMfg(); + props["dist"] = dlg.GetDist(); + props["distpn"] = dlg.GetDistPN(); + + auto saveFile = [&]() -> bool + { + try + { + PLUGIN::RELEASER pi( IO_MGR::PluginFind( IO_MGR::IPC2581 ) ); + + pi->SaveBoard( tempFile, GetBoard(), &props, &reporter ); + return true; + } + catch( const IO_ERROR& ioe ) + { + DisplayError( this, wxString::Format( _( "Error generating IPC2581 file '%s'.\n%s" ), + pcbFileName.GetFullPath(), ioe.What() ) ); + + lowerTxt.Printf( _( "Failed to create temporary file '%s'." ), tempFile ); + + SetMsgPanel( upperTxt, lowerTxt ); + + // In case we started a file but didn't fully write it, clean up + wxRemoveFile( tempFile ); + + return false; + } + }; + + thread_pool& tp = GetKiCadThreadPool(); + auto ret = tp.submit( saveFile ); + + + std::future_status status = ret.wait_for( std::chrono::milliseconds( 250 ) ); + + while( status != std::future_status::ready ) + { + reporter.KeepRefreshing(); + status = ret.wait_for( std::chrono::milliseconds( 250 ) ); + } + + try + { + if( !ret.get() ) + return; + } + catch(const std::exception& e) + { + wxLogError( "Exception in IPC2581 generation: %s", e.what() ); + return; + } + + // Preserve the permissions of the current file + KIPLATFORM::IO::DuplicatePermissions( pcbFileName.GetFullPath(), tempFile ); + + if( dlg.GetCompress() ) + { + wxFileName tempfn = pcbFileName; + tempfn.SetExt( Ipc2581FileExtension ); + wxFileName zipfn = tempFile; + zipfn.SetExt( "zip" ); + + wxFFileOutputStream fnout( zipfn.GetFullPath() ); + wxZipOutputStream zip( fnout ); + wxFFileInputStream fnin( tempFile ); + + zip.PutNextEntry( tempfn.GetFullName() ); + fnin.Read( zip ); + zip.Close(); + fnout.Close(); + + wxRemoveFile( tempFile ); + tempFile = zipfn.GetFullPath(); + } + + // If save succeeded, replace the original with what we just wrote + if( !wxRenameFile( tempFile, pcbFileName.GetFullPath() ) ) + { + DisplayError( this, wxString::Format( _( "Error generating IPC2581 file '%s'.\n" + "Failed to rename temporary file '%s." ), + pcbFileName.GetFullPath(), + tempFile ) ); + + lowerTxt.Printf( _( "Failed to rename temporary file '%s'." ), + tempFile ); + + SetMsgPanel( upperTxt, lowerTxt ); + } +} \ No newline at end of file diff --git a/pcbnew/footprint.cpp b/pcbnew/footprint.cpp index c6b2c73b78..60490038df 100644 --- a/pcbnew/footprint.cpp +++ b/pcbnew/footprint.cpp @@ -293,6 +293,9 @@ bool FOOTPRINT::HasFieldByName( const wxString& aFieldName ) const PCB_FIELD* FOOTPRINT::GetFieldByName( const wxString& aFieldName ) { + if( aFieldName.empty() ) + return nullptr; + for( PCB_FIELD* field : m_fields ) { if( field->GetName() == aFieldName ) @@ -2499,14 +2502,24 @@ void FOOTPRINT::BuildCourtyardCaches( OUTLINE_ERROR_HANDLER* aErrorHandler ) // Collect items: std::vector<PCB_SHAPE*> list_front; std::vector<PCB_SHAPE*> list_back; + std::map<int, int> front_width_histogram; + std::map<int, int> back_width_histogram; for( BOARD_ITEM* item : GraphicalItems() ) { if( item->GetLayer() == B_CrtYd && item->Type() == PCB_SHAPE_T ) - list_back.push_back( static_cast<PCB_SHAPE*>( item ) ); + { + PCB_SHAPE* shape = static_cast<PCB_SHAPE*>( item ); + list_back.push_back( shape ); + back_width_histogram[ shape->GetStroke().GetWidth() ]++; + } if( item->GetLayer() == F_CrtYd && item->Type() == PCB_SHAPE_T ) - list_front.push_back( static_cast<PCB_SHAPE*>( item ) ); + { + PCB_SHAPE* shape = static_cast<PCB_SHAPE*>( item ); + list_front.push_back( shape ); + front_width_histogram[ shape->GetStroke().GetWidth() ]++; + } } if( !list_front.size() && !list_back.size() ) @@ -2522,6 +2535,18 @@ void FOOTPRINT::BuildCourtyardCaches( OUTLINE_ERROR_HANDLER* aErrorHandler ) m_courtyard_cache_front.Inflate( -1, CORNER_STRATEGY::CHAMFER_ACUTE_CORNERS, maxError ); m_courtyard_cache_front.CacheTriangulation( false ); + auto max = std::max_element( front_width_histogram.begin(), front_width_histogram.end(), + []( const std::pair<int, int>& a, const std::pair<int, int>& b ) + { + return a.second < b.second; + } ); + int width = max->first; + + if( width == 0 ) + width = DEFAULT_COURTYARD_WIDTH; + + if( m_courtyard_cache_front.OutlineCount() > 0 ) + m_courtyard_cache_front.Outline( 0 ).SetWidth( width ); } else { @@ -2535,6 +2560,18 @@ void FOOTPRINT::BuildCourtyardCaches( OUTLINE_ERROR_HANDLER* aErrorHandler ) m_courtyard_cache_back.Inflate( -1, CORNER_STRATEGY::CHAMFER_ACUTE_CORNERS, maxError ); m_courtyard_cache_back.CacheTriangulation( false ); + auto max = std::max_element( back_width_histogram.begin(), back_width_histogram.end(), + []( const std::pair<int, int>& a, const std::pair<int, int>& b ) + { + return a.second < b.second; + } ); + int width = max->first; + + if( width == 0 ) + width = DEFAULT_COURTYARD_WIDTH; + + if( m_courtyard_cache_back.OutlineCount() > 0 ) + m_courtyard_cache_back.Outline( 0 ).SetWidth( width ); } else { @@ -2999,51 +3036,78 @@ double FOOTPRINT::Similarity( const BOARD_ITEM& aOther ) const } -#define TEST( a, b ) { if( a != b ) return a < b; } -#define TEST_PT( a, b ) { if( a.x != b.x ) return a.x < b.x; if( a.y != b.y ) return a.y < b.y; } - - bool FOOTPRINT::cmp_drawings::operator()( const BOARD_ITEM* itemA, const BOARD_ITEM* itemB ) const { - TEST( itemA->Type(), itemB->Type() ); - TEST( itemA->GetLayer(), itemB->GetLayer() ); + if( itemA->Type() != itemB->Type() ) + return itemA->Type() < itemB->Type(); + + if( itemA->GetLayer() != itemB->GetLayer() ) + return itemA->GetLayer() < itemB->GetLayer(); if( itemA->Type() == PCB_SHAPE_T ) { const PCB_SHAPE* dwgA = static_cast<const PCB_SHAPE*>( itemA ); const PCB_SHAPE* dwgB = static_cast<const PCB_SHAPE*>( itemB ); - TEST( dwgA->GetShape(), dwgB->GetShape() ); + if( dwgA->GetShape() != dwgB->GetShape() ) + return dwgA->GetShape() < dwgB->GetShape(); // GetStart() and GetEnd() have no meaning with polygons. // We cannot use them for sorting polygons if( dwgA->GetShape() != SHAPE_T::POLY ) { - TEST_PT( dwgA->GetStart(), dwgB->GetStart() ); - TEST_PT( dwgA->GetEnd(), dwgB->GetEnd() ); + if( dwgA->GetStart().x != dwgB->GetStart().x ) + return dwgA->GetStart().x < dwgB->GetStart().x; + if( dwgA->GetStart().y != dwgB->GetStart().y ) + return dwgA->GetStart().y < dwgB->GetStart().y; + + if( dwgA->GetEnd().x != dwgB->GetEnd().x ) + return dwgA->GetEnd().x < dwgB->GetEnd().x; + if( dwgA->GetEnd().y != dwgB->GetEnd().y ) + return dwgA->GetEnd().y < dwgB->GetEnd().y; } if( dwgA->GetShape() == SHAPE_T::ARC ) { - TEST_PT( dwgA->GetCenter(), dwgB->GetCenter() ); + if( dwgA->GetCenter().x != dwgB->GetCenter().x ) + return dwgA->GetCenter().x < dwgB->GetCenter().x; + if( dwgA->GetCenter().y != dwgB->GetCenter().y ) + return dwgA->GetCenter().y < dwgB->GetCenter().y; } else if( dwgA->GetShape() == SHAPE_T::BEZIER ) { - TEST_PT( dwgA->GetBezierC1(), dwgB->GetBezierC1() ); - TEST_PT( dwgA->GetBezierC2(), dwgB->GetBezierC2() ); + if( dwgA->GetBezierC1().x != dwgB->GetBezierC1().x ) + return dwgA->GetBezierC1().x < dwgB->GetBezierC1().x; + if( dwgA->GetBezierC1().y != dwgB->GetBezierC1().y ) + return dwgA->GetBezierC1().y < dwgB->GetBezierC1().y; + + if( dwgA->GetBezierC2().x != dwgB->GetBezierC2().x ) + return dwgA->GetBezierC2().x < dwgB->GetBezierC2().x; + if( dwgA->GetBezierC2().y != dwgB->GetBezierC2().y ) + return dwgA->GetBezierC2().y < dwgB->GetBezierC2().y; } else if( dwgA->GetShape() == SHAPE_T::POLY ) { - TEST( dwgA->GetPolyShape().TotalVertices(), dwgB->GetPolyShape().TotalVertices() ); + if( dwgA->GetPolyShape().TotalVertices() != dwgB->GetPolyShape().TotalVertices() ) + return dwgA->GetPolyShape().TotalVertices() < dwgB->GetPolyShape().TotalVertices(); for( int ii = 0; ii < dwgA->GetPolyShape().TotalVertices(); ++ii ) - TEST_PT( dwgA->GetPolyShape().CVertex( ii ), dwgB->GetPolyShape().CVertex( ii ) ); + { + if( dwgA->GetPolyShape().CVertex( ii ).x != dwgB->GetPolyShape().CVertex( ii ).x ) + return dwgA->GetPolyShape().CVertex( ii ).x + < dwgB->GetPolyShape().CVertex( ii ).x; + if( dwgA->GetPolyShape().CVertex( ii ).y != dwgB->GetPolyShape().CVertex( ii ).y ) + return dwgA->GetPolyShape().CVertex( ii ).y + < dwgB->GetPolyShape().CVertex( ii ).y; + } } - TEST( dwgA->GetWidth(), dwgB->GetWidth() ); + if( dwgA->GetWidth() != dwgB->GetWidth() ) + return dwgA->GetWidth() < dwgB->GetWidth(); } - TEST( itemA->m_Uuid, itemB->m_Uuid ); // should be always the case for valid boards + if( itemA->m_Uuid != itemB->m_Uuid ) + return itemA->m_Uuid < itemB->m_Uuid; return itemA < itemB; } @@ -3054,36 +3118,110 @@ bool FOOTPRINT::cmp_pads::operator()( const PAD* aFirst, const PAD* aSecond ) co if( aFirst->GetNumber() != aSecond->GetNumber() ) return StrNumCmp( aFirst->GetNumber(), aSecond->GetNumber() ) < 0; - TEST_PT( aFirst->GetFPRelativePosition(), aSecond->GetFPRelativePosition() ); - TEST_PT( aFirst->GetSize(), aSecond->GetSize() ); - TEST( aFirst->GetShape(), aSecond->GetShape() ); - TEST( aFirst->GetLayerSet().Seq(), aSecond->GetLayerSet().Seq() ); + if( aFirst->GetFPRelativePosition().x != aSecond->GetFPRelativePosition().x ) + return aFirst->GetFPRelativePosition().x < aSecond->GetFPRelativePosition().x; + if( aFirst->GetFPRelativePosition().y != aSecond->GetFPRelativePosition().y ) + return aFirst->GetFPRelativePosition().y < aSecond->GetFPRelativePosition().y; - TEST( aFirst->m_Uuid, aSecond->m_Uuid ); // should be always the case for valid boards + if( aFirst->GetSize().x != aSecond->GetSize().x ) + return aFirst->GetSize().x < aSecond->GetSize().x; + if( aFirst->GetSize().y != aSecond->GetSize().y ) + return aFirst->GetSize().y < aSecond->GetSize().y; + + if( aFirst->GetShape() != aSecond->GetShape() ) + return aFirst->GetShape() < aSecond->GetShape(); + + if( aFirst->GetLayerSet().Seq() != aSecond->GetLayerSet().Seq() ) + return aFirst->GetLayerSet().Seq() < aSecond->GetLayerSet().Seq(); + + if( aFirst->m_Uuid != aSecond->m_Uuid ) + return aFirst->m_Uuid < aSecond->m_Uuid; return aFirst < aSecond; } +bool FOOTPRINT::cmp_padstack::operator()( const PAD* aFirst, const PAD* aSecond ) const +{ + if( aFirst->GetSize().x != aSecond->GetSize().x ) + return aFirst->GetSize().x < aSecond->GetSize().x; + if( aFirst->GetSize().y != aSecond->GetSize().y ) + return aFirst->GetSize().y < aSecond->GetSize().y; + + if( aFirst->GetShape() != aSecond->GetShape() ) + return aFirst->GetShape() < aSecond->GetShape(); + + if( aFirst->GetLayerSet().Seq() != aSecond->GetLayerSet().Seq() ) + return aFirst->GetLayerSet().Seq() < aSecond->GetLayerSet().Seq(); + + if( aFirst->GetDrillSizeX() != aSecond->GetDrillSizeX() ) + return aFirst->GetDrillSizeX() < aSecond->GetDrillSizeX(); + + if( aFirst->GetDrillSizeY() != aSecond->GetDrillSizeY() ) + return aFirst->GetDrillSizeY() < aSecond->GetDrillSizeY(); + + if( aFirst->GetDrillShape() != aSecond->GetDrillShape() ) + return aFirst->GetDrillShape() < aSecond->GetDrillShape(); + + if( aFirst->GetAttribute() != aSecond->GetAttribute() ) + return aFirst->GetAttribute() < aSecond->GetAttribute(); + + if( aFirst->GetOrientation() != aSecond->GetOrientation() ) + return aFirst->GetOrientation() < aSecond->GetOrientation(); + + if( aFirst->GetSolderMaskExpansion() != aSecond->GetSolderMaskExpansion() ) + return aFirst->GetSolderMaskExpansion() < aSecond->GetSolderMaskExpansion(); + + if( aFirst->GetSolderPasteMargin() != aSecond->GetSolderPasteMargin() ) + return aFirst->GetSolderPasteMargin() < aSecond->GetSolderPasteMargin(); + + if( aFirst->GetLocalSolderMaskMargin() != aSecond->GetLocalSolderMaskMargin() ) + return aFirst->GetLocalSolderMaskMargin() < aSecond->GetLocalSolderMaskMargin(); + + std::shared_ptr<SHAPE_POLY_SET> firstShape = aFirst->GetEffectivePolygon( ERROR_INSIDE ); + std::shared_ptr<SHAPE_POLY_SET> secondShape = aSecond->GetEffectivePolygon( ERROR_INSIDE ); + + if( firstShape->VertexCount() != secondShape->VertexCount() ) + return firstShape->VertexCount() < secondShape->VertexCount(); + + for( int ii = 0; ii < firstShape->VertexCount(); ++ii ) + { + if( firstShape->CVertex( ii ).x != secondShape->CVertex( ii ).x ) + return firstShape->CVertex( ii ).x < secondShape->CVertex( ii ).x; + if( firstShape->CVertex( ii ).y != secondShape->CVertex( ii ).y ) + return firstShape->CVertex( ii ).y < secondShape->CVertex( ii ).y; + } + + return false; +} + + bool FOOTPRINT::cmp_zones::operator()( const ZONE* aFirst, const ZONE* aSecond ) const { - TEST( aFirst->GetAssignedPriority(), aSecond->GetAssignedPriority() ); - TEST( aFirst->GetLayerSet().Seq(), aSecond->GetLayerSet().Seq() ); + if( aFirst->GetAssignedPriority() != aSecond->GetAssignedPriority() ) + return aFirst->GetAssignedPriority() < aSecond->GetAssignedPriority(); - TEST( aFirst->Outline()->TotalVertices(), aSecond->Outline()->TotalVertices() ); + if( aFirst->GetLayerSet().Seq() != aSecond->GetLayerSet().Seq() ) + return aFirst->GetLayerSet().Seq() < aSecond->GetLayerSet().Seq(); + + if( aFirst->Outline()->TotalVertices() != aSecond->Outline()->TotalVertices() ) + return aFirst->Outline()->TotalVertices() < aSecond->Outline()->TotalVertices(); for( int ii = 0; ii < aFirst->Outline()->TotalVertices(); ++ii ) - TEST_PT( aFirst->Outline()->CVertex( ii ), aSecond->Outline()->CVertex( ii ) ); + { + if( aFirst->Outline()->CVertex( ii ).x != aSecond->Outline()->CVertex( ii ).x ) + return aFirst->Outline()->CVertex( ii ).x < aSecond->Outline()->CVertex( ii ).x; + if( aFirst->Outline()->CVertex( ii ).y != aSecond->Outline()->CVertex( ii ).y ) + return aFirst->Outline()->CVertex( ii ).y < aSecond->Outline()->CVertex( ii ).y; + } - TEST( aFirst->m_Uuid, aSecond->m_Uuid ); // should be always the case for valid boards + if( aFirst->m_Uuid != aSecond->m_Uuid ) + return aFirst->m_Uuid < aSecond->m_Uuid; return aFirst < aSecond; } -#undef TEST - - void FOOTPRINT::TransformPadsToPolySet( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aMaxError, ERROR_LOC aErrorLoc, bool aSkipNPTHPadsWihNoCopper, bool aSkipPlatedPads, diff --git a/pcbnew/footprint.h b/pcbnew/footprint.h index b5372fd2a1..6f9a343bff 100644 --- a/pcbnew/footprint.h +++ b/pcbnew/footprint.h @@ -934,6 +934,11 @@ public: bool operator()( const PAD* aFirst, const PAD* aSecond ) const; }; + struct cmp_padstack + { + bool operator()( const PAD* aFirst, const PAD* aSecond ) const; + }; + struct cmp_zones { bool operator()( const ZONE* aFirst, const ZONE* aSecond ) const; diff --git a/pcbnew/io_mgr.cpp b/pcbnew/io_mgr.cpp index 237dc047f8..df5fbd201a 100644 --- a/pcbnew/io_mgr.cpp +++ b/pcbnew/io_mgr.cpp @@ -43,6 +43,7 @@ #include <plugins/fabmaster/fabmaster_plugin.h> #include <plugins/easyeda/pcb_easyeda_plugin.h> #include <plugins/easyedapro/pcb_easyedapro_plugin.h> +#include <plugins/ipc2581/ipc2581_plugin.h> #define FMT_UNIMPLEMENTED _( "Plugin \"%s\" does not implement the \"%s\" function." ) #define FMT_NOTFOUND _( "Plugin type \"%s\" is not found." ) @@ -262,4 +263,9 @@ static IO_MGR::REGISTER_PLUGIN registerSolidworksPCBPlugin( IO_MGR::SOLIDWORKS_PCB, wxT( "Solidworks PCB" ), []() -> PLUGIN* { return new SOLIDWORKS_PCB_PLUGIN; } ); + +static IO_MGR::REGISTER_PLUGIN registerIPC2581Plugin( + IO_MGR::IPC2581, + wxT( "IPC-2581" ), + []() -> PLUGIN* { return new IPC2581_PLUGIN; } ); // clang-format on \ No newline at end of file diff --git a/pcbnew/io_mgr.h b/pcbnew/io_mgr.h index 433e17c0e7..e91e065858 100644 --- a/pcbnew/io_mgr.h +++ b/pcbnew/io_mgr.h @@ -66,6 +66,7 @@ public: GEDA_PCB, ///< Geda PCB file formats. PCAD, SOLIDWORKS_PCB, + IPC2581, // add your type here. // etc. @@ -373,11 +374,13 @@ public: * tuning arguments that the plugin is known to support. The caller * continues to own this object (plugin may not delete it) and plugins * should expect it to be optionally NULL. + * @param aProgressReporter an optional progress reporter * * @throw IO_ERROR if there is a problem saving or exporting. */ virtual void SaveBoard( const wxString& aFileName, BOARD* aBoard, - const STRING_UTF8_MAP* aProperties = nullptr ); + const STRING_UTF8_MAP* aProperties = nullptr, + PROGRESS_REPORTER* aProgressReporter = nullptr ); /** * Return a list of footprint names contained within the library at @a aLibraryPath. diff --git a/pcbnew/kicad_clipboard.cpp b/pcbnew/kicad_clipboard.cpp index 849f61e687..faa2b4df78 100644 --- a/pcbnew/kicad_clipboard.cpp +++ b/pcbnew/kicad_clipboard.cpp @@ -330,7 +330,8 @@ BOARD_ITEM* CLIPBOARD_IO::Parse() void CLIPBOARD_IO::SaveBoard( const wxString& aFileName, BOARD* aBoard, - const STRING_UTF8_MAP* aProperties ) + const STRING_UTF8_MAP* aProperties, + PROGRESS_REPORTER* aProgressReporter ) { init( aProperties ); diff --git a/pcbnew/kicad_clipboard.h b/pcbnew/kicad_clipboard.h index 7b9e64ea44..6cd418150a 100644 --- a/pcbnew/kicad_clipboard.h +++ b/pcbnew/kicad_clipboard.h @@ -48,7 +48,8 @@ public: * Saves the entire board to the clipboard formatted using the PCB_PLUGIN formatting */ void SaveBoard( const wxString& aFileName, BOARD* aBoard, - const STRING_UTF8_MAP* aProperties = nullptr ) override; + const STRING_UTF8_MAP* aProperties = nullptr, + PROGRESS_REPORTER* aProgressReporter = nullptr ) override; /* * Write all the settings of the BOARD* set by setBoard() and then adds all the diff --git a/pcbnew/menubar_pcb_editor.cpp b/pcbnew/menubar_pcb_editor.cpp index 8840e5fce5..8cff484315 100644 --- a/pcbnew/menubar_pcb_editor.cpp +++ b/pcbnew/menubar_pcb_editor.cpp @@ -166,6 +166,10 @@ void PCB_EDIT_FRAME::doReCreateMenuBar() submenuFabOutputs->Add( PCB_ACTIONS::generateGerbers ); submenuFabOutputs->Add( PCB_ACTIONS::generateDrillFiles ); + + if( ADVANCED_CFG::GetCfg().m_Enable2581 ) + submenuFabOutputs->Add( PCB_ACTIONS::generateIPC2581File ); + submenuFabOutputs->Add( PCB_ACTIONS::generatePosFile ); submenuFabOutputs->Add( PCB_ACTIONS::generateReportFile ); submenuFabOutputs->Add( PCB_ACTIONS::generateD356File ); diff --git a/pcbnew/pcb_edit_frame.h b/pcbnew/pcb_edit_frame.h index 7ddeb5f271..fb27486730 100644 --- a/pcbnew/pcb_edit_frame.h +++ b/pcbnew/pcb_edit_frame.h @@ -333,6 +333,11 @@ public: */ void GenFootprintsReport( wxCommandEvent& event ); + /** + * Create and IPC2581 output file + */ + void GenIPC2581File( wxCommandEvent& event ); + /** * Create an ASCII footprint report file giving some infos on footprints and board outlines. * diff --git a/pcbnew/pcb_painter.cpp b/pcbnew/pcb_painter.cpp index 4c15a52067..de74506e73 100644 --- a/pcbnew/pcb_painter.cpp +++ b/pcbnew/pcb_painter.cpp @@ -1932,9 +1932,6 @@ void PCB_PAINTER::draw( const PCB_SHAPE* aShape, int aLayer ) } break; - - case SHAPE_T::LAST: - break; } } else diff --git a/pcbnew/pcbnew_settings.cpp b/pcbnew/pcbnew_settings.cpp index c99f15742a..05dffc0fcd 100644 --- a/pcbnew/pcbnew_settings.cpp +++ b/pcbnew/pcbnew_settings.cpp @@ -332,6 +332,18 @@ PCBNEW_SETTINGS::PCBNEW_SETTINGS() m_params.emplace_back( new PARAM<int>( "gen_drill.zeros_format", &m_GenDrill.zeros_format, 0, 0, 3 ) ); + m_params.emplace_back( new PARAM<int>( "export_2581.units", + &m_Export2581.units, 0 ) ); + + m_params.emplace_back( new PARAM<int>( "export_2581.precision", + &m_Export2581.precision, 3 ) ); + + m_params.emplace_back( new PARAM<int>( "export_2581.version", + &m_Export2581.version, 1 ) ); + + m_params.emplace_back( new PARAM<bool>( "export_2581.compress", + &m_Export2581.compress, false ) ); + m_params.emplace_back( new PARAM<bool>( "export_idf.auto_adjust", &m_ExportIdf.auto_adjust, false ) ); diff --git a/pcbnew/pcbnew_settings.h b/pcbnew/pcbnew_settings.h index 3ae86134c2..3d34f65ea0 100644 --- a/pcbnew/pcbnew_settings.h +++ b/pcbnew/pcbnew_settings.h @@ -188,6 +188,14 @@ public: bool overwrite_file; }; + struct DIALOG_EXPORT_2581 + { + int precision; + int units; + int version; + bool compress; + }; + struct DIALOG_EXPORT_SVG { bool black_and_white; @@ -369,6 +377,8 @@ public: DIALOG_EXPORT_STEP m_ExportStep; + DIALOG_EXPORT_2581 m_Export2581; + DIALOG_EXPORT_SVG m_ExportSvg; DIALOG_EXPORT_VRML m_ExportVrml; diff --git a/pcbnew/plugin.cpp b/pcbnew/plugin.cpp index 1bdd4734ed..ff258c074a 100644 --- a/pcbnew/plugin.cpp +++ b/pcbnew/plugin.cpp @@ -155,7 +155,8 @@ std::vector<FOOTPRINT*> PLUGIN::GetImportedCachedLibraryFootprints() } -void PLUGIN::SaveBoard( const wxString& aFileName, BOARD* aBoard, const STRING_UTF8_MAP* aProperties ) +void PLUGIN::SaveBoard( const wxString& aFileName, BOARD* aBoard, + const STRING_UTF8_MAP* aProperties, PROGRESS_REPORTER* aProgressReporter ) { // not pure virtual so that plugins only have to implement subset of the PLUGIN interface. NOT_IMPLEMENTED( __FUNCTION__ ); diff --git a/pcbnew/plugins/ipc2581/CMakeLists.txt b/pcbnew/plugins/ipc2581/CMakeLists.txt new file mode 100644 index 0000000000..45f8f33876 --- /dev/null +++ b/pcbnew/plugins/ipc2581/CMakeLists.txt @@ -0,0 +1,13 @@ + +# Sources for the pcbnew PLUGIN called IPC2581_PLUGIN + +include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ) + + +set( IPC2581_SRCS + ipc2581_plugin.cpp + ) + +add_library( ipc2581 STATIC ${IPC2581_SRCS} ) + +target_link_libraries( ipc2581 pcbcommon ) diff --git a/pcbnew/plugins/ipc2581/ipc2581_plugin.cpp b/pcbnew/plugins/ipc2581/ipc2581_plugin.cpp new file mode 100644 index 0000000000..a0b8a44dca --- /dev/null +++ b/pcbnew/plugins/ipc2581/ipc2581_plugin.cpp @@ -0,0 +1,2824 @@ +/** +* This program source code file is part of KiCad, a free EDA CAD application. +* +* Copyright (C) 2023 KiCad Developers, see AUTHORS.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 3 of the License, or (at your +* option) any later version. +* +* This program is distributed in the hope that it will be useful, but +* WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* General Public License for more details. +* +* You should have received a copy of the GNU General Public License along +* with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include "ipc2581_plugin.h" + +#include <base_units.h> +#include <board.h> +#include <board_design_settings.h> +#include <board_stackup_manager/stackup_predefined_prms.h> +#include <build_version.h> +#include <callback_gal.h> +#include <connectivity/connectivity_data.h> +#include <connectivity/connectivity_algo.h> +#include <convert_basic_shapes_to_polygon.h> +#include <font/font.h> +#include <footprint.h> +#include <hash_eda.h> +#include <pad.h> +#include <pcb_dimension.h> +#include <pcb_shape.h> +#include <pcb_text.h> +#include <pcb_textbox.h> +#include <pcb_track.h> +#include <pcbnew_settings.h> +#include <pgm_base.h> +#include <progress_reporter.h> +#include <settings/settings_manager.h> +#include <string_utf8_map.h> +#include <wx_fstream_progress.h> + +#include <geometry/shape_circle.h> +#include <geometry/shape_line_chain.h> +#include <geometry/shape_poly_set.h> +#include <geometry/shape_segment.h> + +#include <wx/log.h> +#include <wx/numformatter.h> +#include <wx/mstream.h> +#include <wx/xml/xml.h> + +IPC2581_PLUGIN::~IPC2581_PLUGIN() +{ + clearLoadedFootprints(); +} + + +void IPC2581_PLUGIN::clearLoadedFootprints() +{ + for( FOOTPRINT* fp : m_loaded_footprints ) + { + delete fp; + } + + m_loaded_footprints.clear(); +} + + +const wxString IPC2581_PLUGIN::PluginName() const +{ + return wxT( "IPC-2581" ); +} + + +std::vector<FOOTPRINT*> IPC2581_PLUGIN::GetImportedCachedLibraryFootprints() +{ + std::vector<FOOTPRINT*> retval; + + for( FOOTPRINT* fp : m_loaded_footprints ) + { + retval.push_back( static_cast<FOOTPRINT*>( fp->Clone() ) ); + } + + return retval; +} + + +void IPC2581_PLUGIN::insertNode( wxXmlNode* aParent, wxXmlNode* aNode ) +{ + // insertNode places the node at the start of the list of children + + if( aParent->GetChildren() ) + aNode->SetNext( aParent->GetChildren() ); + else + aNode->SetNext( nullptr ); + + aParent->SetChildren( aNode ); + aNode->SetParent( aParent ); +} + + +void IPC2581_PLUGIN::insertNodeAfter( wxXmlNode* aPrev, wxXmlNode* aNode ) +{ + // insertNode places the node directly after aPrev + + aNode->SetNext( aPrev->GetNext() ); + aPrev->SetNext( aNode ); + aNode->SetParent( aPrev->GetParent() ); +} + + +wxXmlNode* IPC2581_PLUGIN::insertNode( wxXmlNode* aParent, const wxString& aName ) +{ + // Opening tag, closing tag, brackets and the closing slash + m_total_bytes += 2 * aName.size() + 5; + wxXmlNode* node = new wxXmlNode( wxXML_ELEMENT_NODE, aName ); + insertNode( aParent, node ); + return node; +} + + +wxXmlNode* IPC2581_PLUGIN::appendNode( wxXmlNode* aParent, const wxString& aName ) +{ + // AddChild iterates through the entire list of children, so we want to avoid + // that if possible. When we share a parent and our next sibling is null, + // then we are the last child and can just append to the end of the list. + + static wxXmlNode* lastNode = nullptr; + wxXmlNode* node = new wxXmlNode( wxXML_ELEMENT_NODE, aName ); + + if( lastNode && lastNode->GetParent() == aParent && lastNode->GetNext() == nullptr ) + { + node->SetParent( aParent ); + lastNode->SetNext( node ); + } + else + { + aParent->AddChild( node ); + } + + lastNode = node; + + // Opening tag, closing tag, brackets and the closing slash + m_total_bytes += 2 * aName.size() + 5; + + return node; +} + + +wxString IPC2581_PLUGIN::genString( const wxString& aStr, const char* aPrefix ) +{ + wxString str; + + if( m_version == 'C' ) + { + str = aStr; + str.Replace( wxT( ":" ), wxT( "_" ) ); + + if( aPrefix ) + str.Prepend( wxString( aPrefix ) + wxT( ":" ) ); + else + str.Prepend( wxT( "KI:" ) ); + } + else + { + for( wxString::const_iterator iter = aStr.begin(); iter != aStr.end(); ++iter ) + { + if( !m_acceptable_chars.count( *iter ) ) + str.Append( '_' ); + else + str.Append( *iter ); + } + } + + return str; +} + + +wxString IPC2581_PLUGIN::floatVal( double aVal ) +{ + wxString str = wxString::FromCDouble( aVal, m_sigfig ); + + // Remove all but the last trailing zeros from str + while( str.EndsWith( wxT( "00" ) ) ) + str.RemoveLast(); + + return str; +} + + +void IPC2581_PLUGIN::addXY( wxXmlNode* aNode, const VECTOR2I& aVec, const char* aXName, + const char* aYName ) +{ + if( aXName ) + addAttribute( aNode, aXName, floatVal( m_scale * aVec.x ) ); + else + addAttribute( aNode, "x", floatVal( m_scale * aVec.x ) ); + + if( aYName ) + addAttribute( aNode, aYName, floatVal( -m_scale * aVec.y ) ); + else + addAttribute( aNode, "y", floatVal( -m_scale * aVec.y ) ); +} + + +void IPC2581_PLUGIN::addAttribute( wxXmlNode* aNode, const wxString& aName, const wxString& aValue ) +{ + m_total_bytes += aName.size() + aValue.size() + 4; + aNode->AddAttribute( aName, aValue ); +} + + +wxXmlNode* IPC2581_PLUGIN::generateXmlHeader() +{ + + wxXmlNode* xmlHeaderNode = new wxXmlNode(wxXML_ELEMENT_NODE, "IPC-2581"); + addAttribute( xmlHeaderNode, "revision", m_version); + addAttribute( xmlHeaderNode, "xmlns", "http://webstds.ipc.org/2581"); + addAttribute( xmlHeaderNode, "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"); + addAttribute( xmlHeaderNode, "xmlns:xsd", "http://www.w3.org/2001/XMLSchema"); + + if( m_version == 'B' ) + addAttribute( xmlHeaderNode, "xsi:schemaLocation", "http://webstds.ipc.org/2581 http://webstds.ipc.org/2581/IPC-2581B1.xsd"); + else + addAttribute( xmlHeaderNode, "xsi:schemaLocation", "http://webstds.ipc.org/2581 http://webstds.ipc.org/2581/IPC-2581C.xsd"); + + m_xml_doc->SetRoot(xmlHeaderNode); + + return xmlHeaderNode; +} + +wxXmlNode* IPC2581_PLUGIN::generateContentSection() +{ + if( m_progress_reporter ) + m_progress_reporter->AdvancePhase( _( "Generating content section" ) ); + + wxXmlNode* contentNode = appendNode( m_xml_root, "Content" ); + addAttribute( contentNode, "roleRef", "Owner" ); + + wxXmlNode* node = appendNode( contentNode, "FunctionMode" ); + addAttribute( node, "mode", "ASSEMBLY" ); + + // This element is deprecated in revision 'C' and later + if( m_version == 'B' ) + addAttribute( node, "level", "3" ); + + node = appendNode( contentNode, "StepRef" ); + wxFileName fn( m_board->GetFileName() ); + addAttribute( node, "name", genString( fn.GetName(), "BOARD" ) ); + + wxXmlNode* color_node = generateContentStackup( contentNode ); + + if( m_version == 'C' ) + { + contentNode->AddChild( color_node ); + m_line_node = appendNode( contentNode, "DictionaryLineDesc" ); + addAttribute( m_line_node, "units", m_units_str ); + + wxXmlNode* fillNode = appendNode( contentNode, "DictionaryFillDesc" ); + addAttribute( fillNode, "units", m_units_str ); + + m_shape_std_node = appendNode( contentNode, "DictionaryStandard" ); + addAttribute( m_shape_std_node, "units", m_units_str ); + + m_shape_user_node = appendNode( contentNode, "DictionaryUser" ); + addAttribute( m_shape_user_node, "units", m_units_str ); + } + else + { + m_shape_std_node = appendNode( contentNode, "DictionaryStandard" ); + addAttribute( m_shape_std_node, "units", m_units_str ); + + m_shape_user_node = appendNode( contentNode, "DictionaryUser" ); + addAttribute( m_shape_user_node, "units", m_units_str ); + + m_line_node = appendNode( contentNode, "DictionaryLineDesc" ); + addAttribute( m_line_node, "units", m_units_str ); + + contentNode->AddChild( color_node ); + } + + return contentNode; +} + + +void IPC2581_PLUGIN::addLocationNode( wxXmlNode* aNode, double aX, double aY ) +{ + wxXmlNode* location_node = appendNode( aNode, "Location" ); + addXY( location_node, VECTOR2I( aX, aY ) ); +} + +void IPC2581_PLUGIN::addLocationNode( wxXmlNode* aNode, const PAD& aPad, bool aRelative ) +{ + VECTOR2D pos{}; + + if( aRelative ) + pos = aPad.GetFPRelativePosition(); + else + pos = aPad.GetPosition(); + + addLocationNode( aNode, pos.x, pos.y ); +} + + +void IPC2581_PLUGIN::addLocationNode( wxXmlNode* aNode, const PCB_SHAPE& aShape ) +{ + VECTOR2D pos{}; + + switch( aShape.GetShape() ) + { + // Rectangles in KiCad are mapped by their corner while IPC2581 uses the center + case SHAPE_T::RECTANGLE: + pos = aShape.GetPosition() + + VECTOR2I( aShape.GetRectangleWidth() / 2.0, aShape.GetRectangleHeight() / 2.0 ); + break; + // Both KiCad and IPC2581 use the center of the circle + case SHAPE_T::CIRCLE: + pos = aShape.GetPosition(); + break; + + // KiCad uses the exact points on the board, so we want the reference location to be 0,0 + case SHAPE_T::POLY: + case SHAPE_T::BEZIER: + case SHAPE_T::SEGMENT: + case SHAPE_T::ARC: + pos = VECTOR2D( 0, 0 ); + break; + } + + addLocationNode( aNode, pos.x, pos.y ); +} + + +size_t IPC2581_PLUGIN::lineHash( int aWidth, LINE_STYLE aDashType ) +{ + size_t hash = hash_val( aWidth ); + hash_combine( hash, aDashType ); + + return hash; +} + +size_t IPC2581_PLUGIN::shapeHash( const PCB_SHAPE& aShape ) +{ + return hash_fp_item( &aShape, HASH_POS | REL_COORD ); +} + + +wxXmlNode* IPC2581_PLUGIN::generateContentStackup( wxXmlNode* aContentNode ) +{ + + BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings(); + BOARD_STACKUP& stackup = bds.GetStackupDescriptor(); + stackup.SynchronizeWithBoard( &bds ); + + wxXmlNode* color_node = new wxXmlNode( wxXML_ELEMENT_NODE, "DictionaryColor" ); + + for( BOARD_STACKUP_ITEM* item: stackup.GetList() ) + { + wxString layer_name = item->GetLayerName(); + int sub_layer_count = 1; + + if( layer_name.empty() ) + layer_name = m_board->GetLayerName( item->GetBrdLayerId() ); + + layer_name = genString( layer_name, "LAYER" ); + + if( item->GetType() == BS_ITEM_TYPE_DIELECTRIC ) + { + layer_name = genString( + wxString::Format( "DIELECTRIC_%d", item->GetDielectricLayerId() ), "LAYER" ); + sub_layer_count = item->GetSublayersCount(); + } + else + { + m_layer_name_map.emplace( item->GetBrdLayerId(), layer_name ); + } + + for( int sub_idx = 0; sub_idx < sub_layer_count; sub_idx++ ) + { + wxString sub_layer_name = layer_name; + + if( sub_idx > 0 ) + sub_layer_name += wxString::Format( "_%d", sub_idx ); + + wxXmlNode* node = appendNode( aContentNode, "LayerRef" ); + addAttribute( node, "name", sub_layer_name ); + + if( !IsPrmSpecified( item->GetColor( sub_idx ) ) ) + continue; + + wxXmlNode* entry_color = appendNode( color_node, "EntryColor" ); + addAttribute( entry_color, "id", genString( sub_layer_name, "COLOR" ) ); + wxXmlNode* color = appendNode( entry_color, "Color" ); + + wxString colorName = item->GetColor( sub_idx ); + + if( colorName.StartsWith( wxT( "#" ) ) ) // This is a user defined color, + // not in standard color list. + { + COLOR4D layer_color( colorName ); + addAttribute( color, "r", wxString::Format( "%d", KiROUND( layer_color.r * 255 ) ) ); + addAttribute( color, "g", wxString::Format( "%d", KiROUND( layer_color.g * 255 ) ) ); + addAttribute( color, "b", wxString::Format( "%d", KiROUND( layer_color.b * 255 ) ) ); + } + else + { + for( const FAB_LAYER_COLOR& fab_color : GetStandardColors( item->GetType() ) ) + { + if( fab_color.GetName() == colorName ) + { + addAttribute( color, "r", wxString::Format( "%d", KiROUND( fab_color.GetColor( item->GetType() ).r * 255 ) ) ); + addAttribute( color, "g", wxString::Format( "%d", KiROUND( fab_color.GetColor( item->GetType() ).g * 255 ) ) ); + addAttribute( color, "b", wxString::Format( "%d", KiROUND( fab_color.GetColor( item->GetType() ).b * 255 ) ) ); + break; + } + } + } + } + } + + return color_node; +} + + +void IPC2581_PLUGIN::addFillDesc( wxXmlNode* aNode, FILL_T aFill, bool aForce ) +{ + if( aFill == FILL_T::FILLED_SHAPE ) + { + // By default, we do not fill shapes because FILL is the default value for most. + // But for some outlines, we may need to force a fill. + if( aForce ) + { + wxXmlNode* fillDesc_node = appendNode( aNode, "FillDesc" ); + addAttribute( fillDesc_node, "fillProperty", "FILL" ); + } + } + else + { + wxXmlNode* fillDesc_node = appendNode( aNode, "FillDesc" ); + addAttribute( fillDesc_node, "fillProperty", "HOLLOW" ); + } +} + + +void IPC2581_PLUGIN::addLineDesc( wxXmlNode* aNode, int aWidth, LINE_STYLE aDashType, bool aForce ) +{ + wxCHECK_RET( aNode, "aNode is null" ); + + if( aWidth == 0 ) + return; + + wxXmlNode* entry_node = nullptr; + + if( !aForce ) + { + size_t hash = lineHash( aWidth, aDashType ); + wxString name = wxString::Format( "LINE_%zu", m_line_dict.size() + 1 ); + auto[ iter, inserted ] = m_line_dict.emplace( hash, name ); + + // Either add a new entry or reference an existing one + wxXmlNode* lineDesc_node = appendNode( aNode, "LineDescRef" ); + addAttribute( lineDesc_node, "id", iter->second ); + + if( !inserted ) + return; + + entry_node = appendNode( m_line_node, "EntryLineDesc" ); + addAttribute( entry_node, "id", name ); + } + else + { + // Force the LineDesc to be added directly to the parent node + entry_node = aNode; + } + + wxXmlNode* line_node = appendNode( entry_node, "LineDesc" ); + addAttribute( line_node, "lineWidth", floatVal( m_scale * aWidth ) ); + addAttribute( line_node, "lineEnd", "ROUND" ); + + switch( aDashType ) + { + case LINE_STYLE::DOT: + addAttribute( line_node, "lineProperty", "DOTTED" ); + break; + case LINE_STYLE::DASH: + addAttribute( line_node, "lineProperty", "DASHED" ); + break; + case LINE_STYLE::DASHDOT: + addAttribute( line_node, "lineProperty", "CENTER" ); + break; + case LINE_STYLE::DASHDOTDOT: + addAttribute( line_node, "lineProperty", "PHANTOM" ); + break; + default: + break; + } +} + + +void IPC2581_PLUGIN::addText( wxXmlNode* aContentNode, EDA_TEXT* aText, const KIFONT::METRICS& aFontMetrics ) +{ + KIGFX::GAL_DISPLAY_OPTIONS empty_opts; + KIFONT::FONT* font = aText->GetFont(); + TEXT_ATTRIBUTES attrs = aText->GetAttributes(); + + attrs.m_StrokeWidth = aText->GetEffectiveTextPenWidth(); + attrs.m_Angle = aText->GetDrawRotation(); + attrs.m_Multiline = false; + + wxXmlNode* text_node = appendNode( aContentNode, "UserSpecial" ); + + if( !font ) + font = KIFONT::FONT::GetFont(); + + std::list<VECTOR2I> pts; + + auto push_pts = [&]() + { + if( pts.size() < 2 ) + return; + + wxXmlNode* line_node = nullptr; + + // Polylines are only allowed for more than 3 points (in version B). + // Otherwise, we have to use a line + if( pts.size() < 3 ) + { + line_node = appendNode( text_node, "Line" ); + addXY( line_node, pts.front(), "startX", "startY" ); + addXY( line_node, pts.back(), "endX", "endY" ); + } + else + { + line_node = appendNode( text_node, "Polyline" ); + wxXmlNode* point_node = appendNode( line_node, "PolyBegin" ); + addXY( point_node, pts.front() ); + + auto iter = pts.begin(); + + for( ++iter; iter != pts.end(); ++iter ) + { + wxXmlNode* point_node = appendNode( line_node, "PolyStepSegment" ); + addXY( point_node, *iter ); + } + + } + addLineDesc( line_node, attrs.m_StrokeWidth, LINE_STYLE::SOLID ); + pts.clear(); + }; + + CALLBACK_GAL callback_gal( empty_opts, + // Stroke callback + [&]( const VECTOR2I& aPt1, const VECTOR2I& aPt2 ) + { + if( !pts.empty() ) + { + if( aPt1 == pts.back() ) + pts.push_back( aPt2 ); + else if( aPt2 == pts.front() ) + pts.push_front( aPt1 ); + else if( aPt1 == pts.front() ) + pts.push_front( aPt2 ); + else if( aPt2 == pts.back() ) + pts.push_back( aPt1 ); + else + { + push_pts(); + pts.push_back( aPt1 ); + pts.push_back( aPt2 ); + } + } + else + { + pts.push_back( aPt1 ); + pts.push_back( aPt2 ); + } + }, + // Polygon callback + [&]( const SHAPE_LINE_CHAIN& aPoly ) + { + if( aPoly.PointCount() < 3 ) + return; + + wxXmlNode* outline_node = appendNode( text_node, "Outline" ); + wxXmlNode* poly_node = appendNode( outline_node, "Polygon" ); + + const std::vector<VECTOR2I>& pts = aPoly.CPoints(); + wxXmlNode* point_node = appendNode( poly_node, "PolyBegin" ); + addXY( point_node, pts.front() ); + + for( size_t ii = 1; ii < pts.size(); ++ii ) + { + wxXmlNode* point_node = + appendNode( poly_node, "PolyStepSegment" ); + addXY( point_node, pts[ii] ); + } + + point_node = appendNode( poly_node, "PolyStepSegment" ); + addXY( point_node, pts.front() ); + } ); + + //TODO: handle knockout text and multiline + + font->Draw( &callback_gal, aText->GetShownText( true ), aText->GetTextPos(), attrs, aFontMetrics ); + + if( !pts.empty() ) + push_pts(); + + if( text_node->GetChildren() == nullptr ) + { + aContentNode->RemoveChild( text_node ); + delete text_node; + } +} + + +void IPC2581_PLUGIN::addShape( wxXmlNode* aContentNode, const PAD& aPad, PCB_LAYER_ID aLayer ) +{ + size_t hash = hash_fp_item( &aPad, 0 ); + auto iter = m_std_shape_dict.find( hash ); + + if( iter != m_std_shape_dict.end() ) + { + wxXmlNode* shape_node = appendNode( aContentNode, "StandardPrimitiveRef" ); + addAttribute( shape_node, "id", iter->second ); + return; + } + + int maxError = m_board->GetDesignSettings().m_MaxError; + wxString name; + VECTOR2I expansion{ 0, 0 }; + + if( LSET( 2, F_Mask, B_Mask ).Contains( aLayer ) ) + expansion.x = expansion.y = 2 * aPad.GetSolderMaskExpansion(); + + if( LSET( 2, F_Paste, B_Paste ).Contains( aLayer ) ) + expansion = 2 * aPad.GetSolderPasteMargin(); + + switch( aPad.GetShape() ) + { + case PAD_SHAPE::CIRCLE: + { + name = wxString::Format( "CIRCLE_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + wxXmlNode* circle_node = appendNode( entry_node, "Circle" ); + circle_node->AddAttribute( + "diameter", + floatVal( m_scale * ( expansion.x + aPad.GetSizeX() ) ) ); + break; + } + + case PAD_SHAPE::RECTANGLE: + { + name = wxString::Format( "RECT_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + wxXmlNode* rect_node = appendNode( entry_node, "RectCenter" ); + VECTOR2D pad_size = aPad.GetSize() + expansion; + addAttribute( rect_node, "width", floatVal( m_scale * std::abs( pad_size.x ) ) ); + addAttribute( rect_node, "height", floatVal( m_scale * std::abs( pad_size.y ) ) ); + + break; + + } + case PAD_SHAPE::OVAL: + { + name = wxString::Format( "OVAL_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + wxXmlNode* oval_node = appendNode( entry_node, "Oval" ); + VECTOR2D pad_size = aPad.GetSize() + expansion; + addAttribute( oval_node, "width", floatVal( m_scale * pad_size.x ) ); + addAttribute( oval_node, "height", floatVal( m_scale * pad_size.y ) ); + + break; + } + + case PAD_SHAPE::ROUNDRECT: + { + name = wxString::Format( "ROUNDRECT_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + wxXmlNode* roundrect_node = appendNode( entry_node, "RectRound" ); + VECTOR2D pad_size = aPad.GetSize() + expansion; + addAttribute( roundrect_node, "width", floatVal( m_scale * pad_size.x ) ); + addAttribute( roundrect_node, "height", floatVal( m_scale * pad_size.y ) ); + roundrect_node->AddAttribute( "radius", + floatVal( m_scale * aPad.GetRoundRectCornerRadius() ) ); + addAttribute( roundrect_node, "upperRight", "true" ); + addAttribute( roundrect_node, "upperLeft", "true" ); + addAttribute( roundrect_node, "lowerRight", "true" ); + addAttribute( roundrect_node, "lowerLeft", "true" ); + + break; + } + + case PAD_SHAPE::CHAMFERED_RECT: + { + name = wxString::Format( "RECTCHAMFERED_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + wxXmlNode* chamfered_node = appendNode( entry_node, "RectCham" ); + VECTOR2D pad_size = aPad.GetSize() + expansion; + addAttribute( chamfered_node, "width", floatVal( m_scale * pad_size.x ) ); + addAttribute( chamfered_node, "height", floatVal( m_scale * pad_size.y ) ); + + int shorterSide = std::min( pad_size.x, pad_size.y ); + int chamfer = std::max( 0, KiROUND( aPad.GetChamferRectRatio() * shorterSide ) ); + + addAttribute( chamfered_node, "chamfer", floatVal( m_scale * chamfer ) ); + + int positions = aPad.GetChamferPositions(); + + if( positions & RECT_CHAMFER_TOP_LEFT ) + addAttribute( chamfered_node, "upperLeft", "true" ); + if( positions & RECT_CHAMFER_TOP_RIGHT ) + addAttribute( chamfered_node, "upperRight", "true" ); + if( positions & RECT_CHAMFER_BOTTOM_LEFT ) + addAttribute( chamfered_node, "lowerLeft", "true" ); + if( positions & RECT_CHAMFER_BOTTOM_RIGHT ) + addAttribute( chamfered_node, "lowerRight", "true" ); + + break; + } + + case PAD_SHAPE::TRAPEZOID: + { + name = wxString::Format( "TRAPEZOID_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + VECTOR2I pad_size = aPad.GetSize(); + VECTOR2I trap_delta = aPad.GetDelta(); + SHAPE_POLY_SET outline; + outline.NewOutline(); + int dx = pad_size.x / 2; + int dy = pad_size.y / 2; + int ddx = trap_delta.x / 2; + int ddy = trap_delta.y / 2; + + outline.Append( -dx - ddy, dy + ddx ); + outline.Append( dx + ddy, dy - ddx ); + outline.Append( dx - ddy, -dy + ddx ); + outline.Append( -dx + ddy, -dy - ddx ); + + // Shape polygon can have holes so use InflateWithLinkedHoles(), not Inflate() + // which can create bad shapes if margin.x is < 0 + if( expansion.x ) + { + outline.InflateWithLinkedHoles( expansion.x, CORNER_STRATEGY::ROUND_ALL_CORNERS, + maxError, SHAPE_POLY_SET::PM_FAST ); + } + + addContourNode( entry_node, outline ); + + break; + } + case PAD_SHAPE::CUSTOM: + { + name = wxString::Format( "CUSTOM_%zu", m_std_shape_dict.size() + 1 ); + m_std_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_std_node, "EntryStandard" ); + addAttribute( entry_node, "id", name ); + + SHAPE_POLY_SET shape; + aPad.MergePrimitivesAsPolygon( &shape ); + + if( expansion != VECTOR2I( 0, 0 ) ) + { + shape.InflateWithLinkedHoles( std::max( expansion.x, expansion.y ), + CORNER_STRATEGY::ROUND_ALL_CORNERS, maxError, + SHAPE_POLY_SET::PM_FAST ); + } + + addContourNode( entry_node, shape ); + break; + } + default: + wxLogError( "Unknown pad type" ); + break; + } + + if( !name.empty() ) + { + m_std_shape_dict.emplace( hash, name ); + wxXmlNode* shape_node = appendNode( aContentNode, "StandardPrimitiveRef" ); + addAttribute( shape_node, "id", name ); + } +} + + +void IPC2581_PLUGIN::addShape( wxXmlNode* aContentNode, const PCB_SHAPE& aShape ) +{ + size_t hash = shapeHash( aShape ); + auto iter = m_user_shape_dict.find( hash ); + wxString name; + + if( iter != m_user_shape_dict.end() ) + { + wxXmlNode* shape_node = appendNode( aContentNode, "UserPrimitiveRef" ); + addAttribute( shape_node, "id", iter->second ); + return; + } + + switch( aShape.GetShape() ) + { + case SHAPE_T::CIRCLE: + { + name = wxString::Format( "CIRCLE_%zu", m_user_shape_dict.size() + 1 ); + m_user_shape_dict.emplace( hash, name ); + int diameter = aShape.GetRadius() * 2.0; + int width = aShape.GetStroke().GetWidth(); + LINE_STYLE dash = aShape.GetStroke().GetLineStyle(); + + + wxXmlNode* entry_node = appendNode( m_shape_user_node, "EntryUser" ); + addAttribute( entry_node, "id", name ); + wxXmlNode* special_node = appendNode( entry_node, "UserSpecial" ); + + wxXmlNode* circle_node = appendNode( special_node, "Circle" ); + + if( aShape.GetFillMode() == FILL_T::NO_FILL ) + { + addAttribute( circle_node, "diameter", floatVal( m_scale * diameter ) ); + addLineDesc( circle_node, width, dash, true ); + } + else + { + // IPC2581 does not allow strokes on filled elements + addAttribute( circle_node, "diameter", floatVal( m_scale * ( diameter + width ) ) ); + } + + addFillDesc( circle_node, aShape.GetFillMode() ); + + break; + } + + case SHAPE_T::RECTANGLE: + { + name = wxString::Format( "RECT_%zu", m_user_shape_dict.size() + 1 ); + m_user_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_user_node, "EntryUser" ); + addAttribute( entry_node, "id", name ); + wxXmlNode* special_node = appendNode( entry_node, "UserSpecial" ); + + int width = std::abs( aShape.GetRectangleWidth() ); + int height = std::abs( aShape.GetRectangleHeight() ); + int stroke_width = aShape.GetStroke().GetWidth(); + LINE_STYLE dash = aShape.GetStroke().GetLineStyle(); + + wxXmlNode* rect_node = appendNode( special_node, "RectRound" ); + addLineDesc( rect_node, aShape.GetStroke().GetWidth(), aShape.GetStroke().GetLineStyle(), true ); + + if( aShape.GetFillMode() == FILL_T::NO_FILL ) + { + addAttribute( rect_node, "upperRight", "false" ); + addAttribute( rect_node, "upperLeft", "false" ); + addAttribute( rect_node, "lowerRight", "false" ); + addAttribute( rect_node, "lowerLeft", "false" ); + } + else + { + addAttribute( rect_node, "upperRight", "true" ); + addAttribute( rect_node, "upperLeft", "true" ); + addAttribute( rect_node, "lowerRight", "true" ); + addAttribute( rect_node, "lowerLeft", "true" ); + width += stroke_width; + height += stroke_width; + } + + addFillDesc( rect_node, aShape.GetFillMode() ); + + addAttribute( rect_node, "width", floatVal( m_scale * width ) ); + addAttribute( rect_node, "height", floatVal( m_scale * height ) ); + addAttribute( rect_node, "radius", floatVal( m_scale * ( stroke_width / 2.0 ) ) ); + + break; + } + + case SHAPE_T::POLY: + { + name = wxString::Format( "POLY_%zu", m_user_shape_dict.size() + 1 ); + m_user_shape_dict.emplace( hash, name ); + + wxXmlNode* entry_node = appendNode( m_shape_user_node, "EntryUser" ); + addAttribute( entry_node, "id", name ); + + // If we are stroking a polygon, we need two contours. This is only allowed + // inside a "UserSpecial" shape + wxXmlNode* special_node = appendNode( entry_node, "UserSpecial" ); + + const SHAPE_POLY_SET& poly_set = aShape.GetPolyShape(); + + for( int ii = 0; ii < poly_set.OutlineCount(); ++ii ) + { + if( aShape.GetFillMode() != FILL_T::NO_FILL ) + { + // IPC2581 does not allow strokes on filled elements + addContourNode( special_node, poly_set, ii, FILL_T::FILLED_SHAPE, 0, + LINE_STYLE::SOLID ); + } + + addContourNode( special_node, poly_set, ii, FILL_T::NO_FILL, + aShape.GetStroke().GetWidth(), aShape.GetStroke().GetLineStyle() ); + } + + break; + } + + case SHAPE_T::ARC: + { + wxXmlNode* arc_node = appendNode( aContentNode, "Arc" ); + addXY( arc_node, aShape.GetStart(), "startX", "startY" ); + addXY( arc_node, aShape.GetEnd(), "endX", "endY" ); + addXY( arc_node, aShape.GetCenter(), "centerX", "centerY" ); + + //N.B. because our coordinate system is flipped, we need to flip the arc direction + addAttribute( arc_node, "clockwise", !aShape.IsClockwiseArc() ? "true" : "false" ); + + if( aShape.GetStroke().GetWidth() > 0 ) + { + addLineDesc( arc_node, aShape.GetStroke().GetWidth(), + aShape.GetStroke().GetLineStyle(), true ); + } + + break; + } + + case SHAPE_T::BEZIER: + { + wxXmlNode* polyline_node = appendNode( aContentNode, "Polyline" ); + const std::vector<VECTOR2I>& points = aShape.GetBezierPoints(); + wxXmlNode* point_node = appendNode( polyline_node, "PolyBegin" ); + addXY( point_node, points[0] ); + + for( size_t i = 1; i < points.size(); i++ ) + { + wxXmlNode* point_node = + appendNode( polyline_node, "PolyStepSegment" ); + addXY( point_node, points[i] ); + } + + if( aShape.GetStroke().GetWidth() > 0 ) + { + addLineDesc( polyline_node, aShape.GetStroke().GetWidth(), + aShape.GetStroke().GetLineStyle(), true ); + } + + break; + } + + case SHAPE_T::SEGMENT: + { + wxXmlNode* line_node = appendNode( aContentNode, "Line" ); + addXY( line_node, aShape.GetStart(), "startX", "startY" ); + addXY( line_node, aShape.GetEnd(), "endX", "endY" ); + + if( aShape.GetStroke().GetWidth() > 0 ) + { + addLineDesc( line_node, aShape.GetStroke().GetWidth(), + aShape.GetStroke().GetLineStyle(), true ); + } + + break; + } + } + + if( !name.empty() ) + { + wxXmlNode* shape_node = appendNode( aContentNode, "UserPrimitiveRef" ); + addAttribute( shape_node, "id", name ); + } + +} + + +wxXmlNode* IPC2581_PLUGIN::generateLogisticSection() +{ + wxXmlNode* logisticNode = appendNode( m_xml_root, "LogisticHeader" ); + + wxXmlNode* roleNode = appendNode( logisticNode, "Role" ); + addAttribute( roleNode, "id", "Owner" ); + addAttribute( roleNode, "roleFunction", "SENDER" ); + + m_enterpriseNode = appendNode( logisticNode, "Enterprise" ); + addAttribute( m_enterpriseNode, "id", "UNKNOWN" ); + addAttribute( m_enterpriseNode, "code", "NONE" ); + + wxXmlNode* personNode = appendNode( logisticNode, "Person" ); + addAttribute( personNode, "name", "UNKNOWN" ); + addAttribute( personNode, "enterpriseRef", "UNKNOWN" ); + addAttribute( personNode, "roleRef", "Owner" ); + + return logisticNode; +} + + +wxXmlNode* IPC2581_PLUGIN::generateHistorySection() +{ + if( m_progress_reporter ) + m_progress_reporter->AdvancePhase( _( "Generating history section" ) ); + + wxXmlNode* historyNode = appendNode( m_xml_root, "HistoryRecord" ); + addAttribute( historyNode, "number", "1" ); + addAttribute( historyNode, "origination", wxDateTime::Now().FormatISOCombined() ); + addAttribute( historyNode, "software", "KiCad EDA" ); + addAttribute( historyNode, "lastChange", wxDateTime::Now().FormatISOCombined() ); + + wxXmlNode* fileRevisionNode = appendNode( historyNode, "FileRevision" ); + addAttribute( fileRevisionNode, "fileRevisionId", "1" ); + addAttribute( fileRevisionNode, "comment", "NO COMMENT" ); + addAttribute( fileRevisionNode, "label", "NO LABEL" ); + + wxXmlNode* softwarePackageNode = appendNode( fileRevisionNode, "SoftwarePackage" ); + addAttribute( softwarePackageNode, "name", "KiCad" ); + addAttribute( softwarePackageNode, "revision", GetMajorMinorPatchVersion() ); + addAttribute( softwarePackageNode, "vendor", "KiCad EDA" ); + + wxXmlNode* certificationNode = appendNode( softwarePackageNode, "Certification" ); + addAttribute( certificationNode, "certificationStatus", "SELFTEST" ); + + return historyNode; +} + +wxXmlNode* IPC2581_PLUGIN::generateBOMSection( wxXmlNode* aEcadNode ) +{ + if( m_progress_reporter ) + m_progress_reporter->AdvancePhase( _( "Generating BOM section" ) ); + + struct REFDES + { + wxString m_name; + wxString m_pkg; + bool m_populate; + wxString m_layer; + }; + struct BOM_ENTRY + { + BOM_ENTRY() + { + m_refdes = new std::vector<REFDES>(); + m_props = new std::map<wxString, wxString>(); + } + + ~BOM_ENTRY() + { + delete m_refdes; + delete m_props; + } + + wxString m_OEMDesignRef; // String combining LIB+FP+VALUE + int m_count; + int m_pads; + wxString m_type; + std::vector<REFDES>* m_refdes; + std::map<wxString, wxString>* m_props; + }; + + std::set<std::unique_ptr<struct BOM_ENTRY>, std::function<bool( const std::unique_ptr<struct BOM_ENTRY>&, const std::unique_ptr<struct BOM_ENTRY>& )>> bom_entries( + []( const std::unique_ptr<struct BOM_ENTRY>& a, const std::unique_ptr<struct BOM_ENTRY>& b ) + { + return a->m_OEMDesignRef < b->m_OEMDesignRef; + } ); + + for( FOOTPRINT* fp_it : m_board->Footprints() ) + { + if( fp_it->GetAttributes() & FP_EXCLUDE_FROM_BOM ) + continue; + + std::unique_ptr<FOOTPRINT> fp( static_cast<FOOTPRINT*>( fp_it->Clone() ) ); + fp->SetParentGroup( nullptr ); + fp->SetPosition( {0, 0} ); + + if( fp->GetLayer() != F_Cu ) + fp->Flip( fp->GetPosition(), false ); + + fp->SetOrientation( EDA_ANGLE::m_Angle0 ); + + size_t hash = hash_fp_item( fp.get(), HASH_POS | REL_COORD ); + auto iter = m_footprint_dict.find( hash ); + + if( iter == m_footprint_dict.end() ) + { + wxLogError( "Footprint %s not found in dictionary", fp->GetFPID().GetLibItemName().wx_str() ); + continue; + } + + auto entry = std::make_unique<struct BOM_ENTRY>(); + + /// We assume that the m_OEMRef_dict is populated already by the generateComponents function + /// This will either place a unique string in the dictionary or field reference. + if( auto it = m_OEMRef_dict.find( fp_it ); it != m_OEMRef_dict.end() ) + { + entry->m_OEMDesignRef = it->second; + } + else + { + wxLogError( "Footprint %s not found in OEMRef dictionary", fp->GetFPID().GetLibItemName().wx_str() ); + } + + entry->m_OEMDesignRef = genString( entry->m_OEMDesignRef, "REF" ); + entry->m_count = 1; + entry->m_pads = fp->GetPadCount(); + + // TODO: The options are "ELECTRICAL", "MECHANICAL", "PROGRAMMABLE", "DOCUMENT", "MATERIAL" + // We need to figure out how to determine this. + if( entry->m_pads == 0 ) + entry->m_type = "DOCUMENT"; + else + entry->m_type = "ELECTRICAL"; + + auto[ bom_iter, inserted ] = bom_entries.insert( std::move( entry ) ); + + if( !inserted ) + ( *bom_iter )->m_count++; + + REFDES refdes; + refdes.m_name = fp->Reference().GetShownText( false ); + refdes.m_pkg = fp->GetFPID().GetLibItemName().wx_str(); + refdes.m_populate = !fp->IsDNP(); + refdes.m_layer = m_layer_name_map[fp_it->GetLayer()]; + + ( *bom_iter )->m_refdes->push_back( refdes ); + + // TODO: This amalgamates all the properties from all the footprints. We need to decide + // if we want to group footprints by their properties + for( PCB_FIELD* prop : fp->GetFields() ) + { + // We don't need ref, footprint or datasheet in the BOM characteristics. Just value + // and any additional fields the user has added. Ref and footprint are captured above. + if( prop->IsMandatoryField() && !prop->IsValue() ) + continue; + + ( *bom_iter )->m_props->emplace( prop->GetName(), prop->GetText() ); + } + } + + wxFileName fn( m_board->GetFileName() ); + + wxXmlNode* bomNode = new wxXmlNode( wxXML_ELEMENT_NODE, "Bom" ); + m_xml_root->InsertChild( bomNode, aEcadNode ); + addAttribute( bomNode, "name", genString( fn.GetName(), "BOM" ) ); + + wxXmlNode* bomHeaderNode = appendNode( bomNode, "BomHeader" ); + addAttribute( bomHeaderNode, "revision", "1.0" ); + addAttribute( bomHeaderNode, "assembly", wxString::Format( "%s", fn.GetName() ) ); + + wxXmlNode* stepRefNode = appendNode( bomHeaderNode, "StepRef" ); + addAttribute( stepRefNode, "name", genString( fn.GetName(), "BOARD" ) ); + + for( const auto& entry : bom_entries ) + { + wxXmlNode* bomEntryNode = appendNode( bomNode, "BomItem" ); + addAttribute( bomEntryNode, "OEMDesignNumberRef", entry->m_OEMDesignRef ); + addAttribute( bomEntryNode, "quantity", wxString::Format( "%d", entry->m_count ) ); + addAttribute( bomEntryNode, "pinCount", wxString::Format( "%d", entry->m_pads ) ); + addAttribute( bomEntryNode, "category", entry->m_type ); + + for( const REFDES& refdes : *( entry->m_refdes ) ) + { + wxXmlNode* refdesNode = appendNode( bomEntryNode, "RefDes" ); + addAttribute( refdesNode, "name", genString( refdes.m_name, "CMP" ) ); + addAttribute( refdesNode, "packageRef", genString( refdes.m_pkg, "PKG" ) ); + addAttribute( refdesNode, "populate", refdes.m_populate ? "true" : "false" ); + addAttribute( refdesNode, "layerRef", refdes.m_layer ); + } + + wxXmlNode* characteristicsNode = appendNode( bomEntryNode, "Characteristics" ); + addAttribute( characteristicsNode, "category", "ELECTRICAL" ); + + for( const auto& prop : *( entry->m_props ) ) + { + wxXmlNode* textualDefNode = appendNode( characteristicsNode, "Textual" ); + addAttribute( textualDefNode, "definitionSource", "KICAD" ); + addAttribute( textualDefNode, "textualCharacteristicName", prop.first ); + addAttribute( textualDefNode, "textualCharacteristicValue", prop.second ); + } + } + + return bomNode; +} + + +wxXmlNode* IPC2581_PLUGIN::generateEcadSection() +{ + if( m_progress_reporter ) + m_progress_reporter->AdvancePhase( _( "Generating CAD data" ) ); + + wxXmlNode* ecadNode = appendNode( m_xml_root, "Ecad" ); + addAttribute( ecadNode, "name", "Design" ); + + addCadHeader( ecadNode ); + + wxXmlNode* cadDataNode = appendNode( ecadNode, "CadData" ); + generateCadLayers( cadDataNode ); + generateDrillLayers( cadDataNode); + generateStepSection( cadDataNode ); + + return ecadNode; +} + + +void IPC2581_PLUGIN::addCadHeader( wxXmlNode* aEcadNode ) +{ + wxXmlNode* cadHeaderNode = appendNode( aEcadNode, "CadHeader" ); + addAttribute( cadHeaderNode, "units", m_units_str ); +} + + +void IPC2581_PLUGIN::addLayerAttributes( wxXmlNode* aNode, PCB_LAYER_ID aLayer ) +{ + switch( aLayer ) + { + case F_Cu ... B_Cu: + addAttribute( aNode, "layerFunction", "CONDUCTOR" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", + aLayer == F_Cu ? "TOP" + : aLayer == B_Cu ? "BOTTOM" + : "INTERNAL" ); + break; + case F_Adhes: + case B_Adhes: + addAttribute( aNode, "layerFunction", "GLUE" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_Adhes ? "TOP" : "BOTTOM" ); + break; + case F_Paste: + case B_Paste: + addAttribute( aNode, "layerFunction", "SOLDERPASTE" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_Paste ? "TOP" : "BOTTOM" ); + break; + case F_SilkS: + case B_SilkS: + addAttribute( aNode, "layerFunction", "SILKSCREEN" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_SilkS ? "TOP" : "BOTTOM" ); + break; + case F_Mask: + case B_Mask: + addAttribute( aNode, "layerFunction", "SOLDERMASK" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_Mask ? "TOP" : "BOTTOM" ); + break; + case Edge_Cuts: + addAttribute( aNode, "layerFunction", "BOARD_OUTLINE" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", "ALL" ); + break; + case B_CrtYd: + case F_CrtYd: + addAttribute( aNode, "layerFunction", "COURTYARD" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_CrtYd ? "TOP" : "BOTTOM" ); + break; + case B_Fab: + case F_Fab: + addAttribute( aNode, "layerFunction", "ASSEMBLY" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", aLayer == F_Fab ? "TOP" : "BOTTOM" ); + break; + case Dwgs_User: + case Cmts_User: + case Eco1_User: + case Eco2_User: + case Margin: + case User_1: + case User_2: + case User_3: + case User_4: + case User_5: + case User_6: + case User_7: + case User_8: + case User_9: + addAttribute( aNode, "layerFunction", "DOCUMENT" ); + addAttribute( aNode, "polarity", "POSITIVE" ); + addAttribute( aNode, "side", "NONE" ); + break; + + default: + break; // Do not handle other layers + } +} + + +void IPC2581_PLUGIN::generateCadLayers( wxXmlNode* aCadLayerNode ) +{ + + BOARD_DESIGN_SETTINGS& dsnSettings = m_board->GetDesignSettings(); + BOARD_STACKUP& stackup = dsnSettings.GetStackupDescriptor(); + stackup.SynchronizeWithBoard( &dsnSettings ); + + std::vector<BOARD_STACKUP_ITEM*> layers = stackup.GetList(); + std::set<PCB_LAYER_ID> added_layers; + + for( int i = 0; i < stackup.GetCount(); i++ ) + { + BOARD_STACKUP_ITEM* stackup_item = layers.at( i ); + + for( int sublayer_id = 0; sublayer_id < stackup_item->GetSublayersCount(); sublayer_id++ ) + { + wxXmlNode* cadLayerNode = appendNode( aCadLayerNode, "Layer" ); + wxString ly_name = stackup_item->GetLayerName(); + + if( ly_name.IsEmpty() ) + { + + if( IsValidLayer( stackup_item->GetBrdLayerId() ) ) + ly_name = m_board->GetLayerName( stackup_item->GetBrdLayerId() ); + + if( ly_name.IsEmpty() && stackup_item->GetType() == BS_ITEM_TYPE_DIELECTRIC ) + ly_name = wxString::Format( "DIELECTRIC_%d", stackup_item->GetDielectricLayerId() ); + } + + ly_name = genString( ly_name, "LAYER" ); + + addAttribute( cadLayerNode, "name", ly_name ); + + if( stackup_item->GetType() == BS_ITEM_TYPE_DIELECTRIC ) + { + if( stackup_item->GetTypeName() == KEY_CORE ) + addAttribute( cadLayerNode, "layerFunction", "DIELCORE" ); + else + addAttribute( cadLayerNode, "layerFunction", "DIELPREG" ); + + addAttribute( cadLayerNode, "polarity", "POSITIVE" ); + addAttribute( cadLayerNode, "side", "INTERNAL" ); + continue; + } + else + { + added_layers.insert( stackup_item->GetBrdLayerId() ); + addLayerAttributes( cadLayerNode, stackup_item->GetBrdLayerId() ); + m_layer_name_map.emplace( stackup_item->GetBrdLayerId(), ly_name ); + } + } + } + + LSEQ layer_seq = m_board->GetEnabledLayers().Seq(); + + for( PCB_LAYER_ID layer : layer_seq ) + { + if( added_layers.find( layer ) != added_layers.end() ) + continue; + + wxString ly_name = genString( m_board->GetLayerName( layer ), "LAYER" ); + m_layer_name_map.emplace( layer, ly_name ); + added_layers.insert( layer ); + wxXmlNode* cadLayerNode = appendNode( aCadLayerNode, "Layer" ); + addAttribute( cadLayerNode, "name", ly_name ); + + addLayerAttributes( cadLayerNode, layer ); + } +} + + +void IPC2581_PLUGIN::generateDrillLayers( wxXmlNode* aCadLayerNode ) +{ + for( BOARD_ITEM* item : m_board->Tracks() ) + { + if( item->Type() == PCB_VIA_T ) + { + PCB_VIA* via = static_cast<PCB_VIA*>( item ); + m_drill_layers[std::make_pair( via->TopLayer(), via->BottomLayer() )].push_back( via ); + } + } + + for( FOOTPRINT* fp : m_board->Footprints() ) + { + for( PAD* pad : fp->Pads() ) + { + if( pad->GetAttribute() == PAD_ATTRIB::PTH || pad->GetAttribute() == PAD_ATTRIB::NPTH ) + m_drill_layers[std::make_pair( F_Cu, B_Cu )].push_back( pad ); + } + } + + for( const auto& [layer_pair, vec] : m_drill_layers ) + { + wxXmlNode* drillNode = appendNode( aCadLayerNode, "Layer" ); + drillNode->AddAttribute( "name", genString( wxString::Format( "%s_%s", + m_board->GetLayerName( layer_pair.first ), + m_board->GetLayerName( layer_pair.second ) ), "DRILL" ) ); + addAttribute( drillNode, "layerFunction", "DRILL" ); + addAttribute( drillNode, "polarity", "POSITIVE" ); + addAttribute( drillNode, "side", "ALL" ); + + wxXmlNode* spanNode = appendNode( drillNode, "Span" ); + addAttribute( spanNode, "fromLayer", genString( m_board->GetLayerName( layer_pair.first ), "LAYER" ) ); + addAttribute( spanNode, "toLayer", genString( m_board->GetLayerName( layer_pair.second ), "LAYER" ) ); + } +} + + +void IPC2581_PLUGIN::generateStepSection( wxXmlNode* aCadNode ) +{ + wxXmlNode* stepNode = appendNode( aCadNode, "Step" ); + wxFileName fn( m_board->GetFileName() ); + addAttribute( stepNode, "name", genString( fn.GetName(), "BOARD" ) ); + + if( m_version > 'B' ) + addAttribute( stepNode, "type", "BOARD" ); + + wxXmlNode* datumNode = appendNode( stepNode, "Datum" ); + addAttribute( datumNode, "x", "0.0" ); + addAttribute( datumNode, "y", "0.0" ); + + generateProfile( stepNode ); + generateComponents( stepNode ); + + m_last_padstack = insertNode( stepNode, "NonstandardAttribute" ); + addAttribute( m_last_padstack, "name", "FOOTPRINT_COUNT" ); + addAttribute( m_last_padstack, "type", "INTEGER" ); + addAttribute( m_last_padstack, "value", wxString::Format( "%zu", m_board->Footprints().size() ) ); + + generateLayerFeatures( stepNode ); + generateLayerSetDrill( stepNode ); +} + + +void IPC2581_PLUGIN::addPad( wxXmlNode* aContentNode, const PAD* aPad, PCB_LAYER_ID aLayer ) +{ + wxXmlNode* padNode = appendNode( aContentNode, "Pad" ); + FOOTPRINT* fp = aPad->GetParentFootprint(); + + addPadStack( padNode, aPad ); + + if( aPad->GetOrientation() != EDA_ANGLE::m_Angle0 ) + { + wxXmlNode* xformNode = appendNode( padNode, "Xform" ); + xformNode->AddAttribute( "rotation", + floatVal( aPad->GetOrientation().Normalize().AsDegrees() ) ); + + if( fp && fp->IsFlipped() ) + addAttribute( xformNode, "mirror", "true" ); + } + + addLocationNode( padNode, *aPad, false ); + addShape( padNode, *aPad, aLayer ); + + if( fp ) + { + wxXmlNode* pinRefNode = appendNode( padNode, "PinRef" ); + wxString name = aPad->GetNumber(); + + if( aPad->GetAttribute() == PAD_ATTRIB::NPTH ) + name = wxString::Format( "NPTH_%d_%d", aPad->GetX(), aPad->GetY() ); + + addAttribute( pinRefNode, "pin", genString( name, "PIN" ) ); + addAttribute( pinRefNode, "componentRef", genString( fp->GetReferenceAsString(), "CMP" ) ); + } +} + +void IPC2581_PLUGIN::addVia( wxXmlNode* aContentNode, const PCB_VIA* aVia, PCB_LAYER_ID aLayer ) +{ + if( !aVia->FlashLayer( aLayer ) ) + return; + + wxXmlNode* padNode = appendNode( aContentNode, "Pad" ); + + addPadStack( padNode, aVia ); + addLocationNode( padNode, aVia->GetPosition().x, aVia->GetPosition().y ); + + PCB_SHAPE shape( nullptr, SHAPE_T::CIRCLE ); + + shape.SetEnd( { KiROUND( aVia->GetWidth() / 2.0 ), 0 } ); + addShape( padNode, shape ); + +} + +void IPC2581_PLUGIN::addPadStack( wxXmlNode* aPadNode, const PAD* aPad ) +{ + size_t hash = hash_fp_item( aPad, 0 ); + wxString name = wxString::Format( "PADSTACK_%zu", m_padstack_dict.size() + 1 ); + auto [ th_pair, success ] = m_padstack_dict.emplace( hash, name ); + + addAttribute( aPadNode, "padstackDefRef", th_pair->second ); + + // If we did not insert a new padstack, then we have already added it to the XML + // and we don't need to add it again. + if( !success ) + return; + + wxXmlNode* padStackDefNode = new wxXmlNode( wxXML_ELEMENT_NODE, "PadStackDef" ); + addAttribute( padStackDefNode, "name", name ); + m_padstacks.push_back( padStackDefNode ); + + // IPC2581 doesn't handle slotted holes natively, so we store them for later + if( aPad->HasHole() && aPad->GetDrillSizeX() != aPad->GetDrillSizeY() ) + { + std::shared_ptr<SHAPE_SEGMENT> hole = aPad->GetEffectiveHoleShape(); + const SHAPE_SEGMENT& hole_shape = *hole; + m_slot_holes.push_back( hole_shape ); + } + else if( aPad->HasHole() ) + { + wxXmlNode* padStackHoleNode = appendNode( padStackDefNode, "PadstackHoleDef" ); + padStackHoleNode->AddAttribute( "name", wxString::Format( "%s%d_%d", + aPad->GetAttribute() == PAD_ATTRIB::PTH ? "PTH" : "NPTH", + aPad->GetDrillSizeX(), aPad->GetDrillSizeY() ) ); + + addAttribute( padStackHoleNode, "diameter", floatVal( m_scale * aPad->GetDrillSizeX() ) ); + addAttribute( padStackHoleNode, "platingStatus", aPad->GetAttribute() == PAD_ATTRIB::PTH ? "PLATED" : "NONPLATED" ); + addAttribute( padStackHoleNode, "plusTol", "0.0" ); + addAttribute( padStackHoleNode, "minusTol", "0.0" ); + addXY( padStackHoleNode, aPad->GetOffset() ); + } + + LSEQ layer_seq = aPad->GetLayerSet().Seq(); + + for( PCB_LAYER_ID layer : layer_seq ) + { + FOOTPRINT* fp = aPad->GetParentFootprint(); + + if( !m_board->IsLayerEnabled( layer ) ) + continue; + + wxXmlNode* padStackPadDefNode = appendNode( padStackDefNode, "PadstackPadDef" ); + addAttribute( padStackPadDefNode, "layerRef", m_layer_name_map[layer] ); + addAttribute( padStackPadDefNode, "padUse", "REGULAR" ); + + addLocationNode( padStackPadDefNode, *aPad, true ); + + if( aPad->HasHole() || !aPad->FlashLayer( layer ) ) + { + PCB_SHAPE shape( nullptr, SHAPE_T::CIRCLE ); + shape.SetStart( aPad->GetOffset() ); + shape.SetEnd( shape.GetStart() + aPad->GetDrillSize() / 2 ); + addShape( padStackPadDefNode, shape ); + } + else + { + addShape( padStackPadDefNode, *aPad, layer ); + } + } +} + +void IPC2581_PLUGIN::addPadStack( wxXmlNode* aContentNode, const PCB_VIA* aVia ) +{ + size_t hash = hash_fp_item( aVia, 0 ); + wxString name = wxString::Format( "PADSTACK_%zu", m_padstack_dict.size() + 1 ); + auto [ via_pair, success ] = m_padstack_dict.emplace( hash, name ); + + addAttribute( aContentNode, "padstackDefRef", via_pair->second ); + + // If we did not insert a new padstack, then we have already added it to the XML + // and we don't need to add it again. + if( !success ) + return; + + wxXmlNode* padStackDefNode = new wxXmlNode( wxXML_ELEMENT_NODE, "PadStackDef" ); + insertNodeAfter( m_last_padstack, padStackDefNode ); + m_last_padstack = padStackDefNode; + addAttribute( padStackDefNode, "name", name ); + + wxXmlNode* padStackHoleNode = + appendNode( padStackDefNode, "PadstackHoleDef" ); + addAttribute( padStackHoleNode, "name", wxString::Format( "PH%d", aVia->GetDrillValue() ) ); + padStackHoleNode->AddAttribute( "diameter", + floatVal( m_scale * aVia->GetDrillValue() ) ); + addAttribute( padStackHoleNode, "platingStatus", "VIA" ); + addAttribute( padStackHoleNode, "plusTol", "0.0" ); + addAttribute( padStackHoleNode, "minusTol", "0.0" ); + addAttribute( padStackHoleNode, "x", "0.0" ); + addAttribute( padStackHoleNode, "y", "0.0" ); + + LSEQ layer_seq = aVia->GetLayerSet().Seq(); + + for( PCB_LAYER_ID layer : layer_seq ) + { + if( !aVia->FlashLayer( layer ) || !m_board->IsLayerEnabled( layer ) ) + continue; + + PCB_SHAPE shape( nullptr, SHAPE_T::CIRCLE ); + + shape.SetEnd( { KiROUND( aVia->GetWidth() / 2.0 ), 0 } ); + + wxXmlNode* padStackPadDefNode = + appendNode( padStackDefNode, "PadstackPadDef" ); + addAttribute( padStackPadDefNode, "layerRef", m_layer_name_map[layer] ); + addAttribute( padStackPadDefNode, "padUse", "REGULAR" ); + + addLocationNode( padStackPadDefNode, 0.0, 0.0 ); + addShape( padStackPadDefNode, shape ); + } +} + + +bool IPC2581_PLUGIN::addPolygonNode( wxXmlNode* aParentNode, + const SHAPE_POLY_SET::POLYGON& aPolygon, FILL_T aFillType, + int aWidth, LINE_STYLE aDashType ) +{ + wxXmlNode* polygonNode = nullptr; + + if( aPolygon.empty() || aPolygon[0].PointCount() < 3 ) + return false; + + auto make_node = + [&]() + { + polygonNode = appendNode( aParentNode, "Polygon" ); + wxXmlNode* polybeginNode = appendNode( polygonNode, "PolyBegin" ); + + const std::vector<VECTOR2I>& pts = aPolygon[0].CPoints(); + addXY( polybeginNode, pts[0] ); + + for( size_t ii = 1; ii < pts.size(); ++ii ) + { + wxXmlNode* polyNode = appendNode( polygonNode, "PolyStepSegment" ); + addXY( polyNode, pts[ii] ); + } + + wxXmlNode* polyendNode = appendNode( polygonNode, "PolyStepSegment" ); + addXY( polyendNode, pts[0] ); + }; + + // Allow the case where we don't want line/fill information in the polygon + if( aFillType == FILL_T::NO_FILL ) + { + make_node(); + // If we specify a line width, we need to add a LineDescRef node and + // since this is only valid for a non-filled polygon, we need to create + // the fillNode as well + if( aWidth > 0 ) + addLineDesc( polygonNode, aWidth, aDashType, true ); + } + else + { + wxCHECK( aWidth == 0, false ); + make_node(); + } + + addFillDesc( polygonNode, aFillType ); + + return true; +} + + +bool IPC2581_PLUGIN::addPolygonCutouts( wxXmlNode* aParentNode, const SHAPE_POLY_SET::POLYGON& aPolygon ) +{ + for( size_t ii = 1; ii < aPolygon.size(); ++ii ) + { + wxCHECK2( aPolygon[ii].PointCount() >= 3, continue ); + + wxXmlNode* cutoutNode = appendNode( aParentNode, "Cutout" ); + wxXmlNode* polybeginNode = appendNode( cutoutNode, "PolyBegin" ); + + const std::vector<VECTOR2I>& hole = aPolygon[ii].CPoints(); + addXY( polybeginNode, hole[0] ); + + for( size_t jj = 1; jj < hole.size(); ++jj ) + { + wxXmlNode* polyNode = appendNode( cutoutNode, "PolyStepSegment" ); + addXY( polyNode, hole[jj] ); + } + + wxXmlNode* polyendNode = appendNode( cutoutNode, "PolyStepSegment" ); + addXY( polyendNode, hole[0] ); + } + + return true; +} + + +bool IPC2581_PLUGIN::addOutlineNode( wxXmlNode* aParentNode, const SHAPE_POLY_SET& aPolySet, int aWidth, LINE_STYLE aDashType ) +{ + if( aPolySet.OutlineCount() == 0 ) + return false; + + wxXmlNode* outlineNode = appendNode( aParentNode, "Outline" ); + + for( int ii = 0; ii < aPolySet.OutlineCount(); ++ii ) + { + wxCHECK2( aPolySet.Outline( ii ).PointCount() >= 3, continue ); + + if( !addPolygonNode( outlineNode, aPolySet.Polygon( ii ) ) ) + wxLogDebug( "Failed to add polygon to outline" ); + } + + if( !outlineNode->GetChildren() ) + { + aParentNode->RemoveChild( outlineNode ); + delete outlineNode; + return false; + } + + if( aWidth > 0 ) + addLineDesc( outlineNode, aWidth, aDashType ); + + return true; +} + + +bool IPC2581_PLUGIN::addContourNode( wxXmlNode* aParentNode, const SHAPE_POLY_SET& aPolySet, + int aOutline, FILL_T aFillType, int aWidth, + LINE_STYLE aDashType ) +{ + if( aPolySet.OutlineCount() < ( aOutline + 1 ) ) + return false; + + wxXmlNode* contourNode = appendNode( aParentNode, "Contour" ); + + if( addPolygonNode( contourNode, aPolySet.Polygon( aOutline ), aFillType, aWidth, aDashType ) ) + { + // Do not attempt to add cutouts to shapes that are already hollow + if( aFillType != FILL_T::NO_FILL ) + addPolygonCutouts( contourNode, aPolySet.Polygon( aOutline ) ); + } + else + { + aParentNode->RemoveChild( contourNode ); + delete contourNode; + return false; + } + + return true; +} + + +void IPC2581_PLUGIN::generateProfile( wxXmlNode* aStepNode ) +{ + SHAPE_POLY_SET board_outline; + + if( ! m_board->GetBoardPolygonOutlines( board_outline ) ) + { + wxLogError( "Failed to get board outline" ); + return; + } + + wxXmlNode* profileNode = appendNode( aStepNode, "Profile" ); + if( !addPolygonNode( profileNode, board_outline.Polygon( 0 ) ) ) + { + wxLogDebug( "Failed to add polygon to profile" ); + aStepNode->RemoveChild( profileNode ); + delete profileNode; + } +} + + +wxXmlNode* IPC2581_PLUGIN::addPackage( wxXmlNode* aContentNode, FOOTPRINT* aFp ) +{ + std::unique_ptr<FOOTPRINT> fp( static_cast<FOOTPRINT*>( aFp->Clone() ) ); + fp->SetParentGroup( nullptr ); + fp->SetPosition( { 0, 0 } ); + + if( fp->GetLayer() != F_Cu ) + fp->Flip( fp->GetPosition(), false ); + + fp->SetOrientation( EDA_ANGLE::m_Angle0 ); + + + size_t hash = hash_fp_item( fp.get(), HASH_POS | REL_COORD ); + wxString name = genString( wxString::Format( "%s_%zu", fp->GetFPID().GetLibItemName().wx_str(), + m_footprint_dict.size() + 1 ) ); + + auto [ iter, success ] = m_footprint_dict.emplace( hash, name ); + addAttribute( aContentNode, "packageRef", iter->second ); + + if( !success) + return nullptr; + + // Package and Component nodes are at the same level, so we need to find the parent + // which should be the Step node + wxXmlNode* packageNode = new wxXmlNode( wxXML_ELEMENT_NODE, "Package" ); + wxXmlNode* otherSideViewNode = nullptr; // Only set this if we have elements on the back side + + addAttribute( packageNode, "name", name ); + addAttribute( packageNode, "type", "OTHER" ); // TODO: Replace with actual package type once we encode this + + // We don't specially identify pin 1 in our footprints, so we need to guess + if( fp->FindPadByNumber( "1" ) ) + addAttribute( packageNode, "pinOne", "1" ); + else if ( fp->FindPadByNumber( "A1" ) ) + addAttribute( packageNode, "pinOne", "A1" ); + else if ( fp->FindPadByNumber( "A" ) ) + addAttribute( packageNode, "pinOne", "A" ); + else if ( fp->FindPadByNumber( "a" ) ) + addAttribute( packageNode, "pinOne", "a" ); + else if ( fp->FindPadByNumber( "a1" ) ) + addAttribute( packageNode, "pinOne", "a1" ); + else if ( fp->FindPadByNumber( "Anode" ) ) + addAttribute( packageNode, "pinOne", "Anode" ); + else if ( fp->FindPadByNumber( "ANODE" ) ) + addAttribute( packageNode, "pinOne", "ANODE" ); + else + addAttribute( packageNode, "pinOne", "UNKNOWN" ); + + addAttribute( packageNode, "pinOneOrientation", "OTHER" ); + + const SHAPE_POLY_SET& courtyard = fp->GetCourtyard( F_CrtYd ); + const SHAPE_POLY_SET& courtyard_back = fp->GetCourtyard( B_CrtYd ); + + if( courtyard.OutlineCount() > 0 ) + addOutlineNode( packageNode, courtyard, courtyard.Outline( 0 ).Width(), LINE_STYLE::SOLID ); + + if( courtyard_back.OutlineCount() > 0 ) + { + otherSideViewNode = appendNode( packageNode, "OtherSideView" ); + addOutlineNode( otherSideViewNode, courtyard_back, courtyard_back.Outline( 0 ).Width(), LINE_STYLE::SOLID ); + } + + if( !courtyard.OutlineCount() && !courtyard_back.OutlineCount() ) + { + SHAPE_POLY_SET bbox = fp->GetBoundingHull(); + addOutlineNode( packageNode, bbox, 1, LINE_STYLE::SOLID ); + } + + wxXmlNode* pickupPointNode = appendNode( packageNode, "PickupPoint" ); + addAttribute( pickupPointNode, "x", "0.0" ); + addAttribute( pickupPointNode, "y", "0.0" ); + + std::map<PCB_LAYER_ID, std::map<bool, std::vector<BOARD_ITEM*>>> elements; + + for( BOARD_ITEM* item : fp->GraphicalItems() ) + { + PCB_LAYER_ID layer = item->GetLayer(); + + /// IPC2581 only supports the documentation layers for production and post-production + /// All other layers are ignored + /// TODO: Decide if we should place the other layers from footprints on the board + if( layer != F_SilkS && layer != B_SilkS && layer != F_Fab && layer != B_Fab ) + continue; + + bool is_abs = true; + + if( item->Type() == PCB_SHAPE_T ) + { + PCB_SHAPE* shape = static_cast<PCB_SHAPE*>( item ); + + // Circles and Rectanges only have size information so we need to place them in + // a separate node that has a location + if( shape->GetShape() == SHAPE_T::CIRCLE || shape->GetShape() == SHAPE_T::RECTANGLE ) + is_abs = false; + } + + elements[item->GetLayer()][is_abs].push_back( item ); + } + + auto add_base_node = [&]( PCB_LAYER_ID aLayer ) -> wxXmlNode* + { + wxXmlNode* parent = packageNode; + bool is_back = aLayer == B_SilkS || aLayer == B_Fab; + + if( is_back ) + { + if( !otherSideViewNode ) + otherSideViewNode = appendNode( packageNode, "OtherSideView" ); + + parent = otherSideViewNode; + } + + wxString name; + + if( aLayer == F_SilkS || aLayer == B_SilkS ) + name = "SilkScreen"; + else if( aLayer == F_Fab || aLayer == B_Fab ) + name = "AssemblyDrawing"; + else + wxASSERT( false ); + + wxXmlNode* new_node = appendNode( parent, name ); + return new_node; + }; + + auto add_marking_node = [&]( wxXmlNode* aNode ) -> wxXmlNode* + { + wxXmlNode* marking_node = appendNode( aNode, "Marking" ); + addAttribute( marking_node, "markingUsage", "NONE" ); + return marking_node; + }; + + std::map<PCB_LAYER_ID, wxXmlNode*> layer_nodes; + std::map<PCB_LAYER_ID, BOX2I> layer_bbox; + + for( auto layer : { F_Fab, B_Fab } ) + { + if( elements.find( layer ) != elements.end() ) + { + if( elements[layer][true].size() > 0 ) + layer_bbox[layer] = elements[layer][true][0]->GetBoundingBox(); + else if( elements[layer][false].size() > 0 ) + layer_bbox[layer] = elements[layer][false][0]->GetBoundingBox(); + } + } + + for( auto& [layer, map] : elements ) + { + wxXmlNode* layer_node = add_base_node( layer ); + wxXmlNode* marking_node = add_marking_node( layer_node ); + wxXmlNode* group_node = appendNode( marking_node, "UserSpecial" ); + bool update_bbox = false; + + if( layer == F_Fab || layer == B_Fab ) + { + layer_nodes[layer] = layer_node; + update_bbox = true; + } + + for( auto& [is_abs, vec] : map ) + { + for( BOARD_ITEM* item : vec ) + { + wxXmlNode* output_node = nullptr; + + if( update_bbox ) + layer_bbox[layer].Merge( item->GetBoundingBox() ); + + if( !is_abs ) + output_node = add_marking_node( layer_node ); + else + output_node = group_node; + + switch( item->Type() ) + { + case PCB_TEXT_T: + { + PCB_TEXT* text = static_cast<PCB_TEXT*>( item ); + addText( output_node, text, text->GetFontMetrics() ); + break; + } + + case PCB_TEXTBOX_T: + { + PCB_TEXTBOX* text = static_cast<PCB_TEXTBOX*>( item ); + addText( output_node, text, text->GetFontMetrics() ); + + // We want to force this to be a polygon to get absolute coordinates + if( text->IsBorderEnabled() ) + { + SHAPE_POLY_SET poly_set; + text->GetEffectiveShape()->TransformToPolygon( poly_set, 0, ERROR_INSIDE ); + addContourNode( output_node, poly_set, 0, FILL_T::NO_FILL, + text->GetBorderWidth() ); + } + + break; + } + + case PCB_SHAPE_T: + { + if( !is_abs ) + addLocationNode( output_node, static_cast<PCB_SHAPE*>( item ) ); + + addShape( output_node, *static_cast<PCB_SHAPE*>( item ) ); + + break; + } + + default: break; + } + } + } + + if( group_node->GetChildren() == nullptr ) + { + marking_node->RemoveChild( group_node ); + layer_node->RemoveChild( marking_node ); + delete group_node; + delete marking_node; + } + } + + for( auto&[layer, bbox] : layer_bbox) + { + if( bbox.GetWidth() > 0 ) + { + wxXmlNode* outlineNode = insertNode( layer_nodes[layer], "Outline" ); + + SHAPE_POLY_SET::POLYGON outline( 1 ); + std::vector<VECTOR2I> points( 4 ); + points[0] = bbox.GetPosition(); + points[2] = bbox.GetEnd(); + points[1].x = points[0].x; + points[1].y = points[2].y; + points[3].x = points[2].x; + points[3].y = points[0].y; + + outline[0].Append( points ); + addPolygonNode( outlineNode, outline, FILL_T::NO_FILL, 0 ); + addLineDesc( outlineNode, 1, LINE_STYLE::SOLID ); + } + } + + for( size_t ii = 0; ii < fp->Pads().size(); ++ii ) + { + PAD* pad = fp->Pads()[ii]; + wxXmlNode* pinNode = appendNode( packageNode, "Pin" ); + wxString name = pad->GetNumber(); + + // Pins are required to have names, so if our pad doesn't have a name, we need to + // generate one that is unique + if( pad->GetAttribute() == PAD_ATTRIB::NPTH ) + name = wxString::Format( "NPTH%zu", ii ); + else if( name.empty() ) + name = wxString::Format( "PAD%zu", ii ); + + addAttribute( pinNode, "number", name ); + + m_net_pin_dict[pad->GetNetCode()].emplace_back( + genString( fp->GetReference(), "CMP" ), genString( name, "PIN" ) ); + + if( pad->GetAttribute() == PAD_ATTRIB::NPTH ) + addAttribute( pinNode, "electricalType", "MECHANICAL" ); + else if( pad->IsOnCopperLayer() ) + addAttribute( pinNode, "electricalType", "ELECTRICAL" ); + else + addAttribute( pinNode, "electricalType", "UNDEFINED" ); + + if( pad->HasHole() ) + addAttribute( pinNode, "type", "THRU" ); + else + addAttribute( pinNode, "type", "SURFACE" ); + + if( pad->GetFPRelativeOrientation() != EDA_ANGLE::m_Angle0 ) + { + wxXmlNode* xformNode = appendNode( pinNode, "Xform" ); + xformNode->AddAttribute( + "rotation", + floatVal( pad->GetFPRelativeOrientation().Normalize().AsDegrees() ) ); + } + + addLocationNode( pinNode, *pad, true ); + addShape( pinNode, *pad, pad->GetLayer() ); + + // We just need the padstack, we don't need the reference here. The reference will be created + // in the LayerFeature set + wxXmlNode dummy; + addPadStack( &dummy, pad ); + } + + return packageNode; +} + + +void IPC2581_PLUGIN::generateComponents( wxXmlNode* aStepNode ) +{ + std::vector<wxXmlNode*> componentNodes; + std::vector<wxXmlNode*> packageNodes; + std::set<wxString> packageNames; + + bool generate_unique = m_OEMRef.empty(); + + for( FOOTPRINT* fp : m_board->Footprints() ) + { + wxXmlNode* componentNode = new wxXmlNode( wxXML_ELEMENT_NODE, "Component" ); + addAttribute( componentNode, "refDes", genString( fp->GetReference(), "CMP" ) ); + wxXmlNode* pkg = addPackage( componentNode, fp ); + + if( pkg ) + packageNodes.push_back( pkg ); + + wxString name; + + PCB_FIELD* field = nullptr; + + if( !generate_unique ) + field = fp->GetFieldByName( m_OEMRef ); + + if( field && !field->GetText().empty() ) + { + name = field->GetShownText( false ); + } + else + { + name = wxString::Format( "%s_%s_%s", fp->GetFPID().GetFullLibraryName(), + fp->GetFPID().GetLibItemName().wx_str(), + fp->GetValue() ); + } + + if( !m_OEMRef_dict.emplace( fp, name ).second ) + wxLogError( "Duplicate footprint pointers. Please report this bug." ); + + addAttribute( componentNode, "part", name ); + addAttribute( componentNode, "layerRef", m_layer_name_map[fp->GetLayer()] ); + + if( fp->GetAttributes() & FP_THROUGH_HOLE ) + addAttribute( componentNode, "mountType", "THMT" ); + else if( fp->GetAttributes() & FP_SMD ) + addAttribute( componentNode, "mountType", "SMT" ); + else + addAttribute( componentNode, "mountType", "OTHER" ); + + if( fp->GetOrientation() != EDA_ANGLE::m_Angle0 || fp->GetLayer() != F_Cu ) + { + wxXmlNode* xformNode = appendNode( componentNode, "Xform" ); + + if( fp->GetOrientation() != EDA_ANGLE::m_Angle0 ) + addAttribute( xformNode, "rotation", floatVal( fp->GetOrientation().Normalize().AsDegrees() ) ); + + if( fp->GetLayer() != F_Cu ) + addAttribute( xformNode, "mirror", "true" ); + } + + addLocationNode( componentNode, fp->GetPosition().x, fp->GetPosition().y ); + + componentNodes.push_back( componentNode ); + } + + for( wxXmlNode* padstack : m_padstacks ) + { + insertNode( aStepNode, padstack ); + m_last_padstack = padstack; + } + + for( wxXmlNode* pkg : packageNodes ) + aStepNode->AddChild( pkg ); + + for( wxXmlNode* cmp : componentNodes ) + aStepNode->AddChild( cmp ); +} + +void IPC2581_PLUGIN::generateLogicalNets( wxXmlNode* aStepNode ) +{ + for( auto& [ net, pin_pair] : m_net_pin_dict ) + { + wxXmlNode* netNode = appendNode( aStepNode, "LogicalNet" ); + addAttribute( netNode, "name", genString( m_board->GetNetInfo().GetNetItem( net )->GetNetname(), "NET" ) ) ; + + for( auto& [cmp, pin] : pin_pair ) + { + wxXmlNode* netPinNode = appendNode( netNode, "PinRef" ); + addAttribute( netPinNode, "componentRef", cmp ); + addAttribute( netPinNode, "pin", pin ); + } + //TODO: Finish + } +} + +//TODO: Add PhyNetGroup section + +void IPC2581_PLUGIN::generateLayerFeatures( wxXmlNode* aStepNode ) +{ + LSEQ layers = m_board->GetEnabledLayers().Seq(); + const NETINFO_LIST& nets = m_board->GetNetInfo(); + std::vector<std::unique_ptr<FOOTPRINT>> footprints; + + // To avoid the overhead of repeatedly cycling through the layers and nets, + // we pre-sort the board items into a map of layer -> net -> items + std::map<PCB_LAYER_ID, std::map<int, std::vector<BOARD_ITEM*>>> elements; + + std::for_each( + m_board->Tracks().begin(), m_board->Tracks().end(), + [&layers, &elements]( PCB_TRACK* aTrack ) + { + if( aTrack->Type() == PCB_VIA_T ) + { + PCB_VIA* via = static_cast<PCB_VIA*>( aTrack ); + + for( PCB_LAYER_ID layer : layers ) + { + if( via->FlashLayer( layer ) ) + elements[layer][via->GetNetCode()].push_back( via ); + } + } + else + { + elements[aTrack->GetLayer()][aTrack->GetNetCode()].push_back( aTrack ); + } + } ); + + std::for_each( m_board->Zones().begin(), m_board->Zones().end(), + [ &elements ]( ZONE* zone ) + { + LSEQ zone_layers = zone->GetLayerSet().Seq(); + + for( PCB_LAYER_ID layer : zone_layers ) + { + elements[layer][zone->GetNetCode()].push_back( zone ); + } + } ); + + for( BOARD_ITEM* item : m_board->Drawings() ) + { + if( BOARD_CONNECTED_ITEM* conn_it = dynamic_cast<BOARD_CONNECTED_ITEM*>( item ) ) + elements[conn_it->GetLayer()][conn_it->GetNetCode()].push_back( conn_it ); + else + elements[item->GetLayer()][0].push_back( item ); + } + + for( FOOTPRINT* it_fp : m_board->Footprints() ) + { + std::unique_ptr<FOOTPRINT> fp( static_cast<FOOTPRINT*>( it_fp->Clone() ) ); + fp->SetParentGroup( nullptr ); + fp->SetPosition( { 0, 0 } ); + + if( fp->GetLayer() != F_Cu ) + fp->Flip( fp->GetPosition(), false ); + + fp->SetOrientation( EDA_ANGLE::m_Angle0 ); + + for( PCB_FIELD* field : fp->GetFields() ) + elements[field->GetLayer()][0].push_back( field ); + + for( BOARD_ITEM* item : fp->GraphicalItems() ) + elements[item->GetLayer()][0].push_back( item ); + + for( PAD* pad : fp->Pads() ) + { + LSEQ pad_layers = pad->GetLayerSet().Seq(); + + for( PCB_LAYER_ID layer : pad_layers ) + { + if( fp->IsFlipped() ) + layer = FlipLayer( layer ); + + if( pad->FlashLayer( layer ) ) + elements[layer][pad->GetNetCode()].push_back( pad ); + } + } + + footprints.push_back( std::move( fp ) ); + } + + for( PCB_LAYER_ID layer : layers ) + { + if( m_progress_reporter ) + m_progress_reporter->SetMaxProgress( nets.GetNetCount() * layers.size() ); + + wxXmlNode* layerNode = appendNode( aStepNode, "LayerFeature" ); + addAttribute( layerNode, "layerRef", m_layer_name_map[layer] ); + + for( const NETINFO_ITEM* net : nets ) + { + if( m_progress_reporter ) + { + m_progress_reporter->Report( wxString::Format( _( "Exporting Layer %s, Net %s" ), + m_board->GetLayerName( layer ), + net->GetNetname() ) ); + m_progress_reporter->AdvanceProgress(); + } + + std::vector<BOARD_ITEM*>& vec = elements[layer][net->GetNetCode()]; + + std::stable_sort( vec.begin(), vec.end(), + []( BOARD_ITEM* a, BOARD_ITEM* b ) + { + if( a->GetParentFootprint() == b->GetParentFootprint() ) + return a->Type() < b->Type(); + + return a->GetParentFootprint() < b->GetParentFootprint(); + } ); + + if( vec.empty() ) + continue; + + generateLayerSetNet( layerNode, layer, vec ); + } + + if( layerNode->GetChildren() == nullptr ) + { + aStepNode->RemoveChild( layerNode ); + delete layerNode; + } + } +} + + +void IPC2581_PLUGIN::generateLayerSetDrill( wxXmlNode* aLayerNode ) +{ + int hole_count = 1; + for( const auto& [layer_pair, vec] : m_drill_layers ) + { + wxXmlNode* layerNode = appendNode( aLayerNode, "LayerFeature" ); + layerNode->AddAttribute( "layerRef", genString( + wxString::Format( "%s_%s", + m_board->GetLayerName( layer_pair.first ), + m_board->GetLayerName( layer_pair.second ) ), + "DRILL" ) ); + + for( BOARD_ITEM* item : vec ) + { + if( item->Type() == PCB_VIA_T ) + { + PCB_VIA* via = static_cast<PCB_VIA*>( item ); + auto it = m_padstack_dict.find( hash_fp_item( via, 0 ) ); + + if( it == m_padstack_dict.end() ) + { + wxLogError( "Failed to find padstack for via" ); + continue; + } + + wxXmlNode* padNode = appendNode( layerNode, "Set" ); + addAttribute( padNode, "geometry", it->second ); + + if( via->GetNetCode() > 0 ) + addAttribute( padNode, "net", genString( via->GetNetname(), "NET" ) ); + + wxXmlNode* holeNode = appendNode( padNode, "Hole" ); + addAttribute( holeNode, "name", wxString::Format( "H%d", hole_count++ ) ); + addAttribute( holeNode, "diameter", floatVal( m_scale * via->GetDrillValue() ) ); + addAttribute( holeNode, "platingStatus", "VIA" ); + addAttribute( holeNode, "plusTol", "0.0" ); + addAttribute( holeNode, "minusTol", "0.0" ); + addXY( holeNode, via->GetPosition() ); + } + + else if( item->Type() == PCB_PAD_T ) + { + PAD* pad = static_cast<PAD*>( item ); + auto it = m_padstack_dict.find( hash_fp_item( pad, 0 ) ); + + if( it == m_padstack_dict.end() ) + { + wxLogError( "Failed to find padstack for pad" ); + continue; + } + + wxXmlNode* padNode = appendNode( layerNode, "Set" ); + addAttribute( padNode, "geometry", it->second ); + + if( pad->GetNetCode() > 0 ) + addAttribute( padNode, "net", genString( pad->GetNetname(), "NET" ) ); + + wxXmlNode* holeNode = appendNode( padNode, "Hole" ); + addAttribute( holeNode, "name", wxString::Format( "H%d", hole_count++ ) ); + addAttribute( holeNode, "diameter", floatVal( m_scale * pad->GetDrillSizeX() ) ); + addAttribute( holeNode, "platingStatus", pad->GetAttribute() == PAD_ATTRIB::PTH ? "PLATED" : "NONPLATED" ); + addAttribute( holeNode, "plusTol", "0.0" ); + addAttribute( holeNode, "minusTol", "0.0" ); + addXY( holeNode, pad->GetPosition() ); + } + } + } +} + + +void IPC2581_PLUGIN::generateLayerSetNet( wxXmlNode* aLayerNode, PCB_LAYER_ID aLayer, + std::vector<BOARD_ITEM*>& aItems ) +{ + auto it = aItems.begin(); + wxXmlNode* layerSetNode = appendNode( aLayerNode, "Set" ); + wxXmlNode* featureSetNode = appendNode( layerSetNode, "Features" ); + wxXmlNode* specialNode = appendNode( featureSetNode, "UserSpecial" ); + + bool has_via = false; + bool has_pad = false; + + wxXmlNode* padSetNode = nullptr; + + wxXmlNode* viaSetNode = nullptr; + + wxXmlNode* teardropLayerSetNode = nullptr; + wxXmlNode* teardropFeatureSetNode = nullptr; + + if( BOARD_CONNECTED_ITEM* item = dynamic_cast<BOARD_CONNECTED_ITEM*>( *it ); IsCopperLayer( aLayer ) && item ) + { + if( item->GetNetCode() > 0 ) + addAttribute( layerSetNode, "net", genString( item->GetNetname(), "NET" ) ); + } + auto add_track = [&]( PCB_TRACK* track ) + { + if( track->Type() == PCB_TRACE_T ) + { + PCB_SHAPE shape( nullptr, SHAPE_T::SEGMENT ); + shape.SetStart( track->GetStart() ); + shape.SetEnd( track->GetEnd() ); + shape.SetWidth( track->GetWidth() ); + addShape( specialNode, shape ); + } + else if( track->Type() == PCB_ARC_T ) + { + PCB_ARC* arc = static_cast<PCB_ARC*>( track ); + PCB_SHAPE shape( nullptr, SHAPE_T::ARC ); + shape.SetArcGeometry( arc->GetStart(), arc->GetMid(), arc->GetEnd() ); + shape.SetWidth( arc->GetWidth() ); + addShape( specialNode, shape ); + } + else + { + if( !viaSetNode ) + { + if( !has_pad ) + { + viaSetNode = layerSetNode; + has_via = true; + } + else + { + viaSetNode = appendNode( layerSetNode, "Set" ); + + if( track->GetNetCode() > 0 ) + addAttribute( viaSetNode, "net", genString( track->GetNetname(), "NET" ) ); + } + + addAttribute( viaSetNode, "padUsage", "VIA" ); + } + + addVia( viaSetNode, static_cast<PCB_VIA*>( track ), aLayer ); + } + }; + + auto add_zone = [&]( ZONE* zone ) + { + wxXmlNode* zoneFeatureNode = specialNode; + + if( zone->IsTeardropArea() && m_version > 'B' ) + { + if( !teardropFeatureSetNode ) + { + teardropLayerSetNode = appendNode( aLayerNode, "Set" ); + addAttribute( teardropLayerSetNode, "geometryUsage", "TEARDROP" ); + + if( zone->GetNetCode() > 0 ) + addAttribute( teardropLayerSetNode, "net", genString( zone->GetNetname(), "NET" ) ); + + wxXmlNode* new_teardrops = appendNode( teardropLayerSetNode, "Features" ); + addLocationNode( new_teardrops, 0.0, 0.0 ); + teardropFeatureSetNode = appendNode( new_teardrops, "UserSpecial" ); + } + + zoneFeatureNode = teardropFeatureSetNode; + } + else + { + if( FOOTPRINT* fp = zone->GetParentFootprint() ) + { + wxXmlNode* tempSetNode = appendNode( aLayerNode, "Set" ); + addAttribute( tempSetNode, "componentRef", genString( fp->GetReference(), "CMP" ) ); + wxXmlNode* newFeatures = appendNode( tempSetNode, "Features" ); + addLocationNode( newFeatures, 0.0, 0.0 ); + zoneFeatureNode = appendNode( newFeatures, "UserSpecial" ); + } + } + + SHAPE_POLY_SET& zone_shape = *zone->GetFilledPolysList( aLayer ); + + for( int ii = 0; ii < zone_shape.OutlineCount(); ++ii ) + addContourNode( zoneFeatureNode, zone_shape, ii ); + }; + + auto add_shape = [&] ( PCB_SHAPE* shape ) + { + FOOTPRINT* fp = shape->GetParentFootprint(); + + if( fp ) + { + wxXmlNode* tempSetNode = appendNode( aLayerNode, "Set" ); + + if( m_version > 'B' ) + addAttribute( tempSetNode, "geometryUsage", "GRAPHIC" ); + + addAttribute( tempSetNode, "componentRef", genString( fp->GetReference(), "CMP" ) ); + + wxXmlNode* tempFeature = appendNode( tempSetNode, "Features" ); + addLocationNode( tempFeature, *shape ); + + addShape( tempFeature, *shape ); + } + else if( shape->GetShape() == SHAPE_T::CIRCLE || shape->GetShape() == SHAPE_T::RECTANGLE ) + { + wxXmlNode* tempSetNode = appendNode( aLayerNode, "Set" ); + + if( shape->GetNetCode() > 0 ) + addAttribute( tempSetNode, "net", genString( shape->GetNetname(), "NET" ) ); + + wxXmlNode* tempFeature = appendNode( tempSetNode, "Features" ); + addLocationNode( tempFeature, *shape ); + addShape( tempFeature, *shape ); + } + else + { + addShape( specialNode, *shape ); + } + }; + + auto add_text = [&] ( BOARD_ITEM* text ) + { + EDA_TEXT* text_item; + FOOTPRINT* fp = text->GetParentFootprint(); + + if( PCB_TEXT* tmp_text = dynamic_cast<PCB_TEXT*>( text ) ) + text_item = static_cast<EDA_TEXT*>( tmp_text ); + else if( PCB_TEXTBOX* tmp_text = dynamic_cast<PCB_TEXTBOX*>( text ) ) + text_item = static_cast<EDA_TEXT*>( tmp_text ); + + if( text_item->GetShownText( false ).empty() ) + return; + + wxXmlNode* tempSetNode = appendNode( aLayerNode, "Set" ); + + if( m_version > 'B' ) + addAttribute( tempSetNode, "geometryUsage", "TEXT" ); + + if( fp ) + addAttribute( tempSetNode, "componentRef", genString( fp->GetReference(), "CMP" ) ); + + wxXmlNode* nonStandardAttributeNode = appendNode( tempSetNode, "NonstandardAttribute" ); + addAttribute( nonStandardAttributeNode, "name", "TEXT" ); + addAttribute( nonStandardAttributeNode, "value", text_item->GetShownText( false ) ); + addAttribute( nonStandardAttributeNode, "type", "STRING" ); + + wxXmlNode* tempFeature = appendNode( tempSetNode, "Features" ); + addLocationNode( tempFeature, 0.0, 0.0 ); + addText( tempFeature, text_item, text->GetFontMetrics() ); + + if( text->Type() == PCB_TEXTBOX_T ) + { + PCB_TEXTBOX* textbox = static_cast<PCB_TEXTBOX*>( text ); + + if( textbox->IsBorderEnabled() ) + addShape( tempFeature, *static_cast<PCB_SHAPE*>( textbox ) ); + } + }; + + auto add_pad = [&]( PAD* pad ) + { + if( !padSetNode ) + { + if( !has_via ) + { + padSetNode = layerSetNode; + has_pad = true; + } + else + { + padSetNode = appendNode( aLayerNode, "Set" ); + + if( pad->GetNetCode() > 0 ) + addAttribute( padSetNode, "net", genString( pad->GetNetname(), "NET" ) ); + } + } + + FOOTPRINT* fp = pad->GetParentFootprint(); + + if( fp && fp->IsFlipped() ) + addPad( padSetNode, pad, FlipLayer( aLayer ) ); + else + addPad( padSetNode, pad, aLayer ); + }; + + for( BOARD_ITEM* item : aItems ) + { + switch( item->Type() ) + { + case PCB_TRACE_T: + case PCB_ARC_T: + case PCB_VIA_T: + add_track( static_cast<PCB_TRACK*>( item ) ); + break; + + case PCB_ZONE_T: + add_zone( static_cast<ZONE*>( item ) ); + break; + + case PCB_PAD_T: + add_pad( static_cast<PAD*>( item ) ); + break; + + case PCB_SHAPE_T: + add_shape( static_cast<PCB_SHAPE*>( item ) ); + break; + + case PCB_TEXT_T: + case PCB_TEXTBOX_T: + case PCB_FIELD_T: + add_text( item ); + break; + + case PCB_DIMENSION_T: + case PCB_TARGET_T: + case PCB_DIM_ALIGNED_T: + case PCB_DIM_LEADER_T: + case PCB_DIM_CENTER_T: + case PCB_DIM_RADIAL_T: + case PCB_DIM_ORTHOGONAL_T: + //TODO: Add support for dimensions + break; + + default: + wxLogDebug( "Unhandled type %s", + ENUM_MAP<KICAD_T>::Instance().ToString( item->Type() ) ); + } + } + + if( specialNode->GetChildren() == nullptr ) + { + featureSetNode->RemoveChild( specialNode ); + layerSetNode->RemoveChild( featureSetNode ); + aLayerNode->RemoveChild( layerSetNode ); + delete specialNode; + delete featureSetNode; + delete layerSetNode; + } +} + + +wxXmlNode* IPC2581_PLUGIN::generateAvlSection() +{ + if( m_progress_reporter ) + m_progress_reporter->AdvancePhase( _( "Generating BOM section" ) ); + + wxXmlNode* avl = appendNode( m_xml_root, "Avl" ); + addAttribute( avl, "name", "Primary_Vendor_List" ); + + wxXmlNode* header = appendNode( avl, "AvlHeader" ); + addAttribute( header, "title", "BOM" ); + addAttribute( header, "source", "KiCad" ); + addAttribute( header, "author", "OWNER" ); + addAttribute( header, "datetime", wxDateTime::Now().FormatISOCombined() ); + addAttribute( header, "version", "1" ); + + std::set<wxString> unique_parts; + std::map<wxString,wxString> unique_vendors; + + for( auto& [fp, name] : m_OEMRef_dict ) + { + auto [ it, success ] = unique_parts.insert( name ); + + if( !success ) + continue; + + wxXmlNode* part = appendNode( avl, "AvlItem" ); + addAttribute( part, "OEMDesignNumber", genString( name ) ); + + PCB_FIELD* nums[2] = { fp->GetFieldByName( m_mpn ), fp->GetFieldByName( m_distpn ) }; + PCB_FIELD* company[2] = { fp->GetFieldByName( m_mfg ), nullptr }; + wxString company_name[2] = { m_mfg, m_dist }; + + for ( int ii = 0; ii < 2; ++ii ) + { + if( nums[ii] ) + { + wxString mpn_name = nums[ii]->GetShownText( false ); + + if( mpn_name.empty() ) + continue; + + wxXmlNode* vmpn = appendNode( part, "AvlVmpn" ); + addAttribute( vmpn, "qualified", "false" ); + addAttribute( vmpn, "chosen", "false" ); + + wxXmlNode* mpn = appendNode( vmpn, "AvlMpn" ); + addAttribute( mpn, "name", mpn_name ); + + wxXmlNode* vendor = appendNode( vmpn, "AvlVendor" ); + + wxString name = wxT( "UNKNOWN" ); + + // If the field resolves, then use that field content unless it is empty + if( !ii && company[ii] ) + { + wxString tmp = company[ii]->GetShownText( false ); + + if( !tmp.empty() ) + name = tmp; + } + // If it doesn't resolve but there is content from the dialog, use the static content + else if( !ii && !company_name[ii].empty() ) + { + name = company_name[ii]; + } + else if( ii && !m_dist.empty() ) + { + name = m_dist; + } + + auto [vendor_id, inserted] = unique_vendors.emplace( + name, + wxString::Format( "VENDOR_%zu", unique_vendors.size() ) ); + + addAttribute( vendor, "enterpriseRef", vendor_id->second ); + + if( inserted ) + { + wxXmlNode* new_vendor = new wxXmlNode( wxXML_ELEMENT_NODE, "Enterprise" ); + addAttribute( new_vendor, "id", vendor_id->second ); + addAttribute( new_vendor, "name", name ); + addAttribute( new_vendor, "code", "NONE" ); + insertNodeAfter( m_enterpriseNode, new_vendor ); + m_enterpriseNode = new_vendor; + } + } + } + } + + return avl; +} + + +void IPC2581_PLUGIN::SaveBoard( const wxString& aFileName, BOARD* aBoard, + const STRING_UTF8_MAP* aProperties, + PROGRESS_REPORTER* aProgressReporter ) +{ + m_board = aBoard; + m_units_str = "MILLIMETER"; + m_scale = 1.0 / PCB_IU_PER_MM; + m_sigfig = 4; + m_progress_reporter = aProgressReporter; + + if( auto it = aProperties->find( "units" ); it != aProperties->end() ) + { + if( it->second == "inch" ) + { + m_units_str = "INCH"; + m_scale = 25.4 / PCB_IU_PER_MM; + } + } + + if( auto it = aProperties->find( "sigfig" ); it != aProperties->end() ) + m_sigfig = std::stoi( it->second ); + + if( auto it = aProperties->find( "version" ); it != aProperties->end() ) + m_version = it->second.c_str()[0]; + + if( auto it = aProperties->find( "OEMRef" ); it != aProperties->end() ) + m_OEMRef = it->second; + + if( auto it = aProperties->find( "mpn" ); it != aProperties->end() ) + m_mpn = it->second; + + if( auto it = aProperties->find( "mfg" ); it != aProperties->end() ) + m_mfg = it->second; + + if( auto it = aProperties->find( "dist" ); it != aProperties->end() ) + m_dist = it->second; + + if( auto it = aProperties->find( "distpn" ); it != aProperties->end() ) + m_distpn = it->second; + + if( m_version == 'B' ) + { + for( char c = 'a'; c <= 'z'; ++c ) + m_acceptable_chars.insert( c ); + + for( char c = 'A'; c <= 'Z'; ++c ) + m_acceptable_chars.insert( c ); + + for( char c = '0'; c <= '9'; ++c ) + m_acceptable_chars.insert( c ); + + // Add special characters + std::string specialChars = "_\\-.+><"; + + for( char c : specialChars ) + m_acceptable_chars.insert( c ); + } + + m_xml_doc = new wxXmlDocument(); + m_xml_root = generateXmlHeader(); + + generateContentSection(); + + if( m_progress_reporter ) + { + m_progress_reporter->SetNumPhases( 7 ); + m_progress_reporter->BeginPhase( 1 ); + m_progress_reporter->Report( _( "Generating logistic section" ) ); + } + + generateLogisticSection(); + generateHistorySection(); + + wxXmlNode* ecad_node = generateEcadSection(); + generateBOMSection( ecad_node ); + generateAvlSection(); + + if( m_progress_reporter ) + { + m_progress_reporter->AdvancePhase( _( "Saving file" ) ); + } + + wxFileOutputStreamWithProgress out_stream( aFileName ); + double written_bytes = 0.0; + double last_yield = 0.0; + + // This is a rough estimation of the size of the spaces in the file + // We just need to total to be slightly larger than the value of the + // progress bar, so accurately counting spaces is not terribly important + m_total_bytes += m_total_bytes / 10; + + auto update_progress = [&]( size_t aBytes ) + { + written_bytes += aBytes; + double percent = written_bytes / static_cast<double>( m_total_bytes ); + + if( m_progress_reporter ) + { + // Only update every percent + if( last_yield + 0.01 < percent ) + { + last_yield = percent; + m_progress_reporter->SetCurrentProgress( percent ); + } + } + }; + + out_stream.SetProgressCallback( update_progress ); + + if( !m_xml_doc->Save( out_stream ) ) + { + wxLogError( _( "Failed to save file to buffer" ) ); + return; + } + + size_t size = out_stream.GetSize(); + +} diff --git a/pcbnew/plugins/ipc2581/ipc2581_plugin.h b/pcbnew/plugins/ipc2581/ipc2581_plugin.h new file mode 100644 index 0000000000..67b917b153 --- /dev/null +++ b/pcbnew/plugins/ipc2581/ipc2581_plugin.h @@ -0,0 +1,314 @@ +/** + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2023 KiCad Developers, see AUTHORS.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 3 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef IPC2581_PLUGIN_H +#define IPC2581_PLUGIN_H + +#include <eda_shape.h> +#include <io_mgr.h> +#include <layer_ids.h> // PCB_LAYER_ID +#include <plugins/common/plugin_common_layer_mapping.h> +#include <font/font.h> +#include <geometry/shape_segment.h> +#include <stroke_params.h> + +#include <wx/xml/xml.h> +#include <memory> + +class BOARD; +class BOARD_ITEM; +class EDA_TEXT; +class FOOTPRINT; +class PROGRESS_REPORTER; +class NETINFO_ITEM; +class PAD; +class PCB_SHAPE; +class PCB_VIA; +class PROGRESS_REPORTER; +class SHAPE_POLY_SET; +class SHAPE_SEGMENT; + +class IPC2581_PLUGIN : public PLUGIN, public LAYER_REMAPPABLE_PLUGIN +{ +public: + /** + * @brief IPC2581_PLUGIN + * + */ + IPC2581_PLUGIN(){} + ~IPC2581_PLUGIN() override; + + /** + * @brief IPC2581_PLUGIN + */ + const wxString PluginName() const override; + + /** + * + */ + // BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe, + // const STRING_UTF8_MAP* aProperties = nullptr, PROJECT* aProject = nullptr, + // PROGRESS_REPORTER* aProgressReporter = nullptr ) override; + + void SaveBoard( const wxString& aFileName, BOARD* aBoard, + const STRING_UTF8_MAP* aProperties = nullptr, + PROGRESS_REPORTER* aProgressReporter = nullptr ) override; + + PLUGIN_FILE_DESC GetBoardFileDesc() const override + { + return PLUGIN_FILE_DESC( _HKI( "IPC-2581 Production File" ), { "xml" } ); + } + std::vector<FOOTPRINT*> GetImportedCachedLibraryFootprints() override; + + long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override + { + return 0; + } + + // Reading currently disabled + bool CanReadBoard( const wxString& aFileName ) const override + { + return false; + } + + // Reading currently disabled + bool CanReadFootprint( const wxString& aFileName ) const override + { + return false; + } + + // Reading currently disabled + bool CanReadFootprintLib( const wxString& aFileName ) const override + { + return false; + } + + + /** + * Return the automapped layers. + * + * @param aInputLayerDescriptionVector + * @return Auto-mapped layers + */ + // static std::map<wxString, PCB_LAYER_ID> DefaultLayerMappingCallback( + // const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector ); + + /** + * Register a different handler to be called when mapping of IPC2581 to KiCad layers occurs. + * + * @param aLayerMappingHandler + */ + // void RegisterLayerMappingCallback( LAYER_MAPPING_HANDLER aLayerMappingHandler ) override + // {}; + +private: + + /** + * Frees the memory allocated for the loaded footprints in #m_loaded_footprints. + * + */ + void clearLoadedFootprints(); + + /** + * Creates the XML header for IPC-2581 + * + */ + wxXmlNode* generateXmlHeader(); + + /** + * Creates the Content section of the XML file. This holds the overview of + * the rest of the board data. Includes references to the step, bom, and layers + * as well as the content dictionaries + */ + wxXmlNode* generateContentSection(); + + /** + * Creates the logistical data header. This section defines the organization and person + * creating the file. Can be used for contact information and config management + */ + wxXmlNode* generateLogisticSection(); + + /** + * Creates the history section. This section defines the history of the file, the revision + * number, and the date of the revision as well as software used to create the file. Optionally, + * the data could include information about the git revision and tag + */ + wxXmlNode* generateHistorySection(); + + /** + * Creates the BOM section. This section defines the BOM data for the board. This includes + * the part number, manufacturer, and distributor information for each component on the board. + */ + wxXmlNode* generateBOMSection( wxXmlNode* aEcadNode ); + + /** + * Creates the ECAD section. This describes the layout, layers, and design as well as + * component placement and netlist information + */ + wxXmlNode* generateEcadSection(); + + /** + * Creates the Approved Vendor List section. If the user chooses, this will associate + * BOM items with vendor numbers and names. + */ + wxXmlNode* generateAvlSection(); + + void generateCadLayers( wxXmlNode* aCadLayerNode ); + + void generateDrillLayers( wxXmlNode* aCadLayerNode ); + + void generateStepSection( wxXmlNode* aCadNode ); + + void generateProfile( wxXmlNode* aStepNode ); + + void generateLogicalNets( wxXmlNode* aStepNode ); + + void generatePhyNetGroup( wxXmlNode* aStepNode ); + + void generateLayerFeatures( wxXmlNode* aStepNode ); + + void generateLayerSetDrill( wxXmlNode* aStepNode ); + + void generateLayerSetNet( wxXmlNode* aLayerNode, PCB_LAYER_ID aLayer, std::vector<BOARD_ITEM*>& aItems ); + + wxXmlNode* generateContentStackup( wxXmlNode* aContentNode ); + + void generateComponents( wxXmlNode* aStepNode ); + + void addCadHeader( wxXmlNode* aEcadNode ); + + wxXmlNode* addPackage( wxXmlNode* aStepNode, FOOTPRINT* aFootprint ); + + void addPad( wxXmlNode* aContentNode, const PAD* aPad, PCB_LAYER_ID aLayer ); + + void addVia( wxXmlNode* aContentNode, const PCB_VIA* aVia, PCB_LAYER_ID aLayer ); + + void addPadStack( wxXmlNode* aContentNode, const PAD* aPad ); + + void addPadStack( wxXmlNode* aContentNode, const PCB_VIA* aVia ); + + void addLocationNode( wxXmlNode* aContentNode, double aX, double aY ); + + void addLocationNode( wxXmlNode* aContentNode, const PAD& aPad, bool aRelative ); + + void addLocationNode( wxXmlNode* aContentNode, const PCB_SHAPE& aShape ); + + void addShape( wxXmlNode* aContentNode, const PCB_SHAPE& aShape ); + + void addShape( wxXmlNode* aContentNode, const PAD& aPad, PCB_LAYER_ID aLayer ); + + void addText( wxXmlNode* aContentNode, EDA_TEXT* aShape, const KIFONT::METRICS& aFontMetrics ); + + void addLineDesc( wxXmlNode* aNode, int aWidth, LINE_STYLE aDashType, bool aForce = false ); + + void addFillDesc( wxXmlNode* aNode, FILL_T aFillType, bool aForce = false ); + + bool addPolygonNode( wxXmlNode* aParentNode, const SHAPE_POLY_SET::POLYGON& aPolygon, + FILL_T aFillType = FILL_T::FILLED_SHAPE, int aWidth = 0, + LINE_STYLE aDashType = LINE_STYLE::SOLID ); + + bool addPolygonCutouts( wxXmlNode* aParentNode, const SHAPE_POLY_SET::POLYGON& aPolygon ); + + bool addOutlineNode( wxXmlNode* aParentNode, const SHAPE_POLY_SET& aPolySet, int aWidth = 0, + LINE_STYLE aDashType = LINE_STYLE::SOLID ); + + bool addContourNode( wxXmlNode* aParentNode, const SHAPE_POLY_SET& aPolySet, int aOutline = 0, + FILL_T aFillType = FILL_T::FILLED_SHAPE, int aWidth = 0, + LINE_STYLE aDashType = LINE_STYLE::SOLID ); + + size_t lineHash( int aWidth, LINE_STYLE aDashType ); + + size_t shapeHash( const PCB_SHAPE& aShape ); + + wxString genString( const wxString& aStr, const char* aPrefix = nullptr ); + + wxString floatVal( double aVal ); + + void addXY( wxXmlNode* aNode, const VECTOR2I& aVec, const char* aXName = nullptr, + const char* aYName = nullptr ); + + void addAttribute( wxXmlNode* aNode, const wxString& aName, const wxString& aValue ); + + wxXmlNode* insertNode( wxXmlNode* aParent, const wxString& aName ); + + wxXmlNode* appendNode( wxXmlNode* aParent, const wxString& aName ); + + void insertNode( wxXmlNode* aParent, wxXmlNode* aNode ); + + void insertNodeAfter( wxXmlNode* aPrev, wxXmlNode* aNode ); + + void addLayerAttributes( wxXmlNode* aNode, PCB_LAYER_ID aLayer ); +private: + LAYER_MAPPING_HANDLER m_layerMappingHandler; + bool m_show_layer_mapping_warnings; + + size_t m_total_bytes; //<! Total number of bytes to be written + + wxString m_units_str; //<! Output string for units + double m_scale; //<! Scale factor from IU to IPC2581 units (mm, micron, in) + int m_sigfig; //<! Max number of digits past the decimal point + char m_version; //<! Currently, either 'B' or 'C' for the IPC2581 version + wxString m_OEMRef; //<! If set, field name containing the internal ID of parts + wxString m_mpn; //<! If set, field name containing the manufacturer part number + wxString m_mfg; //<! If set, field name containing the part manufacturer + wxString m_distpn; //<! If set, field name containing the distributor part number + wxString m_dist; //<! If set, field name containing the distributor name + + // Node pointer to the main enterprise node to be used for adding + // enterprises later when forming the AVL + wxXmlNode* m_enterpriseNode; + + BOARD* m_board; + std::vector<FOOTPRINT*> m_loaded_footprints; + const STRING_UTF8_MAP* m_props; + + std::map<size_t, wxString> m_user_shape_dict; //<! Map between shape hash values and reference id string + wxXmlNode* m_shape_user_node; //<! Output XML node for reference shapes in UserDict + + std::map<size_t, wxString> m_std_shape_dict; //<! Map between shape hash values and reference id string + wxXmlNode* m_shape_std_node; //<! Output XML node for reference shapes in StandardDict + + std::map<size_t, wxString> m_line_dict; //<! Map between line hash values and reference id string + wxXmlNode* m_line_node; //<! Output XML node for reference lines in LineDict + + std::map<size_t, wxString> m_padstack_dict; //<! Map between padstack hash values and reference id string (PADSTACK_##) + std::vector<wxXmlNode*> m_padstacks; //<! Holding vector for padstacks. These need to be inserted prior to the components + wxXmlNode* m_last_padstack; //<! Pointer to padstack list where we can insert the VIA padstacks once we process tracks + + std::map<size_t, wxString> m_footprint_dict; //<! Map between the footprint hash values and reference id string (<fpid>_##) + + std::map<FOOTPRINT*, wxString> m_OEMRef_dict; //<! Reverse map from the footprint pointer to the reference id string assigned for components + + std::map<int, std::vector<std::pair<wxString, wxString>>> m_net_pin_dict; //<! Map from netcode to the component/pin pairs in the net + + std::vector<SHAPE_SEGMENT> m_slot_holes; //<! Storage vector of slotted holes that need to be output as cutouts + + std::map<PCB_LAYER_ID, wxString> m_layer_name_map; //<! Mapping layer name in 2581 to the internal layer id + + std::map<std::pair<PCB_LAYER_ID, PCB_LAYER_ID>,std::vector<BOARD_ITEM*>> m_drill_layers; //<! Drill sets are output as layers (to/from pairs) + + PROGRESS_REPORTER* m_progress_reporter; + + std::set<wxUniChar> m_acceptable_chars; //<! IPC2581B and C have differing sets of allowed characters in names + + wxXmlDocument* m_xml_doc; + wxXmlNode* m_xml_root; +}; + +#endif // IPC2581_PLUGIN_H \ No newline at end of file diff --git a/pcbnew/plugins/ipc2581/ipc2581_types.h b/pcbnew/plugins/ipc2581/ipc2581_types.h new file mode 100644 index 0000000000..274f19b7d2 --- /dev/null +++ b/pcbnew/plugins/ipc2581/ipc2581_types.h @@ -0,0 +1,823 @@ +/** +* This program source code file is part of KiCad, a free EDA CAD application. +* +* Copyright (C) 2023 KiCad Developers, see AUTHORS.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 3 of the License, or (at your +* option) any later version. +* +* This program is distributed in the hope that it will be useful, but +* WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* General Public License for more details. +* +* You should have received a copy of the GNU General Public License along +* with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef IPC2581_TYPES_H +#define IPC2581_TYPES_H + +#include <map> +#include <string> + +enum class bomCategoryType +{ + ELECTRICAL, + PROGRAMMABLE, + MECHANICAL, + MATERIAL, + DOCUMENT +}; + +enum class boardTechnologyType +{ + RIGID, + RIGID_FLEX, + FLEX, + HDI, + EMBEDDED_COMPONENT, + OTHER +}; + +enum class butterflyShapeType +{ + ROUND, + SQUARE +}; + +enum class cadPinType +{ + THRU, + BLIND, + SURFACE +}; + +enum class certificationCategoryType +{ + ASSEMBLYDRAWING, + ASSEMBLYFIXTUREGENERATION, + ASSEMBLYPANEL, + ASSEMBLYPREPTOOLS, + ASSEMBLYTESTFIXTUREGENERATION, + ASSEMBLYTESTGENERATION, + BOARDFABRICATION, + BOARDFIXTUREGENERATION, + BOARDPANEL, + BOARDTESTGENERATION, + COMPONENTPLACEMENT, + DETAILEDDRAWING, + FABRICATIONDRAWING, + GENERALASSEMBLY, + GLUEDOT, + MECHANICALHARDWARE, + MULTIBOARDPARTSLIST, + PHOTOTOOLS, + SCHEMATICDRAWINGS, + SINGLEBOARDPARTSLIST, + SOLDERSTENCILPASTE, + SPECSOURCECONTROLDRAWING, + EMBEDDEDCOMPONENT, + OTHER +}; + +enum class certificationStatusType +{ + ALPHA, + BETA, + CERTIFIED, + SELFTEST +}; + +enum class complianceListType +{ + ROHS, + CONFLICT_MINERALS, + WEEE, + REACH, + HALOGEN_FREE, + OTHER +}; + +enum class conductorListType +{ + CONDUCTIVITY, + SURFACE_ROUGHNESS_UPFACING, + SURFACE_ROUGHNESS_DOWNFACING, + SURFACE_ROUGHNESS_TREATED, + ETCH_FACTOR, + FINISHED_HEIGHT, + OTHER +}; + +enum class colorListType +{ + BLACK, + WHITE, + RED, + GREEN, + YELLOW, + BLUE, + BROWN, + ORANGE, + PINK, + PURPLE, + GRAY, + OTHER +}; + +enum class contextType +{ + BOARD, + BOARDPANEL, + ASSEMBLY, + ASSEMBLYPALLET, + DOCUMENTATION, + TOOLING, + COUPON, + MISCELLANEOUS +}; + +enum class dfxCategoryType +{ + COMPONENT, + BOARDFAB, + ASSEMBLY, + TESTING, + DATAQUALITY +}; + +enum class dielectricListType +{ + DIELECTRIC_CONSTANT, + LOSS_TANGENT, + GLASS_TYPE, + GLASS_STYLE, + RESIN_CONTENT, + PROCESSABILITY_TEMP, + OTHER +}; + +enum class donutShapeType +{ + ROUND, + SQUARE, + HEXAGON, + OCTAGON +}; + +enum class toolListType +{ + CARBIDE, + ROUTER, + LASER, + FLATNOSE, + EXTENSION, + V_CUTTER +}; + +enum class toolPropertyListType +{ + DRILL_SIZE, + FINISHED_SIZE, + BIT_ANGLE, + OTHER +}; + +enum class enterpriseCodeType +{ + DUNNS, + CAGE +}; + +enum class exposureType +{ + EXPOSED, + COVERED_PRIMARY, + COVERED_SECONDARY, + COVERED +}; + +enum class floorLifeType +{ + UNLIMITED, + _1_YEAR, + _4_WEEKS, + _168_HOURS, + _72_HOURS, + _48_HOURS, + _24_HOURS, + BAKE +}; + +enum class geometryUsageType +{ + THIEVING, + THERMAL_RELIEF, + NONE +}; + +enum class generalListType +{ + ELECTRICAL, + THERMAL, + MATERIAL, + INSTRUCTION, + STANDARD, + CONFIGURATION, + OTHER +}; + +enum class impedanceListType +{ + IMPEDANCE, + LINEWIDTH, + SPACING, + REF_PLANE_LAYER_ID, + COPLANAR_GROUND_SPACING, + OTHER +}; + +enum class isoCodeType +{ + AD, + AE, + AF, + AG, + AI, + AL, + AM, + AN, + AO, + AQ, + AR, + AS, + AT, + AU, + AW, + AZ, + BA, + BB, + BD, + BE, + BF, + BG, + BH, + BI, + BJ, + BM, + BN, + BO, + BR, + BS, + BT, + BV, + BW, + BY, + BZ, + CA, + CC, + CF, + CG, + CH, + CI, + CK, + CL, + CM, + CN, + CO, + CR, + CU, + CV, + CX, + CY, + CZ, + DE, + DJ, + DK, + DM, + DO, + DZ, + EC, + EE, + EG, + EH, + ER, + ES, + ET, + FI, + FJ, + FK, + FM, + FO, + FR, + FX, + GA, + GB, + GD, + GE, + GF, + GH, + GI, + GL, + GM, + GN, + GP, + GQ, + GR, + GS, + GT, + GU, + GW, + GY, + HK, + HM, + HN, + HR, + HT, + HU, + ID, + IE, + IL, + IN, + IO, + IQ, + IR, + IS, + IT, + JM, + JO, + JP, + KE, + KG, + KH, + KI, + KM, + KN, + KP, + KR, + KW, + KY, + KZ, + LA, + LB, + LC, + LI, + LK, + LR, + LS, + LT, + LU, + LV, + LY, + MA, + MC, + MD, + MG, + MH, + MK, + ML, + MM, + MN, + MO, + MP, + MQ, + MR, + MS, + MT, + MU, + MV, + MW, + MX, + MY, + MZ, + NA, + NC, + NE, + NF, + NG, + NI, + NL, + NO, + NP, + NR, + NU, + NZ, + OM, + PA, + PE, + PF, + PG, + PH, + PK, + PL, + PM, + PN, + PR, + PT, + PW, + PY, + QA, + RE, + RO, + RU, + RW, + SA, + SB, + SC, + SD, + SE, + SG, + SH, + SI, + SJ, + SK, + SL, + SM, + SN, + SO, + SR, + ST, + SV, + SY, + SZ, + TC, + TD, + TF, + TG, + TH, + TJ, + TK, + TM, + TN, + TO, + TP, + TR, + TT, + TV, + TW, + TZ, + UA, + UG, + UM, + US, + UY, + UZ, + VA, + VC, + VE, + VG, + VI, + VN, + VU, + WF, + WS, + YE, + YT, + YU, + ZA, + ZM, + ZR, + ZW +}; + +enum class lineEndType +{ + NONE, + ROUND, + SQUARE +}; + +enum class fillPropertyType +{ + HOLLOW, + HATCH, + MESH, + FILL, + VOID +}; + +enum class linePropertyType +{ + SOLID, + DOTTED, + DASHED, + CENTER, + PHANTOM, + ERASE +}; + +enum class markingUsageType +{ + REFDES, + PARTNAME, + TARGET, + POLARITY_MARKING, + ATTRIBUTE_GRAPHICS, + PIN_ONE, + NONE +}; + +enum class mountType +{ + SMT, + THMT, + OTHER +}; + +enum class netClassType +{ + CLK, + FIXED, + GROUND, + SIGNAL, + POWER, + UNUSED +}; + +enum class netPointType +{ + END, + MIDDLE +}; + +enum class packageTypeType +{ + AXIAL_LEADED, + BARE_DIE, + CERAMIC_BGA, + CERAMIC_DIP, + CERAMIC_FLATPACK, + CERAMIC_QUAD_FLATPACK, + CERAMIC_SIP, + CHIP, + CHIP_SCALE, + CHOKE_SWITCH_SM, + COIL, + CONNECTOR_SM, + CONNECTOR_TH, + EMBEDDED, + FLIPCHIP, + HERMETIC_HYBRED, + LEADLESS_CERAMIC_CHIP_CARRIER, + MCM, + MELF, + FINEPITCH_BGA, + MOLDED, + NETWORK, + PGA, + PLASTIC_BGA, + PLASTIC_CHIP_CARRIER, + PLASTIC_DIP, + PLASTIC_SIP, + POWER_TRANSISTOR, + RADIAL_LEADED, + RECTANGULAR_QUAD_FLATPACK, + RELAY_SM, + RELAY_TH, + SOD123, + SOIC, + SOJ, + SOPIC, + SOT143, + SOT23, + SOT52, + SOT89, + SQUARE_QUAD_FLATPACK, + SSOIC, + SWITCH_TH, + TANTALUM, + TO_TYPE, + TRANSFORMER, + TRIMPOT_SM, + TRIMPOT_TH, + OTHER +}; + +enum class padUsageType +{ + TERMINATION, + VIA, + PLANE, + MASK, + TOOLING_HOLE, + THIEVING, + THERMAL_RELIEF, + FIDUCIAL, + NONE +}; + +enum class padUseType +{ + REGULAR, + ANTIPAD, + THERMAL, + OTHER +}; + +enum class pinElectricalType +{ + ELECTRICAL, + MECHANICAL, + UNDEFINED +}; + +enum class pinMountType +{ + SURFACE_MOUNT_PIN, + SURFACE_MOUNT_PAD, + THROUGH_HOLE_PIN, + THROUGH_HOLE_HOLE, + PRESSFIT, + NONBOARD, + HOLE, + UNDEFINED +}; + +enum class pinOneOrientationType +{ + LOWER_LEFT, + LEFT, + LEFT_CENTER, + UPPER_LEFT, + UPPER_CENTER, + UPPER_RIGHT, + RIGHT, + RIGHT_CENTER, + LOWER_RIGHT, + LOWER_CENTER, + CENTER, + OTHER +}; + +enum class polarityType +{ + POSITIVE, + NEGATIVE +}; + +enum class propertyUnitType +{ + MM, + INCH, + MICRON, + OHMS, + MHO_CM, + SIEMENS_M, + CELCIUS, + FARANHEIT, + PERCENT, + Hz, + DEGREES, + RMAX, + RZ, + RMS, + SECTION, + CLASS, + ITEM, + GAUGE, + OTHER +}; + +enum class roleFunctionType +{ + SENDER, + OWNER, + RECEIVER, + DESIGNER, + ENGINEER, + BUYER, + CUSTOMERSERVICE, + DELIVERTO, + BILLTO, + OTHER +}; + +enum class platingStatusType +{ + PLATED, + NONPLATED, + VIA +}; + +enum class standardPrimitive +{ + BUTTERFLY, + CIRCLE, + CONTOUR, + DIAMOND, + DONUT, + ELLIPSE, + HEXAGON, + MOIRE, + OCTAGON, + OVAL, + RECTCENTER, + RECTCHAM, + RECTCORNER, + RECTROUND, + THERMAL, + TRIANGLE +}; + +enum class structureListType +{ + STRIPLINE, + PLANE_LESS_STRIPLINE, + MICROSTRIP_EMBEDDED, + MICROSTRIP_NO_MASK, + MICROSTRIP_MASK_COVERED, + MICROSTRIP_DUAL_MASKED_COVERED, + COPLANAR_WAVEGUIDE_STRIPLINE, + COPLANAR_WAVEGUIDE_EMBEDDED, + COPLANAR_WAVEGUIDE_NO_MASK, + COPLANAR_WAVEGUIDE_MASK_COVERED, + COPLANAR_WAVEGUIDE_DUAL_MASKED_COVERED, + OTHER +}; + +enum class technologyListType +{ + RIGID, + RIGID_FLEX, + FLEX, + HDI, + EMBEDDED_COMPONENT, + OTHER +}; + +enum class temperatureListType +{ + THERMAL_DELAMINATION, + EXPANSION_Z_AXIS, + EXPANSION_X_Y_AXIS, + OTHER +}; + +enum class thermalShapeType +{ + ROUND, + SQUARE, + HEXAGON, + OCTAGON +}; + +enum class thievingListType +{ + KEEP_IN, + KEEP_OUT +}; + +enum class transmissionListType +{ + SINGLE_ENDED, + EDGE_COUPLED, + BROADSIDE_COUPLED, + OTHER +}; + +enum class unitModeType +{ + DISTANCE, + AREA, + RESISTANCE, + CAPACITANCE, + IMPEDANCE, + PERCENTAGE, + SIZE, + NONE +}; + +enum class unitsType +{ + MILLIMETER, + MICRON, + INCH +}; + +enum class vCutListType +{ + ANGLE, + THICKNESS_REMAINING, + OFFSET, + OTHER +}; + +enum class edgeChamferListType +{ + ANGLE, + WIDTH, + SIDE +}; + +enum class whereMeasuredType +{ + LAMINATE, + METAL, + MASK, + OTHER +}; + +#endif // IPC2581_TYPES_H \ No newline at end of file diff --git a/pcbnew/plugins/kicad/pcb_plugin.cpp b/pcbnew/plugins/kicad/pcb_plugin.cpp index 36c7cdbb54..8bf3445acb 100644 --- a/pcbnew/plugins/kicad/pcb_plugin.cpp +++ b/pcbnew/plugins/kicad/pcb_plugin.cpp @@ -292,7 +292,8 @@ bool PCB_PLUGIN::CanReadBoard( const wxString& aFileName ) const void PCB_PLUGIN::SaveBoard( const wxString& aFileName, BOARD* aBoard, - const STRING_UTF8_MAP* aProperties ) + const STRING_UTF8_MAP* aProperties, + PROGRESS_REPORTER* aProgressReporter ) { LOCALE_IO toggle; // toggles on, then off, the C locale. diff --git a/pcbnew/plugins/kicad/pcb_plugin.h b/pcbnew/plugins/kicad/pcb_plugin.h index 51a3b71b57..91b7002729 100644 --- a/pcbnew/plugins/kicad/pcb_plugin.h +++ b/pcbnew/plugins/kicad/pcb_plugin.h @@ -305,7 +305,8 @@ public: bool CanReadBoard( const wxString& aFileName ) const override; void SaveBoard( const wxString& aFileName, BOARD* aBoard, - const STRING_UTF8_MAP* aProperties = nullptr ) override; + const STRING_UTF8_MAP* aProperties = nullptr, + PROGRESS_REPORTER* aProgressReporter = nullptr ) override; BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe, const STRING_UTF8_MAP* aProperties = nullptr, PROJECT* aProject = nullptr, diff --git a/pcbnew/tools/board_editor_control.cpp b/pcbnew/tools/board_editor_control.cpp index 8dfaf09f4c..619b70c408 100644 --- a/pcbnew/tools/board_editor_control.cpp +++ b/pcbnew/tools/board_editor_control.cpp @@ -503,6 +503,8 @@ int BOARD_EDITOR_CONTROL::GenerateFabFiles( const TOOL_EVENT& aEvent ) m_frame->GenD356File( dummy ); else if( aEvent.IsAction( &PCB_ACTIONS::generateBOM ) ) m_frame->RecreateBOMFileFromBoard( dummy ); + else if( aEvent.IsAction( &PCB_ACTIONS::generateIPC2581File ) ) + m_frame->GenIPC2581File( dummy ); else wxFAIL_MSG( wxT( "GenerateFabFiles(): unexpected request" ) ); @@ -1655,6 +1657,7 @@ void BOARD_EDITOR_CONTROL::setTransitions() Go( &BOARD_EDITOR_CONTROL::GenerateFabFiles, PCB_ACTIONS::generateReportFile.MakeEvent() ); Go( &BOARD_EDITOR_CONTROL::GenerateFabFiles, PCB_ACTIONS::generateD356File.MakeEvent() ); Go( &BOARD_EDITOR_CONTROL::GenerateFabFiles, PCB_ACTIONS::generateBOM.MakeEvent() ); + Go( &BOARD_EDITOR_CONTROL::GenerateFabFiles, PCB_ACTIONS::generateIPC2581File.MakeEvent() ); // Track & via size control Go( &BOARD_EDITOR_CONTROL::TrackWidthInc, PCB_ACTIONS::trackWidthInc.MakeEvent() ); diff --git a/pcbnew/tools/pcb_actions.cpp b/pcbnew/tools/pcb_actions.cpp index a16417c609..9b134977b3 100644 --- a/pcbnew/tools/pcb_actions.cpp +++ b/pcbnew/tools/pcb_actions.cpp @@ -1056,6 +1056,13 @@ TOOL_ACTION PCB_ACTIONS::generateReportFile( TOOL_ACTION_ARGS() .Tooltip( _( "Create report of all footprints from current board" ) ) .Icon( BITMAPS::post_rpt ) ); +TOOL_ACTION PCB_ACTIONS::generateIPC2581File( TOOL_ACTION_ARGS() + .Name( "pcbnew.EditorControl.generateIPC2581File" ) + .Scope( AS_GLOBAL ) + .FriendlyName( _( "IPC-2581 File (.xml)..." ) ) + .Tooltip( _( "Generate an IPC-2581 file" ) ) + .Icon( BITMAPS::post_xml ) ); + TOOL_ACTION PCB_ACTIONS::generateD356File( TOOL_ACTION_ARGS() .Name( "pcbnew.EditorControl.generateD356File" ) .Scope( AS_GLOBAL ) diff --git a/pcbnew/tools/pcb_actions.h b/pcbnew/tools/pcb_actions.h index 3ed41770fd..d3238b1b25 100644 --- a/pcbnew/tools/pcb_actions.h +++ b/pcbnew/tools/pcb_actions.h @@ -424,6 +424,7 @@ public: static TOOL_ACTION generateDrillFiles; static TOOL_ACTION generatePosFile; static TOOL_ACTION generateReportFile; + static TOOL_ACTION generateIPC2581File; static TOOL_ACTION generateD356File; static TOOL_ACTION generateBOM; diff --git a/qa/data/pcbnew/plugins/2581/testcase3-RevC-full.xml b/qa/data/pcbnew/plugins/2581/testcase3-RevC-full.xml new file mode 100644 index 0000000000..9dffbcf97a --- /dev/null +++ b/qa/data/pcbnew/plugins/2581/testcase3-RevC-full.xml @@ -0,0 +1,66196 @@ +<?xml version = "1.0" encoding = "UTF-8"?> +<IPC-2581 revision="C" xmlns="http://webstds.ipc.org/2581" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + <Content roleRef="Owner"> + <FunctionMode mode="USERDEF"/> + <StepRef name="test-3_r2.-17_4"/> + <LayerRef name="TOP"/> + <LayerRef name="DIELECTRIC_INDEX_2"/> + <LayerRef name="GND"/> + <LayerRef name="DIELECTRIC_INDEX_4"/> + <LayerRef name="IS1"/> + <LayerRef name="DIELECTRIC_INDEX_6"/> + <LayerRef name="IS2"/> + <LayerRef name="DIELECTRIC_INDEX_8"/> + <LayerRef name="VCC"/> + <LayerRef name="DIELECTRIC_INDEX_10"/> + <LayerRef name="BOTTOM"/> + <LayerRef name="fab"/> + <LayerRef name="DRILL_1-6"/> + <LayerRef name="asm_top"/> + <LayerRef name="SS_TOP"/> + <LayerRef name="SS_BOT"/> + <LayerRef name="asm_bot"/> + <BomRef name="BOM_test-3_r2.-17_4"/> + <DictionaryColor> + <EntryColor id="COLOR_TOP"> + <Color r="0" g="255" b="106"/> + </EntryColor> + <EntryColor id="COLOR_GND"> + <Color r="116" g="196" b="143"/> + </EntryColor> + <EntryColor id="COLOR_IS1"> + <Color r="255" g="121" b="203"/> + </EntryColor> + <EntryColor id="COLOR_IS2"> + <Color r="2" g="168" b="213"/> + </EntryColor> + <EntryColor id="COLOR_VCC"> + <Color r="242" g="127" b="134"/> + </EntryColor> + <EntryColor id="COLOR_BOTTOM"> + <Color r="255" g="255" b="0"/> + </EntryColor> + <EntryColor id="COLOR_fab"> + <Color r="255" g="121" b="203"/> + </EntryColor> + <EntryColor id="COLOR_DRILL_1-6"> + <Color r="255" g="121" b="203"/> + </EntryColor> + <EntryColor id="COLOR_asm_top"> + <Color r="255" g="255" b="0"/> + </EntryColor> + <EntryColor id="COLOR_SS_TOP"> + <Color r="255" g="255" b="0"/> + </EntryColor> + <EntryColor id="COLOR_SS_BOT"> + <Color r="240" g="240" b="0"/> + </EntryColor> + <EntryColor id="COLOR_asm_bot"> + <Color r="55" g="247" b="215"/> + </EntryColor> + </DictionaryColor> + <DictionaryLineDesc units="INCH"> + <EntryLineDesc id="ROUND_0"> + <LineDesc lineEnd="ROUND" lineWidth="0.0"/> + </EntryLineDesc> + <EntryLineDesc id="ROUND_8"> + <LineDesc lineEnd="ROUND" lineWidth="0.008"/> + </EntryLineDesc> + <EntryLineDesc id="ROUND_25"> + <LineDesc lineEnd="ROUND" lineWidth="0.025"/> + </EntryLineDesc> + <EntryLineDesc id="ROUND_12"> + <LineDesc lineEnd="ROUND" lineWidth="0.012"/> + </EntryLineDesc> + <EntryLineDesc id="ROUND_4"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </EntryLineDesc> + <EntryLineDesc id="ROUND_50"> + <LineDesc lineEnd="ROUND" lineWidth="0.050"/> + </EntryLineDesc> + </DictionaryLineDesc> + <DictionaryFillDesc units="INCH"> + <EntryFillDesc id="SOLID_FILL"> + <FillDesc fillProperty="FILL"/> + </EntryFillDesc> + <EntryFillDesc id="HOLLOW"> + <FillDesc fillProperty="HOLLOW"/> + </EntryFillDesc> + </DictionaryFillDesc> + <DictionaryStandard units="INCH"> + <EntryStandard id="CIRCLE_1"> + <Circle diameter="0.040"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_2"> + <Circle diameter="0.052"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_3"> + <Circle diameter="0.100"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_4"> + <Circle diameter="0.062"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_1"> + <RectCenter width="0.040" height="0.075"> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_2"> + <RectCenter width="0.050" height="0.025"> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_3"> + <RectCenter width="0.025" height="0.040"> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_5"> + <Circle diameter="0.075"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_4"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="90.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_5"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="45.000" mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_6"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="135.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_7"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="180.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_8"> + <RectCenter width="0.040" height="0.075"> + <Xform rotation="90.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_9"> + <RectCenter width="0.040" height="0.075"> + <Xform rotation="270.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_6"> + <Circle diameter="0.075"> + <Xform rotation="45.000"/> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_7"> + <Circle diameter="0.075"> + <Xform rotation="90.000"/> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_10"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="45.000" mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_11"> + <RectCenter width="0.050" height="0.025"> + <Xform mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_12"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="180.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_13"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="35.096"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_14"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="135.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_15"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="82.601" mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_16"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="35.096"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_17"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="82.601" mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_18"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="315.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_19"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="90.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_20"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="45.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_21"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="315.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_22"> + <RectCenter width="0.025" height="0.040"> + <Xform mirror="true"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_23"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="225.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_24"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="225.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_25"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="270.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="RECTCENTER_26"> + <RectCenter width="0.050" height="0.025"> + <Xform rotation="45.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_8"> + <Circle diameter="0.052"> + <Xform rotation="90.000"/> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_27"> + <RectCenter width="0.025" height="0.040"> + <Xform rotation="270.000"/> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_9"> + <Circle diameter="0.110"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_10"> + <Circle diameter="0.115"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_28"> + <RectCenter width="0.112" height="0.112"> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_11"> + <Circle diameter="0.066"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="RECTCENTER_29"> + <RectCenter width="0.066" height="0.066"> + <FillDescRef id="SOLID_FILL"/> + </RectCenter> + </EntryStandard> + <EntryStandard id="CIRCLE_12"> + <Circle diameter="0.080"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_13"> + <Circle diameter="0.140"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + <EntryStandard id="CIRCLE_14"> + <Circle diameter="0.060"> + <FillDescRef id="SOLID_FILL"/> + </Circle> + </EntryStandard> + </DictionaryStandard> + <DictionaryUser units="INCH"> + <EntryUser id="FIGURE_CIRCLE_50_+"> + <UserSpecial> + <Arc startX="-0.025" startY="0.0" endX="0.025" endY="0.0" centerX="0.0" centerY="0.0" clockwise="true"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Arc> + <Arc startX="0.025" startY="0.0" endX="-0.025" endY="0.0" centerX="0.0" centerY="0.0" clockwise="true"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Arc> + <Line startX="-0.012" startY="0.0" endX="0.012" endY="0.0"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Line> + <Line startX="0.0" startY="0.012" endX="0.0" endY="-0.012"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Line> + </UserSpecial> + </EntryUser> + <EntryUser id="FIGURE_DIAMOND_50X65"> + <UserSpecial> + <Polyline> + <PolyBegin x="0.025" y="0.0"/> + <PolyStepSegment x="0.0" y="0.032"/> + <PolyStepSegment x="-0.025" y="0.0"/> + <PolyStepSegment x="0.0" y="-0.032"/> + <PolyStepSegment x="0.025" y="0.0"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + </UserSpecial> + </EntryUser> + <EntryUser id="FIGURE_TRIANGLE_50X50"> + <UserSpecial> + <Polyline> + <PolyBegin x="0.0" y="0.025"/> + <PolyStepSegment x="-0.021" y="-0.012"/> + <PolyStepSegment x="0.021" y="-0.012"/> + <PolyStepSegment x="0.0" y="0.025"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + </UserSpecial> + </EntryUser> + <EntryUser id="FIGURE_CIRCLE_625_A"> + <UserSpecial> + <Arc startX="-0.312" startY="0.0" endX="0.312" endY="0.0" centerX="0.0" centerY="0.0" clockwise="true"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Arc> + <Arc startX="0.312" startY="0.0" endX="-0.312" endY="0.0" centerX="0.0" centerY="0.0" clockwise="true"> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Arc> + <Polyline> + <PolyBegin x="-0.130" y="-0.156"/> + <PolyStepSegment x="0.0" y="0.156"/> + <PolyStepSegment x="0.130" y="-0.156"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + <Polyline> + <PolyBegin x="0.083" y="-0.047"/> + <PolyStepSegment x="-0.083" y="-0.047"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + </UserSpecial> + </EntryUser> + <EntryUser id="FIGURE_DIAMOND_30X30"> + <UserSpecial> + <Polyline> + <PolyBegin x="0.015" y="0.0"/> + <PolyStepSegment x="0.0" y="0.015"/> + <PolyStepSegment x="-0.015" y="0.0"/> + <PolyStepSegment x="0.0" y="-0.015"/> + <PolyStepSegment x="0.015" y="0.0"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + </UserSpecial> + </EntryUser> + <EntryUser id="FIGURE_TRIANGLE_75X75"> + <UserSpecial> + <Polyline> + <PolyBegin x="0.0" y="0.037"/> + <PolyStepSegment x="-0.032" y="-0.018"/> + <PolyStepSegment x="0.032" y="-0.018"/> + <PolyStepSegment x="0.0" y="0.037"/> + <LineDesc lineEnd="ROUND" lineWidth="0.004"/> + </Polyline> + </UserSpecial> + </EntryUser> + </DictionaryUser> + </Content> + <LogisticHeader> + <Role id="Owner" roleFunction="SENDER"/> + <Enterprise id="UNKNOWN" code="UNKNOWN"/> + <Person name="eba" enterpriseRef="UNKNOWN" roleRef="Owner"/> + </LogisticHeader> + <HistoryRecord number="1" origination="2021-03-23T10:34:42" software="allegro_17.4S(3/22/2021)" lastChange="2021-03-23T10:34:41"> + <FileRevision fileRevisionId="1" comment=""> + <SoftwarePackage name="Allegro" revision="allegro_17.4S(3/22/2021)" vendor="Cadence"> + <Certification certificationStatus="CERTIFIED"/> + </SoftwarePackage> + </FileRevision> + </HistoryRecord> + <Bom name="BOM_test-3_r2.-17_4"> + <BomHeader assembly="test-3_r2.-17_4" revision="1.0"> + <StepRef name="test-3_r2.-17_4"/> + </BomHeader> + <BomItem OEMDesignNumberRef="ELECTROMECH" quantity="1" pinCount="12" category="ELECTRICAL"> + <RefDes name="J1" packageRef="ELECTROMECH" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="ELECTROMECH"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CAPACITOR-5P" quantity="3" pinCount="2" category="ELECTRICAL"> + <RefDes name="C7" packageRef="1206T" populate="true" layerRef="TOP"/> + <RefDes name="C2" packageRef="1206T" populate="true" layerRef="TOP"/> + <RefDes name="C1" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CAPACITOR-5P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="5P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="CAPACITOR-5P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="CAPACITOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="CAPACITOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CAPACITOR-53P" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="C3" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CAPACITOR-53P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="53P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="CAPACITOR-53P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="CAPACITOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="CAPACITOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CAPACITOR-53.4P" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="C5" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CAPACITOR-53.4P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="53.4P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="CAPACITOR-53.4P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="CAPACITOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="CAPACITOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CAPACITOR-20.6P" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="C6" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CAPACITOR-20.6P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="20.6P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="CAPACITOR-20.6P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="CAPACITOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="CAPACITOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CAPACITOR-173P" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="C4" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CAPACITOR-173P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="173P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="CAPACITOR-173P"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="CAPACITOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="CAPACITOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-10K" quantity="4" pinCount="2" category="ELECTRICAL"> + <RefDes name="R3" packageRef="1206T" populate="true" layerRef="TOP"/> + <RefDes name="R7" packageRef="1206T" populate="true" layerRef="TOP"/> + <RefDes name="R10" packageRef="1206T" populate="true" layerRef="TOP"/> + <RefDes name="R11" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-10K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="10K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-10K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-1200" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R13" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-1200"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="1200"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-1200"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-2250" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R5" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-2250"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="2250"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-2250"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-3375" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R8" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-3375"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="3375"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-3375"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-60K" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R4" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-60K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="60K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-60K"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-6750" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R6" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-6750"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="6750"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-6750"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="RESISTOR-800" quantity="1" pinCount="2" category="ELECTRICAL"> + <RefDes name="R12" packageRef="1206T" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="RESISTOR-800"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="VALUE" textualCharacteristicValue="800"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT_PART" textualCharacteristicValue="RESISTOR-800"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PPT" textualCharacteristicValue="RESISTOR"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="PARENT_PART_TYPE" textualCharacteristicValue="RESISTOR"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="LM6685" quantity="1" pinCount="14" category="ELECTRICAL"> + <RefDes name="U13" packageRef="SOIC14" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="LM6685"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="HDL" quantity="1" pinCount="8" category="ELECTRICAL"> + <RefDes name="U7" packageRef="SOIC8" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="HDL"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CA3450" quantity="3" pinCount="8" category="ELECTRICAL"> + <RefDes name="U12" packageRef="SOIC8" populate="true" layerRef="TOP"/> + <RefDes name="U9" packageRef="SOIC8" populate="true" layerRef="TOP"/> + <RefDes name="U8" packageRef="SOIC8" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CA3450"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="8BITD2A2" quantity="1" pinCount="16" category="ELECTRICAL"> + <RefDes name="U15" packageRef="SOIC16" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="8BITD2A2"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="PHASESHIFT" quantity="1" pinCount="28" category="ELECTRICAL"> + <RefDes name="U17" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="PHASESHIFT"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="PHASEACCUM" quantity="1" pinCount="28" category="ELECTRICAL"> + <RefDes name="U18" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="PHASEACCUM"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="CY100E474" quantity="2" pinCount="28" category="ELECTRICAL"> + <RefDes name="U6" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <RefDes name="U5" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="CY100E474"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="100E151" quantity="2" pinCount="28" category="ELECTRICAL"> + <RefDes name="U11" packageRef="PLCC28" populate="true" layerRef="BOTTOM"/> + <RefDes name="U10" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="100E151"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="100E116" quantity="4" pinCount="28" category="ELECTRICAL"> + <RefDes name="U16" packageRef="PLCC28" populate="true" layerRef="BOTTOM"/> + <RefDes name="U3" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <RefDes name="U2" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <RefDes name="U1" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="100E116"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="100E101" quantity="1" pinCount="28" category="ELECTRICAL"> + <RefDes name="U4" packageRef="PLCC28" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="100E101"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="100E016" quantity="1" pinCount="28" category="ELECTRICAL"> + <RefDes name="U14" packageRef="PLCC28" populate="true" layerRef="BOTTOM"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="100E016"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="IC"/> + </Characteristics> + </BomItem> + <BomItem OEMDesignNumberRef="SIP" quantity="5" pinCount="9" category="ELECTRICAL"> + <RefDes name="R15" packageRef="SIP9" populate="true" layerRef="TOP"/> + <RefDes name="R14" packageRef="SIP9" populate="true" layerRef="TOP"/> + <RefDes name="R9" packageRef="SIP9" populate="true" layerRef="TOP"/> + <RefDes name="R2" packageRef="SIP9" populate="true" layerRef="TOP"/> + <RefDes name="R1" packageRef="SIP9" populate="true" layerRef="TOP"/> + <Characteristics category="ELECTRICAL"> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="DEVICE_TYPE" textualCharacteristicValue="SIP"/> + <Textual definitionSource="ALLEGRO" textualCharacteristicName="COMP_CLASS" textualCharacteristicValue="DISCRETE"/> + </Characteristics> + </BomItem> + </Bom> + <Ecad name="Design"> + <CadHeader units="INCH"> + <Spec name="SPEC_LAYER_TOP"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="CONDUCTOR"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + <Spec name="SPEC_LAYER_DIELECTRIC_INDEX_2"> + <General type="MATERIAL"> + <Property text="FR-4"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="DIELECTRIC"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="0.0" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="4.500"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.035"/> + </Dielectric> + </Spec> + <Spec name="SPEC_LAYER_GND"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="PLANE"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_IS_SHIELD"> + <Property text="false"/> + </General> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + <Spec name="SPEC_LAYER_DIELECTRIC_INDEX_4"> + <General type="MATERIAL"> + <Property text="FR-4"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="DIELECTRIC"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="0.0" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="4.500"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.035"/> + </Dielectric> + </Spec> + <Spec name="SPEC_LAYER_IS1"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="CONDUCTOR"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + <Spec name="SPEC_LAYER_DIELECTRIC_INDEX_6"> + <General type="MATERIAL"> + <Property text="FR-4"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="DIELECTRIC"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="0.0" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="4.500"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.035"/> + </Dielectric> + </Spec> + <Spec name="SPEC_LAYER_IS2"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="CONDUCTOR"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + <Spec name="SPEC_LAYER_DIELECTRIC_INDEX_8"> + <General type="MATERIAL"> + <Property text="FR-4"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="DIELECTRIC"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="0.0" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="4.500"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.035"/> + </Dielectric> + </Spec> + <Spec name="SPEC_LAYER_VCC"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="PLANE"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_IS_SHIELD"> + <Property text="false"/> + </General> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + <Spec name="SPEC_LAYER_DIELECTRIC_INDEX_10"> + <General type="MATERIAL"> + <Property text="FR-4"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="DIELECTRIC"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="0.0" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="4.500"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.035"/> + </Dielectric> + </Spec> + <Spec name="SPEC_LAYER_BOTTOM"> + <General type="MATERIAL"> + <Property text="COPPER"/> + </General> + <General type="OTHER" comment="LAYER_TYPE"> + <Property text="CONDUCTOR"/> + </General> + <Conductor type="CONDUCTIVITY"> + <Property value="595900.000" unit="MHO/CM"/> + </Conductor> + <Dielectric type="DIELECTRIC_CONSTANT"> + <Property value="1.000"/> + </Dielectric> + <Dielectric type="LOSS_TANGENT"> + <Property value="0.0"/> + </Dielectric> + <General type="OTHER" comment="LAYER_EMBEDDED_STATUS"> + <Property text="NOT_EMBEDDED"/> + </General> + </Spec> + </CadHeader> + <CadData> + <Layer name="TOP" layerFunction="CONDUCTOR" side="TOP" polarity="POSITIVE"> + </Layer> + <Layer name="DIELECTRIC_INDEX_2" layerFunction="DIELPREG" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="GND" layerFunction="PLANE" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="DIELECTRIC_INDEX_4" layerFunction="DIELPREG" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="IS1" layerFunction="CONDUCTOR" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="DIELECTRIC_INDEX_6" layerFunction="DIELPREG" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="IS2" layerFunction="CONDUCTOR" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="DIELECTRIC_INDEX_8" layerFunction="DIELPREG" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="VCC" layerFunction="PLANE" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="DIELECTRIC_INDEX_10" layerFunction="DIELPREG" side="INTERNAL" polarity="POSITIVE"> + </Layer> + <Layer name="BOTTOM" layerFunction="CONDUCTOR" side="BOTTOM" polarity="POSITIVE"> + </Layer> + <Layer name="fab" layerFunction="DOCUMENT" side="NONE" polarity="POSITIVE"> + </Layer> + <Layer name="DRILL_1-6" layerFunction="DRILL" side="ALL" polarity="POSITIVE"> + <Span fromLayer="TOP" toLayer="BOTTOM"/> + </Layer> + <Layer name="asm_top" layerFunction="ASSEMBLY" side="TOP" polarity="POSITIVE"> + </Layer> + <Layer name="SS_TOP" layerFunction="DOCUMENT" side="TOP" polarity="POSITIVE"> + </Layer> + <Layer name="SS_BOT" layerFunction="DOCUMENT" side="BOTTOM" polarity="POSITIVE"> + </Layer> + <Layer name="asm_bot" layerFunction="ASSEMBLY" side="BOTTOM" polarity="POSITIVE"> + </Layer> + <Stackup name="PRIMARY" overallThickness="0.047" tolPlus="0.0" tolMinus="0.0" whereMeasured="METAL"> + <StackupGroup name="GROUP_PRIMARY" thickness="0.047" tolPlus="0.0" tolMinus="0.0"> + <StackupLayer layerOrGroupRef="TOP" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="1"> + <SpecRef id="SPEC_LAYER_TOP"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="DIELECTRIC_INDEX_2" thickness="0.008" tolPlus="0.0" tolMinus="0.0" sequence="2"> + <SpecRef id="SPEC_LAYER_DIELECTRIC_INDEX_2"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="GND" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="3"> + <SpecRef id="SPEC_LAYER_GND"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="DIELECTRIC_INDEX_4" thickness="0.008" tolPlus="0.0" tolMinus="0.0" sequence="4"> + <SpecRef id="SPEC_LAYER_DIELECTRIC_INDEX_4"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="IS1" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="5"> + <SpecRef id="SPEC_LAYER_IS1"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="DIELECTRIC_INDEX_6" thickness="0.008" tolPlus="0.0" tolMinus="0.0" sequence="6"> + <SpecRef id="SPEC_LAYER_DIELECTRIC_INDEX_6"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="IS2" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="7"> + <SpecRef id="SPEC_LAYER_IS2"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="DIELECTRIC_INDEX_8" thickness="0.008" tolPlus="0.0" tolMinus="0.0" sequence="8"> + <SpecRef id="SPEC_LAYER_DIELECTRIC_INDEX_8"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="VCC" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="9"> + <SpecRef id="SPEC_LAYER_VCC"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="DIELECTRIC_INDEX_10" thickness="0.008" tolPlus="0.0" tolMinus="0.0" sequence="10"> + <SpecRef id="SPEC_LAYER_DIELECTRIC_INDEX_10"/> + </StackupLayer> + <StackupLayer layerOrGroupRef="BOTTOM" thickness="0.001" tolPlus="0.0" tolMinus="0.0" sequence="11"> + <SpecRef id="SPEC_LAYER_BOTTOM"/> + </StackupLayer> + </StackupGroup> + </Stackup> + <Step name="test-3_r2.-17_4"> + <PadStackDef name="100C75D"> + <PadstackHoleDef name="PH75" diameter="0.075" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_9"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_9"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_10"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_28"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_10"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_28"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_10"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_28"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_10"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_28"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_9"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_9"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="52C31D"> + <PadstackHoleDef name="PH31" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_29"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_29"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_29"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_29"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_11"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="CIR62D35P"> + <PadstackHoleDef name="PH35" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_12"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="TH-125-NP"> + <PadstackHoleDef name="NH125" diameter="0.125" platingStatus="NONPLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_13"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="SMD25_40"> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="SMD50_25"> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="SMD40_75"> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="VIA"> + <PadstackHoleDef name="PH24" diameter="0.024" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_14"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PadstackPadDef> + </PadStackDef> + <PadStackDef name="CIR75_51D"> + <PadstackHoleDef name="PH51" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + <PadstackPadDef layerRef="TOP" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="GND" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS1" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="IS2" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="ANTIPAD"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="THERMAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="VCC" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + <PadstackPadDef layerRef="BOTTOM" padUse="REGULAR"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PadstackPadDef> + </PadStackDef> + <Datum x="0.0" y="0.0"/> + <Profile> + <Polygon> + <PolyBegin x="0.0" y="-0.250"/> + <PolyStepSegment x="3.250" y="-0.250"/> + <PolyStepSegment x="3.500" y="0.0"/> + <PolyStepSegment x="3.500" y="0.300"/> + <PolyStepCurve x="3.535" y="0.386" centerX="3.621307" centerY="0.300753" clockwise="true"/> + <PolyStepSegment x="3.550" y="0.400"/> + <PolyStepSegment x="3.614" y="0.464"/> + <PolyStepCurve x="3.650" y="0.550" centerX="3.528979" centerY="0.550125" clockwise="false"/> + <PolyStepSegment x="3.650" y="1.300"/> + <PolyStepSegment x="3.400" y="1.500"/> + <PolyStepSegment x="3.400" y="1.700"/> + <PolyStepCurve x="3.450" y="1.700" centerX="3.425000" centerY="1.700000" clockwise="true"/> + <PolyStepSegment x="3.450" y="1.550"/> + <PolyStepSegment x="3.500" y="1.500"/> + <PolyStepSegment x="3.600" y="1.500"/> + <PolyStepSegment x="3.650" y="1.550"/> + <PolyStepSegment x="3.650" y="2.150"/> + <PolyStepCurve x="3.600" y="2.200" centerX="3.600000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.500" y="2.200"/> + <PolyStepCurve x="3.450" y="2.150" centerX="3.500000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.450" y="1.900"/> + <PolyStepCurve x="3.400" y="1.900" centerX="3.425000" centerY="1.900000" clockwise="true"/> + <PolyStepSegment x="3.400" y="2.250"/> + <PolyStepSegment x="3.450" y="2.300"/> + <PolyStepSegment x="3.600" y="2.300"/> + <PolyStepSegment x="3.650" y="2.350"/> + <PolyStepSegment x="3.650" y="3.800"/> + <PolyStepCurve x="3.450" y="4.000" centerX="3.450000" centerY="3.800000" clockwise="false"/> + <PolyStepCurve x="2.450" y="4.100" centerX="3.450000" centerY="9.050000" clockwise="true"/> + <PolyStepSegment x="-0.250" y="4.100"/> + <PolyStepSegment x="-0.250" y="0.0"/> + <PolyStepCurve x="0.0" y="-0.250" centerX="0.0" centerY="0.0" clockwise="false"/> + </Polygon> + <Cutout> + <PolyBegin x="2.978" y="1.930"/> + <PolyStepSegment x="3.328" y="2.213"/> + <PolyStepCurve x="3.335" y="2.283" centerX="3.296227" centerY="2.251527" clockwise="false"/> + <PolyStepCurve x="3.265" y="2.291" centerX="3.295975" centerY="2.251785" clockwise="false"/> + <PolyStepSegment x="2.915" y="2.008"/> + <PolyStepCurve x="2.908" y="1.937" centerX="2.946444" centerY="1.969055" clockwise="false"/> + <PolyStepCurve x="2.978" y="1.930" centerX="2.946527" centerY="1.968770" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="2.853" y="2.847"/> + <PolyStepSegment x="3.171" y="2.529"/> + <PolyStepCurve x="3.241" y="2.529" centerX="3.206000" centerY="2.564666" clockwise="false"/> + <PolyStepCurve x="3.241" y="2.600" centerX="3.205974" centerY="2.564500" clockwise="false"/> + <PolyStepSegment x="2.923" y="2.918"/> + <PolyStepCurve x="2.853" y="2.918" centerX="2.888000" centerY="2.882659" clockwise="false"/> + <PolyStepCurve x="2.853" y="2.847" centerX="2.887983" centerY="2.882500" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="2.900" y="2.350"/> + <PolyStepSegment x="3.350" y="2.350"/> + <PolyStepCurve x="3.400" y="2.400" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="3.350" y="2.450" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepSegment x="2.900" y="2.450"/> + <PolyStepCurve x="2.850" y="2.400" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="2.900" y="2.350" centerX="2.900000" centerY="2.400000" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="3.450" y="2.900"/> + <PolyStepSegment x="3.450" y="2.450"/> + <PolyStepCurve x="3.500" y="2.400" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepCurve x="3.550" y="2.450" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepSegment x="3.550" y="2.900"/> + <PolyStepCurve x="3.500" y="2.950" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="3.450" y="2.900" centerX="3.500000" centerY="2.900000" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="3.429" y="3.017"/> + <PolyStepSegment x="3.366" y="3.095"/> + <PolyStepSegment x="3.095" y="2.873"/> + <PolyStepSegment x="3.158" y="2.796"/> + <PolyStepSegment x="3.429" y="3.017"/> + </Cutout> + <Cutout> + <PolyBegin x="3.350" y="3.300"/> + <PolyStepSegment x="3.400" y="3.350"/> + <PolyStepSegment x="3.150" y="3.600"/> + <PolyStepSegment x="3.100" y="3.550"/> + <PolyStepSegment x="3.350" y="3.300"/> + </Cutout> + <Cutout> + <PolyBegin x="3.400" y="3.150"/> + <PolyStepSegment x="3.400" y="3.250"/> + <PolyStepSegment x="3.050" y="3.250"/> + <PolyStepSegment x="3.050" y="3.150"/> + <PolyStepSegment x="3.400" y="3.150"/> + </Cutout> + <Cutout> + <PolyBegin x="3.450" y="3.600"/> + <PolyStepSegment x="3.550" y="3.600"/> + <PolyStepSegment x="3.550" y="3.150"/> + <PolyStepSegment x="3.450" y="3.150"/> + <PolyStepSegment x="3.450" y="3.600"/> + </Cutout> + <Cutout> + <PolyBegin x="3.300" y="1.150"/> + <PolyStepCurve x="3.550" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="0.650" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.050" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="1.150" centerX="3.300000" centerY="0.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.150" y="0.050"/> + <PolyStepCurve x="2.250" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <PolyStepCurve x="2.150" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.050" y="0.100"/> + <PolyStepCurve x="2.050" y="0.0" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <PolyStepCurve x="2.050" y="0.100" centerX="2.050000" centerY="0.050000" clockwise="false"/> + </Cutout> + </Profile> + <Package name="ELECTROMECH" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.265"> + <Outline> + <Polygon> + <PolyBegin x="-0.100" y="-0.162"/> + <PolyStepSegment x="-0.100" y="-0.112"/> + <PolyStepCurve x="-0.112" y="-0.100" centerX="-0.112500" centerY="-0.112500" clockwise="false"/> + <PolyStepSegment x="-0.275" y="-0.100"/> + <PolyStepCurve x="-0.300" y="-0.075" centerX="-0.275000" centerY="-0.075000" clockwise="true"/> + <PolyStepSegment x="-0.300" y="0.075"/> + <PolyStepCurve x="-0.275" y="0.100" centerX="-0.275000" centerY="0.075000" clockwise="true"/> + <PolyStepSegment x="-0.112" y="0.100"/> + <PolyStepCurve x="-0.100" y="0.112" centerX="-0.112500" centerY="0.112500" clockwise="false"/> + <PolyStepSegment x="-0.100" y="0.138"/> + <PolyStepCurve x="-0.088" y="0.150" centerX="-0.087500" centerY="0.137500" clockwise="true"/> + <PolyStepSegment x="0.488" y="0.150"/> + <PolyStepCurve x="0.500" y="0.138" centerX="0.487500" centerY="0.137500" clockwise="true"/> + <PolyStepSegment x="0.500" y="0.112"/> + <PolyStepCurve x="0.512" y="0.100" centerX="0.512500" centerY="0.112500" clockwise="false"/> + <PolyStepSegment x="0.675" y="0.100"/> + <PolyStepCurve x="0.700" y="0.075" centerX="0.675000" centerY="0.075000" clockwise="true"/> + <PolyStepSegment x="0.700" y="-0.075"/> + <PolyStepCurve x="0.675" y="-0.100" centerX="0.675000" centerY="-0.075000" clockwise="true"/> + <PolyStepSegment x="0.512" y="-0.100"/> + <PolyStepCurve x="0.500" y="-0.112" centerX="0.512500" centerY="-0.112500" clockwise="false"/> + <PolyStepSegment x="0.500" y="-0.162"/> + <PolyStepCurve x="0.462" y="-0.200" centerX="0.462500" centerY="-0.162500" clockwise="true"/> + <PolyStepSegment x="-0.062" y="-0.200"/> + <PolyStepCurve x="-0.100" y="-0.162" centerX="-0.062500" centerY="-0.162500" clockwise="true"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.200" y="-0.025"/> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.300" y="-0.200"/> + <PolyStepSegment x="-0.300" y="0.150"/> + <PolyStepSegment x="0.700" y="0.150"/> + <PolyStepSegment x="0.700" y="-0.200"/> + <PolyStepSegment x="-0.300" y="-0.200"/> + </Polygon> + <LineDesc lineEnd="ROUND" lineWidth="0.0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.262" y="0.0"/> + <PolyStepCurve x="-0.138" y="0.0" centerX="-0.200000" centerY="0.0" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.262" y="0.0"/> + <PolyStepCurve x="-0.138" y="0.0" centerX="-0.200000" centerY="0.0" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.662" y="0.0"/> + <PolyStepCurve x="0.538" y="0.0" centerX="0.600000" centerY="0.0" clockwise="false"/> + <PolyStepCurve x="0.662" y="0.0" centerX="0.600000" centerY="0.0" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="-0.188"/> + <PolyStepSegment x="0.500" y="-0.112"/> + <PolyStepCurve x="0.512" y="-0.100" centerX="0.512500" centerY="-0.112500" clockwise="true"/> + <PolyStepSegment x="0.688" y="-0.100"/> + <PolyStepCurve x="0.700" y="-0.088" centerX="0.687500" centerY="-0.087500" clockwise="false"/> + <PolyStepSegment x="0.700" y="0.088"/> + <PolyStepCurve x="0.688" y="0.100" centerX="0.687500" centerY="0.087500" clockwise="false"/> + <PolyStepSegment x="0.512" y="0.100"/> + <PolyStepCurve x="0.500" y="0.112" centerX="0.512500" centerY="0.112500" clockwise="true"/> + <PolyStepSegment x="0.500" y="0.138"/> + <PolyStepCurve x="0.488" y="0.150" centerX="0.487500" centerY="0.137500" clockwise="false"/> + <PolyStepSegment x="-0.088" y="0.150"/> + <PolyStepCurve x="-0.100" y="0.138" centerX="-0.087500" centerY="0.137500" clockwise="false"/> + <PolyStepSegment x="-0.100" y="0.112"/> + <PolyStepCurve x="-0.112" y="0.100" centerX="-0.112500" centerY="0.112500" clockwise="true"/> + <PolyStepSegment x="-0.288" y="0.100"/> + <PolyStepCurve x="-0.300" y="0.088" centerX="-0.287500" centerY="0.087500" clockwise="false"/> + <PolyStepSegment x="-0.300" y="-0.088"/> + <PolyStepCurve x="-0.288" y="-0.100" centerX="-0.287500" centerY="-0.087500" clockwise="false"/> + <PolyStepSegment x="-0.112" y="-0.100"/> + <PolyStepCurve x="-0.100" y="-0.112" centerX="-0.112500" centerY="-0.112500" clockwise="true"/> + <PolyStepSegment x="-0.100" y="-0.188"/> + <PolyStepCurve x="-0.088" y="-0.200" centerX="-0.087500" centerY="-0.187500" clockwise="false"/> + <PolyStepSegment x="0.488" y="-0.200"/> + <PolyStepCurve x="0.500" y="-0.188" centerX="0.487500" centerY="-0.187500" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="MECH1" type="THRU" electricalType="MECHANICAL"> + <Location x="0.600" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pin> + <Pin number="MECH2" type="THRU" electricalType="MECHANICAL"> + <Location x="-0.200" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pin> + <Pin number="10" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.400" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="9" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.300" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="8" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.200" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="7" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.100" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="6" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="5" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.400" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="4" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.300" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="3" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.200" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="2" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.100" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + <Pin number="1" type="THRU" electricalType="ELECTRICAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + </Pin> + </Package> + <Package name="SHIELD" type="OTHER" pinOneOrientation="OTHER" height="0.750"> + <Outline> + <Polygon> + <PolyBegin x="-0.925" y="-0.150"/> + <PolyStepSegment x="-0.925" y="0.150"/> + <PolyStepSegment x="0.925" y="0.150"/> + <PolyStepSegment x="0.925" y="-0.150"/> + <PolyStepSegment x="-0.925" y="-0.150"/> + </Polygon> + <LineDesc lineEnd="ROUND" lineWidth="0.0"/> + </Outline> + <PickupPoint x="0.0" y="0.0"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.875" y="-0.025"/> + <PolyStepSegment x="0.875" y="0.025"/> + <PolyStepSegment x="-0.875" y="0.025"/> + <PolyStepSegment x="-0.875" y="-0.025"/> + <PolyStepSegment x="0.875" y="-0.025"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.900" y="0.050"/> + <PolyStepSegment x="-0.825" y="0.050"/> + <PolyStepSegment x="-0.825" y="0.075"/> + <PolyStepSegment x="-0.775" y="0.075"/> + <PolyStepSegment x="-0.775" y="0.050"/> + <PolyStepSegment x="-0.125" y="0.050"/> + <PolyStepSegment x="-0.125" y="0.075"/> + <PolyStepSegment x="-0.075" y="0.075"/> + <PolyStepSegment x="-0.075" y="0.050"/> + <PolyStepSegment x="0.575" y="0.050"/> + <PolyStepSegment x="0.575" y="0.075"/> + <PolyStepSegment x="0.625" y="0.075"/> + <PolyStepSegment x="0.625" y="0.050"/> + <PolyStepSegment x="0.900" y="0.050"/> + <PolyStepSegment x="0.900" y="-0.050"/> + <PolyStepSegment x="0.725" y="-0.050"/> + <PolyStepSegment x="0.725" y="-0.075"/> + <PolyStepSegment x="0.675" y="-0.075"/> + <PolyStepSegment x="0.675" y="-0.050"/> + <PolyStepSegment x="0.125" y="-0.050"/> + <PolyStepSegment x="0.125" y="-0.075"/> + <PolyStepSegment x="0.075" y="-0.075"/> + <PolyStepSegment x="0.075" y="-0.050"/> + <PolyStepSegment x="-0.675" y="-0.050"/> + <PolyStepSegment x="-0.675" y="-0.075"/> + <PolyStepSegment x="-0.725" y="-0.075"/> + <PolyStepSegment x="-0.725" y="-0.050"/> + <PolyStepSegment x="-0.900" y="-0.050"/> + <PolyStepSegment x="-0.900" y="0.050"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.900" y="0.050"/> + <PolyStepSegment x="-0.825" y="0.050"/> + <PolyStepSegment x="-0.825" y="0.075"/> + <PolyStepSegment x="-0.775" y="0.075"/> + <PolyStepSegment x="-0.775" y="0.050"/> + <PolyStepSegment x="-0.125" y="0.050"/> + <PolyStepSegment x="-0.125" y="0.075"/> + <PolyStepSegment x="-0.075" y="0.075"/> + <PolyStepSegment x="-0.075" y="0.050"/> + <PolyStepSegment x="0.575" y="0.050"/> + <PolyStepSegment x="0.575" y="0.075"/> + <PolyStepSegment x="0.625" y="0.075"/> + <PolyStepSegment x="0.625" y="0.050"/> + <PolyStepSegment x="0.900" y="0.050"/> + <PolyStepSegment x="0.900" y="-0.050"/> + <PolyStepSegment x="0.725" y="-0.050"/> + <PolyStepSegment x="0.725" y="-0.075"/> + <PolyStepSegment x="0.675" y="-0.075"/> + <PolyStepSegment x="0.675" y="-0.050"/> + <PolyStepSegment x="0.125" y="-0.050"/> + <PolyStepSegment x="0.125" y="-0.075"/> + <PolyStepSegment x="0.075" y="-0.075"/> + <PolyStepSegment x="0.075" y="-0.050"/> + <PolyStepSegment x="-0.675" y="-0.050"/> + <PolyStepSegment x="-0.675" y="-0.075"/> + <PolyStepSegment x="-0.725" y="-0.075"/> + <PolyStepSegment x="-0.725" y="-0.050"/> + <PolyStepSegment x="-0.900" y="-0.050"/> + <PolyStepSegment x="-0.900" y="0.050"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="MECH1" type="THRU" electricalType="MECHANICAL"> + <Location x="0.700" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + <Pin number="MECH2" type="THRU" electricalType="MECHANICAL"> + <Location x="0.600" y="0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + <Pin number="MECH3" type="THRU" electricalType="MECHANICAL"> + <Location x="0.100" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + <Pin number="MECH4" type="THRU" electricalType="MECHANICAL"> + <Location x="-0.100" y="0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + <Pin number="MECH5" type="THRU" electricalType="MECHANICAL"> + <Location x="-0.700" y="-0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + <Pin number="MECH6" type="THRU" electricalType="MECHANICAL"> + <Location x="-0.800" y="0.100"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pin> + </Package> + <Package name="1206T" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.020"> + <Outline> + <Polygon> + <PolyBegin x="-0.085" y="-0.040"/> + <PolyStepSegment x="-0.085" y="0.040"/> + <PolyStepSegment x="0.085" y="0.040"/> + <PolyStepSegment x="0.085" y="-0.040"/> + <PolyStepSegment x="-0.085" y="-0.040"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.0" y="0.0"/> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.100" y="-0.050"/> + <PolyStepSegment x="0.100" y="-0.050"/> + <PolyStepSegment x="0.100" y="0.050"/> + <PolyStepSegment x="-0.100" y="0.050"/> + <PolyStepSegment x="-0.100" y="-0.050"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.100" y="-0.050"/> + <PolyStepSegment x="0.100" y="-0.050"/> + <PolyStepSegment x="0.100" y="0.050"/> + <PolyStepSegment x="-0.100" y="0.050"/> + <PolyStepSegment x="-0.100" y="-0.050"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="2" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.062" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + </Pin> + <Pin number="1" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.062" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + </Pin> + </Package> + <Package name="SOIC14" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.100"> + <Outline> + <Polygon> + <PolyBegin x="-0.045" y="-0.335"/> + <PolyStepSegment x="0.220" y="-0.335"/> + <PolyStepSegment x="0.220" y="0.035"/> + <PolyStepSegment x="-0.045" y="0.035"/> + <PolyStepSegment x="-0.045" y="-0.335"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.088" y="-0.150"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.040" y="0.035"/> + <PolyStepSegment x="0.040" y="-0.335"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.045" y="-0.335"/> + <PolyStepSegment x="0.220" y="-0.335"/> + <PolyStepSegment x="0.220" y="0.035"/> + <PolyStepSegment x="-0.045" y="0.035"/> + <PolyStepSegment x="-0.045" y="-0.335"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.045" y="-0.335"/> + <PolyStepSegment x="0.220" y="-0.335"/> + <PolyStepSegment x="0.220" y="0.035"/> + <PolyStepSegment x="-0.045" y="0.035"/> + <PolyStepSegment x="-0.045" y="-0.335"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.045" y="-0.335"/> + <PolyStepSegment x="0.220" y="-0.335"/> + <PolyStepSegment x="0.220" y="0.035"/> + <PolyStepSegment x="-0.045" y="0.035"/> + <PolyStepSegment x="-0.045" y="-0.335"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="13" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="14" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="12" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="10" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="11" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="9" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="8" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="7" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="6" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="5" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="4" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="3" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="2" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="1" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + </Package> + <Package name="SOIC8" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.150"> + <Outline> + <Polygon> + <PolyBegin x="-0.140" y="-0.110"/> + <PolyStepSegment x="0.125" y="-0.110"/> + <PolyStepSegment x="0.125" y="0.110"/> + <PolyStepSegment x="-0.140" y="0.110"/> + <PolyStepSegment x="-0.140" y="-0.110"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.002" y="-0.005"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.055" y="0.110"/> + <PolyStepSegment x="-0.055" y="-0.110"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.140" y="-0.110"/> + <PolyStepSegment x="0.125" y="-0.110"/> + <PolyStepSegment x="0.125" y="0.110"/> + <PolyStepSegment x="-0.140" y="0.110"/> + <PolyStepSegment x="-0.140" y="-0.110"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.140" y="-0.110"/> + <PolyStepSegment x="0.125" y="-0.110"/> + <PolyStepSegment x="0.125" y="0.110"/> + <PolyStepSegment x="-0.140" y="0.110"/> + <PolyStepSegment x="-0.140" y="-0.110"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.140" y="-0.110"/> + <PolyStepSegment x="0.125" y="-0.110"/> + <PolyStepSegment x="0.125" y="0.110"/> + <PolyStepSegment x="-0.140" y="0.110"/> + <PolyStepSegment x="-0.140" y="-0.110"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="7" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.080" y="0.025"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="8" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.080" y="0.075"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="6" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.080" y="-0.025"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="5" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.080" y="-0.075"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="4" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.095" y="-0.075"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="3" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.095" y="-0.025"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="2" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.095" y="0.025"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="1" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.095" y="0.075"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + </Package> + <Package name="SOIC16" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.100"> + <Outline> + <Polygon> + <PolyBegin x="0.220" y="-0.375"/> + <PolyStepSegment x="0.220" y="0.025"/> + <PolyStepSegment x="-0.045" y="0.025"/> + <PolyStepSegment x="-0.045" y="-0.375"/> + <PolyStepSegment x="0.220" y="-0.375"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.088" y="-0.175"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.040" y="0.025"/> + <PolyStepSegment x="0.040" y="-0.375"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.045" y="-0.375"/> + <PolyStepSegment x="0.220" y="-0.375"/> + <PolyStepSegment x="0.220" y="0.025"/> + <PolyStepSegment x="-0.045" y="0.025"/> + <PolyStepSegment x="-0.045" y="-0.375"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="-0.045" y="-0.375"/> + <PolyStepSegment x="0.220" y="-0.375"/> + <PolyStepSegment x="0.220" y="0.025"/> + <PolyStepSegment x="-0.045" y="0.025"/> + <PolyStepSegment x="-0.045" y="-0.375"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.045" y="-0.375"/> + <PolyStepSegment x="0.220" y="-0.375"/> + <PolyStepSegment x="0.220" y="0.025"/> + <PolyStepSegment x="-0.045" y="0.025"/> + <PolyStepSegment x="-0.045" y="-0.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="16" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="15" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="14" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="12" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="13" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="10" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="11" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="9" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.175" y="-0.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="8" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="7" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="6" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="5" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="4" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="3" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="2" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="1" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + </Package> + <Package name="PLCC28" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.175"> + <Outline> + <Polygon> + <PolyBegin x="-0.250" y="-0.250"/> + <PolyStepSegment x="0.250" y="-0.250"/> + <PolyStepSegment x="0.250" y="0.250"/> + <PolyStepSegment x="-0.250" y="0.250"/> + <PolyStepSegment x="-0.250" y="-0.250"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.0" y="0.0"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.020" y="0.150"/> + <PolyStepCurve x="-0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="false"/> + <PolyStepCurve x="0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="false"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.180" y="0.240"/> + <PolyStepSegment x="-0.240" y="0.180"/> + <PolyStepSegment x="-0.240" y="-0.240"/> + <PolyStepSegment x="0.240" y="-0.240"/> + <PolyStepSegment x="0.240" y="0.240"/> + <PolyStepSegment x="-0.180" y="0.240"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="0.020" y="0.150"/> + <PolyStepCurve x="-0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="true"/> + <PolyStepCurve x="0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="true"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.020" y="0.150"/> + <PolyStepCurve x="-0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="false"/> + <PolyStepCurve x="0.020" y="0.150" centerX="0.0" centerY="0.150000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.240" y="0.240"/> + <PolyStepSegment x="0.240" y="-0.240"/> + <PolyStepSegment x="-0.240" y="-0.240"/> + <PolyStepSegment x="-0.240" y="0.180"/> + <PolyStepSegment x="-0.180" y="0.240"/> + <PolyStepSegment x="0.240" y="0.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="25" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="24" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="23" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="21" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="22" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="20" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="19" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.210" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="5" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="6" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="7" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="9" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="-0.050"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="8" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="0.0"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="10" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="-0.100"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="11" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.210" y="-0.150"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </Pin> + <Pin number="26" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.150" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="27" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.100" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="28" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.050" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="1" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="2" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.050" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="3" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.100" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="4" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.150" y="0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="18" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.150" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="17" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.100" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="16" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.050" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="15" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="0.0" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="14" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.050" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="13" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.100" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + <Pin number="12" type="SURFACE" electricalType="ELECTRICAL"> + <Location x="-0.150" y="-0.210"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </Pin> + </Package> + <Package name="SIP9" type="OTHER" pinOne="1" pinOneOrientation="OTHER" height="0.300"> + <Outline> + <Polygon> + <PolyBegin x="0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="-0.060"/> + <PolyStepSegment x="0.060" y="-0.060"/> + <PolyStepSegment x="0.060" y="1.320"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <PickupPoint x="0.0" y="0.630"/> + <SilkScreen> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.040" y="-0.060"/> + <PolyStepSegment x="0.060" y="-0.040"/> + <PolyStepSegment x="0.060" y="0.060"/> + <PolyStepSegment x="0.045" y="0.075"/> + <PolyStepSegment x="0.060" y="0.090"/> + <PolyStepSegment x="0.060" y="0.220"/> + <PolyStepSegment x="0.045" y="0.235"/> + <PolyStepSegment x="0.060" y="0.250"/> + <PolyStepSegment x="0.060" y="0.375"/> + <PolyStepSegment x="0.045" y="0.390"/> + <PolyStepSegment x="0.060" y="0.405"/> + <PolyStepSegment x="0.060" y="0.530"/> + <PolyStepSegment x="0.045" y="0.545"/> + <PolyStepSegment x="0.060" y="0.560"/> + <PolyStepSegment x="0.060" y="0.690"/> + <PolyStepSegment x="0.045" y="0.705"/> + <PolyStepSegment x="0.060" y="0.720"/> + <PolyStepSegment x="0.060" y="0.845"/> + <PolyStepSegment x="0.045" y="0.860"/> + <PolyStepSegment x="0.060" y="0.875"/> + <PolyStepSegment x="0.060" y="1.000"/> + <PolyStepSegment x="0.045" y="1.015"/> + <PolyStepSegment x="0.060" y="1.030"/> + <PolyStepSegment x="0.060" y="1.160"/> + <PolyStepSegment x="0.045" y="1.175"/> + <PolyStepSegment x="0.060" y="1.190"/> + <PolyStepSegment x="0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="1.190"/> + <PolyStepSegment x="-0.045" y="1.175"/> + <PolyStepSegment x="-0.060" y="1.160"/> + <PolyStepSegment x="-0.060" y="1.030"/> + <PolyStepSegment x="-0.045" y="1.015"/> + <PolyStepSegment x="-0.060" y="1.000"/> + <PolyStepSegment x="-0.060" y="0.875"/> + <PolyStepSegment x="-0.045" y="0.860"/> + <PolyStepSegment x="-0.060" y="0.845"/> + <PolyStepSegment x="-0.060" y="0.720"/> + <PolyStepSegment x="-0.045" y="0.705"/> + <PolyStepSegment x="-0.060" y="0.690"/> + <PolyStepSegment x="-0.060" y="0.560"/> + <PolyStepSegment x="-0.045" y="0.545"/> + <PolyStepSegment x="-0.060" y="0.530"/> + <PolyStepSegment x="-0.060" y="0.405"/> + <PolyStepSegment x="-0.045" y="0.390"/> + <PolyStepSegment x="-0.060" y="0.375"/> + <PolyStepSegment x="-0.060" y="0.250"/> + <PolyStepSegment x="-0.045" y="0.235"/> + <PolyStepSegment x="-0.060" y="0.220"/> + <PolyStepSegment x="-0.060" y="0.090"/> + <PolyStepSegment x="-0.045" y="0.075"/> + <PolyStepSegment x="-0.060" y="0.060"/> + <PolyStepSegment x="-0.060" y="-0.040"/> + <PolyStepSegment x="-0.040" y="-0.060"/> + <PolyStepSegment x="0.040" y="-0.060"/> + <LineDescRef id="ROUND_0"/> + </Polyline> + </Marking> + </SilkScreen> + <AssemblyDrawing> + <Outline> + <Polygon> + <PolyBegin x="0.060" y="-0.040"/> + <PolyStepSegment x="0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="-0.040"/> + <PolyStepSegment x="-0.040" y="-0.060"/> + <PolyStepSegment x="0.040" y="-0.060"/> + <PolyStepSegment x="0.060" y="-0.040"/> + </Polygon> + <LineDescRef id="ROUND_0"/> + </Outline> + <Marking markingUsage="NONE"> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.060" y="-0.040"/> + <PolyStepSegment x="0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="1.320"/> + <PolyStepSegment x="-0.060" y="-0.040"/> + <PolyStepSegment x="-0.040" y="-0.060"/> + <PolyStepSegment x="0.040" y="-0.060"/> + <PolyStepSegment x="0.060" y="-0.040"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Marking> + </AssemblyDrawing> + <Pin number="1" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="3" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.312"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="2" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.156"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="4" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.469"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="5" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.625"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="6" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.781"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="7" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="0.938"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="8" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="1.094"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + <Pin number="9" type="THRU" electricalType="ELECTRICAL"> + <Xform rotation="90.000"/> + <Location x="0.0" y="1.250"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + </Pin> + </Package> + <Component refDes="J1" packageRef="ELECTROMECH" layerRef="TOP" part="ELECTROMECH" mountType="THMT" standoff="0.010" height="0.265"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + </Component> + <Component refDes="OR_00000258EB6DF090" packageRef="SHIELD" layerRef="TOP" part="" mountType="THMT" standoff="0.010" height="0.750"> + <Xform rotation="90.000"/> + <Location x="2.700" y="2.950"/> + </Component> + <Component refDes="C7" packageRef="1206T" layerRef="TOP" part="CAPACITOR-5P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="5P" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.900"/> + </Component> + <Component refDes="C2" packageRef="1206T" layerRef="TOP" part="CAPACITOR-5P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="5P" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.150" y="0.912"/> + </Component> + <Component refDes="C3" packageRef="1206T" layerRef="TOP" part="CAPACITOR-53P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="53P" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="0.550" y="0.900"/> + </Component> + <Component refDes="C5" packageRef="1206T" layerRef="TOP" part="CAPACITOR-53.4P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="53.4P" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="1.000" y="0.600"/> + </Component> + <Component refDes="C6" packageRef="1206T" layerRef="TOP" part="CAPACITOR-20.6P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="20.6P" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="1.150" y="0.600"/> + </Component> + <Component refDes="C4" packageRef="1206T" layerRef="TOP" part="CAPACITOR-173P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="173P" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.600"/> + </Component> + <Component refDes="R3" packageRef="1206T" layerRef="TOP" part="RESISTOR-10K" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="10K" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="0.700" y="0.300"/> + </Component> + <Component refDes="R7" packageRef="1206T" layerRef="TOP" part="RESISTOR-10K" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="10K" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.300"/> + </Component> + <Component refDes="R10" packageRef="1206T" layerRef="TOP" part="RESISTOR-10K" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="10K" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="0.850" y="0.600"/> + </Component> + <Component refDes="R11" packageRef="1206T" layerRef="TOP" part="RESISTOR-10K" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="10K" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.900"/> + </Component> + <Component refDes="R13" packageRef="1206T" layerRef="TOP" part="RESISTOR-1200" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="1200" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="1.800" y="0.600"/> + </Component> + <Component refDes="R5" packageRef="1206T" layerRef="TOP" part="RESISTOR-2250" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="2250" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.400" y="0.600"/> + </Component> + <Component refDes="R8" packageRef="1206T" layerRef="TOP" part="RESISTOR-3375" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="3375" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="0.400" y="0.300"/> + </Component> + <Component refDes="R4" packageRef="1206T" layerRef="TOP" part="RESISTOR-60K" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="60K" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="1.300" y="0.300"/> + </Component> + <Component refDes="R6" packageRef="1206T" layerRef="TOP" part="RESISTOR-6750" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="6750" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.600"/> + </Component> + <Component refDes="R12" packageRef="1206T" layerRef="TOP" part="RESISTOR-800" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="800" type="STRING"/> + <Xform rotation="270.000"/> + <Location x="1.650" y="0.600"/> + </Component> + <Component refDes="C1" packageRef="1206T" layerRef="TOP" part="CAPACITOR-5P" mountType="SMT" standoff="0.0" height="0.020"> + <NonstandardAttribute name="VALUE" value="5P" type="STRING"/> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.300"/> + </Component> + <Component refDes="U13" packageRef="SOIC14" layerRef="TOP" part="LM6685" mountType="SMT" standoff="0.0" height="0.100"> + <Xform rotation="90.000"/> + <Location x="1.600" y="0.212"/> + </Component> + <Component refDes="U7" packageRef="SOIC8" layerRef="TOP" part="HDL" mountType="SMT" standoff="0.0" height="0.150"> + <Xform rotation="90.000"/> + <Location x="1.350" y="0.908"/> + </Component> + <Component refDes="U12" packageRef="SOIC8" layerRef="TOP" part="CA3450" mountType="SMT" standoff="0.0" height="0.150"> + <Xform rotation="90.000"/> + <Location x="1.050" y="0.908"/> + </Component> + <Component refDes="U9" packageRef="SOIC8" layerRef="TOP" part="CA3450" mountType="SMT" standoff="0.0" height="0.150"> + <Xform rotation="90.000"/> + <Location x="0.375" y="0.895"/> + </Component> + <Component refDes="U8" packageRef="SOIC8" layerRef="TOP" part="CA3450" mountType="SMT" standoff="0.0" height="0.150"> + <Xform rotation="90.000"/> + <Location x="1.075" y="0.295"/> + </Component> + <Component refDes="U15" packageRef="SOIC16" layerRef="TOP" part="8BITD2A2" mountType="SMT" standoff="0.0" height="0.100"> + <Xform rotation="90.000"/> + <Location x="1.575" y="0.812"/> + </Component> + <Component refDes="U17" packageRef="PLCC28" layerRef="TOP" part="PHASESHIFT" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="90.000"/> + <Location x="1.050" y="3.350"/> + </Component> + <Component refDes="U18" packageRef="PLCC28" layerRef="TOP" part="PHASEACCUM" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="45.000"/> + <Location x="1.050" y="2.700"/> + </Component> + <Component refDes="U6" packageRef="PLCC28" layerRef="TOP" part="CY100E474" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="135.000"/> + <Location x="1.800" y="2.700"/> + </Component> + <Component refDes="U5" packageRef="PLCC28" layerRef="TOP" part="CY100E474" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="180.000"/> + <Location x="1.700" y="3.350"/> + </Component> + <Component refDes="U11" packageRef="PLCC28" layerRef="BOTTOM" part="100E151" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.750" y="1.350"/> + </Component> + <Component refDes="U10" packageRef="PLCC28" layerRef="TOP" part="100E151" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="35.096"/> + <Location x="1.850" y="2.000"/> + </Component> + <Component refDes="U16" packageRef="PLCC28" layerRef="BOTTOM" part="100E116" mountType="SMT" standoff="0.0" height="0.175"> + <Xform mirror="true"/> + <Location x="0.400" y="1.350"/> + </Component> + <Component refDes="U3" packageRef="PLCC28" layerRef="TOP" part="100E116" mountType="SMT" standoff="0.0" height="0.175"> + <Location x="0.400" y="3.350"/> + </Component> + <Component refDes="U2" packageRef="PLCC28" layerRef="TOP" part="100E116" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="225.000"/> + <Location x="0.400" y="2.050"/> + </Component> + <Component refDes="U1" packageRef="PLCC28" layerRef="TOP" part="100E116" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="315.000"/> + <Location x="1.150" y="2.000"/> + </Component> + <Component refDes="U4" packageRef="PLCC28" layerRef="TOP" part="100E101" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="270.000"/> + <Location x="0.400" y="2.700"/> + </Component> + <Component refDes="U14" packageRef="PLCC28" layerRef="BOTTOM" part="100E016" mountType="SMT" standoff="0.0" height="0.175"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.100" y="1.350"/> + </Component> + <Component refDes="R15" packageRef="SIP9" layerRef="TOP" part="SIP" mountType="THMT" standoff="0.0" height="0.300"> + <Location x="2.275" y="0.850"/> + </Component> + <Component refDes="R14" packageRef="SIP9" layerRef="TOP" part="SIP" mountType="THMT" standoff="0.0" height="0.300"> + <Xform rotation="315.000"/> + <Location x="2.300" y="0.650"/> + </Component> + <Component refDes="R9" packageRef="SIP9" layerRef="TOP" part="SIP" mountType="THMT" standoff="0.0" height="0.300"> + <Location x="2.250" y="2.300"/> + </Component> + <Component refDes="R2" packageRef="SIP9" layerRef="TOP" part="SIP" mountType="THMT" standoff="0.0" height="0.300"> + <Xform rotation="270.000"/> + <Location x="2.050" y="0.500"/> + </Component> + <Component refDes="R1" packageRef="SIP9" layerRef="TOP" part="SIP" mountType="THMT" standoff="0.0" height="0.300"> + <Location x="2.450" y="2.300"/> + </Component> + <LogicalNet name="ZEROCROSS"> + <PinRef pin="13" componentRef="U13"/> + <PinRef pin="27" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="WE"> + <PinRef pin="21" componentRef="U6"/> + <PinRef pin="21" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="WAVEOUT2"> + <PinRef pin="5" componentRef="U13"/> + <PinRef pin="6" componentRef="U12"/> + <PinRef pin="2" componentRef="U12"/> + <PinRef pin="2" componentRef="C5"/> + </LogicalNet> + <LogicalNet name="WAVEOUT1"> + <PinRef pin="1" componentRef="R3"/> + <PinRef pin="16" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="VTTD"> + <PinRef pin="1" componentRef="R2"/> + <PinRef pin="1" componentRef="R14"/> + <PinRef pin="1" componentRef="R9"/> + <PinRef pin="1" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="VTTA"> + <PinRef pin="1" componentRef="R13"/> + <PinRef pin="10" componentRef="U13"/> + <PinRef pin="1" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="VSS"> + <PinRef pin="4" componentRef="U12"/> + <PinRef pin="4" componentRef="U9"/> + <PinRef pin="4" componentRef="U8"/> + <PinRef pin="2" componentRef="R4"/> + </LogicalNet> + <LogicalNet name="VOUTB"> + <PinRef pin="14" componentRef="U13"/> + </LogicalNet> + <LogicalNet name="VHI"> + <PinRef pin="6" componentRef="U14"/> + <PinRef pin="5" componentRef="U14"/> + <PinRef pin="7" componentRef="U14"/> + <PinRef pin="22" componentRef="U14"/> + <PinRef pin="21" componentRef="U14"/> + <PinRef pin="23" componentRef="U14"/> + <PinRef pin="1" componentRef="R12"/> + <PinRef pin="2" componentRef="R13"/> + </LogicalNet> + <LogicalNet name="VDD"> + <PinRef pin="4" componentRef="U13"/> + <PinRef pin="13" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="VBB"> + <PinRef pin="14" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="UN1SIP108PA60"> + <PinRef pin="4" componentRef="R2"/> + <PinRef pin="20" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC7"> + <PinRef pin="8" componentRef="R9"/> + <PinRef pin="12" componentRef="U5"/> + <PinRef pin="2" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC6"> + <PinRef pin="13" componentRef="U5"/> + <PinRef pin="5" componentRef="R9"/> + <PinRef pin="28" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC5"> + <PinRef pin="16" componentRef="U5"/> + <PinRef pin="7" componentRef="R9"/> + <PinRef pin="26" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC4"> + <PinRef pin="27" componentRef="U10"/> + <PinRef pin="6" componentRef="R9"/> + <PinRef pin="17" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC3"> + <PinRef pin="13" componentRef="U6"/> + <PinRef pin="4" componentRef="R9"/> + <PinRef pin="3" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC2"> + <PinRef pin="4" componentRef="U10"/> + <PinRef pin="12" componentRef="U6"/> + <PinRef pin="9" componentRef="R9"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC1"> + <PinRef pin="26" componentRef="U11"/> + <PinRef pin="3" componentRef="R9"/> + <PinRef pin="16" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="UN1DAC71PDAC0"> + <PinRef pin="17" componentRef="U6"/> + <PinRef pin="2" componentRef="R9"/> + <PinRef pin="27" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="UN1CA345028PCMP20"> + <PinRef pin="2" componentRef="C1"/> + <PinRef pin="8" componentRef="U8"/> + </LogicalNet> + <LogicalNet name="UN1CA345028PCMP10"> + <PinRef pin="1" componentRef="U8"/> + <PinRef pin="1" componentRef="C1"/> + </LogicalNet> + <LogicalNet name="UN1CA345020PCMP20"> + <PinRef pin="2" componentRef="C2"/> + <PinRef pin="8" componentRef="U9"/> + </LogicalNet> + <LogicalNet name="UN1CA345020PCMP10"> + <PinRef pin="1" componentRef="U9"/> + <PinRef pin="1" componentRef="C2"/> + </LogicalNet> + <LogicalNet name="UN1CA345010PCMP20"> + <PinRef pin="2" componentRef="C7"/> + <PinRef pin="8" componentRef="U12"/> + </LogicalNet> + <LogicalNet name="UN1CA345010PCMP10"> + <PinRef pin="1" componentRef="U12"/> + <PinRef pin="1" componentRef="C7"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ50"> + <PinRef pin="13" componentRef="U10"/> + <PinRef pin="3" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ40"> + <PinRef pin="6" componentRef="R14"/> + <PinRef pin="15" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ30"> + <PinRef pin="20" componentRef="U10"/> + <PinRef pin="8" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ20"> + <PinRef pin="18" componentRef="U10"/> + <PinRef pin="7" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ10"> + <PinRef pin="2" componentRef="R14"/> + <PinRef pin="10" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1100E15169PQ0"> + <PinRef pin="8" componentRef="U10"/> + <PinRef pin="9" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E15168PQ10"> + <PinRef pin="18" componentRef="U11"/> + <PinRef pin="4" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E15168PQ0"> + <PinRef pin="20" componentRef="U11"/> + <PinRef pin="5" componentRef="R14"/> + </LogicalNet> + <LogicalNet name="UN1100E11699PB0"> + <PinRef pin="2" componentRef="U1"/> + <PinRef pin="4" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="UN1100E11698PY10"> + <PinRef pin="24" componentRef="U11"/> + <PinRef pin="20" componentRef="U3"/> + <PinRef pin="23" componentRef="U10"/> + <PinRef pin="2" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="UN1100E11698PY0"> + <PinRef pin="21" componentRef="U3"/> + <PinRef pin="2" componentRef="U17"/> + <PinRef pin="9" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="UN1100E11697PY10"> + <PinRef pin="6" componentRef="R1"/> + <PinRef pin="2" componentRef="U7"/> + <PinRef pin="18" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="UN1100E11697PY0"> + <PinRef pin="5" componentRef="R1"/> + <PinRef pin="2" componentRef="U18"/> + <PinRef pin="17" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="UN1100E11697PB0"> + <PinRef pin="9" componentRef="U1"/> + <PinRef pin="24" componentRef="U3"/> + <PinRef pin="26" componentRef="U3"/> + <PinRef pin="7" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="UN1100E11697PA0"> + <PinRef pin="8" componentRef="R1"/> + <PinRef pin="8" componentRef="U1"/> + <PinRef pin="25" componentRef="U3"/> + <PinRef pin="23" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="UN1100E11613PB0"> + <PinRef pin="2" componentRef="U16"/> + <PinRef pin="24" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="UN1100E116100PY0"> + <PinRef pin="2" componentRef="R2"/> + <PinRef pin="3" componentRef="U7"/> + <PinRef pin="21" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="UN1100E116100PA0"> + <PinRef pin="2" componentRef="U2"/> + <PinRef pin="23" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="UN1100E101101PY10"> + <PinRef pin="1" componentRef="U17"/> + <PinRef pin="1" componentRef="U18"/> + <PinRef pin="20" componentRef="U4"/> + <PinRef pin="9" componentRef="R2"/> + </LogicalNet> + <LogicalNet name="UN1100E101101PY0"> + <PinRef pin="25" componentRef="U11"/> + <PinRef pin="6" componentRef="R2"/> + <PinRef pin="19" componentRef="U4"/> + <PinRef pin="25" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="UN1100E101101PC0"> + <PinRef pin="7" componentRef="R2"/> + <PinRef pin="20" componentRef="U2"/> + <PinRef pin="22" componentRef="U4"/> + <PinRef pin="26" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="UN1100E01612PTC0"> + <PinRef pin="23" componentRef="U16"/> + <PinRef pin="19" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="RESET"> + <PinRef pin="24" componentRef="U6"/> + <PinRef pin="24" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="QUADRANT1"> + <PinRef pin="17" componentRef="U18"/> + <PinRef pin="15" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="QUADRANT0"> + <PinRef pin="16" componentRef="U17"/> + <PinRef pin="18" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="PULSEOUT"> + <PinRef pin="7" componentRef="U7"/> + </LogicalNet> + <LogicalNet name="PHASE7"> + <PinRef pin="19" componentRef="U18"/> + <PinRef pin="3" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="PHASE6"> + <PinRef pin="20" componentRef="U18"/> + <PinRef pin="5" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="PHASE5"> + <PinRef pin="6" componentRef="U17"/> + <PinRef pin="21" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="PHASE4"> + <PinRef pin="7" componentRef="U17"/> + <PinRef pin="22" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="PHASE3"> + <PinRef pin="8" componentRef="U17"/> + <PinRef pin="23" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="PHASE2"> + <PinRef pin="24" componentRef="U18"/> + <PinRef pin="9" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="PHASE1"> + <PinRef pin="25" componentRef="U18"/> + <PinRef pin="10" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="PHASE0"> + <PinRef pin="11" componentRef="U17"/> + <PinRef pin="26" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="OUT2"> + <PinRef pin="1" componentRef="R10"/> + <PinRef pin="2" componentRef="R6"/> + <PinRef pin="6" componentRef="U9"/> + <PinRef pin="1" componentRef="C3"/> + </LogicalNet> + <LogicalNet name="OUT1"> + <PinRef pin="6" componentRef="U8"/> + <PinRef pin="2" componentRef="R7"/> + <PinRef pin="2" componentRef="R8"/> + </LogicalNet> + <LogicalNet name="OFFSET1"> + <PinRef pin="12" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="OFFSET0"> + <PinRef pin="13" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="OE"> + <PinRef pin="20" componentRef="U6"/> + <PinRef pin="20" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="MRESET"> + <PinRef pin="25" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="INM3"> + <PinRef pin="1" componentRef="C6"/> + <PinRef pin="3" componentRef="U12"/> + <PinRef pin="2" componentRef="R11"/> + </LogicalNet> + <LogicalNet name="INM2"> + <PinRef pin="2" componentRef="U9"/> + <PinRef pin="2" componentRef="R5"/> + <PinRef pin="2" componentRef="C3"/> + </LogicalNet> + <LogicalNet name="INM1"> + <PinRef pin="2" componentRef="R3"/> + <PinRef pin="1" componentRef="R7"/> + <PinRef pin="1" componentRef="R4"/> + <PinRef pin="2" componentRef="U8"/> + </LogicalNet> + <LogicalNet name="IN2"> + <PinRef pin="1" componentRef="C4"/> + <PinRef pin="1" componentRef="R6"/> + <PinRef pin="1" componentRef="R5"/> + <PinRef pin="1" componentRef="R8"/> + </LogicalNet> + <LogicalNet name="FREQ_LOAD"> + <PinRef pin="3" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ9"> + <PinRef pin="7" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ8"> + <PinRef pin="8" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ7"> + <PinRef pin="9" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ6"> + <PinRef pin="10" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ5"> + <PinRef pin="11" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ4"> + <PinRef pin="12" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ3"> + <PinRef pin="13" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ2"> + <PinRef pin="14" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ11"> + <PinRef pin="5" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ10"> + <PinRef pin="6" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ1"> + <PinRef pin="15" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FREQ0"> + <PinRef pin="16" componentRef="U18"/> + </LogicalNet> + <LogicalNet name="FB3"> + <PinRef pin="1" componentRef="C5"/> + <PinRef pin="2" componentRef="R10"/> + <PinRef pin="1" componentRef="R11"/> + </LogicalNet> + <LogicalNet name="DISABLE"> + <PinRef pin="21" componentRef="U16"/> + <PinRef pin="5" componentRef="R2"/> + <PinRef pin="23" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="D7"> + <PinRef pin="10" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="D6"> + <PinRef pin="11" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="D5"> + <PinRef pin="18" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="D4"> + <PinRef pin="19" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="D3"> + <PinRef pin="11" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="D2"> + <PinRef pin="10" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="D1"> + <PinRef pin="18" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="D0"> + <PinRef pin="19" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="CS2"> + <PinRef pin="23" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="CS1"> + <PinRef pin="23" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="CLOCK"> + <PinRef pin="3" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="CLEAR"> + <PinRef pin="24" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="B7"> + <PinRef pin="1" componentRef="U15"/> + <PinRef pin="12" componentRef="U10"/> + <PinRef pin="6" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="B6"> + <PinRef pin="6" componentRef="U15"/> + <PinRef pin="14" componentRef="U10"/> + <PinRef pin="9" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="B5"> + <PinRef pin="5" componentRef="U15"/> + <PinRef pin="19" componentRef="U10"/> + <PinRef pin="8" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="B4"> + <PinRef pin="17" componentRef="U10"/> + <PinRef pin="7" componentRef="R15"/> + <PinRef pin="2" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="B3"> + <PinRef pin="3" componentRef="U15"/> + <PinRef pin="3" componentRef="R15"/> + <PinRef pin="9" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="B2"> + <PinRef pin="7" componentRef="U10"/> + <PinRef pin="7" componentRef="U15"/> + <PinRef pin="2" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="B1"> + <PinRef pin="19" componentRef="U11"/> + <PinRef pin="4" componentRef="U15"/> + <PinRef pin="4" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="B0"> + <PinRef pin="17" componentRef="U11"/> + <PinRef pin="8" componentRef="U15"/> + <PinRef pin="5" componentRef="R15"/> + </LogicalNet> + <LogicalNet name="ADDRESS9"> + <PinRef pin="9" componentRef="U6"/> + <PinRef pin="17" componentRef="U17"/> + <PinRef pin="9" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="ADDRESS8"> + <PinRef pin="7" componentRef="U6"/> + <PinRef pin="7" componentRef="U5"/> + <PinRef pin="18" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS7"> + <PinRef pin="6" componentRef="U6"/> + <PinRef pin="6" componentRef="U5"/> + <PinRef pin="19" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS6"> + <PinRef pin="5" componentRef="U6"/> + <PinRef pin="5" componentRef="U5"/> + <PinRef pin="20" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS5"> + <PinRef pin="4" componentRef="U5"/> + <PinRef pin="21" componentRef="U17"/> + <PinRef pin="4" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="ADDRESS4"> + <PinRef pin="3" componentRef="U6"/> + <PinRef pin="3" componentRef="U5"/> + <PinRef pin="22" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS3"> + <PinRef pin="2" componentRef="U6"/> + <PinRef pin="2" componentRef="U5"/> + <PinRef pin="23" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS2"> + <PinRef pin="27" componentRef="U6"/> + <PinRef pin="27" componentRef="U5"/> + <PinRef pin="24" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS1"> + <PinRef pin="26" componentRef="U6"/> + <PinRef pin="26" componentRef="U5"/> + <PinRef pin="25" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="ADDRESS0"> + <PinRef pin="25" componentRef="U5"/> + <PinRef pin="26" componentRef="U17"/> + <PinRef pin="25" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="GND"> + <PinRef pin="5" componentRef="J1"/> + <PinRef pin="4" componentRef="J1"/> + <PinRef pin="9" componentRef="J1"/> + <PinRef pin="10" componentRef="J1"/> + <PinRef pin="14" componentRef="U6"/> + <PinRef pin="14" componentRef="U5"/> + <PinRef pin="7" componentRef="U13"/> + <PinRef pin="5" componentRef="U7"/> + <PinRef pin="2" componentRef="C4"/> + <PinRef pin="3" componentRef="U9"/> + <PinRef pin="3" componentRef="U13"/> + <PinRef pin="2" componentRef="U13"/> + <PinRef pin="3" componentRef="U8"/> + <PinRef pin="2" componentRef="R12"/> + <PinRef pin="2" componentRef="C6"/> + </LogicalNet> + <LogicalNet name="VCC"> + <PinRef pin="7" componentRef="J1"/> + <PinRef pin="6" componentRef="J1"/> + <PinRef pin="1" componentRef="J1"/> + <PinRef pin="2" componentRef="J1"/> + <PinRef pin="7" componentRef="U12"/> + <PinRef pin="7" componentRef="U9"/> + <PinRef pin="7" componentRef="U8"/> + <PinRef pin="1" componentRef="U7"/> + <PinRef pin="9" componentRef="U15"/> + <PinRef pin="28" componentRef="U5"/> + <PinRef pin="28" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="VEE"> + <PinRef pin="11" componentRef="U13"/> + <PinRef pin="1" componentRef="U11"/> + <PinRef pin="1" componentRef="U1"/> + <PinRef pin="1" componentRef="U3"/> + <PinRef pin="1" componentRef="U4"/> + <PinRef pin="1" componentRef="U16"/> + <PinRef pin="28" componentRef="U17"/> + <PinRef pin="1" componentRef="U10"/> + <PinRef pin="28" componentRef="U18"/> + <PinRef pin="1" componentRef="U2"/> + <PinRef pin="1" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="GND1"> + <PinRef pin="16" componentRef="U3"/> + <PinRef pin="16" componentRef="U4"/> + <PinRef pin="16" componentRef="U2"/> + <PinRef pin="16" componentRef="U1"/> + <PinRef pin="16" componentRef="U16"/> + <PinRef pin="16" componentRef="U14"/> + <PinRef pin="16" componentRef="U11"/> + <PinRef pin="16" componentRef="U10"/> + <PinRef pin="27" componentRef="U18"/> + <PinRef pin="27" componentRef="U17"/> + </LogicalNet> + <LogicalNet name="GND2"> + <PinRef pin="22" componentRef="U1"/> + <PinRef pin="19" componentRef="U3"/> + <PinRef pin="19" componentRef="U2"/> + <PinRef pin="19" componentRef="U16"/> + <PinRef pin="20" componentRef="U14"/> + <PinRef pin="21" componentRef="U10"/> + <PinRef pin="21" componentRef="U11"/> + <PinRef pin="14" componentRef="U17"/> + <PinRef pin="21" componentRef="U4"/> + <PinRef pin="22" componentRef="U2"/> + <PinRef pin="22" componentRef="U3"/> + <PinRef pin="8" componentRef="U14"/> + <PinRef pin="22" componentRef="U16"/> + <PinRef pin="10" componentRef="U16"/> + <PinRef pin="7" componentRef="U16"/> + <PinRef pin="10" componentRef="U2"/> + <PinRef pin="7" componentRef="U2"/> + <PinRef pin="11" componentRef="U4"/> + <PinRef pin="10" componentRef="U3"/> + <PinRef pin="7" componentRef="U3"/> + <PinRef pin="13" componentRef="U16"/> + <PinRef pin="13" componentRef="U2"/> + <PinRef pin="13" componentRef="U3"/> + <PinRef pin="10" componentRef="U1"/> + <PinRef pin="7" componentRef="U1"/> + <PinRef pin="4" componentRef="U18"/> + <PinRef pin="4" componentRef="U17"/> + <PinRef pin="13" componentRef="U1"/> + <PinRef pin="14" componentRef="U14"/> + <PinRef pin="11" componentRef="U10"/> + <PinRef pin="19" componentRef="U1"/> + <PinRef pin="11" componentRef="U11"/> + <PinRef pin="6" componentRef="U11"/> + <PinRef pin="6" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E0430" netClass="UNUSED"> + <PinRef pin="3" componentRef="J1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E0498" netClass="UNUSED"> + <PinRef pin="8" componentRef="J1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E0500" netClass="UNUSED"> + <PinRef pin="3" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E0568" netClass="UNUSED"> + <PinRef pin="4" componentRef="R1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E05D0" netClass="UNUSED"> + <PinRef pin="3" componentRef="R2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E0638" netClass="UNUSED"> + <PinRef pin="8" componentRef="R2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3558" netClass="UNUSED"> + <PinRef pin="2" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E35C0" netClass="UNUSED"> + <PinRef pin="24" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3628" netClass="UNUSED"> + <PinRef pin="3" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3690" netClass="UNUSED"> + <PinRef pin="4" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E36F8" netClass="UNUSED"> + <PinRef pin="9" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3760" netClass="UNUSED"> + <PinRef pin="10" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E37C8" netClass="UNUSED"> + <PinRef pin="11" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3830" netClass="UNUSED"> + <PinRef pin="12" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3898" netClass="UNUSED"> + <PinRef pin="13" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3900" netClass="UNUSED"> + <PinRef pin="15" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3968" netClass="UNUSED"> + <PinRef pin="17" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E39D0" netClass="UNUSED"> + <PinRef pin="18" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3A38" netClass="UNUSED"> + <PinRef pin="28" componentRef="U14"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3AA0" netClass="UNUSED"> + <PinRef pin="25" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3B08" netClass="UNUSED"> + <PinRef pin="24" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3B70" netClass="UNUSED"> + <PinRef pin="18" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3BD8" netClass="UNUSED"> + <PinRef pin="2" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3C40" netClass="UNUSED"> + <PinRef pin="28" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3CA8" netClass="UNUSED"> + <PinRef pin="27" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3D10" netClass="UNUSED"> + <PinRef pin="26" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3D78" netClass="UNUSED"> + <PinRef pin="17" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3DE0" netClass="UNUSED"> + <PinRef pin="15" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3E48" netClass="UNUSED"> + <PinRef pin="6" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3EB0" netClass="UNUSED"> + <PinRef pin="5" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3F18" netClass="UNUSED"> + <PinRef pin="4" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3F80" netClass="UNUSED"> + <PinRef pin="3" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E3FE8" netClass="UNUSED"> + <PinRef pin="14" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4050" netClass="UNUSED"> + <PinRef pin="13" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E40B8" netClass="UNUSED"> + <PinRef pin="10" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4120" netClass="UNUSED"> + <PinRef pin="9" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4188" netClass="UNUSED"> + <PinRef pin="8" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E41F0" netClass="UNUSED"> + <PinRef pin="7" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4258" netClass="UNUSED"> + <PinRef pin="12" componentRef="U4"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E42C0" netClass="UNUSED"> + <PinRef pin="26" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4328" netClass="UNUSED"> + <PinRef pin="18" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4390" netClass="UNUSED"> + <PinRef pin="25" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E43F8" netClass="UNUSED"> + <PinRef pin="17" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4460" netClass="UNUSED"> + <PinRef pin="28" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E44C8" netClass="UNUSED"> + <PinRef pin="15" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4530" netClass="UNUSED"> + <PinRef pin="27" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4598" netClass="UNUSED"> + <PinRef pin="14" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4600" netClass="UNUSED"> + <PinRef pin="6" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4668" netClass="UNUSED"> + <PinRef pin="12" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E46D0" netClass="UNUSED"> + <PinRef pin="5" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4738" netClass="UNUSED"> + <PinRef pin="11" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E47A0" netClass="UNUSED"> + <PinRef pin="24" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4808" netClass="UNUSED"> + <PinRef pin="21" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4870" netClass="UNUSED"> + <PinRef pin="23" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E48D8" netClass="UNUSED"> + <PinRef pin="20" componentRef="U1"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4940" netClass="UNUSED"> + <PinRef pin="26" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E49A8" netClass="UNUSED"> + <PinRef pin="18" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4A10" netClass="UNUSED"> + <PinRef pin="25" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4A78" netClass="UNUSED"> + <PinRef pin="17" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4AE0" netClass="UNUSED"> + <PinRef pin="28" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4B48" netClass="UNUSED"> + <PinRef pin="15" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4BB0" netClass="UNUSED"> + <PinRef pin="27" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4C18" netClass="UNUSED"> + <PinRef pin="14" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4C80" netClass="UNUSED"> + <PinRef pin="6" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4CE8" netClass="UNUSED"> + <PinRef pin="12" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4D50" netClass="UNUSED"> + <PinRef pin="5" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4DB8" netClass="UNUSED"> + <PinRef pin="11" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4E20" netClass="UNUSED"> + <PinRef pin="4" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4E88" netClass="UNUSED"> + <PinRef pin="9" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4EF0" netClass="UNUSED"> + <PinRef pin="3" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4F58" netClass="UNUSED"> + <PinRef pin="8" componentRef="U2"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E4FC0" netClass="UNUSED"> + <PinRef pin="2" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5028" netClass="UNUSED"> + <PinRef pin="28" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5090" netClass="UNUSED"> + <PinRef pin="15" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E50F8" netClass="UNUSED"> + <PinRef pin="27" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5160" netClass="UNUSED"> + <PinRef pin="14" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E51C8" netClass="UNUSED"> + <PinRef pin="6" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5230" netClass="UNUSED"> + <PinRef pin="12" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5298" netClass="UNUSED"> + <PinRef pin="5" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5300" netClass="UNUSED"> + <PinRef pin="11" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5368" netClass="UNUSED"> + <PinRef pin="4" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E53D0" netClass="UNUSED"> + <PinRef pin="9" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5438" netClass="UNUSED"> + <PinRef pin="3" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E54A0" netClass="UNUSED"> + <PinRef pin="8" componentRef="U3"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5508" netClass="UNUSED"> + <PinRef pin="26" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5570" netClass="UNUSED"> + <PinRef pin="18" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E55D8" netClass="UNUSED"> + <PinRef pin="25" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5640" netClass="UNUSED"> + <PinRef pin="17" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E56A8" netClass="UNUSED"> + <PinRef pin="28" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5710" netClass="UNUSED"> + <PinRef pin="15" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5778" netClass="UNUSED"> + <PinRef pin="27" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E57E0" netClass="UNUSED"> + <PinRef pin="14" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5848" netClass="UNUSED"> + <PinRef pin="6" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E58B0" netClass="UNUSED"> + <PinRef pin="12" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5918" netClass="UNUSED"> + <PinRef pin="5" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5980" netClass="UNUSED"> + <PinRef pin="11" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E59E8" netClass="UNUSED"> + <PinRef pin="4" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5A50" netClass="UNUSED"> + <PinRef pin="9" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5AB8" netClass="UNUSED"> + <PinRef pin="3" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5B20" netClass="UNUSED"> + <PinRef pin="8" componentRef="U16"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5B88" netClass="UNUSED"> + <PinRef pin="22" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5BF0" netClass="UNUSED"> + <PinRef pin="5" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5C58" netClass="UNUSED"> + <PinRef pin="24" componentRef="U10"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5CC0" netClass="UNUSED"> + <PinRef pin="22" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5D28" netClass="UNUSED"> + <PinRef pin="5" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5D90" netClass="UNUSED"> + <PinRef pin="23" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5DF8" netClass="UNUSED"> + <PinRef pin="15" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5E60" netClass="UNUSED"> + <PinRef pin="28" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5EC8" netClass="UNUSED"> + <PinRef pin="14" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5F30" netClass="UNUSED"> + <PinRef pin="13" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E5F98" netClass="UNUSED"> + <PinRef pin="2" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6000" netClass="UNUSED"> + <PinRef pin="12" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6068" netClass="UNUSED"> + <PinRef pin="10" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E60D0" netClass="UNUSED"> + <PinRef pin="3" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6138" netClass="UNUSED"> + <PinRef pin="9" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E61A0" netClass="UNUSED"> + <PinRef pin="8" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6208" netClass="UNUSED"> + <PinRef pin="4" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6270" netClass="UNUSED"> + <PinRef pin="7" componentRef="U11"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E62D8" netClass="UNUSED"> + <PinRef pin="15" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6340" netClass="UNUSED"> + <PinRef pin="12" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E63A8" netClass="UNUSED"> + <PinRef pin="11" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6410" netClass="UNUSED"> + <PinRef pin="10" componentRef="U15"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6478" netClass="UNUSED"> + <PinRef pin="5" componentRef="U8"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E64E0" netClass="UNUSED"> + <PinRef pin="5" componentRef="U9"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6548" netClass="UNUSED"> + <PinRef pin="5" componentRef="U12"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E65B0" netClass="UNUSED"> + <PinRef pin="22" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6618" netClass="UNUSED"> + <PinRef pin="15" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6680" netClass="UNUSED"> + <PinRef pin="8" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E66E8" netClass="UNUSED"> + <PinRef pin="1" componentRef="U5"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6750" netClass="UNUSED"> + <PinRef pin="22" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E67B8" netClass="UNUSED"> + <PinRef pin="15" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6820" netClass="UNUSED"> + <PinRef pin="8" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6888" netClass="UNUSED"> + <PinRef pin="1" componentRef="U6"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E68F0" netClass="UNUSED"> + <PinRef pin="8" componentRef="U7"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6958" netClass="UNUSED"> + <PinRef pin="6" componentRef="U7"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E69C0" netClass="UNUSED"> + <PinRef pin="4" componentRef="U7"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6AF8" netClass="UNUSED"> + <PinRef pin="12" componentRef="U13"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6B60" netClass="UNUSED"> + <PinRef pin="9" componentRef="U13"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6BC8" netClass="UNUSED"> + <PinRef pin="8" componentRef="U13"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6C30" netClass="UNUSED"> + <PinRef pin="6" componentRef="U13"/> + </LogicalNet> + <LogicalNet name="Unused_00000258EB6E6C98" netClass="UNUSED"> + <PinRef pin="1" componentRef="U13"/> + </LogicalNet> + <PhyNetGroup name="AllPhyNets"> + <PhyNet name="ZEROCROSS"> + <PhyNetPoint x="1.650" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="0.475" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="0.475" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.178" y="1.569" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="WE"> + <PhyNetPoint x="1.687" y="2.884" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="2.975" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="2.975" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.393" y="3.390" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.393" y="3.390" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.490" y="3.400" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="WAVEOUT2"> + <PhyNetPoint x="1.800" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.525" y="0.150" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.525" y="0.150" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.600" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.600" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.075" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.025" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.000" y="0.662" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="WAVEOUT1"> + <PhyNetPoint x="0.700" y="0.362" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="0.525" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="0.525" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.575" y="0.925" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.575" y="0.925" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.575" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VTTD"> + <PhyNetPoint x="2.050" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.050" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.300" y="0.650" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.300" y="0.650" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.300" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.300" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.300" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.300" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VTTA"> + <PhyNetPoint x="1.800" y="0.538" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="0.850" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="0.850" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VSS"> + <PhyNetPoint x="1.125" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="0.750" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="0.750" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="0.750" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="0.750" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.450" y="0.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="0.275" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="0.275" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.150" y="0.200" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.300" y="0.238" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VOUTB"> + <PhyNetPoint x="1.600" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VHI"> + <PhyNetPoint x="1.319" y="1.272" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="1.355" y="1.308" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="1.284" y="1.237" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="0.952" y="1.498" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="0.916" y="1.463" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="0.987" y="1.534" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.675" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.675" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="0.662" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="0.662" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VDD"> + <PhyNetPoint x="1.750" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="0.225" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="0.225" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="0.875" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="0.875" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VBB"> + <PhyNetPoint x="1.675" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1SIP108PA60"> + <PhyNetPoint x="2.519" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.519" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="0.950" y="0.400" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.950" y="0.400" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="1.250" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC7"> + <PhyNetPoint x="2.250" y="3.394" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.394" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="3.560" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="3.625" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="3.625" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.825" y="2.075" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.825" y="2.075" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.688" y="2.143" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC6"> + <PhyNetPoint x="1.800" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.925" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.925" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.025" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.025" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.770" y="2.201" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC5"> + <PhyNetPoint x="1.650" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.238" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.238" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.175" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.175" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.852" y="2.258" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC4"> + <PhyNetPoint x="1.811" y="2.229" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="1.900" y="2.100" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.900" y="2.100" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.081" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.081" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC3"> + <PhyNetPoint x="2.019" y="2.778" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.769" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.769" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.675" y="2.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.675" y="2.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.625" y="2.175" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.625" y="2.175" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.647" y="2.114" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC2"> + <PhyNetPoint x="1.607" y="2.086" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="1.562" y="2.150" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.562" y="2.150" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="2.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="2.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.055" y="2.742" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="2.100" y="2.800" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.100" y="2.800" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.550" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="3.550" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC1"> + <PhyNetPoint x="1.939" y="1.526" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.612" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.612" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.913" y="2.884" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1DAC71PDAC0"> + <PhyNetPoint x="1.878" y="2.919" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.456" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.250" y="2.456" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.945" y="1.476" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345028PCMP20"> + <PhyNetPoint x="0.850" y="0.362" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="1.000" y="0.375" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345028PCMP10"> + <PhyNetPoint x="1.000" y="0.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.850" y="0.238" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345020PCMP20"> + <PhyNetPoint x="0.150" y="0.974" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.225" y="0.975" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.225" y="0.975" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.300" y="0.975" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345020PCMP10"> + <PhyNetPoint x="0.300" y="0.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.150" y="0.800" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.150" y="0.800" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.150" y="0.850" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345010PCMP20"> + <PhyNetPoint x="0.850" y="0.962" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.975" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1CA345010PCMP10"> + <PhyNetPoint x="0.975" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.850" y="0.838" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ50"> + <PhyNetPoint x="1.889" y="1.771" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="2.500" y="1.575" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.500" y="1.575" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.521" y="0.871" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.521" y="0.871" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ40"> + <PhyNetPoint x="2.852" y="1.202" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.852" y="1.202" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.971" y="1.828" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ30"> + <PhyNetPoint x="2.079" y="2.039" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="3.074" y="1.424" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="3.074" y="1.424" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ20"> + <PhyNetPoint x="2.093" y="1.914" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="2.963" y="1.313" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.963" y="1.313" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ10"> + <PhyNetPoint x="2.425" y="1.775" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.425" y="1.775" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.410" y="0.760" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.410" y="0.760" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.736" y="1.797" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15169PQ0"> + <PhyNetPoint x="1.678" y="1.879" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="3.184" y="1.534" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="3.184" y="1.534" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15168PQ10"> + <PhyNetPoint x="1.522" y="1.472" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + <PhyNetPoint x="1.572" y="1.472" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.572" y="1.472" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.632" y="0.982" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.632" y="0.982" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E15168PQ0"> + <PhyNetPoint x="1.624" y="1.545" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.624" y="1.624" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.624" y="1.624" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.742" y="1.092" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + <PhyNetPoint x="2.742" y="1.092" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11699PB0"> + <PhyNetPoint x="1.263" y="2.184" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + <PhyNetPoint x="1.192" y="2.255" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11698PY10"> + <PhyNetPoint x="1.822" y="1.571" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="2.325" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="2.325" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.250" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="3.250" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="3.250" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.600" y="2.275" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.600" y="2.275" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.993" y="2.162" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.456" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.456" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11698PY0"> + <PhyNetPoint x="0.610" y="3.300" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.300" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="3.300" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="3.300" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.550" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.550" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11697PY10"> + <PhyNetPoint x="2.450" y="3.081" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.081" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.550" y="3.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.550" y="3.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.325" y="3.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.325" y="3.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.325" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.325" y="0.875" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.325" y="0.875" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.075" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.075" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11697PY0"> + <PhyNetPoint x="2.450" y="2.925" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.925" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="0.866" y="2.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="3.140" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11697PB0"> + <PhyNetPoint x="0.966" y="2.113" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="0.856" y="2.200" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.856" y="2.200" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.450" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.450" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.450" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.238" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.238" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11697PA0"> + <PhyNetPoint x="2.450" y="3.394" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="3.394" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.002" y="2.148" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="0.925" y="2.225" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.925" y="2.225" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="3.400" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="3.400" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.400" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E11613PB0"> + <PhyNetPoint x="0.450" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="1.450" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E116100PY0"> + <PhyNetPoint x="2.206" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.206" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="1.450" y="0.350" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.450" y="0.350" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.375" y="0.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.375" y="0.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.375" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.100" y="1.875" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.100" y="1.875" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.216" y="1.937" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E116100PA0"> + <PhyNetPoint x="0.584" y="1.937" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + <PhyNetPoint x="0.287" y="1.866" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E101101PY10"> + <PhyNetPoint x="0.840" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="0.775" y="3.350" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.775" y="3.350" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.850" y="2.900" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.850" y="2.900" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.902" y="2.848" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="0.300" y="2.490" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + <PhyNetPoint x="1.200" y="2.425" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.200" y="2.425" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.575" y="2.525" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.575" y="2.525" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="3.300" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="3.300" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E101101PY0"> + <PhyNetPoint x="1.872" y="1.578" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.872" y="1.428" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.872" y="1.428" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.147" y="1.428" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.147" y="1.428" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.831" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.831" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="1.775" y="2.375" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.775" y="2.375" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.250" y="2.490" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + <PhyNetPoint x="1.936" y="2.243" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E101101PC0"> + <PhyNetPoint x="2.988" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.988" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.425" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="0.425" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.181" y="1.972" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + <PhyNetPoint x="0.075" y="1.925" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.075" y="1.925" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="2.490" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + <PhyNetPoint x="0.075" y="1.625" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.075" y="1.625" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="1.650" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="1.650" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.142" y="1.605" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="UN1100E01612PTC0"> + <PhyNetPoint x="0.190" y="1.400" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="0.845" y="1.392" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="RESET"> + <PhyNetPoint x="1.581" y="2.778" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.436" y="2.900" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.436" y="2.900" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="3.239" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="3.239" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.490" y="3.250" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="QUADRANT1"> + <PhyNetPoint x="1.269" y="2.622" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="1.375" y="2.550" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.375" y="2.550" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.346" y="3.322" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.346" y="3.322" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.260" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="QUADRANT0"> + <PhyNetPoint x="1.260" y="3.400" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="1.200" y="3.400" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.200" y="3.400" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="2.600" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="2.600" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.305" y="2.658" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PULSEOUT"> + <PhyNetPoint x="1.325" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE7"> + <PhyNetPoint x="1.305" y="2.742" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.250" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE6"> + <PhyNetPoint x="1.269" y="2.778" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + <PhyNetPoint x="0.900" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE5"> + <PhyNetPoint x="0.950" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.234" y="2.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE4"> + <PhyNetPoint x="1.000" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.198" y="2.848" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE3"> + <PhyNetPoint x="1.050" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.163" y="2.884" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE2"> + <PhyNetPoint x="1.128" y="2.919" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + <PhyNetPoint x="1.175" y="2.975" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.175" y="2.975" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.200" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.200" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE1"> + <PhyNetPoint x="1.092" y="2.955" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + <PhyNetPoint x="1.113" y="2.988" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.113" y="2.988" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.113" y="3.063" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.113" y="3.063" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.150" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="PHASE0"> + <PhyNetPoint x="1.200" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.225" y="3.050" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.225" y="3.050" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.025" y="3.000" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.025" y="3.000" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.008" y="2.955" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="OUT2"> + <PhyNetPoint x="0.850" y="0.662" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="0.662" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.975" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="0.962" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="OUT1"> + <PhyNetPoint x="1.100" y="0.375" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="0.362" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.238" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="OFFSET1"> + <PhyNetPoint x="1.260" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="OFFSET0"> + <PhyNetPoint x="1.260" y="3.250" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="OE"> + <PhyNetPoint x="1.722" y="2.919" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.325" y="3.025" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.325" y="3.025" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.425" y="3.449" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.425" y="3.449" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.490" y="3.450" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="MRESET"> + <PhyNetPoint x="1.058" y="1.605" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="INM3"> + <PhyNetPoint x="1.150" y="0.662" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="1.075" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="0.962" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="INM2"> + <PhyNetPoint x="0.350" y="0.800" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.662" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="0.838" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="INM1"> + <PhyNetPoint x="0.700" y="0.238" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="0.238" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="1.300" y="0.362" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="1.050" y="0.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="IN2"> + <PhyNetPoint x="0.550" y="0.538" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="0.538" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.538" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.362" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ_LOAD"> + <PhyNetPoint x="0.831" y="2.778" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ9"> + <PhyNetPoint x="0.866" y="2.587" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ8"> + <PhyNetPoint x="0.902" y="2.552" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ7"> + <PhyNetPoint x="0.937" y="2.516" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ6"> + <PhyNetPoint x="0.972" y="2.481" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ5"> + <PhyNetPoint x="1.008" y="2.445" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ4"> + <PhyNetPoint x="1.092" y="2.445" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ3"> + <PhyNetPoint x="1.128" y="2.481" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ2"> + <PhyNetPoint x="1.163" y="2.516" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ11"> + <PhyNetPoint x="0.795" y="2.658" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ10"> + <PhyNetPoint x="0.831" y="2.622" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_26"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ1"> + <PhyNetPoint x="1.198" y="2.552" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FREQ0"> + <PhyNetPoint x="1.234" y="2.587" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="FB3"> + <PhyNetPoint x="1.000" y="0.538" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.850" y="0.538" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="0.700" y="0.838" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="DISABLE"> + <PhyNetPoint x="0.190" y="1.300" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="0.225" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="0.225" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.675" y="0.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.675" y="0.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="2.300" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="2.300" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.450" y="2.490" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D7"> + <PhyNetPoint x="1.910" y="3.450" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D6"> + <PhyNetPoint x="1.910" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D5"> + <PhyNetPoint x="1.550" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D4"> + <PhyNetPoint x="1.490" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D3"> + <PhyNetPoint x="2.055" y="2.658" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D2"> + <PhyNetPoint x="2.019" y="2.622" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D1"> + <PhyNetPoint x="1.842" y="2.955" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="D0"> + <PhyNetPoint x="1.758" y="2.955" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="CS2"> + <PhyNetPoint x="1.616" y="2.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="CS1"> + <PhyNetPoint x="1.490" y="3.300" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="CLOCK"> + <PhyNetPoint x="1.228" y="2.219" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="CLEAR"> + <PhyNetPoint x="0.322" y="1.831" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B7"> + <PhyNetPoint x="1.575" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.848" y="1.742" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.631" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.631" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B6"> + <PhyNetPoint x="1.825" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="0.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="0.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.930" y="1.799" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="1.925" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="1.925" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="2.100" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="2.100" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B5"> + <PhyNetPoint x="1.775" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.108" y="1.998" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.944" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.944" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="0.875" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="0.875" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B4"> + <PhyNetPoint x="2.053" y="1.886" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.788" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.788" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.175" y="0.825" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.175" y="0.825" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.625" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B3"> + <PhyNetPoint x="1.675" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.162" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.162" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="1.200" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="1.200" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="1.750" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="1.750" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.707" y="1.838" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B2"> + <PhyNetPoint x="1.649" y="1.920" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="1.850" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="1.850" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.700" y="1.225" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.700" y="1.225" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.006" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.006" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B1"> + <PhyNetPoint x="1.574" y="1.539" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.542" y="1.600" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.542" y="1.600" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.319" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.319" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="0.750" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="0.750" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="B0"> + <PhyNetPoint x="1.529" y="1.422" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="0.725" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="0.725" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="0.812" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.475" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.275" y="1.475" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS9"> + <PhyNetPoint x="1.984" y="2.587" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="2.650" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="2.650" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.260" y="3.450" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.650" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.650" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.400" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.400" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.910" y="3.400" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS8"> + <PhyNetPoint x="1.913" y="2.516" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="2.575" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="2.575" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.000" y="3.300" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.000" y="3.300" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.910" y="3.300" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="3.625" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="3.625" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="3.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.350" y="3.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.260" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS7"> + <PhyNetPoint x="1.878" y="2.481" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.900" y="2.700" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.900" y="2.700" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.050" y="3.250" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="2.050" y="3.250" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.910" y="3.250" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.200" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS6"> + <PhyNetPoint x="1.842" y="2.445" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.775" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.875" y="2.775" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.200" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.975" y="3.200" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.910" y="3.200" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + <PhyNetPoint x="1.150" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS5"> + <PhyNetPoint x="1.850" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="3.075" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.850" y="3.075" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.775" y="2.500" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.775" y="2.500" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.758" y="2.445" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS4"> + <PhyNetPoint x="1.722" y="2.481" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="2.700" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="2.700" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="3.075" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="3.075" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.800" y="3.140" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.050" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS3"> + <PhyNetPoint x="1.687" y="2.516" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="2.600" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.725" y="2.600" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.700" y="3.050" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.700" y="3.050" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="3.140" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.000" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS2"> + <PhyNetPoint x="1.581" y="2.622" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="1.625" y="2.675" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.625" y="2.675" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="3.050" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="3.050" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.600" y="3.140" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="0.950" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS1"> + <PhyNetPoint x="1.545" y="2.658" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="2.600" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.500" y="2.600" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="3.075" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="3.075" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.550" y="3.140" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="0.900" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="ADDRESS0"> + <PhyNetPoint x="1.490" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="3.125" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="3.125" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="2.800" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.400" y="2.800" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.545" y="2.742" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="GND"> + <PhyNetPoint x="-0.050" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="3.200" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="3.100" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="3.100" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="3.100" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="3.100" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="3.200" layerRef="TOP" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="3.200" layerRef="BOTTOM" netNode="MIDDLE" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="1.984" y="2.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + <PhyNetPoint x="1.750" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.900" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.425" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.550" y="0.662" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="0.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.700" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.100" y="0.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="0.538" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + <PhyNetPoint x="1.150" y="0.538" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_9"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VCC"> + <PhyNetPoint x="0.050" y="2.900" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="2.900" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="2.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="2.800" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="2.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="2.800" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="2.900" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="2.900" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="1.025" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="0.350" y="0.975" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.050" y="0.375" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.275" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.925" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.650" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + <PhyNetPoint x="1.616" y="2.587" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="VEE"> + <PhyNetPoint x="1.750" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + <PhyNetPoint x="1.958" y="1.377" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + <PhyNetPoint x="1.298" y="2.148" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="2.700" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + <PhyNetPoint x="0.400" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.400" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="1.729" y="2.172" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="0.937" y="2.884" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="0.548" y="1.902" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + <PhyNetPoint x="1.248" y="1.498" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="GND1"> + <PhyNetPoint x="0.450" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="2.650" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + <PhyNetPoint x="0.216" y="2.163" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + <PhyNetPoint x="1.037" y="1.816" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + <PhyNetPoint x="0.350" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + <PhyNetPoint x="0.916" y="1.237" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + <PhyNetPoint x="1.535" y="1.373" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + <PhyNetPoint x="2.012" y="1.857" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_13"/> + </PhyNetPoint> + <PhyNetPoint x="0.972" y="2.919" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.450" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="GND2"> + <PhyNetPoint x="1.298" y="1.852" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.145" y="2.008" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="1.200" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="0.881" y="1.428" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="2.051" y="2.080" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="1.673" y="1.552" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.260" y="3.300" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="0.350" y="2.490" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + <PhyNetPoint x="0.252" y="1.902" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.675" y="3.350" layerRef="TOP" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="0.675" y="3.350" layerRef="BOTTOM" netNode="MIDDLE" exposure="EXPOSED" via="true"> + <StandardPrimitiveRef id="CIRCLE_1"/> + </PhyNetPoint> + <PhyNetPoint x="1.248" y="1.202" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="1.350" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="1.250" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="0.610" y="1.400" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + <PhyNetPoint x="0.478" y="2.269" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + <PhyNetPoint x="0.584" y="2.163" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + <PhyNetPoint x="0.250" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="3.250" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.190" y="3.400" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + <PhyNetPoint x="0.500" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + <PhyNetPoint x="0.322" y="2.269" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + <PhyNetPoint x="0.300" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + <PhyNetPoint x="0.931" y="2.078" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="1.037" y="2.184" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="0.795" y="2.742" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_20"/> + </PhyNetPoint> + <PhyNetPoint x="0.840" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_19"/> + </PhyNetPoint> + <PhyNetPoint x="0.931" y="1.922" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + <PhyNetPoint x="0.987" y="1.166" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + <PhyNetPoint x="1.764" y="1.757" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + <PhyNetPoint x="1.192" y="1.745" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + <PhyNetPoint x="1.628" y="1.122" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.876" y="1.155" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + <PhyNetPoint x="1.621" y="1.961" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E0430"> + <PhyNetPoint x="-0.050" y="3.000" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="-0.050" y="3.000" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E0498"> + <PhyNetPoint x="0.050" y="3.000" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + <PhyNetPoint x="0.050" y="3.000" layerRef="BOTTOM" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="CIRCLE_8"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E0500"> + <PhyNetPoint x="2.450" y="2.612" layerRef="TOP" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.612" layerRef="BOTTOM" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E0568"> + <PhyNetPoint x="2.450" y="2.769" layerRef="TOP" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + <PhyNetPoint x="2.450" y="2.769" layerRef="BOTTOM" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E05D0"> + <PhyNetPoint x="2.362" y="0.500" layerRef="TOP" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="2.362" y="0.500" layerRef="BOTTOM" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E0638"> + <PhyNetPoint x="3.144" y="0.500" layerRef="TOP" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + <PhyNetPoint x="3.144" y="0.500" layerRef="BOTTOM" netNode="END" exposure="EXPOSED" via="false"> + <StandardPrimitiveRef id="CIRCLE_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3558"> + <PhyNetPoint x="1.284" y="1.463" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E35C0"> + <PhyNetPoint x="1.022" y="1.569" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3628"> + <PhyNetPoint x="1.319" y="1.428" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3690"> + <PhyNetPoint x="1.355" y="1.392" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E36F8"> + <PhyNetPoint x="1.213" y="1.166" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3760"> + <PhyNetPoint x="1.178" y="1.131" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E37C8"> + <PhyNetPoint x="1.142" y="1.095" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_10"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3830"> + <PhyNetPoint x="1.058" y="1.095" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3898"> + <PhyNetPoint x="1.022" y="1.131" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3900"> + <PhyNetPoint x="0.952" y="1.202" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3968"> + <PhyNetPoint x="0.881" y="1.272" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E39D0"> + <PhyNetPoint x="0.845" y="1.308" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3A38"> + <PhyNetPoint x="1.213" y="1.534" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_5"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3AA0"> + <PhyNetPoint x="0.550" y="2.490" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3B08"> + <PhyNetPoint x="0.500" y="2.490" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3B70"> + <PhyNetPoint x="0.190" y="2.550" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3BD8"> + <PhyNetPoint x="0.610" y="2.750" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3C40"> + <PhyNetPoint x="0.610" y="2.650" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3CA8"> + <PhyNetPoint x="0.610" y="2.600" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3D10"> + <PhyNetPoint x="0.610" y="2.550" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3D78"> + <PhyNetPoint x="0.190" y="2.600" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3DE0"> + <PhyNetPoint x="0.190" y="2.700" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3E48"> + <PhyNetPoint x="0.500" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3EB0"> + <PhyNetPoint x="0.550" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3F18"> + <PhyNetPoint x="0.610" y="2.850" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3F80"> + <PhyNetPoint x="0.610" y="2.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E3FE8"> + <PhyNetPoint x="0.190" y="2.750" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4050"> + <PhyNetPoint x="0.190" y="2.800" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E40B8"> + <PhyNetPoint x="0.300" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4120"> + <PhyNetPoint x="0.350" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4188"> + <PhyNetPoint x="0.400" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E41F0"> + <PhyNetPoint x="0.450" y="2.910" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_25"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4258"> + <PhyNetPoint x="0.190" y="2.850" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_27"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E42C0"> + <PhyNetPoint x="1.405" y="2.042" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4328"> + <PhyNetPoint x="1.108" y="1.745" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4390"> + <PhyNetPoint x="1.405" y="1.958" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E43F8"> + <PhyNetPoint x="1.072" y="1.781" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4460"> + <PhyNetPoint x="1.334" y="2.113" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E44C8"> + <PhyNetPoint x="1.002" y="1.852" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4530"> + <PhyNetPoint x="1.369" y="2.078" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4598"> + <PhyNetPoint x="0.966" y="1.887" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4600"> + <PhyNetPoint x="1.072" y="2.219" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4668"> + <PhyNetPoint x="0.895" y="1.958" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_18"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E46D0"> + <PhyNetPoint x="1.108" y="2.255" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4738"> + <PhyNetPoint x="0.895" y="2.042" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E47A0"> + <PhyNetPoint x="1.369" y="1.922" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4808"> + <PhyNetPoint x="1.263" y="1.816" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4870"> + <PhyNetPoint x="1.334" y="1.887" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E48D8"> + <PhyNetPoint x="1.228" y="1.781" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_21"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4940"> + <PhyNetPoint x="0.442" y="1.795" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E49A8"> + <PhyNetPoint x="0.145" y="2.092" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4A10"> + <PhyNetPoint x="0.358" y="1.795" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4A78"> + <PhyNetPoint x="0.181" y="2.128" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4AE0"> + <PhyNetPoint x="0.513" y="1.866" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4B48"> + <PhyNetPoint x="0.252" y="2.198" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4BB0"> + <PhyNetPoint x="0.478" y="1.831" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4C18"> + <PhyNetPoint x="0.287" y="2.234" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4C80"> + <PhyNetPoint x="0.619" y="2.128" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4CE8"> + <PhyNetPoint x="0.358" y="2.305" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4D50"> + <PhyNetPoint x="0.655" y="2.092" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4DB8"> + <PhyNetPoint x="0.442" y="2.305" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4E20"> + <PhyNetPoint x="0.655" y="2.008" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4E88"> + <PhyNetPoint x="0.513" y="2.234" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4EF0"> + <PhyNetPoint x="0.619" y="1.972" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_24"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4F58"> + <PhyNetPoint x="0.548" y="2.198" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_23"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E4FC0"> + <PhyNetPoint x="0.350" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5028"> + <PhyNetPoint x="0.450" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5090"> + <PhyNetPoint x="0.400" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E50F8"> + <PhyNetPoint x="0.500" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5160"> + <PhyNetPoint x="0.350" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E51C8"> + <PhyNetPoint x="0.190" y="3.450" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5230"> + <PhyNetPoint x="0.250" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5298"> + <PhyNetPoint x="0.190" y="3.500" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5300"> + <PhyNetPoint x="0.190" y="3.200" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5368"> + <PhyNetPoint x="0.250" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E53D0"> + <PhyNetPoint x="0.190" y="3.300" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5438"> + <PhyNetPoint x="0.300" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_3"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E54A0"> + <PhyNetPoint x="0.190" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_2"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5508"> + <PhyNetPoint x="0.250" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5570"> + <PhyNetPoint x="0.250" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E55D8"> + <PhyNetPoint x="0.190" y="1.500" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5640"> + <PhyNetPoint x="0.300" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E56A8"> + <PhyNetPoint x="0.350" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5710"> + <PhyNetPoint x="0.400" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5778"> + <PhyNetPoint x="0.300" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E57E0"> + <PhyNetPoint x="0.450" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5848"> + <PhyNetPoint x="0.610" y="1.450" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E58B0"> + <PhyNetPoint x="0.550" y="1.140" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5918"> + <PhyNetPoint x="0.610" y="1.500" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5980"> + <PhyNetPoint x="0.610" y="1.200" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E59E8"> + <PhyNetPoint x="0.550" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5A50"> + <PhyNetPoint x="0.610" y="1.300" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5AB8"> + <PhyNetPoint x="0.500" y="1.560" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_22"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5B20"> + <PhyNetPoint x="0.610" y="1.350" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_11"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5B88"> + <PhyNetPoint x="2.022" y="2.121" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5BF0"> + <PhyNetPoint x="1.592" y="2.002" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5C58"> + <PhyNetPoint x="1.964" y="2.203" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_16"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5CC0"> + <PhyNetPoint x="1.723" y="1.558" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5D28"> + <PhyNetPoint x="1.926" y="1.161" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5D90"> + <PhyNetPoint x="1.773" y="1.565" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5DF8"> + <PhyNetPoint x="1.542" y="1.323" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5E60"> + <PhyNetPoint x="1.952" y="1.427" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5EC8"> + <PhyNetPoint x="1.548" y="1.273" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5F30"> + <PhyNetPoint x="1.555" y="1.224" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E5F98"> + <PhyNetPoint x="1.965" y="1.327" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6000"> + <PhyNetPoint x="1.561" y="1.174" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6068"> + <PhyNetPoint x="1.678" y="1.129" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E60D0"> + <PhyNetPoint x="1.971" y="1.278" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6138"> + <PhyNetPoint x="1.727" y="1.135" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E61A0"> + <PhyNetPoint x="1.777" y="1.142" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6208"> + <PhyNetPoint x="1.978" y="1.228" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_15"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6270"> + <PhyNetPoint x="1.827" y="1.148" layerRef="BOTTOM" netNode="END" exposure="COVERED_PRIMARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_17"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E62D8"> + <PhyNetPoint x="1.625" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6340"> + <PhyNetPoint x="1.775" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E63A8"> + <PhyNetPoint x="1.825" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6410"> + <PhyNetPoint x="1.875" y="0.987" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6478"> + <PhyNetPoint x="1.150" y="0.375" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E64E0"> + <PhyNetPoint x="0.450" y="0.975" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6548"> + <PhyNetPoint x="1.125" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E65B0"> + <PhyNetPoint x="1.490" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6618"> + <PhyNetPoint x="1.700" y="3.560" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6680"> + <PhyNetPoint x="1.910" y="3.350" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_7"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E66E8"> + <PhyNetPoint x="1.700" y="3.140" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_12"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6750"> + <PhyNetPoint x="1.652" y="2.848" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E67B8"> + <PhyNetPoint x="1.948" y="2.848" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6820"> + <PhyNetPoint x="1.948" y="2.552" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_6"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6888"> + <PhyNetPoint x="1.652" y="2.552" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_14"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E68F0"> + <PhyNetPoint x="1.275" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6958"> + <PhyNetPoint x="1.375" y="0.988" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E69C0"> + <PhyNetPoint x="1.425" y="0.813" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6AF8"> + <PhyNetPoint x="1.700" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6B60"> + <PhyNetPoint x="1.850" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6BC8"> + <PhyNetPoint x="1.900" y="0.387" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6C30"> + <PhyNetPoint x="1.850" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + <PhyNet name="Unused_00000258EB6E6C98"> + <PhyNetPoint x="1.600" y="0.212" layerRef="TOP" netNode="END" exposure="COVERED_SECONDARY" via="false"> + <StandardPrimitiveRef id="RECTCENTER_4"/> + </PhyNetPoint> + </PhyNet> + </PhyNetGroup> + <LayerFeature layerRef="TOP"> + <Set> + <ColorRef id="COLOR_TOP"/> + </Set> + <Set net="ZEROCROSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.653" y="0.449"/> + <PolyStepSegment x="1.663" y="0.461"/> + <PolyStepSegment x="1.650" y="0.476"/> + <PolyStepSegment x="1.637" y="0.461"/> + <PolyStepSegment x="1.647" y="0.449"/> + <PolyStepCurve x="1.653" y="0.449" centerX="1.650000" centerY="0.452000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ZEROCROSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.650" y="0.387"/> + <PolyStepSegment x="1.650" y="0.475"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.419" y="3.393"/> + <PolyStepSegment x="1.407" y="3.403"/> + <PolyStepSegment x="1.392" y="3.390"/> + <PolyStepSegment x="1.407" y="3.377"/> + <PolyStepSegment x="1.419" y="3.387"/> + <PolyStepCurve x="1.419" y="3.393" centerX="1.416000" centerY="3.390000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.670" y="2.959"/> + <PolyStepSegment x="1.670" y="2.975"/> + <PolyStepSegment x="1.649" y="2.976"/> + <PolyStepSegment x="1.650" y="2.955"/> + <PolyStepSegment x="1.666" y="2.955"/> + <PolyStepCurve x="1.670" y="2.959" centerX="1.666000" centerY="2.959000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.393" y="3.390"/> + <PolyStepSegment x="1.417" y="3.390"/> + <PolyStepSegment x="1.427" y="3.400"/> + <PolyStepSegment x="1.490" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.687" y="2.884"/> + <PolyStepSegment x="1.679" y="2.892"/> + <PolyStepSegment x="1.679" y="2.919"/> + <PolyStepSegment x="1.683" y="2.923"/> + <PolyStepSegment x="1.683" y="2.942"/> + <PolyStepSegment x="1.650" y="2.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.222" y="0.614"/> + <PolyStepSegment x="1.211" y="0.603"/> + <PolyStepSegment x="1.221" y="0.599"/> + <PolyStepSegment x="1.229" y="0.599"/> + <PolyStepSegment x="1.239" y="0.603"/> + <PolyStepSegment x="1.228" y="0.614"/> + <PolyStepCurve x="1.222" y="0.614" centerX="1.225000" centerY="0.611000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.474" y="0.597"/> + <PolyStepSegment x="1.486" y="0.587"/> + <PolyStepSegment x="1.501" y="0.600"/> + <PolyStepSegment x="1.486" y="0.613"/> + <PolyStepSegment x="1.474" y="0.603"/> + <PolyStepCurve x="1.474" y="0.597" centerX="1.477000" centerY="0.600000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.551" y="0.153"/> + <PolyStepSegment x="1.539" y="0.163"/> + <PolyStepSegment x="1.524" y="0.150"/> + <PolyStepSegment x="1.539" y="0.137"/> + <PolyStepSegment x="1.551" y="0.147"/> + <PolyStepCurve x="1.551" y="0.153" centerX="1.548000" centerY="0.150000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.150"/> + <PolyStepSegment x="1.775" y="0.150"/> + <PolyStepSegment x="1.800" y="0.175"/> + <PolyStepSegment x="1.800" y="0.212"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="0.600"/> + <PolyStepSegment x="1.225" y="0.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.225" y="0.600"/> + <PolyStepSegment x="1.225" y="0.925"/> + <PolyStepSegment x="1.075" y="0.925"/> + <PolyStepSegment x="1.075" y="0.988"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="0.662"/> + <PolyStepSegment x="1.000" y="0.638"/> + <PolyStepSegment x="1.025" y="0.625"/> + <PolyStepSegment x="1.025" y="0.600"/> + <PolyStepSegment x="1.225" y="0.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="0.662"/> + <PolyStepSegment x="1.000" y="0.725"/> + <PolyStepSegment x="1.025" y="0.725"/> + <PolyStepSegment x="1.025" y="0.813"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.572" y="0.951"/> + <PolyStepSegment x="1.562" y="0.939"/> + <PolyStepSegment x="1.575" y="0.924"/> + <PolyStepSegment x="1.588" y="0.939"/> + <PolyStepSegment x="1.578" y="0.951"/> + <PolyStepCurve x="1.572" y="0.951" centerX="1.575000" centerY="0.948000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.534" y="0.505"/> + <PolyStepSegment x="1.550" y="0.505"/> + <PolyStepSegment x="1.551" y="0.526"/> + <PolyStepSegment x="1.530" y="0.525"/> + <PolyStepSegment x="1.530" y="0.509"/> + <PolyStepCurve x="1.534" y="0.505" centerX="1.534000" centerY="0.509000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="0.525"/> + <PolyStepSegment x="1.475" y="0.450"/> + <PolyStepSegment x="0.725" y="0.450"/> + <PolyStepSegment x="0.700" y="0.425"/> + <PolyStepSegment x="0.700" y="0.362"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.575" y="0.925"/> + <PolyStepSegment x="1.575" y="0.987"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.400" y="2.297"/> + <PolyStepSegment x="2.424" y="2.275"/> + <PolyStepSegment x="2.451" y="2.300"/> + <PolyStepSegment x="2.424" y="2.325"/> + <PolyStepSegment x="2.400" y="2.303"/> + <PolyStepCurve x="2.400" y="2.297" centerX="2.403000" centerY="2.300000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.300" y="2.303"/> + <PolyStepSegment x="2.276" y="2.325"/> + <PolyStepSegment x="2.249" y="2.300"/> + <PolyStepSegment x="2.276" y="2.275"/> + <PolyStepSegment x="2.300" y="2.297"/> + <PolyStepCurve x="2.300" y="2.303" centerX="2.297000" centerY="2.300000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.250" y="0.647"/> + <PolyStepSegment x="2.274" y="0.625"/> + <PolyStepSegment x="2.301" y="0.650"/> + <PolyStepSegment x="2.274" y="0.675"/> + <PolyStepSegment x="2.250" y="0.653"/> + <PolyStepCurve x="2.250" y="0.647" centerX="2.253000" centerY="0.650000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.047" y="0.550"/> + <PolyStepSegment x="2.025" y="0.526"/> + <PolyStepSegment x="2.050" y="0.499"/> + <PolyStepSegment x="2.075" y="0.526"/> + <PolyStepSegment x="2.053" y="0.550"/> + <PolyStepCurve x="2.047" y="0.550" centerX="2.050000" centerY="0.547000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.300" y="0.650"/> + <PolyStepSegment x="2.250" y="0.650"/> + <PolyStepSegment x="2.225" y="0.675"/> + <PolyStepSegment x="2.075" y="0.675"/> + <PolyStepSegment x="2.050" y="0.650"/> + <PolyStepSegment x="2.050" y="0.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VTTD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="2.300"/> + <PolyStepSegment x="2.250" y="2.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VTTA" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.242" y="0.813"/> + <PolyStepSegment x="2.275" y="0.814"/> + <PolyStepSegment x="2.276" y="0.851"/> + <PolyStepSegment x="2.239" y="0.850"/> + <PolyStepSegment x="2.238" y="0.817"/> + <PolyStepCurve x="2.242" y="0.813" centerX="2.242000" centerY="0.817000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTA"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="0.387"/> + <PolyStepSegment x="1.800" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VTTA"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="0.850"/> + <PolyStepSegment x="2.225" y="0.800"/> + <PolyStepSegment x="2.196" y="0.800"/> + <PolyStepSegment x="2.189" y="0.793"/> + <PolyStepSegment x="2.161" y="0.793"/> + <PolyStepSegment x="2.154" y="0.800"/> + <PolyStepSegment x="2.098" y="0.800"/> + <PolyStepSegment x="1.975" y="0.677"/> + <PolyStepSegment x="1.975" y="0.600"/> + <PolyStepSegment x="1.913" y="0.538"/> + <PolyStepSegment x="1.800" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.124" y="0.266"/> + <PolyStepSegment x="1.118" y="0.281"/> + <PolyStepSegment x="1.099" y="0.275"/> + <PolyStepSegment x="1.106" y="0.257"/> + <PolyStepSegment x="1.121" y="0.261"/> + <PolyStepCurve x="1.124" y="0.266" centerX="1.120000" centerY="0.265000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.477" y="0.761"/> + <PolyStepSegment x="0.481" y="0.746"/> + <PolyStepSegment x="0.501" y="0.749"/> + <PolyStepSegment x="0.496" y="0.769"/> + <PolyStepSegment x="0.480" y="0.766"/> + <PolyStepCurve x="0.477" y="0.761" centerX="0.481000" centerY="0.762000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.112" y="0.772"/> + <PolyStepSegment x="1.098" y="0.769"/> + <PolyStepSegment x="1.099" y="0.749"/> + <PolyStepSegment x="1.119" y="0.753"/> + <PolyStepSegment x="1.117" y="0.769"/> + <PolyStepCurve x="1.112" y="0.772" centerX="1.113000" centerY="0.768000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.125" y="0.813"/> + <PolyStepSegment x="1.125" y="0.784"/> + <PolyStepSegment x="1.100" y="0.750"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="0.750"/> + <PolyStepSegment x="0.466" y="0.772"/> + <PolyStepSegment x="0.450" y="0.788"/> + <PolyStepSegment x="0.450" y="0.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.150" y="0.200"/> + <PolyStepSegment x="1.150" y="0.250"/> + <PolyStepSegment x="1.100" y="0.275"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.300" y="0.238"/> + <PolyStepSegment x="1.300" y="0.175"/> + <PolyStepSegment x="1.200" y="0.175"/> + <PolyStepSegment x="1.200" y="0.200"/> + <PolyStepSegment x="1.150" y="0.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.526" y="0.678"/> + <PolyStepSegment x="1.514" y="0.688"/> + <PolyStepSegment x="1.499" y="0.675"/> + <PolyStepSegment x="1.514" y="0.662"/> + <PolyStepSegment x="1.526" y="0.672"/> + <PolyStepCurve x="1.526" y="0.678" centerX="1.523000" centerY="0.675000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="0.675"/> + <PolyStepSegment x="1.595" y="0.675"/> + <PolyStepSegment x="1.608" y="0.662"/> + <PolyStepSegment x="1.650" y="0.662"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="0.662"/> + <PolyStepSegment x="1.650" y="0.662"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VDD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.616" y="0.895"/> + <PolyStepSegment x="1.600" y="0.895"/> + <PolyStepSegment x="1.599" y="0.874"/> + <PolyStepSegment x="1.620" y="0.875"/> + <PolyStepSegment x="1.620" y="0.891"/> + <PolyStepCurve x="1.616" y="0.895" centerX="1.616000" centerY="0.891000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VDD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.558" y="0.250"/> + <PolyStepSegment x="1.550" y="0.242"/> + <PolyStepSegment x="1.550" y="0.224"/> + <PolyStepSegment x="1.561" y="0.233"/> + <PolyStepSegment x="1.562" y="0.250"/> + <PolyStepSegment x="1.558" y="0.250"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VDD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="0.875"/> + <PolyStepSegment x="1.650" y="0.925"/> + <PolyStepSegment x="1.700" y="0.925"/> + <PolyStepSegment x="1.725" y="0.950"/> + <PolyStepSegment x="1.725" y="0.987"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VDD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="0.212"/> + <PolyStepSegment x="1.750" y="0.242"/> + <PolyStepSegment x="1.742" y="0.250"/> + <PolyStepSegment x="1.558" y="0.250"/> + <PolyStepSegment x="1.550" y="0.242"/> + <PolyStepSegment x="1.550" y="0.225"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1SIP108PA60" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.966" y="0.420"/> + <PolyStepSegment x="0.950" y="0.420"/> + <PolyStepSegment x="0.949" y="0.399"/> + <PolyStepSegment x="0.970" y="0.400"/> + <PolyStepSegment x="0.970" y="0.416"/> + <PolyStepCurve x="0.966" y="0.420" centerX="0.966000" centerY="0.416000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1SIP108PA60" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.486" y="0.463"/> + <PolyStepSegment x="2.519" y="0.464"/> + <PolyStepSegment x="2.520" y="0.501"/> + <PolyStepSegment x="2.483" y="0.500"/> + <PolyStepSegment x="2.482" y="0.467"/> + <PolyStepCurve x="2.486" y="0.463" centerX="2.486000" centerY="0.467000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1SIP108PA60"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.950" y="0.400"/> + <PolyStepSegment x="0.975" y="0.425"/> + <PolyStepSegment x="1.375" y="0.425"/> + <PolyStepSegment x="1.400" y="0.400"/> + <PolyStepSegment x="1.400" y="0.298"/> + <PolyStepSegment x="1.408" y="0.290"/> + <PolyStepSegment x="2.317" y="0.290"/> + <PolyStepSegment x="2.325" y="0.298"/> + <PolyStepSegment x="2.325" y="0.306"/> + <PolyStepSegment x="2.519" y="0.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.799" y="2.072"/> + <PolyStepSegment x="1.811" y="2.062"/> + <PolyStepSegment x="1.826" y="2.075"/> + <PolyStepSegment x="1.811" y="2.088"/> + <PolyStepSegment x="1.799" y="2.078"/> + <PolyStepCurve x="1.799" y="2.072" centerX="1.802000" centerY="2.075000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.853" y="3.599"/> + <PolyStepSegment x="1.863" y="3.611"/> + <PolyStepSegment x="1.850" y="3.626"/> + <PolyStepSegment x="1.837" y="3.611"/> + <PolyStepSegment x="1.847" y="3.599"/> + <PolyStepCurve x="1.853" y="3.599" centerX="1.850000" centerY="3.602000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.212" y="3.428"/> + <PolyStepSegment x="2.213" y="3.394"/> + <PolyStepSegment x="2.251" y="3.393"/> + <PolyStepSegment x="2.250" y="3.431"/> + <PolyStepSegment x="2.216" y="3.432"/> + <PolyStepCurve x="2.212" y="3.428" centerX="2.216000" centerY="3.428000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.850" y="3.560"/> + <PolyStepSegment x="1.850" y="3.625"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.850" y="3.560"/> + <PolyStepSegment x="2.084" y="3.560"/> + <PolyStepSegment x="2.250" y="3.394"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.825" y="2.075"/> + <PolyStepSegment x="1.736" y="2.075"/> + <PolyStepSegment x="1.702" y="2.123"/> + <PolyStepSegment x="1.688" y="2.143"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.872" y="2.051"/> + <PolyStepSegment x="1.862" y="2.039"/> + <PolyStepSegment x="1.875" y="2.024"/> + <PolyStepSegment x="1.888" y="2.039"/> + <PolyStepSegment x="1.878" y="2.051"/> + <PolyStepCurve x="1.872" y="2.051" centerX="1.875000" centerY="2.048000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.284" y="2.962"/> + <PolyStepSegment x="2.250" y="2.961"/> + <PolyStepSegment x="2.249" y="2.924"/> + <PolyStepSegment x="2.287" y="2.925"/> + <PolyStepSegment x="2.288" y="2.958"/> + <PolyStepCurve x="2.284" y="2.962" centerX="2.284000" centerY="2.958000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="2.925"/> + <PolyStepSegment x="2.325" y="3.000"/> + <PolyStepSegment x="2.325" y="3.275"/> + <PolyStepSegment x="2.256" y="3.344"/> + <PolyStepSegment x="2.229" y="3.344"/> + <PolyStepSegment x="2.200" y="3.373"/> + <PolyStepSegment x="2.200" y="3.400"/> + <PolyStepSegment x="2.125" y="3.475"/> + <PolyStepSegment x="2.100" y="3.475"/> + <PolyStepSegment x="2.047" y="3.528"/> + <PolyStepSegment x="1.832" y="3.528"/> + <PolyStepSegment x="1.823" y="3.537"/> + <PolyStepSegment x="1.816" y="3.537"/> + <PolyStepSegment x="1.800" y="3.553"/> + <PolyStepSegment x="1.800" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="2.025"/> + <PolyStepSegment x="1.875" y="2.079"/> + <PolyStepSegment x="1.784" y="2.170"/> + <PolyStepSegment x="1.784" y="2.181"/> + <PolyStepSegment x="1.770" y="2.201"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.872" y="2.201"/> + <PolyStepSegment x="1.862" y="2.189"/> + <PolyStepSegment x="1.875" y="2.174"/> + <PolyStepSegment x="1.888" y="2.189"/> + <PolyStepSegment x="1.878" y="2.201"/> + <PolyStepCurve x="1.872" y="2.201" centerX="1.875000" centerY="2.198000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.212" y="3.272"/> + <PolyStepSegment x="2.213" y="3.238"/> + <PolyStepSegment x="2.251" y="3.237"/> + <PolyStepSegment x="2.250" y="3.275"/> + <PolyStepSegment x="2.216" y="3.276"/> + <PolyStepCurve x="2.212" y="3.272" centerX="2.216000" centerY="3.272000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="3.238"/> + <PolyStepSegment x="2.050" y="3.438"/> + <PolyStepSegment x="2.050" y="3.467"/> + <PolyStepSegment x="2.042" y="3.475"/> + <PolyStepSegment x="1.711" y="3.475"/> + <PolyStepSegment x="1.650" y="3.536"/> + <PolyStepSegment x="1.650" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="2.175"/> + <PolyStepSegment x="1.875" y="2.225"/> + <PolyStepSegment x="1.866" y="2.238"/> + <PolyStepSegment x="1.852" y="2.258"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.212" y="3.114"/> + <PolyStepSegment x="2.213" y="3.081"/> + <PolyStepSegment x="2.251" y="3.080"/> + <PolyStepSegment x="2.250" y="3.117"/> + <PolyStepSegment x="2.216" y="3.118"/> + <PolyStepCurve x="2.212" y="3.114" centerX="2.216000" centerY="3.114000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.880" y="2.116"/> + <PolyStepSegment x="1.880" y="2.100"/> + <PolyStepSegment x="1.901" y="2.099"/> + <PolyStepSegment x="1.900" y="2.120"/> + <PolyStepSegment x="1.884" y="2.120"/> + <PolyStepCurve x="1.880" y="2.116" centerX="1.884000" centerY="2.116000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.811" y="2.229"/> + <PolyStepSegment x="1.815" y="2.223"/> + <PolyStepSegment x="1.811" y="2.201"/> + <PolyStepSegment x="1.811" y="2.189"/> + <PolyStepSegment x="1.900" y="2.100"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="3.081"/> + <PolyStepSegment x="2.181" y="3.150"/> + <PolyStepSegment x="2.158" y="3.150"/> + <PolyStepSegment x="2.150" y="3.158"/> + <PolyStepSegment x="2.150" y="3.275"/> + <PolyStepSegment x="2.000" y="3.425"/> + <PolyStepSegment x="1.996" y="3.425"/> + <PolyStepSegment x="1.989" y="3.432"/> + <PolyStepSegment x="1.961" y="3.432"/> + <PolyStepSegment x="1.954" y="3.425"/> + <PolyStepSegment x="1.675" y="3.425"/> + <PolyStepSegment x="1.600" y="3.500"/> + <PolyStepSegment x="1.600" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.628" y="2.149"/> + <PolyStepSegment x="1.638" y="2.161"/> + <PolyStepSegment x="1.625" y="2.176"/> + <PolyStepSegment x="1.612" y="2.161"/> + <PolyStepSegment x="1.622" y="2.149"/> + <PolyStepCurve x="1.628" y="2.149" centerX="1.625000" centerY="2.152000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.691" y="2.745"/> + <PolyStepSegment x="1.675" y="2.745"/> + <PolyStepSegment x="1.674" y="2.724"/> + <PolyStepSegment x="1.695" y="2.725"/> + <PolyStepSegment x="1.695" y="2.741"/> + <PolyStepCurve x="1.691" y="2.745" centerX="1.691000" centerY="2.741000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.212" y="2.802"/> + <PolyStepSegment x="2.213" y="2.769"/> + <PolyStepSegment x="2.251" y="2.768"/> + <PolyStepSegment x="2.250" y="2.805"/> + <PolyStepSegment x="2.216" y="2.806"/> + <PolyStepCurve x="2.212" y="2.802" centerX="2.216000" centerY="2.802000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.625" y="2.175"/> + <PolyStepSegment x="1.625" y="2.145"/> + <PolyStepSegment x="1.633" y="2.134"/> + <PolyStepSegment x="1.647" y="2.114"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.019" y="2.778"/> + <PolyStepSegment x="2.014" y="2.773"/> + <PolyStepSegment x="1.991" y="2.773"/> + <PolyStepSegment x="1.986" y="2.778"/> + <PolyStepSegment x="1.945" y="2.778"/> + <PolyStepSegment x="1.898" y="2.825"/> + <PolyStepSegment x="1.775" y="2.825"/> + <PolyStepSegment x="1.675" y="2.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.019" y="2.778"/> + <PolyStepSegment x="2.036" y="2.795"/> + <PolyStepSegment x="2.045" y="2.795"/> + <PolyStepSegment x="2.075" y="2.825"/> + <PolyStepSegment x="2.079" y="2.825"/> + <PolyStepSegment x="2.086" y="2.832"/> + <PolyStepSegment x="2.114" y="2.832"/> + <PolyStepSegment x="2.121" y="2.825"/> + <PolyStepSegment x="2.194" y="2.825"/> + <PolyStepSegment x="2.250" y="2.769"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.084" y="2.780"/> + <PolyStepSegment x="2.100" y="2.780"/> + <PolyStepSegment x="2.101" y="2.801"/> + <PolyStepSegment x="2.080" y="2.800"/> + <PolyStepSegment x="2.080" y="2.784"/> + <PolyStepCurve x="2.084" y="2.780" centerX="2.084000" centerY="2.784000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.626" y="2.728"/> + <PolyStepSegment x="1.614" y="2.738"/> + <PolyStepSegment x="1.599" y="2.725"/> + <PolyStepSegment x="1.614" y="2.712"/> + <PolyStepSegment x="1.626" y="2.722"/> + <PolyStepCurve x="1.626" y="2.728" centerX="1.623000" centerY="2.725000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.579" y="2.131"/> + <PolyStepSegment x="1.581" y="2.146"/> + <PolyStepSegment x="1.561" y="2.151"/> + <PolyStepSegment x="1.559" y="2.131"/> + <PolyStepSegment x="1.575" y="2.128"/> + <PolyStepCurve x="1.579" y="2.131" centerX="1.575000" centerY="2.132167" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.055" y="2.742"/> + <PolyStepSegment x="2.072" y="2.759"/> + <PolyStepSegment x="2.072" y="2.772"/> + <PolyStepSegment x="2.100" y="2.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.607" y="2.086"/> + <PolyStepSegment x="1.593" y="2.106"/> + <PolyStepSegment x="1.562" y="2.150"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.055" y="2.742"/> + <PolyStepSegment x="2.038" y="2.725"/> + <PolyStepSegment x="1.975" y="2.725"/> + <PolyStepSegment x="1.893" y="2.807"/> + <PolyStepSegment x="1.807" y="2.807"/> + <PolyStepSegment x="1.681" y="2.681"/> + <PolyStepSegment x="1.669" y="2.681"/> + <PolyStepSegment x="1.625" y="2.725"/> + <PolyStepSegment x="1.600" y="2.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.284" y="2.650"/> + <PolyStepSegment x="2.250" y="2.649"/> + <PolyStepSegment x="2.249" y="2.611"/> + <PolyStepSegment x="2.287" y="2.612"/> + <PolyStepSegment x="2.288" y="2.646"/> + <PolyStepCurve x="2.284" y="2.650" centerX="2.284000" centerY="2.646000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.913" y="2.884"/> + <PolyStepSegment x="1.954" y="2.925"/> + <PolyStepSegment x="2.000" y="2.925"/> + <PolyStepSegment x="2.075" y="2.850"/> + <PolyStepSegment x="2.275" y="2.850"/> + <PolyStepSegment x="2.300" y="2.825"/> + <PolyStepSegment x="2.300" y="2.662"/> + <PolyStepSegment x="2.250" y="2.612"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.284" y="2.494"/> + <PolyStepSegment x="2.250" y="2.493"/> + <PolyStepSegment x="2.249" y="2.455"/> + <PolyStepSegment x="2.287" y="2.456"/> + <PolyStepSegment x="2.288" y="2.490"/> + <PolyStepCurve x="2.284" y="2.494" centerX="2.284000" centerY="2.490000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="2.456"/> + <PolyStepSegment x="2.325" y="2.531"/> + <PolyStepSegment x="2.325" y="2.850"/> + <PolyStepSegment x="2.300" y="2.875"/> + <PolyStepSegment x="2.125" y="2.875"/> + <PolyStepSegment x="2.025" y="2.975"/> + <PolyStepSegment x="1.950" y="2.975"/> + <PolyStepSegment x="1.911" y="2.936"/> + <PolyStepSegment x="1.895" y="2.936"/> + <PolyStepSegment x="1.878" y="2.919"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345028PCMP20"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="0.375"/> + <PolyStepSegment x="1.000" y="0.332"/> + <PolyStepSegment x="0.850" y="0.332"/> + <PolyStepSegment x="0.850" y="0.362"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345028PCMP10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.850" y="0.238"/> + <PolyStepSegment x="0.850" y="0.175"/> + <PolyStepSegment x="0.950" y="0.175"/> + <PolyStepSegment x="0.950" y="0.200"/> + <PolyStepSegment x="1.000" y="0.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345020PCMP20" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.199" y="0.971"/> + <PolyStepSegment x="0.211" y="0.961"/> + <PolyStepSegment x="0.226" y="0.975"/> + <PolyStepSegment x="0.211" y="0.987"/> + <PolyStepSegment x="0.199" y="0.977"/> + <PolyStepCurve x="0.199" y="0.971" centerX="0.202000" centerY="0.974000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1CA345020PCMP20" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.251" y="0.978"/> + <PolyStepSegment x="0.239" y="0.988"/> + <PolyStepSegment x="0.224" y="0.975"/> + <PolyStepSegment x="0.239" y="0.962"/> + <PolyStepSegment x="0.251" y="0.972"/> + <PolyStepCurve x="0.251" y="0.978" centerX="0.248000" centerY="0.975000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1CA345020PCMP20"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.150" y="0.974"/> + <PolyStepSegment x="0.192" y="0.974"/> + <PolyStepSegment x="0.225" y="0.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345020PCMP20"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.225" y="0.975"/> + <PolyStepSegment x="0.300" y="0.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345020PCMP10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.176" y="0.803"/> + <PolyStepSegment x="0.164" y="0.813"/> + <PolyStepSegment x="0.149" y="0.800"/> + <PolyStepSegment x="0.164" y="0.787"/> + <PolyStepSegment x="0.176" y="0.797"/> + <PolyStepCurve x="0.176" y="0.803" centerX="0.173000" centerY="0.800000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1CA345020PCMP10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.147" y="0.826"/> + <PolyStepSegment x="0.137" y="0.814"/> + <PolyStepSegment x="0.150" y="0.799"/> + <PolyStepSegment x="0.163" y="0.814"/> + <PolyStepSegment x="0.153" y="0.826"/> + <PolyStepCurve x="0.147" y="0.826" centerX="0.150000" centerY="0.823000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1CA345020PCMP10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.300" y="0.800"/> + <PolyStepSegment x="0.150" y="0.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345020PCMP10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.150" y="0.800"/> + <PolyStepSegment x="0.150" y="0.850"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345010PCMP20"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.975" y="0.988"/> + <PolyStepSegment x="0.975" y="1.075"/> + <PolyStepSegment x="0.850" y="1.075"/> + <PolyStepSegment x="0.850" y="0.962"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1CA345010PCMP10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.850" y="0.838"/> + <PolyStepSegment x="0.850" y="0.750"/> + <PolyStepSegment x="0.975" y="0.750"/> + <PolyStepSegment x="0.975" y="0.813"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ50" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.497" y="1.601"/> + <PolyStepSegment x="2.487" y="1.589"/> + <PolyStepSegment x="2.500" y="1.574"/> + <PolyStepSegment x="2.513" y="1.589"/> + <PolyStepSegment x="2.503" y="1.601"/> + <PolyStepCurve x="2.497" y="1.601" centerX="2.500000" centerY="1.598000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ50"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.500" y="1.575"/> + <PolyStepSegment x="2.500" y="1.600"/> + <PolyStepSegment x="2.425" y="1.675"/> + <PolyStepSegment x="2.302" y="1.675"/> + <PolyStepSegment x="2.296" y="1.681"/> + <PolyStepSegment x="2.254" y="1.681"/> + <PolyStepSegment x="2.248" y="1.675"/> + <PolyStepSegment x="1.957" y="1.675"/> + <PolyStepSegment x="1.889" y="1.743"/> + <PolyStepSegment x="1.893" y="1.765"/> + <PolyStepSegment x="1.889" y="1.771"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ40" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.849" y="1.252"/> + <PolyStepSegment x="2.827" y="1.228"/> + <PolyStepSegment x="2.852" y="1.201"/> + <PolyStepSegment x="2.877" y="1.228"/> + <PolyStepSegment x="2.855" y="1.252"/> + <PolyStepCurve x="2.849" y="1.252" centerX="2.852000" centerY="1.249000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ40"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.971" y="1.828"/> + <PolyStepSegment x="1.985" y="1.808"/> + <PolyStepSegment x="2.061" y="1.700"/> + <PolyStepSegment x="2.425" y="1.700"/> + <PolyStepSegment x="2.852" y="1.273"/> + <PolyStepSegment x="2.852" y="1.202"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ30" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="3.036" y="1.457"/> + <PolyStepSegment x="3.037" y="1.424"/> + <PolyStepSegment x="3.075" y="1.423"/> + <PolyStepSegment x="3.074" y="1.460"/> + <PolyStepSegment x="3.040" y="1.461"/> + <PolyStepCurve x="3.036" y="1.457" centerX="3.040000" centerY="1.457000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ30"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.074" y="1.424"/> + <PolyStepSegment x="2.473" y="2.025"/> + <PolyStepSegment x="2.200" y="2.025"/> + <PolyStepSegment x="2.153" y="2.072"/> + <PolyStepSegment x="2.125" y="2.072"/> + <PolyStepSegment x="2.103" y="2.056"/> + <PolyStepSegment x="2.079" y="2.039"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ20" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.929" y="1.343"/> + <PolyStepSegment x="2.930" y="1.316"/> + <PolyStepSegment x="2.964" y="1.312"/> + <PolyStepSegment x="2.960" y="1.346"/> + <PolyStepSegment x="2.933" y="1.347"/> + <PolyStepCurve x="2.929" y="1.343" centerX="2.933000" centerY="1.343000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ20"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.093" y="1.914"/> + <PolyStepSegment x="2.138" y="1.850"/> + <PolyStepSegment x="2.325" y="1.850"/> + <PolyStepSegment x="2.350" y="1.825"/> + <PolyStepSegment x="2.350" y="1.750"/> + <PolyStepSegment x="2.375" y="1.725"/> + <PolyStepSegment x="2.450" y="1.725"/> + <PolyStepSegment x="2.475" y="1.700"/> + <PolyStepSegment x="2.575" y="1.700"/> + <PolyStepSegment x="2.932" y="1.343"/> + <PolyStepSegment x="2.933" y="1.343"/> + <PolyStepSegment x="2.963" y="1.313"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.422" y="1.801"/> + <PolyStepSegment x="2.412" y="1.789"/> + <PolyStepSegment x="2.425" y="1.774"/> + <PolyStepSegment x="2.438" y="1.789"/> + <PolyStepSegment x="2.428" y="1.801"/> + <PolyStepCurve x="2.422" y="1.801" centerX="2.425000" centerY="1.798000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.736" y="1.797"/> + <PolyStepSegment x="1.843" y="1.873"/> + <PolyStepSegment x="1.843" y="1.939"/> + <PolyStepSegment x="1.861" y="1.957"/> + <PolyStepSegment x="2.118" y="1.957"/> + <PolyStepSegment x="2.200" y="1.875"/> + <PolyStepSegment x="2.375" y="1.875"/> + <PolyStepSegment x="2.425" y="1.825"/> + <PolyStepSegment x="2.425" y="1.775"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="3.146" y="1.567"/> + <PolyStepSegment x="3.147" y="1.534"/> + <PolyStepSegment x="3.185" y="1.533"/> + <PolyStepSegment x="3.184" y="1.570"/> + <PolyStepSegment x="3.150" y="1.571"/> + <PolyStepCurve x="3.146" y="1.567" centerX="3.150000" centerY="1.567000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.678" y="1.879"/> + <PolyStepSegment x="1.688" y="1.886"/> + <PolyStepSegment x="1.726" y="1.879"/> + <PolyStepSegment x="1.795" y="1.879"/> + <PolyStepSegment x="1.827" y="1.911"/> + <PolyStepSegment x="1.827" y="1.946"/> + <PolyStepSegment x="1.854" y="1.973"/> + <PolyStepSegment x="1.898" y="1.973"/> + <PolyStepSegment x="2.008" y="2.083"/> + <PolyStepSegment x="2.012" y="2.083"/> + <PolyStepSegment x="2.061" y="2.118"/> + <PolyStepSegment x="2.063" y="2.128"/> + <PolyStepSegment x="2.063" y="2.138"/> + <PolyStepSegment x="2.100" y="2.175"/> + <PolyStepSegment x="2.425" y="2.175"/> + <PolyStepSegment x="2.775" y="1.825"/> + <PolyStepSegment x="2.893" y="1.825"/> + <PolyStepSegment x="3.184" y="1.534"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15168PQ0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.704" y="1.125"/> + <PolyStepSegment x="2.705" y="1.092"/> + <PolyStepSegment x="2.743" y="1.091"/> + <PolyStepSegment x="2.742" y="1.128"/> + <PolyStepSegment x="2.708" y="1.129"/> + <PolyStepCurve x="2.704" y="1.125" centerX="2.708000" centerY="1.125000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15168PQ0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.650" y="1.627"/> + <PolyStepSegment x="1.638" y="1.637"/> + <PolyStepSegment x="1.623" y="1.624"/> + <PolyStepSegment x="1.638" y="1.611"/> + <PolyStepSegment x="1.650" y="1.621"/> + <PolyStepCurve x="1.650" y="1.627" centerX="1.647000" centerY="1.624000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15168PQ0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.742" y="1.092"/> + <PolyStepSegment x="2.650" y="1.184"/> + <PolyStepSegment x="2.650" y="1.375"/> + <PolyStepSegment x="2.450" y="1.575"/> + <PolyStepSegment x="2.175" y="1.575"/> + <PolyStepSegment x="2.126" y="1.624"/> + <PolyStepSegment x="1.624" y="1.624"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11699PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.192" y="2.255"/> + <PolyStepSegment x="1.209" y="2.272"/> + <PolyStepSegment x="1.221" y="2.272"/> + <PolyStepSegment x="1.256" y="2.307"/> + <PolyStepSegment x="1.268" y="2.307"/> + <PolyStepSegment x="1.319" y="2.256"/> + <PolyStepSegment x="1.319" y="2.244"/> + <PolyStepSegment x="1.280" y="2.205"/> + <PolyStepSegment x="1.280" y="2.201"/> + <PolyStepSegment x="1.263" y="2.184"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.416" y="2.418"/> + <PolyStepSegment x="2.450" y="2.419"/> + <PolyStepSegment x="2.451" y="2.457"/> + <PolyStepSegment x="2.413" y="2.456"/> + <PolyStepSegment x="2.412" y="2.422"/> + <PolyStepCurve x="2.416" y="2.418" centerX="2.416000" centerY="2.422000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.626" y="2.278"/> + <PolyStepSegment x="0.614" y="2.288"/> + <PolyStepSegment x="0.599" y="2.275"/> + <PolyStepSegment x="0.614" y="2.262"/> + <PolyStepSegment x="0.626" y="2.272"/> + <PolyStepCurve x="0.626" y="2.278" centerX="0.623000" centerY="2.275000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.526" y="3.253"/> + <PolyStepSegment x="0.514" y="3.263"/> + <PolyStepSegment x="0.499" y="3.250"/> + <PolyStepSegment x="0.514" y="3.237"/> + <PolyStepSegment x="0.526" y="3.247"/> + <PolyStepCurve x="0.526" y="3.253" centerX="0.523000" centerY="3.250000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.724" y="2.322"/> + <PolyStepSegment x="1.736" y="2.312"/> + <PolyStepSegment x="1.751" y="2.325"/> + <PolyStepSegment x="1.736" y="2.338"/> + <PolyStepSegment x="1.724" y="2.328"/> + <PolyStepCurve x="1.724" y="2.322" centerX="1.727000" centerY="2.325000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.776" y="2.328"/> + <PolyStepSegment x="1.764" y="2.338"/> + <PolyStepSegment x="1.749" y="2.325"/> + <PolyStepSegment x="1.764" y="2.312"/> + <PolyStepSegment x="1.776" y="2.322"/> + <PolyStepCurve x="1.776" y="2.328" centerX="1.773000" centerY="2.325000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="2.325"/> + <PolyStepSegment x="1.200" y="2.325"/> + <PolyStepSegment x="1.175" y="2.300"/> + <PolyStepSegment x="0.825" y="2.300"/> + <PolyStepSegment x="0.800" y="2.275"/> + <PolyStepSegment x="0.600" y="2.275"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.610" y="3.250"/> + <PolyStepSegment x="0.500" y="3.250"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="2.456"/> + <PolyStepSegment x="2.369" y="2.375"/> + <PolyStepSegment x="2.208" y="2.375"/> + <PolyStepSegment x="2.200" y="2.367"/> + <PolyStepSegment x="2.200" y="2.309"/> + <PolyStepSegment x="2.017" y="2.179"/> + <PolyStepSegment x="1.993" y="2.162"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="2.325"/> + <PolyStepSegment x="1.875" y="2.325"/> + <PolyStepSegment x="1.900" y="2.300"/> + <PolyStepSegment x="1.900" y="2.249"/> + <PolyStepSegment x="1.897" y="2.246"/> + <PolyStepSegment x="1.895" y="2.236"/> + <PolyStepSegment x="1.900" y="2.229"/> + <PolyStepSegment x="1.900" y="2.196"/> + <PolyStepSegment x="1.907" y="2.189"/> + <PolyStepSegment x="1.907" y="2.171"/> + <PolyStepSegment x="1.933" y="2.145"/> + <PolyStepSegment x="1.969" y="2.145"/> + <PolyStepSegment x="1.993" y="2.162"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.426" y="3.303"/> + <PolyStepSegment x="0.414" y="3.313"/> + <PolyStepSegment x="0.399" y="3.300"/> + <PolyStepSegment x="0.414" y="3.287"/> + <PolyStepSegment x="0.426" y="3.297"/> + <PolyStepCurve x="0.426" y="3.303" centerX="0.423000" centerY="3.300000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.610" y="3.300"/> + <PolyStepSegment x="0.400" y="3.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.840" y="3.300"/> + <PolyStepSegment x="0.610" y="3.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.547" y="3.101"/> + <PolyStepSegment x="0.537" y="3.089"/> + <PolyStepSegment x="0.550" y="3.074"/> + <PolyStepSegment x="0.563" y="3.089"/> + <PolyStepSegment x="0.553" y="3.101"/> + <PolyStepCurve x="0.547" y="3.101" centerX="0.550000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.328" y="0.849"/> + <PolyStepSegment x="1.338" y="0.861"/> + <PolyStepSegment x="1.325" y="0.876"/> + <PolyStepSegment x="1.312" y="0.861"/> + <PolyStepSegment x="1.322" y="0.849"/> + <PolyStepCurve x="1.328" y="0.849" centerX="1.325000" centerY="0.852000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.351" y="3.728"/> + <PolyStepSegment x="0.339" y="3.738"/> + <PolyStepSegment x="0.324" y="3.725"/> + <PolyStepSegment x="0.339" y="3.712"/> + <PolyStepSegment x="0.351" y="3.722"/> + <PolyStepCurve x="0.351" y="3.728" centerX="0.348000" centerY="3.725000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.524" y="3.722"/> + <PolyStepSegment x="2.536" y="3.712"/> + <PolyStepSegment x="2.551" y="3.725"/> + <PolyStepSegment x="2.536" y="3.738"/> + <PolyStepSegment x="2.524" y="3.728"/> + <PolyStepCurve x="2.524" y="3.722" centerX="2.527000" centerY="3.725000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.550" y="3.725"/> + <PolyStepSegment x="0.325" y="3.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.325" y="0.813"/> + <PolyStepSegment x="1.325" y="0.875"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.075"/> + <PolyStepSegment x="0.550" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.447" y="2.975"/> + <PolyStepSegment x="2.425" y="2.951"/> + <PolyStepSegment x="2.450" y="2.924"/> + <PolyStepSegment x="2.475" y="2.951"/> + <PolyStepSegment x="2.453" y="2.975"/> + <PolyStepCurve x="2.447" y="2.975" centerX="2.450000" centerY="2.972000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="3.140"/> + <PolyStepSegment x="0.500" y="3.200"/> + <PolyStepSegment x="0.432" y="3.268"/> + <PolyStepSegment x="0.386" y="3.268"/> + <PolyStepSegment x="0.368" y="3.286"/> + <PolyStepSegment x="0.368" y="3.314"/> + <PolyStepSegment x="0.375" y="3.321"/> + <PolyStepSegment x="0.375" y="3.625"/> + <PolyStepSegment x="0.450" y="3.700"/> + <PolyStepSegment x="2.375" y="3.700"/> + <PolyStepSegment x="2.450" y="3.625"/> + <PolyStepSegment x="2.450" y="3.621"/> + <PolyStepSegment x="2.500" y="3.571"/> + <PolyStepSegment x="2.500" y="3.060"/> + <PolyStepSegment x="2.450" y="3.010"/> + <PolyStepSegment x="2.450" y="2.925"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="3.140"/> + <PolyStepSegment x="0.500" y="3.050"/> + <PolyStepSegment x="0.550" y="3.000"/> + <PolyStepSegment x="0.675" y="3.000"/> + <PolyStepSegment x="0.845" y="2.830"/> + <PolyStepSegment x="0.849" y="2.830"/> + <PolyStepSegment x="0.866" y="2.813"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.576" y="3.453"/> + <PolyStepSegment x="0.564" y="3.463"/> + <PolyStepSegment x="0.549" y="3.450"/> + <PolyStepSegment x="0.564" y="3.437"/> + <PolyStepSegment x="0.576" y="3.447"/> + <PolyStepCurve x="0.576" y="3.453" centerX="0.573000" centerY="3.450000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.876" y="2.184"/> + <PolyStepSegment x="0.876" y="2.200"/> + <PolyStepSegment x="0.855" y="2.201"/> + <PolyStepSegment x="0.856" y="2.180"/> + <PolyStepSegment x="0.872" y="2.180"/> + <PolyStepCurve x="0.876" y="2.184" centerX="0.872000" centerY="2.184000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.966" y="2.113"/> + <PolyStepSegment x="0.958" y="2.121"/> + <PolyStepSegment x="0.935" y="2.121"/> + <PolyStepSegment x="0.856" y="2.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.450"/> + <PolyStepSegment x="0.610" y="3.450"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.560"/> + <PolyStepSegment x="0.550" y="3.600"/> + <PolyStepSegment x="0.575" y="3.625"/> + <PolyStepSegment x="0.650" y="3.625"/> + <PolyStepSegment x="0.675" y="3.600"/> + <PolyStepSegment x="0.675" y="3.475"/> + <PolyStepSegment x="0.650" y="3.450"/> + <PolyStepSegment x="0.610" y="3.450"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.674" y="3.397"/> + <PolyStepSegment x="0.686" y="3.387"/> + <PolyStepSegment x="0.701" y="3.400"/> + <PolyStepSegment x="0.686" y="3.413"/> + <PolyStepSegment x="0.674" y="3.403"/> + <PolyStepCurve x="0.674" y="3.397" centerX="0.677000" centerY="3.400000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.945" y="2.209"/> + <PolyStepSegment x="0.945" y="2.225"/> + <PolyStepSegment x="0.924" y="2.226"/> + <PolyStepSegment x="0.925" y="2.205"/> + <PolyStepSegment x="0.941" y="2.205"/> + <PolyStepCurve x="0.945" y="2.209" centerX="0.941000" centerY="2.209000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.002" y="2.148"/> + <PolyStepSegment x="0.925" y="2.225"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="3.400"/> + <PolyStepSegment x="0.610" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.610" y="3.500"/> + <PolyStepSegment x="0.550" y="3.500"/> + <PolyStepSegment x="0.525" y="3.475"/> + <PolyStepSegment x="0.525" y="3.471"/> + <PolyStepSegment x="0.518" y="3.464"/> + <PolyStepSegment x="0.518" y="3.436"/> + <PolyStepSegment x="0.525" y="3.429"/> + <PolyStepSegment x="0.525" y="3.425"/> + <PolyStepSegment x="0.550" y="3.400"/> + <PolyStepSegment x="0.610" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.126" y="1.878"/> + <PolyStepSegment x="0.114" y="1.888"/> + <PolyStepSegment x="0.099" y="1.875"/> + <PolyStepSegment x="0.114" y="1.862"/> + <PolyStepSegment x="0.126" y="1.872"/> + <PolyStepCurve x="0.126" y="1.878" centerX="0.123000" centerY="1.875000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.372" y="0.751"/> + <PolyStepSegment x="1.362" y="0.739"/> + <PolyStepSegment x="1.375" y="0.724"/> + <PolyStepSegment x="1.388" y="0.739"/> + <PolyStepSegment x="1.378" y="0.751"/> + <PolyStepCurve x="1.372" y="0.751" centerX="1.375000" centerY="0.748000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.470" y="0.334"/> + <PolyStepSegment x="1.470" y="0.350"/> + <PolyStepSegment x="1.449" y="0.351"/> + <PolyStepSegment x="1.450" y="0.330"/> + <PolyStepSegment x="1.466" y="0.330"/> + <PolyStepCurve x="1.470" y="0.334" centerX="1.466000" centerY="0.334000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.209" y="0.450"/> + <PolyStepSegment x="2.231" y="0.474"/> + <PolyStepSegment x="2.206" y="0.501"/> + <PolyStepSegment x="2.181" y="0.474"/> + <PolyStepSegment x="2.203" y="0.450"/> + <PolyStepCurve x="2.209" y="0.450" centerX="2.206000" centerY="0.453000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.450" y="0.350"/> + <PolyStepSegment x="1.475" y="0.325"/> + <PolyStepSegment x="2.125" y="0.325"/> + <PolyStepSegment x="2.206" y="0.406"/> + <PolyStepSegment x="2.206" y="0.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.375" y="0.725"/> + <PolyStepSegment x="1.375" y="0.813"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.100" y="1.875"/> + <PolyStepSegment x="0.154" y="1.875"/> + <PolyStepSegment x="0.216" y="1.937"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.287" y="1.866"/> + <PolyStepSegment x="0.446" y="2.025"/> + <PolyStepSegment x="0.500" y="2.025"/> + <PolyStepSegment x="0.567" y="1.958"/> + <PolyStepSegment x="0.567" y="1.954"/> + <PolyStepSegment x="0.584" y="1.937"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.549" y="2.522"/> + <PolyStepSegment x="2.561" y="2.512"/> + <PolyStepSegment x="2.576" y="2.525"/> + <PolyStepSegment x="2.561" y="2.538"/> + <PolyStepSegment x="2.549" y="2.528"/> + <PolyStepCurve x="2.549" y="2.522" centerX="2.552000" centerY="2.525000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.226" y="2.428"/> + <PolyStepSegment x="1.214" y="2.438"/> + <PolyStepSegment x="1.199" y="2.425"/> + <PolyStepSegment x="1.214" y="2.412"/> + <PolyStepSegment x="1.226" y="2.422"/> + <PolyStepCurve x="1.226" y="2.428" centerX="1.223000" centerY="2.425000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.298" y="2.525"/> + <PolyStepSegment x="0.288" y="2.515"/> + <PolyStepSegment x="0.300" y="2.489"/> + <PolyStepSegment x="0.312" y="2.515"/> + <PolyStepSegment x="0.302" y="2.525"/> + <PolyStepCurve x="0.298" y="2.525" centerX="0.300000" centerY="2.522000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.870" y="2.884"/> + <PolyStepSegment x="0.870" y="2.900"/> + <PolyStepSegment x="0.849" y="2.901"/> + <PolyStepSegment x="0.850" y="2.880"/> + <PolyStepSegment x="0.866" y="2.880"/> + <PolyStepCurve x="0.870" y="2.884" centerX="0.866000" centerY="2.884000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.801" y="3.353"/> + <PolyStepSegment x="0.789" y="3.363"/> + <PolyStepSegment x="0.774" y="3.350"/> + <PolyStepSegment x="0.789" y="3.337"/> + <PolyStepSegment x="0.801" y="3.347"/> + <PolyStepCurve x="0.801" y="3.353" centerX="0.798000" centerY="3.350000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.840" y="3.350"/> + <PolyStepSegment x="0.775" y="3.350"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.850" y="2.900"/> + <PolyStepSegment x="0.902" y="2.848"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.300" y="2.490"/> + <PolyStepSegment x="0.300" y="2.650"/> + <PolyStepSegment x="0.350" y="2.700"/> + <PolyStepSegment x="0.560" y="2.700"/> + <PolyStepSegment x="0.585" y="2.725"/> + <PolyStepSegment x="0.635" y="2.725"/> + <PolyStepSegment x="0.660" y="2.700"/> + <PolyStepSegment x="0.875" y="2.700"/> + <PolyStepSegment x="0.902" y="2.727"/> + <PolyStepSegment x="0.902" y="2.815"/> + <PolyStepSegment x="0.907" y="2.820"/> + <PolyStepSegment x="0.907" y="2.843"/> + <PolyStepSegment x="0.902" y="2.848"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.575" y="2.525"/> + <PolyStepSegment x="2.400" y="2.525"/> + <PolyStepSegment x="2.275" y="2.400"/> + <PolyStepSegment x="1.796" y="2.400"/> + <PolyStepSegment x="1.789" y="2.407"/> + <PolyStepSegment x="1.761" y="2.407"/> + <PolyStepSegment x="1.754" y="2.400"/> + <PolyStepSegment x="1.700" y="2.400"/> + <PolyStepSegment x="1.675" y="2.425"/> + <PolyStepSegment x="1.200" y="2.425"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.252" y="2.455"/> + <PolyStepSegment x="0.262" y="2.465"/> + <PolyStepSegment x="0.250" y="2.491"/> + <PolyStepSegment x="0.238" y="2.465"/> + <PolyStepSegment x="0.248" y="2.455"/> + <PolyStepCurve x="0.252" y="2.455" centerX="0.250000" centerY="2.458000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.749" y="2.372"/> + <PolyStepSegment x="1.761" y="2.362"/> + <PolyStepSegment x="1.776" y="2.375"/> + <PolyStepSegment x="1.761" y="2.388"/> + <PolyStepSegment x="1.749" y="2.378"/> + <PolyStepCurve x="1.749" y="2.372" centerX="1.752000" centerY="2.375000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.801" y="2.378"/> + <PolyStepSegment x="1.789" y="2.388"/> + <PolyStepSegment x="1.774" y="2.375"/> + <PolyStepSegment x="1.789" y="2.362"/> + <PolyStepSegment x="1.801" y="2.372"/> + <PolyStepCurve x="1.801" y="2.378" centerX="1.798000" centerY="2.375000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.121" y="1.425"/> + <PolyStepSegment x="2.133" y="1.415"/> + <PolyStepSegment x="2.148" y="1.428"/> + <PolyStepSegment x="2.133" y="1.441"/> + <PolyStepSegment x="2.121" y="1.431"/> + <PolyStepCurve x="2.121" y="1.425" centerX="2.124000" centerY="1.428000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.898" y="1.431"/> + <PolyStepSegment x="1.886" y="1.441"/> + <PolyStepSegment x="1.871" y="1.428"/> + <PolyStepSegment x="1.886" y="1.415"/> + <PolyStepSegment x="1.898" y="1.425"/> + <PolyStepCurve x="1.898" y="1.431" centerX="1.895000" centerY="1.428000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.872" y="1.428"/> + <PolyStepSegment x="2.147" y="1.428"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.775" y="2.375"/> + <PolyStepSegment x="0.925" y="2.375"/> + <PolyStepSegment x="0.825" y="2.475"/> + <PolyStepSegment x="0.625" y="2.475"/> + <PolyStepSegment x="0.551" y="2.549"/> + <PolyStepSegment x="0.333" y="2.549"/> + <PolyStepSegment x="0.325" y="2.541"/> + <PolyStepSegment x="0.325" y="2.460"/> + <PolyStepSegment x="0.296" y="2.431"/> + <PolyStepSegment x="0.269" y="2.431"/> + <PolyStepSegment x="0.250" y="2.450"/> + <PolyStepSegment x="0.250" y="2.490"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.936" y="2.243"/> + <PolyStepSegment x="1.960" y="2.260"/> + <PolyStepSegment x="2.025" y="2.306"/> + <PolyStepSegment x="2.025" y="2.350"/> + <PolyStepSegment x="2.000" y="2.375"/> + <PolyStepSegment x="1.775" y="2.375"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.402" y="2.455"/> + <PolyStepSegment x="0.412" y="2.465"/> + <PolyStepSegment x="0.400" y="2.491"/> + <PolyStepSegment x="0.388" y="2.465"/> + <PolyStepSegment x="0.398" y="2.455"/> + <PolyStepCurve x="0.402" y="2.455" centerX="0.400000" centerY="2.458000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.101" y="1.928"/> + <PolyStepSegment x="0.089" y="1.938"/> + <PolyStepSegment x="0.074" y="1.925"/> + <PolyStepSegment x="0.089" y="1.912"/> + <PolyStepSegment x="0.101" y="1.922"/> + <PolyStepCurve x="0.101" y="1.928" centerX="0.098000" centerY="1.925000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.055" y="1.941"/> + <PolyStepSegment x="0.055" y="1.925"/> + <PolyStepSegment x="0.076" y="1.924"/> + <PolyStepSegment x="0.075" y="1.945"/> + <PolyStepSegment x="0.059" y="1.945"/> + <PolyStepCurve x="0.055" y="1.941" centerX="0.059000" centerY="1.941000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.520" y="0.409"/> + <PolyStepSegment x="1.520" y="0.425"/> + <PolyStepSegment x="1.499" y="0.426"/> + <PolyStepSegment x="1.500" y="0.405"/> + <PolyStepSegment x="1.516" y="0.405"/> + <PolyStepCurve x="1.520" y="0.409" centerX="1.516000" centerY="0.409000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.938" y="0.497"/> + <PolyStepSegment x="2.962" y="0.475"/> + <PolyStepSegment x="2.989" y="0.500"/> + <PolyStepSegment x="2.962" y="0.525"/> + <PolyStepSegment x="2.938" y="0.503"/> + <PolyStepCurve x="2.938" y="0.497" centerX="2.941000" centerY="0.500000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="0.425"/> + <PolyStepSegment x="1.575" y="0.350"/> + <PolyStepSegment x="2.050" y="0.350"/> + <PolyStepSegment x="2.156" y="0.456"/> + <PolyStepSegment x="2.156" y="0.521"/> + <PolyStepSegment x="2.185" y="0.550"/> + <PolyStepSegment x="2.852" y="0.550"/> + <PolyStepSegment x="2.902" y="0.500"/> + <PolyStepSegment x="2.988" y="0.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.181" y="1.972"/> + <PolyStepSegment x="0.134" y="1.925"/> + <PolyStepSegment x="0.075" y="1.925"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.075" y="1.925"/> + <PolyStepSegment x="0.0" y="2.000"/> + <PolyStepSegment x="0.0" y="2.325"/> + <PolyStepSegment x="0.050" y="2.375"/> + <PolyStepSegment x="0.325" y="2.375"/> + <PolyStepSegment x="0.400" y="2.450"/> + <PolyStepSegment x="0.400" y="2.490"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="RESET" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.426" y="3.242"/> + <PolyStepSegment x="1.414" y="3.252"/> + <PolyStepSegment x="1.399" y="3.239"/> + <PolyStepSegment x="1.414" y="3.226"/> + <PolyStepSegment x="1.426" y="3.236"/> + <PolyStepCurve x="1.426" y="3.242" centerX="1.423000" centerY="3.239000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="RESET" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.456" y="2.884"/> + <PolyStepSegment x="1.456" y="2.900"/> + <PolyStepSegment x="1.435" y="2.901"/> + <PolyStepSegment x="1.436" y="2.880"/> + <PolyStepSegment x="1.452" y="2.880"/> + <PolyStepCurve x="1.456" y="2.884" centerX="1.452000" centerY="2.884000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="RESET"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.581" y="2.778"/> + <PolyStepSegment x="1.573" y="2.786"/> + <PolyStepSegment x="1.550" y="2.786"/> + <PolyStepSegment x="1.436" y="2.900"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="RESET"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="3.239"/> + <PolyStepSegment x="1.450" y="3.239"/> + <PolyStepSegment x="1.453" y="3.241"/> + <PolyStepSegment x="1.481" y="3.241"/> + <PolyStepSegment x="1.490" y="3.250"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.326" y="3.338"/> + <PolyStepSegment x="1.326" y="3.322"/> + <PolyStepSegment x="1.347" y="3.321"/> + <PolyStepSegment x="1.346" y="3.342"/> + <PolyStepSegment x="1.330" y="3.342"/> + <PolyStepCurve x="1.326" y="3.338" centerX="1.330000" centerY="3.338000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.349" y="2.547"/> + <PolyStepSegment x="1.361" y="2.537"/> + <PolyStepSegment x="1.376" y="2.550"/> + <PolyStepSegment x="1.361" y="2.563"/> + <PolyStepSegment x="1.349" y="2.553"/> + <PolyStepCurve x="1.349" y="2.547" centerX="1.352000" centerY="2.550000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.346" y="3.322"/> + <PolyStepSegment x="1.318" y="3.350"/> + <PolyStepSegment x="1.260" y="3.350"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.375" y="2.550"/> + <PolyStepSegment x="1.350" y="2.550"/> + <PolyStepSegment x="1.295" y="2.605"/> + <PolyStepSegment x="1.286" y="2.605"/> + <PolyStepSegment x="1.269" y="2.622"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.330" y="2.616"/> + <PolyStepSegment x="1.330" y="2.600"/> + <PolyStepSegment x="1.351" y="2.599"/> + <PolyStepSegment x="1.350" y="2.620"/> + <PolyStepSegment x="1.334" y="2.620"/> + <PolyStepCurve x="1.330" y="2.616" centerX="1.334000" centerY="2.616000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.226" y="3.403"/> + <PolyStepSegment x="1.214" y="3.413"/> + <PolyStepSegment x="1.199" y="3.400"/> + <PolyStepSegment x="1.214" y="3.387"/> + <PolyStepSegment x="1.226" y="3.397"/> + <PolyStepCurve x="1.226" y="3.403" centerX="1.223000" centerY="3.400000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.260" y="3.400"/> + <PolyStepSegment x="1.200" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.350" y="2.600"/> + <PolyStepSegment x="1.333" y="2.617"/> + <PolyStepSegment x="1.333" y="2.630"/> + <PolyStepSegment x="1.305" y="2.658"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.305" y="2.742"/> + <PolyStepSegment x="1.284" y="2.721"/> + <PolyStepSegment x="1.284" y="2.709"/> + <PolyStepSegment x="1.225" y="2.650"/> + <PolyStepSegment x="1.075" y="2.650"/> + <PolyStepSegment x="1.050" y="2.675"/> + <PolyStepSegment x="1.050" y="2.806"/> + <PolyStepSegment x="0.989" y="2.867"/> + <PolyStepSegment x="0.966" y="2.867"/> + <PolyStepSegment x="0.947" y="2.848"/> + <PolyStepSegment x="0.938" y="2.848"/> + <PolyStepSegment x="0.901" y="2.885"/> + <PolyStepSegment x="0.901" y="2.894"/> + <PolyStepSegment x="0.920" y="2.913"/> + <PolyStepSegment x="0.920" y="2.930"/> + <PolyStepSegment x="0.775" y="3.075"/> + <PolyStepSegment x="0.775" y="3.225"/> + <PolyStepSegment x="0.800" y="3.250"/> + <PolyStepSegment x="0.840" y="3.250"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.269" y="2.778"/> + <PolyStepSegment x="1.248" y="2.757"/> + <PolyStepSegment x="1.232" y="2.757"/> + <PolyStepSegment x="1.200" y="2.725"/> + <PolyStepSegment x="1.125" y="2.725"/> + <PolyStepSegment x="1.075" y="2.775"/> + <PolyStepSegment x="1.075" y="2.851"/> + <PolyStepSegment x="1.023" y="2.903"/> + <PolyStepSegment x="1.002" y="2.903"/> + <PolyStepSegment x="0.982" y="2.883"/> + <PolyStepSegment x="0.973" y="2.883"/> + <PolyStepSegment x="0.936" y="2.920"/> + <PolyStepSegment x="0.936" y="2.929"/> + <PolyStepSegment x="0.956" y="2.949"/> + <PolyStepSegment x="0.956" y="2.969"/> + <PolyStepSegment x="0.900" y="3.025"/> + <PolyStepSegment x="0.900" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.234" y="2.813"/> + <PolyStepSegment x="1.196" y="2.775"/> + <PolyStepSegment x="1.175" y="2.775"/> + <PolyStepSegment x="1.031" y="2.919"/> + <PolyStepSegment x="1.009" y="2.919"/> + <PolyStepSegment x="0.972" y="2.956"/> + <PolyStepSegment x="0.972" y="2.965"/> + <PolyStepSegment x="0.993" y="2.986"/> + <PolyStepSegment x="0.993" y="3.014"/> + <PolyStepSegment x="0.998" y="3.019"/> + <PolyStepSegment x="0.998" y="3.027"/> + <PolyStepSegment x="0.950" y="3.075"/> + <PolyStepSegment x="0.950" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="3.140"/> + <PolyStepSegment x="1.000" y="3.050"/> + <PolyStepSegment x="1.018" y="3.032"/> + <PolyStepSegment x="1.039" y="3.032"/> + <PolyStepSegment x="1.057" y="3.014"/> + <PolyStepSegment x="1.057" y="2.986"/> + <PolyStepSegment x="1.050" y="2.979"/> + <PolyStepSegment x="1.050" y="2.925"/> + <PolyStepSegment x="1.150" y="2.825"/> + <PolyStepSegment x="1.175" y="2.825"/> + <PolyStepSegment x="1.198" y="2.848"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.163" y="2.884"/> + <PolyStepSegment x="1.200" y="2.921"/> + <PolyStepSegment x="1.200" y="2.954"/> + <PolyStepSegment x="1.207" y="2.961"/> + <PolyStepSegment x="1.207" y="2.989"/> + <PolyStepSegment x="1.200" y="2.996"/> + <PolyStepSegment x="1.200" y="3.000"/> + <PolyStepSegment x="1.150" y="3.050"/> + <PolyStepSegment x="1.145" y="3.050"/> + <PolyStepSegment x="1.145" y="3.049"/> + <PolyStepSegment x="1.127" y="3.031"/> + <PolyStepSegment x="1.099" y="3.031"/> + <PolyStepSegment x="1.081" y="3.049"/> + <PolyStepSegment x="1.081" y="3.050"/> + <PolyStepSegment x="1.075" y="3.050"/> + <PolyStepSegment x="1.050" y="3.075"/> + <PolyStepSegment x="1.050" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.103" y="3.174"/> + <PolyStepSegment x="1.113" y="3.186"/> + <PolyStepSegment x="1.100" y="3.201"/> + <PolyStepSegment x="1.087" y="3.186"/> + <PolyStepSegment x="1.097" y="3.174"/> + <PolyStepCurve x="1.103" y="3.174" centerX="1.100000" centerY="3.177000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.159" y="2.955"/> + <PolyStepSegment x="1.175" y="2.955"/> + <PolyStepSegment x="1.176" y="2.976"/> + <PolyStepSegment x="1.155" y="2.975"/> + <PolyStepSegment x="1.155" y="2.959"/> + <PolyStepCurve x="1.159" y="2.955" centerX="1.159000" centerY="2.959000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.128" y="2.919"/> + <PolyStepSegment x="1.149" y="2.940"/> + <PolyStepSegment x="1.149" y="2.949"/> + <PolyStepSegment x="1.175" y="2.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="3.200"/> + <PolyStepSegment x="1.100" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.129" y="3.083"/> + <PolyStepSegment x="1.113" y="3.083"/> + <PolyStepSegment x="1.112" y="3.062"/> + <PolyStepSegment x="1.133" y="3.063"/> + <PolyStepSegment x="1.133" y="3.079"/> + <PolyStepCurve x="1.129" y="3.083" centerX="1.129000" centerY="3.079000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.099" y="2.957"/> + <PolyStepSegment x="1.115" y="2.970"/> + <PolyStepSegment x="1.113" y="2.989"/> + <PolyStepSegment x="1.093" y="2.988"/> + <PolyStepSegment x="1.093" y="2.960"/> + <PolyStepCurve x="1.099" y="2.957" centerX="1.096750" centerY="2.960000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.092" y="2.955"/> + <PolyStepSegment x="1.113" y="2.976"/> + <PolyStepSegment x="1.113" y="2.988"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.150" y="3.140"/> + <PolyStepSegment x="1.150" y="3.100"/> + <PolyStepSegment x="1.113" y="3.063"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.028" y="2.974"/> + <PolyStepSegment x="1.038" y="2.986"/> + <PolyStepSegment x="1.025" y="3.001"/> + <PolyStepSegment x="1.012" y="2.986"/> + <PolyStepSegment x="1.022" y="2.974"/> + <PolyStepCurve x="1.028" y="2.974" centerX="1.025000" centerY="2.977000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.205" y="3.066"/> + <PolyStepSegment x="1.205" y="3.050"/> + <PolyStepSegment x="1.226" y="3.049"/> + <PolyStepSegment x="1.225" y="3.070"/> + <PolyStepSegment x="1.209" y="3.070"/> + <PolyStepCurve x="1.205" y="3.066" centerX="1.209000" centerY="3.066000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.200" y="3.140"/> + <PolyStepSegment x="1.200" y="3.075"/> + <PolyStepSegment x="1.225" y="3.050"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.025" y="3.000"/> + <PolyStepSegment x="1.025" y="2.972"/> + <PolyStepSegment x="1.008" y="2.955"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="0.662"/> + <PolyStepSegment x="0.850" y="0.662"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.962"/> + <PolyStepSegment x="0.592" y="0.962"/> + <PolyStepSegment x="0.625" y="0.950"/> + <PolyStepSegment x="0.625" y="0.675"/> + <PolyStepSegment x="0.658" y="0.662"/> + <PolyStepSegment x="0.700" y="0.662"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.962"/> + <PolyStepSegment x="0.550" y="0.925"/> + <PolyStepSegment x="0.400" y="0.925"/> + <PolyStepSegment x="0.400" y="0.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.547" y="0.330"/> + <PolyStepSegment x="0.536" y="0.319"/> + <PolyStepSegment x="0.546" y="0.315"/> + <PolyStepSegment x="0.554" y="0.315"/> + <PolyStepSegment x="0.564" y="0.319"/> + <PolyStepSegment x="0.553" y="0.330"/> + <PolyStepCurve x="0.547" y="0.330" centerX="0.550000" centerY="0.327000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="OUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.316"/> + <PolyStepSegment x="0.550" y="0.362"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.316"/> + <PolyStepSegment x="1.070" y="0.316"/> + <PolyStepSegment x="1.100" y="0.346"/> + <PolyStepSegment x="1.100" y="0.375"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="0.238"/> + <PolyStepSegment x="0.418" y="0.238"/> + <PolyStepSegment x="0.441" y="0.261"/> + <PolyStepSegment x="0.441" y="0.279"/> + <PolyStepSegment x="0.478" y="0.316"/> + <PolyStepSegment x="0.550" y="0.316"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.451" y="3.452"/> + <PolyStepSegment x="1.439" y="3.462"/> + <PolyStepSegment x="1.424" y="3.449"/> + <PolyStepSegment x="1.439" y="3.436"/> + <PolyStepSegment x="1.451" y="3.446"/> + <PolyStepCurve x="1.451" y="3.452" centerX="1.448000" centerY="3.449000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="OE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.351" y="3.028"/> + <PolyStepSegment x="1.339" y="3.038"/> + <PolyStepSegment x="1.324" y="3.025"/> + <PolyStepSegment x="1.339" y="3.012"/> + <PolyStepSegment x="1.351" y="3.022"/> + <PolyStepCurve x="1.351" y="3.028" centerX="1.348000" centerY="3.025000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="OE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.325" y="3.025"/> + <PolyStepSegment x="1.579" y="3.025"/> + <PolyStepSegment x="1.586" y="3.018"/> + <PolyStepSegment x="1.614" y="3.018"/> + <PolyStepSegment x="1.621" y="3.025"/> + <PolyStepSegment x="1.675" y="3.025"/> + <PolyStepSegment x="1.719" y="2.981"/> + <PolyStepSegment x="1.719" y="2.959"/> + <PolyStepSegment x="1.714" y="2.954"/> + <PolyStepSegment x="1.714" y="2.927"/> + <PolyStepSegment x="1.722" y="2.919"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.425" y="3.449"/> + <PolyStepSegment x="1.460" y="3.449"/> + <PolyStepSegment x="1.461" y="3.450"/> + <PolyStepSegment x="1.490" y="3.450"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.078" y="0.886"/> + <PolyStepSegment x="1.089" y="0.897"/> + <PolyStepSegment x="1.079" y="0.901"/> + <PolyStepSegment x="1.071" y="0.901"/> + <PolyStepSegment x="1.061" y="0.897"/> + <PolyStepSegment x="1.072" y="0.886"/> + <PolyStepCurve x="1.078" y="0.886" centerX="1.075000" centerY="0.889000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="INM3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.075" y="0.900"/> + <PolyStepSegment x="1.175" y="0.900"/> + <PolyStepSegment x="1.175" y="0.750"/> + <PolyStepSegment x="1.150" y="0.725"/> + <PolyStepSegment x="1.150" y="0.662"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.075" y="0.900"/> + <PolyStepSegment x="1.075" y="0.813"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="0.962"/> + <PolyStepSegment x="0.700" y="0.900"/> + <PolyStepSegment x="1.075" y="0.900"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="0.662"/> + <PolyStepSegment x="0.400" y="0.750"/> + <PolyStepSegment x="0.350" y="0.750"/> + <PolyStepSegment x="0.350" y="0.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.838"/> + <PolyStepSegment x="0.508" y="0.838"/> + <PolyStepSegment x="0.475" y="0.850"/> + <PolyStepSegment x="0.475" y="0.875"/> + <PolyStepSegment x="0.350" y="0.875"/> + <PolyStepSegment x="0.350" y="0.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.053" y="0.286"/> + <PolyStepSegment x="1.064" y="0.297"/> + <PolyStepSegment x="1.054" y="0.301"/> + <PolyStepSegment x="1.046" y="0.301"/> + <PolyStepSegment x="1.036" y="0.297"/> + <PolyStepSegment x="1.047" y="0.286"/> + <PolyStepCurve x="1.053" y="0.286" centerX="1.050000" centerY="0.289000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="INM1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="0.300"/> + <PolyStepSegment x="1.050" y="0.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.238"/> + <PolyStepSegment x="0.700" y="0.238"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="0.238"/> + <PolyStepSegment x="0.700" y="0.300"/> + <PolyStepSegment x="1.050" y="0.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="INM1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="0.300"/> + <PolyStepSegment x="1.079" y="0.300"/> + <PolyStepSegment x="1.086" y="0.307"/> + <PolyStepSegment x="1.114" y="0.307"/> + <PolyStepSegment x="1.121" y="0.300"/> + <PolyStepSegment x="1.220" y="0.300"/> + <PolyStepSegment x="1.282" y="0.362"/> + <PolyStepSegment x="1.300" y="0.362"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="IN2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="0.362"/> + <PolyStepSegment x="0.400" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="IN2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="0.538"/> + <PolyStepSegment x="0.550" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="IN2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="0.538"/> + <PolyStepSegment x="0.400" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="FB3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.850" y="0.538"/> + <PolyStepSegment x="1.000" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="FB3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="0.838"/> + <PolyStepSegment x="0.700" y="0.725"/> + <PolyStepSegment x="0.925" y="0.725"/> + <PolyStepSegment x="0.925" y="0.600"/> + <PolyStepSegment x="1.000" y="0.600"/> + <PolyStepSegment x="1.000" y="0.538"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.452" y="2.455"/> + <PolyStepSegment x="0.462" y="2.465"/> + <PolyStepSegment x="0.450" y="2.491"/> + <PolyStepSegment x="0.438" y="2.465"/> + <PolyStepSegment x="0.448" y="2.455"/> + <PolyStepCurve x="0.452" y="2.455" centerX="0.450000" centerY="2.458000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.066" y="2.320"/> + <PolyStepSegment x="0.050" y="2.320"/> + <PolyStepSegment x="0.049" y="2.299"/> + <PolyStepSegment x="0.070" y="2.300"/> + <PolyStepSegment x="0.070" y="2.316"/> + <PolyStepCurve x="0.066" y="2.320" centerX="0.066000" centerY="2.316000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.678" y="0.450"/> + <PolyStepSegment x="2.700" y="0.474"/> + <PolyStepSegment x="2.675" y="0.501"/> + <PolyStepSegment x="2.650" y="0.474"/> + <PolyStepSegment x="2.672" y="0.450"/> + <PolyStepCurve x="2.678" y="0.450" centerX="2.675000" centerY="0.453000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.426" y="0.228"/> + <PolyStepSegment x="1.414" y="0.238"/> + <PolyStepSegment x="1.399" y="0.225"/> + <PolyStepSegment x="1.414" y="0.212"/> + <PolyStepSegment x="1.426" y="0.222"/> + <PolyStepCurve x="1.426" y="0.228" centerX="1.423000" centerY="0.225000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.675" y="0.500"/> + <PolyStepSegment x="2.675" y="0.350"/> + <PolyStepSegment x="2.575" y="0.250"/> + <PolyStepSegment x="1.773" y="0.250"/> + <PolyStepSegment x="1.757" y="0.266"/> + <PolyStepSegment x="1.551" y="0.266"/> + <PolyStepSegment x="1.542" y="0.257"/> + <PolyStepSegment x="1.536" y="0.257"/> + <PolyStepSegment x="1.518" y="0.239"/> + <PolyStepSegment x="1.518" y="0.233"/> + <PolyStepSegment x="1.510" y="0.225"/> + <PolyStepSegment x="1.400" y="0.225"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="DISABLE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.450" y="2.490"/> + <PolyStepSegment x="0.450" y="2.425"/> + <PolyStepSegment x="0.375" y="2.350"/> + <PolyStepSegment x="0.100" y="2.350"/> + <PolyStepSegment x="0.050" y="2.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.230" y="1.628"/> + <PolyStepSegment x="2.250" y="1.610"/> + <PolyStepSegment x="2.276" y="1.631"/> + <PolyStepSegment x="2.250" y="1.652"/> + <PolyStepSegment x="2.230" y="1.634"/> + <PolyStepCurve x="2.230" y="1.628" centerX="2.233000" centerY="1.631000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.848" y="1.742"/> + <PolyStepSegment x="1.834" y="1.732"/> + <PolyStepSegment x="1.824" y="1.725"/> + <PolyStepSegment x="1.800" y="1.725"/> + <PolyStepSegment x="1.750" y="1.675"/> + <PolyStepSegment x="1.475" y="1.675"/> + <PolyStepSegment x="1.450" y="1.650"/> + <PolyStepSegment x="1.450" y="0.900"/> + <PolyStepSegment x="1.538" y="0.812"/> + <PolyStepSegment x="1.575" y="0.812"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.631"/> + <PolyStepSegment x="2.233" y="1.631"/> + <PolyStepSegment x="2.205" y="1.659"/> + <PolyStepSegment x="1.950" y="1.659"/> + <PolyStepSegment x="1.933" y="1.675"/> + <PolyStepSegment x="1.895" y="1.675"/> + <PolyStepSegment x="1.862" y="1.722"/> + <PolyStepSegment x="1.848" y="1.742"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.878" y="1.899"/> + <PolyStepSegment x="1.888" y="1.911"/> + <PolyStepSegment x="1.875" y="1.926"/> + <PolyStepSegment x="1.862" y="1.911"/> + <PolyStepSegment x="1.872" y="1.899"/> + <PolyStepCurve x="1.878" y="1.899" centerX="1.875000" centerY="1.902000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.855" y="0.741"/> + <PolyStepSegment x="1.855" y="0.725"/> + <PolyStepSegment x="1.876" y="0.724"/> + <PolyStepSegment x="1.875" y="0.745"/> + <PolyStepSegment x="1.859" y="0.745"/> + <PolyStepCurve x="1.855" y="0.741" centerX="1.859000" centerY="0.741000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.825" y="0.812"/> + <PolyStepSegment x="1.825" y="0.775"/> + <PolyStepSegment x="1.875" y="0.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="1.925"/> + <PolyStepSegment x="1.875" y="1.877"/> + <PolyStepSegment x="1.877" y="1.875"/> + <PolyStepSegment x="1.916" y="1.819"/> + <PolyStepSegment x="1.930" y="1.799"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.803" y="0.849"/> + <PolyStepSegment x="1.813" y="0.861"/> + <PolyStepSegment x="1.800" y="0.876"/> + <PolyStepSegment x="1.787" y="0.861"/> + <PolyStepSegment x="1.797" y="0.849"/> + <PolyStepCurve x="1.803" y="0.849" centerX="1.800000" centerY="0.852000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.240" y="1.975"/> + <PolyStepSegment x="2.241" y="1.946"/> + <PolyStepSegment x="2.276" y="1.943"/> + <PolyStepSegment x="2.273" y="1.978"/> + <PolyStepSegment x="2.244" y="1.979"/> + <PolyStepCurve x="2.240" y="1.975" centerX="2.244000" centerY="1.975000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="0.875"/> + <PolyStepSegment x="1.800" y="0.849"/> + <PolyStepSegment x="1.775" y="0.824"/> + <PolyStepSegment x="1.775" y="0.812"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.944"/> + <PolyStepSegment x="2.244" y="1.975"/> + <PolyStepSegment x="2.127" y="1.975"/> + <PolyStepSegment x="2.118" y="1.984"/> + <PolyStepSegment x="2.108" y="1.998"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.149" y="0.822"/> + <PolyStepSegment x="2.161" y="0.812"/> + <PolyStepSegment x="2.176" y="0.825"/> + <PolyStepSegment x="2.161" y="0.838"/> + <PolyStepSegment x="2.149" y="0.828"/> + <PolyStepCurve x="2.149" y="0.822" centerX="2.152000" centerY="0.825000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.225" y="1.785"/> + <PolyStepSegment x="2.249" y="1.763"/> + <PolyStepSegment x="2.276" y="1.788"/> + <PolyStepSegment x="2.249" y="1.813"/> + <PolyStepSegment x="2.225" y="1.791"/> + <PolyStepCurve x="2.225" y="1.785" centerX="2.228000" centerY="1.788000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.788"/> + <PolyStepSegment x="2.162" y="1.788"/> + <PolyStepSegment x="2.150" y="1.800"/> + <PolyStepSegment x="2.113" y="1.800"/> + <PolyStepSegment x="2.067" y="1.866"/> + <PolyStepSegment x="2.053" y="1.886"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.175" y="0.825"/> + <PolyStepSegment x="2.100" y="0.825"/> + <PolyStepSegment x="1.950" y="0.675"/> + <PolyStepSegment x="1.862" y="0.675"/> + <PolyStepSegment x="1.843" y="0.694"/> + <PolyStepSegment x="1.656" y="0.694"/> + <PolyStepSegment x="1.625" y="0.725"/> + <PolyStepSegment x="1.625" y="0.812"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.647" y="1.776"/> + <PolyStepSegment x="1.637" y="1.764"/> + <PolyStepSegment x="1.650" y="1.749"/> + <PolyStepSegment x="1.663" y="1.764"/> + <PolyStepSegment x="1.653" y="1.776"/> + <PolyStepCurve x="1.647" y="1.776" centerX="1.650000" centerY="1.773000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.770" y="1.184"/> + <PolyStepSegment x="1.770" y="1.200"/> + <PolyStepSegment x="1.749" y="1.201"/> + <PolyStepSegment x="1.750" y="1.180"/> + <PolyStepSegment x="1.766" y="1.180"/> + <PolyStepCurve x="1.770" y="1.184" centerX="1.766000" centerY="1.184000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.225" y="1.159"/> + <PolyStepSegment x="2.249" y="1.137"/> + <PolyStepSegment x="2.276" y="1.162"/> + <PolyStepSegment x="2.249" y="1.187"/> + <PolyStepSegment x="2.225" y="1.165"/> + <PolyStepCurve x="2.225" y="1.159" centerX="2.228000" centerY="1.162000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.242" y="1.125"/> + <PolyStepSegment x="2.275" y="1.126"/> + <PolyStepSegment x="2.276" y="1.163"/> + <PolyStepSegment x="2.239" y="1.162"/> + <PolyStepSegment x="2.238" y="1.129"/> + <PolyStepCurve x="2.242" y="1.125" centerX="2.242000" centerY="1.129000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.162"/> + <PolyStepSegment x="1.788" y="1.162"/> + <PolyStepSegment x="1.750" y="1.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.650" y="1.750"/> + <PolyStepSegment x="1.650" y="1.798"/> + <PolyStepSegment x="1.683" y="1.821"/> + <PolyStepSegment x="1.707" y="1.838"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.675" y="0.812"/> + <PolyStepSegment x="1.675" y="0.875"/> + <PolyStepSegment x="1.725" y="0.925"/> + <PolyStepSegment x="1.875" y="0.925"/> + <PolyStepSegment x="1.900" y="0.900"/> + <PolyStepSegment x="2.100" y="0.900"/> + <PolyStepSegment x="2.200" y="1.000"/> + <PolyStepSegment x="2.200" y="1.087"/> + <PolyStepSegment x="2.275" y="1.162"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.242" y="0.969"/> + <PolyStepSegment x="2.275" y="0.970"/> + <PolyStepSegment x="2.276" y="1.007"/> + <PolyStepSegment x="2.239" y="1.006"/> + <PolyStepSegment x="2.238" y="0.973"/> + <PolyStepCurve x="2.242" y="0.969" centerX="2.242000" centerY="0.973000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.308" y="1.043"/> + <PolyStepSegment x="2.275" y="1.042"/> + <PolyStepSegment x="2.274" y="1.005"/> + <PolyStepSegment x="2.311" y="1.006"/> + <PolyStepSegment x="2.312" y="1.039"/> + <PolyStepCurve x="2.308" y="1.043" centerX="2.308000" centerY="1.039000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.726" y="1.228"/> + <PolyStepSegment x="1.714" y="1.238"/> + <PolyStepSegment x="1.699" y="1.225"/> + <PolyStepSegment x="1.714" y="1.212"/> + <PolyStepSegment x="1.726" y="1.222"/> + <PolyStepCurve x="1.726" y="1.228" centerX="1.723000" centerY="1.225000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.566" y="1.870"/> + <PolyStepSegment x="1.550" y="1.870"/> + <PolyStepSegment x="1.549" y="1.849"/> + <PolyStepSegment x="1.570" y="1.850"/> + <PolyStepSegment x="1.570" y="1.866"/> + <PolyStepCurve x="1.566" y="1.870" centerX="1.566000" centerY="1.866000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.700" y="1.225"/> + <PolyStepSegment x="1.729" y="1.225"/> + <PolyStepSegment x="1.736" y="1.232"/> + <PolyStepSegment x="1.764" y="1.232"/> + <PolyStepSegment x="1.771" y="1.225"/> + <PolyStepSegment x="2.283" y="1.225"/> + <PolyStepSegment x="2.325" y="1.183"/> + <PolyStepSegment x="2.325" y="1.056"/> + <PolyStepSegment x="2.275" y="1.006"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.649" y="1.920"/> + <PolyStepSegment x="1.620" y="1.920"/> + <PolyStepSegment x="1.550" y="1.850"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.006"/> + <PolyStepSegment x="2.144" y="0.875"/> + <PolyStepSegment x="1.900" y="0.875"/> + <PolyStepSegment x="1.875" y="0.850"/> + <PolyStepSegment x="1.875" y="0.812"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.722" y="0.776"/> + <PolyStepSegment x="1.712" y="0.764"/> + <PolyStepSegment x="1.725" y="0.749"/> + <PolyStepSegment x="1.738" y="0.764"/> + <PolyStepSegment x="1.728" y="0.776"/> + <PolyStepCurve x="1.722" y="0.776" centerX="1.725000" centerY="0.773000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.238" y="1.352"/> + <PolyStepSegment x="2.239" y="1.319"/> + <PolyStepSegment x="2.276" y="1.318"/> + <PolyStepSegment x="2.275" y="1.355"/> + <PolyStepSegment x="2.242" y="1.356"/> + <PolyStepCurve x="2.238" y="1.352" centerX="2.242000" centerY="1.352000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.526" y="1.580"/> + <PolyStepSegment x="1.542" y="1.580"/> + <PolyStepSegment x="1.543" y="1.601"/> + <PolyStepSegment x="1.522" y="1.600"/> + <PolyStepSegment x="1.522" y="1.584"/> + <PolyStepCurve x="1.526" y="1.580" centerX="1.526000" centerY="1.584000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.725" y="0.812"/> + <PolyStepSegment x="1.725" y="0.750"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.319"/> + <PolyStepSegment x="2.219" y="1.375"/> + <PolyStepSegment x="1.483" y="1.375"/> + <PolyStepSegment x="1.475" y="1.383"/> + <PolyStepSegment x="1.475" y="1.542"/> + <PolyStepSegment x="1.483" y="1.550"/> + <PolyStepSegment x="1.492" y="1.550"/> + <PolyStepSegment x="1.542" y="1.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.312" y="1.442"/> + <PolyStepSegment x="2.311" y="1.475"/> + <PolyStepSegment x="2.274" y="1.476"/> + <PolyStepSegment x="2.275" y="1.439"/> + <PolyStepSegment x="2.308" y="1.438"/> + <PolyStepCurve x="2.312" y="1.442" centerX="2.308000" centerY="1.442000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.922" y="0.751"/> + <PolyStepSegment x="1.912" y="0.739"/> + <PolyStepSegment x="1.925" y="0.724"/> + <PolyStepSegment x="1.938" y="0.739"/> + <PolyStepSegment x="1.928" y="0.751"/> + <PolyStepCurve x="1.922" y="0.751" centerX="1.925000" centerY="0.748000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.941" y="0.745"/> + <PolyStepSegment x="1.925" y="0.745"/> + <PolyStepSegment x="1.924" y="0.724"/> + <PolyStepSegment x="1.945" y="0.725"/> + <PolyStepSegment x="1.945" y="0.741"/> + <PolyStepCurve x="1.941" y="0.745" centerX="1.941000" centerY="0.741000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="0.725"/> + <PolyStepSegment x="1.925" y="0.812"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.475"/> + <PolyStepSegment x="2.350" y="1.400"/> + <PolyStepSegment x="2.350" y="0.950"/> + <PolyStepSegment x="2.325" y="0.925"/> + <PolyStepSegment x="2.250" y="0.925"/> + <PolyStepSegment x="2.182" y="0.857"/> + <PolyStepSegment x="2.161" y="0.857"/> + <PolyStepSegment x="2.145" y="0.841"/> + <PolyStepSegment x="2.093" y="0.841"/> + <PolyStepSegment x="2.077" y="0.825"/> + <PolyStepSegment x="2.025" y="0.825"/> + <PolyStepSegment x="1.925" y="0.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.949" y="3.397"/> + <PolyStepSegment x="1.961" y="3.387"/> + <PolyStepSegment x="1.976" y="3.400"/> + <PolyStepSegment x="1.961" y="3.413"/> + <PolyStepSegment x="1.949" y="3.403"/> + <PolyStepCurve x="1.949" y="3.397" centerX="1.952000" centerY="3.400000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.949" y="3.647"/> + <PolyStepSegment x="1.961" y="3.637"/> + <PolyStepSegment x="1.976" y="3.650"/> + <PolyStepSegment x="1.961" y="3.663"/> + <PolyStepSegment x="1.949" y="3.653"/> + <PolyStepCurve x="1.949" y="3.647" centerX="1.952000" centerY="3.650000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.945" y="2.634"/> + <PolyStepSegment x="1.945" y="2.650"/> + <PolyStepSegment x="1.924" y="2.651"/> + <PolyStepSegment x="1.925" y="2.630"/> + <PolyStepSegment x="1.941" y="2.630"/> + <PolyStepCurve x="1.945" y="2.634" centerX="1.941000" centerY="2.634000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="3.650"/> + <PolyStepSegment x="1.871" y="3.650"/> + <PolyStepSegment x="1.864" y="3.657"/> + <PolyStepSegment x="1.836" y="3.657"/> + <PolyStepSegment x="1.829" y="3.650"/> + <PolyStepSegment x="1.371" y="3.650"/> + <PolyStepSegment x="1.364" y="3.657"/> + <PolyStepSegment x="1.210" y="3.657"/> + <PolyStepSegment x="1.150" y="3.597"/> + <PolyStepSegment x="1.132" y="3.597"/> + <PolyStepSegment x="1.125" y="3.590"/> + <PolyStepSegment x="1.125" y="3.530"/> + <PolyStepSegment x="1.150" y="3.505"/> + <PolyStepSegment x="1.150" y="3.458"/> + <PolyStepSegment x="1.158" y="3.450"/> + <PolyStepSegment x="1.260" y="3.450"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.984" y="2.587"/> + <PolyStepSegment x="1.963" y="2.608"/> + <PolyStepSegment x="1.963" y="2.612"/> + <PolyStepSegment x="1.925" y="2.650"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="3.400"/> + <PolyStepSegment x="1.910" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.324" y="3.497"/> + <PolyStepSegment x="1.336" y="3.487"/> + <PolyStepSegment x="1.351" y="3.500"/> + <PolyStepSegment x="1.336" y="3.513"/> + <PolyStepSegment x="1.324" y="3.503"/> + <PolyStepCurve x="1.324" y="3.497" centerX="1.327000" centerY="3.500000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.376" y="3.628"/> + <PolyStepSegment x="1.364" y="3.638"/> + <PolyStepSegment x="1.349" y="3.625"/> + <PolyStepSegment x="1.364" y="3.612"/> + <PolyStepSegment x="1.376" y="3.622"/> + <PolyStepCurve x="1.376" y="3.628" centerX="1.373000" centerY="3.625000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.974" y="3.297"/> + <PolyStepSegment x="1.986" y="3.287"/> + <PolyStepSegment x="2.001" y="3.300"/> + <PolyStepSegment x="1.986" y="3.313"/> + <PolyStepSegment x="1.974" y="3.303"/> + <PolyStepCurve x="1.974" y="3.297" centerX="1.977000" centerY="3.300000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.870" y="2.559"/> + <PolyStepSegment x="1.870" y="2.575"/> + <PolyStepSegment x="1.849" y="2.576"/> + <PolyStepSegment x="1.850" y="2.555"/> + <PolyStepSegment x="1.866" y="2.555"/> + <PolyStepCurve x="1.870" y="2.559" centerX="1.866000" centerY="2.559000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.913" y="2.516"/> + <PolyStepSegment x="1.892" y="2.537"/> + <PolyStepSegment x="1.888" y="2.537"/> + <PolyStepSegment x="1.850" y="2.575"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.000" y="3.300"/> + <PolyStepSegment x="1.910" y="3.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.350" y="3.625"/> + <PolyStepSegment x="1.550" y="3.625"/> + <PolyStepSegment x="1.575" y="3.600"/> + <PolyStepSegment x="1.575" y="3.500"/> + <PolyStepSegment x="1.675" y="3.400"/> + <PolyStepSegment x="1.798" y="3.400"/> + <PolyStepSegment x="1.898" y="3.300"/> + <PolyStepSegment x="1.910" y="3.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.350" y="3.500"/> + <PolyStepSegment x="1.260" y="3.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.024" y="3.247"/> + <PolyStepSegment x="2.036" y="3.237"/> + <PolyStepSegment x="2.051" y="3.250"/> + <PolyStepSegment x="2.036" y="3.263"/> + <PolyStepSegment x="2.024" y="3.253"/> + <PolyStepCurve x="2.024" y="3.247" centerX="2.027000" centerY="3.250000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.884" y="2.680"/> + <PolyStepSegment x="1.900" y="2.680"/> + <PolyStepSegment x="1.901" y="2.701"/> + <PolyStepSegment x="1.880" y="2.700"/> + <PolyStepSegment x="1.880" y="2.684"/> + <PolyStepCurve x="1.884" y="2.680" centerX="1.884000" centerY="2.684000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.900" y="2.700"/> + <PolyStepSegment x="1.800" y="2.600"/> + <PolyStepSegment x="1.800" y="2.575"/> + <PolyStepSegment x="1.857" y="2.518"/> + <PolyStepSegment x="1.857" y="2.502"/> + <PolyStepSegment x="1.878" y="2.481"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="3.250"/> + <PolyStepSegment x="1.910" y="3.250"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.200" y="3.560"/> + <PolyStepSegment x="1.490" y="3.560"/> + <PolyStepSegment x="1.675" y="3.375"/> + <PolyStepSegment x="1.800" y="3.375"/> + <PolyStepSegment x="1.873" y="3.302"/> + <PolyStepSegment x="1.873" y="3.282"/> + <PolyStepSegment x="1.880" y="3.275"/> + <PolyStepSegment x="1.880" y="3.268"/> + <PolyStepSegment x="1.898" y="3.250"/> + <PolyStepSegment x="1.910" y="3.250"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.949" y="3.197"/> + <PolyStepSegment x="1.961" y="3.187"/> + <PolyStepSegment x="1.976" y="3.200"/> + <PolyStepSegment x="1.961" y="3.213"/> + <PolyStepSegment x="1.949" y="3.203"/> + <PolyStepCurve x="1.949" y="3.197" centerX="1.952000" centerY="3.200000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.859" y="2.755"/> + <PolyStepSegment x="1.875" y="2.755"/> + <PolyStepSegment x="1.876" y="2.776"/> + <PolyStepSegment x="1.855" y="2.775"/> + <PolyStepSegment x="1.855" y="2.759"/> + <PolyStepCurve x="1.859" y="2.755" centerX="1.859000" centerY="2.759000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="2.775"/> + <PolyStepSegment x="1.775" y="2.675"/> + <PolyStepSegment x="1.775" y="2.550"/> + <PolyStepSegment x="1.839" y="2.486"/> + <PolyStepSegment x="1.839" y="2.485"/> + <PolyStepSegment x="1.834" y="2.480"/> + <PolyStepSegment x="1.834" y="2.453"/> + <PolyStepSegment x="1.842" y="2.445"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="3.200"/> + <PolyStepSegment x="1.910" y="3.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.150" y="3.560"/> + <PolyStepSegment x="1.150" y="3.548"/> + <PolyStepSegment x="1.166" y="3.532"/> + <PolyStepSegment x="1.173" y="3.532"/> + <PolyStepSegment x="1.230" y="3.475"/> + <PolyStepSegment x="1.300" y="3.475"/> + <PolyStepSegment x="1.350" y="3.425"/> + <PolyStepSegment x="1.403" y="3.425"/> + <PolyStepSegment x="1.411" y="3.417"/> + <PolyStepSegment x="1.439" y="3.417"/> + <PolyStepSegment x="1.447" y="3.425"/> + <PolyStepSegment x="1.575" y="3.425"/> + <PolyStepSegment x="1.650" y="3.350"/> + <PolyStepSegment x="1.775" y="3.350"/> + <PolyStepSegment x="1.873" y="3.252"/> + <PolyStepSegment x="1.873" y="3.232"/> + <PolyStepSegment x="1.880" y="3.225"/> + <PolyStepSegment x="1.880" y="3.218"/> + <PolyStepSegment x="1.898" y="3.200"/> + <PolyStepSegment x="1.910" y="3.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.778" y="2.474"/> + <PolyStepSegment x="1.788" y="2.486"/> + <PolyStepSegment x="1.775" y="2.501"/> + <PolyStepSegment x="1.762" y="2.486"/> + <PolyStepSegment x="1.772" y="2.474"/> + <PolyStepCurve x="1.778" y="2.474" centerX="1.775000" centerY="2.477000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.097" y="3.526"/> + <PolyStepSegment x="1.087" y="3.514"/> + <PolyStepSegment x="1.100" y="3.499"/> + <PolyStepSegment x="1.113" y="3.514"/> + <PolyStepSegment x="1.103" y="3.526"/> + <PolyStepCurve x="1.097" y="3.526" centerX="1.100000" centerY="3.523000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.847" y="3.101"/> + <PolyStepSegment x="1.837" y="3.089"/> + <PolyStepSegment x="1.850" y="3.074"/> + <PolyStepSegment x="1.863" y="3.089"/> + <PolyStepSegment x="1.853" y="3.101"/> + <PolyStepCurve x="1.847" y="3.101" centerX="1.850000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.850" y="3.140"/> + <PolyStepSegment x="1.850" y="3.075"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="3.500"/> + <PolyStepSegment x="1.100" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.775" y="2.500"/> + <PolyStepSegment x="1.775" y="2.462"/> + <PolyStepSegment x="1.758" y="2.445"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.797" y="3.101"/> + <PolyStepSegment x="1.787" y="3.089"/> + <PolyStepSegment x="1.800" y="3.074"/> + <PolyStepSegment x="1.813" y="3.089"/> + <PolyStepSegment x="1.803" y="3.101"/> + <PolyStepCurve x="1.797" y="3.101" centerX="1.800000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.753" y="2.674"/> + <PolyStepSegment x="1.763" y="2.686"/> + <PolyStepSegment x="1.750" y="2.701"/> + <PolyStepSegment x="1.737" y="2.686"/> + <PolyStepSegment x="1.747" y="2.674"/> + <PolyStepCurve x="1.753" y="2.674" centerX="1.750000" centerY="2.677000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="2.700"/> + <PolyStepSegment x="1.750" y="2.621"/> + <PolyStepSegment x="1.757" y="2.614"/> + <PolyStepSegment x="1.757" y="2.557"/> + <PolyStepSegment x="1.722" y="2.522"/> + <PolyStepSegment x="1.722" y="2.514"/> + <PolyStepSegment x="1.727" y="2.509"/> + <PolyStepSegment x="1.727" y="2.486"/> + <PolyStepSegment x="1.722" y="2.481"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="3.075"/> + <PolyStepSegment x="1.800" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="3.560"/> + <PolyStepSegment x="1.050" y="3.500"/> + <PolyStepSegment x="1.125" y="3.425"/> + <PolyStepSegment x="1.179" y="3.425"/> + <PolyStepSegment x="1.186" y="3.432"/> + <PolyStepSegment x="1.214" y="3.432"/> + <PolyStepSegment x="1.221" y="3.425"/> + <PolyStepSegment x="1.300" y="3.425"/> + <PolyStepSegment x="1.327" y="3.398"/> + <PolyStepSegment x="1.346" y="3.398"/> + <PolyStepSegment x="1.361" y="3.383"/> + <PolyStepSegment x="1.361" y="3.376"/> + <PolyStepSegment x="1.379" y="3.358"/> + <PolyStepSegment x="1.407" y="3.358"/> + <PolyStepSegment x="1.417" y="3.368"/> + <PolyStepSegment x="1.439" y="3.368"/> + <PolyStepSegment x="1.446" y="3.375"/> + <PolyStepSegment x="1.550" y="3.375"/> + <PolyStepSegment x="1.575" y="3.350"/> + <PolyStepSegment x="1.627" y="3.350"/> + <PolyStepSegment x="1.643" y="3.334"/> + <PolyStepSegment x="1.716" y="3.334"/> + <PolyStepSegment x="1.800" y="3.250"/> + <PolyStepSegment x="1.800" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.726" y="3.053"/> + <PolyStepSegment x="1.714" y="3.063"/> + <PolyStepSegment x="1.699" y="3.050"/> + <PolyStepSegment x="1.714" y="3.037"/> + <PolyStepSegment x="1.726" y="3.047"/> + <PolyStepCurve x="1.726" y="3.053" centerX="1.723000" centerY="3.050000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.709" y="2.580"/> + <PolyStepSegment x="1.725" y="2.580"/> + <PolyStepSegment x="1.726" y="2.601"/> + <PolyStepSegment x="1.705" y="2.600"/> + <PolyStepSegment x="1.705" y="2.584"/> + <PolyStepCurve x="1.709" y="2.580" centerX="1.709000" centerY="2.584000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.687" y="2.516"/> + <PolyStepSegment x="1.692" y="2.521"/> + <PolyStepSegment x="1.692" y="2.544"/> + <PolyStepSegment x="1.687" y="2.549"/> + <PolyStepSegment x="1.687" y="2.562"/> + <PolyStepSegment x="1.725" y="2.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="3.140"/> + <PolyStepSegment x="1.750" y="3.075"/> + <PolyStepSegment x="1.725" y="3.050"/> + <PolyStepSegment x="1.700" y="3.050"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="3.140"/> + <PolyStepSegment x="1.750" y="3.250"/> + <PolyStepSegment x="1.682" y="3.318"/> + <PolyStepSegment x="1.636" y="3.318"/> + <PolyStepSegment x="1.629" y="3.325"/> + <PolyStepSegment x="1.389" y="3.325"/> + <PolyStepSegment x="1.332" y="3.382"/> + <PolyStepSegment x="1.311" y="3.382"/> + <PolyStepSegment x="1.304" y="3.375"/> + <PolyStepSegment x="1.221" y="3.375"/> + <PolyStepSegment x="1.214" y="3.368"/> + <PolyStepSegment x="1.186" y="3.368"/> + <PolyStepSegment x="1.179" y="3.375"/> + <PolyStepSegment x="1.125" y="3.375"/> + <PolyStepSegment x="1.000" y="3.500"/> + <PolyStepSegment x="1.000" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.597" y="3.076"/> + <PolyStepSegment x="1.587" y="3.064"/> + <PolyStepSegment x="1.600" y="3.049"/> + <PolyStepSegment x="1.613" y="3.064"/> + <PolyStepSegment x="1.603" y="3.076"/> + <PolyStepCurve x="1.597" y="3.076" centerX="1.600000" centerY="3.073000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.609" y="2.655"/> + <PolyStepSegment x="1.625" y="2.655"/> + <PolyStepSegment x="1.626" y="2.676"/> + <PolyStepSegment x="1.605" y="2.675"/> + <PolyStepSegment x="1.605" y="2.659"/> + <PolyStepCurve x="1.609" y="2.655" centerX="1.609000" centerY="2.659000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.581" y="2.622"/> + <PolyStepSegment x="1.598" y="2.639"/> + <PolyStepSegment x="1.598" y="2.648"/> + <PolyStepSegment x="1.625" y="2.675"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="3.050"/> + <PolyStepSegment x="1.600" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="3.140"/> + <PolyStepSegment x="1.600" y="3.225"/> + <PolyStepSegment x="1.550" y="3.275"/> + <PolyStepSegment x="1.350" y="3.275"/> + <PolyStepSegment x="1.335" y="3.290"/> + <PolyStepSegment x="1.332" y="3.290"/> + <PolyStepSegment x="1.314" y="3.308"/> + <PolyStepSegment x="1.314" y="3.311"/> + <PolyStepSegment x="1.300" y="3.325"/> + <PolyStepSegment x="1.025" y="3.325"/> + <PolyStepSegment x="1.000" y="3.350"/> + <PolyStepSegment x="1.000" y="3.450"/> + <PolyStepSegment x="0.950" y="3.500"/> + <PolyStepSegment x="0.950" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.547" y="3.101"/> + <PolyStepSegment x="1.537" y="3.089"/> + <PolyStepSegment x="1.550" y="3.074"/> + <PolyStepSegment x="1.563" y="3.089"/> + <PolyStepSegment x="1.553" y="3.101"/> + <PolyStepCurve x="1.547" y="3.101" centerX="1.550000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.516" y="2.620"/> + <PolyStepSegment x="1.500" y="2.620"/> + <PolyStepSegment x="1.499" y="2.599"/> + <PolyStepSegment x="1.520" y="2.600"/> + <PolyStepSegment x="1.520" y="2.616"/> + <PolyStepCurve x="1.516" y="2.620" centerX="1.516000" centerY="2.616000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.545" y="2.658"/> + <PolyStepSegment x="1.528" y="2.641"/> + <PolyStepSegment x="1.528" y="2.628"/> + <PolyStepSegment x="1.500" y="2.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="3.075"/> + <PolyStepSegment x="1.550" y="3.140"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="3.140"/> + <PolyStepSegment x="1.550" y="3.200"/> + <PolyStepSegment x="1.525" y="3.225"/> + <PolyStepSegment x="1.460" y="3.225"/> + <PolyStepSegment x="1.453" y="3.218"/> + <PolyStepSegment x="1.453" y="3.210"/> + <PolyStepSegment x="1.450" y="3.207"/> + <PolyStepSegment x="1.386" y="3.207"/> + <PolyStepSegment x="1.368" y="3.225"/> + <PolyStepSegment x="1.350" y="3.225"/> + <PolyStepSegment x="1.300" y="3.275"/> + <PolyStepSegment x="1.000" y="3.275"/> + <PolyStepSegment x="0.975" y="3.300"/> + <PolyStepSegment x="0.975" y="3.450"/> + <PolyStepSegment x="0.925" y="3.500"/> + <PolyStepSegment x="0.925" y="3.523"/> + <PolyStepSegment x="0.900" y="3.548"/> + <PolyStepSegment x="0.900" y="3.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.426" y="2.803"/> + <PolyStepSegment x="1.414" y="2.813"/> + <PolyStepSegment x="1.399" y="2.800"/> + <PolyStepSegment x="1.414" y="2.787"/> + <PolyStepSegment x="1.426" y="2.797"/> + <PolyStepCurve x="1.426" y="2.803" centerX="1.423000" centerY="2.800000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.397" y="3.151"/> + <PolyStepSegment x="1.387" y="3.139"/> + <PolyStepSegment x="1.400" y="3.124"/> + <PolyStepSegment x="1.413" y="3.139"/> + <PolyStepSegment x="1.403" y="3.151"/> + <PolyStepCurve x="1.397" y="3.151" centerX="1.400000" centerY="3.148000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.403" y="3.161"/> + <PolyStepSegment x="1.414" y="3.172"/> + <PolyStepSegment x="1.400" y="3.175"/> + <PolyStepSegment x="1.400" y="3.164"/> + <PolyStepSegment x="1.403" y="3.161"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="3.175"/> + <PolyStepSegment x="1.400" y="3.125"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="2.800"/> + <PolyStepSegment x="1.487" y="2.800"/> + <PolyStepSegment x="1.545" y="2.742"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.490" y="3.200"/> + <PolyStepSegment x="1.466" y="3.200"/> + <PolyStepSegment x="1.441" y="3.175"/> + <PolyStepSegment x="1.400" y="3.175"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="3.175"/> + <PolyStepSegment x="1.384" y="3.191"/> + <PolyStepSegment x="1.379" y="3.191"/> + <PolyStepSegment x="1.370" y="3.200"/> + <PolyStepSegment x="1.325" y="3.200"/> + <PolyStepSegment x="1.300" y="3.225"/> + <PolyStepSegment x="1.235" y="3.225"/> + <PolyStepSegment x="1.210" y="3.250"/> + <PolyStepSegment x="1.000" y="3.250"/> + <PolyStepSegment x="0.950" y="3.300"/> + <PolyStepSegment x="0.950" y="3.450"/> + <PolyStepSegment x="0.900" y="3.500"/> + <PolyStepSegment x="0.840" y="3.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="GND2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.651" y="3.346"/> + <PolyStepSegment x="0.661" y="3.336"/> + <PolyStepSegment x="0.676" y="3.350"/> + <PolyStepSegment x="0.661" y="3.364"/> + <PolyStepSegment x="0.651" y="3.354"/> + <PolyStepCurve x="0.651" y="3.346" centerX="0.655000" centerY="3.350000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="GND2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.610" y="3.350"/> + <PolyStepSegment x="0.675" y="3.350"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="TOP - Layer1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.303" y="-0.400"/> + <PolyStepSegment x="1.303" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.282" y="-0.400"/> + <PolyStepSegment x="1.324" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.378" y="-0.475"/> + <PolyStepSegment x="1.371" y="-0.474"/> + <PolyStepSegment x="1.364" y="-0.469"/> + <PolyStepSegment x="1.358" y="-0.461"/> + <PolyStepSegment x="1.355" y="-0.453"/> + <PolyStepSegment x="1.353" y="-0.443"/> + <PolyStepSegment x="1.353" y="-0.432"/> + <PolyStepSegment x="1.355" y="-0.422"/> + <PolyStepSegment x="1.358" y="-0.414"/> + <PolyStepSegment x="1.364" y="-0.406"/> + <PolyStepSegment x="1.371" y="-0.401"/> + <PolyStepSegment x="1.378" y="-0.400"/> + <PolyStepSegment x="1.385" y="-0.401"/> + <PolyStepSegment x="1.392" y="-0.406"/> + <PolyStepSegment x="1.398" y="-0.414"/> + <PolyStepSegment x="1.401" y="-0.422"/> + <PolyStepSegment x="1.403" y="-0.432"/> + <PolyStepSegment x="1.403" y="-0.443"/> + <PolyStepSegment x="1.401" y="-0.453"/> + <PolyStepSegment x="1.398" y="-0.461"/> + <PolyStepSegment x="1.392" y="-0.469"/> + <PolyStepSegment x="1.385" y="-0.474"/> + <PolyStepSegment x="1.378" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.434" y="-0.475"/> + <PolyStepSegment x="1.434" y="-0.400"/> + <PolyStepSegment x="1.457" y="-0.400"/> + <PolyStepSegment x="1.464" y="-0.404"/> + <PolyStepSegment x="1.470" y="-0.412"/> + <PolyStepSegment x="1.472" y="-0.422"/> + <PolyStepSegment x="1.470" y="-0.432"/> + <PolyStepSegment x="1.465" y="-0.440"/> + <PolyStepSegment x="1.457" y="-0.444"/> + <PolyStepSegment x="1.434" y="-0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.591" y="-0.450"/> + <PolyStepSegment x="1.615" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.734" y="-0.400"/> + <PolyStepSegment x="1.734" y="-0.475"/> + <PolyStepSegment x="1.772" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.475"/> + <PolyStepSegment x="1.845" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.434"/> + <PolyStepSegment x="1.841" y="-0.429"/> + <PolyStepSegment x="1.835" y="-0.426"/> + <PolyStepSegment x="1.829" y="-0.425"/> + <PolyStepSegment x="1.822" y="-0.428"/> + <PolyStepSegment x="1.817" y="-0.432"/> + <PolyStepSegment x="1.813" y="-0.440"/> + <PolyStepSegment x="1.811" y="-0.450"/> + <PolyStepSegment x="1.813" y="-0.460"/> + <PolyStepSegment x="1.817" y="-0.468"/> + <PolyStepSegment x="1.822" y="-0.473"/> + <PolyStepSegment x="1.829" y="-0.475"/> + <PolyStepSegment x="1.835" y="-0.474"/> + <PolyStepSegment x="1.841" y="-0.470"/> + <PolyStepSegment x="1.845" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.883" y="-0.497"/> + <PolyStepSegment x="1.889" y="-0.500"/> + <PolyStepSegment x="1.896" y="-0.497"/> + <PolyStepSegment x="1.901" y="-0.493"/> + <PolyStepSegment x="1.905" y="-0.486"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <PolyStepSegment x="1.923" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.893" y="-0.425"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.964" y="-0.441"/> + <PolyStepSegment x="1.994" y="-0.441"/> + <PolyStepSegment x="1.991" y="-0.432"/> + <PolyStepSegment x="1.986" y="-0.428"/> + <PolyStepSegment x="1.980" y="-0.425"/> + <PolyStepSegment x="1.973" y="-0.426"/> + <PolyStepSegment x="1.968" y="-0.430"/> + <PolyStepSegment x="1.964" y="-0.439"/> + <PolyStepSegment x="1.962" y="-0.446"/> + <PolyStepSegment x="1.962" y="-0.454"/> + <PolyStepSegment x="1.964" y="-0.461"/> + <PolyStepSegment x="1.969" y="-0.469"/> + <PolyStepSegment x="1.974" y="-0.474"/> + <PolyStepSegment x="1.981" y="-0.475"/> + <PolyStepSegment x="1.987" y="-0.473"/> + <PolyStepSegment x="1.994" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.475"/> + <PolyStepSegment x="2.040" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.435"/> + <PolyStepSegment x="2.045" y="-0.430"/> + <PolyStepSegment x="2.049" y="-0.426"/> + <PolyStepSegment x="2.056" y="-0.425"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.066" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.128" y="-0.475"/> + <PolyStepSegment x="2.128" y="-0.400"/> + <PolyStepSegment x="2.117" y="-0.415"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.117" y="-0.475"/> + <PolyStepSegment x="2.139" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="UN1CA345010PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.962"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C7"/> + </Pad> + </Set> + <Set net="UN1CA345010PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.838"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C7"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.150" y="0.974"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C2"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.150" y="0.850"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C2"/> + </Pad> + </Set> + <Set net="INM2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.550" y="0.838"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C3"/> + </Pad> + </Set> + <Set net="OUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.550" y="0.962"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C3"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="1.000" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C5"/> + </Pad> + </Set> + <Set net="FB3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="1.000" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C5"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.150" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C6"/> + </Pad> + </Set> + <Set net="INM3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.150" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C6"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C4"/> + </Pad> + </Set> + <Set net="IN2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C4"/> + </Pad> + </Set> + <Set net="INM1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.700" y="0.238"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R3"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.700" y="0.362"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R3"/> + </Pad> + </Set> + <Set net="OUT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.362"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R7"/> + </Pad> + </Set> + <Set net="INM1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.550" y="0.238"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R7"/> + </Pad> + </Set> + <Set net="FB3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.850" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R10"/> + </Pad> + </Set> + <Set net="OUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.850" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R10"/> + </Pad> + </Set> + <Set net="INM3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.962"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R11"/> + </Pad> + </Set> + <Set net="FB3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.838"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R11"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="1.800" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R13"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="1.800" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R13"/> + </Pad> + </Set> + <Set net="INM2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.400" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R5"/> + </Pad> + </Set> + <Set net="IN2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.400" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R5"/> + </Pad> + </Set> + <Set net="OUT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.400" y="0.238"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R8"/> + </Pad> + </Set> + <Set net="IN2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="0.400" y="0.362"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R8"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.300" y="0.238"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R4"/> + </Pad> + </Set> + <Set net="INM1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.300" y="0.362"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R4"/> + </Pad> + </Set> + <Set net="OUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R6"/> + </Pad> + </Set> + <Set net="IN2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.700" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R6"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.650" y="0.538"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="R12"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="270.000"/> + <Location x="1.650" y="0.662"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="R12"/> + </Pad> + </Set> + <Set net="UN1CA345028PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.362"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="2" componentRef="C1"/> + </Pad> + </Set> + <Set net="UN1CA345028PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD40_75"> + <Xform rotation="90.000"/> + <Location x="0.850" y="0.238"/> + <StandardPrimitiveRef id="RECTCENTER_1"/> + <PinRef pin="1" componentRef="C1"/> + </Pad> + </Set> + <Set net="ZEROCROSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.650" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="13" componentRef="U13"/> + </Pad> + </Set> + <Set net="VOUTB" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.600" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="14" componentRef="U13"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.750" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U13"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.800" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U13"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.750" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U13"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.900" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U13"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.800" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U13"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.650" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U13"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.700" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U13"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6C98" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.600" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U13"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6C30" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.850" y="0.212"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U13"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6BC8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.900" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U13"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6B60" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.850" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U13"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6AF8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.700" y="0.387"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="12" componentRef="U13"/> + </Pad> + </Set> + <Set net="PULSEOUT" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.325" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U7"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.325" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U7"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.375" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U7"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.275" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U7"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.425" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U7"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E69C0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.425" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U7"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6958" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.375" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U7"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E68F0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.275" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U7"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.025" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U12"/> + </Pad> + </Set> + <Set net="INM3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.075" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U12"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.075" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U12"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.125" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U12"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.025" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U12"/> + </Pad> + </Set> + <Set net="UN1CA345010PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.975" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U12"/> + </Pad> + </Set> + <Set net="UN1CA345010PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.975" y="0.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U12"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6548" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.125" y="0.988"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U12"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.350" y="0.975"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U9"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.400" y="0.800"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U9"/> + </Pad> + </Set> + <Set net="OUT2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.400" y="0.975"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U9"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.450" y="0.800"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U9"/> + </Pad> + </Set> + <Set net="INM2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.350" y="0.800"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U9"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.300" y="0.975"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U9"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.300" y="0.800"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U9"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E64E0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.450" y="0.975"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U9"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.050" y="0.375"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U8"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.100" y="0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U8"/> + </Pad> + </Set> + <Set net="OUT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.100" y="0.375"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U8"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.150" y="0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U8"/> + </Pad> + </Set> + <Set net="INM1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.050" y="0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U8"/> + </Pad> + </Set> + <Set net="UN1CA345028PCMP20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.000" y="0.375"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U8"/> + </Pad> + </Set> + <Set net="UN1CA345028PCMP10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.000" y="0.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U8"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6478" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.150" y="0.375"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U8"/> + </Pad> + </Set> + <Set net="VBB" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.675" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="14" componentRef="U15"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.725" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="13" componentRef="U15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.925" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.725" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="4" componentRef="U15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.875" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.675" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="3" componentRef="U15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.625" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="2" componentRef="U15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.775" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U15"/> + </Pad> + </Set> + <Set net="B6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.825" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.575" y="0.812"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="1" componentRef="U15"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.575" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="16" componentRef="U15"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.925" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U15"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6410" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.875" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U15"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E63A8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.825" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U15"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6340" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.775" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="12" componentRef="U15"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E62D8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.625" y="0.987"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="15" componentRef="U15"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U17"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U17"/> + </Pad> + </Set> + <Set net="OFFSET1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U17"/> + </Pad> + </Set> + <Set net="OFFSET0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.900" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.950" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.000" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.050" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.100" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.150" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U17"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.200" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U17"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U17"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.200" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.150" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.100" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.050" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="1.000" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.950" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="90.000"/> + <Location x="0.900" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U17"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U17"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U17"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="1.260" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U17"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U17"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="90.000"/> + <Location x="0.840" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U17"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.269" y="2.622"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U18"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.305" y="2.658"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.305" y="2.742"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.269" y="2.778"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.234" y="2.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.198" y="2.848"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.163" y="2.884"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.128" y="2.919"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.092" y="2.955"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U18"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.008" y="2.955"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ_LOAD" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.831" y="2.778"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ9" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.866" y="2.587"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.902" y="2.552"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.937" y="2.516"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.972" y="2.481"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="1.008" y="2.445"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.092" y="2.445"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.128" y="2.481"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.163" y="2.516"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.198" y="2.552"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ11" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.795" y="2.658"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000"/> + <Location x="0.831" y="2.622"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U18"/> + </Pad> + </Set> + <Set net="FREQ0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="1.234" y="2.587"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U18"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.866" y="2.813"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U18"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.902" y="2.848"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U18"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.795" y="2.742"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U18"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.972" y="2.919"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U18"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000"/> + <Location x="0.937" y="2.884"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U18"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.878" y="2.919"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U6"/> + </Pad> + </Set> + <Set net="D0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.758" y="2.955"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U6"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.913" y="2.884"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U6"/> + </Pad> + </Set> + <Set net="D1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.842" y="2.955"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U6"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="2.019" y="2.778"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U6"/> + </Pad> + </Set> + <Set net="D3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="2.055" y="2.658"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U6"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="2.055" y="2.742"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U6"/> + </Pad> + </Set> + <Set net="D2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="2.019" y="2.622"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.984" y="2.587"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.913" y="2.516"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.878" y="2.481"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.842" y="2.445"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.758" y="2.445"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.722" y="2.481"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.687" y="2.516"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.581" y="2.622"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.545" y="2.658"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U6"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.545" y="2.742"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U6"/> + </Pad> + </Set> + <Set net="WE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.687" y="2.884"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U6"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.581" y="2.778"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U6"/> + </Pad> + </Set> + <Set net="OE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.722" y="2.919"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U6"/> + </Pad> + </Set> + <Set net="CS2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.616" y="2.813"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U6"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.616" y="2.587"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U6"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.984" y="2.813"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U6"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6888" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.652" y="2.552"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U6"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6820" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.948" y="2.552"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U6"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E67B8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="135.000"/> + <Location x="1.948" y="2.848"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U6"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6750" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="135.000"/> + <Location x="1.652" y="2.848"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U6"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.600" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U5"/> + </Pad> + </Set> + <Set net="D4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U5"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.650" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U5"/> + </Pad> + </Set> + <Set net="D5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.550" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U5"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.800" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U5"/> + </Pad> + </Set> + <Set net="D6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U5"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.850" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U5"/> + </Pad> + </Set> + <Set net="D7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.850" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.800" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.750" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.600" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.550" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U5"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U5"/> + </Pad> + </Set> + <Set net="WE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U5"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U5"/> + </Pad> + </Set> + <Set net="OE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U5"/> + </Pad> + </Set> + <Set net="CS1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U5"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.650" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U5"/> + </Pad> + </Set> + <Set net="GND" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.750" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U5"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E66E8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.700" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U5"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6680" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.910" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U5"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6618" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="180.000"/> + <Location x="1.700" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U5"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E65B0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="180.000"/> + <Location x="1.490" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U5"/> + </Pad> + </Set> + <Set net="B2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.649" y="1.920"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.607" y="2.086"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.678" y="1.879"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U10"/> + </Pad> + </Set> + <Set net="B3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.707" y="1.838"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.647" y="2.114"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.736" y="1.797"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U10"/> + </Pad> + </Set> + <Set net="B7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.848" y="1.742"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.688" y="2.143"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.889" y="1.771"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U10"/> + </Pad> + </Set> + <Set net="B6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.930" y="1.799"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.770" y="2.201"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.971" y="1.828"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U10"/> + </Pad> + </Set> + <Set net="B4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="2.053" y="1.886"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.811" y="2.229"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="2.093" y="1.914"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U10"/> + </Pad> + </Set> + <Set net="B5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="2.108" y="1.998"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.936" y="2.243"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.852" y="2.258"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U10"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5C58" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.964" y="2.203"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.993" y="2.162"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U10"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="2.079" y="2.039"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U10"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="2.012" y="1.857"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U10"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.621" y="1.961"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U10"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.764" y="1.757"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U10"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="2.051" y="2.080"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U10"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="35.096"/> + <Location x="1.729" y="2.172"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U10"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5BF0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="1.592" y="2.002"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U10"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5B88" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="35.096"/> + <Location x="2.022" y="2.121"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U10"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E54A0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5438" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.300" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E53D0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5368" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.250" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5300" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5298" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5230" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.250" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E51C8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5160" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.350" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E50F8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.500" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5090" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.400" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5028" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.450" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.500" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.550" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.550" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4FC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.350" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U3"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.190" y="3.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.300" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Location x="0.610" y="3.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U3"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.450" y="3.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U3"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Location x="0.400" y="3.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U3"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4F58" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.548" y="2.198"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4EF0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.619" y="1.972"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4E88" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.513" y="2.234"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4E20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.655" y="2.008"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4DB8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.442" y="2.305"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4D50" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.655" y="2.092"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4CE8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.358" y="2.305"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4C80" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.619" y="2.128"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4C18" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.287" y="2.234"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4BB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.478" y="1.831"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4B48" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.252" y="2.198"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4AE0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.513" y="1.866"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4A78" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.181" y="2.128"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4A10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.358" y="1.795"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E49A8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.145" y="2.092"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4940" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.442" y="1.795"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.181" y="1.972"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U2"/> + </Pad> + </Set> + <Set net="UN1100E116100PA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.584" y="1.937"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U2"/> + </Pad> + </Set> + <Set net="UN1100E116100PA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.287" y="1.866"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.216" y="1.937"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U2"/> + </Pad> + </Set> + <Set net="CLEAR" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.322" y="1.831"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.584" y="2.163"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.478" y="2.269"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.322" y="2.269"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.145" y="2.008"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="225.000"/> + <Location x="0.252" y="1.902"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U2"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.216" y="2.163"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U2"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="225.000"/> + <Location x="0.548" y="1.902"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U2"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.002" y="2.148"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U1"/> + </Pad> + </Set> + <Set net="CLOCK" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.228" y="2.219"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="0.966" y="2.113"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U1"/> + </Pad> + </Set> + <Set net="UN1100E11699PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.192" y="2.255"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4738" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="0.895" y="2.042"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E46D0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.108" y="2.255"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4668" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="0.895" y="1.958"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4600" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.072" y="2.219"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4598" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="0.966" y="1.887"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4530" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.369" y="2.078"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E44C8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.002" y="1.852"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4460" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.334" y="2.113"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E43F8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.072" y="1.781"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4390" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.405" y="1.958"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4328" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.108" y="1.745"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E42C0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.405" y="2.042"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E48D8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.228" y="1.781"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U1"/> + </Pad> + </Set> + <Set net="UN1100E11699PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.263" y="2.184"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4870" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.334" y="1.887"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4808" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.263" y="1.816"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E47A0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.369" y="1.922"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.037" y="2.184"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="0.931" y="2.078"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="0.931" y="1.922"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.192" y="1.745"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="315.000"/> + <Location x="1.298" y="1.852"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U1"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.037" y="1.816"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U1"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="315.000"/> + <Location x="1.298" y="2.148"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4258" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.850"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E41F0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.450" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4188" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.400" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4120" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.350" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E40B8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.300" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E4050" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.800"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3FE8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.750"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3F80" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.800"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3F18" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.850"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3EB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.550" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3E48" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.500" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3DE0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.700"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3D78" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.600"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3D10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.550"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3CA8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.600"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3C40" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.650"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3BD8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.750"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3B70" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.550"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U4"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.250" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U4"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.400" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U4"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.450" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3B08" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.500" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3AA0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.550" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U4"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.300" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U4"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.190" y="2.650"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U4"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.250" y="2.910"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U4"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="270.000"/> + <Location x="0.350" y="2.490"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U4"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="270.000"/> + <Location x="0.610" y="2.700"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U4"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="GND"> + <Set> + <ColorRef id="COLOR_GND"/> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.116" y="0.050"/> + <PolyStepCurve x="0.050" y="0.116" centerX="0.0" centerY="0.0" clockwise="false"/> + <PolyStepSegment x="0.050" y="1.087"/> + <PolyStepSegment x="1.987" y="1.087"/> + <PolyStepSegment x="1.987" y="0.050"/> + <PolyStepSegment x="0.116" y="0.050"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + <Cutout> + <PolyBegin x="1.571" y="0.888"/> + <PolyStepCurve x="1.568" y="0.894" centerX="1.567364" centerY="0.889932" clockwise="false"/> + <PolyStepCurve x="1.604" y="0.912" centerX="1.575000" centerY="0.925000" clockwise="true"/> + <PolyStepCurve x="1.607" y="0.906" centerX="1.607636" centerY="0.910068" clockwise="false"/> + <PolyStepCurve x="1.571" y="0.888" centerX="1.600000" centerY="0.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.903" y="0.702"/> + <PolyStepCurve x="1.897" y="0.702" centerX="1.900000" centerY="0.699140" clockwise="false"/> + <PolyStepCurve x="1.897" y="0.748" centerX="1.875000" centerY="0.725000" clockwise="true"/> + <PolyStepCurve x="1.903" y="0.748" centerX="1.900000" centerY="0.750860" clockwise="false"/> + <PolyStepCurve x="1.903" y="0.702" centerX="1.925000" centerY="0.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.182" y="0.800"/> + <PolyStepCurve x="0.118" y="0.800" centerX="0.150000" centerY="0.800000" clockwise="true"/> + <PolyStepCurve x="0.182" y="0.800" centerX="0.150000" centerY="0.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.257" y="0.975"/> + <PolyStepCurve x="0.193" y="0.975" centerX="0.225000" centerY="0.975000" clockwise="true"/> + <PolyStepCurve x="0.257" y="0.975" centerX="0.225000" centerY="0.975000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.532" y="0.750"/> + <PolyStepCurve x="0.468" y="0.750" centerX="0.500000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="0.532" y="0.750" centerX="0.500000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.982" y="0.400"/> + <PolyStepCurve x="0.918" y="0.400" centerX="0.950000" centerY="0.400000" clockwise="true"/> + <PolyStepCurve x="0.982" y="0.400" centerX="0.950000" centerY="0.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="0.275"/> + <PolyStepCurve x="1.068" y="0.275" centerX="1.100000" centerY="0.275000" clockwise="true"/> + <PolyStepCurve x="1.132" y="0.275" centerX="1.100000" centerY="0.275000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="0.750"/> + <PolyStepCurve x="1.068" y="0.750" centerX="1.100000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="1.132" y="0.750" centerX="1.100000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="0.225"/> + <PolyStepCurve x="1.368" y="0.225" centerX="1.400000" centerY="0.225000" clockwise="true"/> + <PolyStepCurve x="1.432" y="0.225" centerX="1.400000" centerY="0.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.482" y="0.350"/> + <PolyStepCurve x="1.418" y="0.350" centerX="1.450000" centerY="0.350000" clockwise="true"/> + <PolyStepCurve x="1.482" y="0.350" centerX="1.450000" centerY="0.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="0.225"/> + <PolyStepCurve x="1.518" y="0.225" centerX="1.550000" centerY="0.225000" clockwise="true"/> + <PolyStepCurve x="1.582" y="0.225" centerX="1.550000" centerY="0.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.557" y="0.150"/> + <PolyStepCurve x="1.493" y="0.150" centerX="1.525000" centerY="0.150000" clockwise="true"/> + <PolyStepCurve x="1.557" y="0.150" centerX="1.525000" centerY="0.150000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.425"/> + <PolyStepCurve x="1.468" y="0.425" centerX="1.500000" centerY="0.425000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.425" centerX="1.500000" centerY="0.425000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.675"/> + <PolyStepCurve x="1.468" y="0.675" centerX="1.500000" centerY="0.675000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.675" centerX="1.500000" centerY="0.675000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="0.525"/> + <PolyStepCurve x="1.518" y="0.525" centerX="1.550000" centerY="0.525000" clockwise="true"/> + <PolyStepCurve x="1.582" y="0.525" centerX="1.550000" centerY="0.525000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.600"/> + <PolyStepCurve x="1.468" y="0.600" centerX="1.500000" centerY="0.600000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.600" centerX="1.500000" centerY="0.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.407" y="0.725"/> + <PolyStepCurve x="1.343" y="0.725" centerX="1.375000" centerY="0.725000" clockwise="true"/> + <PolyStepCurve x="1.407" y="0.725" centerX="1.375000" centerY="0.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.357" y="0.875"/> + <PolyStepCurve x="1.293" y="0.875" centerX="1.325000" centerY="0.875000" clockwise="true"/> + <PolyStepCurve x="1.357" y="0.875" centerX="1.325000" centerY="0.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="0.475"/> + <PolyStepCurve x="1.618" y="0.475" centerX="1.650000" centerY="0.475000" clockwise="true"/> + <PolyStepCurve x="1.682" y="0.475" centerX="1.650000" centerY="0.475000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.757" y="0.750"/> + <PolyStepCurve x="1.693" y="0.750" centerX="1.725000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="1.757" y="0.750" centerX="1.725000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.832" y="0.875"/> + <PolyStepCurve x="1.768" y="0.875" centerX="1.800000" centerY="0.875000" clockwise="true"/> + <PolyStepCurve x="1.832" y="0.875" centerX="1.800000" centerY="0.875000" clockwise="true"/> + </Cutout> + </Contour> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.050" y="3.100"/> + <PolyStepSegment x="0.086" y="3.064"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.014" y="3.136"/> + <PolyStepSegment x="0.050" y="3.100"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.050" y="3.100"/> + <PolyStepSegment x="0.086" y="3.136"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.014" y="3.064"/> + <PolyStepSegment x="0.050" y="3.100"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.050" y="3.200"/> + <PolyStepSegment x="0.086" y="3.164"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.014" y="3.236"/> + <PolyStepSegment x="0.050" y="3.200"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.050" y="3.200"/> + <PolyStepSegment x="0.086" y="3.236"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.014" y="3.164"/> + <PolyStepSegment x="0.050" y="3.200"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="GND"> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.000" y="0.050"/> + <PolyStepSegment x="2.000" y="0.478"/> + <PolyStepCurve x="2.008" y="0.480" centerX="2.004057" centerY="0.478773" clockwise="true"/> + <PolyStepCurve x="2.008" y="0.520" centerX="2.050000" centerY="0.500000" clockwise="false"/> + <PolyStepCurve x="2.000" y="0.522" centerX="2.004057" centerY="0.521227" clockwise="true"/> + <PolyStepSegment x="2.000" y="1.125"/> + <PolyStepSegment x="-0.075" y="1.125"/> + <PolyStepSegment x="-0.075" y="2.541"/> + <PolyStepCurve x="-0.070" y="2.544" centerX="-0.071230" centerY="2.540383" clockwise="true"/> + <PolyStepCurve x="-0.070" y="2.656" centerX="-0.050000" centerY="2.600000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.659" centerX="-0.071230" centerY="2.659617" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.766"/> + <PolyStepCurve x="-0.069" y="2.769" centerX="-0.071155" centerY="2.765809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="2.831" centerX="-0.050000" centerY="2.800000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.834" centerX="-0.071155" centerY="2.834191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.866"/> + <PolyStepCurve x="-0.069" y="2.869" centerX="-0.071155" centerY="2.865809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="2.931" centerX="-0.050000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.934" centerX="-0.071155" centerY="2.934191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.966"/> + <PolyStepCurve x="-0.069" y="2.969" centerX="-0.071155" centerY="2.965809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="3.031" centerX="-0.050000" centerY="3.000000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.034" centerX="-0.071155" centerY="3.034191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.066"/> + <PolyStepSegment x="-0.016" y="3.066"/> + <PolyStepSegment x="-0.016" y="3.134"/> + <PolyStepSegment x="-0.075" y="3.134"/> + <PolyStepSegment x="-0.075" y="3.166"/> + <PolyStepSegment x="-0.016" y="3.166"/> + <PolyStepSegment x="-0.016" y="3.234"/> + <PolyStepSegment x="-0.075" y="3.234"/> + <PolyStepSegment x="-0.075" y="3.341"/> + <PolyStepCurve x="-0.070" y="3.344" centerX="-0.071230" centerY="3.340383" clockwise="true"/> + <PolyStepCurve x="-0.070" y="3.456" centerX="-0.050000" centerY="3.400000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.459" centerX="-0.071230" centerY="3.459617" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.899"/> + <PolyStepSegment x="0.201" y="3.899"/> + <PolyStepSegment x="0.201" y="3.975"/> + <PolyStepSegment x="0.699" y="3.975"/> + <PolyStepSegment x="0.699" y="3.951"/> + <PolyStepSegment x="0.649" y="3.951"/> + <PolyStepSegment x="0.649" y="3.899"/> + <PolyStepSegment x="0.951" y="3.899"/> + <PolyStepSegment x="0.951" y="3.951"/> + <PolyStepSegment x="0.751" y="3.951"/> + <PolyStepSegment x="0.751" y="3.975"/> + <PolyStepSegment x="2.500" y="3.975"/> + <PolyStepSegment x="3.125" y="3.875"/> + <PolyStepSegment x="3.475" y="3.875"/> + <PolyStepSegment x="3.525" y="3.825"/> + <PolyStepSegment x="3.525" y="3.651"/> + <PolyStepSegment x="3.150" y="3.651"/> + <PolyStepSegment x="3.049" y="3.550"/> + <PolyStepSegment x="3.049" y="3.301"/> + <PolyStepSegment x="2.999" y="3.301"/> + <PolyStepSegment x="2.999" y="3.099"/> + <PolyStepSegment x="3.199" y="3.099"/> + <PolyStepSegment x="3.199" y="3.000"/> + <PolyStepSegment x="3.150" y="2.951"/> + <PolyStepSegment x="2.850" y="2.951"/> + <PolyStepSegment x="2.799" y="2.900"/> + <PolyStepSegment x="2.799" y="2.850"/> + <PolyStepSegment x="3.099" y="2.550"/> + <PolyStepSegment x="3.099" y="2.501"/> + <PolyStepSegment x="2.850" y="2.501"/> + <PolyStepSegment x="2.799" y="2.450"/> + <PolyStepSegment x="2.799" y="2.350"/> + <PolyStepSegment x="2.850" y="2.299"/> + <PolyStepSegment x="3.149" y="2.299"/> + <PolyStepSegment x="3.149" y="2.250"/> + <PolyStepSegment x="2.849" y="2.000"/> + <PolyStepSegment x="2.849" y="1.950"/> + <PolyStepCurve x="2.950" y="1.849" centerX="2.925000" centerY="1.925000" clockwise="false"/> + <PolyStepSegment x="3.269" y="2.076"/> + <PolyStepCurve x="3.275" y="2.073" centerX="3.271186" centerY="2.072873" clockwise="true"/> + <PolyStepSegment x="3.275" y="1.425"/> + <PolyStepSegment x="3.525" y="1.175"/> + <PolyStepSegment x="3.525" y="1.098"/> + <PolyStepCurve x="3.518" y="1.096" centerX="3.521084" centerY="1.098457" clockwise="true"/> + <PolyStepCurve x="3.518" y="0.704" centerX="3.300000" centerY="0.900000" clockwise="false"/> + <PolyStepCurve x="3.525" y="0.702" centerX="3.521084" centerY="0.701543" clockwise="true"/> + <PolyStepSegment x="3.525" y="0.575"/> + <PolyStepSegment x="3.375" y="0.425"/> + <PolyStepSegment x="3.375" y="0.175"/> + <PolyStepSegment x="2.825" y="0.175"/> + <PolyStepSegment x="2.825" y="0.050"/> + <PolyStepSegment x="2.000" y="0.050"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + <Cutout> + <PolyBegin x="0.668" y="3.381"/> + <PolyStepCurve x="0.671" y="3.387" centerX="0.667364" centerY="3.385068" clockwise="false"/> + <PolyStepCurve x="0.707" y="3.369" centerX="0.700000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="0.704" y="3.363" centerX="0.707636" centerY="3.364932" clockwise="false"/> + <PolyStepCurve x="0.668" y="3.381" centerX="0.675000" centerY="3.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.828" y="3.052"/> + <PolyStepCurve x="1.822" y="3.052" centerX="1.825000" centerY="3.049140" clockwise="false"/> + <PolyStepCurve x="1.822" y="3.098" centerX="1.800000" centerY="3.075000" clockwise="true"/> + <PolyStepCurve x="1.828" y="3.098" centerX="1.825000" centerY="3.100860" clockwise="false"/> + <PolyStepCurve x="1.828" y="3.052" centerX="1.850000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.581" y="3.082"/> + <PolyStepCurve x="1.587" y="3.079" centerX="1.585124" centerY="3.082748" clockwise="false"/> + <PolyStepCurve x="1.569" y="3.043" centerX="1.600000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.563" y="3.046" centerX="1.564876" centerY="3.042252" clockwise="false"/> + <PolyStepCurve x="1.581" y="3.082" centerX="1.550000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.144" y="2.997"/> + <PolyStepCurve x="1.151" y="2.996" centerX="1.147742" centerY="2.998196" clockwise="false"/> + <PolyStepCurve x="1.144" y="2.966" centerX="1.174878" centerY="2.974612" clockwise="true"/> + <PolyStepCurve x="1.137" y="2.967" centerX="1.140258" centerY="2.964804" clockwise="false"/> + <PolyStepCurve x="1.144" y="2.997" centerX="1.113122" centerY="2.988388" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.596" y="2.688"/> + <PolyStepCurve x="1.593" y="2.694" centerX="1.592364" centerY="2.689932" clockwise="false"/> + <PolyStepCurve x="1.629" y="2.712" centerX="1.600000" centerY="2.725000" clockwise="true"/> + <PolyStepCurve x="1.632" y="2.706" centerX="1.632636" centerY="2.710068" clockwise="false"/> + <PolyStepCurve x="1.596" y="2.688" centerX="1.625000" centerY="2.675000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.929" y="2.687"/> + <PolyStepCurve x="1.932" y="2.681" centerX="1.932636" centerY="2.685068" clockwise="false"/> + <PolyStepCurve x="1.896" y="2.663" centerX="1.925000" centerY="2.650000" clockwise="true"/> + <PolyStepCurve x="1.893" y="2.669" centerX="1.892364" centerY="2.664932" clockwise="false"/> + <PolyStepCurve x="1.929" y="2.687" centerX="1.900000" centerY="2.700000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.346" y="2.563"/> + <PolyStepCurve x="1.343" y="2.569" centerX="1.342364" centerY="2.564932" clockwise="false"/> + <PolyStepCurve x="1.379" y="2.587" centerX="1.350000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.382" y="2.581" centerX="1.382636" centerY="2.585068" clockwise="false"/> + <PolyStepCurve x="1.346" y="2.563" centerX="1.375000" centerY="2.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.743" y="2.356"/> + <PolyStepCurve x="1.746" y="2.362" centerX="1.742364" centerY="2.360068" clockwise="false"/> + <PolyStepCurve x="1.782" y="2.344" centerX="1.775000" centerY="2.375000" clockwise="true"/> + <PolyStepCurve x="1.779" y="2.338" centerX="1.782636" centerY="2.339932" clockwise="false"/> + <PolyStepCurve x="1.743" y="2.356" centerX="1.750000" centerY="2.325000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.071" y="1.888"/> + <PolyStepCurve x="0.068" y="1.894" centerX="0.067364" centerY="1.889932" clockwise="false"/> + <PolyStepCurve x="0.104" y="1.912" centerX="0.075000" centerY="1.925000" clockwise="true"/> + <PolyStepCurve x="0.107" y="1.906" centerX="0.107636" centerY="1.910068" clockwise="false"/> + <PolyStepCurve x="0.071" y="1.888" centerX="0.100000" centerY="1.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.731" y="1.232"/> + <PolyStepCurve x="1.737" y="1.229" centerX="1.735068" centerY="1.232636" clockwise="false"/> + <PolyStepCurve x="1.719" y="1.193" centerX="1.750000" centerY="1.200000" clockwise="true"/> + <PolyStepCurve x="1.713" y="1.196" centerX="1.714932" centerY="1.192364" clockwise="false"/> + <PolyStepCurve x="1.731" y="1.232" centerX="1.700000" centerY="1.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.102" y="3.800"/> + <PolyStepCurve x="-0.002" y="3.800" centerX="0.050000" centerY="3.800000" clockwise="true"/> + <PolyStepCurve x="0.102" y="3.800" centerX="0.050000" centerY="3.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.852" y="3.800"/> + <PolyStepCurve x="0.748" y="3.800" centerX="0.800000" centerY="3.800000" clockwise="true"/> + <PolyStepCurve x="0.852" y="3.800" centerX="0.800000" centerY="3.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.127" y="3.750"/> + <PolyStepCurve x="2.873" y="3.750" centerX="3.000000" centerY="3.750000" clockwise="true"/> + <PolyStepCurve x="3.127" y="3.750" centerX="3.000000" centerY="3.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.107" y="1.625"/> + <PolyStepCurve x="0.043" y="1.625" centerX="0.075000" centerY="1.625000" clockwise="true"/> + <PolyStepCurve x="0.107" y="1.625" centerX="0.075000" centerY="1.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.082" y="2.300"/> + <PolyStepCurve x="0.018" y="2.300" centerX="0.050000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="0.082" y="2.300" centerX="0.050000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="2.800"/> + <PolyStepCurve x="0.014" y="2.800" centerX="0.050000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="0.086" y="2.800" centerX="0.050000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.016" y="3.134"/> + <PolyStepSegment x="0.084" y="3.134"/> + <PolyStepSegment x="0.084" y="3.066"/> + <PolyStepSegment x="0.016" y="3.066"/> + <PolyStepSegment x="0.016" y="3.134"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="3.000"/> + <PolyStepCurve x="0.014" y="3.000" centerX="0.050000" centerY="3.000000" clockwise="true"/> + <PolyStepCurve x="0.086" y="3.000" centerX="0.050000" centerY="3.000000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="2.900"/> + <PolyStepCurve x="0.014" y="2.900" centerX="0.050000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="0.086" y="2.900" centerX="0.050000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.016" y="3.234"/> + <PolyStepSegment x="0.084" y="3.234"/> + <PolyStepSegment x="0.084" y="3.166"/> + <PolyStepSegment x="0.016" y="3.166"/> + <PolyStepSegment x="0.016" y="3.234"/> + </Cutout> + <Cutout> + <PolyBegin x="0.432" y="3.300"/> + <PolyStepCurve x="0.368" y="3.300" centerX="0.400000" centerY="3.300000" clockwise="true"/> + <PolyStepCurve x="0.432" y="3.300" centerX="0.400000" centerY="3.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.357" y="3.725"/> + <PolyStepCurve x="0.293" y="3.725" centerX="0.325000" centerY="3.725000" clockwise="true"/> + <PolyStepCurve x="0.357" y="3.725" centerX="0.325000" centerY="3.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.632" y="2.275"/> + <PolyStepCurve x="0.568" y="2.275" centerX="0.600000" centerY="2.275000" clockwise="true"/> + <PolyStepCurve x="0.632" y="2.275" centerX="0.600000" centerY="2.275000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.582" y="3.075"/> + <PolyStepCurve x="0.518" y="3.075" centerX="0.550000" centerY="3.075000" clockwise="true"/> + <PolyStepCurve x="0.582" y="3.075" centerX="0.550000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.532" y="3.250"/> + <PolyStepCurve x="0.468" y="3.250" centerX="0.500000" centerY="3.250000" clockwise="true"/> + <PolyStepCurve x="0.532" y="3.250" centerX="0.500000" centerY="3.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.582" y="3.450"/> + <PolyStepCurve x="0.518" y="3.450" centerX="0.550000" centerY="3.450000" clockwise="true"/> + <PolyStepCurve x="0.582" y="3.450" centerX="0.550000" centerY="3.450000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.888" y="2.200"/> + <PolyStepCurve x="0.824" y="2.200" centerX="0.856000" centerY="2.200000" clockwise="true"/> + <PolyStepCurve x="0.888" y="2.200" centerX="0.856000" centerY="2.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.957" y="2.225"/> + <PolyStepCurve x="0.893" y="2.225" centerX="0.925000" centerY="2.225000" clockwise="true"/> + <PolyStepCurve x="0.957" y="2.225" centerX="0.925000" centerY="2.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.882" y="2.900"/> + <PolyStepCurve x="0.818" y="2.900" centerX="0.850000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="0.882" y="2.900" centerX="0.850000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.807" y="3.350"/> + <PolyStepCurve x="0.743" y="3.350" centerX="0.775000" centerY="3.350000" clockwise="true"/> + <PolyStepCurve x="0.807" y="3.350" centerX="0.775000" centerY="3.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="1.650"/> + <PolyStepCurve x="1.068" y="1.650" centerX="1.100000" centerY="1.650000" clockwise="true"/> + <PolyStepCurve x="1.132" y="1.650" centerX="1.100000" centerY="1.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.232" y="2.425"/> + <PolyStepCurve x="1.168" y="2.425" centerX="1.200000" centerY="2.425000" clockwise="true"/> + <PolyStepCurve x="1.232" y="2.425" centerX="1.200000" centerY="2.425000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.057" y="3.000"/> + <PolyStepCurve x="0.993" y="3.000" centerX="1.025000" centerY="3.000000" clockwise="true"/> + <PolyStepCurve x="1.057" y="3.000" centerX="1.025000" centerY="3.000000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.257" y="3.050"/> + <PolyStepCurve x="1.193" y="3.050" centerX="1.225000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.257" y="3.050" centerX="1.225000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.145" y="3.063"/> + <PolyStepCurve x="1.081" y="3.063" centerX="1.113000" centerY="3.063000" clockwise="true"/> + <PolyStepCurve x="1.145" y="3.063" centerX="1.113000" centerY="3.063000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="3.200"/> + <PolyStepCurve x="1.068" y="3.200" centerX="1.100000" centerY="3.200000" clockwise="true"/> + <PolyStepCurve x="1.132" y="3.200" centerX="1.100000" centerY="3.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.232" y="3.400"/> + <PolyStepCurve x="1.168" y="3.400" centerX="1.200000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="1.232" y="3.400" centerX="1.200000" centerY="3.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="3.500"/> + <PolyStepCurve x="1.068" y="3.500" centerX="1.100000" centerY="3.500000" clockwise="true"/> + <PolyStepCurve x="1.132" y="3.500" centerX="1.100000" centerY="3.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.574" y="1.600"/> + <PolyStepCurve x="1.510" y="1.600" centerX="1.542000" centerY="1.600000" clockwise="true"/> + <PolyStepCurve x="1.574" y="1.600" centerX="1.542000" centerY="1.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.604" y="1.472"/> + <PolyStepCurve x="1.540" y="1.472" centerX="1.572000" centerY="1.472000" clockwise="true"/> + <PolyStepCurve x="1.604" y="1.472" centerX="1.572000" centerY="1.472000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="1.850"/> + <PolyStepCurve x="1.518" y="1.850" centerX="1.550000" centerY="1.850000" clockwise="true"/> + <PolyStepCurve x="1.582" y="1.850" centerX="1.550000" centerY="1.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="2.800"/> + <PolyStepCurve x="1.368" y="2.800" centerX="1.400000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="1.432" y="2.800" centerX="1.400000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="2.600"/> + <PolyStepCurve x="1.468" y="2.600" centerX="1.500000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.532" y="2.600" centerX="1.500000" centerY="2.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.357" y="3.025"/> + <PolyStepCurve x="1.293" y="3.025" centerX="1.325000" centerY="3.025000" clockwise="true"/> + <PolyStepCurve x="1.357" y="3.025" centerX="1.325000" centerY="3.025000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.468" y="2.900"/> + <PolyStepCurve x="1.404" y="2.900" centerX="1.436000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="1.468" y="2.900" centerX="1.436000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="3.125"/> + <PolyStepCurve x="1.368" y="3.125" centerX="1.400000" centerY="3.125000" clockwise="true"/> + <PolyStepCurve x="1.432" y="3.125" centerX="1.400000" centerY="3.125000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.378" y="3.322"/> + <PolyStepCurve x="1.314" y="3.322" centerX="1.346000" centerY="3.322000" clockwise="true"/> + <PolyStepCurve x="1.378" y="3.322" centerX="1.346000" centerY="3.322000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="3.239"/> + <PolyStepCurve x="1.368" y="3.239" centerX="1.400000" centerY="3.239000" clockwise="true"/> + <PolyStepCurve x="1.432" y="3.239" centerX="1.400000" centerY="3.239000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.382" y="3.500"/> + <PolyStepCurve x="1.318" y="3.500" centerX="1.350000" centerY="3.500000" clockwise="true"/> + <PolyStepCurve x="1.382" y="3.500" centerX="1.350000" centerY="3.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.382" y="3.625"/> + <PolyStepCurve x="1.318" y="3.625" centerX="1.350000" centerY="3.625000" clockwise="true"/> + <PolyStepCurve x="1.382" y="3.625" centerX="1.350000" centerY="3.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.904" y="1.428"/> + <PolyStepCurve x="1.840" y="1.428" centerX="1.872000" centerY="1.428000" clockwise="true"/> + <PolyStepCurve x="1.904" y="1.428" centerX="1.872000" centerY="1.428000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="1.750"/> + <PolyStepCurve x="1.618" y="1.750" centerX="1.650000" centerY="1.750000" clockwise="true"/> + <PolyStepCurve x="1.682" y="1.750" centerX="1.650000" centerY="1.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.656" y="1.624"/> + <PolyStepCurve x="1.592" y="1.624" centerX="1.624000" centerY="1.624000" clockwise="true"/> + <PolyStepCurve x="1.656" y="1.624" centerX="1.624000" centerY="1.624000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="1.925"/> + <PolyStepCurve x="1.843" y="1.925" centerX="1.875000" centerY="1.925000" clockwise="true"/> + <PolyStepCurve x="1.907" y="1.925" centerX="1.875000" centerY="1.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.932" y="2.100"/> + <PolyStepCurve x="1.868" y="2.100" centerX="1.900000" centerY="2.100000" clockwise="true"/> + <PolyStepCurve x="1.932" y="2.100" centerX="1.900000" centerY="2.100000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.175"/> + <PolyStepCurve x="1.843" y="2.175" centerX="1.875000" centerY="2.175000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.175" centerX="1.875000" centerY="2.175000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.025"/> + <PolyStepCurve x="1.843" y="2.025" centerX="1.875000" centerY="2.025000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.025" centerX="1.875000" centerY="2.025000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.857" y="2.075"/> + <PolyStepCurve x="1.793" y="2.075" centerX="1.825000" centerY="2.075000" clockwise="true"/> + <PolyStepCurve x="1.857" y="2.075" centerX="1.825000" centerY="2.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.807" y="2.500"/> + <PolyStepCurve x="1.743" y="2.500" centerX="1.775000" centerY="2.500000" clockwise="true"/> + <PolyStepCurve x="1.807" y="2.500" centerX="1.775000" centerY="2.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.757" y="2.600"/> + <PolyStepCurve x="1.693" y="2.600" centerX="1.725000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.757" y="2.600" centerX="1.725000" centerY="2.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.782" y="2.700"/> + <PolyStepCurve x="1.718" y="2.700" centerX="1.750000" centerY="2.700000" clockwise="true"/> + <PolyStepCurve x="1.782" y="2.700" centerX="1.750000" centerY="2.700000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.775"/> + <PolyStepCurve x="1.843" y="2.775" centerX="1.875000" centerY="2.775000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.775" centerX="1.875000" centerY="2.775000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.882" y="2.575"/> + <PolyStepCurve x="1.818" y="2.575" centerX="1.850000" centerY="2.575000" clockwise="true"/> + <PolyStepCurve x="1.882" y="2.575" centerX="1.850000" centerY="2.575000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.707" y="2.725"/> + <PolyStepCurve x="1.643" y="2.725" centerX="1.675000" centerY="2.725000" clockwise="true"/> + <PolyStepCurve x="1.707" y="2.725" centerX="1.675000" centerY="2.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.732" y="3.050"/> + <PolyStepCurve x="1.668" y="3.050" centerX="1.700000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.732" y="3.050" centerX="1.700000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="2.975"/> + <PolyStepCurve x="1.618" y="2.975" centerX="1.650000" centerY="2.975000" clockwise="true"/> + <PolyStepCurve x="1.682" y="2.975" centerX="1.650000" centerY="2.975000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.882" y="3.625"/> + <PolyStepCurve x="1.818" y="3.625" centerX="1.850000" centerY="3.625000" clockwise="true"/> + <PolyStepCurve x="1.882" y="3.625" centerX="1.850000" centerY="3.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.253" y="0.500"/> + <PolyStepCurve x="2.159" y="0.500" centerX="2.206000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.253" y="0.500" centerX="2.206000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.207" y="0.825"/> + <PolyStepCurve x="2.143" y="0.825" centerX="2.175000" centerY="0.825000" clockwise="true"/> + <PolyStepCurve x="2.207" y="0.825" centerX="2.175000" centerY="0.825000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.179" y="1.428"/> + <PolyStepCurve x="2.115" y="1.428" centerX="2.147000" centerY="1.428000" clockwise="true"/> + <PolyStepCurve x="2.179" y="1.428" centerX="2.147000" centerY="1.428000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.132" y="2.800"/> + <PolyStepCurve x="2.068" y="2.800" centerX="2.100000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="2.132" y="2.800" centerX="2.100000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.200"/> + <PolyStepCurve x="1.943" y="3.200" centerX="1.975000" centerY="3.200000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.200" centerX="1.975000" centerY="3.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.082" y="3.250"/> + <PolyStepCurve x="2.018" y="3.250" centerX="2.050000" centerY="3.250000" clockwise="true"/> + <PolyStepCurve x="2.082" y="3.250" centerX="2.050000" centerY="3.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.032" y="3.300"/> + <PolyStepCurve x="1.968" y="3.300" centerX="2.000000" centerY="3.300000" clockwise="true"/> + <PolyStepCurve x="2.032" y="3.300" centerX="2.000000" centerY="3.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.400"/> + <PolyStepCurve x="1.943" y="3.400" centerX="1.975000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.400" centerX="1.975000" centerY="3.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.650"/> + <PolyStepCurve x="1.943" y="3.650" centerX="1.975000" centerY="3.650000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.650" centerX="1.975000" centerY="3.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.409" y="0.500"/> + <PolyStepCurve x="2.315" y="0.500" centerX="2.362000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.409" y="0.500" centerX="2.362000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.347" y="0.650"/> + <PolyStepCurve x="2.253" y="0.650" centerX="2.300000" centerY="0.650000" clockwise="true"/> + <PolyStepCurve x="2.347" y="0.650" centerX="2.300000" centerY="0.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.457" y="0.760"/> + <PolyStepCurve x="2.363" y="0.760" centerX="2.410000" centerY="0.760000" clockwise="true"/> + <PolyStepCurve x="2.457" y="0.760" centerX="2.410000" centerY="0.760000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.568" y="0.871"/> + <PolyStepCurve x="2.474" y="0.871" centerX="2.521000" centerY="0.871000" clockwise="true"/> + <PolyStepCurve x="2.568" y="0.871" centerX="2.521000" centerY="0.871000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="0.850"/> + <PolyStepCurve x="2.228" y="0.850" centerX="2.275000" centerY="0.850000" clockwise="true"/> + <PolyStepCurve x="2.322" y="0.850" centerX="2.275000" centerY="0.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.006"/> + <PolyStepCurve x="2.228" y="1.006" centerX="2.275000" centerY="1.006000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.006" centerX="2.275000" centerY="1.006000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.162"/> + <PolyStepCurve x="2.228" y="1.162" centerX="2.275000" centerY="1.162000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.162" centerX="2.275000" centerY="1.162000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.319"/> + <PolyStepCurve x="2.228" y="1.319" centerX="2.275000" centerY="1.319000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.319" centerX="2.275000" centerY="1.319000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.475"/> + <PolyStepCurve x="2.228" y="1.475" centerX="2.275000" centerY="1.475000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.475" centerX="2.275000" centerY="1.475000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.532" y="1.575"/> + <PolyStepCurve x="2.468" y="1.575" centerX="2.500000" centerY="1.575000" clockwise="true"/> + <PolyStepCurve x="2.532" y="1.575" centerX="2.500000" centerY="1.575000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.631"/> + <PolyStepCurve x="2.228" y="1.631" centerX="2.275000" centerY="1.631000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.631" centerX="2.275000" centerY="1.631000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.788"/> + <PolyStepCurve x="2.228" y="1.788" centerX="2.275000" centerY="1.788000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.788" centerX="2.275000" centerY="1.788000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.457" y="1.775"/> + <PolyStepCurve x="2.393" y="1.775" centerX="2.425000" centerY="1.775000" clockwise="true"/> + <PolyStepCurve x="2.457" y="1.775" centerX="2.425000" centerY="1.775000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.944"/> + <PolyStepCurve x="2.228" y="1.944" centerX="2.275000" centerY="1.944000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.944" centerX="2.275000" centerY="1.944000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="2.100"/> + <PolyStepCurve x="2.228" y="2.100" centerX="2.275000" centerY="2.100000" clockwise="true"/> + <PolyStepCurve x="2.322" y="2.100" centerX="2.275000" centerY="2.100000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.300"/> + <PolyStepCurve x="2.403" y="2.300" centerX="2.450000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.300" centerX="2.450000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.456"/> + <PolyStepCurve x="2.403" y="2.456" centerX="2.450000" centerY="2.456000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.456" centerX="2.450000" centerY="2.456000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.300"/> + <PolyStepCurve x="2.203" y="2.300" centerX="2.250000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.300" centerX="2.250000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.456"/> + <PolyStepCurve x="2.203" y="2.456" centerX="2.250000" centerY="2.456000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.456" centerX="2.250000" centerY="2.456000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.612"/> + <PolyStepCurve x="2.403" y="2.612" centerX="2.450000" centerY="2.612000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.612" centerX="2.450000" centerY="2.612000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.769"/> + <PolyStepCurve x="2.403" y="2.769" centerX="2.450000" centerY="2.769000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.769" centerX="2.450000" centerY="2.769000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.612"/> + <PolyStepCurve x="2.203" y="2.612" centerX="2.250000" centerY="2.612000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.612" centerX="2.250000" centerY="2.612000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.769"/> + <PolyStepCurve x="2.203" y="2.769" centerX="2.250000" centerY="2.769000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.769" centerX="2.250000" centerY="2.769000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.925"/> + <PolyStepCurve x="2.403" y="2.925" centerX="2.450000" centerY="2.925000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.925" centerX="2.450000" centerY="2.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.081"/> + <PolyStepCurve x="2.403" y="3.081" centerX="2.450000" centerY="3.081000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.081" centerX="2.450000" centerY="3.081000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.925"/> + <PolyStepCurve x="2.203" y="2.925" centerX="2.250000" centerY="2.925000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.925" centerX="2.250000" centerY="2.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.081"/> + <PolyStepCurve x="2.203" y="3.081" centerX="2.250000" centerY="3.081000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.081" centerX="2.250000" centerY="3.081000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.238"/> + <PolyStepCurve x="2.403" y="3.238" centerX="2.450000" centerY="3.238000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.238" centerX="2.450000" centerY="3.238000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.394"/> + <PolyStepCurve x="2.403" y="3.394" centerX="2.450000" centerY="3.394000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.394" centerX="2.450000" centerY="3.394000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.238"/> + <PolyStepCurve x="2.203" y="3.238" centerX="2.250000" centerY="3.238000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.238" centerX="2.250000" centerY="3.238000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.394"/> + <PolyStepCurve x="2.203" y="3.394" centerX="2.250000" centerY="3.394000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.394" centerX="2.250000" centerY="3.394000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.550"/> + <PolyStepCurve x="2.403" y="3.550" centerX="2.450000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.550" centerX="2.450000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.550"/> + <PolyStepCurve x="2.203" y="3.550" centerX="2.250000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.550" centerX="2.250000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.566" y="0.500"/> + <PolyStepCurve x="2.472" y="0.500" centerX="2.519000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.566" y="0.500" centerX="2.519000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.722" y="0.500"/> + <PolyStepCurve x="2.628" y="0.500" centerX="2.675000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.722" y="0.500" centerX="2.675000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.679" y="0.982"/> + <PolyStepCurve x="2.585" y="0.982" centerX="2.632000" centerY="0.982000" clockwise="true"/> + <PolyStepCurve x="2.679" y="0.982" centerX="2.632000" centerY="0.982000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.789" y="1.092"/> + <PolyStepCurve x="2.695" y="1.092" centerX="2.742000" centerY="1.092000" clockwise="true"/> + <PolyStepCurve x="2.789" y="1.092" centerX="2.742000" centerY="1.092000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="2.150"/> + <PolyStepCurve x="2.558" y="2.150" centerX="2.600000" centerY="2.150000" clockwise="true"/> + <PolyStepCurve x="2.642" y="2.150" centerX="2.600000" centerY="2.150000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="2.250"/> + <PolyStepCurve x="2.758" y="2.250" centerX="2.800000" centerY="2.250000" clockwise="true"/> + <PolyStepCurve x="2.842" y="2.250" centerX="2.800000" centerY="2.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.607" y="2.525"/> + <PolyStepCurve x="2.543" y="2.525" centerX="2.575000" centerY="2.525000" clockwise="true"/> + <PolyStepCurve x="2.607" y="2.525" centerX="2.575000" centerY="2.525000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="3.050"/> + <PolyStepCurve x="2.758" y="3.050" centerX="2.800000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="2.842" y="3.050" centerX="2.800000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="2.850"/> + <PolyStepCurve x="2.558" y="2.850" centerX="2.600000" centerY="2.850000" clockwise="true"/> + <PolyStepCurve x="2.642" y="2.850" centerX="2.600000" centerY="2.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="3.650"/> + <PolyStepCurve x="2.758" y="3.650" centerX="2.800000" centerY="3.650000" clockwise="true"/> + <PolyStepCurve x="2.842" y="3.650" centerX="2.800000" centerY="3.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="3.550"/> + <PolyStepCurve x="2.558" y="3.550" centerX="2.600000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.642" y="3.550" centerX="2.600000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.582" y="3.725"/> + <PolyStepCurve x="2.518" y="3.725" centerX="2.550000" centerY="3.725000" clockwise="true"/> + <PolyStepCurve x="2.582" y="3.725" centerX="2.550000" centerY="3.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.878" y="0.500"/> + <PolyStepCurve x="2.784" y="0.500" centerX="2.831000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.878" y="0.500" centerX="2.831000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.035" y="0.500"/> + <PolyStepCurve x="2.941" y="0.500" centerX="2.988000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.035" y="0.500" centerX="2.988000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.899" y="1.202"/> + <PolyStepCurve x="2.805" y="1.202" centerX="2.852000" centerY="1.202000" clockwise="true"/> + <PolyStepCurve x="2.899" y="1.202" centerX="2.852000" centerY="1.202000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.010" y="1.313"/> + <PolyStepCurve x="2.916" y="1.313" centerX="2.963000" centerY="1.313000" clockwise="true"/> + <PolyStepCurve x="3.010" y="1.313" centerX="2.963000" centerY="1.313000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.121" y="1.424"/> + <PolyStepCurve x="3.027" y="1.424" centerX="3.074000" centerY="1.424000" clockwise="true"/> + <PolyStepCurve x="3.121" y="1.424" centerX="3.074000" centerY="1.424000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.191" y="0.500"/> + <PolyStepCurve x="3.097" y="0.500" centerX="3.144000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.191" y="0.500" centerX="3.144000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.347" y="0.500"/> + <PolyStepCurve x="3.253" y="0.500" centerX="3.300000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.347" y="0.500" centerX="3.300000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.231" y="1.534"/> + <PolyStepCurve x="3.137" y="1.534" centerX="3.184000" centerY="1.534000" clockwise="true"/> + <PolyStepCurve x="3.231" y="1.534" centerX="3.184000" centerY="1.534000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.417" y="3.411"/> + <PolyStepCurve x="1.397" y="3.422" centerX="1.392569" centerY="3.390261" clockwise="true"/> + <PolyStepCurve x="1.401" y="3.428" centerX="1.397696" centerY="3.425869" clockwise="false"/> + <PolyStepCurve x="1.421" y="3.417" centerX="1.425431" centerY="3.448739" clockwise="true"/> + <PolyStepCurve x="1.417" y="3.411" centerX="1.420304" centerY="3.413131" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="1.594" y="2.151"/> + <PolyStepCurve x="1.586" y="2.171" centerX="1.562053" centerY="2.149821" clockwise="true"/> + <PolyStepCurve x="1.593" y="2.174" centerX="1.589016" centerY="2.173629" clockwise="false"/> + <PolyStepCurve x="1.601" y="2.154" centerX="1.624947" centerY="2.175179" clockwise="true"/> + <PolyStepCurve x="1.594" y="2.151" centerX="1.597984" centerY="2.151371" clockwise="false"/> + </Cutout> + </Contour> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="GND - Layer2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.309" y="-0.438"/> + <PolyStepSegment x="1.327" y="-0.438"/> + <PolyStepSegment x="1.327" y="-0.460"/> + <PolyStepSegment x="1.322" y="-0.468"/> + <PolyStepSegment x="1.315" y="-0.473"/> + <PolyStepSegment x="1.306" y="-0.475"/> + <PolyStepSegment x="1.296" y="-0.473"/> + <PolyStepSegment x="1.290" y="-0.468"/> + <PolyStepSegment x="1.284" y="-0.460"/> + <PolyStepSegment x="1.281" y="-0.451"/> + <PolyStepSegment x="1.279" y="-0.441"/> + <PolyStepSegment x="1.279" y="-0.432"/> + <PolyStepSegment x="1.281" y="-0.425"/> + <PolyStepSegment x="1.284" y="-0.416"/> + <PolyStepSegment x="1.290" y="-0.409"/> + <PolyStepSegment x="1.296" y="-0.404"/> + <PolyStepSegment x="1.303" y="-0.400"/> + <PolyStepSegment x="1.310" y="-0.400"/> + <PolyStepSegment x="1.317" y="-0.402"/> + <PolyStepSegment x="1.323" y="-0.408"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.357" y="-0.475"/> + <PolyStepSegment x="1.357" y="-0.400"/> + <PolyStepSegment x="1.399" y="-0.475"/> + <PolyStepSegment x="1.399" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.432" y="-0.475"/> + <PolyStepSegment x="1.432" y="-0.400"/> + <PolyStepSegment x="1.451" y="-0.400"/> + <PolyStepSegment x="1.459" y="-0.404"/> + <PolyStepSegment x="1.464" y="-0.409"/> + <PolyStepSegment x="1.469" y="-0.416"/> + <PolyStepSegment x="1.473" y="-0.425"/> + <PolyStepSegment x="1.474" y="-0.438"/> + <PolyStepSegment x="1.473" y="-0.450"/> + <PolyStepSegment x="1.469" y="-0.459"/> + <PolyStepSegment x="1.464" y="-0.466"/> + <PolyStepSegment x="1.459" y="-0.471"/> + <PolyStepSegment x="1.451" y="-0.475"/> + <PolyStepSegment x="1.432" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.591" y="-0.450"/> + <PolyStepSegment x="1.615" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.734" y="-0.400"/> + <PolyStepSegment x="1.734" y="-0.475"/> + <PolyStepSegment x="1.772" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.475"/> + <PolyStepSegment x="1.845" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.434"/> + <PolyStepSegment x="1.841" y="-0.429"/> + <PolyStepSegment x="1.835" y="-0.426"/> + <PolyStepSegment x="1.829" y="-0.425"/> + <PolyStepSegment x="1.822" y="-0.428"/> + <PolyStepSegment x="1.817" y="-0.432"/> + <PolyStepSegment x="1.813" y="-0.440"/> + <PolyStepSegment x="1.811" y="-0.450"/> + <PolyStepSegment x="1.813" y="-0.460"/> + <PolyStepSegment x="1.817" y="-0.468"/> + <PolyStepSegment x="1.822" y="-0.473"/> + <PolyStepSegment x="1.829" y="-0.475"/> + <PolyStepSegment x="1.835" y="-0.474"/> + <PolyStepSegment x="1.841" y="-0.470"/> + <PolyStepSegment x="1.845" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.883" y="-0.497"/> + <PolyStepSegment x="1.889" y="-0.500"/> + <PolyStepSegment x="1.896" y="-0.497"/> + <PolyStepSegment x="1.901" y="-0.493"/> + <PolyStepSegment x="1.905" y="-0.486"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <PolyStepSegment x="1.923" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.893" y="-0.425"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.964" y="-0.441"/> + <PolyStepSegment x="1.994" y="-0.441"/> + <PolyStepSegment x="1.991" y="-0.432"/> + <PolyStepSegment x="1.986" y="-0.428"/> + <PolyStepSegment x="1.980" y="-0.425"/> + <PolyStepSegment x="1.973" y="-0.426"/> + <PolyStepSegment x="1.968" y="-0.430"/> + <PolyStepSegment x="1.964" y="-0.439"/> + <PolyStepSegment x="1.962" y="-0.446"/> + <PolyStepSegment x="1.962" y="-0.454"/> + <PolyStepSegment x="1.964" y="-0.461"/> + <PolyStepSegment x="1.969" y="-0.469"/> + <PolyStepSegment x="1.974" y="-0.474"/> + <PolyStepSegment x="1.981" y="-0.475"/> + <PolyStepSegment x="1.987" y="-0.473"/> + <PolyStepSegment x="1.994" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.475"/> + <PolyStepSegment x="2.040" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.435"/> + <PolyStepSegment x="2.045" y="-0.430"/> + <PolyStepSegment x="2.049" y="-0.426"/> + <PolyStepSegment x="2.056" y="-0.425"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.066" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.412"/> + <PolyStepSegment x="2.116" y="-0.405"/> + <PolyStepSegment x="2.122" y="-0.401"/> + <PolyStepSegment x="2.130" y="-0.400"/> + <PolyStepSegment x="2.139" y="-0.402"/> + <PolyStepSegment x="2.146" y="-0.409"/> + <PolyStepSegment x="2.148" y="-0.416"/> + <PolyStepSegment x="2.147" y="-0.424"/> + <PolyStepSegment x="2.143" y="-0.430"/> + <PolyStepSegment x="2.124" y="-0.443"/> + <PolyStepSegment x="2.116" y="-0.451"/> + <PolyStepSegment x="2.110" y="-0.464"/> + <PolyStepSegment x="2.108" y="-0.475"/> + <PolyStepSegment x="2.148" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="IS1"> + <Set> + <ColorRef id="COLOR_IS1"/> + </Set> + <Set net="UN1100E15168PQ10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.594" y="1.007"/> + <PolyStepSegment x="2.596" y="0.982"/> + <PolyStepSegment x="2.634" y="0.980"/> + <PolyStepSegment x="2.632" y="1.018"/> + <PolyStepSegment x="2.607" y="1.020"/> + <PolyStepCurve x="2.594" y="1.007" centerX="2.607000" centerY="1.007000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.632" startY="0.982" endX="2.500" endY="1.114"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.500" startY="1.114" endX="2.500" endY="1.425"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.500" startY="1.425" endX="2.375" endY="1.550"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.375" startY="1.550" endX="2.125" endY="1.550"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.125" startY="1.550" endX="2.100" endY="1.525"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.100" startY="1.525" endX="1.625" endY="1.525"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="1.625" startY="1.525" endX="1.572" endY="1.472"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.074" y="1.647"/> + <PolyStepSegment x="1.086" y="1.637"/> + <PolyStepSegment x="1.101" y="1.650"/> + <PolyStepSegment x="1.086" y="1.663"/> + <PolyStepSegment x="1.074" y="1.653"/> + <PolyStepCurve x="1.074" y="1.647" centerX="1.077000" centerY="1.650000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.084" y="1.649"/> + <PolyStepSegment x="0.069" y="1.643"/> + <PolyStepSegment x="0.075" y="1.624"/> + <PolyStepSegment x="0.093" y="1.631"/> + <PolyStepSegment x="0.089" y="1.646"/> + <PolyStepCurve x="0.084" y="1.649" centerX="0.085000" centerY="1.645000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="0.075" startY="1.625" endX="0.100" endY="1.675"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="0.100" startY="1.675" endX="0.375" endY="1.675"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="0.375" startY="1.675" endX="0.725" endY="1.675"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="0.725" startY="1.675" endX="0.975" endY="1.675"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="0.975" startY="1.675" endX="1.000" endY="1.650"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="1.000" startY="1.650" endX="1.100" endY="1.650"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="IS1 - Layer3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.292" y="-0.400"/> + <PolyStepSegment x="1.314" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.303" y="-0.400"/> + <PolyStepSegment x="1.303" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.292" y="-0.475"/> + <PolyStepSegment x="1.314" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.358" y="-0.465"/> + <PolyStepSegment x="1.366" y="-0.471"/> + <PolyStepSegment x="1.374" y="-0.475"/> + <PolyStepSegment x="1.382" y="-0.475"/> + <PolyStepSegment x="1.389" y="-0.471"/> + <PolyStepSegment x="1.395" y="-0.465"/> + <PolyStepSegment x="1.398" y="-0.456"/> + <PolyStepSegment x="1.396" y="-0.448"/> + <PolyStepSegment x="1.391" y="-0.440"/> + <PolyStepSegment x="1.383" y="-0.435"/> + <PolyStepSegment x="1.371" y="-0.432"/> + <PolyStepSegment x="1.365" y="-0.428"/> + <PolyStepSegment x="1.362" y="-0.419"/> + <PolyStepSegment x="1.364" y="-0.410"/> + <PolyStepSegment x="1.369" y="-0.404"/> + <PolyStepSegment x="1.375" y="-0.400"/> + <PolyStepSegment x="1.382" y="-0.400"/> + <PolyStepSegment x="1.388" y="-0.402"/> + <PolyStepSegment x="1.394" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.453" y="-0.475"/> + <PolyStepSegment x="1.453" y="-0.400"/> + <PolyStepSegment x="1.442" y="-0.415"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.442" y="-0.475"/> + <PolyStepSegment x="1.464" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.591" y="-0.450"/> + <PolyStepSegment x="1.615" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.734" y="-0.400"/> + <PolyStepSegment x="1.734" y="-0.475"/> + <PolyStepSegment x="1.772" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.475"/> + <PolyStepSegment x="1.845" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.434"/> + <PolyStepSegment x="1.841" y="-0.429"/> + <PolyStepSegment x="1.835" y="-0.426"/> + <PolyStepSegment x="1.829" y="-0.425"/> + <PolyStepSegment x="1.822" y="-0.428"/> + <PolyStepSegment x="1.817" y="-0.432"/> + <PolyStepSegment x="1.813" y="-0.440"/> + <PolyStepSegment x="1.811" y="-0.450"/> + <PolyStepSegment x="1.813" y="-0.460"/> + <PolyStepSegment x="1.817" y="-0.468"/> + <PolyStepSegment x="1.822" y="-0.473"/> + <PolyStepSegment x="1.829" y="-0.475"/> + <PolyStepSegment x="1.835" y="-0.474"/> + <PolyStepSegment x="1.841" y="-0.470"/> + <PolyStepSegment x="1.845" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.883" y="-0.497"/> + <PolyStepSegment x="1.889" y="-0.500"/> + <PolyStepSegment x="1.896" y="-0.497"/> + <PolyStepSegment x="1.901" y="-0.493"/> + <PolyStepSegment x="1.905" y="-0.486"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <PolyStepSegment x="1.923" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.893" y="-0.425"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.964" y="-0.441"/> + <PolyStepSegment x="1.994" y="-0.441"/> + <PolyStepSegment x="1.991" y="-0.432"/> + <PolyStepSegment x="1.986" y="-0.428"/> + <PolyStepSegment x="1.980" y="-0.425"/> + <PolyStepSegment x="1.973" y="-0.426"/> + <PolyStepSegment x="1.968" y="-0.430"/> + <PolyStepSegment x="1.964" y="-0.439"/> + <PolyStepSegment x="1.962" y="-0.446"/> + <PolyStepSegment x="1.962" y="-0.454"/> + <PolyStepSegment x="1.964" y="-0.461"/> + <PolyStepSegment x="1.969" y="-0.469"/> + <PolyStepSegment x="1.974" y="-0.474"/> + <PolyStepSegment x="1.981" y="-0.475"/> + <PolyStepSegment x="1.987" y="-0.473"/> + <PolyStepSegment x="1.994" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.475"/> + <PolyStepSegment x="2.040" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.435"/> + <PolyStepSegment x="2.045" y="-0.430"/> + <PolyStepSegment x="2.049" y="-0.426"/> + <PolyStepSegment x="2.056" y="-0.425"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.066" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.107" y="-0.460"/> + <PolyStepSegment x="2.113" y="-0.469"/> + <PolyStepSegment x="2.121" y="-0.474"/> + <PolyStepSegment x="2.129" y="-0.475"/> + <PolyStepSegment x="2.136" y="-0.474"/> + <PolyStepSegment x="2.144" y="-0.468"/> + <PolyStepSegment x="2.149" y="-0.460"/> + <PolyStepSegment x="2.149" y="-0.453"/> + <PolyStepSegment x="2.148" y="-0.444"/> + <PolyStepSegment x="2.141" y="-0.438"/> + <PolyStepSegment x="2.135" y="-0.435"/> + <PolyStepSegment x="2.126" y="-0.435"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.135" y="-0.435"/> + <PolyStepSegment x="2.140" y="-0.431"/> + <PolyStepSegment x="2.145" y="-0.425"/> + <PolyStepSegment x="2.147" y="-0.418"/> + <PolyStepSegment x="2.145" y="-0.410"/> + <PolyStepSegment x="2.140" y="-0.404"/> + <PolyStepSegment x="2.132" y="-0.400"/> + <PolyStepSegment x="2.123" y="-0.401"/> + <PolyStepSegment x="2.115" y="-0.406"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="IS2"> + <Set> + <ColorRef id="COLOR_IS2"/> + </Set> + <Set net="UN1DAC71PDAC3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.651" y="2.178"/> + <PolyStepSegment x="1.639" y="2.188"/> + <PolyStepSegment x="1.624" y="2.175"/> + <PolyStepSegment x="1.639" y="2.162"/> + <PolyStepSegment x="1.651" y="2.172"/> + <PolyStepCurve x="1.651" y="2.178" centerX="1.648000" centerY="2.175000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.678" y="2.699"/> + <PolyStepSegment x="1.688" y="2.711"/> + <PolyStepSegment x="1.675" y="2.726"/> + <PolyStepSegment x="1.662" y="2.711"/> + <PolyStepSegment x="1.672" y="2.699"/> + <PolyStepCurve x="1.678" y="2.699" centerX="1.675000" centerY="2.702000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.625" y="2.175"/> + <PolyStepSegment x="1.650" y="2.175"/> + <PolyStepCurve x="1.675" y="2.200" centerX="1.650000" centerY="2.200000" clockwise="false"/> + <PolyStepSegment x="1.675" y="2.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.576" y="2.719"/> + <PolyStepSegment x="1.600" y="2.725"/> + <PolyStepSegment x="1.601" y="2.725"/> + <PolyStepSegment x="1.582" y="2.730"/> + <PolyStepCurve x="1.572" y="2.721" centerX="1.562857" centerY="2.741214" clockwise="true"/> + <PolyStepSegment x="1.576" y="2.719"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.559" y="2.176"/> + <PolyStepSegment x="1.549" y="2.164"/> + <PolyStepSegment x="1.562" y="2.149"/> + <PolyStepSegment x="1.575" y="2.164"/> + <PolyStepSegment x="1.565" y="2.176"/> + <PolyStepCurve x="1.559" y="2.176" centerX="1.562000" centerY="2.173000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="2.725"/> + <PolyStepCurve x="1.550" y="2.675" centerX="1.600000" centerY="2.675000" clockwise="false"/> + <PolyStepSegment x="1.550" y="2.200"/> + <PolyStepSegment x="1.562" y="2.188"/> + <PolyStepSegment x="1.562" y="2.150"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="3.262" y="0.532"/> + <PolyStepSegment x="3.263" y="0.500"/> + <PolyStepSegment x="3.301" y="0.499"/> + <PolyStepSegment x="3.300" y="0.537"/> + <PolyStepSegment x="3.268" y="0.538"/> + <PolyStepCurve x="3.262" y="0.532" centerX="3.268000" centerY="0.532000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.579" y="2.501"/> + <PolyStepSegment x="2.589" y="2.511"/> + <PolyStepSegment x="2.575" y="2.526"/> + <PolyStepSegment x="2.561" y="2.511"/> + <PolyStepSegment x="2.571" y="2.501"/> + <PolyStepCurve x="2.579" y="2.501" centerX="2.575000" centerY="2.505000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.172" y="2.424"/> + <PolyStepCurve x="1.184" y="2.416" centerX="1.152500" centerY="2.381750" clockwise="true"/> + <PolyStepSegment x="1.201" y="2.425"/> + <PolyStepSegment x="1.185" y="2.436"/> + <PolyStepCurve x="1.172" y="2.429" centerX="1.172667" centerY="2.443333" clockwise="true"/> + <PolyStepCurve x="1.172" y="2.424" centerX="1.175057" centerY="2.426500" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.834" y="2.880"/> + <PolyStepSegment x="0.850" y="2.880"/> + <PolyStepSegment x="0.851" y="2.901"/> + <PolyStepSegment x="0.830" y="2.900"/> + <PolyStepSegment x="0.830" y="2.884"/> + <PolyStepCurve x="0.834" y="2.880" centerX="0.834000" centerY="2.884000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.850" y="2.900"/> + <PolyStepSegment x="0.825" y="2.875"/> + <PolyStepCurve x="0.825" y="2.475" centerX="1.025000" centerY="2.675000" clockwise="false"/> + <PolyStepSegment x="0.875" y="2.425"/> + <PolyStepCurve x="0.950" y="2.425" centerX="0.912500" centerY="2.462500" clockwise="false"/> + <PolyStepSegment x="1.000" y="2.475"/> + <PolyStepCurve x="1.075" y="2.475" centerX="1.037500" centerY="2.437500" clockwise="true"/> + <PolyStepCurve x="1.196" y="2.425" centerX="1.195839" centerY="2.596020" clockwise="false"/> + <PolyStepSegment x="1.200" y="2.425"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.575" startY="2.525" endX="2.575" endY="2.425"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.575" startY="2.425" endX="2.575" endY="2.325"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.575" startY="2.325" endX="2.575" endY="2.250"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.575" startY="2.250" endX="2.525" endY="2.200"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.525" startY="2.200" endX="2.525" endY="1.800"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.525" startY="1.800" endX="2.625" endY="1.700"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.625" startY="1.700" endX="2.625" endY="1.425"> + <LineDescRef id="ROUND_25"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.625" startY="1.425" endX="2.625" endY="1.100"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.625" startY="1.100" endX="2.850" endY="0.875"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.850" startY="0.875" endX="2.850" endY="0.750"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="2.850" startY="0.750" endX="3.000" endY="0.600"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="3.000" startY="0.600" endX="3.200" endY="0.600"> + <LineDescRef id="ROUND_8"/> + </Line> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Line startX="3.200" startY="0.600" endX="3.300" endY="0.500"> + <LineDescRef id="ROUND_12"/> + </Line> + </Features> + </Set> + <Set net="B6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.250" y="2.062"/> + <PolyStepSegment x="2.275" y="2.064"/> + <PolyStepSegment x="2.277" y="2.102"/> + <PolyStepSegment x="2.238" y="2.100"/> + <PolyStepSegment x="2.238" y="2.075"/> + <PolyStepCurve x="2.250" y="2.062" centerX="2.251042" centerY="2.075000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.895" y="1.909"/> + <PolyStepSegment x="1.895" y="1.925"/> + <PolyStepSegment x="1.874" y="1.926"/> + <PolyStepSegment x="1.875" y="1.905"/> + <PolyStepSegment x="1.891" y="1.905"/> + <PolyStepCurve x="1.895" y="1.909" centerX="1.891000" centerY="1.909000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.872" y="0.751"/> + <PolyStepSegment x="1.862" y="0.739"/> + <PolyStepSegment x="1.875" y="0.724"/> + <PolyStepSegment x="1.888" y="0.739"/> + <PolyStepSegment x="1.878" y="0.751"/> + <PolyStepCurve x="1.872" y="0.751" centerX="1.875000" centerY="0.748000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="1.925"/> + <PolyStepSegment x="2.100" y="1.925"/> + <PolyStepSegment x="2.275" y="2.100"/> + <LineDescRef id="ROUND_25"/> + </Polyline> + </Features> + </Set> + <Set net="B6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="0.725"/> + <PolyStepSegment x="1.875" y="0.825"/> + <PolyStepSegment x="2.050" y="1.000"/> + <PolyStepSegment x="2.050" y="1.750"/> + <PolyStepSegment x="1.875" y="1.925"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.172" y="0.851"/> + <PolyStepSegment x="2.162" y="0.839"/> + <PolyStepSegment x="2.175" y="0.824"/> + <PolyStepSegment x="2.188" y="0.839"/> + <PolyStepSegment x="2.178" y="0.851"/> + <PolyStepCurve x="2.172" y="0.851" centerX="2.175000" centerY="0.848000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.242" y="1.751"/> + <PolyStepSegment x="2.275" y="1.752"/> + <PolyStepSegment x="2.276" y="1.789"/> + <PolyStepSegment x="2.239" y="1.788"/> + <PolyStepSegment x="2.238" y="1.755"/> + <PolyStepCurve x="2.242" y="1.751" centerX="2.242000" centerY="1.755000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.275" y="1.788"/> + <PolyStepSegment x="2.200" y="1.713"/> + <PolyStepSegment x="2.200" y="0.975"/> + <PolyStepSegment x="2.175" y="0.950"/> + <PolyStepSegment x="2.175" y="0.825"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.722" y="0.776"/> + <PolyStepSegment x="1.712" y="0.764"/> + <PolyStepSegment x="1.725" y="0.749"/> + <PolyStepSegment x="1.738" y="0.764"/> + <PolyStepSegment x="1.728" y="0.776"/> + <PolyStepCurve x="1.722" y="0.776" centerX="1.725000" centerY="0.773000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.562" y="1.584"/> + <PolyStepSegment x="1.562" y="1.600"/> + <PolyStepSegment x="1.541" y="1.601"/> + <PolyStepSegment x="1.542" y="1.580"/> + <PolyStepSegment x="1.558" y="1.580"/> + <PolyStepCurve x="1.562" y="1.584" centerX="1.558000" centerY="1.584000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.725" y="0.750"/> + <PolyStepSegment x="1.725" y="0.900"/> + <PolyStepSegment x="1.675" y="0.950"/> + <PolyStepSegment x="1.675" y="0.975"/> + <PolyStepSegment x="1.700" y="1.000"/> + <PolyStepSegment x="1.725" y="1.000"/> + <PolyStepSegment x="1.750" y="0.975"/> + <PolyStepSegment x="1.775" y="0.975"/> + <PolyStepSegment x="1.800" y="1.000"/> + <PolyStepSegment x="1.850" y="1.000"/> + <PolyStepSegment x="1.875" y="0.975"/> + <PolyStepSegment x="1.917" y="0.975"/> + <PolyStepSegment x="1.925" y="0.983"/> + <PolyStepSegment x="1.925" y="1.050"/> + <PolyStepSegment x="1.900" y="1.075"/> + <PolyStepSegment x="1.875" y="1.075"/> + <PolyStepSegment x="1.850" y="1.050"/> + <PolyStepSegment x="1.825" y="1.050"/> + <PolyStepSegment x="1.800" y="1.075"/> + <PolyStepSegment x="1.775" y="1.075"/> + <PolyStepSegment x="1.750" y="1.050"/> + <PolyStepSegment x="1.650" y="1.050"/> + <PolyStepSegment x="1.625" y="1.075"/> + <PolyStepSegment x="1.625" y="1.517"/> + <PolyStepSegment x="1.542" y="1.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.986" y="3.280"/> + <PolyStepSegment x="2.000" y="3.280"/> + <PolyStepSegment x="2.001" y="3.301"/> + <PolyStepSegment x="1.980" y="3.300"/> + <PolyStepSegment x="1.980" y="3.286"/> + <PolyStepCurve x="1.986" y="3.280" centerX="1.986000" centerY="3.286000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.846" y="2.599"/> + <PolyStepSegment x="1.836" y="2.589"/> + <PolyStepSegment x="1.850" y="2.574"/> + <PolyStepSegment x="1.864" y="2.589"/> + <PolyStepSegment x="1.854" y="2.599"/> + <PolyStepCurve x="1.846" y="2.599" centerX="1.850000" centerY="2.595000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.000" y="3.300"/> + <PolyStepSegment x="1.925" y="3.225"/> + <PolyStepSegment x="1.925" y="3.050"/> + <PolyStepSegment x="1.841" y="2.966"/> + <PolyStepSegment x="1.841" y="2.760"/> + <PolyStepSegment x="1.850" y="2.751"/> + <PolyStepSegment x="1.850" y="2.575"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.536" y="3.055"/> + <PolyStepSegment x="1.550" y="3.055"/> + <PolyStepSegment x="1.551" y="3.076"/> + <PolyStepSegment x="1.530" y="3.075"/> + <PolyStepSegment x="1.530" y="3.061"/> + <PolyStepCurve x="1.536" y="3.055" centerX="1.536000" centerY="3.061000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.496" y="2.624"/> + <PolyStepSegment x="1.486" y="2.614"/> + <PolyStepSegment x="1.500" y="2.598"/> + <PolyStepSegment x="1.514" y="2.614"/> + <PolyStepSegment x="1.504" y="2.624"/> + <PolyStepCurve x="1.496" y="2.624" centerX="1.500000" centerY="2.620000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="2.600"/> + <PolyStepSegment x="1.500" y="3.025"/> + <PolyStepSegment x="1.550" y="3.075"/> + <LineDescRef id="ROUND_12"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="IS2 - Layer4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.292" y="-0.400"/> + <PolyStepSegment x="1.314" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.303" y="-0.400"/> + <PolyStepSegment x="1.303" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.292" y="-0.475"/> + <PolyStepSegment x="1.314" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.358" y="-0.465"/> + <PolyStepSegment x="1.366" y="-0.471"/> + <PolyStepSegment x="1.374" y="-0.475"/> + <PolyStepSegment x="1.382" y="-0.475"/> + <PolyStepSegment x="1.389" y="-0.471"/> + <PolyStepSegment x="1.395" y="-0.465"/> + <PolyStepSegment x="1.398" y="-0.456"/> + <PolyStepSegment x="1.396" y="-0.448"/> + <PolyStepSegment x="1.391" y="-0.440"/> + <PolyStepSegment x="1.383" y="-0.435"/> + <PolyStepSegment x="1.371" y="-0.432"/> + <PolyStepSegment x="1.365" y="-0.428"/> + <PolyStepSegment x="1.362" y="-0.419"/> + <PolyStepSegment x="1.364" y="-0.410"/> + <PolyStepSegment x="1.369" y="-0.404"/> + <PolyStepSegment x="1.375" y="-0.400"/> + <PolyStepSegment x="1.382" y="-0.400"/> + <PolyStepSegment x="1.388" y="-0.402"/> + <PolyStepSegment x="1.394" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.435" y="-0.412"/> + <PolyStepSegment x="1.441" y="-0.405"/> + <PolyStepSegment x="1.447" y="-0.401"/> + <PolyStepSegment x="1.455" y="-0.400"/> + <PolyStepSegment x="1.464" y="-0.402"/> + <PolyStepSegment x="1.471" y="-0.409"/> + <PolyStepSegment x="1.473" y="-0.416"/> + <PolyStepSegment x="1.472" y="-0.424"/> + <PolyStepSegment x="1.468" y="-0.430"/> + <PolyStepSegment x="1.449" y="-0.443"/> + <PolyStepSegment x="1.441" y="-0.451"/> + <PolyStepSegment x="1.435" y="-0.464"/> + <PolyStepSegment x="1.433" y="-0.475"/> + <PolyStepSegment x="1.473" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.591" y="-0.450"/> + <PolyStepSegment x="1.615" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.734" y="-0.400"/> + <PolyStepSegment x="1.734" y="-0.475"/> + <PolyStepSegment x="1.772" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.475"/> + <PolyStepSegment x="1.845" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.434"/> + <PolyStepSegment x="1.841" y="-0.429"/> + <PolyStepSegment x="1.835" y="-0.426"/> + <PolyStepSegment x="1.829" y="-0.425"/> + <PolyStepSegment x="1.822" y="-0.428"/> + <PolyStepSegment x="1.817" y="-0.432"/> + <PolyStepSegment x="1.813" y="-0.440"/> + <PolyStepSegment x="1.811" y="-0.450"/> + <PolyStepSegment x="1.813" y="-0.460"/> + <PolyStepSegment x="1.817" y="-0.468"/> + <PolyStepSegment x="1.822" y="-0.473"/> + <PolyStepSegment x="1.829" y="-0.475"/> + <PolyStepSegment x="1.835" y="-0.474"/> + <PolyStepSegment x="1.841" y="-0.470"/> + <PolyStepSegment x="1.845" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.883" y="-0.497"/> + <PolyStepSegment x="1.889" y="-0.500"/> + <PolyStepSegment x="1.896" y="-0.497"/> + <PolyStepSegment x="1.901" y="-0.493"/> + <PolyStepSegment x="1.905" y="-0.486"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <PolyStepSegment x="1.923" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.893" y="-0.425"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.964" y="-0.441"/> + <PolyStepSegment x="1.994" y="-0.441"/> + <PolyStepSegment x="1.991" y="-0.432"/> + <PolyStepSegment x="1.986" y="-0.428"/> + <PolyStepSegment x="1.980" y="-0.425"/> + <PolyStepSegment x="1.973" y="-0.426"/> + <PolyStepSegment x="1.968" y="-0.430"/> + <PolyStepSegment x="1.964" y="-0.439"/> + <PolyStepSegment x="1.962" y="-0.446"/> + <PolyStepSegment x="1.962" y="-0.454"/> + <PolyStepSegment x="1.964" y="-0.461"/> + <PolyStepSegment x="1.969" y="-0.469"/> + <PolyStepSegment x="1.974" y="-0.474"/> + <PolyStepSegment x="1.981" y="-0.475"/> + <PolyStepSegment x="1.987" y="-0.473"/> + <PolyStepSegment x="1.994" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.475"/> + <PolyStepSegment x="2.040" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.435"/> + <PolyStepSegment x="2.045" y="-0.430"/> + <PolyStepSegment x="2.049" y="-0.426"/> + <PolyStepSegment x="2.056" y="-0.425"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.066" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.139" y="-0.475"/> + <PolyStepSegment x="2.139" y="-0.400"/> + <PolyStepSegment x="2.105" y="-0.454"/> + <PolyStepSegment x="2.151" y="-0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="VCC"> + <Set> + <ColorRef id="COLOR_VCC"/> + </Set> + <Set net="VCC"> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.116" y="0.050"/> + <PolyStepCurve x="0.050" y="0.116" centerX="0.0" centerY="0.0" clockwise="false"/> + <PolyStepSegment x="0.050" y="1.087"/> + <PolyStepSegment x="1.987" y="1.087"/> + <PolyStepSegment x="1.987" y="0.050"/> + <PolyStepSegment x="0.116" y="0.050"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + <Cutout> + <PolyBegin x="1.571" y="0.888"/> + <PolyStepCurve x="1.568" y="0.894" centerX="1.567364" centerY="0.889932" clockwise="false"/> + <PolyStepCurve x="1.604" y="0.912" centerX="1.575000" centerY="0.925000" clockwise="true"/> + <PolyStepCurve x="1.607" y="0.906" centerX="1.607636" centerY="0.910068" clockwise="false"/> + <PolyStepCurve x="1.571" y="0.888" centerX="1.600000" centerY="0.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.903" y="0.702"/> + <PolyStepCurve x="1.897" y="0.702" centerX="1.900000" centerY="0.699140" clockwise="false"/> + <PolyStepCurve x="1.897" y="0.748" centerX="1.875000" centerY="0.725000" clockwise="true"/> + <PolyStepCurve x="1.903" y="0.748" centerX="1.900000" centerY="0.750860" clockwise="false"/> + <PolyStepCurve x="1.903" y="0.702" centerX="1.925000" centerY="0.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.182" y="0.800"/> + <PolyStepCurve x="0.118" y="0.800" centerX="0.150000" centerY="0.800000" clockwise="true"/> + <PolyStepCurve x="0.182" y="0.800" centerX="0.150000" centerY="0.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.257" y="0.975"/> + <PolyStepCurve x="0.193" y="0.975" centerX="0.225000" centerY="0.975000" clockwise="true"/> + <PolyStepCurve x="0.257" y="0.975" centerX="0.225000" centerY="0.975000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.532" y="0.750"/> + <PolyStepCurve x="0.468" y="0.750" centerX="0.500000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="0.532" y="0.750" centerX="0.500000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.982" y="0.400"/> + <PolyStepCurve x="0.918" y="0.400" centerX="0.950000" centerY="0.400000" clockwise="true"/> + <PolyStepCurve x="0.982" y="0.400" centerX="0.950000" centerY="0.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="0.275"/> + <PolyStepCurve x="1.068" y="0.275" centerX="1.100000" centerY="0.275000" clockwise="true"/> + <PolyStepCurve x="1.132" y="0.275" centerX="1.100000" centerY="0.275000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="0.750"/> + <PolyStepCurve x="1.068" y="0.750" centerX="1.100000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="1.132" y="0.750" centerX="1.100000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="0.225"/> + <PolyStepCurve x="1.368" y="0.225" centerX="1.400000" centerY="0.225000" clockwise="true"/> + <PolyStepCurve x="1.432" y="0.225" centerX="1.400000" centerY="0.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.482" y="0.350"/> + <PolyStepCurve x="1.418" y="0.350" centerX="1.450000" centerY="0.350000" clockwise="true"/> + <PolyStepCurve x="1.482" y="0.350" centerX="1.450000" centerY="0.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="0.225"/> + <PolyStepCurve x="1.518" y="0.225" centerX="1.550000" centerY="0.225000" clockwise="true"/> + <PolyStepCurve x="1.582" y="0.225" centerX="1.550000" centerY="0.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.557" y="0.150"/> + <PolyStepCurve x="1.493" y="0.150" centerX="1.525000" centerY="0.150000" clockwise="true"/> + <PolyStepCurve x="1.557" y="0.150" centerX="1.525000" centerY="0.150000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.425"/> + <PolyStepCurve x="1.468" y="0.425" centerX="1.500000" centerY="0.425000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.425" centerX="1.500000" centerY="0.425000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.675"/> + <PolyStepCurve x="1.468" y="0.675" centerX="1.500000" centerY="0.675000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.675" centerX="1.500000" centerY="0.675000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="0.525"/> + <PolyStepCurve x="1.518" y="0.525" centerX="1.550000" centerY="0.525000" clockwise="true"/> + <PolyStepCurve x="1.582" y="0.525" centerX="1.550000" centerY="0.525000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="0.600"/> + <PolyStepCurve x="1.468" y="0.600" centerX="1.500000" centerY="0.600000" clockwise="true"/> + <PolyStepCurve x="1.532" y="0.600" centerX="1.500000" centerY="0.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.407" y="0.725"/> + <PolyStepCurve x="1.343" y="0.725" centerX="1.375000" centerY="0.725000" clockwise="true"/> + <PolyStepCurve x="1.407" y="0.725" centerX="1.375000" centerY="0.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.357" y="0.875"/> + <PolyStepCurve x="1.293" y="0.875" centerX="1.325000" centerY="0.875000" clockwise="true"/> + <PolyStepCurve x="1.357" y="0.875" centerX="1.325000" centerY="0.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="0.475"/> + <PolyStepCurve x="1.618" y="0.475" centerX="1.650000" centerY="0.475000" clockwise="true"/> + <PolyStepCurve x="1.682" y="0.475" centerX="1.650000" centerY="0.475000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.757" y="0.750"/> + <PolyStepCurve x="1.693" y="0.750" centerX="1.725000" centerY="0.750000" clockwise="true"/> + <PolyStepCurve x="1.757" y="0.750" centerX="1.725000" centerY="0.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.832" y="0.875"/> + <PolyStepCurve x="1.768" y="0.875" centerX="1.800000" centerY="0.875000" clockwise="true"/> + <PolyStepCurve x="1.832" y="0.875" centerX="1.800000" centerY="0.875000" clockwise="true"/> + </Cutout> + </Contour> + </Features> + </Set> + <Set net="VEE"> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.075" y="-0.075"/> + <PolyStepSegment x="2.000" y="0.0"/> + <PolyStepSegment x="2.000" y="0.478"/> + <PolyStepCurve x="2.008" y="0.480" centerX="2.004057" centerY="0.478773" clockwise="true"/> + <PolyStepCurve x="2.008" y="0.520" centerX="2.050000" centerY="0.500000" clockwise="false"/> + <PolyStepCurve x="2.000" y="0.522" centerX="2.004057" centerY="0.521227" clockwise="true"/> + <PolyStepSegment x="2.000" y="1.113"/> + <PolyStepSegment x="0.075" y="1.113"/> + <PolyStepSegment x="-0.075" y="1.263"/> + <PolyStepSegment x="-0.075" y="2.541"/> + <PolyStepCurve x="-0.070" y="2.544" centerX="-0.071230" centerY="2.540383" clockwise="true"/> + <PolyStepCurve x="-0.070" y="2.656" centerX="-0.050000" centerY="2.600000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.659" centerX="-0.071230" centerY="2.659617" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.766"/> + <PolyStepCurve x="-0.069" y="2.769" centerX="-0.071155" centerY="2.765809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="2.831" centerX="-0.050000" centerY="2.800000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.834" centerX="-0.071155" centerY="2.834191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.866"/> + <PolyStepCurve x="-0.069" y="2.869" centerX="-0.071155" centerY="2.865809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="2.931" centerX="-0.050000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="2.934" centerX="-0.071155" centerY="2.934191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="2.966"/> + <PolyStepCurve x="-0.069" y="2.969" centerX="-0.071155" centerY="2.965809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="3.031" centerX="-0.050000" centerY="3.000000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.034" centerX="-0.071155" centerY="3.034191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.066"/> + <PolyStepCurve x="-0.069" y="3.069" centerX="-0.071155" centerY="3.065809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="3.131" centerX="-0.050000" centerY="3.100000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.134" centerX="-0.071155" centerY="3.134191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.166"/> + <PolyStepCurve x="-0.069" y="3.169" centerX="-0.071155" centerY="3.165809" clockwise="true"/> + <PolyStepCurve x="-0.069" y="3.231" centerX="-0.050000" centerY="3.200000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.234" centerX="-0.071155" centerY="3.234191" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.341"/> + <PolyStepCurve x="-0.070" y="3.344" centerX="-0.071230" centerY="3.340383" clockwise="true"/> + <PolyStepCurve x="-0.070" y="3.456" centerX="-0.050000" centerY="3.400000" clockwise="false"/> + <PolyStepCurve x="-0.075" y="3.459" centerX="-0.071230" centerY="3.459617" clockwise="true"/> + <PolyStepSegment x="-0.075" y="3.899"/> + <PolyStepSegment x="0.201" y="3.899"/> + <PolyStepSegment x="0.201" y="3.975"/> + <PolyStepSegment x="1.899" y="3.975"/> + <PolyStepSegment x="1.899" y="3.951"/> + <PolyStepSegment x="1.699" y="3.951"/> + <PolyStepSegment x="1.699" y="3.899"/> + <PolyStepSegment x="2.001" y="3.899"/> + <PolyStepSegment x="2.001" y="3.951"/> + <PolyStepSegment x="1.951" y="3.951"/> + <PolyStepSegment x="1.951" y="3.975"/> + <PolyStepSegment x="2.500" y="3.975"/> + <PolyStepSegment x="3.125" y="3.875"/> + <PolyStepSegment x="3.475" y="3.875"/> + <PolyStepSegment x="3.525" y="3.825"/> + <PolyStepSegment x="3.525" y="3.651"/> + <PolyStepSegment x="3.150" y="3.651"/> + <PolyStepSegment x="3.049" y="3.550"/> + <PolyStepSegment x="3.049" y="3.301"/> + <PolyStepSegment x="2.999" y="3.301"/> + <PolyStepSegment x="2.999" y="3.099"/> + <PolyStepSegment x="3.199" y="3.099"/> + <PolyStepSegment x="3.199" y="3.000"/> + <PolyStepSegment x="3.150" y="2.951"/> + <PolyStepSegment x="2.850" y="2.951"/> + <PolyStepSegment x="2.799" y="2.900"/> + <PolyStepSegment x="2.799" y="2.850"/> + <PolyStepSegment x="3.099" y="2.550"/> + <PolyStepSegment x="3.099" y="2.501"/> + <PolyStepSegment x="2.850" y="2.501"/> + <PolyStepSegment x="2.799" y="2.450"/> + <PolyStepSegment x="2.799" y="2.350"/> + <PolyStepSegment x="2.850" y="2.299"/> + <PolyStepSegment x="3.149" y="2.299"/> + <PolyStepSegment x="3.149" y="2.250"/> + <PolyStepSegment x="2.849" y="2.000"/> + <PolyStepSegment x="2.849" y="1.950"/> + <PolyStepCurve x="2.950" y="1.849" centerX="2.925000" centerY="1.925000" clockwise="false"/> + <PolyStepSegment x="3.269" y="2.076"/> + <PolyStepCurve x="3.275" y="2.073" centerX="3.271186" centerY="2.072873" clockwise="true"/> + <PolyStepSegment x="3.275" y="1.425"/> + <PolyStepSegment x="3.525" y="1.175"/> + <PolyStepSegment x="3.525" y="1.098"/> + <PolyStepCurve x="3.518" y="1.096" centerX="3.521084" centerY="1.098457" clockwise="true"/> + <PolyStepCurve x="3.518" y="0.704" centerX="3.300000" centerY="0.900000" clockwise="false"/> + <PolyStepCurve x="3.525" y="0.702" centerX="3.521084" centerY="0.701543" clockwise="true"/> + <PolyStepSegment x="3.525" y="0.575"/> + <PolyStepSegment x="3.375" y="0.425"/> + <PolyStepSegment x="3.375" y="0.075"/> + <PolyStepSegment x="3.225" y="-0.075"/> + <PolyStepSegment x="3.109" y="-0.075"/> + <PolyStepCurve x="3.106" y="-0.069" centerX="3.109148" centerY="-0.071176" clockwise="true"/> + <PolyStepCurve x="2.894" y="-0.069" centerX="3.000000" centerY="0.0" clockwise="false"/> + <PolyStepCurve x="2.891" y="-0.075" centerX="2.890852" centerY="-0.071176" clockwise="true"/> + <PolyStepSegment x="2.075" y="-0.075"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + <Cutout> + <PolyBegin x="0.668" y="3.381"/> + <PolyStepCurve x="0.671" y="3.387" centerX="0.667364" centerY="3.385068" clockwise="false"/> + <PolyStepCurve x="0.707" y="3.369" centerX="0.700000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="0.704" y="3.363" centerX="0.707636" centerY="3.364932" clockwise="false"/> + <PolyStepCurve x="0.668" y="3.381" centerX="0.675000" centerY="3.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.828" y="3.052"/> + <PolyStepCurve x="1.822" y="3.052" centerX="1.825000" centerY="3.049140" clockwise="false"/> + <PolyStepCurve x="1.822" y="3.098" centerX="1.800000" centerY="3.075000" clockwise="true"/> + <PolyStepCurve x="1.828" y="3.098" centerX="1.825000" centerY="3.100860" clockwise="false"/> + <PolyStepCurve x="1.828" y="3.052" centerX="1.850000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.581" y="3.082"/> + <PolyStepCurve x="1.587" y="3.079" centerX="1.585124" centerY="3.082748" clockwise="false"/> + <PolyStepCurve x="1.569" y="3.043" centerX="1.600000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.563" y="3.046" centerX="1.564876" centerY="3.042252" clockwise="false"/> + <PolyStepCurve x="1.581" y="3.082" centerX="1.550000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.144" y="2.997"/> + <PolyStepCurve x="1.151" y="2.996" centerX="1.147742" centerY="2.998196" clockwise="false"/> + <PolyStepCurve x="1.144" y="2.966" centerX="1.174878" centerY="2.974612" clockwise="true"/> + <PolyStepCurve x="1.137" y="2.967" centerX="1.140258" centerY="2.964804" clockwise="false"/> + <PolyStepCurve x="1.144" y="2.997" centerX="1.113122" centerY="2.988388" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.596" y="2.688"/> + <PolyStepCurve x="1.593" y="2.694" centerX="1.592364" centerY="2.689932" clockwise="false"/> + <PolyStepCurve x="1.629" y="2.712" centerX="1.600000" centerY="2.725000" clockwise="true"/> + <PolyStepCurve x="1.632" y="2.706" centerX="1.632636" centerY="2.710068" clockwise="false"/> + <PolyStepCurve x="1.596" y="2.688" centerX="1.625000" centerY="2.675000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.929" y="2.687"/> + <PolyStepCurve x="1.932" y="2.681" centerX="1.932636" centerY="2.685068" clockwise="false"/> + <PolyStepCurve x="1.896" y="2.663" centerX="1.925000" centerY="2.650000" clockwise="true"/> + <PolyStepCurve x="1.893" y="2.669" centerX="1.892364" centerY="2.664932" clockwise="false"/> + <PolyStepCurve x="1.929" y="2.687" centerX="1.900000" centerY="2.700000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.346" y="2.563"/> + <PolyStepCurve x="1.343" y="2.569" centerX="1.342364" centerY="2.564932" clockwise="false"/> + <PolyStepCurve x="1.379" y="2.587" centerX="1.350000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.382" y="2.581" centerX="1.382636" centerY="2.585068" clockwise="false"/> + <PolyStepCurve x="1.346" y="2.563" centerX="1.375000" centerY="2.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.743" y="2.356"/> + <PolyStepCurve x="1.746" y="2.362" centerX="1.742364" centerY="2.360068" clockwise="false"/> + <PolyStepCurve x="1.782" y="2.344" centerX="1.775000" centerY="2.375000" clockwise="true"/> + <PolyStepCurve x="1.779" y="2.338" centerX="1.782636" centerY="2.339932" clockwise="false"/> + <PolyStepCurve x="1.743" y="2.356" centerX="1.750000" centerY="2.325000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.071" y="1.888"/> + <PolyStepCurve x="0.068" y="1.894" centerX="0.067364" centerY="1.889932" clockwise="false"/> + <PolyStepCurve x="0.104" y="1.912" centerX="0.075000" centerY="1.925000" clockwise="true"/> + <PolyStepCurve x="0.107" y="1.906" centerX="0.107636" centerY="1.910068" clockwise="false"/> + <PolyStepCurve x="0.071" y="1.888" centerX="0.100000" centerY="1.875000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.731" y="1.232"/> + <PolyStepCurve x="1.737" y="1.229" centerX="1.735068" centerY="1.232636" clockwise="false"/> + <PolyStepCurve x="1.719" y="1.193" centerX="1.750000" centerY="1.200000" clockwise="true"/> + <PolyStepCurve x="1.713" y="1.196" centerX="1.714932" centerY="1.192364" clockwise="false"/> + <PolyStepCurve x="1.731" y="1.232" centerX="1.700000" centerY="1.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.102" y="3.800"/> + <PolyStepCurve x="-0.002" y="3.800" centerX="0.050000" centerY="3.800000" clockwise="true"/> + <PolyStepCurve x="0.102" y="3.800" centerX="0.050000" centerY="3.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.902" y="3.800"/> + <PolyStepCurve x="1.798" y="3.800" centerX="1.850000" centerY="3.800000" clockwise="true"/> + <PolyStepCurve x="1.902" y="3.800" centerX="1.850000" centerY="3.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.127" y="3.750"/> + <PolyStepCurve x="2.873" y="3.750" centerX="3.000000" centerY="3.750000" clockwise="true"/> + <PolyStepCurve x="3.127" y="3.750" centerX="3.000000" centerY="3.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.107" y="1.625"/> + <PolyStepCurve x="0.043" y="1.625" centerX="0.075000" centerY="1.625000" clockwise="true"/> + <PolyStepCurve x="0.107" y="1.625" centerX="0.075000" centerY="1.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.082" y="2.300"/> + <PolyStepCurve x="0.018" y="2.300" centerX="0.050000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="0.082" y="2.300" centerX="0.050000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="2.800"/> + <PolyStepCurve x="0.014" y="2.800" centerX="0.050000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="0.086" y="2.800" centerX="0.050000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="3.100"/> + <PolyStepCurve x="0.014" y="3.100" centerX="0.050000" centerY="3.100000" clockwise="true"/> + <PolyStepCurve x="0.086" y="3.100" centerX="0.050000" centerY="3.100000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="3.000"/> + <PolyStepCurve x="0.014" y="3.000" centerX="0.050000" centerY="3.000000" clockwise="true"/> + <PolyStepCurve x="0.086" y="3.000" centerX="0.050000" centerY="3.000000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="2.900"/> + <PolyStepCurve x="0.014" y="2.900" centerX="0.050000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="0.086" y="2.900" centerX="0.050000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.086" y="3.200"/> + <PolyStepCurve x="0.014" y="3.200" centerX="0.050000" centerY="3.200000" clockwise="true"/> + <PolyStepCurve x="0.086" y="3.200" centerX="0.050000" centerY="3.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.432" y="3.300"/> + <PolyStepCurve x="0.368" y="3.300" centerX="0.400000" centerY="3.300000" clockwise="true"/> + <PolyStepCurve x="0.432" y="3.300" centerX="0.400000" centerY="3.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.357" y="3.725"/> + <PolyStepCurve x="0.293" y="3.725" centerX="0.325000" centerY="3.725000" clockwise="true"/> + <PolyStepCurve x="0.357" y="3.725" centerX="0.325000" centerY="3.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.632" y="2.275"/> + <PolyStepCurve x="0.568" y="2.275" centerX="0.600000" centerY="2.275000" clockwise="true"/> + <PolyStepCurve x="0.632" y="2.275" centerX="0.600000" centerY="2.275000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.582" y="3.075"/> + <PolyStepCurve x="0.518" y="3.075" centerX="0.550000" centerY="3.075000" clockwise="true"/> + <PolyStepCurve x="0.582" y="3.075" centerX="0.550000" centerY="3.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.532" y="3.250"/> + <PolyStepCurve x="0.468" y="3.250" centerX="0.500000" centerY="3.250000" clockwise="true"/> + <PolyStepCurve x="0.532" y="3.250" centerX="0.500000" centerY="3.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.582" y="3.450"/> + <PolyStepCurve x="0.518" y="3.450" centerX="0.550000" centerY="3.450000" clockwise="true"/> + <PolyStepCurve x="0.582" y="3.450" centerX="0.550000" centerY="3.450000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.888" y="2.200"/> + <PolyStepCurve x="0.824" y="2.200" centerX="0.856000" centerY="2.200000" clockwise="true"/> + <PolyStepCurve x="0.888" y="2.200" centerX="0.856000" centerY="2.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.957" y="2.225"/> + <PolyStepCurve x="0.893" y="2.225" centerX="0.925000" centerY="2.225000" clockwise="true"/> + <PolyStepCurve x="0.957" y="2.225" centerX="0.925000" centerY="2.225000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.882" y="2.900"/> + <PolyStepCurve x="0.818" y="2.900" centerX="0.850000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="0.882" y="2.900" centerX="0.850000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="0.807" y="3.350"/> + <PolyStepCurve x="0.743" y="3.350" centerX="0.775000" centerY="3.350000" clockwise="true"/> + <PolyStepCurve x="0.807" y="3.350" centerX="0.775000" centerY="3.350000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="1.650"/> + <PolyStepCurve x="1.068" y="1.650" centerX="1.100000" centerY="1.650000" clockwise="true"/> + <PolyStepCurve x="1.132" y="1.650" centerX="1.100000" centerY="1.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.232" y="2.425"/> + <PolyStepCurve x="1.168" y="2.425" centerX="1.200000" centerY="2.425000" clockwise="true"/> + <PolyStepCurve x="1.232" y="2.425" centerX="1.200000" centerY="2.425000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.057" y="3.000"/> + <PolyStepCurve x="0.993" y="3.000" centerX="1.025000" centerY="3.000000" clockwise="true"/> + <PolyStepCurve x="1.057" y="3.000" centerX="1.025000" centerY="3.000000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.257" y="3.050"/> + <PolyStepCurve x="1.193" y="3.050" centerX="1.225000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.257" y="3.050" centerX="1.225000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.145" y="3.063"/> + <PolyStepCurve x="1.081" y="3.063" centerX="1.113000" centerY="3.063000" clockwise="true"/> + <PolyStepCurve x="1.145" y="3.063" centerX="1.113000" centerY="3.063000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="3.200"/> + <PolyStepCurve x="1.068" y="3.200" centerX="1.100000" centerY="3.200000" clockwise="true"/> + <PolyStepCurve x="1.132" y="3.200" centerX="1.100000" centerY="3.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.232" y="3.400"/> + <PolyStepCurve x="1.168" y="3.400" centerX="1.200000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="1.232" y="3.400" centerX="1.200000" centerY="3.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.132" y="3.500"/> + <PolyStepCurve x="1.068" y="3.500" centerX="1.100000" centerY="3.500000" clockwise="true"/> + <PolyStepCurve x="1.132" y="3.500" centerX="1.100000" centerY="3.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.574" y="1.600"/> + <PolyStepCurve x="1.510" y="1.600" centerX="1.542000" centerY="1.600000" clockwise="true"/> + <PolyStepCurve x="1.574" y="1.600" centerX="1.542000" centerY="1.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.604" y="1.472"/> + <PolyStepCurve x="1.540" y="1.472" centerX="1.572000" centerY="1.472000" clockwise="true"/> + <PolyStepCurve x="1.604" y="1.472" centerX="1.572000" centerY="1.472000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.582" y="1.850"/> + <PolyStepCurve x="1.518" y="1.850" centerX="1.550000" centerY="1.850000" clockwise="true"/> + <PolyStepCurve x="1.582" y="1.850" centerX="1.550000" centerY="1.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="2.800"/> + <PolyStepCurve x="1.368" y="2.800" centerX="1.400000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="1.432" y="2.800" centerX="1.400000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.532" y="2.600"/> + <PolyStepCurve x="1.468" y="2.600" centerX="1.500000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.532" y="2.600" centerX="1.500000" centerY="2.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.357" y="3.025"/> + <PolyStepCurve x="1.293" y="3.025" centerX="1.325000" centerY="3.025000" clockwise="true"/> + <PolyStepCurve x="1.357" y="3.025" centerX="1.325000" centerY="3.025000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.468" y="2.900"/> + <PolyStepCurve x="1.404" y="2.900" centerX="1.436000" centerY="2.900000" clockwise="true"/> + <PolyStepCurve x="1.468" y="2.900" centerX="1.436000" centerY="2.900000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="3.125"/> + <PolyStepCurve x="1.368" y="3.125" centerX="1.400000" centerY="3.125000" clockwise="true"/> + <PolyStepCurve x="1.432" y="3.125" centerX="1.400000" centerY="3.125000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.378" y="3.322"/> + <PolyStepCurve x="1.314" y="3.322" centerX="1.346000" centerY="3.322000" clockwise="true"/> + <PolyStepCurve x="1.378" y="3.322" centerX="1.346000" centerY="3.322000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.432" y="3.239"/> + <PolyStepCurve x="1.368" y="3.239" centerX="1.400000" centerY="3.239000" clockwise="true"/> + <PolyStepCurve x="1.432" y="3.239" centerX="1.400000" centerY="3.239000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.382" y="3.500"/> + <PolyStepCurve x="1.318" y="3.500" centerX="1.350000" centerY="3.500000" clockwise="true"/> + <PolyStepCurve x="1.382" y="3.500" centerX="1.350000" centerY="3.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.382" y="3.625"/> + <PolyStepCurve x="1.318" y="3.625" centerX="1.350000" centerY="3.625000" clockwise="true"/> + <PolyStepCurve x="1.382" y="3.625" centerX="1.350000" centerY="3.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.904" y="1.428"/> + <PolyStepCurve x="1.840" y="1.428" centerX="1.872000" centerY="1.428000" clockwise="true"/> + <PolyStepCurve x="1.904" y="1.428" centerX="1.872000" centerY="1.428000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="1.750"/> + <PolyStepCurve x="1.618" y="1.750" centerX="1.650000" centerY="1.750000" clockwise="true"/> + <PolyStepCurve x="1.682" y="1.750" centerX="1.650000" centerY="1.750000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.656" y="1.624"/> + <PolyStepCurve x="1.592" y="1.624" centerX="1.624000" centerY="1.624000" clockwise="true"/> + <PolyStepCurve x="1.656" y="1.624" centerX="1.624000" centerY="1.624000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="1.925"/> + <PolyStepCurve x="1.843" y="1.925" centerX="1.875000" centerY="1.925000" clockwise="true"/> + <PolyStepCurve x="1.907" y="1.925" centerX="1.875000" centerY="1.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.932" y="2.100"/> + <PolyStepCurve x="1.868" y="2.100" centerX="1.900000" centerY="2.100000" clockwise="true"/> + <PolyStepCurve x="1.932" y="2.100" centerX="1.900000" centerY="2.100000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.175"/> + <PolyStepCurve x="1.843" y="2.175" centerX="1.875000" centerY="2.175000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.175" centerX="1.875000" centerY="2.175000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.025"/> + <PolyStepCurve x="1.843" y="2.025" centerX="1.875000" centerY="2.025000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.025" centerX="1.875000" centerY="2.025000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.857" y="2.075"/> + <PolyStepCurve x="1.793" y="2.075" centerX="1.825000" centerY="2.075000" clockwise="true"/> + <PolyStepCurve x="1.857" y="2.075" centerX="1.825000" centerY="2.075000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.807" y="2.500"/> + <PolyStepCurve x="1.743" y="2.500" centerX="1.775000" centerY="2.500000" clockwise="true"/> + <PolyStepCurve x="1.807" y="2.500" centerX="1.775000" centerY="2.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.757" y="2.600"/> + <PolyStepCurve x="1.693" y="2.600" centerX="1.725000" centerY="2.600000" clockwise="true"/> + <PolyStepCurve x="1.757" y="2.600" centerX="1.725000" centerY="2.600000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.782" y="2.700"/> + <PolyStepCurve x="1.718" y="2.700" centerX="1.750000" centerY="2.700000" clockwise="true"/> + <PolyStepCurve x="1.782" y="2.700" centerX="1.750000" centerY="2.700000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.907" y="2.775"/> + <PolyStepCurve x="1.843" y="2.775" centerX="1.875000" centerY="2.775000" clockwise="true"/> + <PolyStepCurve x="1.907" y="2.775" centerX="1.875000" centerY="2.775000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.882" y="2.575"/> + <PolyStepCurve x="1.818" y="2.575" centerX="1.850000" centerY="2.575000" clockwise="true"/> + <PolyStepCurve x="1.882" y="2.575" centerX="1.850000" centerY="2.575000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.707" y="2.725"/> + <PolyStepCurve x="1.643" y="2.725" centerX="1.675000" centerY="2.725000" clockwise="true"/> + <PolyStepCurve x="1.707" y="2.725" centerX="1.675000" centerY="2.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.732" y="3.050"/> + <PolyStepCurve x="1.668" y="3.050" centerX="1.700000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="1.732" y="3.050" centerX="1.700000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.682" y="2.975"/> + <PolyStepCurve x="1.618" y="2.975" centerX="1.650000" centerY="2.975000" clockwise="true"/> + <PolyStepCurve x="1.682" y="2.975" centerX="1.650000" centerY="2.975000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.882" y="3.625"/> + <PolyStepCurve x="1.818" y="3.625" centerX="1.850000" centerY="3.625000" clockwise="true"/> + <PolyStepCurve x="1.882" y="3.625" centerX="1.850000" centerY="3.625000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.253" y="0.500"/> + <PolyStepCurve x="2.159" y="0.500" centerX="2.206000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.253" y="0.500" centerX="2.206000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.207" y="0.825"/> + <PolyStepCurve x="2.143" y="0.825" centerX="2.175000" centerY="0.825000" clockwise="true"/> + <PolyStepCurve x="2.207" y="0.825" centerX="2.175000" centerY="0.825000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.179" y="1.428"/> + <PolyStepCurve x="2.115" y="1.428" centerX="2.147000" centerY="1.428000" clockwise="true"/> + <PolyStepCurve x="2.179" y="1.428" centerX="2.147000" centerY="1.428000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.132" y="2.800"/> + <PolyStepCurve x="2.068" y="2.800" centerX="2.100000" centerY="2.800000" clockwise="true"/> + <PolyStepCurve x="2.132" y="2.800" centerX="2.100000" centerY="2.800000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.200"/> + <PolyStepCurve x="1.943" y="3.200" centerX="1.975000" centerY="3.200000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.200" centerX="1.975000" centerY="3.200000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.082" y="3.250"/> + <PolyStepCurve x="2.018" y="3.250" centerX="2.050000" centerY="3.250000" clockwise="true"/> + <PolyStepCurve x="2.082" y="3.250" centerX="2.050000" centerY="3.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.032" y="3.300"/> + <PolyStepCurve x="1.968" y="3.300" centerX="2.000000" centerY="3.300000" clockwise="true"/> + <PolyStepCurve x="2.032" y="3.300" centerX="2.000000" centerY="3.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.400"/> + <PolyStepCurve x="1.943" y="3.400" centerX="1.975000" centerY="3.400000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.400" centerX="1.975000" centerY="3.400000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.007" y="3.650"/> + <PolyStepCurve x="1.943" y="3.650" centerX="1.975000" centerY="3.650000" clockwise="true"/> + <PolyStepCurve x="2.007" y="3.650" centerX="1.975000" centerY="3.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.409" y="0.500"/> + <PolyStepCurve x="2.315" y="0.500" centerX="2.362000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.409" y="0.500" centerX="2.362000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.347" y="0.650"/> + <PolyStepCurve x="2.253" y="0.650" centerX="2.300000" centerY="0.650000" clockwise="true"/> + <PolyStepCurve x="2.347" y="0.650" centerX="2.300000" centerY="0.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.457" y="0.760"/> + <PolyStepCurve x="2.363" y="0.760" centerX="2.410000" centerY="0.760000" clockwise="true"/> + <PolyStepCurve x="2.457" y="0.760" centerX="2.410000" centerY="0.760000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.568" y="0.871"/> + <PolyStepCurve x="2.474" y="0.871" centerX="2.521000" centerY="0.871000" clockwise="true"/> + <PolyStepCurve x="2.568" y="0.871" centerX="2.521000" centerY="0.871000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="0.850"/> + <PolyStepCurve x="2.228" y="0.850" centerX="2.275000" centerY="0.850000" clockwise="true"/> + <PolyStepCurve x="2.322" y="0.850" centerX="2.275000" centerY="0.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.006"/> + <PolyStepCurve x="2.228" y="1.006" centerX="2.275000" centerY="1.006000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.006" centerX="2.275000" centerY="1.006000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.162"/> + <PolyStepCurve x="2.228" y="1.162" centerX="2.275000" centerY="1.162000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.162" centerX="2.275000" centerY="1.162000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.319"/> + <PolyStepCurve x="2.228" y="1.319" centerX="2.275000" centerY="1.319000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.319" centerX="2.275000" centerY="1.319000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.475"/> + <PolyStepCurve x="2.228" y="1.475" centerX="2.275000" centerY="1.475000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.475" centerX="2.275000" centerY="1.475000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.532" y="1.575"/> + <PolyStepCurve x="2.468" y="1.575" centerX="2.500000" centerY="1.575000" clockwise="true"/> + <PolyStepCurve x="2.532" y="1.575" centerX="2.500000" centerY="1.575000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.631"/> + <PolyStepCurve x="2.228" y="1.631" centerX="2.275000" centerY="1.631000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.631" centerX="2.275000" centerY="1.631000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.788"/> + <PolyStepCurve x="2.228" y="1.788" centerX="2.275000" centerY="1.788000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.788" centerX="2.275000" centerY="1.788000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.457" y="1.775"/> + <PolyStepCurve x="2.393" y="1.775" centerX="2.425000" centerY="1.775000" clockwise="true"/> + <PolyStepCurve x="2.457" y="1.775" centerX="2.425000" centerY="1.775000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="1.944"/> + <PolyStepCurve x="2.228" y="1.944" centerX="2.275000" centerY="1.944000" clockwise="true"/> + <PolyStepCurve x="2.322" y="1.944" centerX="2.275000" centerY="1.944000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.322" y="2.100"/> + <PolyStepCurve x="2.228" y="2.100" centerX="2.275000" centerY="2.100000" clockwise="true"/> + <PolyStepCurve x="2.322" y="2.100" centerX="2.275000" centerY="2.100000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.300"/> + <PolyStepCurve x="2.403" y="2.300" centerX="2.450000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.300" centerX="2.450000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.456"/> + <PolyStepCurve x="2.403" y="2.456" centerX="2.450000" centerY="2.456000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.456" centerX="2.450000" centerY="2.456000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.300"/> + <PolyStepCurve x="2.203" y="2.300" centerX="2.250000" centerY="2.300000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.300" centerX="2.250000" centerY="2.300000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.456"/> + <PolyStepCurve x="2.203" y="2.456" centerX="2.250000" centerY="2.456000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.456" centerX="2.250000" centerY="2.456000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.612"/> + <PolyStepCurve x="2.403" y="2.612" centerX="2.450000" centerY="2.612000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.612" centerX="2.450000" centerY="2.612000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.769"/> + <PolyStepCurve x="2.403" y="2.769" centerX="2.450000" centerY="2.769000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.769" centerX="2.450000" centerY="2.769000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.612"/> + <PolyStepCurve x="2.203" y="2.612" centerX="2.250000" centerY="2.612000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.612" centerX="2.250000" centerY="2.612000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.769"/> + <PolyStepCurve x="2.203" y="2.769" centerX="2.250000" centerY="2.769000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.769" centerX="2.250000" centerY="2.769000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="2.925"/> + <PolyStepCurve x="2.403" y="2.925" centerX="2.450000" centerY="2.925000" clockwise="true"/> + <PolyStepCurve x="2.497" y="2.925" centerX="2.450000" centerY="2.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.081"/> + <PolyStepCurve x="2.403" y="3.081" centerX="2.450000" centerY="3.081000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.081" centerX="2.450000" centerY="3.081000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="2.925"/> + <PolyStepCurve x="2.203" y="2.925" centerX="2.250000" centerY="2.925000" clockwise="true"/> + <PolyStepCurve x="2.297" y="2.925" centerX="2.250000" centerY="2.925000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.081"/> + <PolyStepCurve x="2.203" y="3.081" centerX="2.250000" centerY="3.081000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.081" centerX="2.250000" centerY="3.081000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.238"/> + <PolyStepCurve x="2.403" y="3.238" centerX="2.450000" centerY="3.238000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.238" centerX="2.450000" centerY="3.238000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.394"/> + <PolyStepCurve x="2.403" y="3.394" centerX="2.450000" centerY="3.394000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.394" centerX="2.450000" centerY="3.394000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.238"/> + <PolyStepCurve x="2.203" y="3.238" centerX="2.250000" centerY="3.238000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.238" centerX="2.250000" centerY="3.238000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.394"/> + <PolyStepCurve x="2.203" y="3.394" centerX="2.250000" centerY="3.394000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.394" centerX="2.250000" centerY="3.394000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.497" y="3.550"/> + <PolyStepCurve x="2.403" y="3.550" centerX="2.450000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.497" y="3.550" centerX="2.450000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.297" y="3.550"/> + <PolyStepCurve x="2.203" y="3.550" centerX="2.250000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.297" y="3.550" centerX="2.250000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.566" y="0.500"/> + <PolyStepCurve x="2.472" y="0.500" centerX="2.519000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.566" y="0.500" centerX="2.519000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.722" y="0.500"/> + <PolyStepCurve x="2.628" y="0.500" centerX="2.675000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.722" y="0.500" centerX="2.675000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.679" y="0.982"/> + <PolyStepCurve x="2.585" y="0.982" centerX="2.632000" centerY="0.982000" clockwise="true"/> + <PolyStepCurve x="2.679" y="0.982" centerX="2.632000" centerY="0.982000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.789" y="1.092"/> + <PolyStepCurve x="2.695" y="1.092" centerX="2.742000" centerY="1.092000" clockwise="true"/> + <PolyStepCurve x="2.789" y="1.092" centerX="2.742000" centerY="1.092000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="2.150"/> + <PolyStepCurve x="2.558" y="2.150" centerX="2.600000" centerY="2.150000" clockwise="true"/> + <PolyStepCurve x="2.642" y="2.150" centerX="2.600000" centerY="2.150000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="2.250"/> + <PolyStepCurve x="2.758" y="2.250" centerX="2.800000" centerY="2.250000" clockwise="true"/> + <PolyStepCurve x="2.842" y="2.250" centerX="2.800000" centerY="2.250000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.607" y="2.525"/> + <PolyStepCurve x="2.543" y="2.525" centerX="2.575000" centerY="2.525000" clockwise="true"/> + <PolyStepCurve x="2.607" y="2.525" centerX="2.575000" centerY="2.525000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="3.050"/> + <PolyStepCurve x="2.758" y="3.050" centerX="2.800000" centerY="3.050000" clockwise="true"/> + <PolyStepCurve x="2.842" y="3.050" centerX="2.800000" centerY="3.050000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="2.850"/> + <PolyStepCurve x="2.558" y="2.850" centerX="2.600000" centerY="2.850000" clockwise="true"/> + <PolyStepCurve x="2.642" y="2.850" centerX="2.600000" centerY="2.850000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.842" y="3.650"/> + <PolyStepCurve x="2.758" y="3.650" centerX="2.800000" centerY="3.650000" clockwise="true"/> + <PolyStepCurve x="2.842" y="3.650" centerX="2.800000" centerY="3.650000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.642" y="3.550"/> + <PolyStepCurve x="2.558" y="3.550" centerX="2.600000" centerY="3.550000" clockwise="true"/> + <PolyStepCurve x="2.642" y="3.550" centerX="2.600000" centerY="3.550000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.582" y="3.725"/> + <PolyStepCurve x="2.518" y="3.725" centerX="2.550000" centerY="3.725000" clockwise="true"/> + <PolyStepCurve x="2.582" y="3.725" centerX="2.550000" centerY="3.725000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.878" y="0.500"/> + <PolyStepCurve x="2.784" y="0.500" centerX="2.831000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="2.878" y="0.500" centerX="2.831000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.035" y="0.500"/> + <PolyStepCurve x="2.941" y="0.500" centerX="2.988000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.035" y="0.500" centerX="2.988000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="2.899" y="1.202"/> + <PolyStepCurve x="2.805" y="1.202" centerX="2.852000" centerY="1.202000" clockwise="true"/> + <PolyStepCurve x="2.899" y="1.202" centerX="2.852000" centerY="1.202000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.010" y="1.313"/> + <PolyStepCurve x="2.916" y="1.313" centerX="2.963000" centerY="1.313000" clockwise="true"/> + <PolyStepCurve x="3.010" y="1.313" centerX="2.963000" centerY="1.313000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.121" y="1.424"/> + <PolyStepCurve x="3.027" y="1.424" centerX="3.074000" centerY="1.424000" clockwise="true"/> + <PolyStepCurve x="3.121" y="1.424" centerX="3.074000" centerY="1.424000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.191" y="0.500"/> + <PolyStepCurve x="3.097" y="0.500" centerX="3.144000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.191" y="0.500" centerX="3.144000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.347" y="0.500"/> + <PolyStepCurve x="3.253" y="0.500" centerX="3.300000" centerY="0.500000" clockwise="true"/> + <PolyStepCurve x="3.347" y="0.500" centerX="3.300000" centerY="0.500000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="3.231" y="1.534"/> + <PolyStepCurve x="3.137" y="1.534" centerX="3.184000" centerY="1.534000" clockwise="true"/> + <PolyStepCurve x="3.231" y="1.534" centerX="3.184000" centerY="1.534000" clockwise="true"/> + </Cutout> + <Cutout> + <PolyBegin x="1.417" y="3.411"/> + <PolyStepCurve x="1.397" y="3.422" centerX="1.392569" centerY="3.390261" clockwise="true"/> + <PolyStepCurve x="1.401" y="3.428" centerX="1.397696" centerY="3.425869" clockwise="false"/> + <PolyStepCurve x="1.421" y="3.417" centerX="1.425431" centerY="3.448739" clockwise="true"/> + <PolyStepCurve x="1.417" y="3.411" centerX="1.420304" centerY="3.413131" clockwise="false"/> + </Cutout> + <Cutout> + <PolyBegin x="1.594" y="2.151"/> + <PolyStepCurve x="1.586" y="2.171" centerX="1.562053" centerY="2.149821" clockwise="true"/> + <PolyStepCurve x="1.593" y="2.174" centerX="1.589016" centerY="2.173629" clockwise="false"/> + <PolyStepCurve x="1.601" y="2.154" centerX="1.624947" centerY="2.175179" clockwise="true"/> + <PolyStepCurve x="1.594" y="2.151" centerX="1.597984" centerY="2.151371" clockwise="false"/> + </Cutout> + </Contour> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="VCC - Layer5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.280" y="-0.400"/> + <PolyStepSegment x="1.303" y="-0.475"/> + <PolyStepSegment x="1.326" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.399" y="-0.406"/> + <PolyStepSegment x="1.393" y="-0.402"/> + <PolyStepSegment x="1.386" y="-0.400"/> + <PolyStepSegment x="1.379" y="-0.400"/> + <PolyStepSegment x="1.371" y="-0.404"/> + <PolyStepSegment x="1.364" y="-0.410"/> + <PolyStepSegment x="1.359" y="-0.418"/> + <PolyStepSegment x="1.356" y="-0.430"/> + <PolyStepSegment x="1.355" y="-0.441"/> + <PolyStepSegment x="1.357" y="-0.453"/> + <PolyStepSegment x="1.359" y="-0.460"/> + <PolyStepSegment x="1.365" y="-0.468"/> + <PolyStepSegment x="1.371" y="-0.473"/> + <PolyStepSegment x="1.378" y="-0.475"/> + <PolyStepSegment x="1.385" y="-0.475"/> + <PolyStepSegment x="1.391" y="-0.473"/> + <PolyStepSegment x="1.397" y="-0.469"/> + <PolyStepSegment x="1.401" y="-0.464"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.474" y="-0.406"/> + <PolyStepSegment x="1.468" y="-0.402"/> + <PolyStepSegment x="1.461" y="-0.400"/> + <PolyStepSegment x="1.454" y="-0.400"/> + <PolyStepSegment x="1.446" y="-0.404"/> + <PolyStepSegment x="1.439" y="-0.410"/> + <PolyStepSegment x="1.434" y="-0.418"/> + <PolyStepSegment x="1.431" y="-0.430"/> + <PolyStepSegment x="1.430" y="-0.441"/> + <PolyStepSegment x="1.432" y="-0.453"/> + <PolyStepSegment x="1.434" y="-0.460"/> + <PolyStepSegment x="1.440" y="-0.468"/> + <PolyStepSegment x="1.446" y="-0.473"/> + <PolyStepSegment x="1.453" y="-0.475"/> + <PolyStepSegment x="1.460" y="-0.475"/> + <PolyStepSegment x="1.466" y="-0.473"/> + <PolyStepSegment x="1.472" y="-0.469"/> + <PolyStepSegment x="1.476" y="-0.464"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.591" y="-0.450"/> + <PolyStepSegment x="1.615" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.734" y="-0.400"/> + <PolyStepSegment x="1.734" y="-0.475"/> + <PolyStepSegment x="1.772" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.475"/> + <PolyStepSegment x="1.845" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.845" y="-0.434"/> + <PolyStepSegment x="1.841" y="-0.429"/> + <PolyStepSegment x="1.835" y="-0.426"/> + <PolyStepSegment x="1.829" y="-0.425"/> + <PolyStepSegment x="1.822" y="-0.428"/> + <PolyStepSegment x="1.817" y="-0.432"/> + <PolyStepSegment x="1.813" y="-0.440"/> + <PolyStepSegment x="1.811" y="-0.450"/> + <PolyStepSegment x="1.813" y="-0.460"/> + <PolyStepSegment x="1.817" y="-0.468"/> + <PolyStepSegment x="1.822" y="-0.473"/> + <PolyStepSegment x="1.829" y="-0.475"/> + <PolyStepSegment x="1.835" y="-0.474"/> + <PolyStepSegment x="1.841" y="-0.470"/> + <PolyStepSegment x="1.845" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.883" y="-0.497"/> + <PolyStepSegment x="1.889" y="-0.500"/> + <PolyStepSegment x="1.896" y="-0.497"/> + <PolyStepSegment x="1.901" y="-0.493"/> + <PolyStepSegment x="1.905" y="-0.486"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <PolyStepSegment x="1.923" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.893" y="-0.425"/> + <PolyStepSegment x="1.910" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.964" y="-0.441"/> + <PolyStepSegment x="1.994" y="-0.441"/> + <PolyStepSegment x="1.991" y="-0.432"/> + <PolyStepSegment x="1.986" y="-0.428"/> + <PolyStepSegment x="1.980" y="-0.425"/> + <PolyStepSegment x="1.973" y="-0.426"/> + <PolyStepSegment x="1.968" y="-0.430"/> + <PolyStepSegment x="1.964" y="-0.439"/> + <PolyStepSegment x="1.962" y="-0.446"/> + <PolyStepSegment x="1.962" y="-0.454"/> + <PolyStepSegment x="1.964" y="-0.461"/> + <PolyStepSegment x="1.969" y="-0.469"/> + <PolyStepSegment x="1.974" y="-0.474"/> + <PolyStepSegment x="1.981" y="-0.475"/> + <PolyStepSegment x="1.987" y="-0.473"/> + <PolyStepSegment x="1.994" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.475"/> + <PolyStepSegment x="2.040" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.040" y="-0.435"/> + <PolyStepSegment x="2.045" y="-0.430"/> + <PolyStepSegment x="2.049" y="-0.426"/> + <PolyStepSegment x="2.056" y="-0.425"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.066" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.107" y="-0.464"/> + <PolyStepSegment x="2.113" y="-0.470"/> + <PolyStepSegment x="2.120" y="-0.474"/> + <PolyStepSegment x="2.128" y="-0.475"/> + <PolyStepSegment x="2.136" y="-0.473"/> + <PolyStepSegment x="2.143" y="-0.468"/> + <PolyStepSegment x="2.148" y="-0.459"/> + <PolyStepSegment x="2.149" y="-0.449"/> + <PolyStepSegment x="2.147" y="-0.439"/> + <PolyStepSegment x="2.142" y="-0.432"/> + <PolyStepSegment x="2.135" y="-0.428"/> + <PolyStepSegment x="2.129" y="-0.426"/> + <PolyStepSegment x="2.122" y="-0.428"/> + <PolyStepSegment x="2.114" y="-0.432"/> + <PolyStepSegment x="2.117" y="-0.400"/> + <PolyStepSegment x="2.142" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="BOTTOM"> + <Set> + <ColorRef id="COLOR_BOTTOM"/> + </Set> + <Set net="ZEROCROSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.647" y="0.501"/> + <PolyStepSegment x="1.637" y="0.489"/> + <PolyStepSegment x="1.650" y="0.474"/> + <PolyStepSegment x="1.663" y="0.489"/> + <PolyStepSegment x="1.653" y="0.501"/> + <PolyStepCurve x="1.647" y="0.501" centerX="1.650000" centerY="0.498000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ZEROCROSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.178" y="1.569"/> + <PolyStepSegment x="1.234" y="1.625"/> + <PolyStepSegment x="1.250" y="1.625"/> + <PolyStepSegment x="1.459" y="1.416"/> + <PolyStepSegment x="1.459" y="1.116"/> + <PolyStepSegment x="1.650" y="0.925"/> + <PolyStepSegment x="1.650" y="0.475"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.419" y="3.393"/> + <PolyStepSegment x="1.407" y="3.403"/> + <PolyStepSegment x="1.392" y="3.390"/> + <PolyStepSegment x="1.407" y="3.377"/> + <PolyStepSegment x="1.419" y="3.387"/> + <PolyStepCurve x="1.419" y="3.393" centerX="1.416000" centerY="3.390000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.647" y="3.001"/> + <PolyStepSegment x="1.637" y="2.989"/> + <PolyStepSegment x="1.650" y="2.974"/> + <PolyStepSegment x="1.663" y="2.989"/> + <PolyStepSegment x="1.653" y="3.001"/> + <PolyStepCurve x="1.647" y="3.001" centerX="1.650000" centerY="2.998000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.393" y="3.390"/> + <PolyStepSegment x="1.435" y="3.390"/> + <PolyStepSegment x="1.650" y="3.175"/> + <PolyStepSegment x="1.650" y="2.975"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.503" y="0.574"/> + <PolyStepSegment x="1.513" y="0.586"/> + <PolyStepSegment x="1.500" y="0.601"/> + <PolyStepSegment x="1.487" y="0.586"/> + <PolyStepSegment x="1.497" y="0.574"/> + <PolyStepCurve x="1.503" y="0.574" centerX="1.500000" centerY="0.577000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.522" y="0.176"/> + <PolyStepSegment x="1.512" y="0.164"/> + <PolyStepSegment x="1.525" y="0.149"/> + <PolyStepSegment x="1.538" y="0.164"/> + <PolyStepSegment x="1.528" y="0.176"/> + <PolyStepCurve x="1.522" y="0.176" centerX="1.525000" centerY="0.173000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="0.600"/> + <PolyStepSegment x="1.500" y="0.500"/> + <PolyStepSegment x="1.525" y="0.475"/> + <PolyStepSegment x="1.525" y="0.446"/> + <PolyStepSegment x="1.532" y="0.439"/> + <PolyStepSegment x="1.532" y="0.411"/> + <PolyStepSegment x="1.525" y="0.404"/> + <PolyStepSegment x="1.525" y="0.246"/> + <PolyStepSegment x="1.518" y="0.239"/> + <PolyStepSegment x="1.518" y="0.211"/> + <PolyStepSegment x="1.525" y="0.204"/> + <PolyStepSegment x="1.525" y="0.150"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="WAVEOUT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.559" y="0.905"/> + <PolyStepSegment x="1.575" y="0.905"/> + <PolyStepSegment x="1.576" y="0.926"/> + <PolyStepSegment x="1.555" y="0.925"/> + <PolyStepSegment x="1.555" y="0.909"/> + <PolyStepCurve x="1.559" y="0.905" centerX="1.559000" centerY="0.909000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.547" y="0.551"/> + <PolyStepSegment x="1.537" y="0.539"/> + <PolyStepSegment x="1.550" y="0.524"/> + <PolyStepSegment x="1.563" y="0.539"/> + <PolyStepSegment x="1.553" y="0.551"/> + <PolyStepCurve x="1.547" y="0.551" centerX="1.550000" centerY="0.548000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="WAVEOUT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="0.525"/> + <PolyStepSegment x="1.550" y="0.900"/> + <PolyStepSegment x="1.575" y="0.925"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.300" y="2.303"/> + <PolyStepSegment x="2.276" y="2.325"/> + <PolyStepSegment x="2.249" y="2.300"/> + <PolyStepSegment x="2.276" y="2.275"/> + <PolyStepSegment x="2.300" y="2.297"/> + <PolyStepCurve x="2.300" y="2.303" centerX="2.297000" centerY="2.300000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.297" y="0.700"/> + <PolyStepSegment x="2.275" y="0.676"/> + <PolyStepSegment x="2.300" y="0.649"/> + <PolyStepSegment x="2.325" y="0.676"/> + <PolyStepSegment x="2.303" y="0.700"/> + <PolyStepCurve x="2.297" y="0.700" centerX="2.300000" centerY="0.697000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VTTD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="2.300"/> + <PolyStepSegment x="2.300" y="2.300"/> + <PolyStepSegment x="2.350" y="2.250"/> + <PolyStepSegment x="2.350" y="0.825"/> + <PolyStepSegment x="2.300" y="0.775"/> + <PolyStepSegment x="2.300" y="0.650"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.097" y="0.301"/> + <PolyStepSegment x="1.087" y="0.289"/> + <PolyStepSegment x="1.100" y="0.274"/> + <PolyStepSegment x="1.113" y="0.289"/> + <PolyStepSegment x="1.103" y="0.301"/> + <PolyStepCurve x="1.097" y="0.301" centerX="1.100000" centerY="0.298000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.526" y="0.753"/> + <PolyStepSegment x="0.514" y="0.763"/> + <PolyStepSegment x="0.499" y="0.750"/> + <PolyStepSegment x="0.514" y="0.737"/> + <PolyStepSegment x="0.526" y="0.747"/> + <PolyStepCurve x="0.526" y="0.753" centerX="0.523000" centerY="0.750000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.074" y="0.747"/> + <PolyStepSegment x="1.086" y="0.737"/> + <PolyStepSegment x="1.101" y="0.750"/> + <PolyStepSegment x="1.086" y="0.763"/> + <PolyStepSegment x="1.074" y="0.753"/> + <PolyStepCurve x="1.074" y="0.747" centerX="1.077000" centerY="0.750000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.103" y="0.724"/> + <PolyStepSegment x="1.113" y="0.736"/> + <PolyStepSegment x="1.100" y="0.751"/> + <PolyStepSegment x="1.087" y="0.736"/> + <PolyStepSegment x="1.097" y="0.724"/> + <PolyStepCurve x="1.103" y="0.724" centerX="1.100000" centerY="0.727000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="0.750"/> + <PolyStepSegment x="1.100" y="0.275"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VSS"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="0.750"/> + <PolyStepSegment x="0.500" y="0.750"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.497" y="0.701"/> + <PolyStepSegment x="1.487" y="0.689"/> + <PolyStepSegment x="1.500" y="0.674"/> + <PolyStepSegment x="1.513" y="0.689"/> + <PolyStepSegment x="1.503" y="0.701"/> + <PolyStepCurve x="1.497" y="0.701" centerX="1.500000" centerY="0.698000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.952" y="1.498"/> + <PolyStepSegment x="0.964" y="1.510"/> + <PolyStepSegment x="0.964" y="1.511"/> + <PolyStepSegment x="0.987" y="1.534"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.355" y="1.308"/> + <PolyStepSegment x="1.319" y="1.272"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.319" y="1.272"/> + <PolyStepSegment x="1.284" y="1.237"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.284" y="1.237"/> + <PolyStepSegment x="1.276" y="1.245"/> + <PolyStepSegment x="1.248" y="1.245"/> + <PolyStepSegment x="1.244" y="1.241"/> + <PolyStepSegment x="1.209" y="1.241"/> + <PolyStepSegment x="0.952" y="1.498"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.952" y="1.498"/> + <PolyStepSegment x="0.940" y="1.486"/> + <PolyStepSegment x="0.939" y="1.486"/> + <PolyStepSegment x="0.916" y="1.463"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VHI"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="0.675"/> + <PolyStepSegment x="1.500" y="1.025"/> + <PolyStepSegment x="1.319" y="1.206"/> + <PolyStepSegment x="1.319" y="1.233"/> + <PolyStepSegment x="1.327" y="1.241"/> + <PolyStepSegment x="1.327" y="1.264"/> + <PolyStepSegment x="1.319" y="1.272"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="VDD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.603" y="0.849"/> + <PolyStepSegment x="1.613" y="0.861"/> + <PolyStepSegment x="1.600" y="0.876"/> + <PolyStepSegment x="1.587" y="0.861"/> + <PolyStepSegment x="1.597" y="0.849"/> + <PolyStepCurve x="1.603" y="0.849" centerX="1.600000" centerY="0.852000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VDD" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.547" y="0.251"/> + <PolyStepSegment x="1.537" y="0.239"/> + <PolyStepSegment x="1.550" y="0.224"/> + <PolyStepSegment x="1.563" y="0.239"/> + <PolyStepSegment x="1.553" y="0.251"/> + <PolyStepCurve x="1.547" y="0.251" centerX="1.550000" centerY="0.248000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="VDD"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="0.875"/> + <PolyStepSegment x="1.600" y="0.500"/> + <PolyStepSegment x="1.550" y="0.450"/> + <PolyStepSegment x="1.550" y="0.225"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1SIP108PA60" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.924" y="0.397"/> + <PolyStepSegment x="0.936" y="0.387"/> + <PolyStepSegment x="0.951" y="0.400"/> + <PolyStepSegment x="0.936" y="0.413"/> + <PolyStepSegment x="0.924" y="0.403"/> + <PolyStepCurve x="0.924" y="0.397" centerX="0.927000" centerY="0.400000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1SIP108PA60"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.190" y="1.250"/> + <PolyStepSegment x="0.025" y="1.250"/> + <PolyStepSegment x="-0.025" y="1.200"/> + <PolyStepSegment x="-0.025" y="0.475"/> + <PolyStepSegment x="0.050" y="0.400"/> + <PolyStepSegment x="0.950" y="0.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.822" y="2.101"/> + <PolyStepSegment x="1.812" y="2.089"/> + <PolyStepSegment x="1.825" y="2.074"/> + <PolyStepSegment x="1.838" y="2.089"/> + <PolyStepSegment x="1.828" y="2.101"/> + <PolyStepCurve x="1.822" y="2.101" centerX="1.825000" centerY="2.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.853" y="3.599"/> + <PolyStepSegment x="1.863" y="3.611"/> + <PolyStepSegment x="1.850" y="3.626"/> + <PolyStepSegment x="1.837" y="3.611"/> + <PolyStepSegment x="1.847" y="3.599"/> + <PolyStepCurve x="1.853" y="3.599" centerX="1.850000" centerY="3.602000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.825" y="2.075"/> + <PolyStepSegment x="1.825" y="2.554"/> + <PolyStepSegment x="1.818" y="2.561"/> + <PolyStepSegment x="1.818" y="2.993"/> + <PolyStepSegment x="1.882" y="3.057"/> + <PolyStepSegment x="1.882" y="3.393"/> + <PolyStepSegment x="1.850" y="3.425"/> + <PolyStepSegment x="1.850" y="3.625"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.901" y="2.028"/> + <PolyStepSegment x="1.889" y="2.038"/> + <PolyStepSegment x="1.874" y="2.025"/> + <PolyStepSegment x="1.889" y="2.012"/> + <PolyStepSegment x="1.901" y="2.022"/> + <PolyStepCurve x="1.901" y="2.028" centerX="1.898000" centerY="2.025000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.288" y="2.892"/> + <PolyStepSegment x="2.287" y="2.925"/> + <PolyStepSegment x="2.249" y="2.926"/> + <PolyStepSegment x="2.250" y="2.889"/> + <PolyStepSegment x="2.284" y="2.888"/> + <PolyStepCurve x="2.288" y="2.892" centerX="2.284000" centerY="2.892000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="2.925"/> + <PolyStepSegment x="2.325" y="2.850"/> + <PolyStepSegment x="2.325" y="2.758"/> + <PolyStepSegment x="2.200" y="2.633"/> + <PolyStepSegment x="2.200" y="2.525"/> + <PolyStepSegment x="2.075" y="2.400"/> + <PolyStepSegment x="2.075" y="2.125"/> + <PolyStepSegment x="1.975" y="2.025"/> + <PolyStepSegment x="1.875" y="2.025"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.872" y="2.201"/> + <PolyStepSegment x="1.862" y="2.189"/> + <PolyStepSegment x="1.875" y="2.174"/> + <PolyStepSegment x="1.888" y="2.189"/> + <PolyStepSegment x="1.878" y="2.201"/> + <PolyStepCurve x="1.872" y="2.201" centerX="1.875000" centerY="2.198000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.216" y="3.200"/> + <PolyStepSegment x="2.250" y="3.201"/> + <PolyStepSegment x="2.251" y="3.239"/> + <PolyStepSegment x="2.213" y="3.238"/> + <PolyStepSegment x="2.212" y="3.204"/> + <PolyStepCurve x="2.216" y="3.200" centerX="2.216000" centerY="3.204000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="2.175"/> + <PolyStepSegment x="1.875" y="2.525"/> + <PolyStepSegment x="2.150" y="2.800"/> + <PolyStepSegment x="2.150" y="3.142"/> + <PolyStepSegment x="2.158" y="3.150"/> + <PolyStepSegment x="2.162" y="3.150"/> + <PolyStepSegment x="2.250" y="3.238"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.216" y="3.044"/> + <PolyStepSegment x="2.250" y="3.045"/> + <PolyStepSegment x="2.251" y="3.082"/> + <PolyStepSegment x="2.213" y="3.081"/> + <PolyStepSegment x="2.212" y="3.048"/> + <PolyStepCurve x="2.216" y="3.044" centerX="2.216000" centerY="3.048000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.897" y="2.126"/> + <PolyStepSegment x="1.887" y="2.114"/> + <PolyStepSegment x="1.900" y="2.099"/> + <PolyStepSegment x="1.913" y="2.114"/> + <PolyStepSegment x="1.903" y="2.126"/> + <PolyStepCurve x="1.897" y="2.126" centerX="1.900000" centerY="2.123000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="3.081"/> + <PolyStepSegment x="2.175" y="3.006"/> + <PolyStepSegment x="2.175" y="2.775"/> + <PolyStepSegment x="1.900" y="2.500"/> + <PolyStepSegment x="1.900" y="2.196"/> + <PolyStepSegment x="1.907" y="2.189"/> + <PolyStepSegment x="1.907" y="2.161"/> + <PolyStepSegment x="1.900" y="2.154"/> + <PolyStepSegment x="1.900" y="2.100"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.216" y="3.512"/> + <PolyStepSegment x="2.250" y="3.513"/> + <PolyStepSegment x="2.251" y="3.551"/> + <PolyStepSegment x="2.213" y="3.550"/> + <PolyStepSegment x="2.212" y="3.516"/> + <PolyStepCurve x="2.216" y="3.512" centerX="2.216000" centerY="3.516000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.097" y="2.826"/> + <PolyStepSegment x="2.087" y="2.814"/> + <PolyStepSegment x="2.100" y="2.799"/> + <PolyStepSegment x="2.113" y="2.814"/> + <PolyStepSegment x="2.103" y="2.826"/> + <PolyStepCurve x="2.097" y="2.826" centerX="2.100000" centerY="2.823000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.250" y="3.550"/> + <PolyStepSegment x="2.125" y="3.425"/> + <PolyStepSegment x="2.125" y="3.075"/> + <PolyStepSegment x="2.100" y="3.050"/> + <PolyStepSegment x="2.100" y="2.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.288" y="2.578"/> + <PolyStepSegment x="2.287" y="2.612"/> + <PolyStepSegment x="2.249" y="2.613"/> + <PolyStepSegment x="2.250" y="2.575"/> + <PolyStepSegment x="2.284" y="2.574"/> + <PolyStepCurve x="2.288" y="2.578" centerX="2.284000" centerY="2.578000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.939" y="1.526"/> + <PolyStepSegment x="1.937" y="1.543"/> + <PolyStepSegment x="1.901" y="1.850"/> + <PolyStepSegment x="1.900" y="1.850"/> + <PolyStepSegment x="1.857" y="1.893"/> + <PolyStepSegment x="1.857" y="1.897"/> + <PolyStepSegment x="1.843" y="1.911"/> + <PolyStepSegment x="1.843" y="1.939"/> + <PolyStepSegment x="1.861" y="1.957"/> + <PolyStepSegment x="2.032" y="1.957"/> + <PolyStepSegment x="2.250" y="2.175"/> + <PolyStepSegment x="2.250" y="2.229"/> + <PolyStepSegment x="2.200" y="2.279"/> + <PolyStepSegment x="2.200" y="2.321"/> + <PolyStepSegment x="2.229" y="2.350"/> + <PolyStepSegment x="2.250" y="2.350"/> + <PolyStepSegment x="2.275" y="2.375"/> + <PolyStepSegment x="2.275" y="2.410"/> + <PolyStepSegment x="2.300" y="2.435"/> + <PolyStepSegment x="2.300" y="2.562"/> + <PolyStepSegment x="2.250" y="2.612"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1DAC71PDAC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.253" y="2.406"/> + <PolyStepSegment x="2.275" y="2.430"/> + <PolyStepSegment x="2.250" y="2.457"/> + <PolyStepSegment x="2.225" y="2.430"/> + <PolyStepSegment x="2.247" y="2.406"/> + <PolyStepCurve x="2.253" y="2.406" centerX="2.250000" centerY="2.409000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1DAC71PDAC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.945" y="1.476"/> + <PolyStepSegment x="1.938" y="1.475"/> + <PolyStepSegment x="1.920" y="1.489"/> + <PolyStepSegment x="1.914" y="1.495"/> + <PolyStepSegment x="1.914" y="1.500"/> + <PolyStepSegment x="1.900" y="1.514"/> + <PolyStepSegment x="1.900" y="1.650"/> + <PolyStepSegment x="1.875" y="1.675"/> + <PolyStepSegment x="1.858" y="1.675"/> + <PolyStepSegment x="1.841" y="1.692"/> + <PolyStepSegment x="1.841" y="1.890"/> + <PolyStepSegment x="1.827" y="1.904"/> + <PolyStepSegment x="1.827" y="1.946"/> + <PolyStepSegment x="1.854" y="1.973"/> + <PolyStepSegment x="2.023" y="1.973"/> + <PolyStepSegment x="2.234" y="2.184"/> + <PolyStepSegment x="2.234" y="2.222"/> + <PolyStepSegment x="2.184" y="2.272"/> + <PolyStepSegment x="2.184" y="2.328"/> + <PolyStepSegment x="2.250" y="2.394"/> + <PolyStepSegment x="2.250" y="2.456"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ50" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.518" y="0.921"/> + <PolyStepSegment x="2.496" y="0.897"/> + <PolyStepSegment x="2.521" y="0.870"/> + <PolyStepSegment x="2.546" y="0.897"/> + <PolyStepSegment x="2.524" y="0.921"/> + <PolyStepCurve x="2.518" y="0.921" centerX="2.521000" centerY="0.918000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ50" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.520" y="1.559"/> + <PolyStepSegment x="2.520" y="1.575"/> + <PolyStepSegment x="2.499" y="1.576"/> + <PolyStepSegment x="2.500" y="1.555"/> + <PolyStepSegment x="2.516" y="1.555"/> + <PolyStepCurve x="2.520" y="1.559" centerX="2.516000" centerY="1.559000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ50"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.500" y="1.575"/> + <PolyStepSegment x="2.521" y="1.554"/> + <PolyStepSegment x="2.521" y="0.871"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15169PQ10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.407" y="0.805"/> + <PolyStepSegment x="2.390" y="0.786"/> + <PolyStepSegment x="2.410" y="0.759"/> + <PolyStepSegment x="2.430" y="0.786"/> + <PolyStepSegment x="2.413" y="0.805"/> + <PolyStepCurve x="2.407" y="0.805" centerX="2.410000" centerY="0.802000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.428" y="1.749"/> + <PolyStepSegment x="2.438" y="1.761"/> + <PolyStepSegment x="2.425" y="1.776"/> + <PolyStepSegment x="2.412" y="1.761"/> + <PolyStepSegment x="2.422" y="1.749"/> + <PolyStepCurve x="2.428" y="1.749" centerX="2.425000" centerY="1.752000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15169PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.425" y="1.775"/> + <PolyStepSegment x="2.425" y="0.817"/> + <PolyStepSegment x="2.410" y="0.802"/> + <PolyStepSegment x="2.410" y="0.760"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15168PQ10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.543" y="1.472"/> + <PolyStepSegment x="1.558" y="1.459"/> + <PolyStepSegment x="1.573" y="1.472"/> + <PolyStepSegment x="1.560" y="1.486"/> + <PolyStepSegment x="1.544" y="1.479"/> + <PolyStepCurve x="1.543" y="1.472" centerX="1.545814" centerY="1.475169" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15168PQ10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.522" y="1.472"/> + <PolyStepSegment x="1.546" y="1.475"/> + <PolyStepSegment x="1.569" y="1.475"/> + <PolyStepSegment x="1.572" y="1.472"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E15168PQ0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.623" y="1.594"/> + <PolyStepSegment x="1.637" y="1.610"/> + <PolyStepSegment x="1.624" y="1.625"/> + <PolyStepSegment x="1.610" y="1.612"/> + <PolyStepSegment x="1.616" y="1.595"/> + <PolyStepCurve x="1.623" y="1.594" centerX="1.619831" centerY="1.596814" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E15168PQ0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.624" y="1.545"/> + <PolyStepSegment x="1.620" y="1.574"/> + <PolyStepSegment x="1.620" y="1.620"/> + <PolyStepSegment x="1.624" y="1.624"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.580" y="2.291"/> + <PolyStepSegment x="0.580" y="2.275"/> + <PolyStepSegment x="0.601" y="2.274"/> + <PolyStepSegment x="0.600" y="2.295"/> + <PolyStepSegment x="0.584" y="2.295"/> + <PolyStepCurve x="0.580" y="2.291" centerX="0.584000" centerY="2.291000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.503" y="3.224"/> + <PolyStepSegment x="0.513" y="3.236"/> + <PolyStepSegment x="0.500" y="3.251"/> + <PolyStepSegment x="0.487" y="3.236"/> + <PolyStepSegment x="0.497" y="3.224"/> + <PolyStepCurve x="0.503" y="3.224" centerX="0.500000" centerY="3.227000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.753" y="2.299"/> + <PolyStepSegment x="1.763" y="2.311"/> + <PolyStepSegment x="1.750" y="2.326"/> + <PolyStepSegment x="1.737" y="2.311"/> + <PolyStepSegment x="1.747" y="2.299"/> + <PolyStepCurve x="1.753" y="2.299" centerX="1.750000" centerY="2.302000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="3.250"/> + <PolyStepSegment x="0.500" y="2.375"/> + <PolyStepSegment x="0.600" y="2.275"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.822" y="1.571"/> + <PolyStepSegment x="1.818" y="1.600"/> + <PolyStepSegment x="1.818" y="1.634"/> + <PolyStepSegment x="1.808" y="1.644"/> + <PolyStepSegment x="1.808" y="1.672"/> + <PolyStepSegment x="1.750" y="2.093"/> + <PolyStepSegment x="1.750" y="2.325"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11698PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.412" y="3.583"/> + <PolyStepSegment x="2.413" y="3.550"/> + <PolyStepSegment x="2.451" y="3.549"/> + <PolyStepSegment x="2.450" y="3.586"/> + <PolyStepSegment x="2.416" y="3.587"/> + <PolyStepCurve x="2.412" y="3.583" centerX="2.416000" centerY="3.583000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.397" y="3.326"/> + <PolyStepSegment x="0.387" y="3.314"/> + <PolyStepSegment x="0.400" y="3.299"/> + <PolyStepSegment x="0.413" y="3.314"/> + <PolyStepSegment x="0.403" y="3.326"/> + <PolyStepCurve x="0.397" y="3.326" centerX="0.400000" centerY="3.323000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11698PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="3.550"/> + <PolyStepSegment x="2.367" y="3.632"/> + <PolyStepSegment x="2.367" y="3.656"/> + <PolyStepSegment x="2.307" y="3.716"/> + <PolyStepSegment x="0.718" y="3.716"/> + <PolyStepSegment x="0.702" y="3.700"/> + <PolyStepSegment x="0.450" y="3.700"/> + <PolyStepSegment x="0.400" y="3.650"/> + <PolyStepSegment x="0.400" y="3.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.570" y="3.059"/> + <PolyStepSegment x="0.570" y="3.075"/> + <PolyStepSegment x="0.549" y="3.076"/> + <PolyStepSegment x="0.550" y="3.055"/> + <PolyStepSegment x="0.566" y="3.055"/> + <PolyStepCurve x="0.570" y="3.059" centerX="0.566000" centerY="3.059000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.547" y="3.101"/> + <PolyStepSegment x="0.537" y="3.089"/> + <PolyStepSegment x="0.550" y="3.074"/> + <PolyStepSegment x="0.563" y="3.089"/> + <PolyStepSegment x="0.553" y="3.101"/> + <PolyStepCurve x="0.547" y="3.101" centerX="0.550000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.299" y="0.872"/> + <PolyStepSegment x="1.311" y="0.862"/> + <PolyStepSegment x="1.326" y="0.875"/> + <PolyStepSegment x="1.311" y="0.888"/> + <PolyStepSegment x="1.299" y="0.878"/> + <PolyStepCurve x="1.299" y="0.872" centerX="1.302000" centerY="0.875000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.328" y="3.699"/> + <PolyStepSegment x="0.338" y="3.711"/> + <PolyStepSegment x="0.325" y="3.726"/> + <PolyStepSegment x="0.312" y="3.711"/> + <PolyStepSegment x="0.322" y="3.699"/> + <PolyStepCurve x="0.328" y="3.699" centerX="0.325000" centerY="3.702000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.553" y="3.699"/> + <PolyStepSegment x="2.563" y="3.711"/> + <PolyStepSegment x="2.550" y="3.726"/> + <PolyStepSegment x="2.537" y="3.711"/> + <PolyStepSegment x="2.547" y="3.699"/> + <PolyStepCurve x="2.553" y="3.699" centerX="2.550000" centerY="3.702000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.447" y="3.131"/> + <PolyStepSegment x="2.425" y="3.107"/> + <PolyStepSegment x="2.450" y="3.080"/> + <PolyStepSegment x="2.475" y="3.107"/> + <PolyStepSegment x="2.453" y="3.131"/> + <PolyStepCurve x="2.447" y="3.131" centerX="2.450000" centerY="3.128000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.550" y="3.725"/> + <PolyStepSegment x="2.550" y="3.275"/> + <PolyStepSegment x="2.500" y="3.225"/> + <PolyStepSegment x="2.500" y="3.217"/> + <PolyStepSegment x="2.450" y="3.167"/> + <PolyStepSegment x="2.450" y="3.081"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.075"/> + <PolyStepSegment x="0.550" y="3.250"/> + <PolyStepSegment x="0.500" y="3.300"/> + <PolyStepSegment x="0.475" y="3.300"/> + <PolyStepSegment x="0.425" y="3.250"/> + <PolyStepSegment x="0.375" y="3.250"/> + <PolyStepSegment x="0.325" y="3.300"/> + <PolyStepSegment x="0.325" y="3.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.075"/> + <PolyStepSegment x="0.725" y="2.900"/> + <PolyStepSegment x="0.725" y="2.350"/> + <PolyStepSegment x="0.800" y="2.275"/> + <PolyStepSegment x="0.800" y="1.475"/> + <PolyStepSegment x="0.842" y="1.433"/> + <PolyStepSegment x="0.842" y="1.432"/> + <PolyStepSegment x="1.182" y="1.092"/> + <PolyStepSegment x="1.183" y="1.092"/> + <PolyStepSegment x="1.200" y="1.075"/> + <PolyStepSegment x="1.200" y="0.900"/> + <PolyStepSegment x="1.225" y="0.875"/> + <PolyStepSegment x="1.325" y="0.875"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.484" y="3.276"/> + <PolyStepSegment x="2.450" y="3.275"/> + <PolyStepSegment x="2.449" y="3.237"/> + <PolyStepSegment x="2.487" y="3.238"/> + <PolyStepSegment x="2.488" y="3.272"/> + <PolyStepCurve x="2.484" y="3.276" centerX="2.484000" centerY="3.272000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.570" y="3.434"/> + <PolyStepSegment x="0.570" y="3.450"/> + <PolyStepSegment x="0.549" y="3.451"/> + <PolyStepSegment x="0.550" y="3.430"/> + <PolyStepSegment x="0.566" y="3.430"/> + <PolyStepCurve x="0.570" y="3.434" centerX="0.566000" centerY="3.434000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.547" y="3.476"/> + <PolyStepSegment x="0.537" y="3.464"/> + <PolyStepSegment x="0.550" y="3.449"/> + <PolyStepSegment x="0.563" y="3.464"/> + <PolyStepSegment x="0.553" y="3.476"/> + <PolyStepCurve x="0.547" y="3.476" centerX="0.550000" centerY="3.473000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.853" y="2.226"/> + <PolyStepSegment x="0.843" y="2.214"/> + <PolyStepSegment x="0.856" y="2.199"/> + <PolyStepSegment x="0.869" y="2.214"/> + <PolyStepSegment x="0.859" y="2.226"/> + <PolyStepCurve x="0.853" y="2.226" centerX="0.856000" centerY="2.223000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.550" y="3.450"/> + <PolyStepSegment x="0.625" y="3.375"/> + <PolyStepSegment x="0.625" y="3.050"/> + <PolyStepSegment x="0.856" y="2.819"/> + <PolyStepSegment x="0.856" y="2.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="3.238"/> + <PolyStepSegment x="2.525" y="3.313"/> + <PolyStepSegment x="2.525" y="3.450"/> + <PolyStepSegment x="2.475" y="3.500"/> + <PolyStepSegment x="2.429" y="3.500"/> + <PolyStepSegment x="2.400" y="3.529"/> + <PolyStepSegment x="2.400" y="3.575"/> + <PolyStepSegment x="2.350" y="3.625"/> + <PolyStepSegment x="2.350" y="3.650"/> + <PolyStepSegment x="2.300" y="3.700"/> + <PolyStepSegment x="0.725" y="3.700"/> + <PolyStepSegment x="0.700" y="3.675"/> + <PolyStepSegment x="0.650" y="3.675"/> + <PolyStepSegment x="0.550" y="3.575"/> + <PolyStepSegment x="0.550" y="3.450"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.703" y="3.374"/> + <PolyStepSegment x="0.713" y="3.386"/> + <PolyStepSegment x="0.700" y="3.401"/> + <PolyStepSegment x="0.687" y="3.386"/> + <PolyStepSegment x="0.697" y="3.374"/> + <PolyStepCurve x="0.703" y="3.374" centerX="0.700000" centerY="3.377000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.697" y="3.426"/> + <PolyStepSegment x="0.687" y="3.414"/> + <PolyStepSegment x="0.700" y="3.399"/> + <PolyStepSegment x="0.713" y="3.414"/> + <PolyStepSegment x="0.703" y="3.426"/> + <PolyStepCurve x="0.697" y="3.426" centerX="0.700000" centerY="3.423000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.922" y="2.251"/> + <PolyStepSegment x="0.912" y="2.239"/> + <PolyStepSegment x="0.925" y="2.224"/> + <PolyStepSegment x="0.938" y="2.239"/> + <PolyStepSegment x="0.928" y="2.251"/> + <PolyStepCurve x="0.922" y="2.251" centerX="0.925000" centerY="2.248000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.447" y="3.444"/> + <PolyStepSegment x="2.425" y="3.420"/> + <PolyStepSegment x="2.450" y="3.393"/> + <PolyStepSegment x="2.475" y="3.420"/> + <PolyStepSegment x="2.453" y="3.444"/> + <PolyStepCurve x="2.447" y="3.444" centerX="2.450000" centerY="3.441000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E11697PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="3.400"/> + <PolyStepSegment x="0.700" y="3.371"/> + <PolyStepSegment x="0.707" y="3.364"/> + <PolyStepSegment x="0.707" y="3.336"/> + <PolyStepSegment x="0.675" y="3.304"/> + <PolyStepSegment x="0.675" y="3.050"/> + <PolyStepSegment x="0.818" y="2.907"/> + <PolyStepSegment x="0.818" y="2.886"/> + <PolyStepSegment x="0.836" y="2.868"/> + <PolyStepSegment x="0.857" y="2.868"/> + <PolyStepSegment x="0.925" y="2.800"/> + <PolyStepSegment x="0.925" y="2.225"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11697PA0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.700" y="3.400"/> + <PolyStepSegment x="0.700" y="3.625"/> + <PolyStepSegment x="0.750" y="3.675"/> + <PolyStepSegment x="1.954" y="3.675"/> + <PolyStepSegment x="1.961" y="3.682"/> + <PolyStepSegment x="1.989" y="3.682"/> + <PolyStepSegment x="1.996" y="3.675"/> + <PolyStepSegment x="2.275" y="3.675"/> + <PolyStepSegment x="2.384" y="3.566"/> + <PolyStepSegment x="2.384" y="3.522"/> + <PolyStepSegment x="2.450" y="3.456"/> + <PolyStepSegment x="2.450" y="3.394"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E11613PB0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.190" y="1.450"/> + <PolyStepSegment x="0.400" y="1.450"/> + <PolyStepSegment x="0.450" y="1.500"/> + <PolyStepSegment x="0.450" y="1.560"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.103" y="1.849"/> + <PolyStepSegment x="0.113" y="1.861"/> + <PolyStepSegment x="0.100" y="1.876"/> + <PolyStepSegment x="0.087" y="1.861"/> + <PolyStepSegment x="0.097" y="1.849"/> + <PolyStepCurve x="0.103" y="1.849" centerX="0.100000" centerY="1.852000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.401" y="0.728"/> + <PolyStepSegment x="1.389" y="0.738"/> + <PolyStepSegment x="1.374" y="0.725"/> + <PolyStepSegment x="1.389" y="0.712"/> + <PolyStepSegment x="1.401" y="0.722"/> + <PolyStepCurve x="1.401" y="0.728" centerX="1.398000" centerY="0.725000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.349" y="0.722"/> + <PolyStepSegment x="1.361" y="0.712"/> + <PolyStepSegment x="1.376" y="0.725"/> + <PolyStepSegment x="1.361" y="0.738"/> + <PolyStepSegment x="1.349" y="0.728"/> + <PolyStepCurve x="1.349" y="0.722" centerX="1.352000" centerY="0.725000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.447" y="0.376"/> + <PolyStepSegment x="1.437" y="0.364"/> + <PolyStepSegment x="1.450" y="0.349"/> + <PolyStepSegment x="1.463" y="0.364"/> + <PolyStepSegment x="1.453" y="0.376"/> + <PolyStepCurve x="1.447" y="0.376" centerX="1.450000" centerY="0.373000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E116100PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.375" y="0.725"/> + <PolyStepSegment x="1.425" y="0.725"/> + <PolyStepSegment x="1.450" y="0.700"/> + <PolyStepSegment x="1.450" y="0.350"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E116100PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.100" y="1.875"/> + <PolyStepSegment x="0.100" y="1.646"/> + <PolyStepSegment x="0.107" y="1.639"/> + <PolyStepSegment x="0.107" y="1.611"/> + <PolyStepSegment x="0.100" y="1.604"/> + <PolyStepSegment x="0.100" y="1.375"/> + <PolyStepSegment x="0.150" y="1.325"/> + <PolyStepSegment x="0.225" y="1.325"/> + <PolyStepSegment x="0.250" y="1.300"/> + <PolyStepSegment x="0.250" y="1.200"/> + <PolyStepSegment x="0.175" y="1.125"/> + <PolyStepSegment x="0.175" y="0.900"/> + <PolyStepSegment x="0.250" y="0.825"/> + <PolyStepSegment x="1.150" y="0.825"/> + <PolyStepSegment x="1.250" y="0.725"/> + <PolyStepSegment x="1.375" y="0.725"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.830" y="2.916"/> + <PolyStepSegment x="0.830" y="2.900"/> + <PolyStepSegment x="0.851" y="2.899"/> + <PolyStepSegment x="0.850" y="2.920"/> + <PolyStepSegment x="0.834" y="2.920"/> + <PolyStepCurve x="0.830" y="2.916" centerX="0.834000" centerY="2.916000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.778" y="3.324"/> + <PolyStepSegment x="0.788" y="3.336"/> + <PolyStepSegment x="0.775" y="3.351"/> + <PolyStepSegment x="0.762" y="3.336"/> + <PolyStepSegment x="0.772" y="3.324"/> + <PolyStepCurve x="0.778" y="3.324" centerX="0.775000" centerY="3.327000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.775" y="3.350"/> + <PolyStepSegment x="0.775" y="2.975"/> + <PolyStepSegment x="0.850" y="2.900"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.778" y="2.349"/> + <PolyStepSegment x="1.788" y="2.361"/> + <PolyStepSegment x="1.775" y="2.376"/> + <PolyStepSegment x="1.762" y="2.361"/> + <PolyStepSegment x="1.772" y="2.349"/> + <PolyStepCurve x="1.778" y="2.349" centerX="1.775000" centerY="2.352000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.781" y="0.497"/> + <PolyStepSegment x="2.805" y="0.475"/> + <PolyStepSegment x="2.832" y="0.500"/> + <PolyStepSegment x="2.805" y="0.525"/> + <PolyStepSegment x="2.781" y="0.503"/> + <PolyStepCurve x="2.781" y="0.497" centerX="2.784000" centerY="0.500000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.150" y="1.402"/> + <PolyStepSegment x="2.160" y="1.414"/> + <PolyStepSegment x="2.147" y="1.429"/> + <PolyStepSegment x="2.134" y="1.414"/> + <PolyStepSegment x="2.144" y="1.402"/> + <PolyStepCurve x="2.150" y="1.402" centerX="2.147000" centerY="1.405000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.873" y="1.458"/> + <PolyStepSegment x="1.859" y="1.442"/> + <PolyStepSegment x="1.872" y="1.427"/> + <PolyStepSegment x="1.886" y="1.440"/> + <PolyStepSegment x="1.880" y="1.457"/> + <PolyStepCurve x="1.873" y="1.458" centerX="1.876169" centerY="1.455186" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.872" y="1.578"/> + <PolyStepSegment x="1.876" y="1.549"/> + <PolyStepSegment x="1.876" y="1.432"/> + <PolyStepSegment x="1.872" y="1.428"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.831" y="0.500"/> + <PolyStepSegment x="2.746" y="0.500"/> + <PolyStepSegment x="2.696" y="0.450"/> + <PolyStepSegment x="2.341" y="0.450"/> + <PolyStepSegment x="2.241" y="0.550"/> + <PolyStepSegment x="2.225" y="0.550"/> + <PolyStepSegment x="2.147" y="0.628"/> + <PolyStepSegment x="2.147" y="0.807"/> + <PolyStepSegment x="2.143" y="0.811"/> + <PolyStepSegment x="2.143" y="0.839"/> + <PolyStepSegment x="2.147" y="0.843"/> + <PolyStepSegment x="2.147" y="1.428"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PY0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.775" y="2.375"/> + <PolyStepSegment x="1.775" y="2.346"/> + <PolyStepSegment x="1.782" y="2.339"/> + <PolyStepSegment x="1.782" y="2.311"/> + <PolyStepSegment x="1.775" y="2.304"/> + <PolyStepSegment x="1.775" y="2.050"/> + <PolyStepSegment x="1.825" y="2.000"/> + <PolyStepSegment x="1.825" y="1.967"/> + <PolyStepSegment x="1.811" y="1.953"/> + <PolyStepSegment x="1.811" y="1.897"/> + <PolyStepSegment x="1.825" y="1.883"/> + <PolyStepSegment x="1.825" y="1.658"/> + <PolyStepSegment x="1.833" y="1.650"/> + <PolyStepSegment x="1.862" y="1.650"/> + <PolyStepSegment x="1.868" y="1.607"/> + <PolyStepSegment x="1.872" y="1.578"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.120" y="1.634"/> + <PolyStepSegment x="1.120" y="1.650"/> + <PolyStepSegment x="1.099" y="1.651"/> + <PolyStepSegment x="1.100" y="1.630"/> + <PolyStepSegment x="1.116" y="1.630"/> + <PolyStepCurve x="1.120" y="1.634" centerX="1.116000" centerY="1.634000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.074" y="1.647"/> + <PolyStepSegment x="1.086" y="1.637"/> + <PolyStepSegment x="1.101" y="1.650"/> + <PolyStepSegment x="1.086" y="1.663"/> + <PolyStepSegment x="1.074" y="1.653"/> + <PolyStepCurve x="1.074" y="1.647" centerX="1.077000" centerY="1.650000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.072" y="1.651"/> + <PolyStepSegment x="0.062" y="1.639"/> + <PolyStepSegment x="0.075" y="1.624"/> + <PolyStepSegment x="0.088" y="1.639"/> + <PolyStepSegment x="0.078" y="1.651"/> + <PolyStepCurve x="0.072" y="1.651" centerX="0.075000" centerY="1.648000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.078" y="1.899"/> + <PolyStepSegment x="0.088" y="1.911"/> + <PolyStepSegment x="0.075" y="1.926"/> + <PolyStepSegment x="0.062" y="1.911"/> + <PolyStepSegment x="0.072" y="1.899"/> + <PolyStepCurve x="0.078" y="1.899" centerX="0.075000" centerY="1.902000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.497" y="0.451"/> + <PolyStepSegment x="1.487" y="0.439"/> + <PolyStepSegment x="1.500" y="0.424"/> + <PolyStepSegment x="1.513" y="0.439"/> + <PolyStepSegment x="1.503" y="0.451"/> + <PolyStepCurve x="1.497" y="0.451" centerX="1.500000" centerY="0.448000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="1.650"/> + <PolyStepSegment x="0.975" y="1.650"/> + <PolyStepSegment x="0.870" y="1.545"/> + <PolyStepSegment x="0.870" y="1.505"/> + <PolyStepSegment x="0.877" y="1.498"/> + <PolyStepSegment x="0.877" y="1.467"/> + <PolyStepSegment x="1.217" y="1.127"/> + <PolyStepSegment x="1.247" y="1.127"/> + <PolyStepSegment x="1.468" y="0.907"/> + <PolyStepSegment x="1.468" y="0.482"/> + <PolyStepSegment x="1.500" y="0.450"/> + <PolyStepSegment x="1.500" y="0.425"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.075" y="1.925"/> + <PolyStepSegment x="0.075" y="1.896"/> + <PolyStepSegment x="0.068" y="1.889"/> + <PolyStepSegment x="0.068" y="1.861"/> + <PolyStepSegment x="0.075" y="1.854"/> + <PolyStepSegment x="0.075" y="1.625"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E101101PC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="1.650"/> + <PolyStepSegment x="1.117" y="1.633"/> + <PolyStepSegment x="1.117" y="1.630"/> + <PolyStepSegment x="1.142" y="1.605"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="UN1100E01612PTC0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.845" y="1.392"/> + <PolyStepSegment x="0.812" y="1.425"/> + <PolyStepSegment x="0.750" y="1.425"/> + <PolyStepSegment x="0.725" y="1.400"/> + <PolyStepSegment x="0.665" y="1.400"/> + <PolyStepSegment x="0.640" y="1.375"/> + <PolyStepSegment x="0.580" y="1.375"/> + <PolyStepSegment x="0.555" y="1.400"/> + <PolyStepSegment x="0.190" y="1.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="RESET" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.420" y="3.223"/> + <PolyStepSegment x="1.420" y="3.239"/> + <PolyStepSegment x="1.399" y="3.240"/> + <PolyStepSegment x="1.400" y="3.219"/> + <PolyStepSegment x="1.416" y="3.219"/> + <PolyStepCurve x="1.420" y="3.223" centerX="1.416000" centerY="3.223000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="RESET" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.433" y="2.926"/> + <PolyStepSegment x="1.423" y="2.914"/> + <PolyStepSegment x="1.436" y="2.899"/> + <PolyStepSegment x="1.449" y="2.914"/> + <PolyStepSegment x="1.439" y="2.926"/> + <PolyStepCurve x="1.433" y="2.926" centerX="1.436000" centerY="2.923000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="RESET"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.436" y="2.900"/> + <PolyStepSegment x="1.436" y="3.203"/> + <PolyStepSegment x="1.400" y="3.239"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.366" y="3.306"/> + <PolyStepSegment x="1.366" y="3.322"/> + <PolyStepSegment x="1.345" y="3.323"/> + <PolyStepSegment x="1.346" y="3.302"/> + <PolyStepSegment x="1.362" y="3.302"/> + <PolyStepCurve x="1.366" y="3.306" centerX="1.362000" centerY="3.306000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.372" y="2.576"/> + <PolyStepSegment x="1.362" y="2.564"/> + <PolyStepSegment x="1.375" y="2.549"/> + <PolyStepSegment x="1.388" y="2.564"/> + <PolyStepSegment x="1.378" y="2.576"/> + <PolyStepCurve x="1.372" y="2.576" centerX="1.375000" centerY="2.573000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.375" y="2.550"/> + <PolyStepSegment x="1.375" y="2.579"/> + <PolyStepSegment x="1.382" y="2.586"/> + <PolyStepSegment x="1.382" y="2.772"/> + <PolyStepSegment x="1.368" y="2.786"/> + <PolyStepSegment x="1.368" y="2.814"/> + <PolyStepSegment x="1.382" y="2.828"/> + <PolyStepSegment x="1.382" y="3.097"/> + <PolyStepSegment x="1.368" y="3.111"/> + <PolyStepSegment x="1.368" y="3.253"/> + <PolyStepSegment x="1.382" y="3.267"/> + <PolyStepSegment x="1.382" y="3.293"/> + <PolyStepSegment x="1.370" y="3.305"/> + <PolyStepSegment x="1.363" y="3.305"/> + <PolyStepSegment x="1.346" y="3.322"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="QUADRANT0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.324" y="2.597"/> + <PolyStepSegment x="1.336" y="2.587"/> + <PolyStepSegment x="1.351" y="2.600"/> + <PolyStepSegment x="1.336" y="2.613"/> + <PolyStepSegment x="1.324" y="2.603"/> + <PolyStepCurve x="1.324" y="2.597" centerX="1.327000" centerY="2.600000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.203" y="3.374"/> + <PolyStepSegment x="1.213" y="3.386"/> + <PolyStepSegment x="1.200" y="3.401"/> + <PolyStepSegment x="1.187" y="3.386"/> + <PolyStepSegment x="1.197" y="3.374"/> + <PolyStepCurve x="1.203" y="3.374" centerX="1.200000" centerY="3.377000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="QUADRANT0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.350" y="2.600"/> + <PolyStepSegment x="1.325" y="2.600"/> + <PolyStepSegment x="1.275" y="2.650"/> + <PolyStepSegment x="1.275" y="3.100"/> + <PolyStepSegment x="1.200" y="3.175"/> + <PolyStepSegment x="1.200" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.120" y="3.184"/> + <PolyStepSegment x="1.120" y="3.200"/> + <PolyStepSegment x="1.099" y="3.201"/> + <PolyStepSegment x="1.100" y="3.180"/> + <PolyStepSegment x="1.116" y="3.180"/> + <PolyStepCurve x="1.120" y="3.184" centerX="1.116000" centerY="3.184000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.191" y="2.995"/> + <PolyStepSegment x="1.175" y="2.995"/> + <PolyStepSegment x="1.174" y="2.974"/> + <PolyStepSegment x="1.195" y="2.975"/> + <PolyStepSegment x="1.195" y="2.991"/> + <PolyStepCurve x="1.191" y="2.995" centerX="1.191000" centerY="2.991000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.175" y="2.975"/> + <PolyStepSegment x="1.218" y="3.018"/> + <PolyStepSegment x="1.239" y="3.018"/> + <PolyStepSegment x="1.257" y="3.036"/> + <PolyStepSegment x="1.257" y="3.064"/> + <PolyStepSegment x="1.239" y="3.082"/> + <PolyStepSegment x="1.218" y="3.082"/> + <PolyStepSegment x="1.100" y="3.200"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.116" y="3.037"/> + <PolyStepSegment x="1.126" y="3.049"/> + <PolyStepSegment x="1.113" y="3.064"/> + <PolyStepSegment x="1.100" y="3.049"/> + <PolyStepSegment x="1.110" y="3.037"/> + <PolyStepCurve x="1.116" y="3.037" centerX="1.113000" centerY="3.040000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.110" y="3.014"/> + <PolyStepSegment x="1.100" y="3.002"/> + <PolyStepSegment x="1.113" y="2.987"/> + <PolyStepSegment x="1.126" y="3.002"/> + <PolyStepSegment x="1.116" y="3.014"/> + <PolyStepCurve x="1.110" y="3.014" centerX="1.113000" centerY="3.011000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.113" y="2.988"/> + <PolyStepSegment x="1.113" y="3.063"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="PHASE0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.041" y="3.020"/> + <PolyStepSegment x="1.025" y="3.020"/> + <PolyStepSegment x="1.024" y="2.999"/> + <PolyStepSegment x="1.045" y="3.000"/> + <PolyStepSegment x="1.045" y="3.016"/> + <PolyStepCurve x="1.041" y="3.020" centerX="1.041000" centerY="3.016000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.199" y="3.047"/> + <PolyStepSegment x="1.211" y="3.037"/> + <PolyStepSegment x="1.226" y="3.050"/> + <PolyStepSegment x="1.211" y="3.063"/> + <PolyStepSegment x="1.199" y="3.053"/> + <PolyStepCurve x="1.199" y="3.047" centerX="1.202000" centerY="3.050000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="PHASE0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.225" y="3.050"/> + <PolyStepSegment x="1.172" y="3.050"/> + <PolyStepSegment x="1.127" y="3.095"/> + <PolyStepSegment x="1.099" y="3.095"/> + <PolyStepSegment x="1.081" y="3.077"/> + <PolyStepSegment x="1.081" y="3.056"/> + <PolyStepSegment x="1.025" y="3.000"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="OE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.403" y="3.453"/> + <PolyStepSegment x="1.412" y="3.446"/> + <PolyStepSegment x="1.426" y="3.449"/> + <PolyStepSegment x="1.413" y="3.461"/> + <PolyStepSegment x="1.405" y="3.460"/> + <PolyStepCurve x="1.403" y="3.453" centerX="1.405860" centerY="3.455969" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="OE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.322" y="3.051"/> + <PolyStepSegment x="1.312" y="3.039"/> + <PolyStepSegment x="1.325" y="3.024"/> + <PolyStepSegment x="1.338" y="3.039"/> + <PolyStepSegment x="1.328" y="3.051"/> + <PolyStepCurve x="1.322" y="3.051" centerX="1.325000" centerY="3.048000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="OE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.425" y="3.449"/> + <PolyStepSegment x="1.418" y="3.456"/> + <PolyStepSegment x="1.406" y="3.456"/> + <PolyStepSegment x="1.332" y="3.382"/> + <PolyStepSegment x="1.311" y="3.382"/> + <PolyStepSegment x="1.293" y="3.364"/> + <PolyStepSegment x="1.293" y="3.307"/> + <PolyStepSegment x="1.325" y="3.275"/> + <PolyStepSegment x="1.325" y="3.025"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.034" y="2.280"/> + <PolyStepSegment x="0.050" y="2.280"/> + <PolyStepSegment x="0.051" y="2.301"/> + <PolyStepSegment x="0.030" y="2.300"/> + <PolyStepSegment x="0.030" y="2.284"/> + <PolyStepCurve x="0.034" y="2.280" centerX="0.034000" centerY="2.284000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.374" y="0.222"/> + <PolyStepSegment x="1.386" y="0.212"/> + <PolyStepSegment x="1.401" y="0.225"/> + <PolyStepSegment x="1.386" y="0.238"/> + <PolyStepSegment x="1.374" y="0.228"/> + <PolyStepCurve x="1.374" y="0.222" centerX="1.377000" centerY="0.225000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="0.039" y="1.303"/> + <PolyStepSegment x="0.028" y="1.314"/> + <PolyStepSegment x="0.025" y="1.300"/> + <PolyStepSegment x="0.036" y="1.300"/> + <PolyStepSegment x="0.039" y="1.303"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="DISABLE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.025" y="1.300"/> + <PolyStepSegment x="0.025" y="2.275"/> + <PolyStepSegment x="0.050" y="2.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="DISABLE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.025" y="1.300"/> + <PolyStepSegment x="0.190" y="1.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="DISABLE"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="0.225"/> + <PolyStepSegment x="1.050" y="0.225"/> + <PolyStepSegment x="0.900" y="0.375"/> + <PolyStepSegment x="0.050" y="0.375"/> + <PolyStepSegment x="-0.050" y="0.475"/> + <PolyStepSegment x="-0.050" y="1.225"/> + <PolyStepSegment x="0.025" y="1.300"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.820" y="0.859"/> + <PolyStepSegment x="1.820" y="0.875"/> + <PolyStepSegment x="1.799" y="0.876"/> + <PolyStepSegment x="1.800" y="0.855"/> + <PolyStepSegment x="1.816" y="0.855"/> + <PolyStepCurve x="1.820" y="0.859" centerX="1.816000" centerY="0.859000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.242" y="1.907"/> + <PolyStepSegment x="2.275" y="1.908"/> + <PolyStepSegment x="2.276" y="1.945"/> + <PolyStepSegment x="2.239" y="1.944"/> + <PolyStepSegment x="2.238" y="1.911"/> + <PolyStepCurve x="2.242" y="1.907" centerX="2.242000" centerY="1.911000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="0.875"/> + <PolyStepSegment x="1.825" y="0.850"/> + <PolyStepSegment x="1.825" y="0.725"/> + <PolyStepSegment x="1.900" y="0.650"/> + <PolyStepSegment x="2.025" y="0.650"/> + <PolyStepSegment x="2.075" y="0.700"/> + <PolyStepSegment x="2.075" y="1.744"/> + <PolyStepSegment x="2.275" y="1.944"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.670" y="1.734"/> + <PolyStepSegment x="1.670" y="1.750"/> + <PolyStepSegment x="1.649" y="1.751"/> + <PolyStepSegment x="1.650" y="1.730"/> + <PolyStepSegment x="1.666" y="1.730"/> + <PolyStepCurve x="1.670" y="1.734" centerX="1.666000" centerY="1.734000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.747" y="1.226"/> + <PolyStepSegment x="1.737" y="1.214"/> + <PolyStepSegment x="1.750" y="1.199"/> + <PolyStepSegment x="1.763" y="1.214"/> + <PolyStepSegment x="1.753" y="1.226"/> + <PolyStepCurve x="1.747" y="1.226" centerX="1.750000" centerY="1.223000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="1.200"/> + <PolyStepSegment x="1.750" y="1.529"/> + <PolyStepSegment x="1.752" y="1.532"/> + <PolyStepSegment x="1.744" y="1.592"/> + <PolyStepSegment x="1.750" y="1.600"/> + <PolyStepSegment x="1.750" y="1.650"/> + <PolyStepSegment x="1.650" y="1.750"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.697" y="1.251"/> + <PolyStepSegment x="1.687" y="1.239"/> + <PolyStepSegment x="1.700" y="1.224"/> + <PolyStepSegment x="1.713" y="1.239"/> + <PolyStepSegment x="1.703" y="1.251"/> + <PolyStepCurve x="1.697" y="1.251" centerX="1.700000" centerY="1.248000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.553" y="1.824"/> + <PolyStepSegment x="1.563" y="1.836"/> + <PolyStepSegment x="1.550" y="1.851"/> + <PolyStepSegment x="1.537" y="1.836"/> + <PolyStepSegment x="1.547" y="1.824"/> + <PolyStepCurve x="1.553" y="1.824" centerX="1.550000" centerY="1.827000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.700" y="1.225"/> + <PolyStepSegment x="1.700" y="1.522"/> + <PolyStepSegment x="1.702" y="1.525"/> + <PolyStepSegment x="1.694" y="1.585"/> + <PolyStepSegment x="1.700" y="1.593"/> + <PolyStepSegment x="1.700" y="1.650"/> + <PolyStepSegment x="1.650" y="1.700"/> + <PolyStepSegment x="1.600" y="1.700"/> + <PolyStepSegment x="1.550" y="1.750"/> + <PolyStepSegment x="1.550" y="1.850"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B1" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.554" y="1.568"/> + <PolyStepSegment x="1.556" y="1.589"/> + <PolyStepSegment x="1.542" y="1.601"/> + <PolyStepSegment x="1.529" y="1.586"/> + <PolyStepSegment x="1.547" y="1.566"/> + <PolyStepCurve x="1.554" y="1.568" centerX="1.549969" centerY="1.568860" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.574" y="1.539"/> + <PolyStepSegment x="1.572" y="1.551"/> + <PolyStepSegment x="1.550" y="1.569"/> + <PolyStepSegment x="1.550" y="1.592"/> + <PolyStepSegment x="1.542" y="1.600"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="B0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.922" y="0.751"/> + <PolyStepSegment x="1.912" y="0.739"/> + <PolyStepSegment x="1.925" y="0.724"/> + <PolyStepSegment x="1.938" y="0.739"/> + <PolyStepSegment x="1.928" y="0.751"/> + <PolyStepCurve x="1.922" y="0.751" centerX="1.925000" centerY="0.748000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="B0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="0.725"/> + <PolyStepSegment x="1.925" y="0.975"/> + <PolyStepSegment x="1.850" y="1.050"/> + <PolyStepSegment x="1.575" y="1.050"/> + <PolyStepSegment x="1.529" y="1.096"/> + <PolyStepSegment x="1.529" y="1.166"/> + <PolyStepSegment x="1.526" y="1.187"/> + <PolyStepSegment x="1.525" y="1.188"/> + <PolyStepSegment x="1.525" y="1.202"/> + <PolyStepSegment x="1.520" y="1.237"/> + <PolyStepSegment x="1.520" y="1.249"/> + <PolyStepSegment x="1.518" y="1.251"/> + <PolyStepSegment x="1.513" y="1.286"/> + <PolyStepSegment x="1.512" y="1.287"/> + <PolyStepSegment x="1.512" y="1.301"/> + <PolyStepSegment x="1.507" y="1.336"/> + <PolyStepSegment x="1.507" y="1.350"/> + <PolyStepSegment x="1.505" y="1.352"/> + <PolyStepSegment x="1.500" y="1.386"/> + <PolyStepSegment x="1.500" y="1.395"/> + <PolyStepSegment x="1.508" y="1.403"/> + <PolyStepSegment x="1.522" y="1.421"/> + <PolyStepSegment x="1.529" y="1.422"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.972" y="3.426"/> + <PolyStepSegment x="1.962" y="3.414"/> + <PolyStepSegment x="1.975" y="3.399"/> + <PolyStepSegment x="1.988" y="3.414"/> + <PolyStepSegment x="1.978" y="3.426"/> + <PolyStepCurve x="1.972" y="3.426" centerX="1.975000" centerY="3.423000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.995" y="3.384"/> + <PolyStepSegment x="1.995" y="3.400"/> + <PolyStepSegment x="1.974" y="3.401"/> + <PolyStepSegment x="1.975" y="3.380"/> + <PolyStepSegment x="1.991" y="3.380"/> + <PolyStepCurve x="1.995" y="3.384" centerX="1.991000" centerY="3.384000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.978" y="3.624"/> + <PolyStepSegment x="1.988" y="3.636"/> + <PolyStepSegment x="1.975" y="3.651"/> + <PolyStepSegment x="1.962" y="3.636"/> + <PolyStepSegment x="1.972" y="3.624"/> + <PolyStepCurve x="1.978" y="3.624" centerX="1.975000" centerY="3.627000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.922" y="2.676"/> + <PolyStepSegment x="1.912" y="2.664"/> + <PolyStepSegment x="1.925" y="2.649"/> + <PolyStepSegment x="1.938" y="2.664"/> + <PolyStepSegment x="1.928" y="2.676"/> + <PolyStepCurve x="1.922" y="2.676" centerX="1.925000" centerY="2.673000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="2.650"/> + <PolyStepSegment x="1.925" y="2.679"/> + <PolyStepSegment x="1.932" y="2.686"/> + <PolyStepSegment x="1.932" y="2.714"/> + <PolyStepSegment x="1.925" y="2.721"/> + <PolyStepSegment x="1.925" y="2.900"/> + <PolyStepSegment x="2.100" y="3.075"/> + <PolyStepSegment x="2.100" y="3.275"/> + <PolyStepSegment x="1.975" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="3.650"/> + <PolyStepSegment x="1.975" y="3.400"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.347" y="3.526"/> + <PolyStepSegment x="1.337" y="3.514"/> + <PolyStepSegment x="1.350" y="3.499"/> + <PolyStepSegment x="1.363" y="3.514"/> + <PolyStepSegment x="1.353" y="3.526"/> + <PolyStepCurve x="1.347" y="3.526" centerX="1.350000" centerY="3.523000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.353" y="3.599"/> + <PolyStepSegment x="1.363" y="3.611"/> + <PolyStepSegment x="1.350" y="3.626"/> + <PolyStepSegment x="1.337" y="3.611"/> + <PolyStepSegment x="1.347" y="3.599"/> + <PolyStepCurve x="1.353" y="3.599" centerX="1.350000" centerY="3.602000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.350" y="3.625"/> + <PolyStepSegment x="1.350" y="3.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="2.053" y="3.224"/> + <PolyStepSegment x="2.063" y="3.236"/> + <PolyStepSegment x="2.050" y="3.251"/> + <PolyStepSegment x="2.037" y="3.236"/> + <PolyStepSegment x="2.047" y="3.224"/> + <PolyStepCurve x="2.053" y="3.224" centerX="2.050000" centerY="3.227000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS7" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.897" y="2.726"/> + <PolyStepSegment x="1.887" y="2.714"/> + <PolyStepSegment x="1.900" y="2.699"/> + <PolyStepSegment x="1.913" y="2.714"/> + <PolyStepSegment x="1.903" y="2.726"/> + <PolyStepCurve x="1.897" y="2.726" centerX="1.900000" centerY="2.723000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="3.250"/> + <PolyStepSegment x="2.050" y="3.125"/> + <PolyStepSegment x="1.900" y="2.975"/> + <PolyStepSegment x="1.900" y="2.796"/> + <PolyStepSegment x="1.907" y="2.789"/> + <PolyStepSegment x="1.907" y="2.761"/> + <PolyStepSegment x="1.900" y="2.754"/> + <PolyStepSegment x="1.900" y="2.700"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.959" y="3.180"/> + <PolyStepSegment x="1.975" y="3.180"/> + <PolyStepSegment x="1.976" y="3.201"/> + <PolyStepSegment x="1.955" y="3.200"/> + <PolyStepSegment x="1.955" y="3.184"/> + <PolyStepCurve x="1.959" y="3.180" centerX="1.959000" centerY="3.184000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS6" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.872" y="2.801"/> + <PolyStepSegment x="1.862" y="2.789"/> + <PolyStepSegment x="1.875" y="2.774"/> + <PolyStepSegment x="1.888" y="2.789"/> + <PolyStepSegment x="1.878" y="2.801"/> + <PolyStepCurve x="1.872" y="2.801" centerX="1.875000" centerY="2.798000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="3.200"/> + <PolyStepSegment x="1.925" y="3.150"/> + <PolyStepSegment x="1.925" y="3.025"/> + <PolyStepSegment x="1.875" y="2.975"/> + <PolyStepSegment x="1.875" y="2.775"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.791" y="2.520"/> + <PolyStepSegment x="1.775" y="2.520"/> + <PolyStepSegment x="1.774" y="2.499"/> + <PolyStepSegment x="1.795" y="2.500"/> + <PolyStepSegment x="1.795" y="2.516"/> + <PolyStepCurve x="1.791" y="2.520" centerX="1.791000" centerY="2.516000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.120" y="3.484"/> + <PolyStepSegment x="1.120" y="3.500"/> + <PolyStepSegment x="1.099" y="3.501"/> + <PolyStepSegment x="1.100" y="3.480"/> + <PolyStepSegment x="1.116" y="3.480"/> + <PolyStepCurve x="1.120" y="3.484" centerX="1.116000" centerY="3.484000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.847" y="3.101"/> + <PolyStepSegment x="1.837" y="3.089"/> + <PolyStepSegment x="1.850" y="3.074"/> + <PolyStepSegment x="1.863" y="3.089"/> + <PolyStepSegment x="1.853" y="3.101"/> + <PolyStepCurve x="1.847" y="3.101" centerX="1.850000" centerY="3.098000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.834" y="3.055"/> + <PolyStepSegment x="1.850" y="3.055"/> + <PolyStepSegment x="1.851" y="3.076"/> + <PolyStepSegment x="1.830" y="3.075"/> + <PolyStepSegment x="1.830" y="3.059"/> + <PolyStepCurve x="1.834" y="3.055" centerX="1.834000" centerY="3.059000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.850" y="3.075"/> + <PolyStepSegment x="1.850" y="3.375"/> + <PolyStepSegment x="1.775" y="3.450"/> + <PolyStepSegment x="1.463" y="3.450"/> + <PolyStepSegment x="1.457" y="3.456"/> + <PolyStepSegment x="1.457" y="3.463"/> + <PolyStepSegment x="1.425" y="3.495"/> + <PolyStepSegment x="1.402" y="3.472"/> + <PolyStepSegment x="1.399" y="3.472"/> + <PolyStepSegment x="1.377" y="3.450"/> + <PolyStepSegment x="1.150" y="3.450"/> + <PolyStepSegment x="1.100" y="3.500"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.775" y="2.500"/> + <PolyStepSegment x="1.800" y="2.525"/> + <PolyStepSegment x="1.800" y="3.025"/> + <PolyStepSegment x="1.850" y="3.075"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.784" y="3.055"/> + <PolyStepSegment x="1.800" y="3.055"/> + <PolyStepSegment x="1.801" y="3.076"/> + <PolyStepSegment x="1.780" y="3.075"/> + <PolyStepSegment x="1.780" y="3.059"/> + <PolyStepCurve x="1.784" y="3.055" centerX="1.784000" centerY="3.059000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS4" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.747" y="2.726"/> + <PolyStepSegment x="1.737" y="2.714"/> + <PolyStepSegment x="1.750" y="2.699"/> + <PolyStepSegment x="1.763" y="2.714"/> + <PolyStepSegment x="1.753" y="2.726"/> + <PolyStepCurve x="1.747" y="2.726" centerX="1.750000" centerY="2.723000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.750" y="2.700"/> + <PolyStepSegment x="1.750" y="3.025"/> + <PolyStepSegment x="1.800" y="3.075"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.720" y="3.034"/> + <PolyStepSegment x="1.720" y="3.050"/> + <PolyStepSegment x="1.699" y="3.051"/> + <PolyStepSegment x="1.700" y="3.030"/> + <PolyStepSegment x="1.716" y="3.030"/> + <PolyStepCurve x="1.720" y="3.034" centerX="1.716000" centerY="3.034000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS3" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.722" y="2.626"/> + <PolyStepSegment x="1.712" y="2.614"/> + <PolyStepSegment x="1.725" y="2.599"/> + <PolyStepSegment x="1.738" y="2.614"/> + <PolyStepSegment x="1.728" y="2.626"/> + <PolyStepCurve x="1.722" y="2.626" centerX="1.725000" centerY="2.623000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.725" y="2.600"/> + <PolyStepSegment x="1.725" y="2.679"/> + <PolyStepSegment x="1.718" y="2.686"/> + <PolyStepSegment x="1.718" y="2.714"/> + <PolyStepSegment x="1.725" y="2.721"/> + <PolyStepSegment x="1.725" y="3.025"/> + <PolyStepSegment x="1.700" y="3.050"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.620" y="3.034"/> + <PolyStepSegment x="1.620" y="3.050"/> + <PolyStepSegment x="1.599" y="3.051"/> + <PolyStepSegment x="1.600" y="3.030"/> + <PolyStepSegment x="1.616" y="3.030"/> + <PolyStepCurve x="1.620" y="3.034" centerX="1.616000" centerY="3.034000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS2" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.622" y="2.701"/> + <PolyStepSegment x="1.612" y="2.689"/> + <PolyStepSegment x="1.625" y="2.674"/> + <PolyStepSegment x="1.638" y="2.689"/> + <PolyStepSegment x="1.628" y="2.701"/> + <PolyStepCurve x="1.622" y="2.701" centerX="1.625000" centerY="2.698000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.625" y="2.675"/> + <PolyStepSegment x="1.625" y="2.704"/> + <PolyStepSegment x="1.632" y="2.711"/> + <PolyStepSegment x="1.632" y="2.739"/> + <PolyStepSegment x="1.625" y="2.746"/> + <PolyStepSegment x="1.625" y="2.954"/> + <PolyStepSegment x="1.618" y="2.961"/> + <PolyStepSegment x="1.618" y="2.989"/> + <PolyStepSegment x="1.625" y="2.996"/> + <PolyStepSegment x="1.625" y="3.025"/> + <PolyStepSegment x="1.600" y="3.050"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set net="ADDRESS0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.397" y="2.826"/> + <PolyStepSegment x="1.387" y="2.814"/> + <PolyStepSegment x="1.400" y="2.799"/> + <PolyStepSegment x="1.413" y="2.814"/> + <PolyStepSegment x="1.403" y="2.826"/> + <PolyStepCurve x="1.397" y="2.826" centerX="1.400000" centerY="2.823000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS0" geometryUsage="TEARDROP"> + <NonstandardAttribute name="FILLET" value="true" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="1.403" y="3.099"/> + <PolyStepSegment x="1.413" y="3.111"/> + <PolyStepSegment x="1.400" y="3.126"/> + <PolyStepSegment x="1.387" y="3.111"/> + <PolyStepSegment x="1.397" y="3.099"/> + <PolyStepCurve x="1.403" y="3.099" centerX="1.400000" centerY="3.102000" clockwise="false"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set net="ADDRESS0"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.400" y="3.125"/> + <PolyStepSegment x="1.400" y="2.800"/> + <LineDescRef id="ROUND_8"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Bottom - Layer6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.310" y="-0.435"/> + <PolyStepSegment x="1.314" y="-0.431"/> + <PolyStepSegment x="1.317" y="-0.425"/> + <PolyStepSegment x="1.319" y="-0.416"/> + <PolyStepSegment x="1.317" y="-0.409"/> + <PolyStepSegment x="1.313" y="-0.404"/> + <PolyStepSegment x="1.307" y="-0.400"/> + <PolyStepSegment x="1.282" y="-0.400"/> + <PolyStepSegment x="1.282" y="-0.475"/> + <PolyStepSegment x="1.312" y="-0.475"/> + <PolyStepSegment x="1.319" y="-0.470"/> + <PolyStepSegment x="1.323" y="-0.463"/> + <PolyStepSegment x="1.324" y="-0.454"/> + <PolyStepSegment x="1.323" y="-0.445"/> + <PolyStepSegment x="1.317" y="-0.438"/> + <PolyStepSegment x="1.310" y="-0.435"/> + <PolyStepSegment x="1.282" y="-0.435"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.378" y="-0.475"/> + <PolyStepSegment x="1.372" y="-0.474"/> + <PolyStepSegment x="1.367" y="-0.469"/> + <PolyStepSegment x="1.363" y="-0.460"/> + <PolyStepSegment x="1.361" y="-0.450"/> + <PolyStepSegment x="1.363" y="-0.440"/> + <PolyStepSegment x="1.367" y="-0.431"/> + <PolyStepSegment x="1.372" y="-0.426"/> + <PolyStepSegment x="1.378" y="-0.425"/> + <PolyStepSegment x="1.384" y="-0.426"/> + <PolyStepSegment x="1.389" y="-0.431"/> + <PolyStepSegment x="1.393" y="-0.440"/> + <PolyStepSegment x="1.394" y="-0.450"/> + <PolyStepSegment x="1.393" y="-0.460"/> + <PolyStepSegment x="1.389" y="-0.469"/> + <PolyStepSegment x="1.384" y="-0.474"/> + <PolyStepSegment x="1.378" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.453" y="-0.400"/> + <PolyStepSegment x="1.453" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.440" y="-0.425"/> + <PolyStepSegment x="1.466" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.528" y="-0.400"/> + <PolyStepSegment x="1.528" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.515" y="-0.425"/> + <PolyStepSegment x="1.541" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.603" y="-0.475"/> + <PolyStepSegment x="1.597" y="-0.474"/> + <PolyStepSegment x="1.592" y="-0.469"/> + <PolyStepSegment x="1.588" y="-0.460"/> + <PolyStepSegment x="1.586" y="-0.450"/> + <PolyStepSegment x="1.588" y="-0.440"/> + <PolyStepSegment x="1.592" y="-0.431"/> + <PolyStepSegment x="1.597" y="-0.426"/> + <PolyStepSegment x="1.603" y="-0.425"/> + <PolyStepSegment x="1.609" y="-0.426"/> + <PolyStepSegment x="1.614" y="-0.431"/> + <PolyStepSegment x="1.618" y="-0.440"/> + <PolyStepSegment x="1.619" y="-0.450"/> + <PolyStepSegment x="1.618" y="-0.460"/> + <PolyStepSegment x="1.614" y="-0.469"/> + <PolyStepSegment x="1.609" y="-0.474"/> + <PolyStepSegment x="1.603" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.650" y="-0.475"/> + <PolyStepSegment x="1.650" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.650" y="-0.439"/> + <PolyStepSegment x="1.653" y="-0.432"/> + <PolyStepSegment x="1.657" y="-0.428"/> + <PolyStepSegment x="1.664" y="-0.425"/> + <PolyStepSegment x="1.671" y="-0.428"/> + <PolyStepSegment x="1.675" y="-0.432"/> + <PolyStepSegment x="1.678" y="-0.439"/> + <PolyStepSegment x="1.678" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.678" y="-0.439"/> + <PolyStepSegment x="1.681" y="-0.432"/> + <PolyStepSegment x="1.685" y="-0.428"/> + <PolyStepSegment x="1.692" y="-0.425"/> + <PolyStepSegment x="1.699" y="-0.428"/> + <PolyStepSegment x="1.703" y="-0.432"/> + <PolyStepSegment x="1.706" y="-0.440"/> + <PolyStepSegment x="1.706" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.816" y="-0.450"/> + <PolyStepSegment x="1.840" y="-0.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.959" y="-0.400"/> + <PolyStepSegment x="1.959" y="-0.475"/> + <PolyStepSegment x="1.997" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.070" y="-0.475"/> + <PolyStepSegment x="2.070" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.070" y="-0.434"/> + <PolyStepSegment x="2.066" y="-0.429"/> + <PolyStepSegment x="2.060" y="-0.426"/> + <PolyStepSegment x="2.054" y="-0.425"/> + <PolyStepSegment x="2.047" y="-0.428"/> + <PolyStepSegment x="2.042" y="-0.432"/> + <PolyStepSegment x="2.038" y="-0.440"/> + <PolyStepSegment x="2.036" y="-0.450"/> + <PolyStepSegment x="2.038" y="-0.460"/> + <PolyStepSegment x="2.042" y="-0.468"/> + <PolyStepSegment x="2.047" y="-0.473"/> + <PolyStepSegment x="2.054" y="-0.475"/> + <PolyStepSegment x="2.060" y="-0.474"/> + <PolyStepSegment x="2.066" y="-0.470"/> + <PolyStepSegment x="2.070" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.108" y="-0.497"/> + <PolyStepSegment x="2.114" y="-0.500"/> + <PolyStepSegment x="2.121" y="-0.497"/> + <PolyStepSegment x="2.126" y="-0.493"/> + <PolyStepSegment x="2.130" y="-0.486"/> + <PolyStepSegment x="2.135" y="-0.466"/> + <PolyStepSegment x="2.148" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.118" y="-0.425"/> + <PolyStepSegment x="2.135" y="-0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.189" y="-0.441"/> + <PolyStepSegment x="2.219" y="-0.441"/> + <PolyStepSegment x="2.216" y="-0.432"/> + <PolyStepSegment x="2.211" y="-0.428"/> + <PolyStepSegment x="2.205" y="-0.425"/> + <PolyStepSegment x="2.198" y="-0.426"/> + <PolyStepSegment x="2.193" y="-0.430"/> + <PolyStepSegment x="2.189" y="-0.439"/> + <PolyStepSegment x="2.187" y="-0.446"/> + <PolyStepSegment x="2.187" y="-0.454"/> + <PolyStepSegment x="2.189" y="-0.461"/> + <PolyStepSegment x="2.194" y="-0.469"/> + <PolyStepSegment x="2.199" y="-0.474"/> + <PolyStepSegment x="2.206" y="-0.475"/> + <PolyStepSegment x="2.212" y="-0.473"/> + <PolyStepSegment x="2.219" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.265" y="-0.475"/> + <PolyStepSegment x="2.265" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.265" y="-0.435"/> + <PolyStepSegment x="2.270" y="-0.430"/> + <PolyStepSegment x="2.274" y="-0.426"/> + <PolyStepSegment x="2.281" y="-0.425"/> + <PolyStepSegment x="2.285" y="-0.426"/> + <PolyStepSegment x="2.291" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.335" y="-0.444"/> + <PolyStepSegment x="2.342" y="-0.435"/> + <PolyStepSegment x="2.347" y="-0.430"/> + <PolyStepSegment x="2.355" y="-0.428"/> + <PolyStepSegment x="2.361" y="-0.430"/> + <PolyStepSegment x="2.366" y="-0.435"/> + <PolyStepSegment x="2.370" y="-0.443"/> + <PolyStepSegment x="2.371" y="-0.451"/> + <PolyStepSegment x="2.370" y="-0.459"/> + <PolyStepSegment x="2.366" y="-0.466"/> + <PolyStepSegment x="2.360" y="-0.473"/> + <PolyStepSegment x="2.354" y="-0.475"/> + <PolyStepSegment x="2.346" y="-0.473"/> + <PolyStepSegment x="2.340" y="-0.465"/> + <PolyStepSegment x="2.336" y="-0.454"/> + <PolyStepSegment x="2.335" y="-0.441"/> + <PolyStepSegment x="2.337" y="-0.425"/> + <PolyStepSegment x="2.340" y="-0.416"/> + <PolyStepSegment x="2.345" y="-0.408"/> + <PolyStepSegment x="2.351" y="-0.401"/> + <PolyStepSegment x="2.358" y="-0.400"/> + <PolyStepSegment x="2.364" y="-0.402"/> + <PolyStepSegment x="2.369" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set net="ZEROCROSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="0.475"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.393" y="3.390"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.525" y="0.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="WAVEOUT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.575" y="0.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VSS" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="0.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VDD" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.950" y="0.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.825" y="2.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.675" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.175"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.562" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="2.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.100" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP20" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.225" y="0.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1CA345020PCMP10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.150" y="0.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.500" y="1.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.425" y="1.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.572" y="1.472"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.624" y="1.624"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.325"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.500" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.600" y="2.275"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.400" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.550" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.325" y="3.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.856" y="2.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.550" y="3.450"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.925" y="2.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.700" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.450" y="0.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.100" y="1.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.775" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.850" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="2.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.575" y="2.525"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.872" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.147" y="1.428"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.375"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="0.425"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.075" y="1.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="1.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.436" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="RESET" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.239"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.375" y="2.550"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.346" y="3.322"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.200" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="QUADRANT0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.175" y="2.975"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="2.988"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.113" y="3.063"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.225" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="PHASE0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.025" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.325" y="3.025"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="OE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.425" y="3.449"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="0.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.050" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="1.925"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="0.875"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.175" y="0.825"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="1.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.650" y="1.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="1.850"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="1.225"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.542" y="1.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="0.750"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="0.725"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.925" y="2.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS9" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="2.575"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.000" y="3.300"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.625"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS8" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.350" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.900" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS7" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="2.050" y="3.250"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.875" y="2.775"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS6" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.975" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.850" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.100" y="3.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS5" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.775" y="2.500"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.750" y="2.700"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS4" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.800" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.725" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS3" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.700" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.625" y="2.675"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.600" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.500" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS1" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.550" y="3.075"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="3.125"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="ADDRESS0" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="1.400" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false" plate="true" padUsage="VIA"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="VIA"> + <Location x="0.675" y="3.350"/> + <StandardPrimitiveRef id="CIRCLE_1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="1" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="2" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0430" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="3" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="4" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="5" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.800"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="6" componentRef="J1"/> + </Pad> + </Set> + <Set net="VCC" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="2.900"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="7" componentRef="J1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0498" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.000"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="8" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.100"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="9" componentRef="J1"/> + </Pad> + </Set> + <Set net="GND" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="52C31D"> + <Xform rotation="90.000"/> + <Location x="0.050" y="3.200"/> + <StandardPrimitiveRef id="CIRCLE_2"/> + <PinRef pin="10" componentRef="J1"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="2.600"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="100C75D"> + <Xform rotation="90.000"/> + <Location x="-0.050" y="3.400"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="3.750"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="3.000" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="TH-125-NP"> + <Location x="0.0" y="0.0"/> + <StandardPrimitiveRef id="CIRCLE_3"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.150"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="2.250"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="2.850"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.050"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.600" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR62D35P"> + <Xform rotation="90.000"/> + <Location x="2.800" y="3.650"/> + <StandardPrimitiveRef id="CIRCLE_4"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6270" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.827" y="1.148"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6208" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.978" y="1.228"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E61A0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.777" y="1.142"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6138" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.727" y="1.135"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E60D0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.971" y="1.278"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6068" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.678" y="1.129"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E6000" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.561" y="1.174"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5F98" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.965" y="1.327"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5F30" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.555" y="1.224"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5EC8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.548" y="1.273"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5E60" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.952" y="1.427"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5DF8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.542" y="1.323"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U11"/> + </Pad> + </Set> + <Set net="B0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.529" y="1.422"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.945" y="1.476"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.522" y="1.472"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U11"/> + </Pad> + </Set> + <Set net="B1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.574" y="1.539"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.872" y="1.578"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.939" y="1.526"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.822" y="1.571"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5D90" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.773" y="1.565"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U11"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.624" y="1.545"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U11"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.535" y="1.373"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U11"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.876" y="1.155"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U11"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.628" y="1.122"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U11"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.673" y="1.552"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U11"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.958" y="1.377"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5D28" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.926" y="1.161"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5CC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="82.601" mirror="true"/> + <Location x="1.723" y="1.558"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U11"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5B20" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5AB8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.500" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5A50" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E59E8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.550" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5980" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5918" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E58B0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.550" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5848" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E57E0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.450" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5778" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.300" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5710" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.400" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E56A8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.350" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5640" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.300" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E55D8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.500"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5570" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.250" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E5508" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.250" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U16"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U16"/> + </Pad> + </Set> + <Set net="UN1100E11613PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.450" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U16"/> + </Pad> + </Set> + <Set net="UN1100E01612PTC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U16"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.300"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U16"/> + </Pad> + </Set> + <Set net="UN1100E11613PB0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.450"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.400"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.610" y="1.250"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.500" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.200"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.190" y="1.350"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U16"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.350" y="1.140"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U16"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="360.000" mirror="true"/> + <Location x="0.400" y="1.560"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U16"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3A38" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.213" y="1.534"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="28" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E39D0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.845" y="1.308"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="18" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3968" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.881" y="1.272"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="17" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3900" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.952" y="1.202"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="15" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3898" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.022" y="1.131"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="13" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3830" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.058" y="1.095"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="12" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E37C8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.142" y="1.095"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="11" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3760" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.178" y="1.131"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="10" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E36F8" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.213" y="1.166"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="9" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.987" y="1.534"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="23" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.952" y="1.498"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="22" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.916" y="1.463"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="21" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.284" y="1.237"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="7" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.319" y="1.272"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="6" componentRef="U14"/> + </Pad> + </Set> + <Set net="VHI" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.355" y="1.308"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="5" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3690" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.355" y="1.392"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="4" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3628" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.319" y="1.428"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="3" componentRef="U14"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.142" y="1.605"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="26" componentRef="U14"/> + </Pad> + </Set> + <Set net="ZEROCROSS" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.178" y="1.569"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="27" componentRef="U14"/> + </Pad> + </Set> + <Set net="UN1100E01612PTC0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.845" y="1.392"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="19" componentRef="U14"/> + </Pad> + </Set> + <Set net="MRESET" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.058" y="1.605"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="25" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E35C0" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.022" y="1.569"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="24" componentRef="U14"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.248" y="1.202"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="8" componentRef="U14"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.987" y="1.166"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="14" componentRef="U14"/> + </Pad> + </Set> + <Set net="GND2" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD50_25"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.881" y="1.428"/> + <StandardPrimitiveRef id="RECTCENTER_2"/> + <PinRef pin="20" componentRef="U14"/> + </Pad> + </Set> + <Set net="GND1" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="0.916" y="1.237"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="16" componentRef="U14"/> + </Pad> + </Set> + <Set net="VEE" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.248" y="1.498"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="1" componentRef="U14"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E3558" testPoint="false"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Smd" type="STRING"/> + <Pad padstackDefRef="SMD25_40"> + <Xform rotation="45.000" mirror="true"/> + <Location x="1.284" y="1.463"/> + <StandardPrimitiveRef id="RECTCENTER_3"/> + <PinRef pin="2" componentRef="U14"/> + </Pad> + </Set> + <Set net="B6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="2.100"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R15"/> + </Pad> + </Set> + <Set net="B5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.944"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R15"/> + </Pad> + </Set> + <Set net="B4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.788"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R15"/> + </Pad> + </Set> + <Set net="B7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.631"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R15"/> + </Pad> + </Set> + <Set net="B0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.475"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R15"/> + </Pad> + </Set> + <Set net="B1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.319"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R15"/> + </Pad> + </Set> + <Set net="B3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.162"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R15"/> + </Pad> + </Set> + <Set net="B2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="1.006"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R15"/> + </Pad> + </Set> + <Set net="VTTA" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.275" y="0.850"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R15"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.184" y="1.534"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ30" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="3.074" y="1.424"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ20" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.963" y="1.313"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ40" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.852" y="1.202"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.742" y="1.092"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15168PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.632" y="0.982"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ50" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.521" y="0.871"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1100E15169PQ10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.410" y="0.760"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R14"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="45.000"/> + <Location x="2.300" y="0.650"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R14"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC2" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC7" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC5" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC4" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC6" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC3" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC1" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1DAC71PDAC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R9"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.250" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R9"/> + </Pad> + </Set> + <Set net="UN1100E101101PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.300" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0638" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="3.144" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PC0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.988" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E101101PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.831" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R2"/> + </Pad> + </Set> + <Set net="DISABLE" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.675" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1SIP108PA60" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.519" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R2"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E05D0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.362" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E116100PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.206" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R2"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Location x="2.050" y="0.500"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R2"/> + </Pad> + </Set> + <Set net="UN1100E11698PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.550"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="9" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PA0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.394"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="8" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PB0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.238"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="7" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="3.081"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="6" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11697PY0" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.925"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="5" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0568" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.769"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="4" componentRef="R1"/> + </Pad> + </Set> + <Set net="Unused_00000258EB6E0500" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.612"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="3" componentRef="R1"/> + </Pad> + </Set> + <Set net="UN1100E11698PY10" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.456"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="2" componentRef="R1"/> + </Pad> + </Set> + <Set net="VTTD" testPoint="false" plate="true"> + <NonstandardAttribute name="PADSTACK_USAGE" value="Through" type="STRING"/> + <Pad padstackDefRef="CIR75_51D"> + <Xform rotation="90.000"/> + <Location x="2.450" y="2.300"/> + <StandardPrimitiveRef id="CIRCLE_5"/> + <PinRef pin="1" componentRef="R1"/> + </Pad> + </Set> + </LayerFeature> + <LayerFeature layerRef="fab"> + <Set> + <ColorRef id="COLOR_fab"/> + </Set> + <Set> + <Features> + <Location x="1.650" y="0.475"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.650" y="2.975"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.393" y="3.390"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.525" y="0.150"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.500" y="0.600"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.550" y="0.525"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.575" y="0.925"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.100" y="0.750"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.500" y="0.750"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.100" y="0.275"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.500" y="0.675"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.550" y="0.225"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.600" y="0.875"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.950" y="0.400"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.850" y="3.625"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.825" y="2.075"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.875" y="2.025"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.875" y="2.175"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.900" y="2.100"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.675" y="2.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.625" y="2.175"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.562" y="2.150"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.600" y="2.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.100" y="2.800"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.225" y="0.975"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.150" y="0.800"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.500" y="1.575"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.425" y="1.775"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.572" y="1.472"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.624" y="1.624"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.750" y="2.325"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.500" y="3.250"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.600" y="2.275"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.400" y="3.300"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.550" y="3.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.325" y="3.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.325" y="0.875"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.550" y="3.075"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.856" y="2.200"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.550" y="3.450"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.925" y="2.225"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.700" y="3.400"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.450" y="0.350"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.375" y="0.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.100" y="1.875"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.775" y="3.350"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.850" y="2.900"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.200" y="2.425"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.575" y="2.525"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.872" y="1.428"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.147" y="1.428"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.775" y="2.375"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.500" y="0.425"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.075" y="1.925"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.075" y="1.625"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.100" y="1.650"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.436" y="2.900"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.400" y="3.239"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.375" y="2.550"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.346" y="3.322"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.200" y="3.400"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.350" y="2.600"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.175" y="2.975"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.100" y="3.200"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.113" y="2.988"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.113" y="3.063"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.225" y="3.050"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.025" y="3.000"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.325" y="3.025"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.425" y="3.449"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.400" y="0.225"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="2.300"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.875" y="0.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.875" y="1.925"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.800" y="0.875"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.175" y="0.825"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.750" y="1.200"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.650" y="1.750"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.550" y="1.850"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.700" y="1.225"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.542" y="1.600"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.725" y="0.750"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.925" y="0.725"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.925" y="2.650"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.975" y="3.650"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.975" y="3.400"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.850" y="2.575"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.000" y="3.300"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.350" y="3.625"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.350" y="3.500"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.900" y="2.700"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.050" y="3.250"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.875" y="2.775"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.975" y="3.200"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.850" y="3.075"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.100" y="3.500"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.775" y="2.500"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.750" y="2.700"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.800" y="3.075"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.725" y="2.600"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.700" y="3.050"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.625" y="2.675"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.600" y="3.050"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.500" y="2.600"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.550" y="3.075"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.400" y="3.125"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="1.400" y="2.800"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.675" y="3.350"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.420" y="3.955"/> + <PolyStepSegment x="-1.445" y="4.105"/> + <PolyStepSegment x="-1.470" y="3.955"/> + <PolyStepSegment x="-1.420" y="3.955"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.445" y="2.215"/> + <PolyStepSegment x="-1.445" y="4.105"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.470" y="-0.100"/> + <PolyStepSegment x="-1.445" y="-0.250"/> + <PolyStepSegment x="-1.420" y="-0.100"/> + <PolyStepSegment x="-1.470" y="-0.100"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.445" y="1.905"/> + <PolyStepSegment x="-1.445" y="-0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.150" y="-0.250"/> + <PolyStepSegment x="-1.545" y="-0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.180" y="4.105"/> + <PolyStepSegment x="-1.545" y="4.105"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="4.36" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.613" y="1.997"/> + <PolyStepSegment x="-1.613" y="2.122"/> + <PolyStepSegment x="-1.670" y="2.032"/> + <PolyStepSegment x="-1.593" y="2.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.508" y="1.993"/> + <PolyStepSegment x="-1.511" y="1.995"/> + <PolyStepSegment x="-1.511" y="1.999"/> + <PolyStepSegment x="-1.508" y="2.001"/> + <PolyStepSegment x="-1.504" y="1.999"/> + <PolyStepSegment x="-1.504" y="1.995"/> + <PolyStepSegment x="-1.508" y="1.993"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.418" y="2.022"/> + <PolyStepSegment x="-1.408" y="2.007"/> + <PolyStepSegment x="-1.396" y="1.999"/> + <PolyStepSegment x="-1.382" y="1.997"/> + <PolyStepSegment x="-1.370" y="1.999"/> + <PolyStepSegment x="-1.357" y="2.009"/> + <PolyStepSegment x="-1.349" y="2.022"/> + <PolyStepSegment x="-1.348" y="2.034"/> + <PolyStepSegment x="-1.351" y="2.049"/> + <PolyStepSegment x="-1.362" y="2.059"/> + <PolyStepSegment x="-1.373" y="2.064"/> + <PolyStepSegment x="-1.387" y="2.064"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.373" y="2.064"/> + <PolyStepSegment x="-1.363" y="2.070"/> + <PolyStepSegment x="-1.356" y="2.080"/> + <PolyStepSegment x="-1.352" y="2.093"/> + <PolyStepSegment x="-1.356" y="2.105"/> + <PolyStepSegment x="-1.363" y="2.116"/> + <PolyStepSegment x="-1.377" y="2.122"/> + <PolyStepSegment x="-1.391" y="2.120"/> + <PolyStepSegment x="-1.405" y="2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.289" y="2.049"/> + <PolyStepSegment x="-1.278" y="2.064"/> + <PolyStepSegment x="-1.269" y="2.072"/> + <PolyStepSegment x="-1.256" y="2.076"/> + <PolyStepSegment x="-1.246" y="2.072"/> + <PolyStepSegment x="-1.238" y="2.064"/> + <PolyStepSegment x="-1.232" y="2.051"/> + <PolyStepSegment x="-1.230" y="2.037"/> + <PolyStepSegment x="-1.232" y="2.024"/> + <PolyStepSegment x="-1.238" y="2.012"/> + <PolyStepSegment x="-1.247" y="2.001"/> + <PolyStepSegment x="-1.258" y="1.997"/> + <PolyStepSegment x="-1.270" y="2.001"/> + <PolyStepSegment x="-1.281" y="2.014"/> + <PolyStepSegment x="-1.287" y="2.032"/> + <PolyStepSegment x="-1.289" y="2.053"/> + <PolyStepSegment x="-1.286" y="2.080"/> + <PolyStepSegment x="-1.281" y="2.095"/> + <PolyStepSegment x="-1.273" y="2.109"/> + <PolyStepSegment x="-1.263" y="2.120"/> + <PolyStepSegment x="-1.252" y="2.122"/> + <PolyStepSegment x="-1.241" y="2.118"/> + <PolyStepSegment x="-1.233" y="2.107"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.500" y="-1.675"/> + <PolyStepSegment x="3.650" y="-1.650"/> + <PolyStepSegment x="3.500" y="-1.625"/> + <PolyStepSegment x="3.500" y="-1.675"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.975" y="-1.650"/> + <PolyStepSegment x="3.650" y="-1.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.100" y="-1.625"/> + <PolyStepSegment x="-0.250" y="-1.650"/> + <PolyStepSegment x="-0.100" y="-1.675"/> + <PolyStepSegment x="-0.100" y="-1.625"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.325" y="-1.650"/> + <PolyStepSegment x="-0.250" y="-1.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.650" y="0.450"/> + <PolyStepSegment x="3.650" y="-1.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.250" y="0.550"/> + <PolyStepSegment x="-0.250" y="-1.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="3.90" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.429" y="-1.688"/> + <PolyStepSegment x="1.439" y="-1.703"/> + <PolyStepSegment x="1.451" y="-1.711"/> + <PolyStepSegment x="1.465" y="-1.713"/> + <PolyStepSegment x="1.477" y="-1.711"/> + <PolyStepSegment x="1.490" y="-1.701"/> + <PolyStepSegment x="1.498" y="-1.688"/> + <PolyStepSegment x="1.499" y="-1.676"/> + <PolyStepSegment x="1.496" y="-1.661"/> + <PolyStepSegment x="1.485" y="-1.651"/> + <PolyStepSegment x="1.474" y="-1.646"/> + <PolyStepSegment x="1.460" y="-1.646"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.474" y="-1.646"/> + <PolyStepSegment x="1.484" y="-1.640"/> + <PolyStepSegment x="1.491" y="-1.630"/> + <PolyStepSegment x="1.495" y="-1.617"/> + <PolyStepSegment x="1.491" y="-1.605"/> + <PolyStepSegment x="1.484" y="-1.594"/> + <PolyStepSegment x="1.470" y="-1.588"/> + <PolyStepSegment x="1.456" y="-1.590"/> + <PolyStepSegment x="1.442" y="-1.598"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.587" y="-1.717"/> + <PolyStepSegment x="1.584" y="-1.715"/> + <PolyStepSegment x="1.584" y="-1.711"/> + <PolyStepSegment x="1.587" y="-1.709"/> + <PolyStepSegment x="1.591" y="-1.711"/> + <PolyStepSegment x="1.591" y="-1.715"/> + <PolyStepSegment x="1.587" y="-1.717"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.685" y="-1.698"/> + <PolyStepSegment x="1.696" y="-1.709"/> + <PolyStepSegment x="1.708" y="-1.713"/> + <PolyStepSegment x="1.721" y="-1.709"/> + <PolyStepSegment x="1.732" y="-1.696"/> + <PolyStepSegment x="1.739" y="-1.678"/> + <PolyStepSegment x="1.743" y="-1.659"/> + <PolyStepSegment x="1.743" y="-1.636"/> + <PolyStepSegment x="1.739" y="-1.617"/> + <PolyStepSegment x="1.732" y="-1.601"/> + <PolyStepSegment x="1.722" y="-1.592"/> + <PolyStepSegment x="1.711" y="-1.588"/> + <PolyStepSegment x="1.699" y="-1.592"/> + <PolyStepSegment x="1.690" y="-1.601"/> + <PolyStepSegment x="1.684" y="-1.613"/> + <PolyStepSegment x="1.680" y="-1.630"/> + <PolyStepSegment x="1.684" y="-1.644"/> + <PolyStepSegment x="1.691" y="-1.659"/> + <PolyStepSegment x="1.701" y="-1.667"/> + <PolyStepSegment x="1.711" y="-1.669"/> + <PolyStepSegment x="1.724" y="-1.665"/> + <PolyStepSegment x="1.733" y="-1.655"/> + <PolyStepSegment x="1.743" y="-1.636"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.835" y="-1.588"/> + <PolyStepSegment x="1.823" y="-1.592"/> + <PolyStepSegment x="1.814" y="-1.603"/> + <PolyStepSegment x="1.808" y="-1.615"/> + <PolyStepSegment x="1.803" y="-1.632"/> + <PolyStepSegment x="1.801" y="-1.651"/> + <PolyStepSegment x="1.803" y="-1.669"/> + <PolyStepSegment x="1.808" y="-1.686"/> + <PolyStepSegment x="1.814" y="-1.698"/> + <PolyStepSegment x="1.823" y="-1.709"/> + <PolyStepSegment x="1.835" y="-1.713"/> + <PolyStepSegment x="1.848" y="-1.709"/> + <PolyStepSegment x="1.857" y="-1.698"/> + <PolyStepSegment x="1.863" y="-1.686"/> + <PolyStepSegment x="1.868" y="-1.669"/> + <PolyStepSegment x="1.870" y="-1.651"/> + <PolyStepSegment x="1.868" y="-1.632"/> + <PolyStepSegment x="1.863" y="-1.615"/> + <PolyStepSegment x="1.857" y="-1.603"/> + <PolyStepSegment x="1.848" y="-1.592"/> + <PolyStepSegment x="1.835" y="-1.588"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.300" y="4.625"/> + <PolyStepSegment x="2.450" y="4.650"/> + <PolyStepSegment x="2.300" y="4.675"/> + <PolyStepSegment x="2.300" y="4.625"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.325" y="4.650"/> + <PolyStepSegment x="2.450" y="4.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.100" y="4.675"/> + <PolyStepSegment x="-0.250" y="4.650"/> + <PolyStepSegment x="-0.100" y="4.625"/> + <PolyStepSegment x="-0.100" y="4.675"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.675" y="4.650"/> + <PolyStepSegment x="-0.250" y="4.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.200"/> + <PolyStepSegment x="2.450" y="4.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.250" y="4.200"/> + <PolyStepSegment x="-0.250" y="4.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="2.70" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.784" y="4.691"/> + <PolyStepSegment x="0.793" y="4.704"/> + <PolyStepSegment x="0.804" y="4.710"/> + <PolyStepSegment x="0.817" y="4.712"/> + <PolyStepSegment x="0.832" y="4.708"/> + <PolyStepSegment x="0.843" y="4.697"/> + <PolyStepSegment x="0.846" y="4.685"/> + <PolyStepSegment x="0.845" y="4.672"/> + <PolyStepSegment x="0.838" y="4.662"/> + <PolyStepSegment x="0.807" y="4.641"/> + <PolyStepSegment x="0.793" y="4.627"/> + <PolyStepSegment x="0.784" y="4.606"/> + <PolyStepSegment x="0.781" y="4.587"/> + <PolyStepSegment x="0.846" y="4.587"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.937" y="4.583"/> + <PolyStepSegment x="0.934" y="4.585"/> + <PolyStepSegment x="0.934" y="4.589"/> + <PolyStepSegment x="0.937" y="4.591"/> + <PolyStepSegment x="0.941" y="4.589"/> + <PolyStepSegment x="0.941" y="4.585"/> + <PolyStepSegment x="0.937" y="4.583"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.058" y="4.587"/> + <PolyStepSegment x="1.061" y="4.614"/> + <PolyStepSegment x="1.066" y="4.637"/> + <PolyStepSegment x="1.072" y="4.658"/> + <PolyStepSegment x="1.080" y="4.681"/> + <PolyStepSegment x="1.093" y="4.712"/> + <PolyStepSegment x="1.030" y="4.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.185" y="4.712"/> + <PolyStepSegment x="1.173" y="4.708"/> + <PolyStepSegment x="1.164" y="4.697"/> + <PolyStepSegment x="1.158" y="4.685"/> + <PolyStepSegment x="1.153" y="4.668"/> + <PolyStepSegment x="1.151" y="4.649"/> + <PolyStepSegment x="1.153" y="4.631"/> + <PolyStepSegment x="1.158" y="4.614"/> + <PolyStepSegment x="1.164" y="4.602"/> + <PolyStepSegment x="1.173" y="4.591"/> + <PolyStepSegment x="1.185" y="4.587"/> + <PolyStepSegment x="1.198" y="4.591"/> + <PolyStepSegment x="1.207" y="4.602"/> + <PolyStepSegment x="1.213" y="4.614"/> + <PolyStepSegment x="1.218" y="4.631"/> + <PolyStepSegment x="1.220" y="4.649"/> + <PolyStepSegment x="1.218" y="4.668"/> + <PolyStepSegment x="1.213" y="4.685"/> + <PolyStepSegment x="1.207" y="4.697"/> + <PolyStepSegment x="1.198" y="4.708"/> + <PolyStepSegment x="1.185" y="4.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.150" y="-1.275"/> + <PolyStepSegment x="0.0" y="-1.300"/> + <PolyStepSegment x="0.150" y="-1.325"/> + <PolyStepSegment x="0.150" y="-1.275"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.300" y="-1.300"/> + <PolyStepSegment x="0.0" y="-1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.400" y="-1.325"/> + <PolyStepSegment x="-0.250" y="-1.300"/> + <PolyStepSegment x="-0.400" y="-1.275"/> + <PolyStepSegment x="-0.400" y="-1.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.237" y="-1.300"/> + <PolyStepSegment x="-0.250" y="-1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.0" y="-0.100"/> + <PolyStepSegment x="0.0" y="-1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.250" y="-0.050"/> + <PolyStepSegment x="-0.250" y="-1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value=".25" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.625" y="-1.367"/> + <PolyStepSegment x="-0.628" y="-1.365"/> + <PolyStepSegment x="-0.628" y="-1.361"/> + <PolyStepSegment x="-0.625" y="-1.359"/> + <PolyStepSegment x="-0.621" y="-1.361"/> + <PolyStepSegment x="-0.621" y="-1.365"/> + <PolyStepSegment x="-0.625" y="-1.367"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.530" y="-1.259"/> + <PolyStepSegment x="-0.521" y="-1.246"/> + <PolyStepSegment x="-0.510" y="-1.240"/> + <PolyStepSegment x="-0.497" y="-1.238"/> + <PolyStepSegment x="-0.482" y="-1.242"/> + <PolyStepSegment x="-0.471" y="-1.253"/> + <PolyStepSegment x="-0.468" y="-1.265"/> + <PolyStepSegment x="-0.469" y="-1.278"/> + <PolyStepSegment x="-0.476" y="-1.288"/> + <PolyStepSegment x="-0.507" y="-1.309"/> + <PolyStepSegment x="-0.521" y="-1.323"/> + <PolyStepSegment x="-0.530" y="-1.344"/> + <PolyStepSegment x="-0.533" y="-1.363"/> + <PolyStepSegment x="-0.468" y="-1.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.411" y="-1.344"/> + <PolyStepSegment x="-0.401" y="-1.355"/> + <PolyStepSegment x="-0.390" y="-1.361"/> + <PolyStepSegment x="-0.377" y="-1.363"/> + <PolyStepSegment x="-0.363" y="-1.359"/> + <PolyStepSegment x="-0.352" y="-1.351"/> + <PolyStepSegment x="-0.344" y="-1.336"/> + <PolyStepSegment x="-0.342" y="-1.319"/> + <PolyStepSegment x="-0.345" y="-1.303"/> + <PolyStepSegment x="-0.353" y="-1.292"/> + <PolyStepSegment x="-0.364" y="-1.284"/> + <PolyStepSegment x="-0.375" y="-1.282"/> + <PolyStepSegment x="-0.386" y="-1.284"/> + <PolyStepSegment x="-0.400" y="-1.292"/> + <PolyStepSegment x="-0.395" y="-1.238"/> + <PolyStepSegment x="-0.353" y="-1.238"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.675" y="0.150"/> + <PolyStepSegment x="-0.650" y="0.0"/> + <PolyStepSegment x="-0.625" y="0.150"/> + <PolyStepSegment x="-0.675" y="0.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.650" y="0.055"/> + <PolyStepSegment x="-0.650" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.625" y="-0.400"/> + <PolyStepSegment x="-0.650" y="-0.250"/> + <PolyStepSegment x="-0.675" y="-0.400"/> + <PolyStepSegment x="-0.625" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.650" y="-0.255"/> + <PolyStepSegment x="-0.650" y="-0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.050" y="-0.250"/> + <PolyStepSegment x="-0.750" y="-0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.100" y="0.0"/> + <PolyStepSegment x="-0.750" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value=".25" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.775" y="-0.167"/> + <PolyStepSegment x="-0.778" y="-0.165"/> + <PolyStepSegment x="-0.778" y="-0.161"/> + <PolyStepSegment x="-0.775" y="-0.159"/> + <PolyStepSegment x="-0.771" y="-0.161"/> + <PolyStepSegment x="-0.771" y="-0.165"/> + <PolyStepSegment x="-0.775" y="-0.167"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.680" y="-0.059"/> + <PolyStepSegment x="-0.671" y="-0.046"/> + <PolyStepSegment x="-0.660" y="-0.040"/> + <PolyStepSegment x="-0.647" y="-0.038"/> + <PolyStepSegment x="-0.632" y="-0.042"/> + <PolyStepSegment x="-0.621" y="-0.053"/> + <PolyStepSegment x="-0.618" y="-0.065"/> + <PolyStepSegment x="-0.619" y="-0.078"/> + <PolyStepSegment x="-0.626" y="-0.088"/> + <PolyStepSegment x="-0.657" y="-0.109"/> + <PolyStepSegment x="-0.671" y="-0.123"/> + <PolyStepSegment x="-0.680" y="-0.144"/> + <PolyStepSegment x="-0.683" y="-0.163"/> + <PolyStepSegment x="-0.618" y="-0.163"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.561" y="-0.144"/> + <PolyStepSegment x="-0.551" y="-0.155"/> + <PolyStepSegment x="-0.540" y="-0.161"/> + <PolyStepSegment x="-0.527" y="-0.163"/> + <PolyStepSegment x="-0.513" y="-0.159"/> + <PolyStepSegment x="-0.502" y="-0.151"/> + <PolyStepSegment x="-0.494" y="-0.136"/> + <PolyStepSegment x="-0.492" y="-0.119"/> + <PolyStepSegment x="-0.495" y="-0.103"/> + <PolyStepSegment x="-0.503" y="-0.092"/> + <PolyStepSegment x="-0.514" y="-0.084"/> + <PolyStepSegment x="-0.525" y="-0.082"/> + <PolyStepSegment x="-0.536" y="-0.084"/> + <PolyStepSegment x="-0.550" y="-0.092"/> + <PolyStepSegment x="-0.545" y="-0.038"/> + <PolyStepSegment x="-0.503" y="-0.038"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.725" y="3.600"/> + <PolyStepSegment x="4.700" y="3.750"/> + <PolyStepSegment x="4.675" y="3.600"/> + <PolyStepSegment x="4.725" y="3.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.700" y="1.855"/> + <PolyStepSegment x="4.700" y="3.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.675" y="0.150"/> + <PolyStepSegment x="4.700" y="0.0"/> + <PolyStepSegment x="4.725" y="0.150"/> + <PolyStepSegment x="4.675" y="0.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.700" y="1.545"/> + <PolyStepSegment x="4.700" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.100" y="0.0"/> + <PolyStepSegment x="4.800" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.100" y="3.750"/> + <PolyStepSegment x="4.800" y="3.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="3.75" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.479" y="1.662"/> + <PolyStepSegment x="4.489" y="1.647"/> + <PolyStepSegment x="4.501" y="1.639"/> + <PolyStepSegment x="4.515" y="1.637"/> + <PolyStepSegment x="4.527" y="1.639"/> + <PolyStepSegment x="4.540" y="1.649"/> + <PolyStepSegment x="4.548" y="1.662"/> + <PolyStepSegment x="4.549" y="1.674"/> + <PolyStepSegment x="4.546" y="1.689"/> + <PolyStepSegment x="4.535" y="1.699"/> + <PolyStepSegment x="4.524" y="1.704"/> + <PolyStepSegment x="4.510" y="1.704"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.524" y="1.704"/> + <PolyStepSegment x="4.534" y="1.710"/> + <PolyStepSegment x="4.541" y="1.720"/> + <PolyStepSegment x="4.545" y="1.733"/> + <PolyStepSegment x="4.541" y="1.745"/> + <PolyStepSegment x="4.534" y="1.756"/> + <PolyStepSegment x="4.520" y="1.762"/> + <PolyStepSegment x="4.506" y="1.760"/> + <PolyStepSegment x="4.492" y="1.752"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.637" y="1.633"/> + <PolyStepSegment x="4.634" y="1.635"/> + <PolyStepSegment x="4.634" y="1.639"/> + <PolyStepSegment x="4.637" y="1.641"/> + <PolyStepSegment x="4.641" y="1.639"/> + <PolyStepSegment x="4.641" y="1.635"/> + <PolyStepSegment x="4.637" y="1.633"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.758" y="1.637"/> + <PolyStepSegment x="4.761" y="1.664"/> + <PolyStepSegment x="4.766" y="1.687"/> + <PolyStepSegment x="4.772" y="1.708"/> + <PolyStepSegment x="4.780" y="1.731"/> + <PolyStepSegment x="4.793" y="1.762"/> + <PolyStepSegment x="4.730" y="1.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.851" y="1.656"/> + <PolyStepSegment x="4.861" y="1.645"/> + <PolyStepSegment x="4.872" y="1.639"/> + <PolyStepSegment x="4.885" y="1.637"/> + <PolyStepSegment x="4.899" y="1.641"/> + <PolyStepSegment x="4.910" y="1.649"/> + <PolyStepSegment x="4.918" y="1.664"/> + <PolyStepSegment x="4.920" y="1.681"/> + <PolyStepSegment x="4.917" y="1.697"/> + <PolyStepSegment x="4.909" y="1.708"/> + <PolyStepSegment x="4.898" y="1.716"/> + <PolyStepSegment x="4.887" y="1.718"/> + <PolyStepSegment x="4.876" y="1.716"/> + <PolyStepSegment x="4.862" y="1.708"/> + <PolyStepSegment x="4.867" y="1.762"/> + <PolyStepSegment x="4.909" y="1.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="-0.825"/> + <PolyStepSegment x="3.300" y="-0.850"/> + <PolyStepSegment x="3.450" y="-0.875"/> + <PolyStepSegment x="3.450" y="-0.825"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.363" y="-0.850"/> + <PolyStepSegment x="3.300" y="-0.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.850" y="-0.875"/> + <PolyStepSegment x="3.000" y="-0.850"/> + <PolyStepSegment x="2.850" y="-0.825"/> + <PolyStepSegment x="2.850" y="-0.875"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.837" y="-0.850"/> + <PolyStepSegment x="3.000" y="-0.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.300" y="0.800"/> + <PolyStepSegment x="3.300" y="-0.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.000" y="-0.100"/> + <PolyStepSegment x="3.000" y="-0.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value=".30" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.975" y="-0.917"/> + <PolyStepSegment x="2.972" y="-0.915"/> + <PolyStepSegment x="2.972" y="-0.911"/> + <PolyStepSegment x="2.975" y="-0.909"/> + <PolyStepSegment x="2.979" y="-0.911"/> + <PolyStepSegment x="2.979" y="-0.915"/> + <PolyStepSegment x="2.975" y="-0.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.065" y="-0.888"/> + <PolyStepSegment x="3.075" y="-0.903"/> + <PolyStepSegment x="3.087" y="-0.911"/> + <PolyStepSegment x="3.101" y="-0.913"/> + <PolyStepSegment x="3.113" y="-0.911"/> + <PolyStepSegment x="3.126" y="-0.901"/> + <PolyStepSegment x="3.134" y="-0.888"/> + <PolyStepSegment x="3.135" y="-0.876"/> + <PolyStepSegment x="3.132" y="-0.861"/> + <PolyStepSegment x="3.121" y="-0.851"/> + <PolyStepSegment x="3.110" y="-0.846"/> + <PolyStepSegment x="3.096" y="-0.846"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.110" y="-0.846"/> + <PolyStepSegment x="3.120" y="-0.840"/> + <PolyStepSegment x="3.127" y="-0.830"/> + <PolyStepSegment x="3.131" y="-0.817"/> + <PolyStepSegment x="3.127" y="-0.805"/> + <PolyStepSegment x="3.120" y="-0.794"/> + <PolyStepSegment x="3.106" y="-0.788"/> + <PolyStepSegment x="3.092" y="-0.790"/> + <PolyStepSegment x="3.078" y="-0.798"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.223" y="-0.788"/> + <PolyStepSegment x="3.211" y="-0.792"/> + <PolyStepSegment x="3.202" y="-0.803"/> + <PolyStepSegment x="3.196" y="-0.815"/> + <PolyStepSegment x="3.191" y="-0.832"/> + <PolyStepSegment x="3.189" y="-0.851"/> + <PolyStepSegment x="3.191" y="-0.869"/> + <PolyStepSegment x="3.196" y="-0.886"/> + <PolyStepSegment x="3.202" y="-0.898"/> + <PolyStepSegment x="3.211" y="-0.909"/> + <PolyStepSegment x="3.223" y="-0.913"/> + <PolyStepSegment x="3.236" y="-0.909"/> + <PolyStepSegment x="3.245" y="-0.898"/> + <PolyStepSegment x="3.251" y="-0.886"/> + <PolyStepSegment x="3.256" y="-0.869"/> + <PolyStepSegment x="3.258" y="-0.851"/> + <PolyStepSegment x="3.256" y="-0.832"/> + <PolyStepSegment x="3.251" y="-0.815"/> + <PolyStepSegment x="3.245" y="-0.803"/> + <PolyStepSegment x="3.236" y="-0.792"/> + <PolyStepSegment x="3.223" y="-0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.225" y="0.750"/> + <PolyStepSegment x="4.200" y="0.900"/> + <PolyStepSegment x="4.175" y="0.750"/> + <PolyStepSegment x="4.225" y="0.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.200" y="0.605"/> + <PolyStepSegment x="4.200" y="0.900"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.175" y="0.150"/> + <PolyStepSegment x="4.200" y="0.0"/> + <PolyStepSegment x="4.225" y="0.150"/> + <PolyStepSegment x="4.175" y="0.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.200" y="0.295"/> + <PolyStepSegment x="4.200" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.100" y="0.0"/> + <PolyStepSegment x="4.300" y="0.0"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.400" y="0.900"/> + <PolyStepSegment x="4.300" y="0.900"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value=".90" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.075" y="0.383"/> + <PolyStepSegment x="4.072" y="0.385"/> + <PolyStepSegment x="4.072" y="0.389"/> + <PolyStepSegment x="4.075" y="0.391"/> + <PolyStepSegment x="4.079" y="0.389"/> + <PolyStepSegment x="4.079" y="0.385"/> + <PolyStepSegment x="4.075" y="0.383"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.173" y="0.402"/> + <PolyStepSegment x="4.184" y="0.391"/> + <PolyStepSegment x="4.196" y="0.387"/> + <PolyStepSegment x="4.209" y="0.391"/> + <PolyStepSegment x="4.220" y="0.404"/> + <PolyStepSegment x="4.227" y="0.422"/> + <PolyStepSegment x="4.231" y="0.441"/> + <PolyStepSegment x="4.231" y="0.464"/> + <PolyStepSegment x="4.227" y="0.483"/> + <PolyStepSegment x="4.220" y="0.499"/> + <PolyStepSegment x="4.210" y="0.508"/> + <PolyStepSegment x="4.199" y="0.512"/> + <PolyStepSegment x="4.187" y="0.508"/> + <PolyStepSegment x="4.178" y="0.499"/> + <PolyStepSegment x="4.172" y="0.487"/> + <PolyStepSegment x="4.168" y="0.470"/> + <PolyStepSegment x="4.172" y="0.456"/> + <PolyStepSegment x="4.179" y="0.441"/> + <PolyStepSegment x="4.189" y="0.433"/> + <PolyStepSegment x="4.199" y="0.431"/> + <PolyStepSegment x="4.212" y="0.435"/> + <PolyStepSegment x="4.221" y="0.445"/> + <PolyStepSegment x="4.231" y="0.464"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="4.323" y="0.512"/> + <PolyStepSegment x="4.311" y="0.508"/> + <PolyStepSegment x="4.302" y="0.497"/> + <PolyStepSegment x="4.296" y="0.485"/> + <PolyStepSegment x="4.291" y="0.468"/> + <PolyStepSegment x="4.289" y="0.449"/> + <PolyStepSegment x="4.291" y="0.431"/> + <PolyStepSegment x="4.296" y="0.414"/> + <PolyStepSegment x="4.302" y="0.402"/> + <PolyStepSegment x="4.311" y="0.391"/> + <PolyStepSegment x="4.323" y="0.387"/> + <PolyStepSegment x="4.336" y="0.391"/> + <PolyStepSegment x="4.345" y="0.402"/> + <PolyStepSegment x="4.351" y="0.414"/> + <PolyStepSegment x="4.356" y="0.431"/> + <PolyStepSegment x="4.358" y="0.449"/> + <PolyStepSegment x="4.356" y="0.468"/> + <PolyStepSegment x="4.351" y="0.485"/> + <PolyStepSegment x="4.345" y="0.497"/> + <PolyStepSegment x="4.336" y="0.508"/> + <PolyStepSegment x="4.323" y="0.512"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.850" y="-1.325"/> + <PolyStepSegment x="3.000" y="-1.300"/> + <PolyStepSegment x="2.850" y="-1.275"/> + <PolyStepSegment x="2.850" y="-1.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.875" y="-1.300"/> + <PolyStepSegment x="3.000" y="-1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.150" y="-1.275"/> + <PolyStepSegment x="0.0" y="-1.300"/> + <PolyStepSegment x="0.150" y="-1.325"/> + <PolyStepSegment x="0.150" y="-1.275"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.225" y="-1.300"/> + <PolyStepSegment x="0.0" y="-1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.000" y="-0.100"/> + <PolyStepSegment x="3.000" y="-1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.0" y="-0.100"/> + <PolyStepSegment x="0.0" y="-1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="3.00" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.329" y="-1.338"/> + <PolyStepSegment x="1.339" y="-1.353"/> + <PolyStepSegment x="1.351" y="-1.361"/> + <PolyStepSegment x="1.365" y="-1.363"/> + <PolyStepSegment x="1.377" y="-1.361"/> + <PolyStepSegment x="1.390" y="-1.351"/> + <PolyStepSegment x="1.398" y="-1.338"/> + <PolyStepSegment x="1.399" y="-1.326"/> + <PolyStepSegment x="1.396" y="-1.311"/> + <PolyStepSegment x="1.385" y="-1.301"/> + <PolyStepSegment x="1.374" y="-1.296"/> + <PolyStepSegment x="1.360" y="-1.296"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.374" y="-1.296"/> + <PolyStepSegment x="1.384" y="-1.290"/> + <PolyStepSegment x="1.391" y="-1.280"/> + <PolyStepSegment x="1.395" y="-1.267"/> + <PolyStepSegment x="1.391" y="-1.255"/> + <PolyStepSegment x="1.384" y="-1.244"/> + <PolyStepSegment x="1.370" y="-1.238"/> + <PolyStepSegment x="1.356" y="-1.240"/> + <PolyStepSegment x="1.342" y="-1.248"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.487" y="-1.367"/> + <PolyStepSegment x="1.484" y="-1.365"/> + <PolyStepSegment x="1.484" y="-1.361"/> + <PolyStepSegment x="1.487" y="-1.359"/> + <PolyStepSegment x="1.491" y="-1.361"/> + <PolyStepSegment x="1.491" y="-1.365"/> + <PolyStepSegment x="1.487" y="-1.367"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.611" y="-1.238"/> + <PolyStepSegment x="1.599" y="-1.242"/> + <PolyStepSegment x="1.590" y="-1.253"/> + <PolyStepSegment x="1.584" y="-1.265"/> + <PolyStepSegment x="1.579" y="-1.282"/> + <PolyStepSegment x="1.577" y="-1.301"/> + <PolyStepSegment x="1.579" y="-1.319"/> + <PolyStepSegment x="1.584" y="-1.336"/> + <PolyStepSegment x="1.590" y="-1.348"/> + <PolyStepSegment x="1.599" y="-1.359"/> + <PolyStepSegment x="1.611" y="-1.363"/> + <PolyStepSegment x="1.624" y="-1.359"/> + <PolyStepSegment x="1.633" y="-1.348"/> + <PolyStepSegment x="1.639" y="-1.336"/> + <PolyStepSegment x="1.644" y="-1.319"/> + <PolyStepSegment x="1.646" y="-1.301"/> + <PolyStepSegment x="1.644" y="-1.282"/> + <PolyStepSegment x="1.639" y="-1.265"/> + <PolyStepSegment x="1.633" y="-1.253"/> + <PolyStepSegment x="1.624" y="-1.242"/> + <PolyStepSegment x="1.611" y="-1.238"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="-1.238"/> + <PolyStepSegment x="1.723" y="-1.242"/> + <PolyStepSegment x="1.714" y="-1.253"/> + <PolyStepSegment x="1.708" y="-1.265"/> + <PolyStepSegment x="1.703" y="-1.282"/> + <PolyStepSegment x="1.701" y="-1.301"/> + <PolyStepSegment x="1.703" y="-1.319"/> + <PolyStepSegment x="1.708" y="-1.336"/> + <PolyStepSegment x="1.714" y="-1.348"/> + <PolyStepSegment x="1.723" y="-1.359"/> + <PolyStepSegment x="1.735" y="-1.363"/> + <PolyStepSegment x="1.748" y="-1.359"/> + <PolyStepSegment x="1.757" y="-1.348"/> + <PolyStepSegment x="1.763" y="-1.336"/> + <PolyStepSegment x="1.768" y="-1.319"/> + <PolyStepSegment x="1.770" y="-1.301"/> + <PolyStepSegment x="1.768" y="-1.282"/> + <PolyStepSegment x="1.763" y="-1.265"/> + <PolyStepSegment x="1.757" y="-1.253"/> + <PolyStepSegment x="1.748" y="-1.242"/> + <PolyStepSegment x="1.735" y="-1.238"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="2.800"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="2.900"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="3.000"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="3.100"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="3.200"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="2.800"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="2.900"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="3.000"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="3.100"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.050" y="3.200"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="2.600"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_50X50"/> + </Features> + </Set> + <Set> + <Features> + <Location x="-0.050" y="3.400"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_50X50"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.000" y="3.750"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_625_A"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.000" y="0.0"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_625_A"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_625_A"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.600" y="2.150"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.800" y="2.250"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.600" y="2.850"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.800" y="3.050"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.600" y="3.550"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.800" y="3.650"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="2.100"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.944"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.788"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.631"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.475"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.319"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.162"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="1.006"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.275" y="0.850"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.184" y="1.534"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.074" y="1.424"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.963" y="1.313"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.852" y="1.202"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.742" y="1.092"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.632" y="0.982"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.521" y="0.871"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.410" y="0.760"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.300" y="0.650"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="3.550"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="3.394"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="3.238"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="3.081"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="2.925"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="2.769"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="2.612"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="2.456"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.250" y="2.300"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.300" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="3.144" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.988" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.831" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.675" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.519" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.362" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.206" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.050" y="0.500"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="3.550"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="3.394"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="3.238"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="3.081"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="2.925"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="2.769"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="2.612"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="2.456"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="2.450" y="2.300"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="0.250"/> + <PolyStepSegment x="10.436" y="0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="1.188"/> + <PolyStepSegment x="10.436" y="1.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="2.126"/> + <PolyStepSegment x="10.436" y="2.126"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="3.063"/> + <PolyStepSegment x="10.436" y="3.063"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="4.000"/> + <PolyStepSegment x="10.436" y="4.000"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="4.938"/> + <PolyStepSegment x="10.436" y="4.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.661" y="5.219"/> + <PolyStepSegment x="9.661" y="-0.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.390" y="5.219"/> + <PolyStepSegment x="8.390" y="-0.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.499" y="5.219"/> + <PolyStepSegment x="6.499" y="-0.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="5.219"/> + <PolyStepSegment x="10.436" y="5.219"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="5.500"/> + <PolyStepSegment x="10.436" y="5.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.400" y="3.650"/> + <PolyStepSegment x="-0.100" y="3.650"/> + <PolyStepSegment x="-0.300" y="3.700"/> + <PolyStepSegment x="-0.300" y="3.600"/> + <PolyStepSegment x="-0.100" y="3.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.550" y="3.800"/> + <PolyStepSegment x="-0.150" y="3.800"/> + <PolyStepSegment x="-0.300" y="3.850"/> + <PolyStepSegment x="-0.300" y="3.750"/> + <PolyStepSegment x="-0.150" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.800" y="3.950"/> + <PolyStepSegment x="-0.250" y="3.950"/> + <PolyStepSegment x="-0.400" y="4.000"/> + <PolyStepSegment x="-0.400" y="3.900"/> + <PolyStepSegment x="-0.250" y="3.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.500" y="-1.166"/> + <PolyStepSegment x="5.500" y="-1.209"/> + <PolyStepSegment x="5.525" y="-1.209"/> + <PolyStepSegment x="5.525" y="-3.122"/> + <PolyStepSegment x="5.500" y="-3.122"/> + <PolyStepSegment x="5.500" y="-3.165"/> + <PolyStepSegment x="5.650" y="-3.165"/> + <PolyStepSegment x="5.650" y="-3.122"/> + <PolyStepSegment x="5.625" y="-3.122"/> + <PolyStepSegment x="5.625" y="-1.209"/> + <PolyStepSegment x="5.650" y="-1.209"/> + <PolyStepSegment x="5.650" y="-1.166"/> + <PolyStepSegment x="5.500" y="-1.166"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-3.159"/> + <PolyStepSegment x="5.900" y="-3.159"/> + <PolyStepSegment x="5.900" y="-3.116"/> + <PolyStepSegment x="5.300" y="-3.116"/> + <PolyStepSegment x="5.300" y="-3.159"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-2.769"/> + <PolyStepSegment x="5.900" y="-2.769"/> + <PolyStepSegment x="5.900" y="-2.726"/> + <PolyStepSegment x="5.300" y="-2.726"/> + <PolyStepSegment x="5.300" y="-2.769"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-2.379"/> + <PolyStepSegment x="5.900" y="-2.379"/> + <PolyStepSegment x="5.900" y="-2.336"/> + <PolyStepSegment x="5.300" y="-2.336"/> + <PolyStepSegment x="5.300" y="-2.379"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-1.989"/> + <PolyStepSegment x="5.900" y="-1.989"/> + <PolyStepSegment x="5.900" y="-1.946"/> + <PolyStepSegment x="5.300" y="-1.946"/> + <PolyStepSegment x="5.300" y="-1.989"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-1.599"/> + <PolyStepSegment x="5.900" y="-1.599"/> + <PolyStepSegment x="5.900" y="-1.556"/> + <PolyStepSegment x="5.300" y="-1.556"/> + <PolyStepSegment x="5.300" y="-1.599"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Contour> + <Polygon> + <PolyBegin x="5.300" y="-1.209"/> + <PolyStepSegment x="5.900" y="-1.209"/> + <PolyStepSegment x="5.900" y="-1.166"/> + <PolyStepSegment x="5.300" y="-1.166"/> + <PolyStepSegment x="5.300" y="-1.209"/> + <FillDescRef id="SOLID_FILL"/> + </Polygon> + </Contour> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.600" y="-0.687"/> + <PolyStepSegment x="10.436" y="-0.687"/> + <PolyStepSegment x="10.436" y="5.750"/> + <PolyStepSegment x="5.600" y="5.750"/> + <PolyStepSegment x="5.600" y="-0.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.300" y="-3.116"/> + <PolyStepSegment x="5.900" y="-3.116"/> + <PolyStepSegment x="5.900" y="-2.769"/> + <PolyStepSegment x="5.300" y="-2.769"/> + <PolyStepSegment x="5.300" y="-3.116"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.300" y="-2.726"/> + <PolyStepSegment x="5.900" y="-2.726"/> + <PolyStepSegment x="5.900" y="-2.379"/> + <PolyStepSegment x="5.300" y="-2.379"/> + <PolyStepSegment x="5.300" y="-2.726"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.300" y="-2.336"/> + <PolyStepSegment x="5.900" y="-2.336"/> + <PolyStepSegment x="5.900" y="-1.989"/> + <PolyStepSegment x="5.300" y="-1.989"/> + <PolyStepSegment x="5.300" y="-2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.300" y="-1.946"/> + <PolyStepSegment x="5.900" y="-1.946"/> + <PolyStepSegment x="5.900" y="-1.599"/> + <PolyStepSegment x="5.300" y="-1.599"/> + <PolyStepSegment x="5.300" y="-1.946"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.300" y="-1.556"/> + <PolyStepSegment x="5.900" y="-1.556"/> + <PolyStepSegment x="5.900" y="-1.209"/> + <PolyStepSegment x="5.300" y="-1.209"/> + <PolyStepSegment x="5.300" y="-1.556"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.018" y="-0.177"/> + <PolyStepSegment x="10.027" y="-0.164"/> + <PolyStepSegment x="10.038" y="-0.158"/> + <PolyStepSegment x="10.051" y="-0.156"/> + <PolyStepSegment x="10.066" y="-0.160"/> + <PolyStepSegment x="10.077" y="-0.171"/> + <PolyStepSegment x="10.080" y="-0.183"/> + <PolyStepSegment x="10.079" y="-0.196"/> + <PolyStepSegment x="10.072" y="-0.206"/> + <PolyStepSegment x="10.041" y="-0.227"/> + <PolyStepSegment x="10.027" y="-0.241"/> + <PolyStepSegment x="10.018" y="-0.262"/> + <PolyStepSegment x="10.015" y="-0.281"/> + <PolyStepSegment x="10.080" y="-0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="-0.281"/> + <PolyStepSegment x="8.684" y="-0.156"/> + <PolyStepSegment x="8.722" y="-0.156"/> + <PolyStepSegment x="8.734" y="-0.162"/> + <PolyStepSegment x="8.743" y="-0.177"/> + <PolyStepSegment x="8.747" y="-0.193"/> + <PolyStepSegment x="8.743" y="-0.210"/> + <PolyStepSegment x="8.736" y="-0.223"/> + <PolyStepSegment x="8.722" y="-0.229"/> + <PolyStepSegment x="8.684" y="-0.229"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="-0.156"/> + <PolyStepSegment x="8.808" y="-0.281"/> + <PolyStepSegment x="8.871" y="-0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="-0.281"/> + <PolyStepSegment x="8.963" y="-0.156"/> + <PolyStepSegment x="9.002" y="-0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="-0.237"/> + <PolyStepSegment x="8.939" y="-0.237"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="-0.156"/> + <PolyStepSegment x="9.087" y="-0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="-0.156"/> + <PolyStepSegment x="9.123" y="-0.156"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="-0.281"/> + <PolyStepSegment x="9.180" y="-0.281"/> + <PolyStepSegment x="9.180" y="-0.156"/> + <PolyStepSegment x="9.243" y="-0.156"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="-0.216"/> + <PolyStepSegment x="9.180" y="-0.216"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="-0.281"/> + <PolyStepSegment x="9.301" y="-0.156"/> + <PolyStepSegment x="9.332" y="-0.156"/> + <PolyStepSegment x="9.345" y="-0.162"/> + <PolyStepSegment x="9.354" y="-0.171"/> + <PolyStepSegment x="9.362" y="-0.183"/> + <PolyStepSegment x="9.368" y="-0.198"/> + <PolyStepSegment x="9.370" y="-0.219"/> + <PolyStepSegment x="9.368" y="-0.239"/> + <PolyStepSegment x="9.362" y="-0.254"/> + <PolyStepSegment x="9.354" y="-0.266"/> + <PolyStepSegment x="9.345" y="-0.275"/> + <PolyStepSegment x="9.332" y="-0.281"/> + <PolyStepSegment x="9.301" y="-0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="75.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.254" y="-0.281"/> + <PolyStepSegment x="7.257" y="-0.254"/> + <PolyStepSegment x="7.262" y="-0.231"/> + <PolyStepSegment x="7.268" y="-0.210"/> + <PolyStepSegment x="7.276" y="-0.187"/> + <PolyStepSegment x="7.289" y="-0.156"/> + <PolyStepSegment x="7.226" y="-0.156"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.347" y="-0.262"/> + <PolyStepSegment x="7.357" y="-0.273"/> + <PolyStepSegment x="7.368" y="-0.279"/> + <PolyStepSegment x="7.381" y="-0.281"/> + <PolyStepSegment x="7.395" y="-0.277"/> + <PolyStepSegment x="7.406" y="-0.269"/> + <PolyStepSegment x="7.414" y="-0.254"/> + <PolyStepSegment x="7.416" y="-0.237"/> + <PolyStepSegment x="7.413" y="-0.221"/> + <PolyStepSegment x="7.405" y="-0.210"/> + <PolyStepSegment x="7.394" y="-0.202"/> + <PolyStepSegment x="7.383" y="-0.200"/> + <PolyStepSegment x="7.372" y="-0.202"/> + <PolyStepSegment x="7.358" y="-0.210"/> + <PolyStepSegment x="7.363" y="-0.156"/> + <PolyStepSegment x="7.405" y="-0.156"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.505" y="-0.285"/> + <PolyStepSegment x="7.502" y="-0.283"/> + <PolyStepSegment x="7.502" y="-0.279"/> + <PolyStepSegment x="7.505" y="-0.277"/> + <PolyStepSegment x="7.509" y="-0.279"/> + <PolyStepSegment x="7.509" y="-0.283"/> + <PolyStepSegment x="7.505" y="-0.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.629" y="-0.156"/> + <PolyStepSegment x="7.617" y="-0.160"/> + <PolyStepSegment x="7.608" y="-0.171"/> + <PolyStepSegment x="7.602" y="-0.183"/> + <PolyStepSegment x="7.597" y="-0.200"/> + <PolyStepSegment x="7.595" y="-0.219"/> + <PolyStepSegment x="7.597" y="-0.237"/> + <PolyStepSegment x="7.602" y="-0.254"/> + <PolyStepSegment x="7.608" y="-0.266"/> + <PolyStepSegment x="7.617" y="-0.277"/> + <PolyStepSegment x="7.629" y="-0.281"/> + <PolyStepSegment x="7.642" y="-0.277"/> + <PolyStepSegment x="7.651" y="-0.266"/> + <PolyStepSegment x="7.657" y="-0.254"/> + <PolyStepSegment x="7.662" y="-0.237"/> + <PolyStepSegment x="7.664" y="-0.219"/> + <PolyStepSegment x="7.662" y="-0.200"/> + <PolyStepSegment x="7.657" y="-0.183"/> + <PolyStepSegment x="7.651" y="-0.171"/> + <PolyStepSegment x="7.642" y="-0.160"/> + <PolyStepSegment x="7.629" y="-0.156"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="45" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.004" y="0.657"/> + <PolyStepSegment x="10.004" y="0.782"/> + <PolyStepSegment x="9.947" y="0.692"/> + <PolyStepSegment x="10.024" y="0.692"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.075" y="0.676"/> + <PolyStepSegment x="10.085" y="0.665"/> + <PolyStepSegment x="10.096" y="0.659"/> + <PolyStepSegment x="10.109" y="0.657"/> + <PolyStepSegment x="10.123" y="0.661"/> + <PolyStepSegment x="10.134" y="0.669"/> + <PolyStepSegment x="10.142" y="0.684"/> + <PolyStepSegment x="10.144" y="0.701"/> + <PolyStepSegment x="10.141" y="0.717"/> + <PolyStepSegment x="10.133" y="0.728"/> + <PolyStepSegment x="10.122" y="0.736"/> + <PolyStepSegment x="10.111" y="0.738"/> + <PolyStepSegment x="10.100" y="0.736"/> + <PolyStepSegment x="10.086" y="0.728"/> + <PolyStepSegment x="10.091" y="0.782"/> + <PolyStepSegment x="10.133" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="0.657"/> + <PolyStepSegment x="8.684" y="0.782"/> + <PolyStepSegment x="8.722" y="0.782"/> + <PolyStepSegment x="8.734" y="0.776"/> + <PolyStepSegment x="8.743" y="0.761"/> + <PolyStepSegment x="8.747" y="0.745"/> + <PolyStepSegment x="8.743" y="0.728"/> + <PolyStepSegment x="8.736" y="0.715"/> + <PolyStepSegment x="8.722" y="0.709"/> + <PolyStepSegment x="8.684" y="0.709"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="0.782"/> + <PolyStepSegment x="8.808" y="0.657"/> + <PolyStepSegment x="8.871" y="0.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="0.657"/> + <PolyStepSegment x="8.963" y="0.782"/> + <PolyStepSegment x="9.002" y="0.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="0.701"/> + <PolyStepSegment x="8.939" y="0.701"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="0.782"/> + <PolyStepSegment x="9.087" y="0.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="0.782"/> + <PolyStepSegment x="9.123" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="0.657"/> + <PolyStepSegment x="9.180" y="0.657"/> + <PolyStepSegment x="9.180" y="0.782"/> + <PolyStepSegment x="9.243" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="0.722"/> + <PolyStepSegment x="9.180" y="0.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="0.657"/> + <PolyStepSegment x="9.301" y="0.782"/> + <PolyStepSegment x="9.332" y="0.782"/> + <PolyStepSegment x="9.345" y="0.776"/> + <PolyStepSegment x="9.354" y="0.767"/> + <PolyStepSegment x="9.362" y="0.755"/> + <PolyStepSegment x="9.368" y="0.740"/> + <PolyStepSegment x="9.370" y="0.719"/> + <PolyStepSegment x="9.368" y="0.699"/> + <PolyStepSegment x="9.362" y="0.684"/> + <PolyStepSegment x="9.354" y="0.672"/> + <PolyStepSegment x="9.345" y="0.663"/> + <PolyStepSegment x="9.332" y="0.657"/> + <PolyStepSegment x="9.301" y="0.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="51.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.223" y="0.676"/> + <PolyStepSegment x="7.233" y="0.665"/> + <PolyStepSegment x="7.244" y="0.659"/> + <PolyStepSegment x="7.257" y="0.657"/> + <PolyStepSegment x="7.271" y="0.661"/> + <PolyStepSegment x="7.282" y="0.669"/> + <PolyStepSegment x="7.290" y="0.684"/> + <PolyStepSegment x="7.292" y="0.701"/> + <PolyStepSegment x="7.289" y="0.717"/> + <PolyStepSegment x="7.281" y="0.728"/> + <PolyStepSegment x="7.270" y="0.736"/> + <PolyStepSegment x="7.259" y="0.738"/> + <PolyStepSegment x="7.248" y="0.736"/> + <PolyStepSegment x="7.234" y="0.728"/> + <PolyStepSegment x="7.239" y="0.782"/> + <PolyStepSegment x="7.281" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.381" y="0.657"/> + <PolyStepSegment x="7.381" y="0.782"/> + <PolyStepSegment x="7.363" y="0.757"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.363" y="0.657"/> + <PolyStepSegment x="7.400" y="0.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.505" y="0.653"/> + <PolyStepSegment x="7.502" y="0.655"/> + <PolyStepSegment x="7.502" y="0.659"/> + <PolyStepSegment x="7.505" y="0.661"/> + <PolyStepSegment x="7.509" y="0.659"/> + <PolyStepSegment x="7.509" y="0.655"/> + <PolyStepSegment x="7.505" y="0.653"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.629" y="0.782"/> + <PolyStepSegment x="7.617" y="0.778"/> + <PolyStepSegment x="7.608" y="0.767"/> + <PolyStepSegment x="7.602" y="0.755"/> + <PolyStepSegment x="7.597" y="0.738"/> + <PolyStepSegment x="7.595" y="0.719"/> + <PolyStepSegment x="7.597" y="0.701"/> + <PolyStepSegment x="7.602" y="0.684"/> + <PolyStepSegment x="7.608" y="0.672"/> + <PolyStepSegment x="7.617" y="0.661"/> + <PolyStepSegment x="7.629" y="0.657"/> + <PolyStepSegment x="7.642" y="0.661"/> + <PolyStepSegment x="7.651" y="0.672"/> + <PolyStepSegment x="7.657" y="0.684"/> + <PolyStepSegment x="7.662" y="0.701"/> + <PolyStepSegment x="7.664" y="0.719"/> + <PolyStepSegment x="7.662" y="0.738"/> + <PolyStepSegment x="7.657" y="0.755"/> + <PolyStepSegment x="7.651" y="0.767"/> + <PolyStepSegment x="7.642" y="0.778"/> + <PolyStepSegment x="7.629" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.018" y="1.646"/> + <PolyStepSegment x="10.029" y="1.661"/> + <PolyStepSegment x="10.038" y="1.669"/> + <PolyStepSegment x="10.051" y="1.673"/> + <PolyStepSegment x="10.061" y="1.669"/> + <PolyStepSegment x="10.069" y="1.661"/> + <PolyStepSegment x="10.075" y="1.648"/> + <PolyStepSegment x="10.077" y="1.634"/> + <PolyStepSegment x="10.075" y="1.621"/> + <PolyStepSegment x="10.069" y="1.609"/> + <PolyStepSegment x="10.060" y="1.598"/> + <PolyStepSegment x="10.049" y="1.594"/> + <PolyStepSegment x="10.037" y="1.598"/> + <PolyStepSegment x="10.026" y="1.611"/> + <PolyStepSegment x="10.020" y="1.629"/> + <PolyStepSegment x="10.018" y="1.650"/> + <PolyStepSegment x="10.021" y="1.677"/> + <PolyStepSegment x="10.026" y="1.692"/> + <PolyStepSegment x="10.034" y="1.706"/> + <PolyStepSegment x="10.044" y="1.717"/> + <PolyStepSegment x="10.055" y="1.719"/> + <PolyStepSegment x="10.066" y="1.715"/> + <PolyStepSegment x="10.074" y="1.704"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="1.594"/> + <PolyStepSegment x="8.684" y="1.719"/> + <PolyStepSegment x="8.722" y="1.719"/> + <PolyStepSegment x="8.734" y="1.713"/> + <PolyStepSegment x="8.743" y="1.698"/> + <PolyStepSegment x="8.747" y="1.682"/> + <PolyStepSegment x="8.743" y="1.665"/> + <PolyStepSegment x="8.736" y="1.652"/> + <PolyStepSegment x="8.722" y="1.646"/> + <PolyStepSegment x="8.684" y="1.646"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="1.719"/> + <PolyStepSegment x="8.808" y="1.594"/> + <PolyStepSegment x="8.871" y="1.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="1.594"/> + <PolyStepSegment x="8.963" y="1.719"/> + <PolyStepSegment x="9.002" y="1.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="1.638"/> + <PolyStepSegment x="8.939" y="1.638"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="1.719"/> + <PolyStepSegment x="9.087" y="1.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="1.719"/> + <PolyStepSegment x="9.123" y="1.719"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="1.594"/> + <PolyStepSegment x="9.180" y="1.594"/> + <PolyStepSegment x="9.180" y="1.719"/> + <PolyStepSegment x="9.243" y="1.719"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="1.659"/> + <PolyStepSegment x="9.180" y="1.659"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="1.594"/> + <PolyStepSegment x="9.301" y="1.719"/> + <PolyStepSegment x="9.332" y="1.719"/> + <PolyStepSegment x="9.345" y="1.713"/> + <PolyStepSegment x="9.354" y="1.704"/> + <PolyStepSegment x="9.362" y="1.692"/> + <PolyStepSegment x="9.368" y="1.677"/> + <PolyStepSegment x="9.370" y="1.656"/> + <PolyStepSegment x="9.368" y="1.636"/> + <PolyStepSegment x="9.362" y="1.621"/> + <PolyStepSegment x="9.354" y="1.609"/> + <PolyStepSegment x="9.345" y="1.600"/> + <PolyStepSegment x="9.332" y="1.594"/> + <PolyStepSegment x="9.301" y="1.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="35.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.223" y="1.619"/> + <PolyStepSegment x="7.233" y="1.604"/> + <PolyStepSegment x="7.245" y="1.596"/> + <PolyStepSegment x="7.259" y="1.594"/> + <PolyStepSegment x="7.271" y="1.596"/> + <PolyStepSegment x="7.284" y="1.606"/> + <PolyStepSegment x="7.292" y="1.619"/> + <PolyStepSegment x="7.293" y="1.631"/> + <PolyStepSegment x="7.290" y="1.646"/> + <PolyStepSegment x="7.279" y="1.656"/> + <PolyStepSegment x="7.268" y="1.661"/> + <PolyStepSegment x="7.254" y="1.661"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.268" y="1.661"/> + <PolyStepSegment x="7.278" y="1.667"/> + <PolyStepSegment x="7.285" y="1.677"/> + <PolyStepSegment x="7.289" y="1.690"/> + <PolyStepSegment x="7.285" y="1.702"/> + <PolyStepSegment x="7.278" y="1.713"/> + <PolyStepSegment x="7.264" y="1.719"/> + <PolyStepSegment x="7.250" y="1.717"/> + <PolyStepSegment x="7.236" y="1.709"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.347" y="1.613"/> + <PolyStepSegment x="7.357" y="1.602"/> + <PolyStepSegment x="7.368" y="1.596"/> + <PolyStepSegment x="7.381" y="1.594"/> + <PolyStepSegment x="7.395" y="1.598"/> + <PolyStepSegment x="7.406" y="1.606"/> + <PolyStepSegment x="7.414" y="1.621"/> + <PolyStepSegment x="7.416" y="1.638"/> + <PolyStepSegment x="7.413" y="1.654"/> + <PolyStepSegment x="7.405" y="1.665"/> + <PolyStepSegment x="7.394" y="1.673"/> + <PolyStepSegment x="7.383" y="1.675"/> + <PolyStepSegment x="7.372" y="1.673"/> + <PolyStepSegment x="7.358" y="1.665"/> + <PolyStepSegment x="7.363" y="1.719"/> + <PolyStepSegment x="7.405" y="1.719"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.505" y="1.590"/> + <PolyStepSegment x="7.502" y="1.592"/> + <PolyStepSegment x="7.502" y="1.596"/> + <PolyStepSegment x="7.505" y="1.598"/> + <PolyStepSegment x="7.509" y="1.596"/> + <PolyStepSegment x="7.509" y="1.592"/> + <PolyStepSegment x="7.505" y="1.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.629" y="1.719"/> + <PolyStepSegment x="7.617" y="1.715"/> + <PolyStepSegment x="7.608" y="1.704"/> + <PolyStepSegment x="7.602" y="1.692"/> + <PolyStepSegment x="7.597" y="1.675"/> + <PolyStepSegment x="7.595" y="1.656"/> + <PolyStepSegment x="7.597" y="1.638"/> + <PolyStepSegment x="7.602" y="1.621"/> + <PolyStepSegment x="7.608" y="1.609"/> + <PolyStepSegment x="7.617" y="1.598"/> + <PolyStepSegment x="7.629" y="1.594"/> + <PolyStepSegment x="7.642" y="1.598"/> + <PolyStepSegment x="7.651" y="1.609"/> + <PolyStepSegment x="7.657" y="1.621"/> + <PolyStepSegment x="7.662" y="1.638"/> + <PolyStepSegment x="7.664" y="1.656"/> + <PolyStepSegment x="7.662" y="1.675"/> + <PolyStepSegment x="7.657" y="1.692"/> + <PolyStepSegment x="7.651" y="1.704"/> + <PolyStepSegment x="7.642" y="1.715"/> + <PolyStepSegment x="7.629" y="1.719"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="10" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.985" y="2.532"/> + <PolyStepSegment x="9.985" y="2.657"/> + <PolyStepSegment x="9.967" y="2.632"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.967" y="2.532"/> + <PolyStepSegment x="10.004" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.109" y="2.657"/> + <PolyStepSegment x="10.097" y="2.653"/> + <PolyStepSegment x="10.088" y="2.642"/> + <PolyStepSegment x="10.082" y="2.630"/> + <PolyStepSegment x="10.077" y="2.613"/> + <PolyStepSegment x="10.075" y="2.594"/> + <PolyStepSegment x="10.077" y="2.576"/> + <PolyStepSegment x="10.082" y="2.559"/> + <PolyStepSegment x="10.088" y="2.547"/> + <PolyStepSegment x="10.097" y="2.536"/> + <PolyStepSegment x="10.109" y="2.532"/> + <PolyStepSegment x="10.122" y="2.536"/> + <PolyStepSegment x="10.131" y="2.547"/> + <PolyStepSegment x="10.137" y="2.559"/> + <PolyStepSegment x="10.142" y="2.576"/> + <PolyStepSegment x="10.144" y="2.594"/> + <PolyStepSegment x="10.142" y="2.613"/> + <PolyStepSegment x="10.137" y="2.630"/> + <PolyStepSegment x="10.131" y="2.642"/> + <PolyStepSegment x="10.122" y="2.653"/> + <PolyStepSegment x="10.109" y="2.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="2.532"/> + <PolyStepSegment x="8.684" y="2.657"/> + <PolyStepSegment x="8.722" y="2.657"/> + <PolyStepSegment x="8.734" y="2.651"/> + <PolyStepSegment x="8.743" y="2.636"/> + <PolyStepSegment x="8.747" y="2.620"/> + <PolyStepSegment x="8.743" y="2.603"/> + <PolyStepSegment x="8.736" y="2.590"/> + <PolyStepSegment x="8.722" y="2.584"/> + <PolyStepSegment x="8.684" y="2.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="2.657"/> + <PolyStepSegment x="8.808" y="2.532"/> + <PolyStepSegment x="8.871" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="2.532"/> + <PolyStepSegment x="8.963" y="2.657"/> + <PolyStepSegment x="9.002" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="2.576"/> + <PolyStepSegment x="8.939" y="2.576"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="2.657"/> + <PolyStepSegment x="9.087" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="2.657"/> + <PolyStepSegment x="9.123" y="2.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="2.532"/> + <PolyStepSegment x="9.180" y="2.532"/> + <PolyStepSegment x="9.180" y="2.657"/> + <PolyStepSegment x="9.243" y="2.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="2.597"/> + <PolyStepSegment x="9.180" y="2.597"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="2.532"/> + <PolyStepSegment x="9.301" y="2.657"/> + <PolyStepSegment x="9.332" y="2.657"/> + <PolyStepSegment x="9.345" y="2.651"/> + <PolyStepSegment x="9.354" y="2.642"/> + <PolyStepSegment x="9.362" y="2.630"/> + <PolyStepSegment x="9.368" y="2.615"/> + <PolyStepSegment x="9.370" y="2.594"/> + <PolyStepSegment x="9.368" y="2.574"/> + <PolyStepSegment x="9.362" y="2.559"/> + <PolyStepSegment x="9.354" y="2.547"/> + <PolyStepSegment x="9.345" y="2.538"/> + <PolyStepSegment x="9.332" y="2.532"/> + <PolyStepSegment x="9.301" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="31.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.223" y="2.557"/> + <PolyStepSegment x="7.233" y="2.542"/> + <PolyStepSegment x="7.245" y="2.534"/> + <PolyStepSegment x="7.259" y="2.532"/> + <PolyStepSegment x="7.271" y="2.534"/> + <PolyStepSegment x="7.284" y="2.544"/> + <PolyStepSegment x="7.292" y="2.557"/> + <PolyStepSegment x="7.293" y="2.569"/> + <PolyStepSegment x="7.290" y="2.584"/> + <PolyStepSegment x="7.279" y="2.594"/> + <PolyStepSegment x="7.268" y="2.599"/> + <PolyStepSegment x="7.254" y="2.599"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.268" y="2.599"/> + <PolyStepSegment x="7.278" y="2.605"/> + <PolyStepSegment x="7.285" y="2.615"/> + <PolyStepSegment x="7.289" y="2.628"/> + <PolyStepSegment x="7.285" y="2.640"/> + <PolyStepSegment x="7.278" y="2.651"/> + <PolyStepSegment x="7.264" y="2.657"/> + <PolyStepSegment x="7.250" y="2.655"/> + <PolyStepSegment x="7.236" y="2.647"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.381" y="2.532"/> + <PolyStepSegment x="7.381" y="2.657"/> + <PolyStepSegment x="7.363" y="2.632"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.363" y="2.532"/> + <PolyStepSegment x="7.400" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.505" y="2.528"/> + <PolyStepSegment x="7.502" y="2.530"/> + <PolyStepSegment x="7.502" y="2.534"/> + <PolyStepSegment x="7.505" y="2.536"/> + <PolyStepSegment x="7.509" y="2.534"/> + <PolyStepSegment x="7.509" y="2.530"/> + <PolyStepSegment x="7.505" y="2.528"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.629" y="2.657"/> + <PolyStepSegment x="7.617" y="2.653"/> + <PolyStepSegment x="7.608" y="2.642"/> + <PolyStepSegment x="7.602" y="2.630"/> + <PolyStepSegment x="7.597" y="2.613"/> + <PolyStepSegment x="7.595" y="2.594"/> + <PolyStepSegment x="7.597" y="2.576"/> + <PolyStepSegment x="7.602" y="2.559"/> + <PolyStepSegment x="7.608" y="2.547"/> + <PolyStepSegment x="7.617" y="2.536"/> + <PolyStepSegment x="7.629" y="2.532"/> + <PolyStepSegment x="7.642" y="2.536"/> + <PolyStepSegment x="7.651" y="2.547"/> + <PolyStepSegment x="7.657" y="2.559"/> + <PolyStepSegment x="7.662" y="2.576"/> + <PolyStepSegment x="7.664" y="2.594"/> + <PolyStepSegment x="7.662" y="2.613"/> + <PolyStepSegment x="7.657" y="2.630"/> + <PolyStepSegment x="7.651" y="2.642"/> + <PolyStepSegment x="7.642" y="2.653"/> + <PolyStepSegment x="7.629" y="2.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="108" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.923" y="3.469"/> + <PolyStepSegment x="9.923" y="3.594"/> + <PolyStepSegment x="9.905" y="3.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.905" y="3.469"/> + <PolyStepSegment x="9.942" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.047" y="3.594"/> + <PolyStepSegment x="10.035" y="3.590"/> + <PolyStepSegment x="10.026" y="3.579"/> + <PolyStepSegment x="10.020" y="3.567"/> + <PolyStepSegment x="10.015" y="3.550"/> + <PolyStepSegment x="10.013" y="3.531"/> + <PolyStepSegment x="10.015" y="3.513"/> + <PolyStepSegment x="10.020" y="3.496"/> + <PolyStepSegment x="10.026" y="3.484"/> + <PolyStepSegment x="10.035" y="3.473"/> + <PolyStepSegment x="10.047" y="3.469"/> + <PolyStepSegment x="10.060" y="3.473"/> + <PolyStepSegment x="10.069" y="3.484"/> + <PolyStepSegment x="10.075" y="3.496"/> + <PolyStepSegment x="10.080" y="3.513"/> + <PolyStepSegment x="10.082" y="3.531"/> + <PolyStepSegment x="10.080" y="3.550"/> + <PolyStepSegment x="10.075" y="3.567"/> + <PolyStepSegment x="10.069" y="3.579"/> + <PolyStepSegment x="10.060" y="3.590"/> + <PolyStepSegment x="10.047" y="3.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.171" y="3.469"/> + <PolyStepSegment x="10.182" y="3.471"/> + <PolyStepSegment x="10.195" y="3.477"/> + <PolyStepSegment x="10.203" y="3.488"/> + <PolyStepSegment x="10.206" y="3.502"/> + <PolyStepSegment x="10.203" y="3.517"/> + <PolyStepSegment x="10.193" y="3.529"/> + <PolyStepSegment x="10.179" y="3.536"/> + <PolyStepSegment x="10.164" y="3.536"/> + <PolyStepSegment x="10.154" y="3.540"/> + <PolyStepSegment x="10.147" y="3.550"/> + <PolyStepSegment x="10.144" y="3.565"/> + <PolyStepSegment x="10.148" y="3.579"/> + <PolyStepSegment x="10.159" y="3.590"/> + <PolyStepSegment x="10.171" y="3.594"/> + <PolyStepSegment x="10.184" y="3.590"/> + <PolyStepSegment x="10.195" y="3.579"/> + <PolyStepSegment x="10.199" y="3.565"/> + <PolyStepSegment x="10.196" y="3.550"/> + <PolyStepSegment x="10.189" y="3.540"/> + <PolyStepSegment x="10.179" y="3.536"/> + <PolyStepSegment x="10.164" y="3.536"/> + <PolyStepSegment x="10.150" y="3.529"/> + <PolyStepSegment x="10.140" y="3.517"/> + <PolyStepSegment x="10.137" y="3.502"/> + <PolyStepSegment x="10.140" y="3.488"/> + <PolyStepSegment x="10.148" y="3.477"/> + <PolyStepSegment x="10.161" y="3.471"/> + <PolyStepSegment x="10.171" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="3.469"/> + <PolyStepSegment x="8.684" y="3.594"/> + <PolyStepSegment x="8.722" y="3.594"/> + <PolyStepSegment x="8.734" y="3.588"/> + <PolyStepSegment x="8.743" y="3.573"/> + <PolyStepSegment x="8.747" y="3.557"/> + <PolyStepSegment x="8.743" y="3.540"/> + <PolyStepSegment x="8.736" y="3.527"/> + <PolyStepSegment x="8.722" y="3.521"/> + <PolyStepSegment x="8.684" y="3.521"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="3.594"/> + <PolyStepSegment x="8.808" y="3.469"/> + <PolyStepSegment x="8.871" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="3.469"/> + <PolyStepSegment x="8.963" y="3.594"/> + <PolyStepSegment x="9.002" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="3.513"/> + <PolyStepSegment x="8.939" y="3.513"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="3.594"/> + <PolyStepSegment x="9.087" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="3.594"/> + <PolyStepSegment x="9.123" y="3.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="3.469"/> + <PolyStepSegment x="9.180" y="3.469"/> + <PolyStepSegment x="9.180" y="3.594"/> + <PolyStepSegment x="9.243" y="3.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="3.534"/> + <PolyStepSegment x="9.180" y="3.534"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="3.469"/> + <PolyStepSegment x="9.301" y="3.594"/> + <PolyStepSegment x="9.332" y="3.594"/> + <PolyStepSegment x="9.345" y="3.588"/> + <PolyStepSegment x="9.354" y="3.579"/> + <PolyStepSegment x="9.362" y="3.567"/> + <PolyStepSegment x="9.368" y="3.552"/> + <PolyStepSegment x="9.370" y="3.531"/> + <PolyStepSegment x="9.368" y="3.511"/> + <PolyStepSegment x="9.362" y="3.496"/> + <PolyStepSegment x="9.354" y="3.484"/> + <PolyStepSegment x="9.345" y="3.475"/> + <PolyStepSegment x="9.332" y="3.469"/> + <PolyStepSegment x="9.301" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="24.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.228" y="3.573"/> + <PolyStepSegment x="7.237" y="3.586"/> + <PolyStepSegment x="7.248" y="3.592"/> + <PolyStepSegment x="7.261" y="3.594"/> + <PolyStepSegment x="7.276" y="3.590"/> + <PolyStepSegment x="7.287" y="3.579"/> + <PolyStepSegment x="7.290" y="3.567"/> + <PolyStepSegment x="7.289" y="3.554"/> + <PolyStepSegment x="7.282" y="3.544"/> + <PolyStepSegment x="7.251" y="3.523"/> + <PolyStepSegment x="7.237" y="3.509"/> + <PolyStepSegment x="7.228" y="3.488"/> + <PolyStepSegment x="7.225" y="3.469"/> + <PolyStepSegment x="7.290" y="3.469"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.400" y="3.469"/> + <PolyStepSegment x="7.400" y="3.594"/> + <PolyStepSegment x="7.343" y="3.504"/> + <PolyStepSegment x="7.420" y="3.504"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.505" y="3.465"/> + <PolyStepSegment x="7.502" y="3.467"/> + <PolyStepSegment x="7.502" y="3.471"/> + <PolyStepSegment x="7.505" y="3.473"/> + <PolyStepSegment x="7.509" y="3.471"/> + <PolyStepSegment x="7.509" y="3.467"/> + <PolyStepSegment x="7.505" y="3.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.629" y="3.594"/> + <PolyStepSegment x="7.617" y="3.590"/> + <PolyStepSegment x="7.608" y="3.579"/> + <PolyStepSegment x="7.602" y="3.567"/> + <PolyStepSegment x="7.597" y="3.550"/> + <PolyStepSegment x="7.595" y="3.531"/> + <PolyStepSegment x="7.597" y="3.513"/> + <PolyStepSegment x="7.602" y="3.496"/> + <PolyStepSegment x="7.608" y="3.484"/> + <PolyStepSegment x="7.617" y="3.473"/> + <PolyStepSegment x="7.629" y="3.469"/> + <PolyStepSegment x="7.642" y="3.473"/> + <PolyStepSegment x="7.651" y="3.484"/> + <PolyStepSegment x="7.657" y="3.496"/> + <PolyStepSegment x="7.662" y="3.513"/> + <PolyStepSegment x="7.664" y="3.531"/> + <PolyStepSegment x="7.662" y="3.550"/> + <PolyStepSegment x="7.657" y="3.567"/> + <PolyStepSegment x="7.651" y="3.579"/> + <PolyStepSegment x="7.642" y="3.590"/> + <PolyStepSegment x="7.629" y="3.594"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.013" y="4.432"/> + <PolyStepSegment x="10.023" y="4.417"/> + <PolyStepSegment x="10.035" y="4.409"/> + <PolyStepSegment x="10.049" y="4.407"/> + <PolyStepSegment x="10.061" y="4.409"/> + <PolyStepSegment x="10.074" y="4.419"/> + <PolyStepSegment x="10.082" y="4.432"/> + <PolyStepSegment x="10.083" y="4.444"/> + <PolyStepSegment x="10.080" y="4.459"/> + <PolyStepSegment x="10.069" y="4.469"/> + <PolyStepSegment x="10.058" y="4.474"/> + <PolyStepSegment x="10.044" y="4.474"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.058" y="4.474"/> + <PolyStepSegment x="10.068" y="4.480"/> + <PolyStepSegment x="10.075" y="4.490"/> + <PolyStepSegment x="10.079" y="4.503"/> + <PolyStepSegment x="10.075" y="4.515"/> + <PolyStepSegment x="10.068" y="4.526"/> + <PolyStepSegment x="10.054" y="4.532"/> + <PolyStepSegment x="10.040" y="4.530"/> + <PolyStepSegment x="10.026" y="4.522"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="NON-PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.432" y="4.407"/> + <PolyStepSegment x="8.432" y="4.532"/> + <PolyStepSegment x="8.503" y="4.407"/> + <PolyStepSegment x="8.503" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.591" y="4.407"/> + <PolyStepSegment x="8.579" y="4.409"/> + <PolyStepSegment x="8.568" y="4.417"/> + <PolyStepSegment x="8.559" y="4.430"/> + <PolyStepSegment x="8.553" y="4.444"/> + <PolyStepSegment x="8.550" y="4.461"/> + <PolyStepSegment x="8.550" y="4.478"/> + <PolyStepSegment x="8.553" y="4.495"/> + <PolyStepSegment x="8.559" y="4.509"/> + <PolyStepSegment x="8.568" y="4.522"/> + <PolyStepSegment x="8.579" y="4.530"/> + <PolyStepSegment x="8.591" y="4.532"/> + <PolyStepSegment x="8.604" y="4.530"/> + <PolyStepSegment x="8.615" y="4.522"/> + <PolyStepSegment x="8.624" y="4.509"/> + <PolyStepSegment x="8.630" y="4.495"/> + <PolyStepSegment x="8.633" y="4.478"/> + <PolyStepSegment x="8.633" y="4.461"/> + <PolyStepSegment x="8.630" y="4.444"/> + <PolyStepSegment x="8.624" y="4.430"/> + <PolyStepSegment x="8.615" y="4.417"/> + <PolyStepSegment x="8.604" y="4.409"/> + <PolyStepSegment x="8.591" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.680" y="4.407"/> + <PolyStepSegment x="8.680" y="4.532"/> + <PolyStepSegment x="8.751" y="4.407"/> + <PolyStepSegment x="8.751" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.819" y="4.449"/> + <PolyStepSegment x="8.860" y="4.449"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.932" y="4.407"/> + <PolyStepSegment x="8.932" y="4.532"/> + <PolyStepSegment x="8.970" y="4.532"/> + <PolyStepSegment x="8.982" y="4.526"/> + <PolyStepSegment x="8.991" y="4.511"/> + <PolyStepSegment x="8.995" y="4.495"/> + <PolyStepSegment x="8.991" y="4.478"/> + <PolyStepSegment x="8.984" y="4.465"/> + <PolyStepSegment x="8.970" y="4.459"/> + <PolyStepSegment x="8.932" y="4.459"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.056" y="4.532"/> + <PolyStepSegment x="9.056" y="4.407"/> + <PolyStepSegment x="9.119" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.173" y="4.407"/> + <PolyStepSegment x="9.211" y="4.532"/> + <PolyStepSegment x="9.250" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.236" y="4.451"/> + <PolyStepSegment x="9.187" y="4.451"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.335" y="4.532"/> + <PolyStepSegment x="9.335" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.300" y="4.532"/> + <PolyStepSegment x="9.371" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.491" y="4.407"/> + <PolyStepSegment x="9.428" y="4.407"/> + <PolyStepSegment x="9.428" y="4.532"/> + <PolyStepSegment x="9.491" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.466" y="4.472"/> + <PolyStepSegment x="9.428" y="4.472"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.549" y="4.407"/> + <PolyStepSegment x="9.549" y="4.532"/> + <PolyStepSegment x="9.580" y="4.532"/> + <PolyStepSegment x="9.593" y="4.526"/> + <PolyStepSegment x="9.602" y="4.517"/> + <PolyStepSegment x="9.610" y="4.505"/> + <PolyStepSegment x="9.616" y="4.490"/> + <PolyStepSegment x="9.618" y="4.469"/> + <PolyStepSegment x="9.616" y="4.449"/> + <PolyStepSegment x="9.610" y="4.434"/> + <PolyStepSegment x="9.602" y="4.422"/> + <PolyStepSegment x="9.593" y="4.413"/> + <PolyStepSegment x="9.580" y="4.407"/> + <PolyStepSegment x="9.549" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="125.0" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.195" y="4.407"/> + <PolyStepSegment x="7.195" y="4.532"/> + <PolyStepSegment x="7.177" y="4.507"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.177" y="4.407"/> + <PolyStepSegment x="7.214" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.290" y="4.511"/> + <PolyStepSegment x="7.299" y="4.524"/> + <PolyStepSegment x="7.310" y="4.530"/> + <PolyStepSegment x="7.323" y="4.532"/> + <PolyStepSegment x="7.338" y="4.528"/> + <PolyStepSegment x="7.349" y="4.517"/> + <PolyStepSegment x="7.352" y="4.505"/> + <PolyStepSegment x="7.351" y="4.492"/> + <PolyStepSegment x="7.344" y="4.482"/> + <PolyStepSegment x="7.313" y="4.461"/> + <PolyStepSegment x="7.299" y="4.447"/> + <PolyStepSegment x="7.290" y="4.426"/> + <PolyStepSegment x="7.287" y="4.407"/> + <PolyStepSegment x="7.352" y="4.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.409" y="4.426"/> + <PolyStepSegment x="7.419" y="4.415"/> + <PolyStepSegment x="7.430" y="4.409"/> + <PolyStepSegment x="7.443" y="4.407"/> + <PolyStepSegment x="7.457" y="4.411"/> + <PolyStepSegment x="7.468" y="4.419"/> + <PolyStepSegment x="7.476" y="4.434"/> + <PolyStepSegment x="7.478" y="4.451"/> + <PolyStepSegment x="7.475" y="4.467"/> + <PolyStepSegment x="7.467" y="4.478"/> + <PolyStepSegment x="7.456" y="4.486"/> + <PolyStepSegment x="7.445" y="4.488"/> + <PolyStepSegment x="7.434" y="4.486"/> + <PolyStepSegment x="7.420" y="4.478"/> + <PolyStepSegment x="7.425" y="4.532"/> + <PolyStepSegment x="7.467" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.567" y="4.403"/> + <PolyStepSegment x="7.564" y="4.405"/> + <PolyStepSegment x="7.564" y="4.409"/> + <PolyStepSegment x="7.567" y="4.411"/> + <PolyStepSegment x="7.571" y="4.409"/> + <PolyStepSegment x="7.571" y="4.405"/> + <PolyStepSegment x="7.567" y="4.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.691" y="4.532"/> + <PolyStepSegment x="7.679" y="4.528"/> + <PolyStepSegment x="7.670" y="4.517"/> + <PolyStepSegment x="7.664" y="4.505"/> + <PolyStepSegment x="7.659" y="4.488"/> + <PolyStepSegment x="7.657" y="4.469"/> + <PolyStepSegment x="7.659" y="4.451"/> + <PolyStepSegment x="7.664" y="4.434"/> + <PolyStepSegment x="7.670" y="4.422"/> + <PolyStepSegment x="7.679" y="4.411"/> + <PolyStepSegment x="7.691" y="4.407"/> + <PolyStepSegment x="7.704" y="4.411"/> + <PolyStepSegment x="7.713" y="4.422"/> + <PolyStepSegment x="7.719" y="4.434"/> + <PolyStepSegment x="7.724" y="4.451"/> + <PolyStepSegment x="7.726" y="4.469"/> + <PolyStepSegment x="7.724" y="4.488"/> + <PolyStepSegment x="7.719" y="4.505"/> + <PolyStepSegment x="7.713" y="4.517"/> + <PolyStepSegment x="7.704" y="4.528"/> + <PolyStepSegment x="7.691" y="4.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="QTY" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.923" y="5.032"/> + <PolyStepSegment x="9.911" y="5.034"/> + <PolyStepSegment x="9.900" y="5.042"/> + <PolyStepSegment x="9.891" y="5.055"/> + <PolyStepSegment x="9.885" y="5.069"/> + <PolyStepSegment x="9.882" y="5.086"/> + <PolyStepSegment x="9.882" y="5.103"/> + <PolyStepSegment x="9.885" y="5.120"/> + <PolyStepSegment x="9.891" y="5.134"/> + <PolyStepSegment x="9.900" y="5.147"/> + <PolyStepSegment x="9.911" y="5.155"/> + <PolyStepSegment x="9.923" y="5.157"/> + <PolyStepSegment x="9.936" y="5.155"/> + <PolyStepSegment x="9.947" y="5.147"/> + <PolyStepSegment x="9.956" y="5.134"/> + <PolyStepSegment x="9.962" y="5.120"/> + <PolyStepSegment x="9.965" y="5.103"/> + <PolyStepSegment x="9.965" y="5.086"/> + <PolyStepSegment x="9.962" y="5.069"/> + <PolyStepSegment x="9.956" y="5.055"/> + <PolyStepSegment x="9.947" y="5.042"/> + <PolyStepSegment x="9.936" y="5.034"/> + <PolyStepSegment x="9.923" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.936" y="5.065"/> + <PolyStepSegment x="9.955" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.047" y="5.157"/> + <PolyStepSegment x="10.047" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.012" y="5.157"/> + <PolyStepSegment x="10.083" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.171" y="5.032"/> + <PolyStepSegment x="10.171" y="5.088"/> + <PolyStepSegment x="10.140" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="10.203" y="5.157"/> + <PolyStepSegment x="10.171" y="5.088"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="PLATED" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.684" y="5.032"/> + <PolyStepSegment x="8.684" y="5.157"/> + <PolyStepSegment x="8.722" y="5.157"/> + <PolyStepSegment x="8.734" y="5.151"/> + <PolyStepSegment x="8.743" y="5.136"/> + <PolyStepSegment x="8.747" y="5.120"/> + <PolyStepSegment x="8.743" y="5.103"/> + <PolyStepSegment x="8.736" y="5.090"/> + <PolyStepSegment x="8.722" y="5.084"/> + <PolyStepSegment x="8.684" y="5.084"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.808" y="5.157"/> + <PolyStepSegment x="8.808" y="5.032"/> + <PolyStepSegment x="8.871" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.925" y="5.032"/> + <PolyStepSegment x="8.963" y="5.157"/> + <PolyStepSegment x="9.002" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.988" y="5.076"/> + <PolyStepSegment x="8.939" y="5.076"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.087" y="5.157"/> + <PolyStepSegment x="9.087" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.052" y="5.157"/> + <PolyStepSegment x="9.123" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.243" y="5.032"/> + <PolyStepSegment x="9.180" y="5.032"/> + <PolyStepSegment x="9.180" y="5.157"/> + <PolyStepSegment x="9.243" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.218" y="5.097"/> + <PolyStepSegment x="9.180" y="5.097"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.301" y="5.032"/> + <PolyStepSegment x="9.301" y="5.157"/> + <PolyStepSegment x="9.332" y="5.157"/> + <PolyStepSegment x="9.345" y="5.151"/> + <PolyStepSegment x="9.354" y="5.142"/> + <PolyStepSegment x="9.362" y="5.130"/> + <PolyStepSegment x="9.368" y="5.115"/> + <PolyStepSegment x="9.370" y="5.094"/> + <PolyStepSegment x="9.368" y="5.074"/> + <PolyStepSegment x="9.362" y="5.059"/> + <PolyStepSegment x="9.354" y="5.047"/> + <PolyStepSegment x="9.345" y="5.038"/> + <PolyStepSegment x="9.332" y="5.032"/> + <PolyStepSegment x="9.301" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="SIZE" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.225" y="5.049"/> + <PolyStepSegment x="7.237" y="5.038"/> + <PolyStepSegment x="7.251" y="5.032"/> + <PolyStepSegment x="7.264" y="5.032"/> + <PolyStepSegment x="7.276" y="5.038"/> + <PolyStepSegment x="7.285" y="5.049"/> + <PolyStepSegment x="7.290" y="5.063"/> + <PolyStepSegment x="7.287" y="5.078"/> + <PolyStepSegment x="7.279" y="5.090"/> + <PolyStepSegment x="7.265" y="5.099"/> + <PolyStepSegment x="7.247" y="5.103"/> + <PolyStepSegment x="7.236" y="5.111"/> + <PolyStepSegment x="7.231" y="5.126"/> + <PolyStepSegment x="7.234" y="5.140"/> + <PolyStepSegment x="7.242" y="5.151"/> + <PolyStepSegment x="7.253" y="5.157"/> + <PolyStepSegment x="7.264" y="5.157"/> + <PolyStepSegment x="7.275" y="5.153"/> + <PolyStepSegment x="7.284" y="5.142"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.363" y="5.157"/> + <PolyStepSegment x="7.400" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.381" y="5.157"/> + <PolyStepSegment x="7.381" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.363" y="5.032"/> + <PolyStepSegment x="7.400" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.476" y="5.157"/> + <PolyStepSegment x="7.535" y="5.157"/> + <PolyStepSegment x="7.476" y="5.032"/> + <PolyStepSegment x="7.535" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.661" y="5.032"/> + <PolyStepSegment x="7.598" y="5.032"/> + <PolyStepSegment x="7.598" y="5.157"/> + <PolyStepSegment x="7.661" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.636" y="5.097"/> + <PolyStepSegment x="7.598" y="5.097"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="FIGURE" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.710" y="5.032"/> + <PolyStepSegment x="5.710" y="5.157"/> + <PolyStepSegment x="5.769" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.747" y="5.097"/> + <PolyStepSegment x="5.710" y="5.097"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.845" y="5.157"/> + <PolyStepSegment x="5.882" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.863" y="5.157"/> + <PolyStepSegment x="5.863" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.845" y="5.032"/> + <PolyStepSegment x="5.882" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.997" y="5.094"/> + <PolyStepSegment x="6.028" y="5.094"/> + <PolyStepSegment x="6.028" y="5.057"/> + <PolyStepSegment x="6.019" y="5.044"/> + <PolyStepSegment x="6.008" y="5.036"/> + <PolyStepSegment x="5.992" y="5.032"/> + <PolyStepSegment x="5.977" y="5.036"/> + <PolyStepSegment x="5.966" y="5.044"/> + <PolyStepSegment x="5.956" y="5.057"/> + <PolyStepSegment x="5.950" y="5.072"/> + <PolyStepSegment x="5.947" y="5.088"/> + <PolyStepSegment x="5.947" y="5.103"/> + <PolyStepSegment x="5.950" y="5.115"/> + <PolyStepSegment x="5.956" y="5.130"/> + <PolyStepSegment x="5.966" y="5.142"/> + <PolyStepSegment x="5.975" y="5.151"/> + <PolyStepSegment x="5.987" y="5.157"/> + <PolyStepSegment x="5.998" y="5.157"/> + <PolyStepSegment x="6.011" y="5.153"/> + <PolyStepSegment x="6.020" y="5.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.077" y="5.157"/> + <PolyStepSegment x="6.077" y="5.067"/> + <PolyStepSegment x="6.084" y="5.049"/> + <PolyStepSegment x="6.096" y="5.036"/> + <PolyStepSegment x="6.111" y="5.032"/> + <PolyStepSegment x="6.127" y="5.036"/> + <PolyStepSegment x="6.139" y="5.049"/> + <PolyStepSegment x="6.146" y="5.067"/> + <PolyStepSegment x="6.146" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.204" y="5.032"/> + <PolyStepSegment x="6.204" y="5.157"/> + <PolyStepSegment x="6.243" y="5.157"/> + <PolyStepSegment x="6.256" y="5.151"/> + <PolyStepSegment x="6.263" y="5.142"/> + <PolyStepSegment x="6.267" y="5.126"/> + <PolyStepSegment x="6.263" y="5.109"/> + <PolyStepSegment x="6.254" y="5.099"/> + <PolyStepSegment x="6.243" y="5.092"/> + <PolyStepSegment x="6.204" y="5.092"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.243" y="5.092"/> + <PolyStepSegment x="6.267" y="5.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.391" y="5.032"/> + <PolyStepSegment x="6.328" y="5.032"/> + <PolyStepSegment x="6.328" y="5.157"/> + <PolyStepSegment x="6.391" y="5.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.366" y="5.097"/> + <PolyStepSegment x="6.328" y="5.097"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="ALL UNITS ARE IN MILS" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.739" y="5.312"/> + <PolyStepSegment x="6.777" y="5.437"/> + <PolyStepSegment x="6.816" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.802" y="5.356"/> + <PolyStepSegment x="6.753" y="5.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.870" y="5.437"/> + <PolyStepSegment x="6.870" y="5.312"/> + <PolyStepSegment x="6.933" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.994" y="5.437"/> + <PolyStepSegment x="6.994" y="5.312"/> + <PolyStepSegment x="7.057" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.239" y="5.437"/> + <PolyStepSegment x="7.239" y="5.347"/> + <PolyStepSegment x="7.246" y="5.329"/> + <PolyStepSegment x="7.258" y="5.316"/> + <PolyStepSegment x="7.273" y="5.312"/> + <PolyStepSegment x="7.289" y="5.316"/> + <PolyStepSegment x="7.301" y="5.329"/> + <PolyStepSegment x="7.308" y="5.347"/> + <PolyStepSegment x="7.308" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.362" y="5.312"/> + <PolyStepSegment x="7.362" y="5.437"/> + <PolyStepSegment x="7.433" y="5.312"/> + <PolyStepSegment x="7.433" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.503" y="5.437"/> + <PolyStepSegment x="7.540" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.521" y="5.437"/> + <PolyStepSegment x="7.521" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.503" y="5.312"/> + <PolyStepSegment x="7.540" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.645" y="5.437"/> + <PolyStepSegment x="7.645" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.610" y="5.437"/> + <PolyStepSegment x="7.681" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.737" y="5.329"/> + <PolyStepSegment x="7.749" y="5.318"/> + <PolyStepSegment x="7.763" y="5.312"/> + <PolyStepSegment x="7.776" y="5.312"/> + <PolyStepSegment x="7.788" y="5.318"/> + <PolyStepSegment x="7.797" y="5.329"/> + <PolyStepSegment x="7.802" y="5.343"/> + <PolyStepSegment x="7.799" y="5.358"/> + <PolyStepSegment x="7.791" y="5.370"/> + <PolyStepSegment x="7.777" y="5.379"/> + <PolyStepSegment x="7.759" y="5.383"/> + <PolyStepSegment x="7.748" y="5.391"/> + <PolyStepSegment x="7.743" y="5.406"/> + <PolyStepSegment x="7.746" y="5.420"/> + <PolyStepSegment x="7.754" y="5.431"/> + <PolyStepSegment x="7.765" y="5.437"/> + <PolyStepSegment x="7.776" y="5.437"/> + <PolyStepSegment x="7.787" y="5.433"/> + <PolyStepSegment x="7.796" y="5.422"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.979" y="5.312"/> + <PolyStepSegment x="8.017" y="5.437"/> + <PolyStepSegment x="8.056" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.042" y="5.356"/> + <PolyStepSegment x="7.993" y="5.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.110" y="5.312"/> + <PolyStepSegment x="8.110" y="5.437"/> + <PolyStepSegment x="8.149" y="5.437"/> + <PolyStepSegment x="8.162" y="5.431"/> + <PolyStepSegment x="8.169" y="5.422"/> + <PolyStepSegment x="8.173" y="5.406"/> + <PolyStepSegment x="8.169" y="5.389"/> + <PolyStepSegment x="8.160" y="5.379"/> + <PolyStepSegment x="8.149" y="5.372"/> + <PolyStepSegment x="8.110" y="5.372"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.149" y="5.372"/> + <PolyStepSegment x="8.173" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.297" y="5.312"/> + <PolyStepSegment x="8.234" y="5.312"/> + <PolyStepSegment x="8.234" y="5.437"/> + <PolyStepSegment x="8.297" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.272" y="5.377"/> + <PolyStepSegment x="8.234" y="5.377"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.495" y="5.437"/> + <PolyStepSegment x="8.532" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.513" y="5.437"/> + <PolyStepSegment x="8.513" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.495" y="5.312"/> + <PolyStepSegment x="8.532" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.602" y="5.312"/> + <PolyStepSegment x="8.602" y="5.437"/> + <PolyStepSegment x="8.673" y="5.312"/> + <PolyStepSegment x="8.673" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.845" y="5.312"/> + <PolyStepSegment x="8.845" y="5.437"/> + <PolyStepSegment x="8.885" y="5.333"/> + <PolyStepSegment x="8.926" y="5.437"/> + <PolyStepSegment x="8.926" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.991" y="5.437"/> + <PolyStepSegment x="9.028" y="5.437"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.009" y="5.437"/> + <PolyStepSegment x="9.009" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.991" y="5.312"/> + <PolyStepSegment x="9.028" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.102" y="5.437"/> + <PolyStepSegment x="9.102" y="5.312"/> + <PolyStepSegment x="9.165" y="5.312"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.225" y="5.329"/> + <PolyStepSegment x="9.237" y="5.318"/> + <PolyStepSegment x="9.251" y="5.312"/> + <PolyStepSegment x="9.264" y="5.312"/> + <PolyStepSegment x="9.276" y="5.318"/> + <PolyStepSegment x="9.285" y="5.329"/> + <PolyStepSegment x="9.290" y="5.343"/> + <PolyStepSegment x="9.287" y="5.358"/> + <PolyStepSegment x="9.279" y="5.370"/> + <PolyStepSegment x="9.265" y="5.379"/> + <PolyStepSegment x="9.247" y="5.383"/> + <PolyStepSegment x="9.236" y="5.391"/> + <PolyStepSegment x="9.231" y="5.406"/> + <PolyStepSegment x="9.234" y="5.420"/> + <PolyStepSegment x="9.242" y="5.431"/> + <PolyStepSegment x="9.253" y="5.437"/> + <PolyStepSegment x="9.264" y="5.437"/> + <PolyStepSegment x="9.275" y="5.433"/> + <PolyStepSegment x="9.284" y="5.422"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="DRILL CHART: TOP to BOTTOM" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.433" y="5.562"/> + <PolyStepSegment x="6.433" y="5.687"/> + <PolyStepSegment x="6.464" y="5.687"/> + <PolyStepSegment x="6.477" y="5.681"/> + <PolyStepSegment x="6.486" y="5.672"/> + <PolyStepSegment x="6.494" y="5.660"/> + <PolyStepSegment x="6.500" y="5.645"/> + <PolyStepSegment x="6.502" y="5.624"/> + <PolyStepSegment x="6.500" y="5.604"/> + <PolyStepSegment x="6.494" y="5.589"/> + <PolyStepSegment x="6.486" y="5.577"/> + <PolyStepSegment x="6.477" y="5.568"/> + <PolyStepSegment x="6.464" y="5.562"/> + <PolyStepSegment x="6.433" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.560" y="5.562"/> + <PolyStepSegment x="6.560" y="5.687"/> + <PolyStepSegment x="6.599" y="5.687"/> + <PolyStepSegment x="6.612" y="5.681"/> + <PolyStepSegment x="6.619" y="5.672"/> + <PolyStepSegment x="6.623" y="5.656"/> + <PolyStepSegment x="6.619" y="5.639"/> + <PolyStepSegment x="6.610" y="5.629"/> + <PolyStepSegment x="6.599" y="5.622"/> + <PolyStepSegment x="6.560" y="5.622"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.599" y="5.622"/> + <PolyStepSegment x="6.623" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.697" y="5.687"/> + <PolyStepSegment x="6.734" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.715" y="5.687"/> + <PolyStepSegment x="6.715" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.697" y="5.562"/> + <PolyStepSegment x="6.734" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.808" y="5.687"/> + <PolyStepSegment x="6.808" y="5.562"/> + <PolyStepSegment x="6.871" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.932" y="5.687"/> + <PolyStepSegment x="6.932" y="5.562"/> + <PolyStepSegment x="6.995" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.246" y="5.677"/> + <PolyStepSegment x="7.236" y="5.683"/> + <PolyStepSegment x="7.225" y="5.687"/> + <PolyStepSegment x="7.213" y="5.687"/> + <PolyStepSegment x="7.199" y="5.681"/> + <PolyStepSegment x="7.188" y="5.670"/> + <PolyStepSegment x="7.180" y="5.658"/> + <PolyStepSegment x="7.174" y="5.637"/> + <PolyStepSegment x="7.173" y="5.618"/> + <PolyStepSegment x="7.176" y="5.599"/> + <PolyStepSegment x="7.180" y="5.587"/> + <PolyStepSegment x="7.190" y="5.574"/> + <PolyStepSegment x="7.201" y="5.566"/> + <PolyStepSegment x="7.211" y="5.562"/> + <PolyStepSegment x="7.222" y="5.562"/> + <PolyStepSegment x="7.233" y="5.566"/> + <PolyStepSegment x="7.243" y="5.572"/> + <PolyStepSegment x="7.250" y="5.581"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.303" y="5.562"/> + <PolyStepSegment x="7.303" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.368" y="5.687"/> + <PolyStepSegment x="7.368" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.368" y="5.624"/> + <PolyStepSegment x="7.303" y="5.624"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.421" y="5.562"/> + <PolyStepSegment x="7.459" y="5.687"/> + <PolyStepSegment x="7.498" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.484" y="5.606"/> + <PolyStepSegment x="7.435" y="5.606"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.552" y="5.562"/> + <PolyStepSegment x="7.552" y="5.687"/> + <PolyStepSegment x="7.591" y="5.687"/> + <PolyStepSegment x="7.604" y="5.681"/> + <PolyStepSegment x="7.611" y="5.672"/> + <PolyStepSegment x="7.615" y="5.656"/> + <PolyStepSegment x="7.611" y="5.639"/> + <PolyStepSegment x="7.602" y="5.629"/> + <PolyStepSegment x="7.591" y="5.622"/> + <PolyStepSegment x="7.552" y="5.622"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.591" y="5.622"/> + <PolyStepSegment x="7.615" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.707" y="5.687"/> + <PolyStepSegment x="7.707" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.672" y="5.687"/> + <PolyStepSegment x="7.743" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.831" y="5.558"/> + <PolyStepSegment x="7.828" y="5.560"/> + <PolyStepSegment x="7.828" y="5.564"/> + <PolyStepSegment x="7.831" y="5.566"/> + <PolyStepSegment x="7.835" y="5.564"/> + <PolyStepSegment x="7.835" y="5.560"/> + <PolyStepSegment x="7.831" y="5.558"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.831" y="5.614"/> + <PolyStepSegment x="7.828" y="5.616"/> + <PolyStepSegment x="7.828" y="5.620"/> + <PolyStepSegment x="7.831" y="5.622"/> + <PolyStepSegment x="7.835" y="5.620"/> + <PolyStepSegment x="7.835" y="5.616"/> + <PolyStepSegment x="7.831" y="5.614"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.079" y="5.687"/> + <PolyStepSegment x="8.079" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.044" y="5.687"/> + <PolyStepSegment x="8.115" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.203" y="5.562"/> + <PolyStepSegment x="8.191" y="5.564"/> + <PolyStepSegment x="8.180" y="5.572"/> + <PolyStepSegment x="8.171" y="5.585"/> + <PolyStepSegment x="8.165" y="5.599"/> + <PolyStepSegment x="8.162" y="5.616"/> + <PolyStepSegment x="8.162" y="5.633"/> + <PolyStepSegment x="8.165" y="5.650"/> + <PolyStepSegment x="8.171" y="5.664"/> + <PolyStepSegment x="8.180" y="5.677"/> + <PolyStepSegment x="8.191" y="5.685"/> + <PolyStepSegment x="8.203" y="5.687"/> + <PolyStepSegment x="8.216" y="5.685"/> + <PolyStepSegment x="8.227" y="5.677"/> + <PolyStepSegment x="8.236" y="5.664"/> + <PolyStepSegment x="8.242" y="5.650"/> + <PolyStepSegment x="8.245" y="5.633"/> + <PolyStepSegment x="8.245" y="5.616"/> + <PolyStepSegment x="8.242" y="5.599"/> + <PolyStepSegment x="8.236" y="5.585"/> + <PolyStepSegment x="8.227" y="5.572"/> + <PolyStepSegment x="8.216" y="5.564"/> + <PolyStepSegment x="8.203" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.296" y="5.562"/> + <PolyStepSegment x="8.296" y="5.687"/> + <PolyStepSegment x="8.334" y="5.687"/> + <PolyStepSegment x="8.346" y="5.681"/> + <PolyStepSegment x="8.355" y="5.666"/> + <PolyStepSegment x="8.359" y="5.650"/> + <PolyStepSegment x="8.355" y="5.633"/> + <PolyStepSegment x="8.348" y="5.620"/> + <PolyStepSegment x="8.334" y="5.614"/> + <PolyStepSegment x="8.296" y="5.614"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.575" y="5.687"/> + <PolyStepSegment x="8.575" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.554" y="5.645"/> + <PolyStepSegment x="8.597" y="5.645"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.699" y="5.562"/> + <PolyStepSegment x="8.690" y="5.564"/> + <PolyStepSegment x="8.681" y="5.572"/> + <PolyStepSegment x="8.675" y="5.587"/> + <PolyStepSegment x="8.672" y="5.604"/> + <PolyStepSegment x="8.675" y="5.620"/> + <PolyStepSegment x="8.681" y="5.635"/> + <PolyStepSegment x="8.690" y="5.643"/> + <PolyStepSegment x="8.699" y="5.645"/> + <PolyStepSegment x="8.709" y="5.643"/> + <PolyStepSegment x="8.718" y="5.635"/> + <PolyStepSegment x="8.724" y="5.620"/> + <PolyStepSegment x="8.726" y="5.604"/> + <PolyStepSegment x="8.724" y="5.587"/> + <PolyStepSegment x="8.718" y="5.572"/> + <PolyStepSegment x="8.709" y="5.564"/> + <PolyStepSegment x="8.699" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="8.960" y="5.629"/> + <PolyStepSegment x="8.966" y="5.635"/> + <PolyStepSegment x="8.971" y="5.645"/> + <PolyStepSegment x="8.974" y="5.660"/> + <PolyStepSegment x="8.971" y="5.672"/> + <PolyStepSegment x="8.965" y="5.681"/> + <PolyStepSegment x="8.954" y="5.687"/> + <PolyStepSegment x="8.912" y="5.687"/> + <PolyStepSegment x="8.912" y="5.562"/> + <PolyStepSegment x="8.963" y="5.562"/> + <PolyStepSegment x="8.974" y="5.570"/> + <PolyStepSegment x="8.980" y="5.583"/> + <PolyStepSegment x="8.983" y="5.597"/> + <PolyStepSegment x="8.980" y="5.612"/> + <PolyStepSegment x="8.971" y="5.624"/> + <PolyStepSegment x="8.960" y="5.629"/> + <PolyStepSegment x="8.912" y="5.629"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.071" y="5.562"/> + <PolyStepSegment x="9.059" y="5.564"/> + <PolyStepSegment x="9.048" y="5.572"/> + <PolyStepSegment x="9.039" y="5.585"/> + <PolyStepSegment x="9.033" y="5.599"/> + <PolyStepSegment x="9.030" y="5.616"/> + <PolyStepSegment x="9.030" y="5.633"/> + <PolyStepSegment x="9.033" y="5.650"/> + <PolyStepSegment x="9.039" y="5.664"/> + <PolyStepSegment x="9.048" y="5.677"/> + <PolyStepSegment x="9.059" y="5.685"/> + <PolyStepSegment x="9.071" y="5.687"/> + <PolyStepSegment x="9.084" y="5.685"/> + <PolyStepSegment x="9.095" y="5.677"/> + <PolyStepSegment x="9.104" y="5.664"/> + <PolyStepSegment x="9.110" y="5.650"/> + <PolyStepSegment x="9.113" y="5.633"/> + <PolyStepSegment x="9.113" y="5.616"/> + <PolyStepSegment x="9.110" y="5.599"/> + <PolyStepSegment x="9.104" y="5.585"/> + <PolyStepSegment x="9.095" y="5.572"/> + <PolyStepSegment x="9.084" y="5.564"/> + <PolyStepSegment x="9.071" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.195" y="5.687"/> + <PolyStepSegment x="9.195" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.160" y="5.687"/> + <PolyStepSegment x="9.231" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.319" y="5.687"/> + <PolyStepSegment x="9.319" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.284" y="5.687"/> + <PolyStepSegment x="9.355" y="5.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.443" y="5.562"/> + <PolyStepSegment x="9.431" y="5.564"/> + <PolyStepSegment x="9.420" y="5.572"/> + <PolyStepSegment x="9.411" y="5.585"/> + <PolyStepSegment x="9.405" y="5.599"/> + <PolyStepSegment x="9.402" y="5.616"/> + <PolyStepSegment x="9.402" y="5.633"/> + <PolyStepSegment x="9.405" y="5.650"/> + <PolyStepSegment x="9.411" y="5.664"/> + <PolyStepSegment x="9.420" y="5.677"/> + <PolyStepSegment x="9.431" y="5.685"/> + <PolyStepSegment x="9.443" y="5.687"/> + <PolyStepSegment x="9.456" y="5.685"/> + <PolyStepSegment x="9.467" y="5.677"/> + <PolyStepSegment x="9.476" y="5.664"/> + <PolyStepSegment x="9.482" y="5.650"/> + <PolyStepSegment x="9.485" y="5.633"/> + <PolyStepSegment x="9.485" y="5.616"/> + <PolyStepSegment x="9.482" y="5.599"/> + <PolyStepSegment x="9.476" y="5.585"/> + <PolyStepSegment x="9.467" y="5.572"/> + <PolyStepSegment x="9.456" y="5.564"/> + <PolyStepSegment x="9.443" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="9.527" y="5.562"/> + <PolyStepSegment x="9.527" y="5.687"/> + <PolyStepSegment x="9.567" y="5.583"/> + <PolyStepSegment x="9.608" y="5.687"/> + <PolyStepSegment x="9.608" y="5.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="TOTAL THICKNESS 46 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.069" y="-3.470"/> + <PolyStepSegment x="5.069" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.054" y="-3.470"/> + <PolyStepSegment x="5.084" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.120" y="-3.520"/> + <PolyStepSegment x="5.115" y="-3.519"/> + <PolyStepSegment x="5.111" y="-3.516"/> + <PolyStepSegment x="5.107" y="-3.511"/> + <PolyStepSegment x="5.104" y="-3.505"/> + <PolyStepSegment x="5.103" y="-3.498"/> + <PolyStepSegment x="5.103" y="-3.492"/> + <PolyStepSegment x="5.104" y="-3.485"/> + <PolyStepSegment x="5.107" y="-3.479"/> + <PolyStepSegment x="5.111" y="-3.474"/> + <PolyStepSegment x="5.115" y="-3.471"/> + <PolyStepSegment x="5.120" y="-3.470"/> + <PolyStepSegment x="5.125" y="-3.471"/> + <PolyStepSegment x="5.129" y="-3.474"/> + <PolyStepSegment x="5.133" y="-3.479"/> + <PolyStepSegment x="5.136" y="-3.485"/> + <PolyStepSegment x="5.137" y="-3.492"/> + <PolyStepSegment x="5.137" y="-3.498"/> + <PolyStepSegment x="5.136" y="-3.505"/> + <PolyStepSegment x="5.133" y="-3.511"/> + <PolyStepSegment x="5.129" y="-3.516"/> + <PolyStepSegment x="5.125" y="-3.519"/> + <PolyStepSegment x="5.120" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.171" y="-3.470"/> + <PolyStepSegment x="5.171" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.156" y="-3.470"/> + <PolyStepSegment x="5.186" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.206" y="-3.520"/> + <PolyStepSegment x="5.222" y="-3.470"/> + <PolyStepSegment x="5.238" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.232" y="-3.503"/> + <PolyStepSegment x="5.212" y="-3.503"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.260" y="-3.470"/> + <PolyStepSegment x="5.260" y="-3.520"/> + <PolyStepSegment x="5.286" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.375" y="-3.470"/> + <PolyStepSegment x="5.375" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.360" y="-3.470"/> + <PolyStepSegment x="5.390" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.413" y="-3.520"/> + <PolyStepSegment x="5.413" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.439" y="-3.470"/> + <PolyStepSegment x="5.439" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.439" y="-3.495"/> + <PolyStepSegment x="5.413" y="-3.495"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.469" y="-3.470"/> + <PolyStepSegment x="5.485" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.477" y="-3.470"/> + <PolyStepSegment x="5.477" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.469" y="-3.520"/> + <PolyStepSegment x="5.485" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.542" y="-3.474"/> + <PolyStepSegment x="5.538" y="-3.472"/> + <PolyStepSegment x="5.534" y="-3.470"/> + <PolyStepSegment x="5.529" y="-3.470"/> + <PolyStepSegment x="5.523" y="-3.473"/> + <PolyStepSegment x="5.519" y="-3.477"/> + <PolyStepSegment x="5.515" y="-3.482"/> + <PolyStepSegment x="5.513" y="-3.490"/> + <PolyStepSegment x="5.512" y="-3.498"/> + <PolyStepSegment x="5.513" y="-3.505"/> + <PolyStepSegment x="5.515" y="-3.510"/> + <PolyStepSegment x="5.519" y="-3.515"/> + <PolyStepSegment x="5.524" y="-3.518"/> + <PolyStepSegment x="5.528" y="-3.520"/> + <PolyStepSegment x="5.532" y="-3.520"/> + <PolyStepSegment x="5.537" y="-3.518"/> + <PolyStepSegment x="5.541" y="-3.516"/> + <PolyStepSegment x="5.544" y="-3.513"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.565" y="-3.520"/> + <PolyStepSegment x="5.565" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.589" y="-3.470"/> + <PolyStepSegment x="5.565" y="-3.501"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.593" y="-3.520"/> + <PolyStepSegment x="5.576" y="-3.487"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.615" y="-3.520"/> + <PolyStepSegment x="5.615" y="-3.470"/> + <PolyStepSegment x="5.645" y="-3.520"/> + <PolyStepSegment x="5.645" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.694" y="-3.520"/> + <PolyStepSegment x="5.668" y="-3.520"/> + <PolyStepSegment x="5.668" y="-3.470"/> + <PolyStepSegment x="5.694" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.684" y="-3.494"/> + <PolyStepSegment x="5.668" y="-3.494"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.719" y="-3.513"/> + <PolyStepSegment x="5.724" y="-3.518"/> + <PolyStepSegment x="5.729" y="-3.520"/> + <PolyStepSegment x="5.735" y="-3.520"/> + <PolyStepSegment x="5.740" y="-3.518"/> + <PolyStepSegment x="5.743" y="-3.513"/> + <PolyStepSegment x="5.745" y="-3.507"/> + <PolyStepSegment x="5.744" y="-3.502"/> + <PolyStepSegment x="5.741" y="-3.497"/> + <PolyStepSegment x="5.735" y="-3.493"/> + <PolyStepSegment x="5.728" y="-3.492"/> + <PolyStepSegment x="5.723" y="-3.488"/> + <PolyStepSegment x="5.721" y="-3.483"/> + <PolyStepSegment x="5.723" y="-3.477"/> + <PolyStepSegment x="5.726" y="-3.473"/> + <PolyStepSegment x="5.730" y="-3.470"/> + <PolyStepSegment x="5.735" y="-3.470"/> + <PolyStepSegment x="5.739" y="-3.472"/> + <PolyStepSegment x="5.743" y="-3.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.770" y="-3.513"/> + <PolyStepSegment x="5.775" y="-3.518"/> + <PolyStepSegment x="5.780" y="-3.520"/> + <PolyStepSegment x="5.786" y="-3.520"/> + <PolyStepSegment x="5.791" y="-3.518"/> + <PolyStepSegment x="5.794" y="-3.513"/> + <PolyStepSegment x="5.796" y="-3.507"/> + <PolyStepSegment x="5.795" y="-3.502"/> + <PolyStepSegment x="5.792" y="-3.497"/> + <PolyStepSegment x="5.786" y="-3.493"/> + <PolyStepSegment x="5.779" y="-3.492"/> + <PolyStepSegment x="5.774" y="-3.488"/> + <PolyStepSegment x="5.772" y="-3.483"/> + <PolyStepSegment x="5.774" y="-3.477"/> + <PolyStepSegment x="5.777" y="-3.473"/> + <PolyStepSegment x="5.781" y="-3.470"/> + <PolyStepSegment x="5.786" y="-3.470"/> + <PolyStepSegment x="5.790" y="-3.472"/> + <PolyStepSegment x="5.794" y="-3.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.893" y="-3.520"/> + <PolyStepSegment x="5.893" y="-3.470"/> + <PolyStepSegment x="5.869" y="-3.506"/> + <PolyStepSegment x="5.901" y="-3.506"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.924" y="-3.499"/> + <PolyStepSegment x="5.928" y="-3.493"/> + <PolyStepSegment x="5.932" y="-3.490"/> + <PolyStepSegment x="5.937" y="-3.488"/> + <PolyStepSegment x="5.942" y="-3.490"/> + <PolyStepSegment x="5.945" y="-3.493"/> + <PolyStepSegment x="5.947" y="-3.498"/> + <PolyStepSegment x="5.948" y="-3.504"/> + <PolyStepSegment x="5.947" y="-3.509"/> + <PolyStepSegment x="5.945" y="-3.514"/> + <PolyStepSegment x="5.941" y="-3.518"/> + <PolyStepSegment x="5.937" y="-3.520"/> + <PolyStepSegment x="5.932" y="-3.518"/> + <PolyStepSegment x="5.927" y="-3.513"/> + <PolyStepSegment x="5.925" y="-3.506"/> + <PolyStepSegment x="5.924" y="-3.498"/> + <PolyStepSegment x="5.925" y="-3.487"/> + <PolyStepSegment x="5.927" y="-3.481"/> + <PolyStepSegment x="5.930" y="-3.475"/> + <PolyStepSegment x="5.935" y="-3.471"/> + <PolyStepSegment x="5.939" y="-3.470"/> + <PolyStepSegment x="5.944" y="-3.472"/> + <PolyStepSegment x="5.947" y="-3.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.022" y="-3.520"/> + <PolyStepSegment x="6.022" y="-3.470"/> + <PolyStepSegment x="6.038" y="-3.512"/> + <PolyStepSegment x="6.054" y="-3.470"/> + <PolyStepSegment x="6.054" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.081" y="-3.470"/> + <PolyStepSegment x="6.097" y="-3.470"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.089" y="-3.470"/> + <PolyStepSegment x="6.089" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.081" y="-3.520"/> + <PolyStepSegment x="6.097" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.127" y="-3.470"/> + <PolyStepSegment x="6.127" y="-3.520"/> + <PolyStepSegment x="6.153" y="-3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="___________________________" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.401" y="-3.418"/> + <PolyStepSegment x="5.417" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.423" y="-3.418"/> + <PolyStepSegment x="5.439" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.445" y="-3.418"/> + <PolyStepSegment x="5.461" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.467" y="-3.418"/> + <PolyStepSegment x="5.483" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.489" y="-3.418"/> + <PolyStepSegment x="5.505" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.511" y="-3.418"/> + <PolyStepSegment x="5.527" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.533" y="-3.418"/> + <PolyStepSegment x="5.549" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.555" y="-3.418"/> + <PolyStepSegment x="5.571" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.577" y="-3.418"/> + <PolyStepSegment x="5.593" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.599" y="-3.418"/> + <PolyStepSegment x="5.615" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.621" y="-3.418"/> + <PolyStepSegment x="5.637" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.643" y="-3.418"/> + <PolyStepSegment x="5.659" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.665" y="-3.418"/> + <PolyStepSegment x="5.681" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.687" y="-3.418"/> + <PolyStepSegment x="5.703" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.709" y="-3.418"/> + <PolyStepSegment x="5.725" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.731" y="-3.418"/> + <PolyStepSegment x="5.747" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.753" y="-3.418"/> + <PolyStepSegment x="5.769" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.775" y="-3.418"/> + <PolyStepSegment x="5.791" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.797" y="-3.418"/> + <PolyStepSegment x="5.813" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.819" y="-3.418"/> + <PolyStepSegment x="5.835" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.841" y="-3.418"/> + <PolyStepSegment x="5.857" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.863" y="-3.418"/> + <PolyStepSegment x="5.879" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.885" y="-3.418"/> + <PolyStepSegment x="5.901" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.907" y="-3.418"/> + <PolyStepSegment x="5.923" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.929" y="-3.418"/> + <PolyStepSegment x="5.945" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.951" y="-3.418"/> + <PolyStepSegment x="5.967" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.973" y="-3.418"/> + <PolyStepSegment x="5.989" y="-3.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="DESIGN CROSS SECTION CHART" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.008" y="-3.360"/> + <PolyStepSegment x="5.008" y="-3.310"/> + <PolyStepSegment x="5.021" y="-3.310"/> + <PolyStepSegment x="5.026" y="-3.313"/> + <PolyStepSegment x="5.030" y="-3.316"/> + <PolyStepSegment x="5.033" y="-3.321"/> + <PolyStepSegment x="5.035" y="-3.327"/> + <PolyStepSegment x="5.036" y="-3.335"/> + <PolyStepSegment x="5.035" y="-3.343"/> + <PolyStepSegment x="5.033" y="-3.349"/> + <PolyStepSegment x="5.030" y="-3.354"/> + <PolyStepSegment x="5.026" y="-3.358"/> + <PolyStepSegment x="5.021" y="-3.360"/> + <PolyStepSegment x="5.008" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.086" y="-3.360"/> + <PolyStepSegment x="5.060" y="-3.360"/> + <PolyStepSegment x="5.060" y="-3.310"/> + <PolyStepSegment x="5.086" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.076" y="-3.334"/> + <PolyStepSegment x="5.060" y="-3.334"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.111" y="-3.353"/> + <PolyStepSegment x="5.116" y="-3.358"/> + <PolyStepSegment x="5.121" y="-3.360"/> + <PolyStepSegment x="5.127" y="-3.360"/> + <PolyStepSegment x="5.132" y="-3.358"/> + <PolyStepSegment x="5.135" y="-3.353"/> + <PolyStepSegment x="5.137" y="-3.347"/> + <PolyStepSegment x="5.136" y="-3.342"/> + <PolyStepSegment x="5.133" y="-3.337"/> + <PolyStepSegment x="5.127" y="-3.333"/> + <PolyStepSegment x="5.120" y="-3.332"/> + <PolyStepSegment x="5.115" y="-3.328"/> + <PolyStepSegment x="5.113" y="-3.323"/> + <PolyStepSegment x="5.115" y="-3.317"/> + <PolyStepSegment x="5.118" y="-3.313"/> + <PolyStepSegment x="5.122" y="-3.310"/> + <PolyStepSegment x="5.127" y="-3.310"/> + <PolyStepSegment x="5.131" y="-3.312"/> + <PolyStepSegment x="5.135" y="-3.316"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.167" y="-3.310"/> + <PolyStepSegment x="5.183" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.175" y="-3.310"/> + <PolyStepSegment x="5.175" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.167" y="-3.360"/> + <PolyStepSegment x="5.183" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.230" y="-3.335"/> + <PolyStepSegment x="5.242" y="-3.335"/> + <PolyStepSegment x="5.242" y="-3.350"/> + <PolyStepSegment x="5.239" y="-3.355"/> + <PolyStepSegment x="5.234" y="-3.358"/> + <PolyStepSegment x="5.228" y="-3.360"/> + <PolyStepSegment x="5.222" y="-3.358"/> + <PolyStepSegment x="5.217" y="-3.355"/> + <PolyStepSegment x="5.213" y="-3.350"/> + <PolyStepSegment x="5.211" y="-3.344"/> + <PolyStepSegment x="5.210" y="-3.338"/> + <PolyStepSegment x="5.210" y="-3.332"/> + <PolyStepSegment x="5.211" y="-3.327"/> + <PolyStepSegment x="5.213" y="-3.321"/> + <PolyStepSegment x="5.217" y="-3.316"/> + <PolyStepSegment x="5.221" y="-3.313"/> + <PolyStepSegment x="5.226" y="-3.310"/> + <PolyStepSegment x="5.230" y="-3.310"/> + <PolyStepSegment x="5.235" y="-3.312"/> + <PolyStepSegment x="5.239" y="-3.315"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.262" y="-3.360"/> + <PolyStepSegment x="5.262" y="-3.310"/> + <PolyStepSegment x="5.292" y="-3.360"/> + <PolyStepSegment x="5.292" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.393" y="-3.314"/> + <PolyStepSegment x="5.389" y="-3.312"/> + <PolyStepSegment x="5.385" y="-3.310"/> + <PolyStepSegment x="5.380" y="-3.310"/> + <PolyStepSegment x="5.374" y="-3.313"/> + <PolyStepSegment x="5.370" y="-3.317"/> + <PolyStepSegment x="5.366" y="-3.322"/> + <PolyStepSegment x="5.364" y="-3.330"/> + <PolyStepSegment x="5.363" y="-3.338"/> + <PolyStepSegment x="5.364" y="-3.345"/> + <PolyStepSegment x="5.366" y="-3.350"/> + <PolyStepSegment x="5.370" y="-3.355"/> + <PolyStepSegment x="5.375" y="-3.358"/> + <PolyStepSegment x="5.379" y="-3.360"/> + <PolyStepSegment x="5.383" y="-3.360"/> + <PolyStepSegment x="5.388" y="-3.358"/> + <PolyStepSegment x="5.392" y="-3.356"/> + <PolyStepSegment x="5.395" y="-3.353"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.417" y="-3.360"/> + <PolyStepSegment x="5.417" y="-3.310"/> + <PolyStepSegment x="5.433" y="-3.310"/> + <PolyStepSegment x="5.438" y="-3.313"/> + <PolyStepSegment x="5.441" y="-3.316"/> + <PolyStepSegment x="5.443" y="-3.323"/> + <PolyStepSegment x="5.441" y="-3.329"/> + <PolyStepSegment x="5.438" y="-3.333"/> + <PolyStepSegment x="5.433" y="-3.336"/> + <PolyStepSegment x="5.417" y="-3.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.433" y="-3.336"/> + <PolyStepSegment x="5.443" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.481" y="-3.360"/> + <PolyStepSegment x="5.476" y="-3.359"/> + <PolyStepSegment x="5.472" y="-3.356"/> + <PolyStepSegment x="5.468" y="-3.351"/> + <PolyStepSegment x="5.465" y="-3.345"/> + <PolyStepSegment x="5.464" y="-3.338"/> + <PolyStepSegment x="5.464" y="-3.332"/> + <PolyStepSegment x="5.465" y="-3.325"/> + <PolyStepSegment x="5.468" y="-3.319"/> + <PolyStepSegment x="5.472" y="-3.314"/> + <PolyStepSegment x="5.476" y="-3.311"/> + <PolyStepSegment x="5.481" y="-3.310"/> + <PolyStepSegment x="5.486" y="-3.311"/> + <PolyStepSegment x="5.490" y="-3.314"/> + <PolyStepSegment x="5.494" y="-3.319"/> + <PolyStepSegment x="5.497" y="-3.325"/> + <PolyStepSegment x="5.498" y="-3.332"/> + <PolyStepSegment x="5.498" y="-3.338"/> + <PolyStepSegment x="5.497" y="-3.345"/> + <PolyStepSegment x="5.494" y="-3.351"/> + <PolyStepSegment x="5.490" y="-3.356"/> + <PolyStepSegment x="5.486" y="-3.359"/> + <PolyStepSegment x="5.481" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.519" y="-3.353"/> + <PolyStepSegment x="5.524" y="-3.358"/> + <PolyStepSegment x="5.529" y="-3.360"/> + <PolyStepSegment x="5.535" y="-3.360"/> + <PolyStepSegment x="5.540" y="-3.358"/> + <PolyStepSegment x="5.543" y="-3.353"/> + <PolyStepSegment x="5.545" y="-3.347"/> + <PolyStepSegment x="5.544" y="-3.342"/> + <PolyStepSegment x="5.541" y="-3.337"/> + <PolyStepSegment x="5.535" y="-3.333"/> + <PolyStepSegment x="5.528" y="-3.332"/> + <PolyStepSegment x="5.523" y="-3.328"/> + <PolyStepSegment x="5.521" y="-3.323"/> + <PolyStepSegment x="5.523" y="-3.317"/> + <PolyStepSegment x="5.526" y="-3.313"/> + <PolyStepSegment x="5.530" y="-3.310"/> + <PolyStepSegment x="5.535" y="-3.310"/> + <PolyStepSegment x="5.539" y="-3.312"/> + <PolyStepSegment x="5.543" y="-3.316"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.570" y="-3.353"/> + <PolyStepSegment x="5.575" y="-3.358"/> + <PolyStepSegment x="5.580" y="-3.360"/> + <PolyStepSegment x="5.586" y="-3.360"/> + <PolyStepSegment x="5.591" y="-3.358"/> + <PolyStepSegment x="5.594" y="-3.353"/> + <PolyStepSegment x="5.596" y="-3.347"/> + <PolyStepSegment x="5.595" y="-3.342"/> + <PolyStepSegment x="5.592" y="-3.337"/> + <PolyStepSegment x="5.586" y="-3.333"/> + <PolyStepSegment x="5.579" y="-3.332"/> + <PolyStepSegment x="5.574" y="-3.328"/> + <PolyStepSegment x="5.572" y="-3.323"/> + <PolyStepSegment x="5.574" y="-3.317"/> + <PolyStepSegment x="5.577" y="-3.313"/> + <PolyStepSegment x="5.581" y="-3.310"/> + <PolyStepSegment x="5.586" y="-3.310"/> + <PolyStepSegment x="5.590" y="-3.312"/> + <PolyStepSegment x="5.594" y="-3.316"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.672" y="-3.353"/> + <PolyStepSegment x="5.677" y="-3.358"/> + <PolyStepSegment x="5.682" y="-3.360"/> + <PolyStepSegment x="5.688" y="-3.360"/> + <PolyStepSegment x="5.693" y="-3.358"/> + <PolyStepSegment x="5.696" y="-3.353"/> + <PolyStepSegment x="5.698" y="-3.347"/> + <PolyStepSegment x="5.697" y="-3.342"/> + <PolyStepSegment x="5.694" y="-3.337"/> + <PolyStepSegment x="5.688" y="-3.333"/> + <PolyStepSegment x="5.681" y="-3.332"/> + <PolyStepSegment x="5.676" y="-3.328"/> + <PolyStepSegment x="5.674" y="-3.323"/> + <PolyStepSegment x="5.676" y="-3.317"/> + <PolyStepSegment x="5.679" y="-3.313"/> + <PolyStepSegment x="5.683" y="-3.310"/> + <PolyStepSegment x="5.688" y="-3.310"/> + <PolyStepSegment x="5.692" y="-3.312"/> + <PolyStepSegment x="5.696" y="-3.316"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.749" y="-3.360"/> + <PolyStepSegment x="5.723" y="-3.360"/> + <PolyStepSegment x="5.723" y="-3.310"/> + <PolyStepSegment x="5.749" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.739" y="-3.334"/> + <PolyStepSegment x="5.723" y="-3.334"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.801" y="-3.314"/> + <PolyStepSegment x="5.797" y="-3.312"/> + <PolyStepSegment x="5.793" y="-3.310"/> + <PolyStepSegment x="5.788" y="-3.310"/> + <PolyStepSegment x="5.782" y="-3.313"/> + <PolyStepSegment x="5.778" y="-3.317"/> + <PolyStepSegment x="5.774" y="-3.322"/> + <PolyStepSegment x="5.772" y="-3.330"/> + <PolyStepSegment x="5.771" y="-3.338"/> + <PolyStepSegment x="5.772" y="-3.345"/> + <PolyStepSegment x="5.774" y="-3.350"/> + <PolyStepSegment x="5.778" y="-3.355"/> + <PolyStepSegment x="5.783" y="-3.358"/> + <PolyStepSegment x="5.787" y="-3.360"/> + <PolyStepSegment x="5.791" y="-3.360"/> + <PolyStepSegment x="5.796" y="-3.358"/> + <PolyStepSegment x="5.800" y="-3.356"/> + <PolyStepSegment x="5.803" y="-3.353"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.838" y="-3.310"/> + <PolyStepSegment x="5.838" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.823" y="-3.310"/> + <PolyStepSegment x="5.853" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.881" y="-3.310"/> + <PolyStepSegment x="5.897" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.889" y="-3.310"/> + <PolyStepSegment x="5.889" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.881" y="-3.360"/> + <PolyStepSegment x="5.897" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.940" y="-3.360"/> + <PolyStepSegment x="5.935" y="-3.359"/> + <PolyStepSegment x="5.931" y="-3.356"/> + <PolyStepSegment x="5.927" y="-3.351"/> + <PolyStepSegment x="5.924" y="-3.345"/> + <PolyStepSegment x="5.923" y="-3.338"/> + <PolyStepSegment x="5.923" y="-3.332"/> + <PolyStepSegment x="5.924" y="-3.325"/> + <PolyStepSegment x="5.927" y="-3.319"/> + <PolyStepSegment x="5.931" y="-3.314"/> + <PolyStepSegment x="5.935" y="-3.311"/> + <PolyStepSegment x="5.940" y="-3.310"/> + <PolyStepSegment x="5.945" y="-3.311"/> + <PolyStepSegment x="5.949" y="-3.314"/> + <PolyStepSegment x="5.953" y="-3.319"/> + <PolyStepSegment x="5.956" y="-3.325"/> + <PolyStepSegment x="5.957" y="-3.332"/> + <PolyStepSegment x="5.957" y="-3.338"/> + <PolyStepSegment x="5.956" y="-3.345"/> + <PolyStepSegment x="5.953" y="-3.351"/> + <PolyStepSegment x="5.949" y="-3.356"/> + <PolyStepSegment x="5.945" y="-3.359"/> + <PolyStepSegment x="5.940" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.976" y="-3.360"/> + <PolyStepSegment x="5.976" y="-3.310"/> + <PolyStepSegment x="6.006" y="-3.360"/> + <PolyStepSegment x="6.006" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.107" y="-3.314"/> + <PolyStepSegment x="6.103" y="-3.312"/> + <PolyStepSegment x="6.099" y="-3.310"/> + <PolyStepSegment x="6.094" y="-3.310"/> + <PolyStepSegment x="6.088" y="-3.313"/> + <PolyStepSegment x="6.084" y="-3.317"/> + <PolyStepSegment x="6.080" y="-3.322"/> + <PolyStepSegment x="6.078" y="-3.330"/> + <PolyStepSegment x="6.077" y="-3.338"/> + <PolyStepSegment x="6.078" y="-3.345"/> + <PolyStepSegment x="6.080" y="-3.350"/> + <PolyStepSegment x="6.084" y="-3.355"/> + <PolyStepSegment x="6.089" y="-3.358"/> + <PolyStepSegment x="6.093" y="-3.360"/> + <PolyStepSegment x="6.097" y="-3.360"/> + <PolyStepSegment x="6.102" y="-3.358"/> + <PolyStepSegment x="6.106" y="-3.356"/> + <PolyStepSegment x="6.109" y="-3.353"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.131" y="-3.360"/> + <PolyStepSegment x="6.131" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.157" y="-3.310"/> + <PolyStepSegment x="6.157" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.157" y="-3.335"/> + <PolyStepSegment x="6.131" y="-3.335"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.179" y="-3.360"/> + <PolyStepSegment x="6.195" y="-3.310"/> + <PolyStepSegment x="6.211" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.205" y="-3.343"/> + <PolyStepSegment x="6.185" y="-3.343"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.233" y="-3.360"/> + <PolyStepSegment x="6.233" y="-3.310"/> + <PolyStepSegment x="6.249" y="-3.310"/> + <PolyStepSegment x="6.254" y="-3.313"/> + <PolyStepSegment x="6.257" y="-3.316"/> + <PolyStepSegment x="6.259" y="-3.323"/> + <PolyStepSegment x="6.257" y="-3.329"/> + <PolyStepSegment x="6.254" y="-3.333"/> + <PolyStepSegment x="6.249" y="-3.336"/> + <PolyStepSegment x="6.233" y="-3.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.249" y="-3.336"/> + <PolyStepSegment x="6.259" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.297" y="-3.310"/> + <PolyStepSegment x="6.297" y="-3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.282" y="-3.310"/> + <PolyStepSegment x="6.312" y="-3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* SURFACE - AIR 0 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.988" y="-3.247"/> + <PolyStepSegment x="6.016" y="-3.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.002" y="-3.203"/> + <PolyStepSegment x="6.002" y="-3.253"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.016" y="-3.247"/> + <PolyStepSegment x="5.988" y="-3.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.983" y="-3.228"/> + <PolyStepSegment x="6.021" y="-3.228"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.142" y="-3.238"/> + <PolyStepSegment x="6.147" y="-3.243"/> + <PolyStepSegment x="6.152" y="-3.245"/> + <PolyStepSegment x="6.158" y="-3.245"/> + <PolyStepSegment x="6.163" y="-3.243"/> + <PolyStepSegment x="6.166" y="-3.238"/> + <PolyStepSegment x="6.168" y="-3.232"/> + <PolyStepSegment x="6.167" y="-3.227"/> + <PolyStepSegment x="6.164" y="-3.222"/> + <PolyStepSegment x="6.158" y="-3.218"/> + <PolyStepSegment x="6.151" y="-3.217"/> + <PolyStepSegment x="6.146" y="-3.213"/> + <PolyStepSegment x="6.144" y="-3.208"/> + <PolyStepSegment x="6.146" y="-3.202"/> + <PolyStepSegment x="6.149" y="-3.198"/> + <PolyStepSegment x="6.153" y="-3.195"/> + <PolyStepSegment x="6.158" y="-3.195"/> + <PolyStepSegment x="6.162" y="-3.197"/> + <PolyStepSegment x="6.166" y="-3.201"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.192" y="-3.195"/> + <PolyStepSegment x="6.192" y="-3.231"/> + <PolyStepSegment x="6.195" y="-3.238"/> + <PolyStepSegment x="6.200" y="-3.243"/> + <PolyStepSegment x="6.206" y="-3.245"/> + <PolyStepSegment x="6.212" y="-3.243"/> + <PolyStepSegment x="6.217" y="-3.238"/> + <PolyStepSegment x="6.220" y="-3.231"/> + <PolyStepSegment x="6.220" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.244" y="-3.245"/> + <PolyStepSegment x="6.244" y="-3.195"/> + <PolyStepSegment x="6.260" y="-3.195"/> + <PolyStepSegment x="6.265" y="-3.198"/> + <PolyStepSegment x="6.268" y="-3.201"/> + <PolyStepSegment x="6.270" y="-3.208"/> + <PolyStepSegment x="6.268" y="-3.214"/> + <PolyStepSegment x="6.265" y="-3.218"/> + <PolyStepSegment x="6.260" y="-3.221"/> + <PolyStepSegment x="6.244" y="-3.221"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.260" y="-3.221"/> + <PolyStepSegment x="6.270" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.296" y="-3.245"/> + <PolyStepSegment x="6.296" y="-3.195"/> + <PolyStepSegment x="6.320" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.311" y="-3.219"/> + <PolyStepSegment x="6.296" y="-3.219"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.343" y="-3.245"/> + <PolyStepSegment x="6.359" y="-3.195"/> + <PolyStepSegment x="6.375" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.369" y="-3.228"/> + <PolyStepSegment x="6.349" y="-3.228"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.424" y="-3.199"/> + <PolyStepSegment x="6.420" y="-3.197"/> + <PolyStepSegment x="6.416" y="-3.195"/> + <PolyStepSegment x="6.411" y="-3.195"/> + <PolyStepSegment x="6.405" y="-3.198"/> + <PolyStepSegment x="6.401" y="-3.202"/> + <PolyStepSegment x="6.397" y="-3.207"/> + <PolyStepSegment x="6.395" y="-3.215"/> + <PolyStepSegment x="6.394" y="-3.223"/> + <PolyStepSegment x="6.395" y="-3.230"/> + <PolyStepSegment x="6.397" y="-3.235"/> + <PolyStepSegment x="6.401" y="-3.240"/> + <PolyStepSegment x="6.406" y="-3.243"/> + <PolyStepSegment x="6.410" y="-3.245"/> + <PolyStepSegment x="6.414" y="-3.245"/> + <PolyStepSegment x="6.419" y="-3.243"/> + <PolyStepSegment x="6.423" y="-3.241"/> + <PolyStepSegment x="6.426" y="-3.238"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.474" y="-3.245"/> + <PolyStepSegment x="6.448" y="-3.245"/> + <PolyStepSegment x="6.448" y="-3.195"/> + <PolyStepSegment x="6.474" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.464" y="-3.219"/> + <PolyStepSegment x="6.448" y="-3.219"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.555" y="-3.228"/> + <PolyStepSegment x="6.571" y="-3.228"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.649" y="-3.245"/> + <PolyStepSegment x="6.665" y="-3.195"/> + <PolyStepSegment x="6.681" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.675" y="-3.228"/> + <PolyStepSegment x="6.655" y="-3.228"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.708" y="-3.195"/> + <PolyStepSegment x="6.724" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.716" y="-3.195"/> + <PolyStepSegment x="6.716" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.708" y="-3.245"/> + <PolyStepSegment x="6.724" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.754" y="-3.245"/> + <PolyStepSegment x="6.754" y="-3.195"/> + <PolyStepSegment x="6.770" y="-3.195"/> + <PolyStepSegment x="6.775" y="-3.198"/> + <PolyStepSegment x="6.778" y="-3.201"/> + <PolyStepSegment x="6.780" y="-3.208"/> + <PolyStepSegment x="6.778" y="-3.214"/> + <PolyStepSegment x="6.775" y="-3.218"/> + <PolyStepSegment x="6.770" y="-3.221"/> + <PolyStepSegment x="6.754" y="-3.221"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.770" y="-3.221"/> + <PolyStepSegment x="6.780" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.869" y="-3.195"/> + <PolyStepSegment x="6.864" y="-3.197"/> + <PolyStepSegment x="6.860" y="-3.201"/> + <PolyStepSegment x="6.858" y="-3.206"/> + <PolyStepSegment x="6.856" y="-3.213"/> + <PolyStepSegment x="6.855" y="-3.220"/> + <PolyStepSegment x="6.856" y="-3.228"/> + <PolyStepSegment x="6.858" y="-3.234"/> + <PolyStepSegment x="6.860" y="-3.239"/> + <PolyStepSegment x="6.864" y="-3.243"/> + <PolyStepSegment x="6.869" y="-3.245"/> + <PolyStepSegment x="6.874" y="-3.243"/> + <PolyStepSegment x="6.878" y="-3.239"/> + <PolyStepSegment x="6.880" y="-3.234"/> + <PolyStepSegment x="6.882" y="-3.228"/> + <PolyStepSegment x="6.883" y="-3.220"/> + <PolyStepSegment x="6.882" y="-3.213"/> + <PolyStepSegment x="6.880" y="-3.206"/> + <PolyStepSegment x="6.878" y="-3.201"/> + <PolyStepSegment x="6.874" y="-3.197"/> + <PolyStepSegment x="6.869" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.955" y="-3.245"/> + <PolyStepSegment x="6.955" y="-3.195"/> + <PolyStepSegment x="6.971" y="-3.237"/> + <PolyStepSegment x="6.987" y="-3.195"/> + <PolyStepSegment x="6.987" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.014" y="-3.195"/> + <PolyStepSegment x="7.030" y="-3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.022" y="-3.195"/> + <PolyStepSegment x="7.022" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.014" y="-3.245"/> + <PolyStepSegment x="7.030" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.060" y="-3.195"/> + <PolyStepSegment x="7.060" y="-3.245"/> + <PolyStepSegment x="7.086" y="-3.245"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L6: BOTTOM CONDUCTOR - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-3.087"/> + <PolyStepSegment x="5.957" y="-3.137"/> + <PolyStepSegment x="5.983" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.009" y="-3.116"/> + <PolyStepSegment x="6.013" y="-3.110"/> + <PolyStepSegment x="6.017" y="-3.107"/> + <PolyStepSegment x="6.022" y="-3.105"/> + <PolyStepSegment x="6.027" y="-3.107"/> + <PolyStepSegment x="6.030" y="-3.110"/> + <PolyStepSegment x="6.032" y="-3.115"/> + <PolyStepSegment x="6.033" y="-3.121"/> + <PolyStepSegment x="6.032" y="-3.126"/> + <PolyStepSegment x="6.030" y="-3.131"/> + <PolyStepSegment x="6.026" y="-3.135"/> + <PolyStepSegment x="6.022" y="-3.137"/> + <PolyStepSegment x="6.017" y="-3.135"/> + <PolyStepSegment x="6.012" y="-3.130"/> + <PolyStepSegment x="6.010" y="-3.123"/> + <PolyStepSegment x="6.009" y="-3.115"/> + <PolyStepSegment x="6.010" y="-3.104"/> + <PolyStepSegment x="6.012" y="-3.098"/> + <PolyStepSegment x="6.015" y="-3.092"/> + <PolyStepSegment x="6.020" y="-3.088"/> + <PolyStepSegment x="6.024" y="-3.087"/> + <PolyStepSegment x="6.029" y="-3.089"/> + <PolyStepSegment x="6.032" y="-3.093"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-3.139"/> + <PolyStepSegment x="6.071" y="-3.138"/> + <PolyStepSegment x="6.071" y="-3.136"/> + <PolyStepSegment x="6.072" y="-3.135"/> + <PolyStepSegment x="6.073" y="-3.136"/> + <PolyStepSegment x="6.073" y="-3.138"/> + <PolyStepSegment x="6.072" y="-3.139"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-3.116"/> + <PolyStepSegment x="6.071" y="-3.115"/> + <PolyStepSegment x="6.071" y="-3.114"/> + <PolyStepSegment x="6.072" y="-3.113"/> + <PolyStepSegment x="6.073" y="-3.114"/> + <PolyStepSegment x="6.073" y="-3.115"/> + <PolyStepSegment x="6.072" y="-3.116"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.179" y="-3.110"/> + <PolyStepSegment x="6.182" y="-3.108"/> + <PolyStepSegment x="6.183" y="-3.104"/> + <PolyStepSegment x="6.185" y="-3.098"/> + <PolyStepSegment x="6.183" y="-3.093"/> + <PolyStepSegment x="6.181" y="-3.090"/> + <PolyStepSegment x="6.177" y="-3.087"/> + <PolyStepSegment x="6.159" y="-3.087"/> + <PolyStepSegment x="6.159" y="-3.137"/> + <PolyStepSegment x="6.180" y="-3.137"/> + <PolyStepSegment x="6.185" y="-3.134"/> + <PolyStepSegment x="6.187" y="-3.129"/> + <PolyStepSegment x="6.189" y="-3.123"/> + <PolyStepSegment x="6.187" y="-3.117"/> + <PolyStepSegment x="6.183" y="-3.112"/> + <PolyStepSegment x="6.179" y="-3.110"/> + <PolyStepSegment x="6.159" y="-3.110"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.225" y="-3.137"/> + <PolyStepSegment x="6.220" y="-3.136"/> + <PolyStepSegment x="6.216" y="-3.133"/> + <PolyStepSegment x="6.212" y="-3.128"/> + <PolyStepSegment x="6.209" y="-3.122"/> + <PolyStepSegment x="6.208" y="-3.115"/> + <PolyStepSegment x="6.208" y="-3.109"/> + <PolyStepSegment x="6.209" y="-3.102"/> + <PolyStepSegment x="6.212" y="-3.096"/> + <PolyStepSegment x="6.216" y="-3.091"/> + <PolyStepSegment x="6.220" y="-3.088"/> + <PolyStepSegment x="6.225" y="-3.087"/> + <PolyStepSegment x="6.230" y="-3.088"/> + <PolyStepSegment x="6.234" y="-3.091"/> + <PolyStepSegment x="6.238" y="-3.096"/> + <PolyStepSegment x="6.241" y="-3.102"/> + <PolyStepSegment x="6.242" y="-3.109"/> + <PolyStepSegment x="6.242" y="-3.115"/> + <PolyStepSegment x="6.241" y="-3.122"/> + <PolyStepSegment x="6.238" y="-3.128"/> + <PolyStepSegment x="6.234" y="-3.133"/> + <PolyStepSegment x="6.230" y="-3.136"/> + <PolyStepSegment x="6.225" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-3.087"/> + <PolyStepSegment x="6.276" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.261" y="-3.087"/> + <PolyStepSegment x="6.291" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.327" y="-3.087"/> + <PolyStepSegment x="6.327" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.312" y="-3.087"/> + <PolyStepSegment x="6.342" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.378" y="-3.137"/> + <PolyStepSegment x="6.373" y="-3.136"/> + <PolyStepSegment x="6.369" y="-3.133"/> + <PolyStepSegment x="6.365" y="-3.128"/> + <PolyStepSegment x="6.362" y="-3.122"/> + <PolyStepSegment x="6.361" y="-3.115"/> + <PolyStepSegment x="6.361" y="-3.109"/> + <PolyStepSegment x="6.362" y="-3.102"/> + <PolyStepSegment x="6.365" y="-3.096"/> + <PolyStepSegment x="6.369" y="-3.091"/> + <PolyStepSegment x="6.373" y="-3.088"/> + <PolyStepSegment x="6.378" y="-3.087"/> + <PolyStepSegment x="6.383" y="-3.088"/> + <PolyStepSegment x="6.387" y="-3.091"/> + <PolyStepSegment x="6.391" y="-3.096"/> + <PolyStepSegment x="6.394" y="-3.102"/> + <PolyStepSegment x="6.395" y="-3.109"/> + <PolyStepSegment x="6.395" y="-3.115"/> + <PolyStepSegment x="6.394" y="-3.122"/> + <PolyStepSegment x="6.391" y="-3.128"/> + <PolyStepSegment x="6.387" y="-3.133"/> + <PolyStepSegment x="6.383" y="-3.136"/> + <PolyStepSegment x="6.378" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.413" y="-3.137"/> + <PolyStepSegment x="6.413" y="-3.087"/> + <PolyStepSegment x="6.429" y="-3.129"/> + <PolyStepSegment x="6.445" y="-3.087"/> + <PolyStepSegment x="6.445" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.545" y="-3.091"/> + <PolyStepSegment x="6.541" y="-3.089"/> + <PolyStepSegment x="6.537" y="-3.087"/> + <PolyStepSegment x="6.532" y="-3.087"/> + <PolyStepSegment x="6.526" y="-3.090"/> + <PolyStepSegment x="6.522" y="-3.094"/> + <PolyStepSegment x="6.518" y="-3.099"/> + <PolyStepSegment x="6.516" y="-3.107"/> + <PolyStepSegment x="6.515" y="-3.115"/> + <PolyStepSegment x="6.516" y="-3.122"/> + <PolyStepSegment x="6.518" y="-3.127"/> + <PolyStepSegment x="6.522" y="-3.132"/> + <PolyStepSegment x="6.527" y="-3.135"/> + <PolyStepSegment x="6.531" y="-3.137"/> + <PolyStepSegment x="6.535" y="-3.137"/> + <PolyStepSegment x="6.540" y="-3.135"/> + <PolyStepSegment x="6.544" y="-3.133"/> + <PolyStepSegment x="6.547" y="-3.130"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.582" y="-3.137"/> + <PolyStepSegment x="6.577" y="-3.136"/> + <PolyStepSegment x="6.573" y="-3.133"/> + <PolyStepSegment x="6.569" y="-3.128"/> + <PolyStepSegment x="6.566" y="-3.122"/> + <PolyStepSegment x="6.565" y="-3.115"/> + <PolyStepSegment x="6.565" y="-3.109"/> + <PolyStepSegment x="6.566" y="-3.102"/> + <PolyStepSegment x="6.569" y="-3.096"/> + <PolyStepSegment x="6.573" y="-3.091"/> + <PolyStepSegment x="6.577" y="-3.088"/> + <PolyStepSegment x="6.582" y="-3.087"/> + <PolyStepSegment x="6.587" y="-3.088"/> + <PolyStepSegment x="6.591" y="-3.091"/> + <PolyStepSegment x="6.595" y="-3.096"/> + <PolyStepSegment x="6.598" y="-3.102"/> + <PolyStepSegment x="6.599" y="-3.109"/> + <PolyStepSegment x="6.599" y="-3.115"/> + <PolyStepSegment x="6.598" y="-3.122"/> + <PolyStepSegment x="6.595" y="-3.128"/> + <PolyStepSegment x="6.591" y="-3.133"/> + <PolyStepSegment x="6.587" y="-3.136"/> + <PolyStepSegment x="6.582" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.618" y="-3.137"/> + <PolyStepSegment x="6.618" y="-3.087"/> + <PolyStepSegment x="6.648" y="-3.137"/> + <PolyStepSegment x="6.648" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.670" y="-3.137"/> + <PolyStepSegment x="6.670" y="-3.087"/> + <PolyStepSegment x="6.683" y="-3.087"/> + <PolyStepSegment x="6.688" y="-3.090"/> + <PolyStepSegment x="6.692" y="-3.093"/> + <PolyStepSegment x="6.695" y="-3.098"/> + <PolyStepSegment x="6.697" y="-3.104"/> + <PolyStepSegment x="6.698" y="-3.112"/> + <PolyStepSegment x="6.697" y="-3.120"/> + <PolyStepSegment x="6.695" y="-3.126"/> + <PolyStepSegment x="6.692" y="-3.131"/> + <PolyStepSegment x="6.688" y="-3.135"/> + <PolyStepSegment x="6.683" y="-3.137"/> + <PolyStepSegment x="6.670" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.721" y="-3.087"/> + <PolyStepSegment x="6.721" y="-3.123"/> + <PolyStepSegment x="6.724" y="-3.130"/> + <PolyStepSegment x="6.729" y="-3.135"/> + <PolyStepSegment x="6.735" y="-3.137"/> + <PolyStepSegment x="6.741" y="-3.135"/> + <PolyStepSegment x="6.746" y="-3.130"/> + <PolyStepSegment x="6.749" y="-3.123"/> + <PolyStepSegment x="6.749" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.800" y="-3.091"/> + <PolyStepSegment x="6.796" y="-3.089"/> + <PolyStepSegment x="6.792" y="-3.087"/> + <PolyStepSegment x="6.787" y="-3.087"/> + <PolyStepSegment x="6.781" y="-3.090"/> + <PolyStepSegment x="6.777" y="-3.094"/> + <PolyStepSegment x="6.773" y="-3.099"/> + <PolyStepSegment x="6.771" y="-3.107"/> + <PolyStepSegment x="6.770" y="-3.115"/> + <PolyStepSegment x="6.771" y="-3.122"/> + <PolyStepSegment x="6.773" y="-3.127"/> + <PolyStepSegment x="6.777" y="-3.132"/> + <PolyStepSegment x="6.782" y="-3.135"/> + <PolyStepSegment x="6.786" y="-3.137"/> + <PolyStepSegment x="6.790" y="-3.137"/> + <PolyStepSegment x="6.795" y="-3.135"/> + <PolyStepSegment x="6.799" y="-3.133"/> + <PolyStepSegment x="6.802" y="-3.130"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.837" y="-3.087"/> + <PolyStepSegment x="6.837" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.822" y="-3.087"/> + <PolyStepSegment x="6.852" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.888" y="-3.137"/> + <PolyStepSegment x="6.883" y="-3.136"/> + <PolyStepSegment x="6.879" y="-3.133"/> + <PolyStepSegment x="6.875" y="-3.128"/> + <PolyStepSegment x="6.872" y="-3.122"/> + <PolyStepSegment x="6.871" y="-3.115"/> + <PolyStepSegment x="6.871" y="-3.109"/> + <PolyStepSegment x="6.872" y="-3.102"/> + <PolyStepSegment x="6.875" y="-3.096"/> + <PolyStepSegment x="6.879" y="-3.091"/> + <PolyStepSegment x="6.883" y="-3.088"/> + <PolyStepSegment x="6.888" y="-3.087"/> + <PolyStepSegment x="6.893" y="-3.088"/> + <PolyStepSegment x="6.897" y="-3.091"/> + <PolyStepSegment x="6.901" y="-3.096"/> + <PolyStepSegment x="6.904" y="-3.102"/> + <PolyStepSegment x="6.905" y="-3.109"/> + <PolyStepSegment x="6.905" y="-3.115"/> + <PolyStepSegment x="6.904" y="-3.122"/> + <PolyStepSegment x="6.901" y="-3.128"/> + <PolyStepSegment x="6.897" y="-3.133"/> + <PolyStepSegment x="6.893" y="-3.136"/> + <PolyStepSegment x="6.888" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-3.137"/> + <PolyStepSegment x="6.926" y="-3.087"/> + <PolyStepSegment x="6.942" y="-3.087"/> + <PolyStepSegment x="6.947" y="-3.090"/> + <PolyStepSegment x="6.950" y="-3.093"/> + <PolyStepSegment x="6.952" y="-3.100"/> + <PolyStepSegment x="6.950" y="-3.106"/> + <PolyStepSegment x="6.947" y="-3.110"/> + <PolyStepSegment x="6.942" y="-3.113"/> + <PolyStepSegment x="6.926" y="-3.113"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-3.113"/> + <PolyStepSegment x="6.952" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.033" y="-3.120"/> + <PolyStepSegment x="7.049" y="-3.120"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.157" y="-3.091"/> + <PolyStepSegment x="7.153" y="-3.089"/> + <PolyStepSegment x="7.149" y="-3.087"/> + <PolyStepSegment x="7.144" y="-3.087"/> + <PolyStepSegment x="7.138" y="-3.090"/> + <PolyStepSegment x="7.134" y="-3.094"/> + <PolyStepSegment x="7.130" y="-3.099"/> + <PolyStepSegment x="7.128" y="-3.107"/> + <PolyStepSegment x="7.127" y="-3.115"/> + <PolyStepSegment x="7.128" y="-3.122"/> + <PolyStepSegment x="7.130" y="-3.127"/> + <PolyStepSegment x="7.134" y="-3.132"/> + <PolyStepSegment x="7.139" y="-3.135"/> + <PolyStepSegment x="7.143" y="-3.137"/> + <PolyStepSegment x="7.147" y="-3.137"/> + <PolyStepSegment x="7.152" y="-3.135"/> + <PolyStepSegment x="7.156" y="-3.133"/> + <PolyStepSegment x="7.159" y="-3.130"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.194" y="-3.137"/> + <PolyStepSegment x="7.189" y="-3.136"/> + <PolyStepSegment x="7.185" y="-3.133"/> + <PolyStepSegment x="7.181" y="-3.128"/> + <PolyStepSegment x="7.178" y="-3.122"/> + <PolyStepSegment x="7.177" y="-3.115"/> + <PolyStepSegment x="7.177" y="-3.109"/> + <PolyStepSegment x="7.178" y="-3.102"/> + <PolyStepSegment x="7.181" y="-3.096"/> + <PolyStepSegment x="7.185" y="-3.091"/> + <PolyStepSegment x="7.189" y="-3.088"/> + <PolyStepSegment x="7.194" y="-3.087"/> + <PolyStepSegment x="7.199" y="-3.088"/> + <PolyStepSegment x="7.203" y="-3.091"/> + <PolyStepSegment x="7.207" y="-3.096"/> + <PolyStepSegment x="7.210" y="-3.102"/> + <PolyStepSegment x="7.211" y="-3.109"/> + <PolyStepSegment x="7.211" y="-3.115"/> + <PolyStepSegment x="7.210" y="-3.122"/> + <PolyStepSegment x="7.207" y="-3.128"/> + <PolyStepSegment x="7.203" y="-3.133"/> + <PolyStepSegment x="7.199" y="-3.136"/> + <PolyStepSegment x="7.194" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.232" y="-3.137"/> + <PolyStepSegment x="7.232" y="-3.087"/> + <PolyStepSegment x="7.248" y="-3.087"/> + <PolyStepSegment x="7.253" y="-3.090"/> + <PolyStepSegment x="7.256" y="-3.095"/> + <PolyStepSegment x="7.258" y="-3.102"/> + <PolyStepSegment x="7.256" y="-3.109"/> + <PolyStepSegment x="7.253" y="-3.114"/> + <PolyStepSegment x="7.248" y="-3.116"/> + <PolyStepSegment x="7.232" y="-3.116"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.283" y="-3.137"/> + <PolyStepSegment x="7.283" y="-3.087"/> + <PolyStepSegment x="7.299" y="-3.087"/> + <PolyStepSegment x="7.304" y="-3.090"/> + <PolyStepSegment x="7.307" y="-3.095"/> + <PolyStepSegment x="7.309" y="-3.102"/> + <PolyStepSegment x="7.307" y="-3.109"/> + <PolyStepSegment x="7.304" y="-3.114"/> + <PolyStepSegment x="7.299" y="-3.116"/> + <PolyStepSegment x="7.283" y="-3.116"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.360" y="-3.137"/> + <PolyStepSegment x="7.334" y="-3.137"/> + <PolyStepSegment x="7.334" y="-3.087"/> + <PolyStepSegment x="7.360" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.350" y="-3.111"/> + <PolyStepSegment x="7.334" y="-3.111"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.385" y="-3.137"/> + <PolyStepSegment x="7.385" y="-3.087"/> + <PolyStepSegment x="7.401" y="-3.087"/> + <PolyStepSegment x="7.406" y="-3.090"/> + <PolyStepSegment x="7.409" y="-3.093"/> + <PolyStepSegment x="7.411" y="-3.100"/> + <PolyStepSegment x="7.409" y="-3.106"/> + <PolyStepSegment x="7.406" y="-3.110"/> + <PolyStepSegment x="7.401" y="-3.113"/> + <PolyStepSegment x="7.385" y="-3.113"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.401" y="-3.113"/> + <PolyStepSegment x="7.411" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.500" y="-3.137"/> + <PolyStepSegment x="7.500" y="-3.087"/> + <PolyStepSegment x="7.492" y="-3.097"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-3.137"/> + <PolyStepSegment x="7.508" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.586" y="-3.137"/> + <PolyStepSegment x="7.586" y="-3.087"/> + <PolyStepSegment x="7.602" y="-3.129"/> + <PolyStepSegment x="7.618" y="-3.087"/> + <PolyStepSegment x="7.618" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.645" y="-3.087"/> + <PolyStepSegment x="7.661" y="-3.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.653" y="-3.087"/> + <PolyStepSegment x="7.653" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.645" y="-3.137"/> + <PolyStepSegment x="7.661" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.691" y="-3.087"/> + <PolyStepSegment x="7.691" y="-3.137"/> + <PolyStepSegment x="7.717" y="-3.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* DIELECTRIC - FR-4 8 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.058" y="-2.944"/> + <PolyStepSegment x="6.086" y="-2.907"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.900"/> + <PolyStepSegment x="6.072" y="-2.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.086" y="-2.944"/> + <PolyStepSegment x="6.058" y="-2.907"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.053" y="-2.925"/> + <PolyStepSegment x="6.091" y="-2.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.211" y="-2.942"/> + <PolyStepSegment x="6.211" y="-2.892"/> + <PolyStepSegment x="6.224" y="-2.892"/> + <PolyStepSegment x="6.229" y="-2.895"/> + <PolyStepSegment x="6.233" y="-2.898"/> + <PolyStepSegment x="6.236" y="-2.903"/> + <PolyStepSegment x="6.238" y="-2.909"/> + <PolyStepSegment x="6.239" y="-2.917"/> + <PolyStepSegment x="6.238" y="-2.925"/> + <PolyStepSegment x="6.236" y="-2.931"/> + <PolyStepSegment x="6.233" y="-2.936"/> + <PolyStepSegment x="6.229" y="-2.940"/> + <PolyStepSegment x="6.224" y="-2.942"/> + <PolyStepSegment x="6.211" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.892"/> + <PolyStepSegment x="6.284" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-2.892"/> + <PolyStepSegment x="6.276" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.942"/> + <PolyStepSegment x="6.284" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.340" y="-2.942"/> + <PolyStepSegment x="6.314" y="-2.942"/> + <PolyStepSegment x="6.314" y="-2.892"/> + <PolyStepSegment x="6.340" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.330" y="-2.916"/> + <PolyStepSegment x="6.314" y="-2.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-2.892"/> + <PolyStepSegment x="6.365" y="-2.942"/> + <PolyStepSegment x="6.391" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.442" y="-2.942"/> + <PolyStepSegment x="6.416" y="-2.942"/> + <PolyStepSegment x="6.416" y="-2.892"/> + <PolyStepSegment x="6.442" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.432" y="-2.916"/> + <PolyStepSegment x="6.416" y="-2.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.494" y="-2.896"/> + <PolyStepSegment x="6.490" y="-2.894"/> + <PolyStepSegment x="6.486" y="-2.892"/> + <PolyStepSegment x="6.481" y="-2.892"/> + <PolyStepSegment x="6.475" y="-2.895"/> + <PolyStepSegment x="6.471" y="-2.899"/> + <PolyStepSegment x="6.467" y="-2.904"/> + <PolyStepSegment x="6.465" y="-2.912"/> + <PolyStepSegment x="6.464" y="-2.920"/> + <PolyStepSegment x="6.465" y="-2.927"/> + <PolyStepSegment x="6.467" y="-2.932"/> + <PolyStepSegment x="6.471" y="-2.937"/> + <PolyStepSegment x="6.476" y="-2.940"/> + <PolyStepSegment x="6.480" y="-2.942"/> + <PolyStepSegment x="6.484" y="-2.942"/> + <PolyStepSegment x="6.489" y="-2.940"/> + <PolyStepSegment x="6.493" y="-2.938"/> + <PolyStepSegment x="6.496" y="-2.935"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.531" y="-2.892"/> + <PolyStepSegment x="6.531" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-2.892"/> + <PolyStepSegment x="6.546" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.569" y="-2.942"/> + <PolyStepSegment x="6.569" y="-2.892"/> + <PolyStepSegment x="6.585" y="-2.892"/> + <PolyStepSegment x="6.590" y="-2.895"/> + <PolyStepSegment x="6.593" y="-2.898"/> + <PolyStepSegment x="6.595" y="-2.905"/> + <PolyStepSegment x="6.593" y="-2.911"/> + <PolyStepSegment x="6.590" y="-2.915"/> + <PolyStepSegment x="6.585" y="-2.918"/> + <PolyStepSegment x="6.569" y="-2.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-2.918"/> + <PolyStepSegment x="6.595" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.892"/> + <PolyStepSegment x="6.641" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.633" y="-2.892"/> + <PolyStepSegment x="6.633" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.942"/> + <PolyStepSegment x="6.641" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.698" y="-2.896"/> + <PolyStepSegment x="6.694" y="-2.894"/> + <PolyStepSegment x="6.690" y="-2.892"/> + <PolyStepSegment x="6.685" y="-2.892"/> + <PolyStepSegment x="6.679" y="-2.895"/> + <PolyStepSegment x="6.675" y="-2.899"/> + <PolyStepSegment x="6.671" y="-2.904"/> + <PolyStepSegment x="6.669" y="-2.912"/> + <PolyStepSegment x="6.668" y="-2.920"/> + <PolyStepSegment x="6.669" y="-2.927"/> + <PolyStepSegment x="6.671" y="-2.932"/> + <PolyStepSegment x="6.675" y="-2.937"/> + <PolyStepSegment x="6.680" y="-2.940"/> + <PolyStepSegment x="6.684" y="-2.942"/> + <PolyStepSegment x="6.688" y="-2.942"/> + <PolyStepSegment x="6.693" y="-2.940"/> + <PolyStepSegment x="6.697" y="-2.938"/> + <PolyStepSegment x="6.700" y="-2.935"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.778" y="-2.925"/> + <PolyStepSegment x="6.794" y="-2.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.876" y="-2.942"/> + <PolyStepSegment x="6.876" y="-2.892"/> + <PolyStepSegment x="6.900" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.891" y="-2.916"/> + <PolyStepSegment x="6.876" y="-2.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-2.942"/> + <PolyStepSegment x="6.926" y="-2.892"/> + <PolyStepSegment x="6.942" y="-2.892"/> + <PolyStepSegment x="6.947" y="-2.895"/> + <PolyStepSegment x="6.950" y="-2.898"/> + <PolyStepSegment x="6.952" y="-2.905"/> + <PolyStepSegment x="6.950" y="-2.911"/> + <PolyStepSegment x="6.947" y="-2.915"/> + <PolyStepSegment x="6.942" y="-2.918"/> + <PolyStepSegment x="6.926" y="-2.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-2.918"/> + <PolyStepSegment x="6.952" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.982" y="-2.925"/> + <PolyStepSegment x="6.998" y="-2.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.049" y="-2.942"/> + <PolyStepSegment x="7.049" y="-2.892"/> + <PolyStepSegment x="7.025" y="-2.928"/> + <PolyStepSegment x="7.057" y="-2.928"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-2.942"/> + <PolyStepSegment x="7.147" y="-2.941"/> + <PolyStepSegment x="7.152" y="-2.939"/> + <PolyStepSegment x="7.156" y="-2.935"/> + <PolyStepSegment x="7.157" y="-2.929"/> + <PolyStepSegment x="7.156" y="-2.923"/> + <PolyStepSegment x="7.152" y="-2.918"/> + <PolyStepSegment x="7.146" y="-2.915"/> + <PolyStepSegment x="7.140" y="-2.915"/> + <PolyStepSegment x="7.136" y="-2.914"/> + <PolyStepSegment x="7.133" y="-2.910"/> + <PolyStepSegment x="7.132" y="-2.904"/> + <PolyStepSegment x="7.134" y="-2.898"/> + <PolyStepSegment x="7.138" y="-2.894"/> + <PolyStepSegment x="7.143" y="-2.892"/> + <PolyStepSegment x="7.148" y="-2.894"/> + <PolyStepSegment x="7.152" y="-2.898"/> + <PolyStepSegment x="7.154" y="-2.904"/> + <PolyStepSegment x="7.153" y="-2.910"/> + <PolyStepSegment x="7.150" y="-2.914"/> + <PolyStepSegment x="7.146" y="-2.915"/> + <PolyStepSegment x="7.140" y="-2.915"/> + <PolyStepSegment x="7.134" y="-2.918"/> + <PolyStepSegment x="7.130" y="-2.923"/> + <PolyStepSegment x="7.129" y="-2.929"/> + <PolyStepSegment x="7.130" y="-2.935"/> + <PolyStepSegment x="7.134" y="-2.939"/> + <PolyStepSegment x="7.139" y="-2.941"/> + <PolyStepSegment x="7.143" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-2.942"/> + <PolyStepSegment x="7.229" y="-2.892"/> + <PolyStepSegment x="7.245" y="-2.934"/> + <PolyStepSegment x="7.261" y="-2.892"/> + <PolyStepSegment x="7.261" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.892"/> + <PolyStepSegment x="7.304" y="-2.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-2.892"/> + <PolyStepSegment x="7.296" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.942"/> + <PolyStepSegment x="7.304" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-2.892"/> + <PolyStepSegment x="7.334" y="-2.942"/> + <PolyStepSegment x="7.360" y="-2.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L5: VCC PLANE - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-2.697"/> + <PolyStepSegment x="5.957" y="-2.747"/> + <PolyStepSegment x="5.983" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.007" y="-2.740"/> + <PolyStepSegment x="6.011" y="-2.744"/> + <PolyStepSegment x="6.015" y="-2.746"/> + <PolyStepSegment x="6.021" y="-2.747"/> + <PolyStepSegment x="6.027" y="-2.745"/> + <PolyStepSegment x="6.031" y="-2.742"/> + <PolyStepSegment x="6.034" y="-2.736"/> + <PolyStepSegment x="6.035" y="-2.730"/> + <PolyStepSegment x="6.034" y="-2.723"/> + <PolyStepSegment x="6.030" y="-2.719"/> + <PolyStepSegment x="6.026" y="-2.715"/> + <PolyStepSegment x="6.022" y="-2.715"/> + <PolyStepSegment x="6.017" y="-2.715"/> + <PolyStepSegment x="6.012" y="-2.719"/> + <PolyStepSegment x="6.013" y="-2.697"/> + <PolyStepSegment x="6.030" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.749"/> + <PolyStepSegment x="6.071" y="-2.748"/> + <PolyStepSegment x="6.071" y="-2.746"/> + <PolyStepSegment x="6.072" y="-2.745"/> + <PolyStepSegment x="6.073" y="-2.746"/> + <PolyStepSegment x="6.073" y="-2.748"/> + <PolyStepSegment x="6.072" y="-2.749"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.726"/> + <PolyStepSegment x="6.071" y="-2.725"/> + <PolyStepSegment x="6.071" y="-2.724"/> + <PolyStepSegment x="6.072" y="-2.723"/> + <PolyStepSegment x="6.073" y="-2.724"/> + <PolyStepSegment x="6.073" y="-2.725"/> + <PolyStepSegment x="6.072" y="-2.726"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.158" y="-2.697"/> + <PolyStepSegment x="6.174" y="-2.747"/> + <PolyStepSegment x="6.190" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.239" y="-2.701"/> + <PolyStepSegment x="6.235" y="-2.699"/> + <PolyStepSegment x="6.231" y="-2.697"/> + <PolyStepSegment x="6.226" y="-2.697"/> + <PolyStepSegment x="6.220" y="-2.700"/> + <PolyStepSegment x="6.216" y="-2.704"/> + <PolyStepSegment x="6.212" y="-2.709"/> + <PolyStepSegment x="6.210" y="-2.717"/> + <PolyStepSegment x="6.209" y="-2.725"/> + <PolyStepSegment x="6.210" y="-2.732"/> + <PolyStepSegment x="6.212" y="-2.737"/> + <PolyStepSegment x="6.216" y="-2.742"/> + <PolyStepSegment x="6.221" y="-2.745"/> + <PolyStepSegment x="6.225" y="-2.747"/> + <PolyStepSegment x="6.229" y="-2.747"/> + <PolyStepSegment x="6.234" y="-2.745"/> + <PolyStepSegment x="6.238" y="-2.743"/> + <PolyStepSegment x="6.241" y="-2.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.290" y="-2.701"/> + <PolyStepSegment x="6.286" y="-2.699"/> + <PolyStepSegment x="6.282" y="-2.697"/> + <PolyStepSegment x="6.277" y="-2.697"/> + <PolyStepSegment x="6.271" y="-2.700"/> + <PolyStepSegment x="6.267" y="-2.704"/> + <PolyStepSegment x="6.263" y="-2.709"/> + <PolyStepSegment x="6.261" y="-2.717"/> + <PolyStepSegment x="6.260" y="-2.725"/> + <PolyStepSegment x="6.261" y="-2.732"/> + <PolyStepSegment x="6.263" y="-2.737"/> + <PolyStepSegment x="6.267" y="-2.742"/> + <PolyStepSegment x="6.272" y="-2.745"/> + <PolyStepSegment x="6.276" y="-2.747"/> + <PolyStepSegment x="6.280" y="-2.747"/> + <PolyStepSegment x="6.285" y="-2.745"/> + <PolyStepSegment x="6.289" y="-2.743"/> + <PolyStepSegment x="6.292" y="-2.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-2.747"/> + <PolyStepSegment x="6.365" y="-2.697"/> + <PolyStepSegment x="6.381" y="-2.697"/> + <PolyStepSegment x="6.386" y="-2.700"/> + <PolyStepSegment x="6.389" y="-2.705"/> + <PolyStepSegment x="6.391" y="-2.712"/> + <PolyStepSegment x="6.389" y="-2.719"/> + <PolyStepSegment x="6.386" y="-2.724"/> + <PolyStepSegment x="6.381" y="-2.726"/> + <PolyStepSegment x="6.365" y="-2.726"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.416" y="-2.697"/> + <PolyStepSegment x="6.416" y="-2.747"/> + <PolyStepSegment x="6.442" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.464" y="-2.747"/> + <PolyStepSegment x="6.480" y="-2.697"/> + <PolyStepSegment x="6.496" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.490" y="-2.730"/> + <PolyStepSegment x="6.470" y="-2.730"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-2.747"/> + <PolyStepSegment x="6.516" y="-2.697"/> + <PolyStepSegment x="6.546" y="-2.747"/> + <PolyStepSegment x="6.546" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.595" y="-2.747"/> + <PolyStepSegment x="6.569" y="-2.747"/> + <PolyStepSegment x="6.569" y="-2.697"/> + <PolyStepSegment x="6.595" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-2.721"/> + <PolyStepSegment x="6.569" y="-2.721"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.676" y="-2.730"/> + <PolyStepSegment x="6.692" y="-2.730"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.800" y="-2.701"/> + <PolyStepSegment x="6.796" y="-2.699"/> + <PolyStepSegment x="6.792" y="-2.697"/> + <PolyStepSegment x="6.787" y="-2.697"/> + <PolyStepSegment x="6.781" y="-2.700"/> + <PolyStepSegment x="6.777" y="-2.704"/> + <PolyStepSegment x="6.773" y="-2.709"/> + <PolyStepSegment x="6.771" y="-2.717"/> + <PolyStepSegment x="6.770" y="-2.725"/> + <PolyStepSegment x="6.771" y="-2.732"/> + <PolyStepSegment x="6.773" y="-2.737"/> + <PolyStepSegment x="6.777" y="-2.742"/> + <PolyStepSegment x="6.782" y="-2.745"/> + <PolyStepSegment x="6.786" y="-2.747"/> + <PolyStepSegment x="6.790" y="-2.747"/> + <PolyStepSegment x="6.795" y="-2.745"/> + <PolyStepSegment x="6.799" y="-2.743"/> + <PolyStepSegment x="6.802" y="-2.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.837" y="-2.747"/> + <PolyStepSegment x="6.832" y="-2.746"/> + <PolyStepSegment x="6.828" y="-2.743"/> + <PolyStepSegment x="6.824" y="-2.738"/> + <PolyStepSegment x="6.821" y="-2.732"/> + <PolyStepSegment x="6.820" y="-2.725"/> + <PolyStepSegment x="6.820" y="-2.719"/> + <PolyStepSegment x="6.821" y="-2.712"/> + <PolyStepSegment x="6.824" y="-2.706"/> + <PolyStepSegment x="6.828" y="-2.701"/> + <PolyStepSegment x="6.832" y="-2.698"/> + <PolyStepSegment x="6.837" y="-2.697"/> + <PolyStepSegment x="6.842" y="-2.698"/> + <PolyStepSegment x="6.846" y="-2.701"/> + <PolyStepSegment x="6.850" y="-2.706"/> + <PolyStepSegment x="6.853" y="-2.712"/> + <PolyStepSegment x="6.854" y="-2.719"/> + <PolyStepSegment x="6.854" y="-2.725"/> + <PolyStepSegment x="6.853" y="-2.732"/> + <PolyStepSegment x="6.850" y="-2.738"/> + <PolyStepSegment x="6.846" y="-2.743"/> + <PolyStepSegment x="6.842" y="-2.746"/> + <PolyStepSegment x="6.837" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.875" y="-2.747"/> + <PolyStepSegment x="6.875" y="-2.697"/> + <PolyStepSegment x="6.891" y="-2.697"/> + <PolyStepSegment x="6.896" y="-2.700"/> + <PolyStepSegment x="6.899" y="-2.705"/> + <PolyStepSegment x="6.901" y="-2.712"/> + <PolyStepSegment x="6.899" y="-2.719"/> + <PolyStepSegment x="6.896" y="-2.724"/> + <PolyStepSegment x="6.891" y="-2.726"/> + <PolyStepSegment x="6.875" y="-2.726"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-2.747"/> + <PolyStepSegment x="6.926" y="-2.697"/> + <PolyStepSegment x="6.942" y="-2.697"/> + <PolyStepSegment x="6.947" y="-2.700"/> + <PolyStepSegment x="6.950" y="-2.705"/> + <PolyStepSegment x="6.952" y="-2.712"/> + <PolyStepSegment x="6.950" y="-2.719"/> + <PolyStepSegment x="6.947" y="-2.724"/> + <PolyStepSegment x="6.942" y="-2.726"/> + <PolyStepSegment x="6.926" y="-2.726"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.003" y="-2.747"/> + <PolyStepSegment x="6.977" y="-2.747"/> + <PolyStepSegment x="6.977" y="-2.697"/> + <PolyStepSegment x="7.003" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.993" y="-2.721"/> + <PolyStepSegment x="6.977" y="-2.721"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.028" y="-2.747"/> + <PolyStepSegment x="7.028" y="-2.697"/> + <PolyStepSegment x="7.044" y="-2.697"/> + <PolyStepSegment x="7.049" y="-2.700"/> + <PolyStepSegment x="7.052" y="-2.703"/> + <PolyStepSegment x="7.054" y="-2.710"/> + <PolyStepSegment x="7.052" y="-2.716"/> + <PolyStepSegment x="7.049" y="-2.720"/> + <PolyStepSegment x="7.044" y="-2.723"/> + <PolyStepSegment x="7.028" y="-2.723"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.044" y="-2.723"/> + <PolyStepSegment x="7.054" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-2.747"/> + <PolyStepSegment x="7.143" y="-2.697"/> + <PolyStepSegment x="7.135" y="-2.707"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.135" y="-2.747"/> + <PolyStepSegment x="7.151" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-2.747"/> + <PolyStepSegment x="7.229" y="-2.697"/> + <PolyStepSegment x="7.245" y="-2.739"/> + <PolyStepSegment x="7.261" y="-2.697"/> + <PolyStepSegment x="7.261" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.697"/> + <PolyStepSegment x="7.304" y="-2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-2.697"/> + <PolyStepSegment x="7.296" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.747"/> + <PolyStepSegment x="7.304" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-2.697"/> + <PolyStepSegment x="7.334" y="-2.747"/> + <PolyStepSegment x="7.360" y="-2.747"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* DIELECTRIC - FR-4 8 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.058" y="-2.554"/> + <PolyStepSegment x="6.086" y="-2.517"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.510"/> + <PolyStepSegment x="6.072" y="-2.560"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.086" y="-2.554"/> + <PolyStepSegment x="6.058" y="-2.517"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.053" y="-2.535"/> + <PolyStepSegment x="6.091" y="-2.535"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.211" y="-2.552"/> + <PolyStepSegment x="6.211" y="-2.502"/> + <PolyStepSegment x="6.224" y="-2.502"/> + <PolyStepSegment x="6.229" y="-2.505"/> + <PolyStepSegment x="6.233" y="-2.508"/> + <PolyStepSegment x="6.236" y="-2.513"/> + <PolyStepSegment x="6.238" y="-2.519"/> + <PolyStepSegment x="6.239" y="-2.527"/> + <PolyStepSegment x="6.238" y="-2.535"/> + <PolyStepSegment x="6.236" y="-2.541"/> + <PolyStepSegment x="6.233" y="-2.546"/> + <PolyStepSegment x="6.229" y="-2.550"/> + <PolyStepSegment x="6.224" y="-2.552"/> + <PolyStepSegment x="6.211" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.502"/> + <PolyStepSegment x="6.284" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-2.502"/> + <PolyStepSegment x="6.276" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.552"/> + <PolyStepSegment x="6.284" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.340" y="-2.552"/> + <PolyStepSegment x="6.314" y="-2.552"/> + <PolyStepSegment x="6.314" y="-2.502"/> + <PolyStepSegment x="6.340" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.330" y="-2.526"/> + <PolyStepSegment x="6.314" y="-2.526"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-2.502"/> + <PolyStepSegment x="6.365" y="-2.552"/> + <PolyStepSegment x="6.391" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.442" y="-2.552"/> + <PolyStepSegment x="6.416" y="-2.552"/> + <PolyStepSegment x="6.416" y="-2.502"/> + <PolyStepSegment x="6.442" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.432" y="-2.526"/> + <PolyStepSegment x="6.416" y="-2.526"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.494" y="-2.506"/> + <PolyStepSegment x="6.490" y="-2.504"/> + <PolyStepSegment x="6.486" y="-2.502"/> + <PolyStepSegment x="6.481" y="-2.502"/> + <PolyStepSegment x="6.475" y="-2.505"/> + <PolyStepSegment x="6.471" y="-2.509"/> + <PolyStepSegment x="6.467" y="-2.514"/> + <PolyStepSegment x="6.465" y="-2.522"/> + <PolyStepSegment x="6.464" y="-2.530"/> + <PolyStepSegment x="6.465" y="-2.537"/> + <PolyStepSegment x="6.467" y="-2.542"/> + <PolyStepSegment x="6.471" y="-2.547"/> + <PolyStepSegment x="6.476" y="-2.550"/> + <PolyStepSegment x="6.480" y="-2.552"/> + <PolyStepSegment x="6.484" y="-2.552"/> + <PolyStepSegment x="6.489" y="-2.550"/> + <PolyStepSegment x="6.493" y="-2.548"/> + <PolyStepSegment x="6.496" y="-2.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.531" y="-2.502"/> + <PolyStepSegment x="6.531" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-2.502"/> + <PolyStepSegment x="6.546" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.569" y="-2.552"/> + <PolyStepSegment x="6.569" y="-2.502"/> + <PolyStepSegment x="6.585" y="-2.502"/> + <PolyStepSegment x="6.590" y="-2.505"/> + <PolyStepSegment x="6.593" y="-2.508"/> + <PolyStepSegment x="6.595" y="-2.515"/> + <PolyStepSegment x="6.593" y="-2.521"/> + <PolyStepSegment x="6.590" y="-2.525"/> + <PolyStepSegment x="6.585" y="-2.528"/> + <PolyStepSegment x="6.569" y="-2.528"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-2.528"/> + <PolyStepSegment x="6.595" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.502"/> + <PolyStepSegment x="6.641" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.633" y="-2.502"/> + <PolyStepSegment x="6.633" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.552"/> + <PolyStepSegment x="6.641" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.698" y="-2.506"/> + <PolyStepSegment x="6.694" y="-2.504"/> + <PolyStepSegment x="6.690" y="-2.502"/> + <PolyStepSegment x="6.685" y="-2.502"/> + <PolyStepSegment x="6.679" y="-2.505"/> + <PolyStepSegment x="6.675" y="-2.509"/> + <PolyStepSegment x="6.671" y="-2.514"/> + <PolyStepSegment x="6.669" y="-2.522"/> + <PolyStepSegment x="6.668" y="-2.530"/> + <PolyStepSegment x="6.669" y="-2.537"/> + <PolyStepSegment x="6.671" y="-2.542"/> + <PolyStepSegment x="6.675" y="-2.547"/> + <PolyStepSegment x="6.680" y="-2.550"/> + <PolyStepSegment x="6.684" y="-2.552"/> + <PolyStepSegment x="6.688" y="-2.552"/> + <PolyStepSegment x="6.693" y="-2.550"/> + <PolyStepSegment x="6.697" y="-2.548"/> + <PolyStepSegment x="6.700" y="-2.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.778" y="-2.535"/> + <PolyStepSegment x="6.794" y="-2.535"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.876" y="-2.552"/> + <PolyStepSegment x="6.876" y="-2.502"/> + <PolyStepSegment x="6.900" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.891" y="-2.526"/> + <PolyStepSegment x="6.876" y="-2.526"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-2.552"/> + <PolyStepSegment x="6.926" y="-2.502"/> + <PolyStepSegment x="6.942" y="-2.502"/> + <PolyStepSegment x="6.947" y="-2.505"/> + <PolyStepSegment x="6.950" y="-2.508"/> + <PolyStepSegment x="6.952" y="-2.515"/> + <PolyStepSegment x="6.950" y="-2.521"/> + <PolyStepSegment x="6.947" y="-2.525"/> + <PolyStepSegment x="6.942" y="-2.528"/> + <PolyStepSegment x="6.926" y="-2.528"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-2.528"/> + <PolyStepSegment x="6.952" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.982" y="-2.535"/> + <PolyStepSegment x="6.998" y="-2.535"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.049" y="-2.552"/> + <PolyStepSegment x="7.049" y="-2.502"/> + <PolyStepSegment x="7.025" y="-2.538"/> + <PolyStepSegment x="7.057" y="-2.538"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-2.552"/> + <PolyStepSegment x="7.147" y="-2.551"/> + <PolyStepSegment x="7.152" y="-2.549"/> + <PolyStepSegment x="7.156" y="-2.545"/> + <PolyStepSegment x="7.157" y="-2.539"/> + <PolyStepSegment x="7.156" y="-2.533"/> + <PolyStepSegment x="7.152" y="-2.528"/> + <PolyStepSegment x="7.146" y="-2.525"/> + <PolyStepSegment x="7.140" y="-2.525"/> + <PolyStepSegment x="7.136" y="-2.524"/> + <PolyStepSegment x="7.133" y="-2.520"/> + <PolyStepSegment x="7.132" y="-2.514"/> + <PolyStepSegment x="7.134" y="-2.508"/> + <PolyStepSegment x="7.138" y="-2.504"/> + <PolyStepSegment x="7.143" y="-2.502"/> + <PolyStepSegment x="7.148" y="-2.504"/> + <PolyStepSegment x="7.152" y="-2.508"/> + <PolyStepSegment x="7.154" y="-2.514"/> + <PolyStepSegment x="7.153" y="-2.520"/> + <PolyStepSegment x="7.150" y="-2.524"/> + <PolyStepSegment x="7.146" y="-2.525"/> + <PolyStepSegment x="7.140" y="-2.525"/> + <PolyStepSegment x="7.134" y="-2.528"/> + <PolyStepSegment x="7.130" y="-2.533"/> + <PolyStepSegment x="7.129" y="-2.539"/> + <PolyStepSegment x="7.130" y="-2.545"/> + <PolyStepSegment x="7.134" y="-2.549"/> + <PolyStepSegment x="7.139" y="-2.551"/> + <PolyStepSegment x="7.143" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-2.552"/> + <PolyStepSegment x="7.229" y="-2.502"/> + <PolyStepSegment x="7.245" y="-2.544"/> + <PolyStepSegment x="7.261" y="-2.502"/> + <PolyStepSegment x="7.261" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.502"/> + <PolyStepSegment x="7.304" y="-2.502"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-2.502"/> + <PolyStepSegment x="7.296" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.552"/> + <PolyStepSegment x="7.304" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-2.502"/> + <PolyStepSegment x="7.334" y="-2.552"/> + <PolyStepSegment x="7.360" y="-2.552"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L4: IS2 CONDUCTOR - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-2.307"/> + <PolyStepSegment x="5.957" y="-2.357"/> + <PolyStepSegment x="5.983" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.029" y="-2.357"/> + <PolyStepSegment x="6.029" y="-2.307"/> + <PolyStepSegment x="6.005" y="-2.343"/> + <PolyStepSegment x="6.037" y="-2.343"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.359"/> + <PolyStepSegment x="6.071" y="-2.358"/> + <PolyStepSegment x="6.071" y="-2.356"/> + <PolyStepSegment x="6.072" y="-2.355"/> + <PolyStepSegment x="6.073" y="-2.356"/> + <PolyStepSegment x="6.073" y="-2.358"/> + <PolyStepSegment x="6.072" y="-2.359"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.336"/> + <PolyStepSegment x="6.071" y="-2.335"/> + <PolyStepSegment x="6.071" y="-2.334"/> + <PolyStepSegment x="6.072" y="-2.333"/> + <PolyStepSegment x="6.073" y="-2.334"/> + <PolyStepSegment x="6.073" y="-2.335"/> + <PolyStepSegment x="6.072" y="-2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.166" y="-2.307"/> + <PolyStepSegment x="6.182" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.174" y="-2.307"/> + <PolyStepSegment x="6.174" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.166" y="-2.357"/> + <PolyStepSegment x="6.182" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.212" y="-2.350"/> + <PolyStepSegment x="6.217" y="-2.355"/> + <PolyStepSegment x="6.222" y="-2.357"/> + <PolyStepSegment x="6.228" y="-2.357"/> + <PolyStepSegment x="6.233" y="-2.355"/> + <PolyStepSegment x="6.236" y="-2.350"/> + <PolyStepSegment x="6.238" y="-2.344"/> + <PolyStepSegment x="6.237" y="-2.339"/> + <PolyStepSegment x="6.234" y="-2.334"/> + <PolyStepSegment x="6.228" y="-2.330"/> + <PolyStepSegment x="6.221" y="-2.329"/> + <PolyStepSegment x="6.216" y="-2.325"/> + <PolyStepSegment x="6.214" y="-2.320"/> + <PolyStepSegment x="6.216" y="-2.314"/> + <PolyStepSegment x="6.219" y="-2.310"/> + <PolyStepSegment x="6.223" y="-2.307"/> + <PolyStepSegment x="6.228" y="-2.307"/> + <PolyStepSegment x="6.232" y="-2.309"/> + <PolyStepSegment x="6.236" y="-2.313"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.264" y="-2.315"/> + <PolyStepSegment x="6.268" y="-2.310"/> + <PolyStepSegment x="6.272" y="-2.308"/> + <PolyStepSegment x="6.277" y="-2.307"/> + <PolyStepSegment x="6.284" y="-2.309"/> + <PolyStepSegment x="6.288" y="-2.313"/> + <PolyStepSegment x="6.289" y="-2.318"/> + <PolyStepSegment x="6.289" y="-2.323"/> + <PolyStepSegment x="6.286" y="-2.327"/> + <PolyStepSegment x="6.273" y="-2.335"/> + <PolyStepSegment x="6.268" y="-2.341"/> + <PolyStepSegment x="6.264" y="-2.350"/> + <PolyStepSegment x="6.263" y="-2.357"/> + <PolyStepSegment x="6.289" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.392" y="-2.311"/> + <PolyStepSegment x="6.388" y="-2.309"/> + <PolyStepSegment x="6.384" y="-2.307"/> + <PolyStepSegment x="6.379" y="-2.307"/> + <PolyStepSegment x="6.373" y="-2.310"/> + <PolyStepSegment x="6.369" y="-2.314"/> + <PolyStepSegment x="6.365" y="-2.319"/> + <PolyStepSegment x="6.363" y="-2.327"/> + <PolyStepSegment x="6.362" y="-2.335"/> + <PolyStepSegment x="6.363" y="-2.342"/> + <PolyStepSegment x="6.365" y="-2.347"/> + <PolyStepSegment x="6.369" y="-2.352"/> + <PolyStepSegment x="6.374" y="-2.355"/> + <PolyStepSegment x="6.378" y="-2.357"/> + <PolyStepSegment x="6.382" y="-2.357"/> + <PolyStepSegment x="6.387" y="-2.355"/> + <PolyStepSegment x="6.391" y="-2.353"/> + <PolyStepSegment x="6.394" y="-2.350"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.429" y="-2.357"/> + <PolyStepSegment x="6.424" y="-2.356"/> + <PolyStepSegment x="6.420" y="-2.353"/> + <PolyStepSegment x="6.416" y="-2.348"/> + <PolyStepSegment x="6.413" y="-2.342"/> + <PolyStepSegment x="6.412" y="-2.335"/> + <PolyStepSegment x="6.412" y="-2.329"/> + <PolyStepSegment x="6.413" y="-2.322"/> + <PolyStepSegment x="6.416" y="-2.316"/> + <PolyStepSegment x="6.420" y="-2.311"/> + <PolyStepSegment x="6.424" y="-2.308"/> + <PolyStepSegment x="6.429" y="-2.307"/> + <PolyStepSegment x="6.434" y="-2.308"/> + <PolyStepSegment x="6.438" y="-2.311"/> + <PolyStepSegment x="6.442" y="-2.316"/> + <PolyStepSegment x="6.445" y="-2.322"/> + <PolyStepSegment x="6.446" y="-2.329"/> + <PolyStepSegment x="6.446" y="-2.335"/> + <PolyStepSegment x="6.445" y="-2.342"/> + <PolyStepSegment x="6.442" y="-2.348"/> + <PolyStepSegment x="6.438" y="-2.353"/> + <PolyStepSegment x="6.434" y="-2.356"/> + <PolyStepSegment x="6.429" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.465" y="-2.357"/> + <PolyStepSegment x="6.465" y="-2.307"/> + <PolyStepSegment x="6.495" y="-2.357"/> + <PolyStepSegment x="6.495" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.517" y="-2.357"/> + <PolyStepSegment x="6.517" y="-2.307"/> + <PolyStepSegment x="6.530" y="-2.307"/> + <PolyStepSegment x="6.535" y="-2.310"/> + <PolyStepSegment x="6.539" y="-2.313"/> + <PolyStepSegment x="6.542" y="-2.318"/> + <PolyStepSegment x="6.544" y="-2.324"/> + <PolyStepSegment x="6.545" y="-2.332"/> + <PolyStepSegment x="6.544" y="-2.340"/> + <PolyStepSegment x="6.542" y="-2.346"/> + <PolyStepSegment x="6.539" y="-2.351"/> + <PolyStepSegment x="6.535" y="-2.355"/> + <PolyStepSegment x="6.530" y="-2.357"/> + <PolyStepSegment x="6.517" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.568" y="-2.307"/> + <PolyStepSegment x="6.568" y="-2.343"/> + <PolyStepSegment x="6.571" y="-2.350"/> + <PolyStepSegment x="6.576" y="-2.355"/> + <PolyStepSegment x="6.582" y="-2.357"/> + <PolyStepSegment x="6.588" y="-2.355"/> + <PolyStepSegment x="6.593" y="-2.350"/> + <PolyStepSegment x="6.596" y="-2.343"/> + <PolyStepSegment x="6.596" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.647" y="-2.311"/> + <PolyStepSegment x="6.643" y="-2.309"/> + <PolyStepSegment x="6.639" y="-2.307"/> + <PolyStepSegment x="6.634" y="-2.307"/> + <PolyStepSegment x="6.628" y="-2.310"/> + <PolyStepSegment x="6.624" y="-2.314"/> + <PolyStepSegment x="6.620" y="-2.319"/> + <PolyStepSegment x="6.618" y="-2.327"/> + <PolyStepSegment x="6.617" y="-2.335"/> + <PolyStepSegment x="6.618" y="-2.342"/> + <PolyStepSegment x="6.620" y="-2.347"/> + <PolyStepSegment x="6.624" y="-2.352"/> + <PolyStepSegment x="6.629" y="-2.355"/> + <PolyStepSegment x="6.633" y="-2.357"/> + <PolyStepSegment x="6.637" y="-2.357"/> + <PolyStepSegment x="6.642" y="-2.355"/> + <PolyStepSegment x="6.646" y="-2.353"/> + <PolyStepSegment x="6.649" y="-2.350"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.684" y="-2.307"/> + <PolyStepSegment x="6.684" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.669" y="-2.307"/> + <PolyStepSegment x="6.699" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.735" y="-2.357"/> + <PolyStepSegment x="6.730" y="-2.356"/> + <PolyStepSegment x="6.726" y="-2.353"/> + <PolyStepSegment x="6.722" y="-2.348"/> + <PolyStepSegment x="6.719" y="-2.342"/> + <PolyStepSegment x="6.718" y="-2.335"/> + <PolyStepSegment x="6.718" y="-2.329"/> + <PolyStepSegment x="6.719" y="-2.322"/> + <PolyStepSegment x="6.722" y="-2.316"/> + <PolyStepSegment x="6.726" y="-2.311"/> + <PolyStepSegment x="6.730" y="-2.308"/> + <PolyStepSegment x="6.735" y="-2.307"/> + <PolyStepSegment x="6.740" y="-2.308"/> + <PolyStepSegment x="6.744" y="-2.311"/> + <PolyStepSegment x="6.748" y="-2.316"/> + <PolyStepSegment x="6.751" y="-2.322"/> + <PolyStepSegment x="6.752" y="-2.329"/> + <PolyStepSegment x="6.752" y="-2.335"/> + <PolyStepSegment x="6.751" y="-2.342"/> + <PolyStepSegment x="6.748" y="-2.348"/> + <PolyStepSegment x="6.744" y="-2.353"/> + <PolyStepSegment x="6.740" y="-2.356"/> + <PolyStepSegment x="6.735" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.773" y="-2.357"/> + <PolyStepSegment x="6.773" y="-2.307"/> + <PolyStepSegment x="6.789" y="-2.307"/> + <PolyStepSegment x="6.794" y="-2.310"/> + <PolyStepSegment x="6.797" y="-2.313"/> + <PolyStepSegment x="6.799" y="-2.320"/> + <PolyStepSegment x="6.797" y="-2.326"/> + <PolyStepSegment x="6.794" y="-2.330"/> + <PolyStepSegment x="6.789" y="-2.333"/> + <PolyStepSegment x="6.773" y="-2.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.789" y="-2.333"/> + <PolyStepSegment x="6.799" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.880" y="-2.340"/> + <PolyStepSegment x="6.896" y="-2.340"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.004" y="-2.311"/> + <PolyStepSegment x="7.000" y="-2.309"/> + <PolyStepSegment x="6.996" y="-2.307"/> + <PolyStepSegment x="6.991" y="-2.307"/> + <PolyStepSegment x="6.985" y="-2.310"/> + <PolyStepSegment x="6.981" y="-2.314"/> + <PolyStepSegment x="6.977" y="-2.319"/> + <PolyStepSegment x="6.975" y="-2.327"/> + <PolyStepSegment x="6.974" y="-2.335"/> + <PolyStepSegment x="6.975" y="-2.342"/> + <PolyStepSegment x="6.977" y="-2.347"/> + <PolyStepSegment x="6.981" y="-2.352"/> + <PolyStepSegment x="6.986" y="-2.355"/> + <PolyStepSegment x="6.990" y="-2.357"/> + <PolyStepSegment x="6.994" y="-2.357"/> + <PolyStepSegment x="6.999" y="-2.355"/> + <PolyStepSegment x="7.003" y="-2.353"/> + <PolyStepSegment x="7.006" y="-2.350"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.041" y="-2.357"/> + <PolyStepSegment x="7.036" y="-2.356"/> + <PolyStepSegment x="7.032" y="-2.353"/> + <PolyStepSegment x="7.028" y="-2.348"/> + <PolyStepSegment x="7.025" y="-2.342"/> + <PolyStepSegment x="7.024" y="-2.335"/> + <PolyStepSegment x="7.024" y="-2.329"/> + <PolyStepSegment x="7.025" y="-2.322"/> + <PolyStepSegment x="7.028" y="-2.316"/> + <PolyStepSegment x="7.032" y="-2.311"/> + <PolyStepSegment x="7.036" y="-2.308"/> + <PolyStepSegment x="7.041" y="-2.307"/> + <PolyStepSegment x="7.046" y="-2.308"/> + <PolyStepSegment x="7.050" y="-2.311"/> + <PolyStepSegment x="7.054" y="-2.316"/> + <PolyStepSegment x="7.057" y="-2.322"/> + <PolyStepSegment x="7.058" y="-2.329"/> + <PolyStepSegment x="7.058" y="-2.335"/> + <PolyStepSegment x="7.057" y="-2.342"/> + <PolyStepSegment x="7.054" y="-2.348"/> + <PolyStepSegment x="7.050" y="-2.353"/> + <PolyStepSegment x="7.046" y="-2.356"/> + <PolyStepSegment x="7.041" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.079" y="-2.357"/> + <PolyStepSegment x="7.079" y="-2.307"/> + <PolyStepSegment x="7.095" y="-2.307"/> + <PolyStepSegment x="7.100" y="-2.310"/> + <PolyStepSegment x="7.103" y="-2.315"/> + <PolyStepSegment x="7.105" y="-2.322"/> + <PolyStepSegment x="7.103" y="-2.329"/> + <PolyStepSegment x="7.100" y="-2.334"/> + <PolyStepSegment x="7.095" y="-2.336"/> + <PolyStepSegment x="7.079" y="-2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.130" y="-2.357"/> + <PolyStepSegment x="7.130" y="-2.307"/> + <PolyStepSegment x="7.146" y="-2.307"/> + <PolyStepSegment x="7.151" y="-2.310"/> + <PolyStepSegment x="7.154" y="-2.315"/> + <PolyStepSegment x="7.156" y="-2.322"/> + <PolyStepSegment x="7.154" y="-2.329"/> + <PolyStepSegment x="7.151" y="-2.334"/> + <PolyStepSegment x="7.146" y="-2.336"/> + <PolyStepSegment x="7.130" y="-2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.207" y="-2.357"/> + <PolyStepSegment x="7.181" y="-2.357"/> + <PolyStepSegment x="7.181" y="-2.307"/> + <PolyStepSegment x="7.207" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.197" y="-2.331"/> + <PolyStepSegment x="7.181" y="-2.331"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.232" y="-2.357"/> + <PolyStepSegment x="7.232" y="-2.307"/> + <PolyStepSegment x="7.248" y="-2.307"/> + <PolyStepSegment x="7.253" y="-2.310"/> + <PolyStepSegment x="7.256" y="-2.313"/> + <PolyStepSegment x="7.258" y="-2.320"/> + <PolyStepSegment x="7.256" y="-2.326"/> + <PolyStepSegment x="7.253" y="-2.330"/> + <PolyStepSegment x="7.248" y="-2.333"/> + <PolyStepSegment x="7.232" y="-2.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.248" y="-2.333"/> + <PolyStepSegment x="7.258" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.347" y="-2.357"/> + <PolyStepSegment x="7.347" y="-2.307"/> + <PolyStepSegment x="7.339" y="-2.317"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.339" y="-2.357"/> + <PolyStepSegment x="7.355" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.433" y="-2.357"/> + <PolyStepSegment x="7.433" y="-2.307"/> + <PolyStepSegment x="7.449" y="-2.349"/> + <PolyStepSegment x="7.465" y="-2.307"/> + <PolyStepSegment x="7.465" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-2.307"/> + <PolyStepSegment x="7.508" y="-2.307"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.500" y="-2.307"/> + <PolyStepSegment x="7.500" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-2.357"/> + <PolyStepSegment x="7.508" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.538" y="-2.307"/> + <PolyStepSegment x="7.538" y="-2.357"/> + <PolyStepSegment x="7.564" y="-2.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* DIELECTRIC - FR-4 8 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.058" y="-2.164"/> + <PolyStepSegment x="6.086" y="-2.127"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-2.120"/> + <PolyStepSegment x="6.072" y="-2.170"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.086" y="-2.164"/> + <PolyStepSegment x="6.058" y="-2.127"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.053" y="-2.145"/> + <PolyStepSegment x="6.091" y="-2.145"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.211" y="-2.162"/> + <PolyStepSegment x="6.211" y="-2.112"/> + <PolyStepSegment x="6.224" y="-2.112"/> + <PolyStepSegment x="6.229" y="-2.115"/> + <PolyStepSegment x="6.233" y="-2.118"/> + <PolyStepSegment x="6.236" y="-2.123"/> + <PolyStepSegment x="6.238" y="-2.129"/> + <PolyStepSegment x="6.239" y="-2.137"/> + <PolyStepSegment x="6.238" y="-2.145"/> + <PolyStepSegment x="6.236" y="-2.151"/> + <PolyStepSegment x="6.233" y="-2.156"/> + <PolyStepSegment x="6.229" y="-2.160"/> + <PolyStepSegment x="6.224" y="-2.162"/> + <PolyStepSegment x="6.211" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.112"/> + <PolyStepSegment x="6.284" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-2.112"/> + <PolyStepSegment x="6.276" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-2.162"/> + <PolyStepSegment x="6.284" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.340" y="-2.162"/> + <PolyStepSegment x="6.314" y="-2.162"/> + <PolyStepSegment x="6.314" y="-2.112"/> + <PolyStepSegment x="6.340" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.330" y="-2.136"/> + <PolyStepSegment x="6.314" y="-2.136"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-2.112"/> + <PolyStepSegment x="6.365" y="-2.162"/> + <PolyStepSegment x="6.391" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.442" y="-2.162"/> + <PolyStepSegment x="6.416" y="-2.162"/> + <PolyStepSegment x="6.416" y="-2.112"/> + <PolyStepSegment x="6.442" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.432" y="-2.136"/> + <PolyStepSegment x="6.416" y="-2.136"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.494" y="-2.116"/> + <PolyStepSegment x="6.490" y="-2.114"/> + <PolyStepSegment x="6.486" y="-2.112"/> + <PolyStepSegment x="6.481" y="-2.112"/> + <PolyStepSegment x="6.475" y="-2.115"/> + <PolyStepSegment x="6.471" y="-2.119"/> + <PolyStepSegment x="6.467" y="-2.124"/> + <PolyStepSegment x="6.465" y="-2.132"/> + <PolyStepSegment x="6.464" y="-2.140"/> + <PolyStepSegment x="6.465" y="-2.147"/> + <PolyStepSegment x="6.467" y="-2.152"/> + <PolyStepSegment x="6.471" y="-2.157"/> + <PolyStepSegment x="6.476" y="-2.160"/> + <PolyStepSegment x="6.480" y="-2.162"/> + <PolyStepSegment x="6.484" y="-2.162"/> + <PolyStepSegment x="6.489" y="-2.160"/> + <PolyStepSegment x="6.493" y="-2.158"/> + <PolyStepSegment x="6.496" y="-2.155"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.531" y="-2.112"/> + <PolyStepSegment x="6.531" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-2.112"/> + <PolyStepSegment x="6.546" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.569" y="-2.162"/> + <PolyStepSegment x="6.569" y="-2.112"/> + <PolyStepSegment x="6.585" y="-2.112"/> + <PolyStepSegment x="6.590" y="-2.115"/> + <PolyStepSegment x="6.593" y="-2.118"/> + <PolyStepSegment x="6.595" y="-2.125"/> + <PolyStepSegment x="6.593" y="-2.131"/> + <PolyStepSegment x="6.590" y="-2.135"/> + <PolyStepSegment x="6.585" y="-2.138"/> + <PolyStepSegment x="6.569" y="-2.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-2.138"/> + <PolyStepSegment x="6.595" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.112"/> + <PolyStepSegment x="6.641" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.633" y="-2.112"/> + <PolyStepSegment x="6.633" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-2.162"/> + <PolyStepSegment x="6.641" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.698" y="-2.116"/> + <PolyStepSegment x="6.694" y="-2.114"/> + <PolyStepSegment x="6.690" y="-2.112"/> + <PolyStepSegment x="6.685" y="-2.112"/> + <PolyStepSegment x="6.679" y="-2.115"/> + <PolyStepSegment x="6.675" y="-2.119"/> + <PolyStepSegment x="6.671" y="-2.124"/> + <PolyStepSegment x="6.669" y="-2.132"/> + <PolyStepSegment x="6.668" y="-2.140"/> + <PolyStepSegment x="6.669" y="-2.147"/> + <PolyStepSegment x="6.671" y="-2.152"/> + <PolyStepSegment x="6.675" y="-2.157"/> + <PolyStepSegment x="6.680" y="-2.160"/> + <PolyStepSegment x="6.684" y="-2.162"/> + <PolyStepSegment x="6.688" y="-2.162"/> + <PolyStepSegment x="6.693" y="-2.160"/> + <PolyStepSegment x="6.697" y="-2.158"/> + <PolyStepSegment x="6.700" y="-2.155"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.778" y="-2.145"/> + <PolyStepSegment x="6.794" y="-2.145"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.876" y="-2.162"/> + <PolyStepSegment x="6.876" y="-2.112"/> + <PolyStepSegment x="6.900" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.891" y="-2.136"/> + <PolyStepSegment x="6.876" y="-2.136"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-2.162"/> + <PolyStepSegment x="6.926" y="-2.112"/> + <PolyStepSegment x="6.942" y="-2.112"/> + <PolyStepSegment x="6.947" y="-2.115"/> + <PolyStepSegment x="6.950" y="-2.118"/> + <PolyStepSegment x="6.952" y="-2.125"/> + <PolyStepSegment x="6.950" y="-2.131"/> + <PolyStepSegment x="6.947" y="-2.135"/> + <PolyStepSegment x="6.942" y="-2.138"/> + <PolyStepSegment x="6.926" y="-2.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-2.138"/> + <PolyStepSegment x="6.952" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.982" y="-2.145"/> + <PolyStepSegment x="6.998" y="-2.145"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.049" y="-2.162"/> + <PolyStepSegment x="7.049" y="-2.112"/> + <PolyStepSegment x="7.025" y="-2.148"/> + <PolyStepSegment x="7.057" y="-2.148"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-2.162"/> + <PolyStepSegment x="7.147" y="-2.161"/> + <PolyStepSegment x="7.152" y="-2.159"/> + <PolyStepSegment x="7.156" y="-2.155"/> + <PolyStepSegment x="7.157" y="-2.149"/> + <PolyStepSegment x="7.156" y="-2.143"/> + <PolyStepSegment x="7.152" y="-2.138"/> + <PolyStepSegment x="7.146" y="-2.135"/> + <PolyStepSegment x="7.140" y="-2.135"/> + <PolyStepSegment x="7.136" y="-2.134"/> + <PolyStepSegment x="7.133" y="-2.130"/> + <PolyStepSegment x="7.132" y="-2.124"/> + <PolyStepSegment x="7.134" y="-2.118"/> + <PolyStepSegment x="7.138" y="-2.114"/> + <PolyStepSegment x="7.143" y="-2.112"/> + <PolyStepSegment x="7.148" y="-2.114"/> + <PolyStepSegment x="7.152" y="-2.118"/> + <PolyStepSegment x="7.154" y="-2.124"/> + <PolyStepSegment x="7.153" y="-2.130"/> + <PolyStepSegment x="7.150" y="-2.134"/> + <PolyStepSegment x="7.146" y="-2.135"/> + <PolyStepSegment x="7.140" y="-2.135"/> + <PolyStepSegment x="7.134" y="-2.138"/> + <PolyStepSegment x="7.130" y="-2.143"/> + <PolyStepSegment x="7.129" y="-2.149"/> + <PolyStepSegment x="7.130" y="-2.155"/> + <PolyStepSegment x="7.134" y="-2.159"/> + <PolyStepSegment x="7.139" y="-2.161"/> + <PolyStepSegment x="7.143" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-2.162"/> + <PolyStepSegment x="7.229" y="-2.112"/> + <PolyStepSegment x="7.245" y="-2.154"/> + <PolyStepSegment x="7.261" y="-2.112"/> + <PolyStepSegment x="7.261" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.112"/> + <PolyStepSegment x="7.304" y="-2.112"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-2.112"/> + <PolyStepSegment x="7.296" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-2.162"/> + <PolyStepSegment x="7.304" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-2.112"/> + <PolyStepSegment x="7.334" y="-2.162"/> + <PolyStepSegment x="7.360" y="-2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L3: IS1 CONDUCTOR - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-1.917"/> + <PolyStepSegment x="5.957" y="-1.967"/> + <PolyStepSegment x="5.983" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.007" y="-1.957"/> + <PolyStepSegment x="6.011" y="-1.963"/> + <PolyStepSegment x="6.016" y="-1.966"/> + <PolyStepSegment x="6.022" y="-1.967"/> + <PolyStepSegment x="6.027" y="-1.966"/> + <PolyStepSegment x="6.032" y="-1.962"/> + <PolyStepSegment x="6.035" y="-1.957"/> + <PolyStepSegment x="6.036" y="-1.952"/> + <PolyStepSegment x="6.034" y="-1.946"/> + <PolyStepSegment x="6.030" y="-1.942"/> + <PolyStepSegment x="6.025" y="-1.940"/> + <PolyStepSegment x="6.020" y="-1.940"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.025" y="-1.940"/> + <PolyStepSegment x="6.029" y="-1.938"/> + <PolyStepSegment x="6.032" y="-1.934"/> + <PolyStepSegment x="6.034" y="-1.929"/> + <PolyStepSegment x="6.032" y="-1.924"/> + <PolyStepSegment x="6.029" y="-1.920"/> + <PolyStepSegment x="6.024" y="-1.917"/> + <PolyStepSegment x="6.018" y="-1.918"/> + <PolyStepSegment x="6.012" y="-1.921"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.969"/> + <PolyStepSegment x="6.071" y="-1.968"/> + <PolyStepSegment x="6.071" y="-1.966"/> + <PolyStepSegment x="6.072" y="-1.965"/> + <PolyStepSegment x="6.073" y="-1.966"/> + <PolyStepSegment x="6.073" y="-1.968"/> + <PolyStepSegment x="6.072" y="-1.969"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.946"/> + <PolyStepSegment x="6.071" y="-1.945"/> + <PolyStepSegment x="6.071" y="-1.944"/> + <PolyStepSegment x="6.072" y="-1.943"/> + <PolyStepSegment x="6.073" y="-1.944"/> + <PolyStepSegment x="6.073" y="-1.945"/> + <PolyStepSegment x="6.072" y="-1.946"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.166" y="-1.917"/> + <PolyStepSegment x="6.182" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.174" y="-1.917"/> + <PolyStepSegment x="6.174" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.166" y="-1.967"/> + <PolyStepSegment x="6.182" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.212" y="-1.960"/> + <PolyStepSegment x="6.217" y="-1.965"/> + <PolyStepSegment x="6.222" y="-1.967"/> + <PolyStepSegment x="6.228" y="-1.967"/> + <PolyStepSegment x="6.233" y="-1.965"/> + <PolyStepSegment x="6.236" y="-1.960"/> + <PolyStepSegment x="6.238" y="-1.954"/> + <PolyStepSegment x="6.237" y="-1.949"/> + <PolyStepSegment x="6.234" y="-1.944"/> + <PolyStepSegment x="6.228" y="-1.940"/> + <PolyStepSegment x="6.221" y="-1.939"/> + <PolyStepSegment x="6.216" y="-1.935"/> + <PolyStepSegment x="6.214" y="-1.930"/> + <PolyStepSegment x="6.216" y="-1.924"/> + <PolyStepSegment x="6.219" y="-1.920"/> + <PolyStepSegment x="6.223" y="-1.917"/> + <PolyStepSegment x="6.228" y="-1.917"/> + <PolyStepSegment x="6.232" y="-1.919"/> + <PolyStepSegment x="6.236" y="-1.923"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-1.967"/> + <PolyStepSegment x="6.276" y="-1.917"/> + <PolyStepSegment x="6.268" y="-1.927"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-1.967"/> + <PolyStepSegment x="6.284" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.392" y="-1.921"/> + <PolyStepSegment x="6.388" y="-1.919"/> + <PolyStepSegment x="6.384" y="-1.917"/> + <PolyStepSegment x="6.379" y="-1.917"/> + <PolyStepSegment x="6.373" y="-1.920"/> + <PolyStepSegment x="6.369" y="-1.924"/> + <PolyStepSegment x="6.365" y="-1.929"/> + <PolyStepSegment x="6.363" y="-1.937"/> + <PolyStepSegment x="6.362" y="-1.945"/> + <PolyStepSegment x="6.363" y="-1.952"/> + <PolyStepSegment x="6.365" y="-1.957"/> + <PolyStepSegment x="6.369" y="-1.962"/> + <PolyStepSegment x="6.374" y="-1.965"/> + <PolyStepSegment x="6.378" y="-1.967"/> + <PolyStepSegment x="6.382" y="-1.967"/> + <PolyStepSegment x="6.387" y="-1.965"/> + <PolyStepSegment x="6.391" y="-1.963"/> + <PolyStepSegment x="6.394" y="-1.960"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.429" y="-1.967"/> + <PolyStepSegment x="6.424" y="-1.966"/> + <PolyStepSegment x="6.420" y="-1.963"/> + <PolyStepSegment x="6.416" y="-1.958"/> + <PolyStepSegment x="6.413" y="-1.952"/> + <PolyStepSegment x="6.412" y="-1.945"/> + <PolyStepSegment x="6.412" y="-1.939"/> + <PolyStepSegment x="6.413" y="-1.932"/> + <PolyStepSegment x="6.416" y="-1.926"/> + <PolyStepSegment x="6.420" y="-1.921"/> + <PolyStepSegment x="6.424" y="-1.918"/> + <PolyStepSegment x="6.429" y="-1.917"/> + <PolyStepSegment x="6.434" y="-1.918"/> + <PolyStepSegment x="6.438" y="-1.921"/> + <PolyStepSegment x="6.442" y="-1.926"/> + <PolyStepSegment x="6.445" y="-1.932"/> + <PolyStepSegment x="6.446" y="-1.939"/> + <PolyStepSegment x="6.446" y="-1.945"/> + <PolyStepSegment x="6.445" y="-1.952"/> + <PolyStepSegment x="6.442" y="-1.958"/> + <PolyStepSegment x="6.438" y="-1.963"/> + <PolyStepSegment x="6.434" y="-1.966"/> + <PolyStepSegment x="6.429" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.465" y="-1.967"/> + <PolyStepSegment x="6.465" y="-1.917"/> + <PolyStepSegment x="6.495" y="-1.967"/> + <PolyStepSegment x="6.495" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.517" y="-1.967"/> + <PolyStepSegment x="6.517" y="-1.917"/> + <PolyStepSegment x="6.530" y="-1.917"/> + <PolyStepSegment x="6.535" y="-1.920"/> + <PolyStepSegment x="6.539" y="-1.923"/> + <PolyStepSegment x="6.542" y="-1.928"/> + <PolyStepSegment x="6.544" y="-1.934"/> + <PolyStepSegment x="6.545" y="-1.942"/> + <PolyStepSegment x="6.544" y="-1.950"/> + <PolyStepSegment x="6.542" y="-1.956"/> + <PolyStepSegment x="6.539" y="-1.961"/> + <PolyStepSegment x="6.535" y="-1.965"/> + <PolyStepSegment x="6.530" y="-1.967"/> + <PolyStepSegment x="6.517" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.568" y="-1.917"/> + <PolyStepSegment x="6.568" y="-1.953"/> + <PolyStepSegment x="6.571" y="-1.960"/> + <PolyStepSegment x="6.576" y="-1.965"/> + <PolyStepSegment x="6.582" y="-1.967"/> + <PolyStepSegment x="6.588" y="-1.965"/> + <PolyStepSegment x="6.593" y="-1.960"/> + <PolyStepSegment x="6.596" y="-1.953"/> + <PolyStepSegment x="6.596" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.647" y="-1.921"/> + <PolyStepSegment x="6.643" y="-1.919"/> + <PolyStepSegment x="6.639" y="-1.917"/> + <PolyStepSegment x="6.634" y="-1.917"/> + <PolyStepSegment x="6.628" y="-1.920"/> + <PolyStepSegment x="6.624" y="-1.924"/> + <PolyStepSegment x="6.620" y="-1.929"/> + <PolyStepSegment x="6.618" y="-1.937"/> + <PolyStepSegment x="6.617" y="-1.945"/> + <PolyStepSegment x="6.618" y="-1.952"/> + <PolyStepSegment x="6.620" y="-1.957"/> + <PolyStepSegment x="6.624" y="-1.962"/> + <PolyStepSegment x="6.629" y="-1.965"/> + <PolyStepSegment x="6.633" y="-1.967"/> + <PolyStepSegment x="6.637" y="-1.967"/> + <PolyStepSegment x="6.642" y="-1.965"/> + <PolyStepSegment x="6.646" y="-1.963"/> + <PolyStepSegment x="6.649" y="-1.960"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.684" y="-1.917"/> + <PolyStepSegment x="6.684" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.669" y="-1.917"/> + <PolyStepSegment x="6.699" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.735" y="-1.967"/> + <PolyStepSegment x="6.730" y="-1.966"/> + <PolyStepSegment x="6.726" y="-1.963"/> + <PolyStepSegment x="6.722" y="-1.958"/> + <PolyStepSegment x="6.719" y="-1.952"/> + <PolyStepSegment x="6.718" y="-1.945"/> + <PolyStepSegment x="6.718" y="-1.939"/> + <PolyStepSegment x="6.719" y="-1.932"/> + <PolyStepSegment x="6.722" y="-1.926"/> + <PolyStepSegment x="6.726" y="-1.921"/> + <PolyStepSegment x="6.730" y="-1.918"/> + <PolyStepSegment x="6.735" y="-1.917"/> + <PolyStepSegment x="6.740" y="-1.918"/> + <PolyStepSegment x="6.744" y="-1.921"/> + <PolyStepSegment x="6.748" y="-1.926"/> + <PolyStepSegment x="6.751" y="-1.932"/> + <PolyStepSegment x="6.752" y="-1.939"/> + <PolyStepSegment x="6.752" y="-1.945"/> + <PolyStepSegment x="6.751" y="-1.952"/> + <PolyStepSegment x="6.748" y="-1.958"/> + <PolyStepSegment x="6.744" y="-1.963"/> + <PolyStepSegment x="6.740" y="-1.966"/> + <PolyStepSegment x="6.735" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.773" y="-1.967"/> + <PolyStepSegment x="6.773" y="-1.917"/> + <PolyStepSegment x="6.789" y="-1.917"/> + <PolyStepSegment x="6.794" y="-1.920"/> + <PolyStepSegment x="6.797" y="-1.923"/> + <PolyStepSegment x="6.799" y="-1.930"/> + <PolyStepSegment x="6.797" y="-1.936"/> + <PolyStepSegment x="6.794" y="-1.940"/> + <PolyStepSegment x="6.789" y="-1.943"/> + <PolyStepSegment x="6.773" y="-1.943"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.789" y="-1.943"/> + <PolyStepSegment x="6.799" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.880" y="-1.950"/> + <PolyStepSegment x="6.896" y="-1.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.004" y="-1.921"/> + <PolyStepSegment x="7.000" y="-1.919"/> + <PolyStepSegment x="6.996" y="-1.917"/> + <PolyStepSegment x="6.991" y="-1.917"/> + <PolyStepSegment x="6.985" y="-1.920"/> + <PolyStepSegment x="6.981" y="-1.924"/> + <PolyStepSegment x="6.977" y="-1.929"/> + <PolyStepSegment x="6.975" y="-1.937"/> + <PolyStepSegment x="6.974" y="-1.945"/> + <PolyStepSegment x="6.975" y="-1.952"/> + <PolyStepSegment x="6.977" y="-1.957"/> + <PolyStepSegment x="6.981" y="-1.962"/> + <PolyStepSegment x="6.986" y="-1.965"/> + <PolyStepSegment x="6.990" y="-1.967"/> + <PolyStepSegment x="6.994" y="-1.967"/> + <PolyStepSegment x="6.999" y="-1.965"/> + <PolyStepSegment x="7.003" y="-1.963"/> + <PolyStepSegment x="7.006" y="-1.960"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.041" y="-1.967"/> + <PolyStepSegment x="7.036" y="-1.966"/> + <PolyStepSegment x="7.032" y="-1.963"/> + <PolyStepSegment x="7.028" y="-1.958"/> + <PolyStepSegment x="7.025" y="-1.952"/> + <PolyStepSegment x="7.024" y="-1.945"/> + <PolyStepSegment x="7.024" y="-1.939"/> + <PolyStepSegment x="7.025" y="-1.932"/> + <PolyStepSegment x="7.028" y="-1.926"/> + <PolyStepSegment x="7.032" y="-1.921"/> + <PolyStepSegment x="7.036" y="-1.918"/> + <PolyStepSegment x="7.041" y="-1.917"/> + <PolyStepSegment x="7.046" y="-1.918"/> + <PolyStepSegment x="7.050" y="-1.921"/> + <PolyStepSegment x="7.054" y="-1.926"/> + <PolyStepSegment x="7.057" y="-1.932"/> + <PolyStepSegment x="7.058" y="-1.939"/> + <PolyStepSegment x="7.058" y="-1.945"/> + <PolyStepSegment x="7.057" y="-1.952"/> + <PolyStepSegment x="7.054" y="-1.958"/> + <PolyStepSegment x="7.050" y="-1.963"/> + <PolyStepSegment x="7.046" y="-1.966"/> + <PolyStepSegment x="7.041" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.079" y="-1.967"/> + <PolyStepSegment x="7.079" y="-1.917"/> + <PolyStepSegment x="7.095" y="-1.917"/> + <PolyStepSegment x="7.100" y="-1.920"/> + <PolyStepSegment x="7.103" y="-1.925"/> + <PolyStepSegment x="7.105" y="-1.932"/> + <PolyStepSegment x="7.103" y="-1.939"/> + <PolyStepSegment x="7.100" y="-1.944"/> + <PolyStepSegment x="7.095" y="-1.946"/> + <PolyStepSegment x="7.079" y="-1.946"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.130" y="-1.967"/> + <PolyStepSegment x="7.130" y="-1.917"/> + <PolyStepSegment x="7.146" y="-1.917"/> + <PolyStepSegment x="7.151" y="-1.920"/> + <PolyStepSegment x="7.154" y="-1.925"/> + <PolyStepSegment x="7.156" y="-1.932"/> + <PolyStepSegment x="7.154" y="-1.939"/> + <PolyStepSegment x="7.151" y="-1.944"/> + <PolyStepSegment x="7.146" y="-1.946"/> + <PolyStepSegment x="7.130" y="-1.946"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.207" y="-1.967"/> + <PolyStepSegment x="7.181" y="-1.967"/> + <PolyStepSegment x="7.181" y="-1.917"/> + <PolyStepSegment x="7.207" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.197" y="-1.941"/> + <PolyStepSegment x="7.181" y="-1.941"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.232" y="-1.967"/> + <PolyStepSegment x="7.232" y="-1.917"/> + <PolyStepSegment x="7.248" y="-1.917"/> + <PolyStepSegment x="7.253" y="-1.920"/> + <PolyStepSegment x="7.256" y="-1.923"/> + <PolyStepSegment x="7.258" y="-1.930"/> + <PolyStepSegment x="7.256" y="-1.936"/> + <PolyStepSegment x="7.253" y="-1.940"/> + <PolyStepSegment x="7.248" y="-1.943"/> + <PolyStepSegment x="7.232" y="-1.943"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.248" y="-1.943"/> + <PolyStepSegment x="7.258" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.347" y="-1.967"/> + <PolyStepSegment x="7.347" y="-1.917"/> + <PolyStepSegment x="7.339" y="-1.927"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.339" y="-1.967"/> + <PolyStepSegment x="7.355" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.433" y="-1.967"/> + <PolyStepSegment x="7.433" y="-1.917"/> + <PolyStepSegment x="7.449" y="-1.959"/> + <PolyStepSegment x="7.465" y="-1.917"/> + <PolyStepSegment x="7.465" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-1.917"/> + <PolyStepSegment x="7.508" y="-1.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.500" y="-1.917"/> + <PolyStepSegment x="7.500" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-1.967"/> + <PolyStepSegment x="7.508" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.538" y="-1.917"/> + <PolyStepSegment x="7.538" y="-1.967"/> + <PolyStepSegment x="7.564" y="-1.967"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* DIELECTRIC - FR-4 8 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.058" y="-1.774"/> + <PolyStepSegment x="6.086" y="-1.737"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.730"/> + <PolyStepSegment x="6.072" y="-1.780"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.086" y="-1.774"/> + <PolyStepSegment x="6.058" y="-1.737"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.053" y="-1.755"/> + <PolyStepSegment x="6.091" y="-1.755"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.211" y="-1.772"/> + <PolyStepSegment x="6.211" y="-1.722"/> + <PolyStepSegment x="6.224" y="-1.722"/> + <PolyStepSegment x="6.229" y="-1.725"/> + <PolyStepSegment x="6.233" y="-1.728"/> + <PolyStepSegment x="6.236" y="-1.733"/> + <PolyStepSegment x="6.238" y="-1.739"/> + <PolyStepSegment x="6.239" y="-1.747"/> + <PolyStepSegment x="6.238" y="-1.755"/> + <PolyStepSegment x="6.236" y="-1.761"/> + <PolyStepSegment x="6.233" y="-1.766"/> + <PolyStepSegment x="6.229" y="-1.770"/> + <PolyStepSegment x="6.224" y="-1.772"/> + <PolyStepSegment x="6.211" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-1.722"/> + <PolyStepSegment x="6.284" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-1.722"/> + <PolyStepSegment x="6.276" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-1.772"/> + <PolyStepSegment x="6.284" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.340" y="-1.772"/> + <PolyStepSegment x="6.314" y="-1.772"/> + <PolyStepSegment x="6.314" y="-1.722"/> + <PolyStepSegment x="6.340" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.330" y="-1.746"/> + <PolyStepSegment x="6.314" y="-1.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-1.722"/> + <PolyStepSegment x="6.365" y="-1.772"/> + <PolyStepSegment x="6.391" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.442" y="-1.772"/> + <PolyStepSegment x="6.416" y="-1.772"/> + <PolyStepSegment x="6.416" y="-1.722"/> + <PolyStepSegment x="6.442" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.432" y="-1.746"/> + <PolyStepSegment x="6.416" y="-1.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.494" y="-1.726"/> + <PolyStepSegment x="6.490" y="-1.724"/> + <PolyStepSegment x="6.486" y="-1.722"/> + <PolyStepSegment x="6.481" y="-1.722"/> + <PolyStepSegment x="6.475" y="-1.725"/> + <PolyStepSegment x="6.471" y="-1.729"/> + <PolyStepSegment x="6.467" y="-1.734"/> + <PolyStepSegment x="6.465" y="-1.742"/> + <PolyStepSegment x="6.464" y="-1.750"/> + <PolyStepSegment x="6.465" y="-1.757"/> + <PolyStepSegment x="6.467" y="-1.762"/> + <PolyStepSegment x="6.471" y="-1.767"/> + <PolyStepSegment x="6.476" y="-1.770"/> + <PolyStepSegment x="6.480" y="-1.772"/> + <PolyStepSegment x="6.484" y="-1.772"/> + <PolyStepSegment x="6.489" y="-1.770"/> + <PolyStepSegment x="6.493" y="-1.768"/> + <PolyStepSegment x="6.496" y="-1.765"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.531" y="-1.722"/> + <PolyStepSegment x="6.531" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-1.722"/> + <PolyStepSegment x="6.546" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.569" y="-1.772"/> + <PolyStepSegment x="6.569" y="-1.722"/> + <PolyStepSegment x="6.585" y="-1.722"/> + <PolyStepSegment x="6.590" y="-1.725"/> + <PolyStepSegment x="6.593" y="-1.728"/> + <PolyStepSegment x="6.595" y="-1.735"/> + <PolyStepSegment x="6.593" y="-1.741"/> + <PolyStepSegment x="6.590" y="-1.745"/> + <PolyStepSegment x="6.585" y="-1.748"/> + <PolyStepSegment x="6.569" y="-1.748"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-1.748"/> + <PolyStepSegment x="6.595" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-1.722"/> + <PolyStepSegment x="6.641" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.633" y="-1.722"/> + <PolyStepSegment x="6.633" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-1.772"/> + <PolyStepSegment x="6.641" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.698" y="-1.726"/> + <PolyStepSegment x="6.694" y="-1.724"/> + <PolyStepSegment x="6.690" y="-1.722"/> + <PolyStepSegment x="6.685" y="-1.722"/> + <PolyStepSegment x="6.679" y="-1.725"/> + <PolyStepSegment x="6.675" y="-1.729"/> + <PolyStepSegment x="6.671" y="-1.734"/> + <PolyStepSegment x="6.669" y="-1.742"/> + <PolyStepSegment x="6.668" y="-1.750"/> + <PolyStepSegment x="6.669" y="-1.757"/> + <PolyStepSegment x="6.671" y="-1.762"/> + <PolyStepSegment x="6.675" y="-1.767"/> + <PolyStepSegment x="6.680" y="-1.770"/> + <PolyStepSegment x="6.684" y="-1.772"/> + <PolyStepSegment x="6.688" y="-1.772"/> + <PolyStepSegment x="6.693" y="-1.770"/> + <PolyStepSegment x="6.697" y="-1.768"/> + <PolyStepSegment x="6.700" y="-1.765"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.778" y="-1.755"/> + <PolyStepSegment x="6.794" y="-1.755"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.876" y="-1.772"/> + <PolyStepSegment x="6.876" y="-1.722"/> + <PolyStepSegment x="6.900" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.891" y="-1.746"/> + <PolyStepSegment x="6.876" y="-1.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-1.772"/> + <PolyStepSegment x="6.926" y="-1.722"/> + <PolyStepSegment x="6.942" y="-1.722"/> + <PolyStepSegment x="6.947" y="-1.725"/> + <PolyStepSegment x="6.950" y="-1.728"/> + <PolyStepSegment x="6.952" y="-1.735"/> + <PolyStepSegment x="6.950" y="-1.741"/> + <PolyStepSegment x="6.947" y="-1.745"/> + <PolyStepSegment x="6.942" y="-1.748"/> + <PolyStepSegment x="6.926" y="-1.748"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-1.748"/> + <PolyStepSegment x="6.952" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.982" y="-1.755"/> + <PolyStepSegment x="6.998" y="-1.755"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.049" y="-1.772"/> + <PolyStepSegment x="7.049" y="-1.722"/> + <PolyStepSegment x="7.025" y="-1.758"/> + <PolyStepSegment x="7.057" y="-1.758"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-1.772"/> + <PolyStepSegment x="7.147" y="-1.771"/> + <PolyStepSegment x="7.152" y="-1.769"/> + <PolyStepSegment x="7.156" y="-1.765"/> + <PolyStepSegment x="7.157" y="-1.759"/> + <PolyStepSegment x="7.156" y="-1.753"/> + <PolyStepSegment x="7.152" y="-1.748"/> + <PolyStepSegment x="7.146" y="-1.745"/> + <PolyStepSegment x="7.140" y="-1.745"/> + <PolyStepSegment x="7.136" y="-1.744"/> + <PolyStepSegment x="7.133" y="-1.740"/> + <PolyStepSegment x="7.132" y="-1.734"/> + <PolyStepSegment x="7.134" y="-1.728"/> + <PolyStepSegment x="7.138" y="-1.724"/> + <PolyStepSegment x="7.143" y="-1.722"/> + <PolyStepSegment x="7.148" y="-1.724"/> + <PolyStepSegment x="7.152" y="-1.728"/> + <PolyStepSegment x="7.154" y="-1.734"/> + <PolyStepSegment x="7.153" y="-1.740"/> + <PolyStepSegment x="7.150" y="-1.744"/> + <PolyStepSegment x="7.146" y="-1.745"/> + <PolyStepSegment x="7.140" y="-1.745"/> + <PolyStepSegment x="7.134" y="-1.748"/> + <PolyStepSegment x="7.130" y="-1.753"/> + <PolyStepSegment x="7.129" y="-1.759"/> + <PolyStepSegment x="7.130" y="-1.765"/> + <PolyStepSegment x="7.134" y="-1.769"/> + <PolyStepSegment x="7.139" y="-1.771"/> + <PolyStepSegment x="7.143" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-1.772"/> + <PolyStepSegment x="7.229" y="-1.722"/> + <PolyStepSegment x="7.245" y="-1.764"/> + <PolyStepSegment x="7.261" y="-1.722"/> + <PolyStepSegment x="7.261" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.722"/> + <PolyStepSegment x="7.304" y="-1.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-1.722"/> + <PolyStepSegment x="7.296" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.772"/> + <PolyStepSegment x="7.304" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-1.722"/> + <PolyStepSegment x="7.334" y="-1.772"/> + <PolyStepSegment x="7.360" y="-1.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L2: GND PLANE - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-1.527"/> + <PolyStepSegment x="5.957" y="-1.577"/> + <PolyStepSegment x="5.983" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.009" y="-1.535"/> + <PolyStepSegment x="6.013" y="-1.530"/> + <PolyStepSegment x="6.017" y="-1.528"/> + <PolyStepSegment x="6.022" y="-1.527"/> + <PolyStepSegment x="6.029" y="-1.529"/> + <PolyStepSegment x="6.033" y="-1.533"/> + <PolyStepSegment x="6.034" y="-1.538"/> + <PolyStepSegment x="6.034" y="-1.543"/> + <PolyStepSegment x="6.031" y="-1.547"/> + <PolyStepSegment x="6.018" y="-1.555"/> + <PolyStepSegment x="6.013" y="-1.561"/> + <PolyStepSegment x="6.009" y="-1.570"/> + <PolyStepSegment x="6.008" y="-1.577"/> + <PolyStepSegment x="6.034" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.579"/> + <PolyStepSegment x="6.071" y="-1.578"/> + <PolyStepSegment x="6.071" y="-1.576"/> + <PolyStepSegment x="6.072" y="-1.575"/> + <PolyStepSegment x="6.073" y="-1.576"/> + <PolyStepSegment x="6.073" y="-1.578"/> + <PolyStepSegment x="6.072" y="-1.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.556"/> + <PolyStepSegment x="6.071" y="-1.555"/> + <PolyStepSegment x="6.071" y="-1.554"/> + <PolyStepSegment x="6.072" y="-1.553"/> + <PolyStepSegment x="6.073" y="-1.554"/> + <PolyStepSegment x="6.073" y="-1.555"/> + <PolyStepSegment x="6.072" y="-1.556"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.178" y="-1.552"/> + <PolyStepSegment x="6.190" y="-1.552"/> + <PolyStepSegment x="6.190" y="-1.567"/> + <PolyStepSegment x="6.187" y="-1.572"/> + <PolyStepSegment x="6.182" y="-1.575"/> + <PolyStepSegment x="6.176" y="-1.577"/> + <PolyStepSegment x="6.170" y="-1.575"/> + <PolyStepSegment x="6.165" y="-1.572"/> + <PolyStepSegment x="6.161" y="-1.567"/> + <PolyStepSegment x="6.159" y="-1.561"/> + <PolyStepSegment x="6.158" y="-1.555"/> + <PolyStepSegment x="6.158" y="-1.549"/> + <PolyStepSegment x="6.159" y="-1.544"/> + <PolyStepSegment x="6.161" y="-1.538"/> + <PolyStepSegment x="6.165" y="-1.533"/> + <PolyStepSegment x="6.169" y="-1.530"/> + <PolyStepSegment x="6.174" y="-1.527"/> + <PolyStepSegment x="6.178" y="-1.527"/> + <PolyStepSegment x="6.183" y="-1.529"/> + <PolyStepSegment x="6.187" y="-1.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.210" y="-1.577"/> + <PolyStepSegment x="6.210" y="-1.527"/> + <PolyStepSegment x="6.240" y="-1.577"/> + <PolyStepSegment x="6.240" y="-1.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.262" y="-1.577"/> + <PolyStepSegment x="6.262" y="-1.527"/> + <PolyStepSegment x="6.275" y="-1.527"/> + <PolyStepSegment x="6.280" y="-1.530"/> + <PolyStepSegment x="6.284" y="-1.533"/> + <PolyStepSegment x="6.287" y="-1.538"/> + <PolyStepSegment x="6.289" y="-1.544"/> + <PolyStepSegment x="6.290" y="-1.552"/> + <PolyStepSegment x="6.289" y="-1.560"/> + <PolyStepSegment x="6.287" y="-1.566"/> + <PolyStepSegment x="6.284" y="-1.571"/> + <PolyStepSegment x="6.280" y="-1.575"/> + <PolyStepSegment x="6.275" y="-1.577"/> + <PolyStepSegment x="6.262" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-1.577"/> + <PolyStepSegment x="6.365" y="-1.527"/> + <PolyStepSegment x="6.381" y="-1.527"/> + <PolyStepSegment x="6.386" y="-1.530"/> + <PolyStepSegment x="6.389" y="-1.535"/> + <PolyStepSegment x="6.391" y="-1.542"/> + <PolyStepSegment x="6.389" y="-1.549"/> + <PolyStepSegment x="6.386" y="-1.554"/> + <PolyStepSegment x="6.381" y="-1.556"/> + <PolyStepSegment x="6.365" y="-1.556"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.416" y="-1.527"/> + <PolyStepSegment x="6.416" y="-1.577"/> + <PolyStepSegment x="6.442" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.464" y="-1.577"/> + <PolyStepSegment x="6.480" y="-1.527"/> + <PolyStepSegment x="6.496" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.490" y="-1.560"/> + <PolyStepSegment x="6.470" y="-1.560"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-1.577"/> + <PolyStepSegment x="6.516" y="-1.527"/> + <PolyStepSegment x="6.546" y="-1.577"/> + <PolyStepSegment x="6.546" y="-1.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.595" y="-1.577"/> + <PolyStepSegment x="6.569" y="-1.577"/> + <PolyStepSegment x="6.569" y="-1.527"/> + <PolyStepSegment x="6.595" y="-1.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-1.551"/> + <PolyStepSegment x="6.569" y="-1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.676" y="-1.560"/> + <PolyStepSegment x="6.692" y="-1.560"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.800" y="-1.531"/> + <PolyStepSegment x="6.796" y="-1.529"/> + <PolyStepSegment x="6.792" y="-1.527"/> + <PolyStepSegment x="6.787" y="-1.527"/> + <PolyStepSegment x="6.781" y="-1.530"/> + <PolyStepSegment x="6.777" y="-1.534"/> + <PolyStepSegment x="6.773" y="-1.539"/> + <PolyStepSegment x="6.771" y="-1.547"/> + <PolyStepSegment x="6.770" y="-1.555"/> + <PolyStepSegment x="6.771" y="-1.562"/> + <PolyStepSegment x="6.773" y="-1.567"/> + <PolyStepSegment x="6.777" y="-1.572"/> + <PolyStepSegment x="6.782" y="-1.575"/> + <PolyStepSegment x="6.786" y="-1.577"/> + <PolyStepSegment x="6.790" y="-1.577"/> + <PolyStepSegment x="6.795" y="-1.575"/> + <PolyStepSegment x="6.799" y="-1.573"/> + <PolyStepSegment x="6.802" y="-1.570"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.837" y="-1.577"/> + <PolyStepSegment x="6.832" y="-1.576"/> + <PolyStepSegment x="6.828" y="-1.573"/> + <PolyStepSegment x="6.824" y="-1.568"/> + <PolyStepSegment x="6.821" y="-1.562"/> + <PolyStepSegment x="6.820" y="-1.555"/> + <PolyStepSegment x="6.820" y="-1.549"/> + <PolyStepSegment x="6.821" y="-1.542"/> + <PolyStepSegment x="6.824" y="-1.536"/> + <PolyStepSegment x="6.828" y="-1.531"/> + <PolyStepSegment x="6.832" y="-1.528"/> + <PolyStepSegment x="6.837" y="-1.527"/> + <PolyStepSegment x="6.842" y="-1.528"/> + <PolyStepSegment x="6.846" y="-1.531"/> + <PolyStepSegment x="6.850" y="-1.536"/> + <PolyStepSegment x="6.853" y="-1.542"/> + <PolyStepSegment x="6.854" y="-1.549"/> + <PolyStepSegment x="6.854" y="-1.555"/> + <PolyStepSegment x="6.853" y="-1.562"/> + <PolyStepSegment x="6.850" y="-1.568"/> + <PolyStepSegment x="6.846" y="-1.573"/> + <PolyStepSegment x="6.842" y="-1.576"/> + <PolyStepSegment x="6.837" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.875" y="-1.577"/> + <PolyStepSegment x="6.875" y="-1.527"/> + <PolyStepSegment x="6.891" y="-1.527"/> + <PolyStepSegment x="6.896" y="-1.530"/> + <PolyStepSegment x="6.899" y="-1.535"/> + <PolyStepSegment x="6.901" y="-1.542"/> + <PolyStepSegment x="6.899" y="-1.549"/> + <PolyStepSegment x="6.896" y="-1.554"/> + <PolyStepSegment x="6.891" y="-1.556"/> + <PolyStepSegment x="6.875" y="-1.556"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-1.577"/> + <PolyStepSegment x="6.926" y="-1.527"/> + <PolyStepSegment x="6.942" y="-1.527"/> + <PolyStepSegment x="6.947" y="-1.530"/> + <PolyStepSegment x="6.950" y="-1.535"/> + <PolyStepSegment x="6.952" y="-1.542"/> + <PolyStepSegment x="6.950" y="-1.549"/> + <PolyStepSegment x="6.947" y="-1.554"/> + <PolyStepSegment x="6.942" y="-1.556"/> + <PolyStepSegment x="6.926" y="-1.556"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.003" y="-1.577"/> + <PolyStepSegment x="6.977" y="-1.577"/> + <PolyStepSegment x="6.977" y="-1.527"/> + <PolyStepSegment x="7.003" y="-1.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.993" y="-1.551"/> + <PolyStepSegment x="6.977" y="-1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.028" y="-1.577"/> + <PolyStepSegment x="7.028" y="-1.527"/> + <PolyStepSegment x="7.044" y="-1.527"/> + <PolyStepSegment x="7.049" y="-1.530"/> + <PolyStepSegment x="7.052" y="-1.533"/> + <PolyStepSegment x="7.054" y="-1.540"/> + <PolyStepSegment x="7.052" y="-1.546"/> + <PolyStepSegment x="7.049" y="-1.550"/> + <PolyStepSegment x="7.044" y="-1.553"/> + <PolyStepSegment x="7.028" y="-1.553"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.044" y="-1.553"/> + <PolyStepSegment x="7.054" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-1.577"/> + <PolyStepSegment x="7.143" y="-1.527"/> + <PolyStepSegment x="7.135" y="-1.537"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.135" y="-1.577"/> + <PolyStepSegment x="7.151" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-1.577"/> + <PolyStepSegment x="7.229" y="-1.527"/> + <PolyStepSegment x="7.245" y="-1.569"/> + <PolyStepSegment x="7.261" y="-1.527"/> + <PolyStepSegment x="7.261" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.527"/> + <PolyStepSegment x="7.304" y="-1.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-1.527"/> + <PolyStepSegment x="7.296" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.577"/> + <PolyStepSegment x="7.304" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-1.527"/> + <PolyStepSegment x="7.334" y="-1.577"/> + <PolyStepSegment x="7.360" y="-1.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* DIELECTRIC - FR-4 8 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.058" y="-1.384"/> + <PolyStepSegment x="6.086" y="-1.347"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.340"/> + <PolyStepSegment x="6.072" y="-1.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.086" y="-1.384"/> + <PolyStepSegment x="6.058" y="-1.347"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.053" y="-1.365"/> + <PolyStepSegment x="6.091" y="-1.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.211" y="-1.382"/> + <PolyStepSegment x="6.211" y="-1.332"/> + <PolyStepSegment x="6.224" y="-1.332"/> + <PolyStepSegment x="6.229" y="-1.335"/> + <PolyStepSegment x="6.233" y="-1.338"/> + <PolyStepSegment x="6.236" y="-1.343"/> + <PolyStepSegment x="6.238" y="-1.349"/> + <PolyStepSegment x="6.239" y="-1.357"/> + <PolyStepSegment x="6.238" y="-1.365"/> + <PolyStepSegment x="6.236" y="-1.371"/> + <PolyStepSegment x="6.233" y="-1.376"/> + <PolyStepSegment x="6.229" y="-1.380"/> + <PolyStepSegment x="6.224" y="-1.382"/> + <PolyStepSegment x="6.211" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-1.332"/> + <PolyStepSegment x="6.284" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.276" y="-1.332"/> + <PolyStepSegment x="6.276" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.268" y="-1.382"/> + <PolyStepSegment x="6.284" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.340" y="-1.382"/> + <PolyStepSegment x="6.314" y="-1.382"/> + <PolyStepSegment x="6.314" y="-1.332"/> + <PolyStepSegment x="6.340" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.330" y="-1.356"/> + <PolyStepSegment x="6.314" y="-1.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.365" y="-1.332"/> + <PolyStepSegment x="6.365" y="-1.382"/> + <PolyStepSegment x="6.391" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.442" y="-1.382"/> + <PolyStepSegment x="6.416" y="-1.382"/> + <PolyStepSegment x="6.416" y="-1.332"/> + <PolyStepSegment x="6.442" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.432" y="-1.356"/> + <PolyStepSegment x="6.416" y="-1.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.494" y="-1.336"/> + <PolyStepSegment x="6.490" y="-1.334"/> + <PolyStepSegment x="6.486" y="-1.332"/> + <PolyStepSegment x="6.481" y="-1.332"/> + <PolyStepSegment x="6.475" y="-1.335"/> + <PolyStepSegment x="6.471" y="-1.339"/> + <PolyStepSegment x="6.467" y="-1.344"/> + <PolyStepSegment x="6.465" y="-1.352"/> + <PolyStepSegment x="6.464" y="-1.360"/> + <PolyStepSegment x="6.465" y="-1.367"/> + <PolyStepSegment x="6.467" y="-1.372"/> + <PolyStepSegment x="6.471" y="-1.377"/> + <PolyStepSegment x="6.476" y="-1.380"/> + <PolyStepSegment x="6.480" y="-1.382"/> + <PolyStepSegment x="6.484" y="-1.382"/> + <PolyStepSegment x="6.489" y="-1.380"/> + <PolyStepSegment x="6.493" y="-1.378"/> + <PolyStepSegment x="6.496" y="-1.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.531" y="-1.332"/> + <PolyStepSegment x="6.531" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.516" y="-1.332"/> + <PolyStepSegment x="6.546" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.569" y="-1.382"/> + <PolyStepSegment x="6.569" y="-1.332"/> + <PolyStepSegment x="6.585" y="-1.332"/> + <PolyStepSegment x="6.590" y="-1.335"/> + <PolyStepSegment x="6.593" y="-1.338"/> + <PolyStepSegment x="6.595" y="-1.345"/> + <PolyStepSegment x="6.593" y="-1.351"/> + <PolyStepSegment x="6.590" y="-1.355"/> + <PolyStepSegment x="6.585" y="-1.358"/> + <PolyStepSegment x="6.569" y="-1.358"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.585" y="-1.358"/> + <PolyStepSegment x="6.595" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-1.332"/> + <PolyStepSegment x="6.641" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.633" y="-1.332"/> + <PolyStepSegment x="6.633" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.625" y="-1.382"/> + <PolyStepSegment x="6.641" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.698" y="-1.336"/> + <PolyStepSegment x="6.694" y="-1.334"/> + <PolyStepSegment x="6.690" y="-1.332"/> + <PolyStepSegment x="6.685" y="-1.332"/> + <PolyStepSegment x="6.679" y="-1.335"/> + <PolyStepSegment x="6.675" y="-1.339"/> + <PolyStepSegment x="6.671" y="-1.344"/> + <PolyStepSegment x="6.669" y="-1.352"/> + <PolyStepSegment x="6.668" y="-1.360"/> + <PolyStepSegment x="6.669" y="-1.367"/> + <PolyStepSegment x="6.671" y="-1.372"/> + <PolyStepSegment x="6.675" y="-1.377"/> + <PolyStepSegment x="6.680" y="-1.380"/> + <PolyStepSegment x="6.684" y="-1.382"/> + <PolyStepSegment x="6.688" y="-1.382"/> + <PolyStepSegment x="6.693" y="-1.380"/> + <PolyStepSegment x="6.697" y="-1.378"/> + <PolyStepSegment x="6.700" y="-1.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.778" y="-1.365"/> + <PolyStepSegment x="6.794" y="-1.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.876" y="-1.382"/> + <PolyStepSegment x="6.876" y="-1.332"/> + <PolyStepSegment x="6.900" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.891" y="-1.356"/> + <PolyStepSegment x="6.876" y="-1.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.926" y="-1.382"/> + <PolyStepSegment x="6.926" y="-1.332"/> + <PolyStepSegment x="6.942" y="-1.332"/> + <PolyStepSegment x="6.947" y="-1.335"/> + <PolyStepSegment x="6.950" y="-1.338"/> + <PolyStepSegment x="6.952" y="-1.345"/> + <PolyStepSegment x="6.950" y="-1.351"/> + <PolyStepSegment x="6.947" y="-1.355"/> + <PolyStepSegment x="6.942" y="-1.358"/> + <PolyStepSegment x="6.926" y="-1.358"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.942" y="-1.358"/> + <PolyStepSegment x="6.952" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.982" y="-1.365"/> + <PolyStepSegment x="6.998" y="-1.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.049" y="-1.382"/> + <PolyStepSegment x="7.049" y="-1.332"/> + <PolyStepSegment x="7.025" y="-1.368"/> + <PolyStepSegment x="7.057" y="-1.368"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.143" y="-1.382"/> + <PolyStepSegment x="7.147" y="-1.381"/> + <PolyStepSegment x="7.152" y="-1.379"/> + <PolyStepSegment x="7.156" y="-1.375"/> + <PolyStepSegment x="7.157" y="-1.369"/> + <PolyStepSegment x="7.156" y="-1.363"/> + <PolyStepSegment x="7.152" y="-1.358"/> + <PolyStepSegment x="7.146" y="-1.355"/> + <PolyStepSegment x="7.140" y="-1.355"/> + <PolyStepSegment x="7.136" y="-1.354"/> + <PolyStepSegment x="7.133" y="-1.350"/> + <PolyStepSegment x="7.132" y="-1.344"/> + <PolyStepSegment x="7.134" y="-1.338"/> + <PolyStepSegment x="7.138" y="-1.334"/> + <PolyStepSegment x="7.143" y="-1.332"/> + <PolyStepSegment x="7.148" y="-1.334"/> + <PolyStepSegment x="7.152" y="-1.338"/> + <PolyStepSegment x="7.154" y="-1.344"/> + <PolyStepSegment x="7.153" y="-1.350"/> + <PolyStepSegment x="7.150" y="-1.354"/> + <PolyStepSegment x="7.146" y="-1.355"/> + <PolyStepSegment x="7.140" y="-1.355"/> + <PolyStepSegment x="7.134" y="-1.358"/> + <PolyStepSegment x="7.130" y="-1.363"/> + <PolyStepSegment x="7.129" y="-1.369"/> + <PolyStepSegment x="7.130" y="-1.375"/> + <PolyStepSegment x="7.134" y="-1.379"/> + <PolyStepSegment x="7.139" y="-1.381"/> + <PolyStepSegment x="7.143" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.229" y="-1.382"/> + <PolyStepSegment x="7.229" y="-1.332"/> + <PolyStepSegment x="7.245" y="-1.374"/> + <PolyStepSegment x="7.261" y="-1.332"/> + <PolyStepSegment x="7.261" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.332"/> + <PolyStepSegment x="7.304" y="-1.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.296" y="-1.332"/> + <PolyStepSegment x="7.296" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.288" y="-1.382"/> + <PolyStepSegment x="7.304" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.334" y="-1.332"/> + <PolyStepSegment x="7.334" y="-1.382"/> + <PolyStepSegment x="7.360" y="-1.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="L1: TOP CONDUCTOR - COPPER 1 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.957" y="-1.137"/> + <PolyStepSegment x="5.957" y="-1.187"/> + <PolyStepSegment x="5.983" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.021" y="-1.187"/> + <PolyStepSegment x="6.021" y="-1.137"/> + <PolyStepSegment x="6.013" y="-1.147"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.013" y="-1.187"/> + <PolyStepSegment x="6.029" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.189"/> + <PolyStepSegment x="6.071" y="-1.188"/> + <PolyStepSegment x="6.071" y="-1.186"/> + <PolyStepSegment x="6.072" y="-1.185"/> + <PolyStepSegment x="6.073" y="-1.186"/> + <PolyStepSegment x="6.073" y="-1.188"/> + <PolyStepSegment x="6.072" y="-1.189"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.072" y="-1.166"/> + <PolyStepSegment x="6.071" y="-1.165"/> + <PolyStepSegment x="6.071" y="-1.164"/> + <PolyStepSegment x="6.072" y="-1.163"/> + <PolyStepSegment x="6.073" y="-1.164"/> + <PolyStepSegment x="6.073" y="-1.165"/> + <PolyStepSegment x="6.072" y="-1.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.174" y="-1.137"/> + <PolyStepSegment x="6.174" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.159" y="-1.137"/> + <PolyStepSegment x="6.189" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.225" y="-1.187"/> + <PolyStepSegment x="6.220" y="-1.186"/> + <PolyStepSegment x="6.216" y="-1.183"/> + <PolyStepSegment x="6.212" y="-1.178"/> + <PolyStepSegment x="6.209" y="-1.172"/> + <PolyStepSegment x="6.208" y="-1.165"/> + <PolyStepSegment x="6.208" y="-1.159"/> + <PolyStepSegment x="6.209" y="-1.152"/> + <PolyStepSegment x="6.212" y="-1.146"/> + <PolyStepSegment x="6.216" y="-1.141"/> + <PolyStepSegment x="6.220" y="-1.138"/> + <PolyStepSegment x="6.225" y="-1.137"/> + <PolyStepSegment x="6.230" y="-1.138"/> + <PolyStepSegment x="6.234" y="-1.141"/> + <PolyStepSegment x="6.238" y="-1.146"/> + <PolyStepSegment x="6.241" y="-1.152"/> + <PolyStepSegment x="6.242" y="-1.159"/> + <PolyStepSegment x="6.242" y="-1.165"/> + <PolyStepSegment x="6.241" y="-1.172"/> + <PolyStepSegment x="6.238" y="-1.178"/> + <PolyStepSegment x="6.234" y="-1.183"/> + <PolyStepSegment x="6.230" y="-1.186"/> + <PolyStepSegment x="6.225" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.263" y="-1.187"/> + <PolyStepSegment x="6.263" y="-1.137"/> + <PolyStepSegment x="6.279" y="-1.137"/> + <PolyStepSegment x="6.284" y="-1.140"/> + <PolyStepSegment x="6.287" y="-1.145"/> + <PolyStepSegment x="6.289" y="-1.152"/> + <PolyStepSegment x="6.287" y="-1.159"/> + <PolyStepSegment x="6.284" y="-1.164"/> + <PolyStepSegment x="6.279" y="-1.166"/> + <PolyStepSegment x="6.263" y="-1.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.392" y="-1.141"/> + <PolyStepSegment x="6.388" y="-1.139"/> + <PolyStepSegment x="6.384" y="-1.137"/> + <PolyStepSegment x="6.379" y="-1.137"/> + <PolyStepSegment x="6.373" y="-1.140"/> + <PolyStepSegment x="6.369" y="-1.144"/> + <PolyStepSegment x="6.365" y="-1.149"/> + <PolyStepSegment x="6.363" y="-1.157"/> + <PolyStepSegment x="6.362" y="-1.165"/> + <PolyStepSegment x="6.363" y="-1.172"/> + <PolyStepSegment x="6.365" y="-1.177"/> + <PolyStepSegment x="6.369" y="-1.182"/> + <PolyStepSegment x="6.374" y="-1.185"/> + <PolyStepSegment x="6.378" y="-1.187"/> + <PolyStepSegment x="6.382" y="-1.187"/> + <PolyStepSegment x="6.387" y="-1.185"/> + <PolyStepSegment x="6.391" y="-1.183"/> + <PolyStepSegment x="6.394" y="-1.180"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.429" y="-1.187"/> + <PolyStepSegment x="6.424" y="-1.186"/> + <PolyStepSegment x="6.420" y="-1.183"/> + <PolyStepSegment x="6.416" y="-1.178"/> + <PolyStepSegment x="6.413" y="-1.172"/> + <PolyStepSegment x="6.412" y="-1.165"/> + <PolyStepSegment x="6.412" y="-1.159"/> + <PolyStepSegment x="6.413" y="-1.152"/> + <PolyStepSegment x="6.416" y="-1.146"/> + <PolyStepSegment x="6.420" y="-1.141"/> + <PolyStepSegment x="6.424" y="-1.138"/> + <PolyStepSegment x="6.429" y="-1.137"/> + <PolyStepSegment x="6.434" y="-1.138"/> + <PolyStepSegment x="6.438" y="-1.141"/> + <PolyStepSegment x="6.442" y="-1.146"/> + <PolyStepSegment x="6.445" y="-1.152"/> + <PolyStepSegment x="6.446" y="-1.159"/> + <PolyStepSegment x="6.446" y="-1.165"/> + <PolyStepSegment x="6.445" y="-1.172"/> + <PolyStepSegment x="6.442" y="-1.178"/> + <PolyStepSegment x="6.438" y="-1.183"/> + <PolyStepSegment x="6.434" y="-1.186"/> + <PolyStepSegment x="6.429" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.465" y="-1.187"/> + <PolyStepSegment x="6.465" y="-1.137"/> + <PolyStepSegment x="6.495" y="-1.187"/> + <PolyStepSegment x="6.495" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.517" y="-1.187"/> + <PolyStepSegment x="6.517" y="-1.137"/> + <PolyStepSegment x="6.530" y="-1.137"/> + <PolyStepSegment x="6.535" y="-1.140"/> + <PolyStepSegment x="6.539" y="-1.143"/> + <PolyStepSegment x="6.542" y="-1.148"/> + <PolyStepSegment x="6.544" y="-1.154"/> + <PolyStepSegment x="6.545" y="-1.162"/> + <PolyStepSegment x="6.544" y="-1.170"/> + <PolyStepSegment x="6.542" y="-1.176"/> + <PolyStepSegment x="6.539" y="-1.181"/> + <PolyStepSegment x="6.535" y="-1.185"/> + <PolyStepSegment x="6.530" y="-1.187"/> + <PolyStepSegment x="6.517" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.568" y="-1.137"/> + <PolyStepSegment x="6.568" y="-1.173"/> + <PolyStepSegment x="6.571" y="-1.180"/> + <PolyStepSegment x="6.576" y="-1.185"/> + <PolyStepSegment x="6.582" y="-1.187"/> + <PolyStepSegment x="6.588" y="-1.185"/> + <PolyStepSegment x="6.593" y="-1.180"/> + <PolyStepSegment x="6.596" y="-1.173"/> + <PolyStepSegment x="6.596" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.647" y="-1.141"/> + <PolyStepSegment x="6.643" y="-1.139"/> + <PolyStepSegment x="6.639" y="-1.137"/> + <PolyStepSegment x="6.634" y="-1.137"/> + <PolyStepSegment x="6.628" y="-1.140"/> + <PolyStepSegment x="6.624" y="-1.144"/> + <PolyStepSegment x="6.620" y="-1.149"/> + <PolyStepSegment x="6.618" y="-1.157"/> + <PolyStepSegment x="6.617" y="-1.165"/> + <PolyStepSegment x="6.618" y="-1.172"/> + <PolyStepSegment x="6.620" y="-1.177"/> + <PolyStepSegment x="6.624" y="-1.182"/> + <PolyStepSegment x="6.629" y="-1.185"/> + <PolyStepSegment x="6.633" y="-1.187"/> + <PolyStepSegment x="6.637" y="-1.187"/> + <PolyStepSegment x="6.642" y="-1.185"/> + <PolyStepSegment x="6.646" y="-1.183"/> + <PolyStepSegment x="6.649" y="-1.180"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.684" y="-1.137"/> + <PolyStepSegment x="6.684" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.669" y="-1.137"/> + <PolyStepSegment x="6.699" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.735" y="-1.187"/> + <PolyStepSegment x="6.730" y="-1.186"/> + <PolyStepSegment x="6.726" y="-1.183"/> + <PolyStepSegment x="6.722" y="-1.178"/> + <PolyStepSegment x="6.719" y="-1.172"/> + <PolyStepSegment x="6.718" y="-1.165"/> + <PolyStepSegment x="6.718" y="-1.159"/> + <PolyStepSegment x="6.719" y="-1.152"/> + <PolyStepSegment x="6.722" y="-1.146"/> + <PolyStepSegment x="6.726" y="-1.141"/> + <PolyStepSegment x="6.730" y="-1.138"/> + <PolyStepSegment x="6.735" y="-1.137"/> + <PolyStepSegment x="6.740" y="-1.138"/> + <PolyStepSegment x="6.744" y="-1.141"/> + <PolyStepSegment x="6.748" y="-1.146"/> + <PolyStepSegment x="6.751" y="-1.152"/> + <PolyStepSegment x="6.752" y="-1.159"/> + <PolyStepSegment x="6.752" y="-1.165"/> + <PolyStepSegment x="6.751" y="-1.172"/> + <PolyStepSegment x="6.748" y="-1.178"/> + <PolyStepSegment x="6.744" y="-1.183"/> + <PolyStepSegment x="6.740" y="-1.186"/> + <PolyStepSegment x="6.735" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.773" y="-1.187"/> + <PolyStepSegment x="6.773" y="-1.137"/> + <PolyStepSegment x="6.789" y="-1.137"/> + <PolyStepSegment x="6.794" y="-1.140"/> + <PolyStepSegment x="6.797" y="-1.143"/> + <PolyStepSegment x="6.799" y="-1.150"/> + <PolyStepSegment x="6.797" y="-1.156"/> + <PolyStepSegment x="6.794" y="-1.160"/> + <PolyStepSegment x="6.789" y="-1.163"/> + <PolyStepSegment x="6.773" y="-1.163"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.789" y="-1.163"/> + <PolyStepSegment x="6.799" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.880" y="-1.170"/> + <PolyStepSegment x="6.896" y="-1.170"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.004" y="-1.141"/> + <PolyStepSegment x="7.000" y="-1.139"/> + <PolyStepSegment x="6.996" y="-1.137"/> + <PolyStepSegment x="6.991" y="-1.137"/> + <PolyStepSegment x="6.985" y="-1.140"/> + <PolyStepSegment x="6.981" y="-1.144"/> + <PolyStepSegment x="6.977" y="-1.149"/> + <PolyStepSegment x="6.975" y="-1.157"/> + <PolyStepSegment x="6.974" y="-1.165"/> + <PolyStepSegment x="6.975" y="-1.172"/> + <PolyStepSegment x="6.977" y="-1.177"/> + <PolyStepSegment x="6.981" y="-1.182"/> + <PolyStepSegment x="6.986" y="-1.185"/> + <PolyStepSegment x="6.990" y="-1.187"/> + <PolyStepSegment x="6.994" y="-1.187"/> + <PolyStepSegment x="6.999" y="-1.185"/> + <PolyStepSegment x="7.003" y="-1.183"/> + <PolyStepSegment x="7.006" y="-1.180"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.041" y="-1.187"/> + <PolyStepSegment x="7.036" y="-1.186"/> + <PolyStepSegment x="7.032" y="-1.183"/> + <PolyStepSegment x="7.028" y="-1.178"/> + <PolyStepSegment x="7.025" y="-1.172"/> + <PolyStepSegment x="7.024" y="-1.165"/> + <PolyStepSegment x="7.024" y="-1.159"/> + <PolyStepSegment x="7.025" y="-1.152"/> + <PolyStepSegment x="7.028" y="-1.146"/> + <PolyStepSegment x="7.032" y="-1.141"/> + <PolyStepSegment x="7.036" y="-1.138"/> + <PolyStepSegment x="7.041" y="-1.137"/> + <PolyStepSegment x="7.046" y="-1.138"/> + <PolyStepSegment x="7.050" y="-1.141"/> + <PolyStepSegment x="7.054" y="-1.146"/> + <PolyStepSegment x="7.057" y="-1.152"/> + <PolyStepSegment x="7.058" y="-1.159"/> + <PolyStepSegment x="7.058" y="-1.165"/> + <PolyStepSegment x="7.057" y="-1.172"/> + <PolyStepSegment x="7.054" y="-1.178"/> + <PolyStepSegment x="7.050" y="-1.183"/> + <PolyStepSegment x="7.046" y="-1.186"/> + <PolyStepSegment x="7.041" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.079" y="-1.187"/> + <PolyStepSegment x="7.079" y="-1.137"/> + <PolyStepSegment x="7.095" y="-1.137"/> + <PolyStepSegment x="7.100" y="-1.140"/> + <PolyStepSegment x="7.103" y="-1.145"/> + <PolyStepSegment x="7.105" y="-1.152"/> + <PolyStepSegment x="7.103" y="-1.159"/> + <PolyStepSegment x="7.100" y="-1.164"/> + <PolyStepSegment x="7.095" y="-1.166"/> + <PolyStepSegment x="7.079" y="-1.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.130" y="-1.187"/> + <PolyStepSegment x="7.130" y="-1.137"/> + <PolyStepSegment x="7.146" y="-1.137"/> + <PolyStepSegment x="7.151" y="-1.140"/> + <PolyStepSegment x="7.154" y="-1.145"/> + <PolyStepSegment x="7.156" y="-1.152"/> + <PolyStepSegment x="7.154" y="-1.159"/> + <PolyStepSegment x="7.151" y="-1.164"/> + <PolyStepSegment x="7.146" y="-1.166"/> + <PolyStepSegment x="7.130" y="-1.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.207" y="-1.187"/> + <PolyStepSegment x="7.181" y="-1.187"/> + <PolyStepSegment x="7.181" y="-1.137"/> + <PolyStepSegment x="7.207" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.197" y="-1.161"/> + <PolyStepSegment x="7.181" y="-1.161"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.232" y="-1.187"/> + <PolyStepSegment x="7.232" y="-1.137"/> + <PolyStepSegment x="7.248" y="-1.137"/> + <PolyStepSegment x="7.253" y="-1.140"/> + <PolyStepSegment x="7.256" y="-1.143"/> + <PolyStepSegment x="7.258" y="-1.150"/> + <PolyStepSegment x="7.256" y="-1.156"/> + <PolyStepSegment x="7.253" y="-1.160"/> + <PolyStepSegment x="7.248" y="-1.163"/> + <PolyStepSegment x="7.232" y="-1.163"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.248" y="-1.163"/> + <PolyStepSegment x="7.258" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.347" y="-1.187"/> + <PolyStepSegment x="7.347" y="-1.137"/> + <PolyStepSegment x="7.339" y="-1.147"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.339" y="-1.187"/> + <PolyStepSegment x="7.355" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.433" y="-1.187"/> + <PolyStepSegment x="7.433" y="-1.137"/> + <PolyStepSegment x="7.449" y="-1.179"/> + <PolyStepSegment x="7.465" y="-1.137"/> + <PolyStepSegment x="7.465" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-1.137"/> + <PolyStepSegment x="7.508" y="-1.137"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.500" y="-1.137"/> + <PolyStepSegment x="7.500" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.492" y="-1.187"/> + <PolyStepSegment x="7.508" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.538" y="-1.137"/> + <PolyStepSegment x="7.538" y="-1.187"/> + <PolyStepSegment x="7.564" y="-1.187"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="* SURFACE - AIR 0 MIL" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.038" y="-1.047"/> + <PolyStepSegment x="6.066" y="-1.010"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.052" y="-1.003"/> + <PolyStepSegment x="6.052" y="-1.053"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.066" y="-1.047"/> + <PolyStepSegment x="6.038" y="-1.010"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.033" y="-1.028"/> + <PolyStepSegment x="6.071" y="-1.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.192" y="-1.038"/> + <PolyStepSegment x="6.197" y="-1.043"/> + <PolyStepSegment x="6.202" y="-1.045"/> + <PolyStepSegment x="6.208" y="-1.045"/> + <PolyStepSegment x="6.213" y="-1.043"/> + <PolyStepSegment x="6.216" y="-1.038"/> + <PolyStepSegment x="6.218" y="-1.032"/> + <PolyStepSegment x="6.217" y="-1.027"/> + <PolyStepSegment x="6.214" y="-1.022"/> + <PolyStepSegment x="6.208" y="-1.018"/> + <PolyStepSegment x="6.201" y="-1.017"/> + <PolyStepSegment x="6.196" y="-1.013"/> + <PolyStepSegment x="6.194" y="-1.008"/> + <PolyStepSegment x="6.196" y="-1.002"/> + <PolyStepSegment x="6.199" y="-0.998"/> + <PolyStepSegment x="6.203" y="-0.995"/> + <PolyStepSegment x="6.208" y="-0.995"/> + <PolyStepSegment x="6.212" y="-0.997"/> + <PolyStepSegment x="6.216" y="-1.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.242" y="-0.995"/> + <PolyStepSegment x="6.242" y="-1.031"/> + <PolyStepSegment x="6.245" y="-1.038"/> + <PolyStepSegment x="6.250" y="-1.043"/> + <PolyStepSegment x="6.256" y="-1.045"/> + <PolyStepSegment x="6.262" y="-1.043"/> + <PolyStepSegment x="6.267" y="-1.038"/> + <PolyStepSegment x="6.270" y="-1.031"/> + <PolyStepSegment x="6.270" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.294" y="-1.045"/> + <PolyStepSegment x="6.294" y="-0.995"/> + <PolyStepSegment x="6.310" y="-0.995"/> + <PolyStepSegment x="6.315" y="-0.998"/> + <PolyStepSegment x="6.318" y="-1.001"/> + <PolyStepSegment x="6.320" y="-1.008"/> + <PolyStepSegment x="6.318" y="-1.014"/> + <PolyStepSegment x="6.315" y="-1.018"/> + <PolyStepSegment x="6.310" y="-1.021"/> + <PolyStepSegment x="6.294" y="-1.021"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.310" y="-1.021"/> + <PolyStepSegment x="6.320" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.346" y="-1.045"/> + <PolyStepSegment x="6.346" y="-0.995"/> + <PolyStepSegment x="6.370" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.361" y="-1.019"/> + <PolyStepSegment x="6.346" y="-1.019"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.393" y="-1.045"/> + <PolyStepSegment x="6.409" y="-0.995"/> + <PolyStepSegment x="6.425" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.419" y="-1.028"/> + <PolyStepSegment x="6.399" y="-1.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.474" y="-0.999"/> + <PolyStepSegment x="6.470" y="-0.997"/> + <PolyStepSegment x="6.466" y="-0.995"/> + <PolyStepSegment x="6.461" y="-0.995"/> + <PolyStepSegment x="6.455" y="-0.998"/> + <PolyStepSegment x="6.451" y="-1.002"/> + <PolyStepSegment x="6.447" y="-1.007"/> + <PolyStepSegment x="6.445" y="-1.015"/> + <PolyStepSegment x="6.444" y="-1.023"/> + <PolyStepSegment x="6.445" y="-1.030"/> + <PolyStepSegment x="6.447" y="-1.035"/> + <PolyStepSegment x="6.451" y="-1.040"/> + <PolyStepSegment x="6.456" y="-1.043"/> + <PolyStepSegment x="6.460" y="-1.045"/> + <PolyStepSegment x="6.464" y="-1.045"/> + <PolyStepSegment x="6.469" y="-1.043"/> + <PolyStepSegment x="6.473" y="-1.041"/> + <PolyStepSegment x="6.476" y="-1.038"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.524" y="-1.045"/> + <PolyStepSegment x="6.498" y="-1.045"/> + <PolyStepSegment x="6.498" y="-0.995"/> + <PolyStepSegment x="6.524" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.514" y="-1.019"/> + <PolyStepSegment x="6.498" y="-1.019"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.605" y="-1.028"/> + <PolyStepSegment x="6.621" y="-1.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.699" y="-1.045"/> + <PolyStepSegment x="6.715" y="-0.995"/> + <PolyStepSegment x="6.731" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.725" y="-1.028"/> + <PolyStepSegment x="6.705" y="-1.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.758" y="-0.995"/> + <PolyStepSegment x="6.774" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.766" y="-0.995"/> + <PolyStepSegment x="6.766" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.758" y="-1.045"/> + <PolyStepSegment x="6.774" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.804" y="-1.045"/> + <PolyStepSegment x="6.804" y="-0.995"/> + <PolyStepSegment x="6.820" y="-0.995"/> + <PolyStepSegment x="6.825" y="-0.998"/> + <PolyStepSegment x="6.828" y="-1.001"/> + <PolyStepSegment x="6.830" y="-1.008"/> + <PolyStepSegment x="6.828" y="-1.014"/> + <PolyStepSegment x="6.825" y="-1.018"/> + <PolyStepSegment x="6.820" y="-1.021"/> + <PolyStepSegment x="6.804" y="-1.021"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.820" y="-1.021"/> + <PolyStepSegment x="6.830" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="6.919" y="-0.995"/> + <PolyStepSegment x="6.914" y="-0.997"/> + <PolyStepSegment x="6.910" y="-1.001"/> + <PolyStepSegment x="6.908" y="-1.006"/> + <PolyStepSegment x="6.906" y="-1.013"/> + <PolyStepSegment x="6.905" y="-1.020"/> + <PolyStepSegment x="6.906" y="-1.028"/> + <PolyStepSegment x="6.908" y="-1.034"/> + <PolyStepSegment x="6.910" y="-1.039"/> + <PolyStepSegment x="6.914" y="-1.043"/> + <PolyStepSegment x="6.919" y="-1.045"/> + <PolyStepSegment x="6.924" y="-1.043"/> + <PolyStepSegment x="6.928" y="-1.039"/> + <PolyStepSegment x="6.930" y="-1.034"/> + <PolyStepSegment x="6.932" y="-1.028"/> + <PolyStepSegment x="6.933" y="-1.020"/> + <PolyStepSegment x="6.932" y="-1.013"/> + <PolyStepSegment x="6.930" y="-1.006"/> + <PolyStepSegment x="6.928" y="-1.001"/> + <PolyStepSegment x="6.924" y="-0.997"/> + <PolyStepSegment x="6.919" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.005" y="-1.045"/> + <PolyStepSegment x="7.005" y="-0.995"/> + <PolyStepSegment x="7.021" y="-1.037"/> + <PolyStepSegment x="7.037" y="-0.995"/> + <PolyStepSegment x="7.037" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.064" y="-0.995"/> + <PolyStepSegment x="7.080" y="-0.995"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.072" y="-0.995"/> + <PolyStepSegment x="7.072" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.064" y="-1.045"/> + <PolyStepSegment x="7.080" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="7.110" y="-0.995"/> + <PolyStepSegment x="7.110" y="-1.045"/> + <PolyStepSegment x="7.136" y="-1.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="1-6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.575" y="-1.122"/> + <PolyStepSegment x="5.525" y="-1.122"/> + <PolyStepSegment x="5.535" y="-1.130"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.575" y="-1.130"/> + <PolyStepSegment x="5.575" y="-1.114"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.558" y="-1.079"/> + <PolyStepSegment x="5.558" y="-1.063"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="5.554" y="-1.032"/> + <PolyStepSegment x="5.548" y="-1.028"/> + <PolyStepSegment x="5.545" y="-1.024"/> + <PolyStepSegment x="5.543" y="-1.019"/> + <PolyStepSegment x="5.545" y="-1.014"/> + <PolyStepSegment x="5.548" y="-1.011"/> + <PolyStepSegment x="5.553" y="-1.009"/> + <PolyStepSegment x="5.559" y="-1.008"/> + <PolyStepSegment x="5.564" y="-1.009"/> + <PolyStepSegment x="5.569" y="-1.011"/> + <PolyStepSegment x="5.573" y="-1.015"/> + <PolyStepSegment x="5.575" y="-1.019"/> + <PolyStepSegment x="5.573" y="-1.024"/> + <PolyStepSegment x="5.568" y="-1.029"/> + <PolyStepSegment x="5.561" y="-1.031"/> + <PolyStepSegment x="5.553" y="-1.032"/> + <PolyStepSegment x="5.542" y="-1.031"/> + <PolyStepSegment x="5.536" y="-1.029"/> + <PolyStepSegment x="5.530" y="-1.026"/> + <PolyStepSegment x="5.526" y="-1.021"/> + <PolyStepSegment x="5.525" y="-1.017"/> + <PolyStepSegment x="5.527" y="-1.012"/> + <PolyStepSegment x="5.531" y="-1.009"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Arc to Circle Test" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.298"/> + <PolyStepSegment x="2.160" y="-0.314"/> + <PolyStepSegment x="2.110" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.127" y="-0.324"/> + <PolyStepSegment x="2.127" y="-0.304"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.356"/> + <PolyStepSegment x="2.143" y="-0.356"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.137" y="-0.356"/> + <PolyStepSegment x="2.140" y="-0.359"/> + <PolyStepSegment x="2.142" y="-0.362"/> + <PolyStepSegment x="2.143" y="-0.367"/> + <PolyStepSegment x="2.142" y="-0.370"/> + <PolyStepSegment x="2.140" y="-0.374"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.139" y="-0.426"/> + <PolyStepSegment x="2.142" y="-0.422"/> + <PolyStepSegment x="2.143" y="-0.418"/> + <PolyStepSegment x="2.142" y="-0.413"/> + <PolyStepSegment x="2.138" y="-0.409"/> + <PolyStepSegment x="2.132" y="-0.407"/> + <PolyStepSegment x="2.127" y="-0.406"/> + <PolyStepSegment x="2.121" y="-0.407"/> + <PolyStepSegment x="2.116" y="-0.409"/> + <PolyStepSegment x="2.112" y="-0.413"/> + <PolyStepSegment x="2.110" y="-0.418"/> + <PolyStepSegment x="2.112" y="-0.422"/> + <PolyStepSegment x="2.115" y="-0.426"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.160" y="-0.518"/> + <PolyStepSegment x="2.110" y="-0.518"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.143" y="-0.509"/> + <PolyStepSegment x="2.143" y="-0.527"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.569"/> + <PolyStepSegment x="2.111" y="-0.565"/> + <PolyStepSegment x="2.114" y="-0.561"/> + <PolyStepSegment x="2.120" y="-0.559"/> + <PolyStepSegment x="2.127" y="-0.558"/> + <PolyStepSegment x="2.133" y="-0.559"/> + <PolyStepSegment x="2.139" y="-0.561"/> + <PolyStepSegment x="2.142" y="-0.565"/> + <PolyStepSegment x="2.143" y="-0.569"/> + <PolyStepSegment x="2.142" y="-0.573"/> + <PolyStepSegment x="2.139" y="-0.577"/> + <PolyStepSegment x="2.133" y="-0.579"/> + <PolyStepSegment x="2.127" y="-0.580"/> + <PolyStepSegment x="2.120" y="-0.579"/> + <PolyStepSegment x="2.114" y="-0.577"/> + <PolyStepSegment x="2.111" y="-0.573"/> + <PolyStepSegment x="2.110" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.156" y="-0.685"/> + <PolyStepSegment x="2.158" y="-0.681"/> + <PolyStepSegment x="2.160" y="-0.677"/> + <PolyStepSegment x="2.160" y="-0.672"/> + <PolyStepSegment x="2.157" y="-0.666"/> + <PolyStepSegment x="2.153" y="-0.662"/> + <PolyStepSegment x="2.148" y="-0.658"/> + <PolyStepSegment x="2.140" y="-0.656"/> + <PolyStepSegment x="2.132" y="-0.655"/> + <PolyStepSegment x="2.125" y="-0.656"/> + <PolyStepSegment x="2.120" y="-0.658"/> + <PolyStepSegment x="2.115" y="-0.662"/> + <PolyStepSegment x="2.112" y="-0.667"/> + <PolyStepSegment x="2.110" y="-0.671"/> + <PolyStepSegment x="2.110" y="-0.675"/> + <PolyStepSegment x="2.112" y="-0.680"/> + <PolyStepSegment x="2.114" y="-0.684"/> + <PolyStepSegment x="2.117" y="-0.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.143" y="-0.722"/> + <PolyStepSegment x="2.110" y="-0.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.157" y="-0.722"/> + <PolyStepSegment x="2.157" y="-0.721"/> + <PolyStepSegment x="2.159" y="-0.721"/> + <PolyStepSegment x="2.160" y="-0.722"/> + <PolyStepSegment x="2.159" y="-0.723"/> + <PolyStepSegment x="2.157" y="-0.723"/> + <PolyStepSegment x="2.157" y="-0.722"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.764"/> + <PolyStepSegment x="2.143" y="-0.764"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.137" y="-0.764"/> + <PolyStepSegment x="2.140" y="-0.767"/> + <PolyStepSegment x="2.142" y="-0.770"/> + <PolyStepSegment x="2.143" y="-0.775"/> + <PolyStepSegment x="2.142" y="-0.778"/> + <PolyStepSegment x="2.140" y="-0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.139" y="-0.834"/> + <PolyStepSegment x="2.142" y="-0.830"/> + <PolyStepSegment x="2.143" y="-0.826"/> + <PolyStepSegment x="2.142" y="-0.821"/> + <PolyStepSegment x="2.138" y="-0.817"/> + <PolyStepSegment x="2.132" y="-0.815"/> + <PolyStepSegment x="2.127" y="-0.814"/> + <PolyStepSegment x="2.121" y="-0.815"/> + <PolyStepSegment x="2.116" y="-0.817"/> + <PolyStepSegment x="2.112" y="-0.821"/> + <PolyStepSegment x="2.110" y="-0.826"/> + <PolyStepSegment x="2.112" y="-0.830"/> + <PolyStepSegment x="2.115" y="-0.834"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.110" y="-0.875"/> + <PolyStepSegment x="2.160" y="-0.875"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.132" y="-0.917"/> + <PolyStepSegment x="2.132" y="-0.937"/> + <PolyStepSegment x="2.138" y="-0.935"/> + <PolyStepSegment x="2.142" y="-0.932"/> + <PolyStepSegment x="2.143" y="-0.927"/> + <PolyStepSegment x="2.142" y="-0.923"/> + <PolyStepSegment x="2.140" y="-0.919"/> + <PolyStepSegment x="2.134" y="-0.917"/> + <PolyStepSegment x="2.129" y="-0.915"/> + <PolyStepSegment x="2.124" y="-0.915"/> + <PolyStepSegment x="2.119" y="-0.917"/> + <PolyStepSegment x="2.114" y="-0.920"/> + <PolyStepSegment x="2.111" y="-0.923"/> + <PolyStepSegment x="2.110" y="-0.928"/> + <PolyStepSegment x="2.112" y="-0.932"/> + <PolyStepSegment x="2.117" y="-0.937"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.160" y="-1.028"/> + <PolyStepSegment x="2.110" y="-1.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.160" y="-1.013"/> + <PolyStepSegment x="2.160" y="-1.043"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.132" y="-1.070"/> + <PolyStepSegment x="2.132" y="-1.090"/> + <PolyStepSegment x="2.138" y="-1.088"/> + <PolyStepSegment x="2.142" y="-1.085"/> + <PolyStepSegment x="2.143" y="-1.080"/> + <PolyStepSegment x="2.142" y="-1.076"/> + <PolyStepSegment x="2.140" y="-1.072"/> + <PolyStepSegment x="2.134" y="-1.070"/> + <PolyStepSegment x="2.129" y="-1.068"/> + <PolyStepSegment x="2.124" y="-1.068"/> + <PolyStepSegment x="2.119" y="-1.070"/> + <PolyStepSegment x="2.114" y="-1.073"/> + <PolyStepSegment x="2.111" y="-1.076"/> + <PolyStepSegment x="2.110" y="-1.081"/> + <PolyStepSegment x="2.112" y="-1.085"/> + <PolyStepSegment x="2.117" y="-1.090"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.116" y="-1.121"/> + <PolyStepSegment x="2.112" y="-1.124"/> + <PolyStepSegment x="2.110" y="-1.128"/> + <PolyStepSegment x="2.110" y="-1.132"/> + <PolyStepSegment x="2.112" y="-1.136"/> + <PolyStepSegment x="2.114" y="-1.138"/> + <PolyStepSegment x="2.117" y="-1.139"/> + <PolyStepSegment x="2.123" y="-1.139"/> + <PolyStepSegment x="2.125" y="-1.136"/> + <PolyStepSegment x="2.130" y="-1.125"/> + <PolyStepSegment x="2.136" y="-1.122"/> + <PolyStepSegment x="2.140" y="-1.124"/> + <PolyStepSegment x="2.142" y="-1.126"/> + <PolyStepSegment x="2.143" y="-1.130"/> + <PolyStepSegment x="2.142" y="-1.134"/> + <PolyStepSegment x="2.140" y="-1.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.160" y="-1.181"/> + <PolyStepSegment x="2.110" y="-1.181"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.143" y="-1.172"/> + <PolyStepSegment x="2.143" y="-1.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Package Keep-in" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.194" y="3.650"/> + <PolyStepSegment x="-1.194" y="3.700"/> + <PolyStepSegment x="-1.178" y="3.700"/> + <PolyStepSegment x="-1.173" y="3.697"/> + <PolyStepSegment x="-1.170" y="3.692"/> + <PolyStepSegment x="-1.168" y="3.685"/> + <PolyStepSegment x="-1.170" y="3.678"/> + <PolyStepSegment x="-1.173" y="3.673"/> + <PolyStepSegment x="-1.178" y="3.671"/> + <PolyStepSegment x="-1.194" y="3.671"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.119" y="3.650"/> + <PolyStepSegment x="-1.119" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.119" y="3.678"/> + <PolyStepSegment x="-1.121" y="3.681"/> + <PolyStepSegment x="-1.125" y="3.682"/> + <PolyStepSegment x="-1.129" y="3.683"/> + <PolyStepSegment x="-1.134" y="3.682"/> + <PolyStepSegment x="-1.138" y="3.678"/> + <PolyStepSegment x="-1.140" y="3.673"/> + <PolyStepSegment x="-1.141" y="3.667"/> + <PolyStepSegment x="-1.140" y="3.660"/> + <PolyStepSegment x="-1.138" y="3.655"/> + <PolyStepSegment x="-1.134" y="3.652"/> + <PolyStepSegment x="-1.129" y="3.650"/> + <PolyStepSegment x="-1.125" y="3.651"/> + <PolyStepSegment x="-1.121" y="3.653"/> + <PolyStepSegment x="-1.119" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.069" y="3.679"/> + <PolyStepSegment x="-1.073" y="3.682"/> + <PolyStepSegment x="-1.077" y="3.683"/> + <PolyStepSegment x="-1.082" y="3.682"/> + <PolyStepSegment x="-1.086" y="3.678"/> + <PolyStepSegment x="-1.088" y="3.672"/> + <PolyStepSegment x="-1.089" y="3.667"/> + <PolyStepSegment x="-1.088" y="3.661"/> + <PolyStepSegment x="-1.086" y="3.656"/> + <PolyStepSegment x="-1.082" y="3.652"/> + <PolyStepSegment x="-1.077" y="3.650"/> + <PolyStepSegment x="-1.073" y="3.652"/> + <PolyStepSegment x="-1.069" y="3.655"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.039" y="3.650"/> + <PolyStepSegment x="-1.039" y="3.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.019" y="3.683"/> + <PolyStepSegment x="-1.039" y="3.664"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.031" y="3.672"/> + <PolyStepSegment x="-1.017" y="3.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.966" y="3.650"/> + <PolyStepSegment x="-0.966" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.966" y="3.678"/> + <PolyStepSegment x="-0.968" y="3.681"/> + <PolyStepSegment x="-0.972" y="3.682"/> + <PolyStepSegment x="-0.976" y="3.683"/> + <PolyStepSegment x="-0.981" y="3.682"/> + <PolyStepSegment x="-0.985" y="3.678"/> + <PolyStepSegment x="-0.987" y="3.673"/> + <PolyStepSegment x="-0.988" y="3.667"/> + <PolyStepSegment x="-0.987" y="3.660"/> + <PolyStepSegment x="-0.985" y="3.655"/> + <PolyStepSegment x="-0.981" y="3.652"/> + <PolyStepSegment x="-0.976" y="3.650"/> + <PolyStepSegment x="-0.972" y="3.651"/> + <PolyStepSegment x="-0.968" y="3.653"/> + <PolyStepSegment x="-0.966" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.935" y="3.637"/> + <PolyStepSegment x="-0.930" y="3.634"/> + <PolyStepSegment x="-0.925" y="3.633"/> + <PolyStepSegment x="-0.921" y="3.634"/> + <PolyStepSegment x="-0.917" y="3.638"/> + <PolyStepSegment x="-0.915" y="3.644"/> + <PolyStepSegment x="-0.915" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.915" y="3.677"/> + <PolyStepSegment x="-0.917" y="3.680"/> + <PolyStepSegment x="-0.921" y="3.682"/> + <PolyStepSegment x="-0.925" y="3.683"/> + <PolyStepSegment x="-0.930" y="3.682"/> + <PolyStepSegment x="-0.934" y="3.678"/> + <PolyStepSegment x="-0.936" y="3.672"/> + <PolyStepSegment x="-0.937" y="3.667"/> + <PolyStepSegment x="-0.937" y="3.662"/> + <PolyStepSegment x="-0.934" y="3.656"/> + <PolyStepSegment x="-0.930" y="3.652"/> + <PolyStepSegment x="-0.925" y="3.650"/> + <PolyStepSegment x="-0.922" y="3.651"/> + <PolyStepSegment x="-0.917" y="3.654"/> + <PolyStepSegment x="-0.915" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.884" y="3.672"/> + <PolyStepSegment x="-0.864" y="3.672"/> + <PolyStepSegment x="-0.866" y="3.678"/> + <PolyStepSegment x="-0.869" y="3.682"/> + <PolyStepSegment x="-0.874" y="3.683"/> + <PolyStepSegment x="-0.878" y="3.682"/> + <PolyStepSegment x="-0.882" y="3.680"/> + <PolyStepSegment x="-0.884" y="3.674"/> + <PolyStepSegment x="-0.886" y="3.669"/> + <PolyStepSegment x="-0.886" y="3.664"/> + <PolyStepSegment x="-0.884" y="3.659"/> + <PolyStepSegment x="-0.881" y="3.654"/> + <PolyStepSegment x="-0.878" y="3.651"/> + <PolyStepSegment x="-0.873" y="3.650"/> + <PolyStepSegment x="-0.869" y="3.652"/> + <PolyStepSegment x="-0.864" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.787" y="3.650"/> + <PolyStepSegment x="-0.787" y="3.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.763" y="3.700"/> + <PolyStepSegment x="-0.787" y="3.669"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.759" y="3.650"/> + <PolyStepSegment x="-0.776" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.731" y="3.672"/> + <PolyStepSegment x="-0.711" y="3.672"/> + <PolyStepSegment x="-0.713" y="3.678"/> + <PolyStepSegment x="-0.716" y="3.682"/> + <PolyStepSegment x="-0.721" y="3.683"/> + <PolyStepSegment x="-0.725" y="3.682"/> + <PolyStepSegment x="-0.729" y="3.680"/> + <PolyStepSegment x="-0.731" y="3.674"/> + <PolyStepSegment x="-0.733" y="3.669"/> + <PolyStepSegment x="-0.733" y="3.664"/> + <PolyStepSegment x="-0.731" y="3.659"/> + <PolyStepSegment x="-0.728" y="3.654"/> + <PolyStepSegment x="-0.725" y="3.651"/> + <PolyStepSegment x="-0.720" y="3.650"/> + <PolyStepSegment x="-0.716" y="3.652"/> + <PolyStepSegment x="-0.711" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.680" y="3.672"/> + <PolyStepSegment x="-0.660" y="3.672"/> + <PolyStepSegment x="-0.662" y="3.678"/> + <PolyStepSegment x="-0.665" y="3.682"/> + <PolyStepSegment x="-0.670" y="3.683"/> + <PolyStepSegment x="-0.674" y="3.682"/> + <PolyStepSegment x="-0.678" y="3.680"/> + <PolyStepSegment x="-0.680" y="3.674"/> + <PolyStepSegment x="-0.682" y="3.669"/> + <PolyStepSegment x="-0.682" y="3.664"/> + <PolyStepSegment x="-0.680" y="3.659"/> + <PolyStepSegment x="-0.677" y="3.654"/> + <PolyStepSegment x="-0.674" y="3.651"/> + <PolyStepSegment x="-0.669" y="3.650"/> + <PolyStepSegment x="-0.665" y="3.652"/> + <PolyStepSegment x="-0.660" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.631" y="3.633"/> + <PolyStepSegment x="-0.631" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.631" y="3.676"/> + <PolyStepSegment x="-0.628" y="3.680"/> + <PolyStepSegment x="-0.625" y="3.682"/> + <PolyStepSegment x="-0.620" y="3.683"/> + <PolyStepSegment x="-0.616" y="3.682"/> + <PolyStepSegment x="-0.611" y="3.678"/> + <PolyStepSegment x="-0.609" y="3.672"/> + <PolyStepSegment x="-0.609" y="3.667"/> + <PolyStepSegment x="-0.609" y="3.661"/> + <PolyStepSegment x="-0.611" y="3.655"/> + <PolyStepSegment x="-0.615" y="3.652"/> + <PolyStepSegment x="-0.620" y="3.650"/> + <PolyStepSegment x="-0.624" y="3.651"/> + <PolyStepSegment x="-0.629" y="3.653"/> + <PolyStepSegment x="-0.631" y="3.657"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.577" y="3.667"/> + <PolyStepSegment x="-0.561" y="3.667"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.518" y="3.683"/> + <PolyStepSegment x="-0.518" y="3.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.518" y="3.697"/> + <PolyStepSegment x="-0.519" y="3.697"/> + <PolyStepSegment x="-0.519" y="3.699"/> + <PolyStepSegment x="-0.518" y="3.700"/> + <PolyStepSegment x="-0.517" y="3.699"/> + <PolyStepSegment x="-0.517" y="3.697"/> + <PolyStepSegment x="-0.518" y="3.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.478" y="3.650"/> + <PolyStepSegment x="-0.478" y="3.683"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.478" y="3.675"/> + <PolyStepSegment x="-0.475" y="3.679"/> + <PolyStepSegment x="-0.471" y="3.682"/> + <PolyStepSegment x="-0.466" y="3.683"/> + <PolyStepSegment x="-0.462" y="3.682"/> + <PolyStepSegment x="-0.458" y="3.679"/> + <PolyStepSegment x="-0.456" y="3.673"/> + <PolyStepSegment x="-0.456" y="3.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Rout-Keep-in" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.194" y="3.800"/> + <PolyStepSegment x="-1.194" y="3.850"/> + <PolyStepSegment x="-1.178" y="3.850"/> + <PolyStepSegment x="-1.173" y="3.847"/> + <PolyStepSegment x="-1.170" y="3.844"/> + <PolyStepSegment x="-1.168" y="3.837"/> + <PolyStepSegment x="-1.170" y="3.831"/> + <PolyStepSegment x="-1.173" y="3.827"/> + <PolyStepSegment x="-1.178" y="3.824"/> + <PolyStepSegment x="-1.194" y="3.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.178" y="3.824"/> + <PolyStepSegment x="-1.168" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.130" y="3.800"/> + <PolyStepSegment x="-1.134" y="3.801"/> + <PolyStepSegment x="-1.138" y="3.804"/> + <PolyStepSegment x="-1.140" y="3.810"/> + <PolyStepSegment x="-1.141" y="3.817"/> + <PolyStepSegment x="-1.140" y="3.823"/> + <PolyStepSegment x="-1.138" y="3.829"/> + <PolyStepSegment x="-1.134" y="3.832"/> + <PolyStepSegment x="-1.130" y="3.833"/> + <PolyStepSegment x="-1.126" y="3.832"/> + <PolyStepSegment x="-1.122" y="3.829"/> + <PolyStepSegment x="-1.120" y="3.823"/> + <PolyStepSegment x="-1.119" y="3.817"/> + <PolyStepSegment x="-1.120" y="3.810"/> + <PolyStepSegment x="-1.122" y="3.804"/> + <PolyStepSegment x="-1.126" y="3.801"/> + <PolyStepSegment x="-1.130" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.090" y="3.833"/> + <PolyStepSegment x="-1.090" y="3.810"/> + <PolyStepSegment x="-1.087" y="3.804"/> + <PolyStepSegment x="-1.083" y="3.801"/> + <PolyStepSegment x="-1.079" y="3.800"/> + <PolyStepSegment x="-1.075" y="3.801"/> + <PolyStepSegment x="-1.071" y="3.804"/> + <PolyStepSegment x="-1.068" y="3.810"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.068" y="3.800"/> + <PolyStepSegment x="-1.068" y="3.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.028" y="3.850"/> + <PolyStepSegment x="-1.028" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.037" y="3.833"/> + <PolyStepSegment x="-1.019" y="3.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.985" y="3.817"/> + <PolyStepSegment x="-0.969" y="3.817"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.940" y="3.800"/> + <PolyStepSegment x="-0.940" y="3.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.916" y="3.850"/> + <PolyStepSegment x="-0.940" y="3.819"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.912" y="3.800"/> + <PolyStepSegment x="-0.929" y="3.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.884" y="3.822"/> + <PolyStepSegment x="-0.864" y="3.822"/> + <PolyStepSegment x="-0.866" y="3.828"/> + <PolyStepSegment x="-0.869" y="3.832"/> + <PolyStepSegment x="-0.874" y="3.833"/> + <PolyStepSegment x="-0.878" y="3.832"/> + <PolyStepSegment x="-0.882" y="3.830"/> + <PolyStepSegment x="-0.884" y="3.824"/> + <PolyStepSegment x="-0.886" y="3.819"/> + <PolyStepSegment x="-0.886" y="3.814"/> + <PolyStepSegment x="-0.884" y="3.809"/> + <PolyStepSegment x="-0.881" y="3.804"/> + <PolyStepSegment x="-0.878" y="3.801"/> + <PolyStepSegment x="-0.873" y="3.800"/> + <PolyStepSegment x="-0.869" y="3.802"/> + <PolyStepSegment x="-0.864" y="3.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.833" y="3.822"/> + <PolyStepSegment x="-0.813" y="3.822"/> + <PolyStepSegment x="-0.815" y="3.828"/> + <PolyStepSegment x="-0.818" y="3.832"/> + <PolyStepSegment x="-0.823" y="3.833"/> + <PolyStepSegment x="-0.827" y="3.832"/> + <PolyStepSegment x="-0.831" y="3.830"/> + <PolyStepSegment x="-0.833" y="3.824"/> + <PolyStepSegment x="-0.835" y="3.819"/> + <PolyStepSegment x="-0.835" y="3.814"/> + <PolyStepSegment x="-0.833" y="3.809"/> + <PolyStepSegment x="-0.830" y="3.804"/> + <PolyStepSegment x="-0.827" y="3.801"/> + <PolyStepSegment x="-0.822" y="3.800"/> + <PolyStepSegment x="-0.818" y="3.802"/> + <PolyStepSegment x="-0.813" y="3.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.784" y="3.783"/> + <PolyStepSegment x="-0.784" y="3.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.784" y="3.826"/> + <PolyStepSegment x="-0.781" y="3.830"/> + <PolyStepSegment x="-0.778" y="3.832"/> + <PolyStepSegment x="-0.773" y="3.833"/> + <PolyStepSegment x="-0.769" y="3.832"/> + <PolyStepSegment x="-0.764" y="3.828"/> + <PolyStepSegment x="-0.762" y="3.822"/> + <PolyStepSegment x="-0.762" y="3.817"/> + <PolyStepSegment x="-0.762" y="3.811"/> + <PolyStepSegment x="-0.764" y="3.805"/> + <PolyStepSegment x="-0.768" y="3.802"/> + <PolyStepSegment x="-0.773" y="3.800"/> + <PolyStepSegment x="-0.777" y="3.801"/> + <PolyStepSegment x="-0.782" y="3.803"/> + <PolyStepSegment x="-0.784" y="3.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.730" y="3.817"/> + <PolyStepSegment x="-0.714" y="3.817"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.671" y="3.833"/> + <PolyStepSegment x="-0.671" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.671" y="3.847"/> + <PolyStepSegment x="-0.672" y="3.847"/> + <PolyStepSegment x="-0.672" y="3.849"/> + <PolyStepSegment x="-0.671" y="3.850"/> + <PolyStepSegment x="-0.670" y="3.849"/> + <PolyStepSegment x="-0.670" y="3.847"/> + <PolyStepSegment x="-0.671" y="3.847"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.631" y="3.800"/> + <PolyStepSegment x="-0.631" y="3.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.631" y="3.825"/> + <PolyStepSegment x="-0.628" y="3.829"/> + <PolyStepSegment x="-0.624" y="3.832"/> + <PolyStepSegment x="-0.619" y="3.833"/> + <PolyStepSegment x="-0.615" y="3.832"/> + <PolyStepSegment x="-0.611" y="3.829"/> + <PolyStepSegment x="-0.609" y="3.823"/> + <PolyStepSegment x="-0.609" y="3.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Outline" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.181" y="3.950"/> + <PolyStepSegment x="-1.186" y="3.951"/> + <PolyStepSegment x="-1.190" y="3.954"/> + <PolyStepSegment x="-1.194" y="3.959"/> + <PolyStepSegment x="-1.197" y="3.965"/> + <PolyStepSegment x="-1.198" y="3.972"/> + <PolyStepSegment x="-1.198" y="3.978"/> + <PolyStepSegment x="-1.197" y="3.985"/> + <PolyStepSegment x="-1.194" y="3.991"/> + <PolyStepSegment x="-1.190" y="3.996"/> + <PolyStepSegment x="-1.186" y="3.999"/> + <PolyStepSegment x="-1.181" y="4.000"/> + <PolyStepSegment x="-1.176" y="3.999"/> + <PolyStepSegment x="-1.172" y="3.996"/> + <PolyStepSegment x="-1.168" y="3.991"/> + <PolyStepSegment x="-1.165" y="3.985"/> + <PolyStepSegment x="-1.164" y="3.978"/> + <PolyStepSegment x="-1.164" y="3.972"/> + <PolyStepSegment x="-1.165" y="3.965"/> + <PolyStepSegment x="-1.168" y="3.959"/> + <PolyStepSegment x="-1.172" y="3.954"/> + <PolyStepSegment x="-1.176" y="3.951"/> + <PolyStepSegment x="-1.181" y="3.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.141" y="3.983"/> + <PolyStepSegment x="-1.141" y="3.960"/> + <PolyStepSegment x="-1.138" y="3.954"/> + <PolyStepSegment x="-1.134" y="3.951"/> + <PolyStepSegment x="-1.130" y="3.950"/> + <PolyStepSegment x="-1.126" y="3.951"/> + <PolyStepSegment x="-1.122" y="3.954"/> + <PolyStepSegment x="-1.119" y="3.960"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.119" y="3.950"/> + <PolyStepSegment x="-1.119" y="3.983"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.079" y="4.000"/> + <PolyStepSegment x="-1.079" y="3.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.088" y="3.983"/> + <PolyStepSegment x="-1.070" y="3.983"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-1.028" y="3.950"/> + <PolyStepSegment x="-1.028" y="4.000"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.977" y="3.983"/> + <PolyStepSegment x="-0.977" y="3.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.977" y="3.997"/> + <PolyStepSegment x="-0.978" y="3.997"/> + <PolyStepSegment x="-0.978" y="3.999"/> + <PolyStepSegment x="-0.977" y="4.000"/> + <PolyStepSegment x="-0.976" y="3.999"/> + <PolyStepSegment x="-0.976" y="3.997"/> + <PolyStepSegment x="-0.977" y="3.997"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.937" y="3.950"/> + <PolyStepSegment x="-0.937" y="3.983"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.937" y="3.975"/> + <PolyStepSegment x="-0.934" y="3.979"/> + <PolyStepSegment x="-0.930" y="3.982"/> + <PolyStepSegment x="-0.925" y="3.983"/> + <PolyStepSegment x="-0.921" y="3.982"/> + <PolyStepSegment x="-0.917" y="3.979"/> + <PolyStepSegment x="-0.915" y="3.973"/> + <PolyStepSegment x="-0.915" y="3.950"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.884" y="3.972"/> + <PolyStepSegment x="-0.864" y="3.972"/> + <PolyStepSegment x="-0.866" y="3.978"/> + <PolyStepSegment x="-0.869" y="3.982"/> + <PolyStepSegment x="-0.874" y="3.983"/> + <PolyStepSegment x="-0.878" y="3.982"/> + <PolyStepSegment x="-0.882" y="3.980"/> + <PolyStepSegment x="-0.884" y="3.974"/> + <PolyStepSegment x="-0.886" y="3.969"/> + <PolyStepSegment x="-0.886" y="3.964"/> + <PolyStepSegment x="-0.884" y="3.959"/> + <PolyStepSegment x="-0.881" y="3.954"/> + <PolyStepSegment x="-0.878" y="3.951"/> + <PolyStepSegment x="-0.873" y="3.950"/> + <PolyStepSegment x="-0.869" y="3.952"/> + <PolyStepSegment x="-0.864" y="3.957"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="All" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.860" y="-0.298"/> + <PolyStepSegment x="1.910" y="-0.314"/> + <PolyStepSegment x="1.860" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.877" y="-0.324"/> + <PolyStepSegment x="1.877" y="-0.304"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.860" y="-0.365"/> + <PolyStepSegment x="1.910" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.860" y="-0.416"/> + <PolyStepSegment x="1.910" y="-0.416"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MIN HT: 25" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="-0.298"/> + <PolyStepSegment x="1.110" y="-0.298"/> + <PolyStepSegment x="1.068" y="-0.314"/> + <PolyStepSegment x="1.110" y="-0.330"/> + <PolyStepSegment x="1.060" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.110" y="-0.357"/> + <PolyStepSegment x="1.110" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.110" y="-0.365"/> + <PolyStepSegment x="1.060" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="-0.357"/> + <PolyStepSegment x="1.060" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="-0.401"/> + <PolyStepSegment x="1.110" y="-0.401"/> + <PolyStepSegment x="1.060" y="-0.431"/> + <PolyStepSegment x="1.110" y="-0.431"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="-0.505"/> + <PolyStepSegment x="1.110" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.110" y="-0.531"/> + <PolyStepSegment x="1.060" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.085" y="-0.531"/> + <PolyStepSegment x="1.085" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.110" y="-0.569"/> + <PolyStepSegment x="1.060" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.110" y="-0.554"/> + <PolyStepSegment x="1.110" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.058" y="-0.620"/> + <PolyStepSegment x="1.059" y="-0.619"/> + <PolyStepSegment x="1.061" y="-0.619"/> + <PolyStepSegment x="1.062" y="-0.620"/> + <PolyStepSegment x="1.061" y="-0.621"/> + <PolyStepSegment x="1.059" y="-0.621"/> + <PolyStepSegment x="1.058" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.081" y="-0.620"/> + <PolyStepSegment x="1.082" y="-0.619"/> + <PolyStepSegment x="1.083" y="-0.619"/> + <PolyStepSegment x="1.084" y="-0.620"/> + <PolyStepSegment x="1.083" y="-0.621"/> + <PolyStepSegment x="1.082" y="-0.621"/> + <PolyStepSegment x="1.081" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.102" y="-0.710"/> + <PolyStepSegment x="1.107" y="-0.714"/> + <PolyStepSegment x="1.109" y="-0.718"/> + <PolyStepSegment x="1.110" y="-0.723"/> + <PolyStepSegment x="1.108" y="-0.730"/> + <PolyStepSegment x="1.104" y="-0.734"/> + <PolyStepSegment x="1.099" y="-0.735"/> + <PolyStepSegment x="1.094" y="-0.735"/> + <PolyStepSegment x="1.090" y="-0.732"/> + <PolyStepSegment x="1.082" y="-0.719"/> + <PolyStepSegment x="1.076" y="-0.714"/> + <PolyStepSegment x="1.067" y="-0.710"/> + <PolyStepSegment x="1.060" y="-0.709"/> + <PolyStepSegment x="1.060" y="-0.735"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.067" y="-0.759"/> + <PolyStepSegment x="1.063" y="-0.763"/> + <PolyStepSegment x="1.061" y="-0.767"/> + <PolyStepSegment x="1.060" y="-0.773"/> + <PolyStepSegment x="1.062" y="-0.779"/> + <PolyStepSegment x="1.065" y="-0.783"/> + <PolyStepSegment x="1.071" y="-0.786"/> + <PolyStepSegment x="1.077" y="-0.787"/> + <PolyStepSegment x="1.084" y="-0.786"/> + <PolyStepSegment x="1.088" y="-0.782"/> + <PolyStepSegment x="1.092" y="-0.778"/> + <PolyStepSegment x="1.092" y="-0.774"/> + <PolyStepSegment x="1.092" y="-0.769"/> + <PolyStepSegment x="1.088" y="-0.764"/> + <PolyStepSegment x="1.110" y="-0.765"/> + <PolyStepSegment x="1.110" y="-0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MAX HT: 100" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.298"/> + <PolyStepSegment x="1.210" y="-0.298"/> + <PolyStepSegment x="1.168" y="-0.314"/> + <PolyStepSegment x="1.210" y="-0.330"/> + <PolyStepSegment x="1.160" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.349"/> + <PolyStepSegment x="1.210" y="-0.365"/> + <PolyStepSegment x="1.160" y="-0.381"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.177" y="-0.375"/> + <PolyStepSegment x="1.177" y="-0.355"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.403"/> + <PolyStepSegment x="1.210" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.403"/> + <PolyStepSegment x="1.160" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.505"/> + <PolyStepSegment x="1.210" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.531"/> + <PolyStepSegment x="1.160" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.185" y="-0.531"/> + <PolyStepSegment x="1.185" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.569"/> + <PolyStepSegment x="1.160" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.554"/> + <PolyStepSegment x="1.210" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.158" y="-0.620"/> + <PolyStepSegment x="1.159" y="-0.619"/> + <PolyStepSegment x="1.161" y="-0.619"/> + <PolyStepSegment x="1.162" y="-0.620"/> + <PolyStepSegment x="1.161" y="-0.621"/> + <PolyStepSegment x="1.159" y="-0.621"/> + <PolyStepSegment x="1.158" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.181" y="-0.620"/> + <PolyStepSegment x="1.182" y="-0.619"/> + <PolyStepSegment x="1.183" y="-0.619"/> + <PolyStepSegment x="1.184" y="-0.620"/> + <PolyStepSegment x="1.183" y="-0.621"/> + <PolyStepSegment x="1.182" y="-0.621"/> + <PolyStepSegment x="1.181" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.722"/> + <PolyStepSegment x="1.210" y="-0.722"/> + <PolyStepSegment x="1.200" y="-0.714"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="-0.714"/> + <PolyStepSegment x="1.160" y="-0.730"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.773"/> + <PolyStepSegment x="1.208" y="-0.768"/> + <PolyStepSegment x="1.204" y="-0.764"/> + <PolyStepSegment x="1.199" y="-0.762"/> + <PolyStepSegment x="1.192" y="-0.760"/> + <PolyStepSegment x="1.185" y="-0.759"/> + <PolyStepSegment x="1.177" y="-0.760"/> + <PolyStepSegment x="1.171" y="-0.762"/> + <PolyStepSegment x="1.166" y="-0.764"/> + <PolyStepSegment x="1.162" y="-0.768"/> + <PolyStepSegment x="1.160" y="-0.773"/> + <PolyStepSegment x="1.162" y="-0.778"/> + <PolyStepSegment x="1.166" y="-0.782"/> + <PolyStepSegment x="1.171" y="-0.784"/> + <PolyStepSegment x="1.177" y="-0.786"/> + <PolyStepSegment x="1.185" y="-0.787"/> + <PolyStepSegment x="1.192" y="-0.786"/> + <PolyStepSegment x="1.199" y="-0.784"/> + <PolyStepSegment x="1.204" y="-0.782"/> + <PolyStepSegment x="1.208" y="-0.778"/> + <PolyStepSegment x="1.210" y="-0.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="-0.824"/> + <PolyStepSegment x="1.208" y="-0.819"/> + <PolyStepSegment x="1.204" y="-0.815"/> + <PolyStepSegment x="1.199" y="-0.813"/> + <PolyStepSegment x="1.192" y="-0.811"/> + <PolyStepSegment x="1.185" y="-0.810"/> + <PolyStepSegment x="1.177" y="-0.811"/> + <PolyStepSegment x="1.171" y="-0.813"/> + <PolyStepSegment x="1.166" y="-0.815"/> + <PolyStepSegment x="1.162" y="-0.819"/> + <PolyStepSegment x="1.160" y="-0.824"/> + <PolyStepSegment x="1.162" y="-0.829"/> + <PolyStepSegment x="1.166" y="-0.833"/> + <PolyStepSegment x="1.171" y="-0.835"/> + <PolyStepSegment x="1.177" y="-0.837"/> + <PolyStepSegment x="1.185" y="-0.838"/> + <PolyStepSegment x="1.192" y="-0.837"/> + <PolyStepSegment x="1.199" y="-0.835"/> + <PolyStepSegment x="1.204" y="-0.833"/> + <PolyStepSegment x="1.208" y="-0.829"/> + <PolyStepSegment x="1.210" y="-0.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MIN HT: 50" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.360" y="-0.298"/> + <PolyStepSegment x="1.410" y="-0.298"/> + <PolyStepSegment x="1.368" y="-0.314"/> + <PolyStepSegment x="1.410" y="-0.330"/> + <PolyStepSegment x="1.360" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.357"/> + <PolyStepSegment x="1.410" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.365"/> + <PolyStepSegment x="1.360" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.360" y="-0.357"/> + <PolyStepSegment x="1.360" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.360" y="-0.401"/> + <PolyStepSegment x="1.410" y="-0.401"/> + <PolyStepSegment x="1.360" y="-0.431"/> + <PolyStepSegment x="1.410" y="-0.431"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.360" y="-0.505"/> + <PolyStepSegment x="1.410" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.531"/> + <PolyStepSegment x="1.360" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.385" y="-0.531"/> + <PolyStepSegment x="1.385" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.569"/> + <PolyStepSegment x="1.360" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.554"/> + <PolyStepSegment x="1.410" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.358" y="-0.620"/> + <PolyStepSegment x="1.359" y="-0.619"/> + <PolyStepSegment x="1.361" y="-0.619"/> + <PolyStepSegment x="1.362" y="-0.620"/> + <PolyStepSegment x="1.361" y="-0.621"/> + <PolyStepSegment x="1.359" y="-0.621"/> + <PolyStepSegment x="1.358" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.381" y="-0.620"/> + <PolyStepSegment x="1.382" y="-0.619"/> + <PolyStepSegment x="1.383" y="-0.619"/> + <PolyStepSegment x="1.384" y="-0.620"/> + <PolyStepSegment x="1.383" y="-0.621"/> + <PolyStepSegment x="1.382" y="-0.621"/> + <PolyStepSegment x="1.381" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.367" y="-0.708"/> + <PolyStepSegment x="1.363" y="-0.712"/> + <PolyStepSegment x="1.361" y="-0.716"/> + <PolyStepSegment x="1.360" y="-0.722"/> + <PolyStepSegment x="1.362" y="-0.728"/> + <PolyStepSegment x="1.365" y="-0.732"/> + <PolyStepSegment x="1.371" y="-0.735"/> + <PolyStepSegment x="1.377" y="-0.736"/> + <PolyStepSegment x="1.384" y="-0.735"/> + <PolyStepSegment x="1.388" y="-0.731"/> + <PolyStepSegment x="1.392" y="-0.727"/> + <PolyStepSegment x="1.392" y="-0.723"/> + <PolyStepSegment x="1.392" y="-0.718"/> + <PolyStepSegment x="1.388" y="-0.713"/> + <PolyStepSegment x="1.410" y="-0.714"/> + <PolyStepSegment x="1.410" y="-0.731"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.410" y="-0.773"/> + <PolyStepSegment x="1.408" y="-0.768"/> + <PolyStepSegment x="1.404" y="-0.764"/> + <PolyStepSegment x="1.399" y="-0.762"/> + <PolyStepSegment x="1.392" y="-0.760"/> + <PolyStepSegment x="1.385" y="-0.759"/> + <PolyStepSegment x="1.377" y="-0.760"/> + <PolyStepSegment x="1.371" y="-0.762"/> + <PolyStepSegment x="1.366" y="-0.764"/> + <PolyStepSegment x="1.362" y="-0.768"/> + <PolyStepSegment x="1.360" y="-0.773"/> + <PolyStepSegment x="1.362" y="-0.778"/> + <PolyStepSegment x="1.366" y="-0.782"/> + <PolyStepSegment x="1.371" y="-0.784"/> + <PolyStepSegment x="1.377" y="-0.786"/> + <PolyStepSegment x="1.385" y="-0.787"/> + <PolyStepSegment x="1.392" y="-0.786"/> + <PolyStepSegment x="1.399" y="-0.784"/> + <PolyStepSegment x="1.404" y="-0.782"/> + <PolyStepSegment x="1.408" y="-0.778"/> + <PolyStepSegment x="1.410" y="-0.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MAX HT: 200" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="-0.298"/> + <PolyStepSegment x="1.510" y="-0.298"/> + <PolyStepSegment x="1.468" y="-0.314"/> + <PolyStepSegment x="1.510" y="-0.330"/> + <PolyStepSegment x="1.460" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="-0.349"/> + <PolyStepSegment x="1.510" y="-0.365"/> + <PolyStepSegment x="1.460" y="-0.381"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.477" y="-0.375"/> + <PolyStepSegment x="1.477" y="-0.355"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="-0.403"/> + <PolyStepSegment x="1.510" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.403"/> + <PolyStepSegment x="1.460" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="-0.505"/> + <PolyStepSegment x="1.510" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.531"/> + <PolyStepSegment x="1.460" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.485" y="-0.531"/> + <PolyStepSegment x="1.485" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.569"/> + <PolyStepSegment x="1.460" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.554"/> + <PolyStepSegment x="1.510" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.458" y="-0.620"/> + <PolyStepSegment x="1.459" y="-0.619"/> + <PolyStepSegment x="1.461" y="-0.619"/> + <PolyStepSegment x="1.462" y="-0.620"/> + <PolyStepSegment x="1.461" y="-0.621"/> + <PolyStepSegment x="1.459" y="-0.621"/> + <PolyStepSegment x="1.458" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.481" y="-0.620"/> + <PolyStepSegment x="1.482" y="-0.619"/> + <PolyStepSegment x="1.483" y="-0.619"/> + <PolyStepSegment x="1.484" y="-0.620"/> + <PolyStepSegment x="1.483" y="-0.621"/> + <PolyStepSegment x="1.482" y="-0.621"/> + <PolyStepSegment x="1.481" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.502" y="-0.710"/> + <PolyStepSegment x="1.507" y="-0.714"/> + <PolyStepSegment x="1.509" y="-0.718"/> + <PolyStepSegment x="1.510" y="-0.723"/> + <PolyStepSegment x="1.508" y="-0.730"/> + <PolyStepSegment x="1.504" y="-0.734"/> + <PolyStepSegment x="1.499" y="-0.735"/> + <PolyStepSegment x="1.494" y="-0.735"/> + <PolyStepSegment x="1.490" y="-0.732"/> + <PolyStepSegment x="1.482" y="-0.719"/> + <PolyStepSegment x="1.476" y="-0.714"/> + <PolyStepSegment x="1.467" y="-0.710"/> + <PolyStepSegment x="1.460" y="-0.709"/> + <PolyStepSegment x="1.460" y="-0.735"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.773"/> + <PolyStepSegment x="1.508" y="-0.768"/> + <PolyStepSegment x="1.504" y="-0.764"/> + <PolyStepSegment x="1.499" y="-0.762"/> + <PolyStepSegment x="1.492" y="-0.760"/> + <PolyStepSegment x="1.485" y="-0.759"/> + <PolyStepSegment x="1.477" y="-0.760"/> + <PolyStepSegment x="1.471" y="-0.762"/> + <PolyStepSegment x="1.466" y="-0.764"/> + <PolyStepSegment x="1.462" y="-0.768"/> + <PolyStepSegment x="1.460" y="-0.773"/> + <PolyStepSegment x="1.462" y="-0.778"/> + <PolyStepSegment x="1.466" y="-0.782"/> + <PolyStepSegment x="1.471" y="-0.784"/> + <PolyStepSegment x="1.477" y="-0.786"/> + <PolyStepSegment x="1.485" y="-0.787"/> + <PolyStepSegment x="1.492" y="-0.786"/> + <PolyStepSegment x="1.499" y="-0.784"/> + <PolyStepSegment x="1.504" y="-0.782"/> + <PolyStepSegment x="1.508" y="-0.778"/> + <PolyStepSegment x="1.510" y="-0.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="-0.824"/> + <PolyStepSegment x="1.508" y="-0.819"/> + <PolyStepSegment x="1.504" y="-0.815"/> + <PolyStepSegment x="1.499" y="-0.813"/> + <PolyStepSegment x="1.492" y="-0.811"/> + <PolyStepSegment x="1.485" y="-0.810"/> + <PolyStepSegment x="1.477" y="-0.811"/> + <PolyStepSegment x="1.471" y="-0.813"/> + <PolyStepSegment x="1.466" y="-0.815"/> + <PolyStepSegment x="1.462" y="-0.819"/> + <PolyStepSegment x="1.460" y="-0.824"/> + <PolyStepSegment x="1.462" y="-0.829"/> + <PolyStepSegment x="1.466" y="-0.833"/> + <PolyStepSegment x="1.471" y="-0.835"/> + <PolyStepSegment x="1.477" y="-0.837"/> + <PolyStepSegment x="1.485" y="-0.838"/> + <PolyStepSegment x="1.492" y="-0.837"/> + <PolyStepSegment x="1.499" y="-0.835"/> + <PolyStepSegment x="1.504" y="-0.833"/> + <PolyStepSegment x="1.508" y="-0.829"/> + <PolyStepSegment x="1.510" y="-0.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MIN HT : 75" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="-0.298"/> + <PolyStepSegment x="1.710" y="-0.298"/> + <PolyStepSegment x="1.668" y="-0.314"/> + <PolyStepSegment x="1.710" y="-0.330"/> + <PolyStepSegment x="1.660" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.710" y="-0.357"/> + <PolyStepSegment x="1.710" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.710" y="-0.365"/> + <PolyStepSegment x="1.660" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="-0.357"/> + <PolyStepSegment x="1.660" y="-0.373"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="-0.401"/> + <PolyStepSegment x="1.710" y="-0.401"/> + <PolyStepSegment x="1.660" y="-0.431"/> + <PolyStepSegment x="1.710" y="-0.431"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="-0.505"/> + <PolyStepSegment x="1.710" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.710" y="-0.531"/> + <PolyStepSegment x="1.660" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.685" y="-0.531"/> + <PolyStepSegment x="1.685" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.710" y="-0.569"/> + <PolyStepSegment x="1.660" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.710" y="-0.554"/> + <PolyStepSegment x="1.710" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.658" y="-0.671"/> + <PolyStepSegment x="1.659" y="-0.670"/> + <PolyStepSegment x="1.661" y="-0.670"/> + <PolyStepSegment x="1.662" y="-0.671"/> + <PolyStepSegment x="1.661" y="-0.672"/> + <PolyStepSegment x="1.659" y="-0.672"/> + <PolyStepSegment x="1.658" y="-0.671"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.681" y="-0.671"/> + <PolyStepSegment x="1.682" y="-0.670"/> + <PolyStepSegment x="1.683" y="-0.670"/> + <PolyStepSegment x="1.684" y="-0.671"/> + <PolyStepSegment x="1.683" y="-0.672"/> + <PolyStepSegment x="1.682" y="-0.672"/> + <PolyStepSegment x="1.681" y="-0.671"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="-0.772"/> + <PolyStepSegment x="1.671" y="-0.773"/> + <PolyStepSegment x="1.680" y="-0.775"/> + <PolyStepSegment x="1.688" y="-0.777"/> + <PolyStepSegment x="1.697" y="-0.781"/> + <PolyStepSegment x="1.710" y="-0.786"/> + <PolyStepSegment x="1.710" y="-0.760"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.667" y="-0.810"/> + <PolyStepSegment x="1.663" y="-0.814"/> + <PolyStepSegment x="1.661" y="-0.818"/> + <PolyStepSegment x="1.660" y="-0.824"/> + <PolyStepSegment x="1.662" y="-0.830"/> + <PolyStepSegment x="1.665" y="-0.834"/> + <PolyStepSegment x="1.671" y="-0.837"/> + <PolyStepSegment x="1.677" y="-0.838"/> + <PolyStepSegment x="1.684" y="-0.837"/> + <PolyStepSegment x="1.688" y="-0.833"/> + <PolyStepSegment x="1.692" y="-0.829"/> + <PolyStepSegment x="1.692" y="-0.825"/> + <PolyStepSegment x="1.692" y="-0.820"/> + <PolyStepSegment x="1.688" y="-0.815"/> + <PolyStepSegment x="1.710" y="-0.816"/> + <PolyStepSegment x="1.710" y="-0.833"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="MAX HT: 300" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="-0.298"/> + <PolyStepSegment x="1.810" y="-0.298"/> + <PolyStepSegment x="1.768" y="-0.314"/> + <PolyStepSegment x="1.810" y="-0.330"/> + <PolyStepSegment x="1.760" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="-0.349"/> + <PolyStepSegment x="1.810" y="-0.365"/> + <PolyStepSegment x="1.760" y="-0.381"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.777" y="-0.375"/> + <PolyStepSegment x="1.777" y="-0.355"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="-0.403"/> + <PolyStepSegment x="1.810" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.403"/> + <PolyStepSegment x="1.760" y="-0.429"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="-0.505"/> + <PolyStepSegment x="1.810" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.531"/> + <PolyStepSegment x="1.760" y="-0.531"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.785" y="-0.531"/> + <PolyStepSegment x="1.785" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.569"/> + <PolyStepSegment x="1.760" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.554"/> + <PolyStepSegment x="1.810" y="-0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.758" y="-0.620"/> + <PolyStepSegment x="1.759" y="-0.619"/> + <PolyStepSegment x="1.761" y="-0.619"/> + <PolyStepSegment x="1.762" y="-0.620"/> + <PolyStepSegment x="1.761" y="-0.621"/> + <PolyStepSegment x="1.759" y="-0.621"/> + <PolyStepSegment x="1.758" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.781" y="-0.620"/> + <PolyStepSegment x="1.782" y="-0.619"/> + <PolyStepSegment x="1.783" y="-0.619"/> + <PolyStepSegment x="1.784" y="-0.620"/> + <PolyStepSegment x="1.783" y="-0.621"/> + <PolyStepSegment x="1.782" y="-0.621"/> + <PolyStepSegment x="1.781" y="-0.620"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.770" y="-0.708"/> + <PolyStepSegment x="1.764" y="-0.712"/> + <PolyStepSegment x="1.761" y="-0.717"/> + <PolyStepSegment x="1.760" y="-0.723"/> + <PolyStepSegment x="1.761" y="-0.728"/> + <PolyStepSegment x="1.765" y="-0.733"/> + <PolyStepSegment x="1.770" y="-0.736"/> + <PolyStepSegment x="1.775" y="-0.737"/> + <PolyStepSegment x="1.781" y="-0.735"/> + <PolyStepSegment x="1.785" y="-0.731"/> + <PolyStepSegment x="1.787" y="-0.726"/> + <PolyStepSegment x="1.787" y="-0.721"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.787" y="-0.726"/> + <PolyStepSegment x="1.789" y="-0.730"/> + <PolyStepSegment x="1.793" y="-0.733"/> + <PolyStepSegment x="1.798" y="-0.735"/> + <PolyStepSegment x="1.803" y="-0.733"/> + <PolyStepSegment x="1.807" y="-0.730"/> + <PolyStepSegment x="1.810" y="-0.725"/> + <PolyStepSegment x="1.809" y="-0.719"/> + <PolyStepSegment x="1.806" y="-0.713"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.773"/> + <PolyStepSegment x="1.808" y="-0.768"/> + <PolyStepSegment x="1.804" y="-0.764"/> + <PolyStepSegment x="1.799" y="-0.762"/> + <PolyStepSegment x="1.792" y="-0.760"/> + <PolyStepSegment x="1.785" y="-0.759"/> + <PolyStepSegment x="1.777" y="-0.760"/> + <PolyStepSegment x="1.771" y="-0.762"/> + <PolyStepSegment x="1.766" y="-0.764"/> + <PolyStepSegment x="1.762" y="-0.768"/> + <PolyStepSegment x="1.760" y="-0.773"/> + <PolyStepSegment x="1.762" y="-0.778"/> + <PolyStepSegment x="1.766" y="-0.782"/> + <PolyStepSegment x="1.771" y="-0.784"/> + <PolyStepSegment x="1.777" y="-0.786"/> + <PolyStepSegment x="1.785" y="-0.787"/> + <PolyStepSegment x="1.792" y="-0.786"/> + <PolyStepSegment x="1.799" y="-0.784"/> + <PolyStepSegment x="1.804" y="-0.782"/> + <PolyStepSegment x="1.808" y="-0.778"/> + <PolyStepSegment x="1.810" y="-0.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="-0.824"/> + <PolyStepSegment x="1.808" y="-0.819"/> + <PolyStepSegment x="1.804" y="-0.815"/> + <PolyStepSegment x="1.799" y="-0.813"/> + <PolyStepSegment x="1.792" y="-0.811"/> + <PolyStepSegment x="1.785" y="-0.810"/> + <PolyStepSegment x="1.777" y="-0.811"/> + <PolyStepSegment x="1.771" y="-0.813"/> + <PolyStepSegment x="1.766" y="-0.815"/> + <PolyStepSegment x="1.762" y="-0.819"/> + <PolyStepSegment x="1.760" y="-0.824"/> + <PolyStepSegment x="1.762" y="-0.829"/> + <PolyStepSegment x="1.766" y="-0.833"/> + <PolyStepSegment x="1.771" y="-0.835"/> + <PolyStepSegment x="1.777" y="-0.837"/> + <PolyStepSegment x="1.785" y="-0.838"/> + <PolyStepSegment x="1.792" y="-0.837"/> + <PolyStepSegment x="1.799" y="-0.835"/> + <PolyStepSegment x="1.804" y="-0.833"/> + <PolyStepSegment x="1.808" y="-0.829"/> + <PolyStepSegment x="1.810" y="-0.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Top" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.610" y="-0.314"/> + <PolyStepSegment x="1.560" y="-0.314"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.610" y="-0.299"/> + <PolyStepSegment x="1.610" y="-0.329"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.560" y="-0.365"/> + <PolyStepSegment x="1.561" y="-0.361"/> + <PolyStepSegment x="1.564" y="-0.357"/> + <PolyStepSegment x="1.570" y="-0.355"/> + <PolyStepSegment x="1.577" y="-0.354"/> + <PolyStepSegment x="1.583" y="-0.355"/> + <PolyStepSegment x="1.589" y="-0.357"/> + <PolyStepSegment x="1.592" y="-0.361"/> + <PolyStepSegment x="1.593" y="-0.365"/> + <PolyStepSegment x="1.592" y="-0.369"/> + <PolyStepSegment x="1.589" y="-0.373"/> + <PolyStepSegment x="1.583" y="-0.375"/> + <PolyStepSegment x="1.577" y="-0.376"/> + <PolyStepSegment x="1.570" y="-0.375"/> + <PolyStepSegment x="1.564" y="-0.373"/> + <PolyStepSegment x="1.561" y="-0.369"/> + <PolyStepSegment x="1.560" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.543" y="-0.405"/> + <PolyStepSegment x="1.593" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.586" y="-0.405"/> + <PolyStepSegment x="1.590" y="-0.408"/> + <PolyStepSegment x="1.592" y="-0.411"/> + <PolyStepSegment x="1.593" y="-0.416"/> + <PolyStepSegment x="1.592" y="-0.420"/> + <PolyStepSegment x="1.588" y="-0.425"/> + <PolyStepSegment x="1.582" y="-0.427"/> + <PolyStepSegment x="1.577" y="-0.427"/> + <PolyStepSegment x="1.571" y="-0.427"/> + <PolyStepSegment x="1.565" y="-0.425"/> + <PolyStepSegment x="1.562" y="-0.421"/> + <PolyStepSegment x="1.560" y="-0.416"/> + <PolyStepSegment x="1.561" y="-0.412"/> + <PolyStepSegment x="1.563" y="-0.407"/> + <PolyStepSegment x="1.567" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Bottom" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.287" y="-0.319"/> + <PolyStepSegment x="1.289" y="-0.322"/> + <PolyStepSegment x="1.293" y="-0.323"/> + <PolyStepSegment x="1.299" y="-0.325"/> + <PolyStepSegment x="1.304" y="-0.323"/> + <PolyStepSegment x="1.307" y="-0.321"/> + <PolyStepSegment x="1.310" y="-0.317"/> + <PolyStepSegment x="1.310" y="-0.299"/> + <PolyStepSegment x="1.260" y="-0.299"/> + <PolyStepSegment x="1.260" y="-0.320"/> + <PolyStepSegment x="1.263" y="-0.325"/> + <PolyStepSegment x="1.268" y="-0.327"/> + <PolyStepSegment x="1.274" y="-0.329"/> + <PolyStepSegment x="1.280" y="-0.327"/> + <PolyStepSegment x="1.285" y="-0.323"/> + <PolyStepSegment x="1.287" y="-0.319"/> + <PolyStepSegment x="1.287" y="-0.299"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.260" y="-0.365"/> + <PolyStepSegment x="1.261" y="-0.361"/> + <PolyStepSegment x="1.264" y="-0.357"/> + <PolyStepSegment x="1.270" y="-0.355"/> + <PolyStepSegment x="1.277" y="-0.354"/> + <PolyStepSegment x="1.283" y="-0.355"/> + <PolyStepSegment x="1.289" y="-0.357"/> + <PolyStepSegment x="1.292" y="-0.361"/> + <PolyStepSegment x="1.293" y="-0.365"/> + <PolyStepSegment x="1.292" y="-0.369"/> + <PolyStepSegment x="1.289" y="-0.373"/> + <PolyStepSegment x="1.283" y="-0.375"/> + <PolyStepSegment x="1.277" y="-0.376"/> + <PolyStepSegment x="1.270" y="-0.375"/> + <PolyStepSegment x="1.264" y="-0.373"/> + <PolyStepSegment x="1.261" y="-0.369"/> + <PolyStepSegment x="1.260" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.310" y="-0.416"/> + <PolyStepSegment x="1.260" y="-0.416"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.293" y="-0.407"/> + <PolyStepSegment x="1.293" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.310" y="-0.467"/> + <PolyStepSegment x="1.260" y="-0.467"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.293" y="-0.458"/> + <PolyStepSegment x="1.293" y="-0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.260" y="-0.518"/> + <PolyStepSegment x="1.261" y="-0.514"/> + <PolyStepSegment x="1.264" y="-0.510"/> + <PolyStepSegment x="1.270" y="-0.508"/> + <PolyStepSegment x="1.277" y="-0.507"/> + <PolyStepSegment x="1.283" y="-0.508"/> + <PolyStepSegment x="1.289" y="-0.510"/> + <PolyStepSegment x="1.292" y="-0.514"/> + <PolyStepSegment x="1.293" y="-0.518"/> + <PolyStepSegment x="1.292" y="-0.522"/> + <PolyStepSegment x="1.289" y="-0.526"/> + <PolyStepSegment x="1.283" y="-0.528"/> + <PolyStepSegment x="1.277" y="-0.529"/> + <PolyStepSegment x="1.270" y="-0.528"/> + <PolyStepSegment x="1.264" y="-0.526"/> + <PolyStepSegment x="1.261" y="-0.522"/> + <PolyStepSegment x="1.260" y="-0.518"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.260" y="-0.550"/> + <PolyStepSegment x="1.293" y="-0.550"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.284" y="-0.550"/> + <PolyStepSegment x="1.288" y="-0.552"/> + <PolyStepSegment x="1.292" y="-0.555"/> + <PolyStepSegment x="1.293" y="-0.560"/> + <PolyStepSegment x="1.292" y="-0.564"/> + <PolyStepSegment x="1.288" y="-0.567"/> + <PolyStepSegment x="1.284" y="-0.569"/> + <PolyStepSegment x="1.260" y="-0.569"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.284" y="-0.569"/> + <PolyStepSegment x="1.288" y="-0.571"/> + <PolyStepSegment x="1.292" y="-0.574"/> + <PolyStepSegment x="1.293" y="-0.578"/> + <PolyStepSegment x="1.292" y="-0.583"/> + <PolyStepSegment x="1.288" y="-0.586"/> + <PolyStepSegment x="1.283" y="-0.588"/> + <PolyStepSegment x="1.260" y="-0.588"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Botom" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.987" y="-0.319"/> + <PolyStepSegment x="0.989" y="-0.322"/> + <PolyStepSegment x="0.993" y="-0.323"/> + <PolyStepSegment x="0.999" y="-0.325"/> + <PolyStepSegment x="1.004" y="-0.323"/> + <PolyStepSegment x="1.007" y="-0.321"/> + <PolyStepSegment x="1.010" y="-0.317"/> + <PolyStepSegment x="1.010" y="-0.299"/> + <PolyStepSegment x="0.960" y="-0.299"/> + <PolyStepSegment x="0.960" y="-0.320"/> + <PolyStepSegment x="0.963" y="-0.325"/> + <PolyStepSegment x="0.968" y="-0.327"/> + <PolyStepSegment x="0.974" y="-0.329"/> + <PolyStepSegment x="0.980" y="-0.327"/> + <PolyStepSegment x="0.985" y="-0.323"/> + <PolyStepSegment x="0.987" y="-0.319"/> + <PolyStepSegment x="0.987" y="-0.299"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.960" y="-0.365"/> + <PolyStepSegment x="0.961" y="-0.361"/> + <PolyStepSegment x="0.964" y="-0.357"/> + <PolyStepSegment x="0.970" y="-0.355"/> + <PolyStepSegment x="0.977" y="-0.354"/> + <PolyStepSegment x="0.983" y="-0.355"/> + <PolyStepSegment x="0.989" y="-0.357"/> + <PolyStepSegment x="0.992" y="-0.361"/> + <PolyStepSegment x="0.993" y="-0.365"/> + <PolyStepSegment x="0.992" y="-0.369"/> + <PolyStepSegment x="0.989" y="-0.373"/> + <PolyStepSegment x="0.983" y="-0.375"/> + <PolyStepSegment x="0.977" y="-0.376"/> + <PolyStepSegment x="0.970" y="-0.375"/> + <PolyStepSegment x="0.964" y="-0.373"/> + <PolyStepSegment x="0.961" y="-0.369"/> + <PolyStepSegment x="0.960" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.010" y="-0.416"/> + <PolyStepSegment x="0.960" y="-0.416"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.993" y="-0.407"/> + <PolyStepSegment x="0.993" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.960" y="-0.467"/> + <PolyStepSegment x="0.961" y="-0.463"/> + <PolyStepSegment x="0.964" y="-0.459"/> + <PolyStepSegment x="0.970" y="-0.457"/> + <PolyStepSegment x="0.977" y="-0.456"/> + <PolyStepSegment x="0.983" y="-0.457"/> + <PolyStepSegment x="0.989" y="-0.459"/> + <PolyStepSegment x="0.992" y="-0.463"/> + <PolyStepSegment x="0.993" y="-0.467"/> + <PolyStepSegment x="0.992" y="-0.471"/> + <PolyStepSegment x="0.989" y="-0.475"/> + <PolyStepSegment x="0.983" y="-0.477"/> + <PolyStepSegment x="0.977" y="-0.478"/> + <PolyStepSegment x="0.970" y="-0.477"/> + <PolyStepSegment x="0.964" y="-0.475"/> + <PolyStepSegment x="0.961" y="-0.471"/> + <PolyStepSegment x="0.960" y="-0.467"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.960" y="-0.499"/> + <PolyStepSegment x="0.993" y="-0.499"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.984" y="-0.499"/> + <PolyStepSegment x="0.988" y="-0.501"/> + <PolyStepSegment x="0.992" y="-0.504"/> + <PolyStepSegment x="0.993" y="-0.509"/> + <PolyStepSegment x="0.992" y="-0.513"/> + <PolyStepSegment x="0.988" y="-0.516"/> + <PolyStepSegment x="0.984" y="-0.518"/> + <PolyStepSegment x="0.960" y="-0.518"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.984" y="-0.518"/> + <PolyStepSegment x="0.988" y="-0.520"/> + <PolyStepSegment x="0.992" y="-0.523"/> + <PolyStepSegment x="0.993" y="-0.527"/> + <PolyStepSegment x="0.992" y="-0.532"/> + <PolyStepSegment x="0.988" y="-0.535"/> + <PolyStepSegment x="0.983" y="-0.537"/> + <PolyStepSegment x="0.960" y="-0.537"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Top" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.710" y="-0.314"/> + <PolyStepSegment x="0.660" y="-0.314"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.710" y="-0.299"/> + <PolyStepSegment x="0.710" y="-0.329"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.660" y="-0.365"/> + <PolyStepSegment x="0.661" y="-0.361"/> + <PolyStepSegment x="0.664" y="-0.357"/> + <PolyStepSegment x="0.670" y="-0.355"/> + <PolyStepSegment x="0.677" y="-0.354"/> + <PolyStepSegment x="0.683" y="-0.355"/> + <PolyStepSegment x="0.689" y="-0.357"/> + <PolyStepSegment x="0.692" y="-0.361"/> + <PolyStepSegment x="0.693" y="-0.365"/> + <PolyStepSegment x="0.692" y="-0.369"/> + <PolyStepSegment x="0.689" y="-0.373"/> + <PolyStepSegment x="0.683" y="-0.375"/> + <PolyStepSegment x="0.677" y="-0.376"/> + <PolyStepSegment x="0.670" y="-0.375"/> + <PolyStepSegment x="0.664" y="-0.373"/> + <PolyStepSegment x="0.661" y="-0.369"/> + <PolyStepSegment x="0.660" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.643" y="-0.405"/> + <PolyStepSegment x="0.693" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.686" y="-0.405"/> + <PolyStepSegment x="0.690" y="-0.408"/> + <PolyStepSegment x="0.692" y="-0.411"/> + <PolyStepSegment x="0.693" y="-0.416"/> + <PolyStepSegment x="0.692" y="-0.420"/> + <PolyStepSegment x="0.688" y="-0.425"/> + <PolyStepSegment x="0.682" y="-0.427"/> + <PolyStepSegment x="0.677" y="-0.427"/> + <PolyStepSegment x="0.671" y="-0.427"/> + <PolyStepSegment x="0.665" y="-0.425"/> + <PolyStepSegment x="0.662" y="-0.421"/> + <PolyStepSegment x="0.660" y="-0.416"/> + <PolyStepSegment x="0.661" y="-0.412"/> + <PolyStepSegment x="0.663" y="-0.407"/> + <PolyStepSegment x="0.667" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="All" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.360" y="-0.298"/> + <PolyStepSegment x="0.410" y="-0.314"/> + <PolyStepSegment x="0.360" y="-0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.377" y="-0.324"/> + <PolyStepSegment x="0.377" y="-0.304"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.360" y="-0.365"/> + <PolyStepSegment x="0.410" y="-0.365"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.360" y="-0.416"/> + <PolyStepSegment x="0.410" y="-0.416"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="VCC" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.753" y="4.200"/> + <PolyStepSegment x="1.769" y="4.150"/> + <PolyStepSegment x="1.785" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.834" y="4.196"/> + <PolyStepSegment x="1.830" y="4.198"/> + <PolyStepSegment x="1.826" y="4.200"/> + <PolyStepSegment x="1.821" y="4.200"/> + <PolyStepSegment x="1.815" y="4.197"/> + <PolyStepSegment x="1.811" y="4.193"/> + <PolyStepSegment x="1.807" y="4.188"/> + <PolyStepSegment x="1.805" y="4.180"/> + <PolyStepSegment x="1.804" y="4.172"/> + <PolyStepSegment x="1.805" y="4.165"/> + <PolyStepSegment x="1.807" y="4.160"/> + <PolyStepSegment x="1.811" y="4.155"/> + <PolyStepSegment x="1.816" y="4.152"/> + <PolyStepSegment x="1.820" y="4.150"/> + <PolyStepSegment x="1.824" y="4.150"/> + <PolyStepSegment x="1.829" y="4.152"/> + <PolyStepSegment x="1.833" y="4.154"/> + <PolyStepSegment x="1.836" y="4.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.885" y="4.196"/> + <PolyStepSegment x="1.881" y="4.198"/> + <PolyStepSegment x="1.877" y="4.200"/> + <PolyStepSegment x="1.872" y="4.200"/> + <PolyStepSegment x="1.866" y="4.197"/> + <PolyStepSegment x="1.862" y="4.193"/> + <PolyStepSegment x="1.858" y="4.188"/> + <PolyStepSegment x="1.856" y="4.180"/> + <PolyStepSegment x="1.855" y="4.172"/> + <PolyStepSegment x="1.856" y="4.165"/> + <PolyStepSegment x="1.858" y="4.160"/> + <PolyStepSegment x="1.862" y="4.155"/> + <PolyStepSegment x="1.867" y="4.152"/> + <PolyStepSegment x="1.871" y="4.150"/> + <PolyStepSegment x="1.875" y="4.150"/> + <PolyStepSegment x="1.880" y="4.152"/> + <PolyStepSegment x="1.884" y="4.154"/> + <PolyStepSegment x="1.887" y="4.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="IS2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.411" y="4.200"/> + <PolyStepSegment x="1.427" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.419" y="4.200"/> + <PolyStepSegment x="1.419" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.411" y="4.150"/> + <PolyStepSegment x="1.427" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.457" y="4.157"/> + <PolyStepSegment x="1.462" y="4.152"/> + <PolyStepSegment x="1.467" y="4.150"/> + <PolyStepSegment x="1.473" y="4.150"/> + <PolyStepSegment x="1.478" y="4.152"/> + <PolyStepSegment x="1.481" y="4.157"/> + <PolyStepSegment x="1.483" y="4.163"/> + <PolyStepSegment x="1.482" y="4.168"/> + <PolyStepSegment x="1.479" y="4.173"/> + <PolyStepSegment x="1.473" y="4.177"/> + <PolyStepSegment x="1.466" y="4.178"/> + <PolyStepSegment x="1.461" y="4.182"/> + <PolyStepSegment x="1.459" y="4.187"/> + <PolyStepSegment x="1.461" y="4.193"/> + <PolyStepSegment x="1.464" y="4.197"/> + <PolyStepSegment x="1.468" y="4.200"/> + <PolyStepSegment x="1.473" y="4.200"/> + <PolyStepSegment x="1.477" y="4.198"/> + <PolyStepSegment x="1.481" y="4.194"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.509" y="4.192"/> + <PolyStepSegment x="1.513" y="4.197"/> + <PolyStepSegment x="1.517" y="4.199"/> + <PolyStepSegment x="1.522" y="4.200"/> + <PolyStepSegment x="1.529" y="4.198"/> + <PolyStepSegment x="1.533" y="4.194"/> + <PolyStepSegment x="1.534" y="4.189"/> + <PolyStepSegment x="1.534" y="4.184"/> + <PolyStepSegment x="1.531" y="4.180"/> + <PolyStepSegment x="1.518" y="4.172"/> + <PolyStepSegment x="1.513" y="4.166"/> + <PolyStepSegment x="1.509" y="4.157"/> + <PolyStepSegment x="1.508" y="4.150"/> + <PolyStepSegment x="1.534" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="IS1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.061" y="4.200"/> + <PolyStepSegment x="1.077" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.069" y="4.200"/> + <PolyStepSegment x="1.069" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.061" y="4.150"/> + <PolyStepSegment x="1.077" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.107" y="4.157"/> + <PolyStepSegment x="1.112" y="4.152"/> + <PolyStepSegment x="1.117" y="4.150"/> + <PolyStepSegment x="1.123" y="4.150"/> + <PolyStepSegment x="1.128" y="4.152"/> + <PolyStepSegment x="1.131" y="4.157"/> + <PolyStepSegment x="1.133" y="4.163"/> + <PolyStepSegment x="1.132" y="4.168"/> + <PolyStepSegment x="1.129" y="4.173"/> + <PolyStepSegment x="1.123" y="4.177"/> + <PolyStepSegment x="1.116" y="4.178"/> + <PolyStepSegment x="1.111" y="4.182"/> + <PolyStepSegment x="1.109" y="4.187"/> + <PolyStepSegment x="1.111" y="4.193"/> + <PolyStepSegment x="1.114" y="4.197"/> + <PolyStepSegment x="1.118" y="4.200"/> + <PolyStepSegment x="1.123" y="4.200"/> + <PolyStepSegment x="1.127" y="4.198"/> + <PolyStepSegment x="1.131" y="4.194"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.171" y="4.150"/> + <PolyStepSegment x="1.171" y="4.200"/> + <PolyStepSegment x="1.163" y="4.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.163" y="4.150"/> + <PolyStepSegment x="1.179" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="GND" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.723" y="4.175"/> + <PolyStepSegment x="0.735" y="4.175"/> + <PolyStepSegment x="0.735" y="4.160"/> + <PolyStepSegment x="0.732" y="4.155"/> + <PolyStepSegment x="0.727" y="4.152"/> + <PolyStepSegment x="0.721" y="4.150"/> + <PolyStepSegment x="0.715" y="4.152"/> + <PolyStepSegment x="0.710" y="4.155"/> + <PolyStepSegment x="0.706" y="4.160"/> + <PolyStepSegment x="0.704" y="4.166"/> + <PolyStepSegment x="0.703" y="4.172"/> + <PolyStepSegment x="0.703" y="4.178"/> + <PolyStepSegment x="0.704" y="4.183"/> + <PolyStepSegment x="0.706" y="4.189"/> + <PolyStepSegment x="0.710" y="4.194"/> + <PolyStepSegment x="0.714" y="4.197"/> + <PolyStepSegment x="0.719" y="4.200"/> + <PolyStepSegment x="0.723" y="4.200"/> + <PolyStepSegment x="0.728" y="4.198"/> + <PolyStepSegment x="0.732" y="4.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.755" y="4.150"/> + <PolyStepSegment x="0.755" y="4.200"/> + <PolyStepSegment x="0.785" y="4.150"/> + <PolyStepSegment x="0.785" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.807" y="4.150"/> + <PolyStepSegment x="0.807" y="4.200"/> + <PolyStepSegment x="0.820" y="4.200"/> + <PolyStepSegment x="0.825" y="4.197"/> + <PolyStepSegment x="0.829" y="4.194"/> + <PolyStepSegment x="0.832" y="4.189"/> + <PolyStepSegment x="0.834" y="4.183"/> + <PolyStepSegment x="0.835" y="4.175"/> + <PolyStepSegment x="0.834" y="4.167"/> + <PolyStepSegment x="0.832" y="4.161"/> + <PolyStepSegment x="0.829" y="4.156"/> + <PolyStepSegment x="0.825" y="4.152"/> + <PolyStepSegment x="0.820" y="4.150"/> + <PolyStepSegment x="0.807" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="All" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.003" y="4.150"/> + <PolyStepSegment x="0.019" y="4.200"/> + <PolyStepSegment x="0.035" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.029" y="4.167"/> + <PolyStepSegment x="0.009" y="4.167"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.070" y="4.150"/> + <PolyStepSegment x="0.070" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.121" y="4.150"/> + <PolyStepSegment x="0.121" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Bottom" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.074" y="4.177"/> + <PolyStepSegment x="2.077" y="4.179"/> + <PolyStepSegment x="2.078" y="4.183"/> + <PolyStepSegment x="2.080" y="4.189"/> + <PolyStepSegment x="2.078" y="4.194"/> + <PolyStepSegment x="2.076" y="4.197"/> + <PolyStepSegment x="2.072" y="4.200"/> + <PolyStepSegment x="2.054" y="4.200"/> + <PolyStepSegment x="2.054" y="4.150"/> + <PolyStepSegment x="2.075" y="4.150"/> + <PolyStepSegment x="2.080" y="4.153"/> + <PolyStepSegment x="2.082" y="4.158"/> + <PolyStepSegment x="2.084" y="4.164"/> + <PolyStepSegment x="2.082" y="4.170"/> + <PolyStepSegment x="2.078" y="4.175"/> + <PolyStepSegment x="2.074" y="4.177"/> + <PolyStepSegment x="2.054" y="4.177"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.120" y="4.150"/> + <PolyStepSegment x="2.116" y="4.151"/> + <PolyStepSegment x="2.112" y="4.154"/> + <PolyStepSegment x="2.110" y="4.160"/> + <PolyStepSegment x="2.109" y="4.167"/> + <PolyStepSegment x="2.110" y="4.173"/> + <PolyStepSegment x="2.112" y="4.179"/> + <PolyStepSegment x="2.116" y="4.182"/> + <PolyStepSegment x="2.120" y="4.183"/> + <PolyStepSegment x="2.124" y="4.182"/> + <PolyStepSegment x="2.128" y="4.179"/> + <PolyStepSegment x="2.130" y="4.173"/> + <PolyStepSegment x="2.131" y="4.167"/> + <PolyStepSegment x="2.130" y="4.160"/> + <PolyStepSegment x="2.128" y="4.154"/> + <PolyStepSegment x="2.124" y="4.151"/> + <PolyStepSegment x="2.120" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.171" y="4.200"/> + <PolyStepSegment x="2.171" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.162" y="4.183"/> + <PolyStepSegment x="2.180" y="4.183"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.222" y="4.200"/> + <PolyStepSegment x="2.222" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.213" y="4.183"/> + <PolyStepSegment x="2.231" y="4.183"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.273" y="4.150"/> + <PolyStepSegment x="2.269" y="4.151"/> + <PolyStepSegment x="2.265" y="4.154"/> + <PolyStepSegment x="2.263" y="4.160"/> + <PolyStepSegment x="2.262" y="4.167"/> + <PolyStepSegment x="2.263" y="4.173"/> + <PolyStepSegment x="2.265" y="4.179"/> + <PolyStepSegment x="2.269" y="4.182"/> + <PolyStepSegment x="2.273" y="4.183"/> + <PolyStepSegment x="2.277" y="4.182"/> + <PolyStepSegment x="2.281" y="4.179"/> + <PolyStepSegment x="2.283" y="4.173"/> + <PolyStepSegment x="2.284" y="4.167"/> + <PolyStepSegment x="2.283" y="4.160"/> + <PolyStepSegment x="2.281" y="4.154"/> + <PolyStepSegment x="2.277" y="4.151"/> + <PolyStepSegment x="2.273" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.305" y="4.150"/> + <PolyStepSegment x="2.305" y="4.183"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.305" y="4.174"/> + <PolyStepSegment x="2.307" y="4.178"/> + <PolyStepSegment x="2.310" y="4.182"/> + <PolyStepSegment x="2.315" y="4.183"/> + <PolyStepSegment x="2.319" y="4.182"/> + <PolyStepSegment x="2.322" y="4.178"/> + <PolyStepSegment x="2.324" y="4.174"/> + <PolyStepSegment x="2.324" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.324" y="4.174"/> + <PolyStepSegment x="2.326" y="4.178"/> + <PolyStepSegment x="2.329" y="4.182"/> + <PolyStepSegment x="2.333" y="4.183"/> + <PolyStepSegment x="2.338" y="4.182"/> + <PolyStepSegment x="2.341" y="4.178"/> + <PolyStepSegment x="2.343" y="4.173"/> + <PolyStepSegment x="2.343" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Top" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.369" y="4.200"/> + <PolyStepSegment x="0.369" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.354" y="4.200"/> + <PolyStepSegment x="0.384" y="4.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.420" y="4.150"/> + <PolyStepSegment x="0.416" y="4.151"/> + <PolyStepSegment x="0.412" y="4.154"/> + <PolyStepSegment x="0.410" y="4.160"/> + <PolyStepSegment x="0.409" y="4.167"/> + <PolyStepSegment x="0.410" y="4.173"/> + <PolyStepSegment x="0.412" y="4.179"/> + <PolyStepSegment x="0.416" y="4.182"/> + <PolyStepSegment x="0.420" y="4.183"/> + <PolyStepSegment x="0.424" y="4.182"/> + <PolyStepSegment x="0.428" y="4.179"/> + <PolyStepSegment x="0.430" y="4.173"/> + <PolyStepSegment x="0.431" y="4.167"/> + <PolyStepSegment x="0.430" y="4.160"/> + <PolyStepSegment x="0.428" y="4.154"/> + <PolyStepSegment x="0.424" y="4.151"/> + <PolyStepSegment x="0.420" y="4.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.460" y="4.133"/> + <PolyStepSegment x="0.460" y="4.183"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.460" y="4.176"/> + <PolyStepSegment x="0.463" y="4.180"/> + <PolyStepSegment x="0.466" y="4.182"/> + <PolyStepSegment x="0.471" y="4.183"/> + <PolyStepSegment x="0.475" y="4.182"/> + <PolyStepSegment x="0.480" y="4.178"/> + <PolyStepSegment x="0.482" y="4.172"/> + <PolyStepSegment x="0.482" y="4.167"/> + <PolyStepSegment x="0.482" y="4.161"/> + <PolyStepSegment x="0.480" y="4.155"/> + <PolyStepSegment x="0.476" y="4.152"/> + <PolyStepSegment x="0.471" y="4.150"/> + <PolyStepSegment x="0.467" y="4.151"/> + <PolyStepSegment x="0.462" y="4.153"/> + <PolyStepSegment x="0.460" y="4.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Route Keep-out" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.956" y="4.250"/> + <PolyStepSegment x="0.956" y="4.300"/> + <PolyStepSegment x="0.972" y="4.300"/> + <PolyStepSegment x="0.977" y="4.297"/> + <PolyStepSegment x="0.980" y="4.294"/> + <PolyStepSegment x="0.982" y="4.287"/> + <PolyStepSegment x="0.980" y="4.281"/> + <PolyStepSegment x="0.977" y="4.277"/> + <PolyStepSegment x="0.972" y="4.274"/> + <PolyStepSegment x="0.956" y="4.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.972" y="4.274"/> + <PolyStepSegment x="0.982" y="4.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.020" y="4.250"/> + <PolyStepSegment x="1.016" y="4.251"/> + <PolyStepSegment x="1.012" y="4.254"/> + <PolyStepSegment x="1.010" y="4.260"/> + <PolyStepSegment x="1.009" y="4.267"/> + <PolyStepSegment x="1.010" y="4.273"/> + <PolyStepSegment x="1.012" y="4.279"/> + <PolyStepSegment x="1.016" y="4.282"/> + <PolyStepSegment x="1.020" y="4.283"/> + <PolyStepSegment x="1.024" y="4.282"/> + <PolyStepSegment x="1.028" y="4.279"/> + <PolyStepSegment x="1.030" y="4.273"/> + <PolyStepSegment x="1.031" y="4.267"/> + <PolyStepSegment x="1.030" y="4.260"/> + <PolyStepSegment x="1.028" y="4.254"/> + <PolyStepSegment x="1.024" y="4.251"/> + <PolyStepSegment x="1.020" y="4.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="4.283"/> + <PolyStepSegment x="1.060" y="4.260"/> + <PolyStepSegment x="1.063" y="4.254"/> + <PolyStepSegment x="1.067" y="4.251"/> + <PolyStepSegment x="1.071" y="4.250"/> + <PolyStepSegment x="1.075" y="4.251"/> + <PolyStepSegment x="1.079" y="4.254"/> + <PolyStepSegment x="1.082" y="4.260"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.082" y="4.250"/> + <PolyStepSegment x="1.082" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.122" y="4.300"/> + <PolyStepSegment x="1.122" y="4.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.113" y="4.283"/> + <PolyStepSegment x="1.131" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.164" y="4.272"/> + <PolyStepSegment x="1.184" y="4.272"/> + <PolyStepSegment x="1.182" y="4.278"/> + <PolyStepSegment x="1.179" y="4.282"/> + <PolyStepSegment x="1.174" y="4.283"/> + <PolyStepSegment x="1.170" y="4.282"/> + <PolyStepSegment x="1.166" y="4.280"/> + <PolyStepSegment x="1.164" y="4.274"/> + <PolyStepSegment x="1.162" y="4.269"/> + <PolyStepSegment x="1.162" y="4.264"/> + <PolyStepSegment x="1.164" y="4.259"/> + <PolyStepSegment x="1.167" y="4.254"/> + <PolyStepSegment x="1.170" y="4.251"/> + <PolyStepSegment x="1.175" y="4.250"/> + <PolyStepSegment x="1.179" y="4.252"/> + <PolyStepSegment x="1.184" y="4.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.261" y="4.250"/> + <PolyStepSegment x="1.261" y="4.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.285" y="4.300"/> + <PolyStepSegment x="1.261" y="4.269"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.289" y="4.250"/> + <PolyStepSegment x="1.272" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.317" y="4.272"/> + <PolyStepSegment x="1.337" y="4.272"/> + <PolyStepSegment x="1.335" y="4.278"/> + <PolyStepSegment x="1.332" y="4.282"/> + <PolyStepSegment x="1.327" y="4.283"/> + <PolyStepSegment x="1.323" y="4.282"/> + <PolyStepSegment x="1.319" y="4.280"/> + <PolyStepSegment x="1.317" y="4.274"/> + <PolyStepSegment x="1.315" y="4.269"/> + <PolyStepSegment x="1.315" y="4.264"/> + <PolyStepSegment x="1.317" y="4.259"/> + <PolyStepSegment x="1.320" y="4.254"/> + <PolyStepSegment x="1.323" y="4.251"/> + <PolyStepSegment x="1.328" y="4.250"/> + <PolyStepSegment x="1.332" y="4.252"/> + <PolyStepSegment x="1.337" y="4.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.368" y="4.272"/> + <PolyStepSegment x="1.388" y="4.272"/> + <PolyStepSegment x="1.386" y="4.278"/> + <PolyStepSegment x="1.383" y="4.282"/> + <PolyStepSegment x="1.378" y="4.283"/> + <PolyStepSegment x="1.374" y="4.282"/> + <PolyStepSegment x="1.370" y="4.280"/> + <PolyStepSegment x="1.368" y="4.274"/> + <PolyStepSegment x="1.366" y="4.269"/> + <PolyStepSegment x="1.366" y="4.264"/> + <PolyStepSegment x="1.368" y="4.259"/> + <PolyStepSegment x="1.371" y="4.254"/> + <PolyStepSegment x="1.374" y="4.251"/> + <PolyStepSegment x="1.379" y="4.250"/> + <PolyStepSegment x="1.383" y="4.252"/> + <PolyStepSegment x="1.388" y="4.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.417" y="4.233"/> + <PolyStepSegment x="1.417" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.417" y="4.276"/> + <PolyStepSegment x="1.420" y="4.280"/> + <PolyStepSegment x="1.423" y="4.282"/> + <PolyStepSegment x="1.428" y="4.283"/> + <PolyStepSegment x="1.432" y="4.282"/> + <PolyStepSegment x="1.437" y="4.278"/> + <PolyStepSegment x="1.439" y="4.272"/> + <PolyStepSegment x="1.439" y="4.267"/> + <PolyStepSegment x="1.439" y="4.261"/> + <PolyStepSegment x="1.437" y="4.255"/> + <PolyStepSegment x="1.433" y="4.252"/> + <PolyStepSegment x="1.428" y="4.250"/> + <PolyStepSegment x="1.424" y="4.251"/> + <PolyStepSegment x="1.419" y="4.253"/> + <PolyStepSegment x="1.417" y="4.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.471" y="4.267"/> + <PolyStepSegment x="1.487" y="4.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.530" y="4.250"/> + <PolyStepSegment x="1.526" y="4.251"/> + <PolyStepSegment x="1.522" y="4.254"/> + <PolyStepSegment x="1.520" y="4.260"/> + <PolyStepSegment x="1.519" y="4.267"/> + <PolyStepSegment x="1.520" y="4.273"/> + <PolyStepSegment x="1.522" y="4.279"/> + <PolyStepSegment x="1.526" y="4.282"/> + <PolyStepSegment x="1.530" y="4.283"/> + <PolyStepSegment x="1.534" y="4.282"/> + <PolyStepSegment x="1.538" y="4.279"/> + <PolyStepSegment x="1.540" y="4.273"/> + <PolyStepSegment x="1.541" y="4.267"/> + <PolyStepSegment x="1.540" y="4.260"/> + <PolyStepSegment x="1.538" y="4.254"/> + <PolyStepSegment x="1.534" y="4.251"/> + <PolyStepSegment x="1.530" y="4.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.570" y="4.283"/> + <PolyStepSegment x="1.570" y="4.260"/> + <PolyStepSegment x="1.573" y="4.254"/> + <PolyStepSegment x="1.577" y="4.251"/> + <PolyStepSegment x="1.581" y="4.250"/> + <PolyStepSegment x="1.585" y="4.251"/> + <PolyStepSegment x="1.589" y="4.254"/> + <PolyStepSegment x="1.592" y="4.260"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.592" y="4.250"/> + <PolyStepSegment x="1.592" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.632" y="4.300"/> + <PolyStepSegment x="1.632" y="4.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.623" y="4.283"/> + <PolyStepSegment x="1.641" y="4.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="-0.218"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_50X50"/> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="0.719"/> + <UserPrimitiveRef id="FIGURE_TRIANGLE_75X75"/> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="1.657"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_30X30"/> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="2.594"/> + <UserPrimitiveRef id="FIGURE_DIAMOND_50X65"/> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="3.532"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_50_+"/> + </Features> + </Set> + <Set> + <Features> + <Location x="6.050" y="4.469"/> + <UserPrimitiveRef id="FIGURE_CIRCLE_625_A"/> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.300" y="1.150"/> + <PolyStepCurve x="3.550" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="0.650" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.050" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="1.150" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.978" y="1.930"/> + <PolyStepSegment x="3.328" y="2.213"/> + <PolyStepCurve x="3.335" y="2.283" centerX="3.296227" centerY="2.251527" clockwise="false"/> + <PolyStepCurve x="3.265" y="2.291" centerX="3.295975" centerY="2.251785" clockwise="false"/> + <PolyStepSegment x="2.915" y="2.008"/> + <PolyStepCurve x="2.908" y="1.937" centerX="2.946444" centerY="1.969055" clockwise="false"/> + <PolyStepCurve x="2.978" y="1.930" centerX="2.946527" centerY="1.968770" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.853" y="2.847"/> + <PolyStepSegment x="3.171" y="2.529"/> + <PolyStepCurve x="3.241" y="2.529" centerX="3.206000" centerY="2.564666" clockwise="false"/> + <PolyStepCurve x="3.241" y="2.600" centerX="3.205974" centerY="2.564500" clockwise="false"/> + <PolyStepSegment x="2.923" y="2.918"/> + <PolyStepCurve x="2.853" y="2.918" centerX="2.888000" centerY="2.882659" clockwise="false"/> + <PolyStepCurve x="2.853" y="2.847" centerX="2.887983" centerY="2.882500" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.900" y="2.350"/> + <PolyStepSegment x="3.350" y="2.350"/> + <PolyStepCurve x="3.400" y="2.400" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="3.350" y="2.450" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepSegment x="2.900" y="2.450"/> + <PolyStepCurve x="2.850" y="2.400" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="2.900" y="2.350" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="2.900"/> + <PolyStepSegment x="3.450" y="2.450"/> + <PolyStepCurve x="3.500" y="2.400" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepCurve x="3.550" y="2.450" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepSegment x="3.550" y="2.900"/> + <PolyStepCurve x="3.500" y="2.950" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="3.450" y="2.900" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.0" y="-0.250"/> + <PolyStepSegment x="3.250" y="-0.250"/> + <PolyStepSegment x="3.500" y="0.0"/> + <PolyStepSegment x="3.500" y="0.300"/> + <PolyStepCurve x="3.535" y="0.386" centerX="3.621307" centerY="0.300753" clockwise="true"/> + <PolyStepSegment x="3.550" y="0.400"/> + <PolyStepSegment x="3.614" y="0.464"/> + <PolyStepCurve x="3.650" y="0.550" centerX="3.528979" centerY="0.550125" clockwise="false"/> + <PolyStepSegment x="3.650" y="1.300"/> + <PolyStepSegment x="3.400" y="1.500"/> + <PolyStepSegment x="3.400" y="1.700"/> + <PolyStepCurve x="3.450" y="1.700" centerX="3.425000" centerY="1.700000" clockwise="true"/> + <PolyStepSegment x="3.450" y="1.550"/> + <PolyStepSegment x="3.500" y="1.500"/> + <PolyStepSegment x="3.600" y="1.500"/> + <PolyStepSegment x="3.650" y="1.550"/> + <PolyStepSegment x="3.650" y="2.150"/> + <PolyStepCurve x="3.600" y="2.200" centerX="3.600000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.500" y="2.200"/> + <PolyStepCurve x="3.450" y="2.150" centerX="3.500000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.450" y="1.900"/> + <PolyStepCurve x="3.400" y="1.900" centerX="3.425000" centerY="1.900000" clockwise="true"/> + <PolyStepSegment x="3.400" y="2.250"/> + <PolyStepSegment x="3.450" y="2.300"/> + <PolyStepSegment x="3.600" y="2.300"/> + <PolyStepSegment x="3.650" y="2.350"/> + <PolyStepSegment x="3.650" y="3.800"/> + <PolyStepCurve x="3.450" y="4.000" centerX="3.450000" centerY="3.800000" clockwise="false"/> + <PolyStepCurve x="2.450" y="4.100" centerX="3.450000" centerY="9.050000" clockwise="true"/> + <PolyStepSegment x="-0.250" y="4.100"/> + <PolyStepSegment x="-0.250" y="0.0"/> + <PolyStepCurve x="0.0" y="-0.250" centerX="0.0" centerY="0.0" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.429" y="3.017"/> + <PolyStepSegment x="3.366" y="3.095"/> + <PolyStepSegment x="3.095" y="2.873"/> + <PolyStepSegment x="3.158" y="2.796"/> + <PolyStepSegment x="3.429" y="3.017"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.350" y="3.300"/> + <PolyStepSegment x="3.400" y="3.350"/> + <PolyStepSegment x="3.150" y="3.600"/> + <PolyStepSegment x="3.100" y="3.550"/> + <PolyStepSegment x="3.350" y="3.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.400" y="3.150"/> + <PolyStepSegment x="3.400" y="3.250"/> + <PolyStepSegment x="3.050" y="3.250"/> + <PolyStepSegment x="3.050" y="3.150"/> + <PolyStepSegment x="3.400" y="3.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="3.600"/> + <PolyStepSegment x="3.550" y="3.600"/> + <PolyStepSegment x="3.550" y="3.150"/> + <PolyStepSegment x="3.450" y="3.150"/> + <PolyStepSegment x="3.450" y="3.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.150" y="0.050"/> + <PolyStepCurve x="2.250" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <PolyStepCurve x="2.150" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="0.100"/> + <PolyStepCurve x="2.050" y="0.0" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <PolyStepCurve x="2.050" y="0.100" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + </LayerFeature> + <LayerFeature layerRef="DRILL_1-6"> + <Set net="ZEROCROSS" geometry="VIA"> + <ColorRef id="COLOR_DRILL_1-6"/> + <Hole name="H1" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.650" y="0.475"/> + </Set> + <Set net="WE" geometry="VIA"> + <Hole name="H2" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.650" y="2.975"/> + </Set> + <Set net="WE" geometry="VIA"> + <Hole name="H3" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.393" y="3.390"/> + </Set> + <Set net="WAVEOUT2" geometry="VIA"> + <Hole name="H4" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.525" y="0.150"/> + </Set> + <Set net="WAVEOUT2" geometry="VIA"> + <Hole name="H5" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.500" y="0.600"/> + </Set> + <Set net="WAVEOUT1" geometry="VIA"> + <Hole name="H6" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.550" y="0.525"/> + </Set> + <Set net="WAVEOUT1" geometry="VIA"> + <Hole name="H7" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.575" y="0.925"/> + </Set> + <Set net="VSS" geometry="VIA"> + <Hole name="H8" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.100" y="0.750"/> + </Set> + <Set net="VSS" geometry="VIA"> + <Hole name="H9" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.500" y="0.750"/> + </Set> + <Set net="VSS" geometry="VIA"> + <Hole name="H10" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.100" y="0.275"/> + </Set> + <Set net="VHI" geometry="VIA"> + <Hole name="H11" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.500" y="0.675"/> + </Set> + <Set net="VDD" geometry="VIA"> + <Hole name="H12" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.550" y="0.225"/> + </Set> + <Set net="VDD" geometry="VIA"> + <Hole name="H13" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.600" y="0.875"/> + </Set> + <Set net="UN1SIP108PA60" geometry="VIA"> + <Hole name="H14" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.950" y="0.400"/> + </Set> + <Set net="UN1DAC71PDAC7" geometry="VIA"> + <Hole name="H15" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.850" y="3.625"/> + </Set> + <Set net="UN1DAC71PDAC7" geometry="VIA"> + <Hole name="H16" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.825" y="2.075"/> + </Set> + <Set net="UN1DAC71PDAC6" geometry="VIA"> + <Hole name="H17" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.875" y="2.025"/> + </Set> + <Set net="UN1DAC71PDAC5" geometry="VIA"> + <Hole name="H18" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.875" y="2.175"/> + </Set> + <Set net="UN1DAC71PDAC4" geometry="VIA"> + <Hole name="H19" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.900" y="2.100"/> + </Set> + <Set net="UN1DAC71PDAC3" geometry="VIA"> + <Hole name="H20" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.675" y="2.725"/> + </Set> + <Set net="UN1DAC71PDAC3" geometry="VIA"> + <Hole name="H21" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.625" y="2.175"/> + </Set> + <Set net="UN1DAC71PDAC2" geometry="VIA"> + <Hole name="H22" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.562" y="2.150"/> + </Set> + <Set net="UN1DAC71PDAC2" geometry="VIA"> + <Hole name="H23" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.600" y="2.725"/> + </Set> + <Set net="UN1DAC71PDAC2" geometry="VIA"> + <Hole name="H24" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.100" y="2.800"/> + </Set> + <Set net="UN1CA345020PCMP20" geometry="VIA"> + <Hole name="H25" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.225" y="0.975"/> + </Set> + <Set net="UN1CA345020PCMP10" geometry="VIA"> + <Hole name="H26" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.150" y="0.800"/> + </Set> + <Set net="UN1100E15169PQ50" geometry="VIA"> + <Hole name="H27" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.500" y="1.575"/> + </Set> + <Set net="UN1100E15169PQ10" geometry="VIA"> + <Hole name="H28" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.425" y="1.775"/> + </Set> + <Set net="UN1100E15168PQ10" geometry="VIA"> + <Hole name="H29" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.572" y="1.472"/> + </Set> + <Set net="UN1100E15168PQ0" geometry="VIA"> + <Hole name="H30" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.624" y="1.624"/> + </Set> + <Set net="UN1100E11698PY10" geometry="VIA"> + <Hole name="H31" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.750" y="2.325"/> + </Set> + <Set net="UN1100E11698PY10" geometry="VIA"> + <Hole name="H32" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.500" y="3.250"/> + </Set> + <Set net="UN1100E11698PY10" geometry="VIA"> + <Hole name="H33" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.600" y="2.275"/> + </Set> + <Set net="UN1100E11698PY0" geometry="VIA"> + <Hole name="H34" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.400" y="3.300"/> + </Set> + <Set net="UN1100E11697PY10" geometry="VIA"> + <Hole name="H35" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.550" y="3.725"/> + </Set> + <Set net="UN1100E11697PY10" geometry="VIA"> + <Hole name="H36" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.325" y="3.725"/> + </Set> + <Set net="UN1100E11697PY10" geometry="VIA"> + <Hole name="H37" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.325" y="0.875"/> + </Set> + <Set net="UN1100E11697PY10" geometry="VIA"> + <Hole name="H38" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.550" y="3.075"/> + </Set> + <Set net="UN1100E11697PB0" geometry="VIA"> + <Hole name="H39" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.856" y="2.200"/> + </Set> + <Set net="UN1100E11697PB0" geometry="VIA"> + <Hole name="H40" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.550" y="3.450"/> + </Set> + <Set net="UN1100E11697PA0" geometry="VIA"> + <Hole name="H41" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.925" y="2.225"/> + </Set> + <Set net="UN1100E11697PA0" geometry="VIA"> + <Hole name="H42" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.700" y="3.400"/> + </Set> + <Set net="UN1100E116100PY0" geometry="VIA"> + <Hole name="H43" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.450" y="0.350"/> + </Set> + <Set net="UN1100E116100PY0" geometry="VIA"> + <Hole name="H44" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.375" y="0.725"/> + </Set> + <Set net="UN1100E116100PY0" geometry="VIA"> + <Hole name="H45" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.100" y="1.875"/> + </Set> + <Set net="UN1100E101101PY10" geometry="VIA"> + <Hole name="H46" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.775" y="3.350"/> + </Set> + <Set net="UN1100E101101PY10" geometry="VIA"> + <Hole name="H47" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.850" y="2.900"/> + </Set> + <Set net="UN1100E101101PY10" geometry="VIA"> + <Hole name="H48" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.200" y="2.425"/> + </Set> + <Set net="UN1100E101101PY10" geometry="VIA"> + <Hole name="H49" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.575" y="2.525"/> + </Set> + <Set net="UN1100E101101PY0" geometry="VIA"> + <Hole name="H50" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.872" y="1.428"/> + </Set> + <Set net="UN1100E101101PY0" geometry="VIA"> + <Hole name="H51" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.147" y="1.428"/> + </Set> + <Set net="UN1100E101101PY0" geometry="VIA"> + <Hole name="H52" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.775" y="2.375"/> + </Set> + <Set net="UN1100E101101PC0" geometry="VIA"> + <Hole name="H53" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.500" y="0.425"/> + </Set> + <Set net="UN1100E101101PC0" geometry="VIA"> + <Hole name="H54" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.075" y="1.925"/> + </Set> + <Set net="UN1100E101101PC0" geometry="VIA"> + <Hole name="H55" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.075" y="1.625"/> + </Set> + <Set net="UN1100E101101PC0" geometry="VIA"> + <Hole name="H56" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.100" y="1.650"/> + </Set> + <Set net="RESET" geometry="VIA"> + <Hole name="H57" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.436" y="2.900"/> + </Set> + <Set net="RESET" geometry="VIA"> + <Hole name="H58" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.400" y="3.239"/> + </Set> + <Set net="QUADRANT1" geometry="VIA"> + <Hole name="H59" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.375" y="2.550"/> + </Set> + <Set net="QUADRANT1" geometry="VIA"> + <Hole name="H60" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.346" y="3.322"/> + </Set> + <Set net="QUADRANT0" geometry="VIA"> + <Hole name="H61" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.200" y="3.400"/> + </Set> + <Set net="QUADRANT0" geometry="VIA"> + <Hole name="H62" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.350" y="2.600"/> + </Set> + <Set net="PHASE2" geometry="VIA"> + <Hole name="H63" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.175" y="2.975"/> + </Set> + <Set net="PHASE2" geometry="VIA"> + <Hole name="H64" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.100" y="3.200"/> + </Set> + <Set net="PHASE1" geometry="VIA"> + <Hole name="H65" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.113" y="2.988"/> + </Set> + <Set net="PHASE1" geometry="VIA"> + <Hole name="H66" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.113" y="3.063"/> + </Set> + <Set net="PHASE0" geometry="VIA"> + <Hole name="H67" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.225" y="3.050"/> + </Set> + <Set net="PHASE0" geometry="VIA"> + <Hole name="H68" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.025" y="3.000"/> + </Set> + <Set net="OE" geometry="VIA"> + <Hole name="H69" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.325" y="3.025"/> + </Set> + <Set net="OE" geometry="VIA"> + <Hole name="H70" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.425" y="3.449"/> + </Set> + <Set net="DISABLE" geometry="VIA"> + <Hole name="H71" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.400" y="0.225"/> + </Set> + <Set net="DISABLE" geometry="VIA"> + <Hole name="H72" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.050" y="2.300"/> + </Set> + <Set net="B6" geometry="VIA"> + <Hole name="H73" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.875" y="0.725"/> + </Set> + <Set net="B6" geometry="VIA"> + <Hole name="H74" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.875" y="1.925"/> + </Set> + <Set net="B5" geometry="VIA"> + <Hole name="H75" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.800" y="0.875"/> + </Set> + <Set net="B4" geometry="VIA"> + <Hole name="H76" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.175" y="0.825"/> + </Set> + <Set net="B3" geometry="VIA"> + <Hole name="H77" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.750" y="1.200"/> + </Set> + <Set net="B3" geometry="VIA"> + <Hole name="H78" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.650" y="1.750"/> + </Set> + <Set net="B2" geometry="VIA"> + <Hole name="H79" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.550" y="1.850"/> + </Set> + <Set net="B2" geometry="VIA"> + <Hole name="H80" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.700" y="1.225"/> + </Set> + <Set net="B1" geometry="VIA"> + <Hole name="H81" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.542" y="1.600"/> + </Set> + <Set net="B1" geometry="VIA"> + <Hole name="H82" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.725" y="0.750"/> + </Set> + <Set net="B0" geometry="VIA"> + <Hole name="H83" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.925" y="0.725"/> + </Set> + <Set net="ADDRESS9" geometry="VIA"> + <Hole name="H84" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.925" y="2.650"/> + </Set> + <Set net="ADDRESS9" geometry="VIA"> + <Hole name="H85" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.975" y="3.650"/> + </Set> + <Set net="ADDRESS9" geometry="VIA"> + <Hole name="H86" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.975" y="3.400"/> + </Set> + <Set net="ADDRESS8" geometry="VIA"> + <Hole name="H87" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.850" y="2.575"/> + </Set> + <Set net="ADDRESS8" geometry="VIA"> + <Hole name="H88" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.000" y="3.300"/> + </Set> + <Set net="ADDRESS8" geometry="VIA"> + <Hole name="H89" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.350" y="3.625"/> + </Set> + <Set net="ADDRESS8" geometry="VIA"> + <Hole name="H90" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.350" y="3.500"/> + </Set> + <Set net="ADDRESS7" geometry="VIA"> + <Hole name="H91" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.900" y="2.700"/> + </Set> + <Set net="ADDRESS7" geometry="VIA"> + <Hole name="H92" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="2.050" y="3.250"/> + </Set> + <Set net="ADDRESS6" geometry="VIA"> + <Hole name="H93" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.875" y="2.775"/> + </Set> + <Set net="ADDRESS6" geometry="VIA"> + <Hole name="H94" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.975" y="3.200"/> + </Set> + <Set net="ADDRESS5" geometry="VIA"> + <Hole name="H95" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.850" y="3.075"/> + </Set> + <Set net="ADDRESS5" geometry="VIA"> + <Hole name="H96" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.100" y="3.500"/> + </Set> + <Set net="ADDRESS5" geometry="VIA"> + <Hole name="H97" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.775" y="2.500"/> + </Set> + <Set net="ADDRESS4" geometry="VIA"> + <Hole name="H98" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.750" y="2.700"/> + </Set> + <Set net="ADDRESS4" geometry="VIA"> + <Hole name="H99" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.800" y="3.075"/> + </Set> + <Set net="ADDRESS3" geometry="VIA"> + <Hole name="H100" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.725" y="2.600"/> + </Set> + <Set net="ADDRESS3" geometry="VIA"> + <Hole name="H101" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.700" y="3.050"/> + </Set> + <Set net="ADDRESS2" geometry="VIA"> + <Hole name="H102" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.625" y="2.675"/> + </Set> + <Set net="ADDRESS2" geometry="VIA"> + <Hole name="H103" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.600" y="3.050"/> + </Set> + <Set net="ADDRESS1" geometry="VIA"> + <Hole name="H104" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.500" y="2.600"/> + </Set> + <Set net="ADDRESS1" geometry="VIA"> + <Hole name="H105" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.550" y="3.075"/> + </Set> + <Set net="ADDRESS0" geometry="VIA"> + <Hole name="H106" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.400" y="3.125"/> + </Set> + <Set net="ADDRESS0" geometry="VIA"> + <Hole name="H107" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="1.400" y="2.800"/> + </Set> + <Set net="GND2" geometry="VIA"> + <Hole name="H108" diameter="0.024" platingStatus="VIA" plusTol="0.0" minusTol="0.0" x="0.675" y="3.350"/> + </Set> + <Set net="VCC" geometry="52C31D" componentRef="J1"> + <Hole name="H109" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="2.800"/> + </Set> + <Set net="VCC" geometry="52C31D" componentRef="J1"> + <Hole name="H110" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="2.900"/> + </Set> + <Set net="Unused_00000258EB6E0430" geometry="52C31D" componentRef="J1"> + <Hole name="H111" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="3.000"/> + </Set> + <Set net="GND" geometry="52C31D" componentRef="J1"> + <Hole name="H112" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="3.100"/> + </Set> + <Set net="GND" geometry="52C31D" componentRef="J1"> + <Hole name="H113" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="3.200"/> + </Set> + <Set net="VCC" geometry="52C31D" componentRef="J1"> + <Hole name="H114" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.050" y="2.800"/> + </Set> + <Set net="VCC" geometry="52C31D" componentRef="J1"> + <Hole name="H115" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.050" y="2.900"/> + </Set> + <Set net="Unused_00000258EB6E0498" geometry="52C31D" componentRef="J1"> + <Hole name="H116" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.050" y="3.000"/> + </Set> + <Set net="GND" geometry="52C31D" componentRef="J1"> + <Hole name="H117" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.050" y="3.100"/> + </Set> + <Set net="GND" geometry="52C31D" componentRef="J1"> + <Hole name="H118" diameter="0.031" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="0.050" y="3.200"/> + </Set> + <Set geometry="100C75D" componentRef="J1"> + <Hole name="H119" diameter="0.075" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="2.600"/> + </Set> + <Set geometry="100C75D" componentRef="J1"> + <Hole name="H120" diameter="0.075" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="-0.050" y="3.400"/> + </Set> + <Set geometry="TH-125-NP"> + <Hole name="H121" diameter="0.125" platingStatus="NONPLATED" plusTol="0.0" minusTol="0.0" x="3.000" y="3.750"/> + </Set> + <Set geometry="TH-125-NP"> + <Hole name="H122" diameter="0.125" platingStatus="NONPLATED" plusTol="0.0" minusTol="0.0" x="3.000" y="0.0"/> + </Set> + <Set geometry="TH-125-NP"> + <Hole name="H123" diameter="0.125" platingStatus="NONPLATED" plusTol="0.0" minusTol="0.0" x="0.0" y="0.0"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H124" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.600" y="2.150"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H125" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.800" y="2.250"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H126" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.600" y="2.850"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H127" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.800" y="3.050"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H128" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.600" y="3.550"/> + </Set> + <Set geometry="CIR62D35P" componentRef="OR_00000258EB6DF090"> + <Hole name="H129" diameter="0.035" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.800" y="3.650"/> + </Set> + <Set net="B6" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H130" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="2.100"/> + </Set> + <Set net="B5" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H131" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.944"/> + </Set> + <Set net="B4" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H132" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.788"/> + </Set> + <Set net="B7" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H133" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.631"/> + </Set> + <Set net="B0" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H134" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.475"/> + </Set> + <Set net="B1" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H135" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.319"/> + </Set> + <Set net="B3" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H136" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.162"/> + </Set> + <Set net="B2" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H137" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="1.006"/> + </Set> + <Set net="VTTA" geometry="CIR75_51D" componentRef="R15"> + <Hole name="H138" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.275" y="0.850"/> + </Set> + <Set net="UN1100E15169PQ0" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H139" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="3.184" y="1.534"/> + </Set> + <Set net="UN1100E15169PQ30" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H140" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="3.074" y="1.424"/> + </Set> + <Set net="UN1100E15169PQ20" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H141" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.963" y="1.313"/> + </Set> + <Set net="UN1100E15169PQ40" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H142" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.852" y="1.202"/> + </Set> + <Set net="UN1100E15168PQ0" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H143" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.742" y="1.092"/> + </Set> + <Set net="UN1100E15168PQ10" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H144" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.632" y="0.982"/> + </Set> + <Set net="UN1100E15169PQ50" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H145" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.521" y="0.871"/> + </Set> + <Set net="UN1100E15169PQ10" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H146" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.410" y="0.760"/> + </Set> + <Set net="VTTD" geometry="CIR75_51D" componentRef="R14"> + <Hole name="H147" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.300" y="0.650"/> + </Set> + <Set net="UN1DAC71PDAC2" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H148" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="3.550"/> + </Set> + <Set net="UN1DAC71PDAC7" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H149" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="3.394"/> + </Set> + <Set net="UN1DAC71PDAC5" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H150" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="3.238"/> + </Set> + <Set net="UN1DAC71PDAC4" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H151" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="3.081"/> + </Set> + <Set net="UN1DAC71PDAC6" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H152" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="2.925"/> + </Set> + <Set net="UN1DAC71PDAC3" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H153" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="2.769"/> + </Set> + <Set net="UN1DAC71PDAC1" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H154" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="2.612"/> + </Set> + <Set net="UN1DAC71PDAC0" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H155" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="2.456"/> + </Set> + <Set net="VTTD" geometry="CIR75_51D" componentRef="R9"> + <Hole name="H156" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.250" y="2.300"/> + </Set> + <Set net="UN1100E101101PY10" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H157" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="3.300" y="0.500"/> + </Set> + <Set net="Unused_00000258EB6E0638" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H158" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="3.144" y="0.500"/> + </Set> + <Set net="UN1100E101101PC0" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H159" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.988" y="0.500"/> + </Set> + <Set net="UN1100E101101PY0" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H160" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.831" y="0.500"/> + </Set> + <Set net="DISABLE" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H161" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.675" y="0.500"/> + </Set> + <Set net="UN1SIP108PA60" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H162" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.519" y="0.500"/> + </Set> + <Set net="Unused_00000258EB6E05D0" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H163" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.362" y="0.500"/> + </Set> + <Set net="UN1100E116100PY0" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H164" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.206" y="0.500"/> + </Set> + <Set net="VTTD" geometry="CIR75_51D" componentRef="R2"> + <Hole name="H165" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.050" y="0.500"/> + </Set> + <Set net="UN1100E11698PY0" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H166" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="3.550"/> + </Set> + <Set net="UN1100E11697PA0" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H167" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="3.394"/> + </Set> + <Set net="UN1100E11697PB0" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H168" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="3.238"/> + </Set> + <Set net="UN1100E11697PY10" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H169" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="3.081"/> + </Set> + <Set net="UN1100E11697PY0" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H170" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="2.925"/> + </Set> + <Set net="Unused_00000258EB6E0568" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H171" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="2.769"/> + </Set> + <Set net="Unused_00000258EB6E0500" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H172" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="2.612"/> + </Set> + <Set net="UN1100E11698PY10" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H173" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="2.456"/> + </Set> + <Set net="VTTD" geometry="CIR75_51D" componentRef="R1"> + <Hole name="H174" diameter="0.051" platingStatus="PLATED" plusTol="0.0" minusTol="0.0" x="2.450" y="2.300"/> + </Set> + </LayerFeature> + <LayerFeature layerRef="asm_top"> + <Set> + <ColorRef id="COLOR_asm_top"/> + </Set> + <Set componentRef="J1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.138" y="3.300"/> + <PolyStepSegment x="0.062" y="3.300"/> + <PolyStepCurve x="0.050" y="3.312" centerX="0.062500" centerY="3.312500" clockwise="true"/> + <PolyStepSegment x="0.050" y="3.488"/> + <PolyStepCurve x="0.038" y="3.500" centerX="0.037500" centerY="3.487500" clockwise="false"/> + <PolyStepSegment x="-0.138" y="3.500"/> + <PolyStepCurve x="-0.150" y="3.488" centerX="-0.137500" centerY="3.487500" clockwise="false"/> + <PolyStepSegment x="-0.150" y="3.312"/> + <PolyStepCurve x="-0.162" y="3.300" centerX="-0.162500" centerY="3.312500" clockwise="true"/> + <PolyStepSegment x="-0.188" y="3.300"/> + <PolyStepCurve x="-0.200" y="3.288" centerX="-0.187500" centerY="3.287500" clockwise="false"/> + <PolyStepSegment x="-0.200" y="2.712"/> + <PolyStepCurve x="-0.188" y="2.700" centerX="-0.187500" centerY="2.712500" clockwise="false"/> + <PolyStepSegment x="-0.162" y="2.700"/> + <PolyStepCurve x="-0.150" y="2.688" centerX="-0.162500" centerY="2.687500" clockwise="true"/> + <PolyStepSegment x="-0.150" y="2.512"/> + <PolyStepCurve x="-0.138" y="2.500" centerX="-0.137500" centerY="2.512500" clockwise="false"/> + <PolyStepSegment x="0.038" y="2.500"/> + <PolyStepCurve x="0.050" y="2.512" centerX="0.037500" centerY="2.512500" clockwise="false"/> + <PolyStepSegment x="0.050" y="2.688"/> + <PolyStepCurve x="0.062" y="2.700" centerX="0.062500" centerY="2.687500" clockwise="true"/> + <PolyStepSegment x="0.138" y="2.700"/> + <PolyStepCurve x="0.150" y="2.712" centerX="0.137500" centerY="2.712500" clockwise="false"/> + <PolyStepSegment x="0.150" y="3.288"/> + <PolyStepCurve x="0.138" y="3.300" centerX="0.137500" centerY="3.287500" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="J1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.050" y="3.462"/> + <PolyStepCurve x="-0.050" y="3.338" centerX="-0.050000" centerY="3.400000" clockwise="false"/> + <PolyStepCurve x="-0.050" y="3.462" centerX="-0.050000" centerY="3.400000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="J1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.050" y="2.538"/> + <PolyStepCurve x="-0.050" y="2.662" centerX="-0.050000" centerY="2.600000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="J1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.050" y="2.538"/> + <PolyStepCurve x="-0.050" y="2.662" centerX="-0.050000" centerY="2.600000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="J1"> + <NonstandardAttribute name="TEXT" value="J1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.138" y="2.858"/> + <PolyStepSegment x="-0.131" y="2.862"/> + <PolyStepSegment x="-0.127" y="2.866"/> + <PolyStepSegment x="-0.125" y="2.872"/> + <PolyStepSegment x="-0.127" y="2.878"/> + <PolyStepSegment x="-0.131" y="2.883"/> + <PolyStepSegment x="-0.138" y="2.888"/> + <PolyStepSegment x="-0.146" y="2.889"/> + <PolyStepSegment x="-0.188" y="2.889"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.125" y="2.936"/> + <PolyStepSegment x="-0.188" y="2.936"/> + <PolyStepSegment x="-0.175" y="2.927"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.125" y="2.927"/> + <PolyStepSegment x="-0.125" y="2.946"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="J1"> + <NonstandardAttribute name="TEXT" value="pt. no." type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.159" y="2.784"/> + <PolyStepSegment x="0.096" y="2.784"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.105" y="2.784"/> + <PolyStepSegment x="0.100" y="2.788"/> + <PolyStepSegment x="0.097" y="2.792"/> + <PolyStepSegment x="0.096" y="2.798"/> + <PolyStepSegment x="0.097" y="2.804"/> + <PolyStepSegment x="0.102" y="2.809"/> + <PolyStepSegment x="0.110" y="2.812"/> + <PolyStepSegment x="0.117" y="2.813"/> + <PolyStepSegment x="0.124" y="2.812"/> + <PolyStepSegment x="0.132" y="2.809"/> + <PolyStepSegment x="0.136" y="2.805"/> + <PolyStepSegment x="0.138" y="2.798"/> + <PolyStepSegment x="0.137" y="2.793"/> + <PolyStepSegment x="0.134" y="2.788"/> + <PolyStepSegment x="0.130" y="2.784"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.075" y="2.861"/> + <PolyStepSegment x="0.138" y="2.861"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.096" y="2.851"/> + <PolyStepSegment x="0.096" y="2.872"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.140" y="2.924"/> + <PolyStepSegment x="0.139" y="2.923"/> + <PolyStepSegment x="0.137" y="2.923"/> + <PolyStepSegment x="0.136" y="2.924"/> + <PolyStepSegment x="0.137" y="2.926"/> + <PolyStepSegment x="0.139" y="2.926"/> + <PolyStepSegment x="0.140" y="2.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.138" y="3.037"/> + <PolyStepSegment x="0.096" y="3.037"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.107" y="3.037"/> + <PolyStepSegment x="0.101" y="3.040"/> + <PolyStepSegment x="0.097" y="3.045"/> + <PolyStepSegment x="0.096" y="3.051"/> + <PolyStepSegment x="0.097" y="3.057"/> + <PolyStepSegment x="0.101" y="3.061"/> + <PolyStepSegment x="0.109" y="3.064"/> + <PolyStepSegment x="0.138" y="3.064"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.138" y="3.113"/> + <PolyStepSegment x="0.137" y="3.109"/> + <PolyStepSegment x="0.133" y="3.104"/> + <PolyStepSegment x="0.125" y="3.101"/> + <PolyStepSegment x="0.117" y="3.099"/> + <PolyStepSegment x="0.109" y="3.101"/> + <PolyStepSegment x="0.101" y="3.104"/> + <PolyStepSegment x="0.097" y="3.109"/> + <PolyStepSegment x="0.096" y="3.113"/> + <PolyStepSegment x="0.097" y="3.118"/> + <PolyStepSegment x="0.101" y="3.123"/> + <PolyStepSegment x="0.109" y="3.126"/> + <PolyStepSegment x="0.117" y="3.127"/> + <PolyStepSegment x="0.125" y="3.126"/> + <PolyStepSegment x="0.133" y="3.123"/> + <PolyStepSegment x="0.137" y="3.118"/> + <PolyStepSegment x="0.138" y="3.113"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.140" y="3.176"/> + <PolyStepSegment x="0.139" y="3.175"/> + <PolyStepSegment x="0.137" y="3.175"/> + <PolyStepSegment x="0.136" y="3.176"/> + <PolyStepSegment x="0.137" y="3.178"/> + <PolyStepSegment x="0.139" y="3.178"/> + <PolyStepSegment x="0.140" y="3.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="OR_00000258EB6DF090"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.650" y="2.050"/> + <PolyStepSegment x="2.650" y="2.125"/> + <PolyStepSegment x="2.625" y="2.125"/> + <PolyStepSegment x="2.625" y="2.175"/> + <PolyStepSegment x="2.650" y="2.175"/> + <PolyStepSegment x="2.650" y="2.825"/> + <PolyStepSegment x="2.625" y="2.825"/> + <PolyStepSegment x="2.625" y="2.875"/> + <PolyStepSegment x="2.650" y="2.875"/> + <PolyStepSegment x="2.650" y="3.525"/> + <PolyStepSegment x="2.625" y="3.525"/> + <PolyStepSegment x="2.625" y="3.575"/> + <PolyStepSegment x="2.650" y="3.575"/> + <PolyStepSegment x="2.650" y="3.850"/> + <PolyStepSegment x="2.750" y="3.850"/> + <PolyStepSegment x="2.750" y="3.675"/> + <PolyStepSegment x="2.775" y="3.675"/> + <PolyStepSegment x="2.775" y="3.625"/> + <PolyStepSegment x="2.750" y="3.625"/> + <PolyStepSegment x="2.750" y="3.075"/> + <PolyStepSegment x="2.775" y="3.075"/> + <PolyStepSegment x="2.775" y="3.025"/> + <PolyStepSegment x="2.750" y="3.025"/> + <PolyStepSegment x="2.750" y="2.275"/> + <PolyStepSegment x="2.775" y="2.275"/> + <PolyStepSegment x="2.775" y="2.225"/> + <PolyStepSegment x="2.750" y="2.225"/> + <PolyStepSegment x="2.750" y="2.050"/> + <PolyStepSegment x="2.650" y="2.050"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.900" y="0.800"/> + <PolyStepSegment x="0.900" y="1.000"/> + <PolyStepSegment x="0.800" y="1.000"/> + <PolyStepSegment x="0.800" y="0.800"/> + <PolyStepSegment x="0.900" y="0.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C7"> + <NonstandardAttribute name="TEXT" value="C7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.716" y="0.883"/> + <PolyStepSegment x="0.712" y="0.877"/> + <PolyStepSegment x="0.710" y="0.870"/> + <PolyStepSegment x="0.710" y="0.863"/> + <PolyStepSegment x="0.714" y="0.855"/> + <PolyStepSegment x="0.720" y="0.848"/> + <PolyStepSegment x="0.728" y="0.843"/> + <PolyStepSegment x="0.740" y="0.840"/> + <PolyStepSegment x="0.751" y="0.839"/> + <PolyStepSegment x="0.763" y="0.841"/> + <PolyStepSegment x="0.770" y="0.843"/> + <PolyStepSegment x="0.778" y="0.849"/> + <PolyStepSegment x="0.783" y="0.855"/> + <PolyStepSegment x="0.785" y="0.862"/> + <PolyStepSegment x="0.785" y="0.869"/> + <PolyStepSegment x="0.783" y="0.875"/> + <PolyStepSegment x="0.779" y="0.881"/> + <PolyStepSegment x="0.774" y="0.885"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.785" y="0.935"/> + <PolyStepSegment x="0.769" y="0.937"/> + <PolyStepSegment x="0.755" y="0.940"/> + <PolyStepSegment x="0.742" y="0.944"/> + <PolyStepSegment x="0.729" y="0.948"/> + <PolyStepSegment x="0.710" y="0.956"/> + <PolyStepSegment x="0.710" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.732"/> + <PolyStepSegment x="0.772" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.738"/> + <PolyStepSegment x="0.794" y="0.738"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.744"/> + <PolyStepSegment x="0.772" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.730"/> + <PolyStepSegment x="0.782" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.754"/> + <PolyStepSegment x="0.772" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.760"/> + <PolyStepSegment x="0.794" y="0.760"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.766"/> + <PolyStepSegment x="0.772" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.752"/> + <PolyStepSegment x="0.782" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.776"/> + <PolyStepSegment x="0.772" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.782"/> + <PolyStepSegment x="0.794" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.788"/> + <PolyStepSegment x="0.772" y="0.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.774"/> + <PolyStepSegment x="0.782" y="0.790"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.732"/> + <PolyStepSegment x="0.742" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.738"/> + <PolyStepSegment x="0.764" y="0.738"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.744"/> + <PolyStepSegment x="0.742" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.730"/> + <PolyStepSegment x="0.752" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.754"/> + <PolyStepSegment x="0.742" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.760"/> + <PolyStepSegment x="0.764" y="0.760"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.766"/> + <PolyStepSegment x="0.742" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.752"/> + <PolyStepSegment x="0.752" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.776"/> + <PolyStepSegment x="0.742" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.782"/> + <PolyStepSegment x="0.764" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.788"/> + <PolyStepSegment x="0.742" y="0.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.774"/> + <PolyStepSegment x="0.752" y="0.790"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.200" y="0.812"/> + <PolyStepSegment x="0.200" y="1.012"/> + <PolyStepSegment x="0.100" y="1.012"/> + <PolyStepSegment x="0.100" y="0.812"/> + <PolyStepSegment x="0.200" y="0.812"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C2"> + <NonstandardAttribute name="TEXT" value="C2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.016" y="0.895"/> + <PolyStepSegment x="0.012" y="0.889"/> + <PolyStepSegment x="0.010" y="0.882"/> + <PolyStepSegment x="0.010" y="0.875"/> + <PolyStepSegment x="0.014" y="0.867"/> + <PolyStepSegment x="0.020" y="0.860"/> + <PolyStepSegment x="0.028" y="0.855"/> + <PolyStepSegment x="0.040" y="0.852"/> + <PolyStepSegment x="0.051" y="0.851"/> + <PolyStepSegment x="0.063" y="0.853"/> + <PolyStepSegment x="0.070" y="0.855"/> + <PolyStepSegment x="0.078" y="0.861"/> + <PolyStepSegment x="0.083" y="0.867"/> + <PolyStepSegment x="0.085" y="0.874"/> + <PolyStepSegment x="0.085" y="0.881"/> + <PolyStepSegment x="0.083" y="0.887"/> + <PolyStepSegment x="0.079" y="0.893"/> + <PolyStepSegment x="0.074" y="0.897"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.022" y="0.931"/> + <PolyStepSegment x="0.015" y="0.937"/> + <PolyStepSegment x="0.011" y="0.943"/> + <PolyStepSegment x="0.010" y="0.951"/> + <PolyStepSegment x="0.012" y="0.960"/> + <PolyStepSegment x="0.019" y="0.967"/> + <PolyStepSegment x="0.026" y="0.969"/> + <PolyStepSegment x="0.034" y="0.968"/> + <PolyStepSegment x="0.040" y="0.964"/> + <PolyStepSegment x="0.053" y="0.945"/> + <PolyStepSegment x="0.061" y="0.937"/> + <PolyStepSegment x="0.074" y="0.931"/> + <PolyStepSegment x="0.085" y="0.929"/> + <PolyStepSegment x="0.085" y="0.969"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.744"/> + <PolyStepSegment x="0.072" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.069" y="0.750"/> + <PolyStepSegment x="0.094" y="0.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.756"/> + <PolyStepSegment x="0.072" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.082" y="0.742"/> + <PolyStepSegment x="0.082" y="0.758"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.766"/> + <PolyStepSegment x="0.072" y="0.778"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.069" y="0.772"/> + <PolyStepSegment x="0.094" y="0.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.778"/> + <PolyStepSegment x="0.072" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.082" y="0.764"/> + <PolyStepSegment x="0.082" y="0.780"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.788"/> + <PolyStepSegment x="0.072" y="0.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.069" y="0.794"/> + <PolyStepSegment x="0.094" y="0.794"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.091" y="0.800"/> + <PolyStepSegment x="0.072" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.082" y="0.786"/> + <PolyStepSegment x="0.082" y="0.802"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.744"/> + <PolyStepSegment x="0.042" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.039" y="0.750"/> + <PolyStepSegment x="0.064" y="0.750"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.756"/> + <PolyStepSegment x="0.042" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.052" y="0.742"/> + <PolyStepSegment x="0.052" y="0.758"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.766"/> + <PolyStepSegment x="0.042" y="0.778"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.039" y="0.772"/> + <PolyStepSegment x="0.064" y="0.772"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.778"/> + <PolyStepSegment x="0.042" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.052" y="0.764"/> + <PolyStepSegment x="0.052" y="0.780"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.788"/> + <PolyStepSegment x="0.042" y="0.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.039" y="0.794"/> + <PolyStepSegment x="0.064" y="0.794"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.061" y="0.800"/> + <PolyStepSegment x="0.042" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.052" y="0.786"/> + <PolyStepSegment x="0.052" y="0.802"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.500" y="1.000"/> + <PolyStepSegment x="0.500" y="0.800"/> + <PolyStepSegment x="0.600" y="0.800"/> + <PolyStepSegment x="0.600" y="1.000"/> + <PolyStepSegment x="0.500" y="1.000"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C3"> + <NonstandardAttribute name="TEXT" value="C3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.684" y="0.917"/> + <PolyStepSegment x="0.688" y="0.923"/> + <PolyStepSegment x="0.690" y="0.930"/> + <PolyStepSegment x="0.690" y="0.937"/> + <PolyStepSegment x="0.686" y="0.945"/> + <PolyStepSegment x="0.680" y="0.952"/> + <PolyStepSegment x="0.672" y="0.957"/> + <PolyStepSegment x="0.660" y="0.960"/> + <PolyStepSegment x="0.649" y="0.961"/> + <PolyStepSegment x="0.637" y="0.959"/> + <PolyStepSegment x="0.630" y="0.957"/> + <PolyStepSegment x="0.622" y="0.951"/> + <PolyStepSegment x="0.617" y="0.945"/> + <PolyStepSegment x="0.615" y="0.938"/> + <PolyStepSegment x="0.615" y="0.931"/> + <PolyStepSegment x="0.617" y="0.925"/> + <PolyStepSegment x="0.621" y="0.919"/> + <PolyStepSegment x="0.626" y="0.915"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.630" y="0.884"/> + <PolyStepSegment x="0.621" y="0.878"/> + <PolyStepSegment x="0.616" y="0.870"/> + <PolyStepSegment x="0.615" y="0.862"/> + <PolyStepSegment x="0.616" y="0.855"/> + <PolyStepSegment x="0.622" y="0.847"/> + <PolyStepSegment x="0.630" y="0.842"/> + <PolyStepSegment x="0.637" y="0.842"/> + <PolyStepSegment x="0.646" y="0.843"/> + <PolyStepSegment x="0.652" y="0.850"/> + <PolyStepSegment x="0.655" y="0.856"/> + <PolyStepSegment x="0.655" y="0.865"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.655" y="0.856"/> + <PolyStepSegment x="0.659" y="0.851"/> + <PolyStepSegment x="0.665" y="0.846"/> + <PolyStepSegment x="0.672" y="0.844"/> + <PolyStepSegment x="0.680" y="0.846"/> + <PolyStepSegment x="0.686" y="0.851"/> + <PolyStepSegment x="0.690" y="0.859"/> + <PolyStepSegment x="0.689" y="0.868"/> + <PolyStepSegment x="0.684" y="0.876"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.068"/> + <PolyStepSegment x="0.628" y="1.056"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.631" y="1.062"/> + <PolyStepSegment x="0.606" y="1.062"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.056"/> + <PolyStepSegment x="0.628" y="1.068"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.618" y="1.070"/> + <PolyStepSegment x="0.618" y="1.054"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.046"/> + <PolyStepSegment x="0.628" y="1.034"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.631" y="1.040"/> + <PolyStepSegment x="0.606" y="1.040"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.034"/> + <PolyStepSegment x="0.628" y="1.046"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.618" y="1.048"/> + <PolyStepSegment x="0.618" y="1.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.024"/> + <PolyStepSegment x="0.628" y="1.012"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.631" y="1.018"/> + <PolyStepSegment x="0.606" y="1.018"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.012"/> + <PolyStepSegment x="0.628" y="1.024"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.618" y="1.026"/> + <PolyStepSegment x="0.618" y="1.010"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.068"/> + <PolyStepSegment x="0.658" y="1.056"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.661" y="1.062"/> + <PolyStepSegment x="0.636" y="1.062"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.056"/> + <PolyStepSegment x="0.658" y="1.068"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.648" y="1.070"/> + <PolyStepSegment x="0.648" y="1.054"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.046"/> + <PolyStepSegment x="0.658" y="1.034"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.661" y="1.040"/> + <PolyStepSegment x="0.636" y="1.040"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.034"/> + <PolyStepSegment x="0.658" y="1.046"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.648" y="1.048"/> + <PolyStepSegment x="0.648" y="1.032"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.024"/> + <PolyStepSegment x="0.658" y="1.012"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.661" y="1.018"/> + <PolyStepSegment x="0.636" y="1.018"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="1.012"/> + <PolyStepSegment x="0.658" y="1.024"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.648" y="1.026"/> + <PolyStepSegment x="0.648" y="1.010"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="0.500"/> + <PolyStepSegment x="1.050" y="0.700"/> + <PolyStepSegment x="0.950" y="0.700"/> + <PolyStepSegment x="0.950" y="0.500"/> + <PolyStepSegment x="1.050" y="0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C5"> + <NonstandardAttribute name="TEXT" value="C5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.866" y="0.583"/> + <PolyStepSegment x="0.862" y="0.577"/> + <PolyStepSegment x="0.860" y="0.570"/> + <PolyStepSegment x="0.860" y="0.563"/> + <PolyStepSegment x="0.864" y="0.555"/> + <PolyStepSegment x="0.870" y="0.548"/> + <PolyStepSegment x="0.878" y="0.543"/> + <PolyStepSegment x="0.890" y="0.540"/> + <PolyStepSegment x="0.901" y="0.539"/> + <PolyStepSegment x="0.913" y="0.541"/> + <PolyStepSegment x="0.920" y="0.543"/> + <PolyStepSegment x="0.928" y="0.549"/> + <PolyStepSegment x="0.933" y="0.555"/> + <PolyStepSegment x="0.935" y="0.562"/> + <PolyStepSegment x="0.935" y="0.569"/> + <PolyStepSegment x="0.933" y="0.575"/> + <PolyStepSegment x="0.929" y="0.581"/> + <PolyStepSegment x="0.924" y="0.585"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.924" y="0.616"/> + <PolyStepSegment x="0.930" y="0.622"/> + <PolyStepSegment x="0.934" y="0.629"/> + <PolyStepSegment x="0.935" y="0.637"/> + <PolyStepSegment x="0.933" y="0.645"/> + <PolyStepSegment x="0.928" y="0.652"/> + <PolyStepSegment x="0.919" y="0.657"/> + <PolyStepSegment x="0.909" y="0.658"/> + <PolyStepSegment x="0.899" y="0.656"/> + <PolyStepSegment x="0.892" y="0.651"/> + <PolyStepSegment x="0.888" y="0.644"/> + <PolyStepSegment x="0.886" y="0.638"/> + <PolyStepSegment x="0.888" y="0.631"/> + <PolyStepSegment x="0.892" y="0.623"/> + <PolyStepSegment x="0.860" y="0.626"/> + <PolyStepSegment x="0.860" y="0.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.432"/> + <PolyStepSegment x="0.922" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.919" y="0.438"/> + <PolyStepSegment x="0.944" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.444"/> + <PolyStepSegment x="0.922" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.932" y="0.430"/> + <PolyStepSegment x="0.932" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.454"/> + <PolyStepSegment x="0.922" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.919" y="0.460"/> + <PolyStepSegment x="0.944" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.466"/> + <PolyStepSegment x="0.922" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.932" y="0.452"/> + <PolyStepSegment x="0.932" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.476"/> + <PolyStepSegment x="0.922" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.919" y="0.482"/> + <PolyStepSegment x="0.944" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.941" y="0.488"/> + <PolyStepSegment x="0.922" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.932" y="0.474"/> + <PolyStepSegment x="0.932" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.432"/> + <PolyStepSegment x="0.892" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.889" y="0.438"/> + <PolyStepSegment x="0.914" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.444"/> + <PolyStepSegment x="0.892" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.902" y="0.430"/> + <PolyStepSegment x="0.902" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.454"/> + <PolyStepSegment x="0.892" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.889" y="0.460"/> + <PolyStepSegment x="0.914" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.466"/> + <PolyStepSegment x="0.892" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.902" y="0.452"/> + <PolyStepSegment x="0.902" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.476"/> + <PolyStepSegment x="0.892" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.889" y="0.482"/> + <PolyStepSegment x="0.914" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.911" y="0.488"/> + <PolyStepSegment x="0.892" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.902" y="0.474"/> + <PolyStepSegment x="0.902" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="0.700"/> + <PolyStepSegment x="1.100" y="0.500"/> + <PolyStepSegment x="1.200" y="0.500"/> + <PolyStepSegment x="1.200" y="0.700"/> + <PolyStepSegment x="1.100" y="0.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C6"> + <NonstandardAttribute name="TEXT" value="C6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.284" y="0.617"/> + <PolyStepSegment x="1.288" y="0.623"/> + <PolyStepSegment x="1.290" y="0.630"/> + <PolyStepSegment x="1.290" y="0.637"/> + <PolyStepSegment x="1.286" y="0.645"/> + <PolyStepSegment x="1.280" y="0.652"/> + <PolyStepSegment x="1.272" y="0.657"/> + <PolyStepSegment x="1.260" y="0.660"/> + <PolyStepSegment x="1.249" y="0.661"/> + <PolyStepSegment x="1.237" y="0.659"/> + <PolyStepSegment x="1.230" y="0.657"/> + <PolyStepSegment x="1.222" y="0.651"/> + <PolyStepSegment x="1.217" y="0.645"/> + <PolyStepSegment x="1.215" y="0.638"/> + <PolyStepSegment x="1.215" y="0.631"/> + <PolyStepSegment x="1.217" y="0.625"/> + <PolyStepSegment x="1.221" y="0.619"/> + <PolyStepSegment x="1.226" y="0.615"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.246" y="0.581"/> + <PolyStepSegment x="1.255" y="0.574"/> + <PolyStepSegment x="1.260" y="0.569"/> + <PolyStepSegment x="1.262" y="0.561"/> + <PolyStepSegment x="1.260" y="0.555"/> + <PolyStepSegment x="1.255" y="0.550"/> + <PolyStepSegment x="1.247" y="0.546"/> + <PolyStepSegment x="1.239" y="0.545"/> + <PolyStepSegment x="1.231" y="0.546"/> + <PolyStepSegment x="1.224" y="0.550"/> + <PolyStepSegment x="1.217" y="0.556"/> + <PolyStepSegment x="1.215" y="0.562"/> + <PolyStepSegment x="1.217" y="0.570"/> + <PolyStepSegment x="1.225" y="0.576"/> + <PolyStepSegment x="1.236" y="0.580"/> + <PolyStepSegment x="1.249" y="0.581"/> + <PolyStepSegment x="1.265" y="0.579"/> + <PolyStepSegment x="1.274" y="0.576"/> + <PolyStepSegment x="1.282" y="0.571"/> + <PolyStepSegment x="1.289" y="0.565"/> + <PolyStepSegment x="1.290" y="0.558"/> + <PolyStepSegment x="1.288" y="0.552"/> + <PolyStepSegment x="1.281" y="0.547"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.768"/> + <PolyStepSegment x="1.228" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.231" y="0.762"/> + <PolyStepSegment x="1.206" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.756"/> + <PolyStepSegment x="1.228" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="0.770"/> + <PolyStepSegment x="1.218" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.746"/> + <PolyStepSegment x="1.228" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.231" y="0.740"/> + <PolyStepSegment x="1.206" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.734"/> + <PolyStepSegment x="1.228" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="0.748"/> + <PolyStepSegment x="1.218" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.724"/> + <PolyStepSegment x="1.228" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.231" y="0.718"/> + <PolyStepSegment x="1.206" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.209" y="0.712"/> + <PolyStepSegment x="1.228" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="0.726"/> + <PolyStepSegment x="1.218" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.768"/> + <PolyStepSegment x="1.258" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.261" y="0.762"/> + <PolyStepSegment x="1.236" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.756"/> + <PolyStepSegment x="1.258" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.248" y="0.770"/> + <PolyStepSegment x="1.248" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.746"/> + <PolyStepSegment x="1.258" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.261" y="0.740"/> + <PolyStepSegment x="1.236" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.734"/> + <PolyStepSegment x="1.258" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.248" y="0.748"/> + <PolyStepSegment x="1.248" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.724"/> + <PolyStepSegment x="1.258" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.261" y="0.718"/> + <PolyStepSegment x="1.236" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.239" y="0.712"/> + <PolyStepSegment x="1.258" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.248" y="0.726"/> + <PolyStepSegment x="1.248" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.600" y="0.500"/> + <PolyStepSegment x="0.600" y="0.700"/> + <PolyStepSegment x="0.500" y="0.700"/> + <PolyStepSegment x="0.500" y="0.500"/> + <PolyStepSegment x="0.600" y="0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C4"> + <NonstandardAttribute name="TEXT" value="C4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.416" y="0.583"/> + <PolyStepSegment x="0.412" y="0.577"/> + <PolyStepSegment x="0.410" y="0.570"/> + <PolyStepSegment x="0.410" y="0.563"/> + <PolyStepSegment x="0.414" y="0.555"/> + <PolyStepSegment x="0.420" y="0.548"/> + <PolyStepSegment x="0.428" y="0.543"/> + <PolyStepSegment x="0.440" y="0.540"/> + <PolyStepSegment x="0.451" y="0.539"/> + <PolyStepSegment x="0.463" y="0.541"/> + <PolyStepSegment x="0.470" y="0.543"/> + <PolyStepSegment x="0.478" y="0.549"/> + <PolyStepSegment x="0.483" y="0.555"/> + <PolyStepSegment x="0.485" y="0.562"/> + <PolyStepSegment x="0.485" y="0.569"/> + <PolyStepSegment x="0.483" y="0.575"/> + <PolyStepSegment x="0.479" y="0.581"/> + <PolyStepSegment x="0.474" y="0.585"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="0.648"/> + <PolyStepSegment x="0.410" y="0.648"/> + <PolyStepSegment x="0.464" y="0.614"/> + <PolyStepSegment x="0.464" y="0.660"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.432"/> + <PolyStepSegment x="0.472" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.438"/> + <PolyStepSegment x="0.494" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.444"/> + <PolyStepSegment x="0.472" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.430"/> + <PolyStepSegment x="0.482" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.454"/> + <PolyStepSegment x="0.472" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.460"/> + <PolyStepSegment x="0.494" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.466"/> + <PolyStepSegment x="0.472" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.452"/> + <PolyStepSegment x="0.482" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.476"/> + <PolyStepSegment x="0.472" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.482"/> + <PolyStepSegment x="0.494" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.488"/> + <PolyStepSegment x="0.472" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.474"/> + <PolyStepSegment x="0.482" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.432"/> + <PolyStepSegment x="0.442" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.438"/> + <PolyStepSegment x="0.464" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.444"/> + <PolyStepSegment x="0.442" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.430"/> + <PolyStepSegment x="0.452" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.454"/> + <PolyStepSegment x="0.442" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.460"/> + <PolyStepSegment x="0.464" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.466"/> + <PolyStepSegment x="0.442" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.452"/> + <PolyStepSegment x="0.452" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.476"/> + <PolyStepSegment x="0.442" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.482"/> + <PolyStepSegment x="0.464" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.488"/> + <PolyStepSegment x="0.442" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.474"/> + <PolyStepSegment x="0.452" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.650" y="0.400"/> + <PolyStepSegment x="0.650" y="0.200"/> + <PolyStepSegment x="0.750" y="0.200"/> + <PolyStepSegment x="0.750" y="0.400"/> + <PolyStepSegment x="0.650" y="0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R3"> + <NonstandardAttribute name="TEXT" value="R3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.765" y="0.357"/> + <PolyStepSegment x="0.840" y="0.357"/> + <PolyStepSegment x="0.840" y="0.333"/> + <PolyStepSegment x="0.836" y="0.326"/> + <PolyStepSegment x="0.831" y="0.321"/> + <PolyStepSegment x="0.821" y="0.319"/> + <PolyStepSegment x="0.811" y="0.321"/> + <PolyStepSegment x="0.805" y="0.327"/> + <PolyStepSegment x="0.801" y="0.333"/> + <PolyStepSegment x="0.801" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.801" y="0.333"/> + <PolyStepSegment x="0.765" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.780" y="0.284"/> + <PolyStepSegment x="0.771" y="0.278"/> + <PolyStepSegment x="0.766" y="0.270"/> + <PolyStepSegment x="0.765" y="0.262"/> + <PolyStepSegment x="0.766" y="0.255"/> + <PolyStepSegment x="0.772" y="0.247"/> + <PolyStepSegment x="0.780" y="0.242"/> + <PolyStepSegment x="0.787" y="0.242"/> + <PolyStepSegment x="0.796" y="0.243"/> + <PolyStepSegment x="0.802" y="0.250"/> + <PolyStepSegment x="0.805" y="0.256"/> + <PolyStepSegment x="0.805" y="0.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.805" y="0.256"/> + <PolyStepSegment x="0.809" y="0.251"/> + <PolyStepSegment x="0.815" y="0.246"/> + <PolyStepSegment x="0.822" y="0.244"/> + <PolyStepSegment x="0.830" y="0.246"/> + <PolyStepSegment x="0.836" y="0.251"/> + <PolyStepSegment x="0.840" y="0.259"/> + <PolyStepSegment x="0.839" y="0.268"/> + <PolyStepSegment x="0.834" y="0.276"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.468"/> + <PolyStepSegment x="0.778" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.781" y="0.462"/> + <PolyStepSegment x="0.756" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.456"/> + <PolyStepSegment x="0.778" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.768" y="0.470"/> + <PolyStepSegment x="0.768" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.446"/> + <PolyStepSegment x="0.778" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.781" y="0.440"/> + <PolyStepSegment x="0.756" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.434"/> + <PolyStepSegment x="0.778" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.768" y="0.448"/> + <PolyStepSegment x="0.768" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.424"/> + <PolyStepSegment x="0.778" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.781" y="0.418"/> + <PolyStepSegment x="0.756" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="0.412"/> + <PolyStepSegment x="0.778" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.768" y="0.426"/> + <PolyStepSegment x="0.768" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.468"/> + <PolyStepSegment x="0.808" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.811" y="0.462"/> + <PolyStepSegment x="0.786" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.456"/> + <PolyStepSegment x="0.808" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.798" y="0.470"/> + <PolyStepSegment x="0.798" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.446"/> + <PolyStepSegment x="0.808" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.811" y="0.440"/> + <PolyStepSegment x="0.786" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.434"/> + <PolyStepSegment x="0.808" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.798" y="0.448"/> + <PolyStepSegment x="0.798" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.424"/> + <PolyStepSegment x="0.808" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.811" y="0.418"/> + <PolyStepSegment x="0.786" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.412"/> + <PolyStepSegment x="0.808" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.798" y="0.426"/> + <PolyStepSegment x="0.798" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.600" y="0.200"/> + <PolyStepSegment x="0.600" y="0.400"/> + <PolyStepSegment x="0.500" y="0.400"/> + <PolyStepSegment x="0.500" y="0.200"/> + <PolyStepSegment x="0.600" y="0.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R7"> + <NonstandardAttribute name="TEXT" value="R7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="0.243"/> + <PolyStepSegment x="0.410" y="0.243"/> + <PolyStepSegment x="0.410" y="0.267"/> + <PolyStepSegment x="0.414" y="0.274"/> + <PolyStepSegment x="0.419" y="0.279"/> + <PolyStepSegment x="0.429" y="0.281"/> + <PolyStepSegment x="0.439" y="0.279"/> + <PolyStepSegment x="0.445" y="0.273"/> + <PolyStepSegment x="0.449" y="0.267"/> + <PolyStepSegment x="0.449" y="0.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.449" y="0.267"/> + <PolyStepSegment x="0.485" y="0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="0.335"/> + <PolyStepSegment x="0.469" y="0.337"/> + <PolyStepSegment x="0.455" y="0.340"/> + <PolyStepSegment x="0.442" y="0.344"/> + <PolyStepSegment x="0.429" y="0.348"/> + <PolyStepSegment x="0.410" y="0.356"/> + <PolyStepSegment x="0.410" y="0.318"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.132"/> + <PolyStepSegment x="0.472" y="0.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.138"/> + <PolyStepSegment x="0.494" y="0.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.144"/> + <PolyStepSegment x="0.472" y="0.132"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.130"/> + <PolyStepSegment x="0.482" y="0.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.154"/> + <PolyStepSegment x="0.472" y="0.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.160"/> + <PolyStepSegment x="0.494" y="0.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.166"/> + <PolyStepSegment x="0.472" y="0.154"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.152"/> + <PolyStepSegment x="0.482" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.176"/> + <PolyStepSegment x="0.472" y="0.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.469" y="0.182"/> + <PolyStepSegment x="0.494" y="0.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.491" y="0.188"/> + <PolyStepSegment x="0.472" y="0.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.482" y="0.174"/> + <PolyStepSegment x="0.482" y="0.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.132"/> + <PolyStepSegment x="0.442" y="0.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.138"/> + <PolyStepSegment x="0.464" y="0.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.144"/> + <PolyStepSegment x="0.442" y="0.132"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.130"/> + <PolyStepSegment x="0.452" y="0.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.154"/> + <PolyStepSegment x="0.442" y="0.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.160"/> + <PolyStepSegment x="0.464" y="0.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.166"/> + <PolyStepSegment x="0.442" y="0.154"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.152"/> + <PolyStepSegment x="0.452" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.176"/> + <PolyStepSegment x="0.442" y="0.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.182"/> + <PolyStepSegment x="0.464" y="0.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.461" y="0.188"/> + <PolyStepSegment x="0.442" y="0.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.452" y="0.174"/> + <PolyStepSegment x="0.452" y="0.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.800" y="0.700"/> + <PolyStepSegment x="0.800" y="0.500"/> + <PolyStepSegment x="0.900" y="0.500"/> + <PolyStepSegment x="0.900" y="0.700"/> + <PolyStepSegment x="0.800" y="0.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R10"> + <NonstandardAttribute name="TEXT" value="R10" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.915" y="0.694"/> + <PolyStepSegment x="0.990" y="0.694"/> + <PolyStepSegment x="0.990" y="0.670"/> + <PolyStepSegment x="0.986" y="0.663"/> + <PolyStepSegment x="0.981" y="0.658"/> + <PolyStepSegment x="0.971" y="0.656"/> + <PolyStepSegment x="0.961" y="0.658"/> + <PolyStepSegment x="0.955" y="0.664"/> + <PolyStepSegment x="0.951" y="0.670"/> + <PolyStepSegment x="0.951" y="0.694"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.951" y="0.670"/> + <PolyStepSegment x="0.915" y="0.656"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.915" y="0.600"/> + <PolyStepSegment x="0.990" y="0.600"/> + <PolyStepSegment x="0.975" y="0.611"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.915" y="0.611"/> + <PolyStepSegment x="0.915" y="0.589"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.990" y="0.525"/> + <PolyStepSegment x="0.988" y="0.532"/> + <PolyStepSegment x="0.981" y="0.538"/> + <PolyStepSegment x="0.974" y="0.542"/> + <PolyStepSegment x="0.964" y="0.545"/> + <PolyStepSegment x="0.952" y="0.546"/> + <PolyStepSegment x="0.941" y="0.545"/> + <PolyStepSegment x="0.931" y="0.542"/> + <PolyStepSegment x="0.924" y="0.538"/> + <PolyStepSegment x="0.917" y="0.532"/> + <PolyStepSegment x="0.915" y="0.525"/> + <PolyStepSegment x="0.917" y="0.518"/> + <PolyStepSegment x="0.924" y="0.512"/> + <PolyStepSegment x="0.931" y="0.508"/> + <PolyStepSegment x="0.941" y="0.505"/> + <PolyStepSegment x="0.952" y="0.504"/> + <PolyStepSegment x="0.964" y="0.505"/> + <PolyStepSegment x="0.974" y="0.508"/> + <PolyStepSegment x="0.981" y="0.512"/> + <PolyStepSegment x="0.988" y="0.518"/> + <PolyStepSegment x="0.990" y="0.525"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R10"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.768"/> + <PolyStepSegment x="0.928" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.931" y="0.762"/> + <PolyStepSegment x="0.906" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.756"/> + <PolyStepSegment x="0.928" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.918" y="0.770"/> + <PolyStepSegment x="0.918" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.746"/> + <PolyStepSegment x="0.928" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.931" y="0.740"/> + <PolyStepSegment x="0.906" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.734"/> + <PolyStepSegment x="0.928" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.918" y="0.748"/> + <PolyStepSegment x="0.918" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.724"/> + <PolyStepSegment x="0.928" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.931" y="0.718"/> + <PolyStepSegment x="0.906" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.909" y="0.712"/> + <PolyStepSegment x="0.928" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.918" y="0.726"/> + <PolyStepSegment x="0.918" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R10"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.768"/> + <PolyStepSegment x="0.958" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.961" y="0.762"/> + <PolyStepSegment x="0.936" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.756"/> + <PolyStepSegment x="0.958" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.948" y="0.770"/> + <PolyStepSegment x="0.948" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.746"/> + <PolyStepSegment x="0.958" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.961" y="0.740"/> + <PolyStepSegment x="0.936" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.734"/> + <PolyStepSegment x="0.958" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.948" y="0.748"/> + <PolyStepSegment x="0.948" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.724"/> + <PolyStepSegment x="0.958" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.961" y="0.718"/> + <PolyStepSegment x="0.936" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.939" y="0.712"/> + <PolyStepSegment x="0.958" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.948" y="0.726"/> + <PolyStepSegment x="0.948" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.750" y="0.800"/> + <PolyStepSegment x="0.750" y="1.000"/> + <PolyStepSegment x="0.650" y="1.000"/> + <PolyStepSegment x="0.650" y="0.800"/> + <PolyStepSegment x="0.750" y="0.800"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R11"> + <NonstandardAttribute name="TEXT" value="R11" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.806"/> + <PolyStepSegment x="0.560" y="0.806"/> + <PolyStepSegment x="0.560" y="0.830"/> + <PolyStepSegment x="0.564" y="0.837"/> + <PolyStepSegment x="0.569" y="0.842"/> + <PolyStepSegment x="0.579" y="0.844"/> + <PolyStepSegment x="0.589" y="0.842"/> + <PolyStepSegment x="0.595" y="0.836"/> + <PolyStepSegment x="0.599" y="0.830"/> + <PolyStepSegment x="0.599" y="0.806"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.599" y="0.830"/> + <PolyStepSegment x="0.635" y="0.844"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.900"/> + <PolyStepSegment x="0.560" y="0.900"/> + <PolyStepSegment x="0.575" y="0.889"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.889"/> + <PolyStepSegment x="0.635" y="0.911"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.975"/> + <PolyStepSegment x="0.560" y="0.975"/> + <PolyStepSegment x="0.575" y="0.964"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.964"/> + <PolyStepSegment x="0.635" y="0.986"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R11"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.732"/> + <PolyStepSegment x="0.622" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.738"/> + <PolyStepSegment x="0.644" y="0.738"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.744"/> + <PolyStepSegment x="0.622" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.730"/> + <PolyStepSegment x="0.632" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.754"/> + <PolyStepSegment x="0.622" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.760"/> + <PolyStepSegment x="0.644" y="0.760"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.766"/> + <PolyStepSegment x="0.622" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.752"/> + <PolyStepSegment x="0.632" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.776"/> + <PolyStepSegment x="0.622" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.782"/> + <PolyStepSegment x="0.644" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.788"/> + <PolyStepSegment x="0.622" y="0.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.774"/> + <PolyStepSegment x="0.632" y="0.790"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R11"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.732"/> + <PolyStepSegment x="0.592" y="0.744"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.738"/> + <PolyStepSegment x="0.614" y="0.738"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.744"/> + <PolyStepSegment x="0.592" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.730"/> + <PolyStepSegment x="0.602" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.754"/> + <PolyStepSegment x="0.592" y="0.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.760"/> + <PolyStepSegment x="0.614" y="0.760"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.766"/> + <PolyStepSegment x="0.592" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.752"/> + <PolyStepSegment x="0.602" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.776"/> + <PolyStepSegment x="0.592" y="0.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.782"/> + <PolyStepSegment x="0.614" y="0.782"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.788"/> + <PolyStepSegment x="0.592" y="0.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.774"/> + <PolyStepSegment x="0.602" y="0.790"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R13"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.850" y="0.500"/> + <PolyStepSegment x="1.850" y="0.700"/> + <PolyStepSegment x="1.750" y="0.700"/> + <PolyStepSegment x="1.750" y="0.500"/> + <PolyStepSegment x="1.850" y="0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R13"> + <NonstandardAttribute name="TEXT" value="R13" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="0.506"/> + <PolyStepSegment x="1.660" y="0.506"/> + <PolyStepSegment x="1.660" y="0.530"/> + <PolyStepSegment x="1.664" y="0.537"/> + <PolyStepSegment x="1.669" y="0.542"/> + <PolyStepSegment x="1.679" y="0.544"/> + <PolyStepSegment x="1.689" y="0.542"/> + <PolyStepSegment x="1.695" y="0.536"/> + <PolyStepSegment x="1.699" y="0.530"/> + <PolyStepSegment x="1.699" y="0.506"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.699" y="0.530"/> + <PolyStepSegment x="1.735" y="0.544"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="0.600"/> + <PolyStepSegment x="1.660" y="0.600"/> + <PolyStepSegment x="1.675" y="0.589"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="0.589"/> + <PolyStepSegment x="1.735" y="0.611"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.720" y="0.654"/> + <PolyStepSegment x="1.729" y="0.660"/> + <PolyStepSegment x="1.734" y="0.668"/> + <PolyStepSegment x="1.735" y="0.676"/> + <PolyStepSegment x="1.734" y="0.683"/> + <PolyStepSegment x="1.728" y="0.691"/> + <PolyStepSegment x="1.720" y="0.696"/> + <PolyStepSegment x="1.713" y="0.696"/> + <PolyStepSegment x="1.704" y="0.695"/> + <PolyStepSegment x="1.698" y="0.688"/> + <PolyStepSegment x="1.695" y="0.682"/> + <PolyStepSegment x="1.695" y="0.673"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.695" y="0.682"/> + <PolyStepSegment x="1.691" y="0.687"/> + <PolyStepSegment x="1.685" y="0.692"/> + <PolyStepSegment x="1.678" y="0.694"/> + <PolyStepSegment x="1.670" y="0.692"/> + <PolyStepSegment x="1.664" y="0.687"/> + <PolyStepSegment x="1.660" y="0.679"/> + <PolyStepSegment x="1.661" y="0.670"/> + <PolyStepSegment x="1.666" y="0.662"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R13"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.432"/> + <PolyStepSegment x="1.722" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.719" y="0.438"/> + <PolyStepSegment x="1.744" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.444"/> + <PolyStepSegment x="1.722" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.732" y="0.430"/> + <PolyStepSegment x="1.732" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.454"/> + <PolyStepSegment x="1.722" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.719" y="0.460"/> + <PolyStepSegment x="1.744" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.466"/> + <PolyStepSegment x="1.722" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.732" y="0.452"/> + <PolyStepSegment x="1.732" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.476"/> + <PolyStepSegment x="1.722" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.719" y="0.482"/> + <PolyStepSegment x="1.744" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.741" y="0.488"/> + <PolyStepSegment x="1.722" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.732" y="0.474"/> + <PolyStepSegment x="1.732" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R13"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.432"/> + <PolyStepSegment x="1.692" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.689" y="0.438"/> + <PolyStepSegment x="1.714" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.444"/> + <PolyStepSegment x="1.692" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.702" y="0.430"/> + <PolyStepSegment x="1.702" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.454"/> + <PolyStepSegment x="1.692" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.689" y="0.460"/> + <PolyStepSegment x="1.714" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.466"/> + <PolyStepSegment x="1.692" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.702" y="0.452"/> + <PolyStepSegment x="1.702" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.476"/> + <PolyStepSegment x="1.692" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.689" y="0.482"/> + <PolyStepSegment x="1.714" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="0.488"/> + <PolyStepSegment x="1.692" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.702" y="0.474"/> + <PolyStepSegment x="1.702" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.450" y="0.500"/> + <PolyStepSegment x="0.450" y="0.700"/> + <PolyStepSegment x="0.350" y="0.700"/> + <PolyStepSegment x="0.350" y="0.500"/> + <PolyStepSegment x="0.450" y="0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R5"> + <NonstandardAttribute name="TEXT" value="R5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.335" y="0.543"/> + <PolyStepSegment x="0.260" y="0.543"/> + <PolyStepSegment x="0.260" y="0.567"/> + <PolyStepSegment x="0.264" y="0.574"/> + <PolyStepSegment x="0.269" y="0.579"/> + <PolyStepSegment x="0.279" y="0.581"/> + <PolyStepSegment x="0.289" y="0.579"/> + <PolyStepSegment x="0.295" y="0.573"/> + <PolyStepSegment x="0.299" y="0.567"/> + <PolyStepSegment x="0.299" y="0.543"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.299" y="0.567"/> + <PolyStepSegment x="0.335" y="0.581"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="0.616"/> + <PolyStepSegment x="0.330" y="0.622"/> + <PolyStepSegment x="0.334" y="0.629"/> + <PolyStepSegment x="0.335" y="0.637"/> + <PolyStepSegment x="0.333" y="0.645"/> + <PolyStepSegment x="0.328" y="0.652"/> + <PolyStepSegment x="0.319" y="0.657"/> + <PolyStepSegment x="0.309" y="0.658"/> + <PolyStepSegment x="0.299" y="0.656"/> + <PolyStepSegment x="0.292" y="0.651"/> + <PolyStepSegment x="0.288" y="0.644"/> + <PolyStepSegment x="0.286" y="0.638"/> + <PolyStepSegment x="0.288" y="0.631"/> + <PolyStepSegment x="0.292" y="0.623"/> + <PolyStepSegment x="0.260" y="0.626"/> + <PolyStepSegment x="0.260" y="0.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.432"/> + <PolyStepSegment x="0.322" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.319" y="0.438"/> + <PolyStepSegment x="0.344" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.444"/> + <PolyStepSegment x="0.322" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.332" y="0.430"/> + <PolyStepSegment x="0.332" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.454"/> + <PolyStepSegment x="0.322" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.319" y="0.460"/> + <PolyStepSegment x="0.344" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.466"/> + <PolyStepSegment x="0.322" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.332" y="0.452"/> + <PolyStepSegment x="0.332" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.476"/> + <PolyStepSegment x="0.322" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.319" y="0.482"/> + <PolyStepSegment x="0.344" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="0.488"/> + <PolyStepSegment x="0.322" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.332" y="0.474"/> + <PolyStepSegment x="0.332" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.432"/> + <PolyStepSegment x="0.292" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.289" y="0.438"/> + <PolyStepSegment x="0.314" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.444"/> + <PolyStepSegment x="0.292" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.302" y="0.430"/> + <PolyStepSegment x="0.302" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.454"/> + <PolyStepSegment x="0.292" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.289" y="0.460"/> + <PolyStepSegment x="0.314" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.466"/> + <PolyStepSegment x="0.292" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.302" y="0.452"/> + <PolyStepSegment x="0.302" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.476"/> + <PolyStepSegment x="0.292" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.289" y="0.482"/> + <PolyStepSegment x="0.314" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.488"/> + <PolyStepSegment x="0.292" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.302" y="0.474"/> + <PolyStepSegment x="0.302" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.350" y="0.400"/> + <PolyStepSegment x="0.350" y="0.200"/> + <PolyStepSegment x="0.450" y="0.200"/> + <PolyStepSegment x="0.450" y="0.400"/> + <PolyStepSegment x="0.350" y="0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R8"> + <NonstandardAttribute name="TEXT" value="R8" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.465" y="0.357"/> + <PolyStepSegment x="0.540" y="0.357"/> + <PolyStepSegment x="0.540" y="0.333"/> + <PolyStepSegment x="0.536" y="0.326"/> + <PolyStepSegment x="0.531" y="0.321"/> + <PolyStepSegment x="0.521" y="0.319"/> + <PolyStepSegment x="0.511" y="0.321"/> + <PolyStepSegment x="0.505" y="0.327"/> + <PolyStepSegment x="0.501" y="0.333"/> + <PolyStepSegment x="0.501" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.501" y="0.333"/> + <PolyStepSegment x="0.465" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.465" y="0.263"/> + <PolyStepSegment x="0.466" y="0.256"/> + <PolyStepSegment x="0.470" y="0.249"/> + <PolyStepSegment x="0.476" y="0.244"/> + <PolyStepSegment x="0.485" y="0.242"/> + <PolyStepSegment x="0.494" y="0.244"/> + <PolyStepSegment x="0.501" y="0.250"/> + <PolyStepSegment x="0.505" y="0.258"/> + <PolyStepSegment x="0.505" y="0.268"/> + <PolyStepSegment x="0.508" y="0.273"/> + <PolyStepSegment x="0.514" y="0.278"/> + <PolyStepSegment x="0.522" y="0.280"/> + <PolyStepSegment x="0.531" y="0.277"/> + <PolyStepSegment x="0.538" y="0.270"/> + <PolyStepSegment x="0.540" y="0.263"/> + <PolyStepSegment x="0.538" y="0.256"/> + <PolyStepSegment x="0.531" y="0.249"/> + <PolyStepSegment x="0.522" y="0.246"/> + <PolyStepSegment x="0.514" y="0.248"/> + <PolyStepSegment x="0.508" y="0.253"/> + <PolyStepSegment x="0.505" y="0.258"/> + <PolyStepSegment x="0.505" y="0.268"/> + <PolyStepSegment x="0.501" y="0.276"/> + <PolyStepSegment x="0.494" y="0.282"/> + <PolyStepSegment x="0.485" y="0.284"/> + <PolyStepSegment x="0.476" y="0.282"/> + <PolyStepSegment x="0.470" y="0.277"/> + <PolyStepSegment x="0.466" y="0.270"/> + <PolyStepSegment x="0.465" y="0.263"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R8"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.468"/> + <PolyStepSegment x="0.478" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.481" y="0.462"/> + <PolyStepSegment x="0.456" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.456"/> + <PolyStepSegment x="0.478" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.468" y="0.470"/> + <PolyStepSegment x="0.468" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.446"/> + <PolyStepSegment x="0.478" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.481" y="0.440"/> + <PolyStepSegment x="0.456" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.434"/> + <PolyStepSegment x="0.478" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.468" y="0.448"/> + <PolyStepSegment x="0.468" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.424"/> + <PolyStepSegment x="0.478" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.481" y="0.418"/> + <PolyStepSegment x="0.456" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.459" y="0.412"/> + <PolyStepSegment x="0.478" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.468" y="0.426"/> + <PolyStepSegment x="0.468" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R8"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.468"/> + <PolyStepSegment x="0.508" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.511" y="0.462"/> + <PolyStepSegment x="0.486" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.456"/> + <PolyStepSegment x="0.508" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.498" y="0.470"/> + <PolyStepSegment x="0.498" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.446"/> + <PolyStepSegment x="0.508" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.511" y="0.440"/> + <PolyStepSegment x="0.486" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.434"/> + <PolyStepSegment x="0.508" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.498" y="0.448"/> + <PolyStepSegment x="0.498" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.424"/> + <PolyStepSegment x="0.508" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.511" y="0.418"/> + <PolyStepSegment x="0.486" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.412"/> + <PolyStepSegment x="0.508" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.498" y="0.426"/> + <PolyStepSegment x="0.498" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.250" y="0.400"/> + <PolyStepSegment x="1.250" y="0.200"/> + <PolyStepSegment x="1.350" y="0.200"/> + <PolyStepSegment x="1.350" y="0.400"/> + <PolyStepSegment x="1.250" y="0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R4"> + <NonstandardAttribute name="TEXT" value="R4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.365" y="0.357"/> + <PolyStepSegment x="1.440" y="0.357"/> + <PolyStepSegment x="1.440" y="0.333"/> + <PolyStepSegment x="1.436" y="0.326"/> + <PolyStepSegment x="1.431" y="0.321"/> + <PolyStepSegment x="1.421" y="0.319"/> + <PolyStepSegment x="1.411" y="0.321"/> + <PolyStepSegment x="1.405" y="0.327"/> + <PolyStepSegment x="1.401" y="0.333"/> + <PolyStepSegment x="1.401" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.401" y="0.333"/> + <PolyStepSegment x="1.365" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.365" y="0.252"/> + <PolyStepSegment x="1.440" y="0.252"/> + <PolyStepSegment x="1.386" y="0.286"/> + <PolyStepSegment x="1.386" y="0.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.468"/> + <PolyStepSegment x="1.378" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.381" y="0.462"/> + <PolyStepSegment x="1.356" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.456"/> + <PolyStepSegment x="1.378" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.368" y="0.470"/> + <PolyStepSegment x="1.368" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.446"/> + <PolyStepSegment x="1.378" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.381" y="0.440"/> + <PolyStepSegment x="1.356" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.434"/> + <PolyStepSegment x="1.378" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.368" y="0.448"/> + <PolyStepSegment x="1.368" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.424"/> + <PolyStepSegment x="1.378" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.381" y="0.418"/> + <PolyStepSegment x="1.356" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.359" y="0.412"/> + <PolyStepSegment x="1.378" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.368" y="0.426"/> + <PolyStepSegment x="1.368" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.468"/> + <PolyStepSegment x="1.408" y="0.456"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.411" y="0.462"/> + <PolyStepSegment x="1.386" y="0.462"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.456"/> + <PolyStepSegment x="1.408" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.398" y="0.470"/> + <PolyStepSegment x="1.398" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.446"/> + <PolyStepSegment x="1.408" y="0.434"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.411" y="0.440"/> + <PolyStepSegment x="1.386" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.434"/> + <PolyStepSegment x="1.408" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.398" y="0.448"/> + <PolyStepSegment x="1.398" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.424"/> + <PolyStepSegment x="1.408" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.411" y="0.418"/> + <PolyStepSegment x="1.386" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.389" y="0.412"/> + <PolyStepSegment x="1.408" y="0.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.398" y="0.426"/> + <PolyStepSegment x="1.398" y="0.410"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.750" y="0.500"/> + <PolyStepSegment x="0.750" y="0.700"/> + <PolyStepSegment x="0.650" y="0.700"/> + <PolyStepSegment x="0.650" y="0.500"/> + <PolyStepSegment x="0.750" y="0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R6"> + <NonstandardAttribute name="TEXT" value="R6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.635" y="0.543"/> + <PolyStepSegment x="0.560" y="0.543"/> + <PolyStepSegment x="0.560" y="0.567"/> + <PolyStepSegment x="0.564" y="0.574"/> + <PolyStepSegment x="0.569" y="0.579"/> + <PolyStepSegment x="0.579" y="0.581"/> + <PolyStepSegment x="0.589" y="0.579"/> + <PolyStepSegment x="0.595" y="0.573"/> + <PolyStepSegment x="0.599" y="0.567"/> + <PolyStepSegment x="0.599" y="0.543"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.599" y="0.567"/> + <PolyStepSegment x="0.635" y="0.581"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.604" y="0.619"/> + <PolyStepSegment x="0.595" y="0.626"/> + <PolyStepSegment x="0.590" y="0.631"/> + <PolyStepSegment x="0.588" y="0.639"/> + <PolyStepSegment x="0.590" y="0.645"/> + <PolyStepSegment x="0.595" y="0.650"/> + <PolyStepSegment x="0.603" y="0.654"/> + <PolyStepSegment x="0.611" y="0.655"/> + <PolyStepSegment x="0.619" y="0.654"/> + <PolyStepSegment x="0.626" y="0.650"/> + <PolyStepSegment x="0.633" y="0.644"/> + <PolyStepSegment x="0.635" y="0.638"/> + <PolyStepSegment x="0.633" y="0.630"/> + <PolyStepSegment x="0.625" y="0.624"/> + <PolyStepSegment x="0.614" y="0.620"/> + <PolyStepSegment x="0.601" y="0.619"/> + <PolyStepSegment x="0.585" y="0.621"/> + <PolyStepSegment x="0.576" y="0.624"/> + <PolyStepSegment x="0.568" y="0.629"/> + <PolyStepSegment x="0.561" y="0.635"/> + <PolyStepSegment x="0.560" y="0.642"/> + <PolyStepSegment x="0.562" y="0.648"/> + <PolyStepSegment x="0.569" y="0.653"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.432"/> + <PolyStepSegment x="0.622" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.438"/> + <PolyStepSegment x="0.644" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.444"/> + <PolyStepSegment x="0.622" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.430"/> + <PolyStepSegment x="0.632" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.454"/> + <PolyStepSegment x="0.622" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.460"/> + <PolyStepSegment x="0.644" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.466"/> + <PolyStepSegment x="0.622" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.452"/> + <PolyStepSegment x="0.632" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.476"/> + <PolyStepSegment x="0.622" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.619" y="0.482"/> + <PolyStepSegment x="0.644" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.641" y="0.488"/> + <PolyStepSegment x="0.622" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.632" y="0.474"/> + <PolyStepSegment x="0.632" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.432"/> + <PolyStepSegment x="0.592" y="0.444"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.438"/> + <PolyStepSegment x="0.614" y="0.438"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.444"/> + <PolyStepSegment x="0.592" y="0.432"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.430"/> + <PolyStepSegment x="0.602" y="0.446"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.454"/> + <PolyStepSegment x="0.592" y="0.466"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.460"/> + <PolyStepSegment x="0.614" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.466"/> + <PolyStepSegment x="0.592" y="0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.452"/> + <PolyStepSegment x="0.602" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.476"/> + <PolyStepSegment x="0.592" y="0.488"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.589" y="0.482"/> + <PolyStepSegment x="0.614" y="0.482"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.488"/> + <PolyStepSegment x="0.592" y="0.476"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.602" y="0.474"/> + <PolyStepSegment x="0.602" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R12"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.600" y="0.700"/> + <PolyStepSegment x="1.600" y="0.500"/> + <PolyStepSegment x="1.700" y="0.500"/> + <PolyStepSegment x="1.700" y="0.700"/> + <PolyStepSegment x="1.600" y="0.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R12"> + <NonstandardAttribute name="TEXT" value="R12" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.715" y="0.694"/> + <PolyStepSegment x="1.790" y="0.694"/> + <PolyStepSegment x="1.790" y="0.670"/> + <PolyStepSegment x="1.786" y="0.663"/> + <PolyStepSegment x="1.781" y="0.658"/> + <PolyStepSegment x="1.771" y="0.656"/> + <PolyStepSegment x="1.761" y="0.658"/> + <PolyStepSegment x="1.755" y="0.664"/> + <PolyStepSegment x="1.751" y="0.670"/> + <PolyStepSegment x="1.751" y="0.694"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.751" y="0.670"/> + <PolyStepSegment x="1.715" y="0.656"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.715" y="0.600"/> + <PolyStepSegment x="1.790" y="0.600"/> + <PolyStepSegment x="1.775" y="0.611"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.715" y="0.611"/> + <PolyStepSegment x="1.715" y="0.589"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.778" y="0.543"/> + <PolyStepSegment x="1.785" y="0.537"/> + <PolyStepSegment x="1.789" y="0.531"/> + <PolyStepSegment x="1.790" y="0.523"/> + <PolyStepSegment x="1.788" y="0.514"/> + <PolyStepSegment x="1.781" y="0.507"/> + <PolyStepSegment x="1.774" y="0.505"/> + <PolyStepSegment x="1.766" y="0.506"/> + <PolyStepSegment x="1.760" y="0.510"/> + <PolyStepSegment x="1.747" y="0.529"/> + <PolyStepSegment x="1.739" y="0.537"/> + <PolyStepSegment x="1.726" y="0.543"/> + <PolyStepSegment x="1.715" y="0.545"/> + <PolyStepSegment x="1.715" y="0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R12"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.768"/> + <PolyStepSegment x="1.728" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.731" y="0.762"/> + <PolyStepSegment x="1.706" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.756"/> + <PolyStepSegment x="1.728" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.718" y="0.770"/> + <PolyStepSegment x="1.718" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.746"/> + <PolyStepSegment x="1.728" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.731" y="0.740"/> + <PolyStepSegment x="1.706" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.734"/> + <PolyStepSegment x="1.728" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.718" y="0.748"/> + <PolyStepSegment x="1.718" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.724"/> + <PolyStepSegment x="1.728" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.731" y="0.718"/> + <PolyStepSegment x="1.706" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="0.712"/> + <PolyStepSegment x="1.728" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.718" y="0.726"/> + <PolyStepSegment x="1.718" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R12"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.768"/> + <PolyStepSegment x="1.758" y="0.756"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.761" y="0.762"/> + <PolyStepSegment x="1.736" y="0.762"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.756"/> + <PolyStepSegment x="1.758" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.748" y="0.770"/> + <PolyStepSegment x="1.748" y="0.754"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.746"/> + <PolyStepSegment x="1.758" y="0.734"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.761" y="0.740"/> + <PolyStepSegment x="1.736" y="0.740"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.734"/> + <PolyStepSegment x="1.758" y="0.746"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.748" y="0.748"/> + <PolyStepSegment x="1.748" y="0.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.724"/> + <PolyStepSegment x="1.758" y="0.712"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.761" y="0.718"/> + <PolyStepSegment x="1.736" y="0.718"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.712"/> + <PolyStepSegment x="1.758" y="0.724"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.748" y="0.726"/> + <PolyStepSegment x="1.748" y="0.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="C1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.900" y="0.200"/> + <PolyStepSegment x="0.900" y="0.400"/> + <PolyStepSegment x="0.800" y="0.400"/> + <PolyStepSegment x="0.800" y="0.200"/> + <PolyStepSegment x="0.900" y="0.200"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C1"> + <NonstandardAttribute name="TEXT" value="C1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.716" y="0.283"/> + <PolyStepSegment x="0.712" y="0.277"/> + <PolyStepSegment x="0.710" y="0.270"/> + <PolyStepSegment x="0.710" y="0.263"/> + <PolyStepSegment x="0.714" y="0.255"/> + <PolyStepSegment x="0.720" y="0.248"/> + <PolyStepSegment x="0.728" y="0.243"/> + <PolyStepSegment x="0.740" y="0.240"/> + <PolyStepSegment x="0.751" y="0.239"/> + <PolyStepSegment x="0.763" y="0.241"/> + <PolyStepSegment x="0.770" y="0.243"/> + <PolyStepSegment x="0.778" y="0.249"/> + <PolyStepSegment x="0.783" y="0.255"/> + <PolyStepSegment x="0.785" y="0.262"/> + <PolyStepSegment x="0.785" y="0.269"/> + <PolyStepSegment x="0.783" y="0.275"/> + <PolyStepSegment x="0.779" y="0.281"/> + <PolyStepSegment x="0.774" y="0.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.785" y="0.337"/> + <PolyStepSegment x="0.710" y="0.337"/> + <PolyStepSegment x="0.725" y="0.326"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.785" y="0.326"/> + <PolyStepSegment x="0.785" y="0.348"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.132"/> + <PolyStepSegment x="0.772" y="0.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.138"/> + <PolyStepSegment x="0.794" y="0.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.144"/> + <PolyStepSegment x="0.772" y="0.132"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.130"/> + <PolyStepSegment x="0.782" y="0.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.154"/> + <PolyStepSegment x="0.772" y="0.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.160"/> + <PolyStepSegment x="0.794" y="0.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.166"/> + <PolyStepSegment x="0.772" y="0.154"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.152"/> + <PolyStepSegment x="0.782" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.176"/> + <PolyStepSegment x="0.772" y="0.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.769" y="0.182"/> + <PolyStepSegment x="0.794" y="0.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.791" y="0.188"/> + <PolyStepSegment x="0.772" y="0.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.782" y="0.174"/> + <PolyStepSegment x="0.782" y="0.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.132"/> + <PolyStepSegment x="0.742" y="0.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.138"/> + <PolyStepSegment x="0.764" y="0.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.144"/> + <PolyStepSegment x="0.742" y="0.132"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.130"/> + <PolyStepSegment x="0.752" y="0.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.154"/> + <PolyStepSegment x="0.742" y="0.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.160"/> + <PolyStepSegment x="0.764" y="0.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.166"/> + <PolyStepSegment x="0.742" y="0.154"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.152"/> + <PolyStepSegment x="0.752" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.176"/> + <PolyStepSegment x="0.742" y="0.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.739" y="0.182"/> + <PolyStepSegment x="0.764" y="0.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.188"/> + <PolyStepSegment x="0.742" y="0.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.752" y="0.174"/> + <PolyStepSegment x="0.752" y="0.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U13"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.935" y="0.168"/> + <PolyStepSegment x="1.935" y="0.433"/> + <PolyStepSegment x="1.565" y="0.433"/> + <PolyStepSegment x="1.565" y="0.168"/> + <PolyStepSegment x="1.935" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U13"> + <NonstandardAttribute name="TEXT" value="U13" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.841" y="0.257"/> + <PolyStepSegment x="1.841" y="0.311"/> + <PolyStepSegment x="1.837" y="0.322"/> + <PolyStepSegment x="1.829" y="0.330"/> + <PolyStepSegment x="1.820" y="0.332"/> + <PolyStepSegment x="1.811" y="0.330"/> + <PolyStepSegment x="1.803" y="0.322"/> + <PolyStepSegment x="1.799" y="0.311"/> + <PolyStepSegment x="1.799" y="0.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.745" y="0.332"/> + <PolyStepSegment x="1.745" y="0.257"/> + <PolyStepSegment x="1.756" y="0.272"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.756" y="0.332"/> + <PolyStepSegment x="1.734" y="0.332"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.691" y="0.317"/> + <PolyStepSegment x="1.685" y="0.326"/> + <PolyStepSegment x="1.677" y="0.331"/> + <PolyStepSegment x="1.669" y="0.332"/> + <PolyStepSegment x="1.662" y="0.331"/> + <PolyStepSegment x="1.654" y="0.325"/> + <PolyStepSegment x="1.649" y="0.317"/> + <PolyStepSegment x="1.649" y="0.310"/> + <PolyStepSegment x="1.650" y="0.301"/> + <PolyStepSegment x="1.657" y="0.295"/> + <PolyStepSegment x="1.663" y="0.292"/> + <PolyStepSegment x="1.672" y="0.292"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.663" y="0.292"/> + <PolyStepSegment x="1.658" y="0.288"/> + <PolyStepSegment x="1.653" y="0.282"/> + <PolyStepSegment x="1.651" y="0.275"/> + <PolyStepSegment x="1.653" y="0.267"/> + <PolyStepSegment x="1.658" y="0.261"/> + <PolyStepSegment x="1.666" y="0.257"/> + <PolyStepSegment x="1.675" y="0.258"/> + <PolyStepSegment x="1.683" y="0.263"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U13"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.277"/> + <PolyStepSegment x="1.832" y="0.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.283"/> + <PolyStepSegment x="1.854" y="0.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.289"/> + <PolyStepSegment x="1.832" y="0.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.275"/> + <PolyStepSegment x="1.842" y="0.291"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.299"/> + <PolyStepSegment x="1.832" y="0.311"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.305"/> + <PolyStepSegment x="1.854" y="0.305"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.311"/> + <PolyStepSegment x="1.832" y="0.299"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.297"/> + <PolyStepSegment x="1.842" y="0.313"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.321"/> + <PolyStepSegment x="1.832" y="0.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.327"/> + <PolyStepSegment x="1.854" y="0.327"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.333"/> + <PolyStepSegment x="1.832" y="0.321"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.319"/> + <PolyStepSegment x="1.842" y="0.335"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U13"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.277"/> + <PolyStepSegment x="1.857" y="0.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.854" y="0.283"/> + <PolyStepSegment x="1.879" y="0.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.289"/> + <PolyStepSegment x="1.857" y="0.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.867" y="0.275"/> + <PolyStepSegment x="1.867" y="0.291"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.299"/> + <PolyStepSegment x="1.857" y="0.311"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.854" y="0.305"/> + <PolyStepSegment x="1.879" y="0.305"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.311"/> + <PolyStepSegment x="1.857" y="0.299"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.867" y="0.297"/> + <PolyStepSegment x="1.867" y="0.313"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.321"/> + <PolyStepSegment x="1.857" y="0.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.854" y="0.327"/> + <PolyStepSegment x="1.879" y="0.327"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.876" y="0.333"/> + <PolyStepSegment x="1.857" y="0.321"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.867" y="0.319"/> + <PolyStepSegment x="1.867" y="0.335"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U13"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.277"/> + <PolyStepSegment x="1.882" y="0.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.879" y="0.283"/> + <PolyStepSegment x="1.904" y="0.283"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.289"/> + <PolyStepSegment x="1.882" y="0.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.892" y="0.275"/> + <PolyStepSegment x="1.892" y="0.291"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.299"/> + <PolyStepSegment x="1.882" y="0.311"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.879" y="0.305"/> + <PolyStepSegment x="1.904" y="0.305"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.311"/> + <PolyStepSegment x="1.882" y="0.299"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.892" y="0.297"/> + <PolyStepSegment x="1.892" y="0.313"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.321"/> + <PolyStepSegment x="1.882" y="0.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.879" y="0.327"/> + <PolyStepSegment x="1.904" y="0.327"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="0.333"/> + <PolyStepSegment x="1.882" y="0.321"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.892" y="0.319"/> + <PolyStepSegment x="1.892" y="0.335"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="0.768"/> + <PolyStepSegment x="1.460" y="1.033"/> + <PolyStepSegment x="1.240" y="1.033"/> + <PolyStepSegment x="1.240" y="0.768"/> + <PolyStepSegment x="1.460" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U7"> + <NonstandardAttribute name="TEXT" value="U7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.414" y="0.863"/> + <PolyStepSegment x="1.414" y="0.917"/> + <PolyStepSegment x="1.410" y="0.928"/> + <PolyStepSegment x="1.402" y="0.936"/> + <PolyStepSegment x="1.393" y="0.938"/> + <PolyStepSegment x="1.384" y="0.936"/> + <PolyStepSegment x="1.376" y="0.928"/> + <PolyStepSegment x="1.372" y="0.917"/> + <PolyStepSegment x="1.372" y="0.863"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.320" y="0.938"/> + <PolyStepSegment x="1.318" y="0.922"/> + <PolyStepSegment x="1.315" y="0.908"/> + <PolyStepSegment x="1.311" y="0.895"/> + <PolyStepSegment x="1.307" y="0.882"/> + <PolyStepSegment x="1.299" y="0.863"/> + <PolyStepSegment x="1.337" y="0.863"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.880"/> + <PolyStepSegment x="1.402" y="0.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.399" y="0.886"/> + <PolyStepSegment x="1.424" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.892"/> + <PolyStepSegment x="1.402" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.412" y="0.878"/> + <PolyStepSegment x="1.412" y="0.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.902"/> + <PolyStepSegment x="1.402" y="0.914"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.399" y="0.908"/> + <PolyStepSegment x="1.424" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.914"/> + <PolyStepSegment x="1.402" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.412" y="0.900"/> + <PolyStepSegment x="1.412" y="0.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.924"/> + <PolyStepSegment x="1.402" y="0.936"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.399" y="0.930"/> + <PolyStepSegment x="1.424" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.421" y="0.936"/> + <PolyStepSegment x="1.402" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.412" y="0.922"/> + <PolyStepSegment x="1.412" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.884"/> + <PolyStepSegment x="1.422" y="0.896"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.419" y="0.890"/> + <PolyStepSegment x="1.444" y="0.890"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.896"/> + <PolyStepSegment x="1.422" y="0.884"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.432" y="0.882"/> + <PolyStepSegment x="1.432" y="0.898"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.906"/> + <PolyStepSegment x="1.422" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.419" y="0.912"/> + <PolyStepSegment x="1.444" y="0.912"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.918"/> + <PolyStepSegment x="1.422" y="0.906"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.432" y="0.904"/> + <PolyStepSegment x="1.432" y="0.920"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.928"/> + <PolyStepSegment x="1.422" y="0.940"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.419" y="0.934"/> + <PolyStepSegment x="1.444" y="0.934"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.441" y="0.940"/> + <PolyStepSegment x="1.422" y="0.928"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.432" y="0.926"/> + <PolyStepSegment x="1.432" y="0.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U7"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.880"/> + <PolyStepSegment x="1.477" y="0.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.474" y="0.886"/> + <PolyStepSegment x="1.499" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.892"/> + <PolyStepSegment x="1.477" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.487" y="0.878"/> + <PolyStepSegment x="1.487" y="0.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.902"/> + <PolyStepSegment x="1.477" y="0.914"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.474" y="0.908"/> + <PolyStepSegment x="1.499" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.914"/> + <PolyStepSegment x="1.477" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.487" y="0.900"/> + <PolyStepSegment x="1.487" y="0.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.924"/> + <PolyStepSegment x="1.477" y="0.936"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.474" y="0.930"/> + <PolyStepSegment x="1.499" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.496" y="0.936"/> + <PolyStepSegment x="1.477" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.487" y="0.922"/> + <PolyStepSegment x="1.487" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U12"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="0.768"/> + <PolyStepSegment x="1.160" y="1.033"/> + <PolyStepSegment x="0.940" y="1.033"/> + <PolyStepSegment x="0.940" y="0.768"/> + <PolyStepSegment x="1.160" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U12"> + <NonstandardAttribute name="TEXT" value="U12" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.151" y="0.863"/> + <PolyStepSegment x="1.151" y="0.917"/> + <PolyStepSegment x="1.147" y="0.928"/> + <PolyStepSegment x="1.139" y="0.936"/> + <PolyStepSegment x="1.130" y="0.938"/> + <PolyStepSegment x="1.121" y="0.936"/> + <PolyStepSegment x="1.113" y="0.928"/> + <PolyStepSegment x="1.109" y="0.917"/> + <PolyStepSegment x="1.109" y="0.863"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.055" y="0.938"/> + <PolyStepSegment x="1.055" y="0.863"/> + <PolyStepSegment x="1.066" y="0.878"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.066" y="0.938"/> + <PolyStepSegment x="1.044" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.998" y="0.875"/> + <PolyStepSegment x="0.992" y="0.868"/> + <PolyStepSegment x="0.986" y="0.864"/> + <PolyStepSegment x="0.978" y="0.863"/> + <PolyStepSegment x="0.969" y="0.865"/> + <PolyStepSegment x="0.962" y="0.872"/> + <PolyStepSegment x="0.960" y="0.879"/> + <PolyStepSegment x="0.961" y="0.887"/> + <PolyStepSegment x="0.965" y="0.893"/> + <PolyStepSegment x="0.984" y="0.906"/> + <PolyStepSegment x="0.992" y="0.914"/> + <PolyStepSegment x="0.998" y="0.927"/> + <PolyStepSegment x="1.000" y="0.938"/> + <PolyStepSegment x="0.960" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U12"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.880"/> + <PolyStepSegment x="1.102" y="0.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="0.886"/> + <PolyStepSegment x="1.124" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.892"/> + <PolyStepSegment x="1.102" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.112" y="0.878"/> + <PolyStepSegment x="1.112" y="0.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.902"/> + <PolyStepSegment x="1.102" y="0.914"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="0.908"/> + <PolyStepSegment x="1.124" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.914"/> + <PolyStepSegment x="1.102" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.112" y="0.900"/> + <PolyStepSegment x="1.112" y="0.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.924"/> + <PolyStepSegment x="1.102" y="0.936"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="0.930"/> + <PolyStepSegment x="1.124" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.121" y="0.936"/> + <PolyStepSegment x="1.102" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.112" y="0.922"/> + <PolyStepSegment x="1.112" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U12"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.884"/> + <PolyStepSegment x="1.122" y="0.896"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.119" y="0.890"/> + <PolyStepSegment x="1.144" y="0.890"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.896"/> + <PolyStepSegment x="1.122" y="0.884"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.132" y="0.882"/> + <PolyStepSegment x="1.132" y="0.898"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.906"/> + <PolyStepSegment x="1.122" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.119" y="0.912"/> + <PolyStepSegment x="1.144" y="0.912"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.918"/> + <PolyStepSegment x="1.122" y="0.906"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.132" y="0.904"/> + <PolyStepSegment x="1.132" y="0.920"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.928"/> + <PolyStepSegment x="1.122" y="0.940"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.119" y="0.934"/> + <PolyStepSegment x="1.144" y="0.934"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.141" y="0.940"/> + <PolyStepSegment x="1.122" y="0.928"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.132" y="0.926"/> + <PolyStepSegment x="1.132" y="0.942"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U12"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.880"/> + <PolyStepSegment x="1.177" y="0.892"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.174" y="0.886"/> + <PolyStepSegment x="1.199" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.892"/> + <PolyStepSegment x="1.177" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.187" y="0.878"/> + <PolyStepSegment x="1.187" y="0.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.902"/> + <PolyStepSegment x="1.177" y="0.914"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.174" y="0.908"/> + <PolyStepSegment x="1.199" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.914"/> + <PolyStepSegment x="1.177" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.187" y="0.900"/> + <PolyStepSegment x="1.187" y="0.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.924"/> + <PolyStepSegment x="1.177" y="0.936"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.174" y="0.930"/> + <PolyStepSegment x="1.199" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.196" y="0.936"/> + <PolyStepSegment x="1.177" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.187" y="0.922"/> + <PolyStepSegment x="1.187" y="0.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="0.755"/> + <PolyStepSegment x="0.485" y="1.020"/> + <PolyStepSegment x="0.265" y="1.020"/> + <PolyStepSegment x="0.265" y="0.755"/> + <PolyStepSegment x="0.485" y="0.755"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U9"> + <NonstandardAttribute name="TEXT" value="U9" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.439" y="0.850"/> + <PolyStepSegment x="0.439" y="0.904"/> + <PolyStepSegment x="0.435" y="0.915"/> + <PolyStepSegment x="0.427" y="0.923"/> + <PolyStepSegment x="0.418" y="0.925"/> + <PolyStepSegment x="0.409" y="0.923"/> + <PolyStepSegment x="0.401" y="0.915"/> + <PolyStepSegment x="0.397" y="0.904"/> + <PolyStepSegment x="0.397" y="0.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.359" y="0.916"/> + <PolyStepSegment x="0.352" y="0.923"/> + <PolyStepSegment x="0.345" y="0.925"/> + <PolyStepSegment x="0.337" y="0.923"/> + <PolyStepSegment x="0.331" y="0.915"/> + <PolyStepSegment x="0.326" y="0.904"/> + <PolyStepSegment x="0.324" y="0.893"/> + <PolyStepSegment x="0.324" y="0.879"/> + <PolyStepSegment x="0.326" y="0.868"/> + <PolyStepSegment x="0.331" y="0.858"/> + <PolyStepSegment x="0.336" y="0.852"/> + <PolyStepSegment x="0.343" y="0.850"/> + <PolyStepSegment x="0.350" y="0.852"/> + <PolyStepSegment x="0.356" y="0.858"/> + <PolyStepSegment x="0.360" y="0.865"/> + <PolyStepSegment x="0.362" y="0.875"/> + <PolyStepSegment x="0.360" y="0.884"/> + <PolyStepSegment x="0.355" y="0.893"/> + <PolyStepSegment x="0.350" y="0.898"/> + <PolyStepSegment x="0.343" y="0.899"/> + <PolyStepSegment x="0.336" y="0.896"/> + <PolyStepSegment x="0.330" y="0.890"/> + <PolyStepSegment x="0.324" y="0.879"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U9"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.867"/> + <PolyStepSegment x="0.427" y="0.879"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.424" y="0.873"/> + <PolyStepSegment x="0.449" y="0.873"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.879"/> + <PolyStepSegment x="0.427" y="0.867"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.437" y="0.865"/> + <PolyStepSegment x="0.437" y="0.881"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.889"/> + <PolyStepSegment x="0.427" y="0.901"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.424" y="0.895"/> + <PolyStepSegment x="0.449" y="0.895"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.901"/> + <PolyStepSegment x="0.427" y="0.889"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.437" y="0.887"/> + <PolyStepSegment x="0.437" y="0.903"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.911"/> + <PolyStepSegment x="0.427" y="0.923"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.424" y="0.917"/> + <PolyStepSegment x="0.449" y="0.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="0.923"/> + <PolyStepSegment x="0.427" y="0.911"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.437" y="0.909"/> + <PolyStepSegment x="0.437" y="0.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U9"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.872"/> + <PolyStepSegment x="0.447" y="0.884"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.444" y="0.878"/> + <PolyStepSegment x="0.469" y="0.878"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.884"/> + <PolyStepSegment x="0.447" y="0.872"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.457" y="0.870"/> + <PolyStepSegment x="0.457" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.894"/> + <PolyStepSegment x="0.447" y="0.906"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.444" y="0.900"/> + <PolyStepSegment x="0.469" y="0.900"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.906"/> + <PolyStepSegment x="0.447" y="0.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.457" y="0.892"/> + <PolyStepSegment x="0.457" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.916"/> + <PolyStepSegment x="0.447" y="0.928"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.444" y="0.922"/> + <PolyStepSegment x="0.469" y="0.922"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.466" y="0.928"/> + <PolyStepSegment x="0.447" y="0.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.457" y="0.914"/> + <PolyStepSegment x="0.457" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U9"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.867"/> + <PolyStepSegment x="0.502" y="0.879"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.499" y="0.873"/> + <PolyStepSegment x="0.524" y="0.873"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.879"/> + <PolyStepSegment x="0.502" y="0.867"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.512" y="0.865"/> + <PolyStepSegment x="0.512" y="0.881"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.889"/> + <PolyStepSegment x="0.502" y="0.901"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.499" y="0.895"/> + <PolyStepSegment x="0.524" y="0.895"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.901"/> + <PolyStepSegment x="0.502" y="0.889"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.512" y="0.887"/> + <PolyStepSegment x="0.512" y="0.903"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.911"/> + <PolyStepSegment x="0.502" y="0.923"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.499" y="0.917"/> + <PolyStepSegment x="0.524" y="0.917"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.521" y="0.923"/> + <PolyStepSegment x="0.502" y="0.911"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.512" y="0.909"/> + <PolyStepSegment x="0.512" y="0.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.185" y="0.155"/> + <PolyStepSegment x="1.185" y="0.420"/> + <PolyStepSegment x="0.965" y="0.420"/> + <PolyStepSegment x="0.965" y="0.155"/> + <PolyStepSegment x="1.185" y="0.155"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U8"> + <NonstandardAttribute name="TEXT" value="U8" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.139" y="0.250"/> + <PolyStepSegment x="1.139" y="0.304"/> + <PolyStepSegment x="1.135" y="0.315"/> + <PolyStepSegment x="1.127" y="0.323"/> + <PolyStepSegment x="1.118" y="0.325"/> + <PolyStepSegment x="1.109" y="0.323"/> + <PolyStepSegment x="1.101" y="0.315"/> + <PolyStepSegment x="1.097" y="0.304"/> + <PolyStepSegment x="1.097" y="0.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.043" y="0.325"/> + <PolyStepSegment x="1.036" y="0.324"/> + <PolyStepSegment x="1.029" y="0.320"/> + <PolyStepSegment x="1.024" y="0.314"/> + <PolyStepSegment x="1.022" y="0.305"/> + <PolyStepSegment x="1.024" y="0.296"/> + <PolyStepSegment x="1.030" y="0.289"/> + <PolyStepSegment x="1.038" y="0.285"/> + <PolyStepSegment x="1.048" y="0.285"/> + <PolyStepSegment x="1.053" y="0.282"/> + <PolyStepSegment x="1.058" y="0.276"/> + <PolyStepSegment x="1.060" y="0.268"/> + <PolyStepSegment x="1.057" y="0.259"/> + <PolyStepSegment x="1.050" y="0.252"/> + <PolyStepSegment x="1.043" y="0.250"/> + <PolyStepSegment x="1.036" y="0.252"/> + <PolyStepSegment x="1.029" y="0.259"/> + <PolyStepSegment x="1.026" y="0.268"/> + <PolyStepSegment x="1.028" y="0.276"/> + <PolyStepSegment x="1.033" y="0.282"/> + <PolyStepSegment x="1.038" y="0.285"/> + <PolyStepSegment x="1.048" y="0.285"/> + <PolyStepSegment x="1.056" y="0.289"/> + <PolyStepSegment x="1.062" y="0.296"/> + <PolyStepSegment x="1.064" y="0.305"/> + <PolyStepSegment x="1.062" y="0.314"/> + <PolyStepSegment x="1.057" y="0.320"/> + <PolyStepSegment x="1.050" y="0.324"/> + <PolyStepSegment x="1.043" y="0.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U8"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.267"/> + <PolyStepSegment x="1.127" y="0.279"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.124" y="0.273"/> + <PolyStepSegment x="1.149" y="0.273"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.279"/> + <PolyStepSegment x="1.127" y="0.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.137" y="0.265"/> + <PolyStepSegment x="1.137" y="0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.289"/> + <PolyStepSegment x="1.127" y="0.301"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.124" y="0.295"/> + <PolyStepSegment x="1.149" y="0.295"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.301"/> + <PolyStepSegment x="1.127" y="0.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.137" y="0.287"/> + <PolyStepSegment x="1.137" y="0.303"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.311"/> + <PolyStepSegment x="1.127" y="0.323"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.124" y="0.317"/> + <PolyStepSegment x="1.149" y="0.317"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.146" y="0.323"/> + <PolyStepSegment x="1.127" y="0.311"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.137" y="0.309"/> + <PolyStepSegment x="1.137" y="0.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U8"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.272"/> + <PolyStepSegment x="1.147" y="0.284"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.144" y="0.278"/> + <PolyStepSegment x="1.169" y="0.278"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.284"/> + <PolyStepSegment x="1.147" y="0.272"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.157" y="0.270"/> + <PolyStepSegment x="1.157" y="0.286"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.294"/> + <PolyStepSegment x="1.147" y="0.306"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.144" y="0.300"/> + <PolyStepSegment x="1.169" y="0.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.306"/> + <PolyStepSegment x="1.147" y="0.294"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.157" y="0.292"/> + <PolyStepSegment x="1.157" y="0.308"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.316"/> + <PolyStepSegment x="1.147" y="0.328"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.144" y="0.322"/> + <PolyStepSegment x="1.169" y="0.322"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.166" y="0.328"/> + <PolyStepSegment x="1.147" y="0.316"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.157" y="0.314"/> + <PolyStepSegment x="1.157" y="0.330"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U8"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.267"/> + <PolyStepSegment x="1.202" y="0.279"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.199" y="0.273"/> + <PolyStepSegment x="1.224" y="0.273"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.279"/> + <PolyStepSegment x="1.202" y="0.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.212" y="0.265"/> + <PolyStepSegment x="1.212" y="0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.289"/> + <PolyStepSegment x="1.202" y="0.301"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.199" y="0.295"/> + <PolyStepSegment x="1.224" y="0.295"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.301"/> + <PolyStepSegment x="1.202" y="0.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.212" y="0.287"/> + <PolyStepSegment x="1.212" y="0.303"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.311"/> + <PolyStepSegment x="1.202" y="0.323"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.199" y="0.317"/> + <PolyStepSegment x="1.224" y="0.317"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.221" y="0.323"/> + <PolyStepSegment x="1.202" y="0.311"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.212" y="0.309"/> + <PolyStepSegment x="1.212" y="0.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.950" y="0.768"/> + <PolyStepSegment x="1.950" y="1.033"/> + <PolyStepSegment x="1.550" y="1.033"/> + <PolyStepSegment x="1.550" y="0.768"/> + <PolyStepSegment x="1.950" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U15"> + <NonstandardAttribute name="TEXT" value="U15" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.860"/> + <PolyStepSegment x="1.851" y="0.914"/> + <PolyStepSegment x="1.847" y="0.925"/> + <PolyStepSegment x="1.839" y="0.933"/> + <PolyStepSegment x="1.830" y="0.935"/> + <PolyStepSegment x="1.821" y="0.933"/> + <PolyStepSegment x="1.813" y="0.925"/> + <PolyStepSegment x="1.809" y="0.914"/> + <PolyStepSegment x="1.809" y="0.860"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.755" y="0.935"/> + <PolyStepSegment x="1.755" y="0.860"/> + <PolyStepSegment x="1.766" y="0.875"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.766" y="0.935"/> + <PolyStepSegment x="1.744" y="0.935"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.701" y="0.924"/> + <PolyStepSegment x="1.695" y="0.930"/> + <PolyStepSegment x="1.688" y="0.934"/> + <PolyStepSegment x="1.680" y="0.935"/> + <PolyStepSegment x="1.672" y="0.933"/> + <PolyStepSegment x="1.665" y="0.928"/> + <PolyStepSegment x="1.660" y="0.919"/> + <PolyStepSegment x="1.659" y="0.909"/> + <PolyStepSegment x="1.661" y="0.899"/> + <PolyStepSegment x="1.666" y="0.892"/> + <PolyStepSegment x="1.673" y="0.888"/> + <PolyStepSegment x="1.679" y="0.886"/> + <PolyStepSegment x="1.686" y="0.888"/> + <PolyStepSegment x="1.694" y="0.892"/> + <PolyStepSegment x="1.691" y="0.860"/> + <PolyStepSegment x="1.666" y="0.860"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U15"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.874"/> + <PolyStepSegment x="1.832" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.880"/> + <PolyStepSegment x="1.854" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.886"/> + <PolyStepSegment x="1.832" y="0.874"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.872"/> + <PolyStepSegment x="1.842" y="0.888"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.896"/> + <PolyStepSegment x="1.832" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.902"/> + <PolyStepSegment x="1.854" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.908"/> + <PolyStepSegment x="1.832" y="0.896"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.894"/> + <PolyStepSegment x="1.842" y="0.910"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.918"/> + <PolyStepSegment x="1.832" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.829" y="0.924"/> + <PolyStepSegment x="1.854" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.851" y="0.930"/> + <PolyStepSegment x="1.832" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.842" y="0.916"/> + <PolyStepSegment x="1.842" y="0.932"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U15"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.874"/> + <PolyStepSegment x="1.872" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.869" y="0.880"/> + <PolyStepSegment x="1.894" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.886"/> + <PolyStepSegment x="1.872" y="0.874"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.882" y="0.872"/> + <PolyStepSegment x="1.882" y="0.888"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.896"/> + <PolyStepSegment x="1.872" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.869" y="0.902"/> + <PolyStepSegment x="1.894" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.908"/> + <PolyStepSegment x="1.872" y="0.896"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.882" y="0.894"/> + <PolyStepSegment x="1.882" y="0.910"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.918"/> + <PolyStepSegment x="1.872" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.869" y="0.924"/> + <PolyStepSegment x="1.894" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="0.930"/> + <PolyStepSegment x="1.872" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.882" y="0.916"/> + <PolyStepSegment x="1.882" y="0.932"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U15"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.874"/> + <PolyStepSegment x="1.912" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.909" y="0.880"/> + <PolyStepSegment x="1.934" y="0.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.886"/> + <PolyStepSegment x="1.912" y="0.874"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.922" y="0.872"/> + <PolyStepSegment x="1.922" y="0.888"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.896"/> + <PolyStepSegment x="1.912" y="0.908"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.909" y="0.902"/> + <PolyStepSegment x="1.934" y="0.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.908"/> + <PolyStepSegment x="1.912" y="0.896"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.922" y="0.894"/> + <PolyStepSegment x="1.922" y="0.910"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.918"/> + <PolyStepSegment x="1.912" y="0.930"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.909" y="0.924"/> + <PolyStepSegment x="1.934" y="0.924"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.931" y="0.930"/> + <PolyStepSegment x="1.912" y="0.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.922" y="0.916"/> + <PolyStepSegment x="1.922" y="0.932"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.810" y="3.590"/> + <PolyStepSegment x="1.290" y="3.590"/> + <PolyStepSegment x="1.290" y="3.110"/> + <PolyStepSegment x="0.870" y="3.110"/> + <PolyStepSegment x="0.810" y="3.170"/> + <PolyStepSegment x="0.810" y="3.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.920" y="3.350"/> + <PolyStepCurve x="0.880" y="3.350" centerX="0.900000" centerY="3.350000" clockwise="false"/> + <PolyStepCurve x="0.920" y="3.350" centerX="0.900000" centerY="3.350000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U17"> + <NonstandardAttribute name="TEXT" value="U17" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.005" y="3.254"/> + <PolyStepSegment x="1.059" y="3.254"/> + <PolyStepSegment x="1.070" y="3.258"/> + <PolyStepSegment x="1.078" y="3.266"/> + <PolyStepSegment x="1.080" y="3.275"/> + <PolyStepSegment x="1.078" y="3.284"/> + <PolyStepSegment x="1.070" y="3.292"/> + <PolyStepSegment x="1.059" y="3.296"/> + <PolyStepSegment x="1.005" y="3.296"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.080" y="3.350"/> + <PolyStepSegment x="1.005" y="3.350"/> + <PolyStepSegment x="1.020" y="3.339"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.080" y="3.339"/> + <PolyStepSegment x="1.080" y="3.361"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.080" y="3.423"/> + <PolyStepSegment x="1.064" y="3.425"/> + <PolyStepSegment x="1.050" y="3.428"/> + <PolyStepSegment x="1.037" y="3.432"/> + <PolyStepSegment x="1.024" y="3.436"/> + <PolyStepSegment x="1.005" y="3.444"/> + <PolyStepSegment x="1.005" y="3.406"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U17"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.195"/> + <PolyStepSegment x="1.063" y="3.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.059" y="3.203"/> + <PolyStepSegment x="1.090" y="3.203"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.212"/> + <PolyStepSegment x="1.063" y="3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.075" y="3.192"/> + <PolyStepSegment x="1.075" y="3.215"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.226"/> + <PolyStepSegment x="1.063" y="3.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.059" y="3.234"/> + <PolyStepSegment x="1.090" y="3.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.243"/> + <PolyStepSegment x="1.063" y="3.226"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.075" y="3.223"/> + <PolyStepSegment x="1.075" y="3.246"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.257"/> + <PolyStepSegment x="1.063" y="3.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.059" y="3.265"/> + <PolyStepSegment x="1.090" y="3.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.086" y="3.274"/> + <PolyStepSegment x="1.063" y="3.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.075" y="3.254"/> + <PolyStepSegment x="1.075" y="3.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U17"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.195"/> + <PolyStepSegment x="1.103" y="3.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="3.203"/> + <PolyStepSegment x="1.130" y="3.203"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.212"/> + <PolyStepSegment x="1.103" y="3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.115" y="3.192"/> + <PolyStepSegment x="1.115" y="3.215"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.226"/> + <PolyStepSegment x="1.103" y="3.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="3.234"/> + <PolyStepSegment x="1.130" y="3.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.243"/> + <PolyStepSegment x="1.103" y="3.226"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.115" y="3.223"/> + <PolyStepSegment x="1.115" y="3.246"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.257"/> + <PolyStepSegment x="1.103" y="3.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.099" y="3.265"/> + <PolyStepSegment x="1.130" y="3.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.126" y="3.274"/> + <PolyStepSegment x="1.103" y="3.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.115" y="3.254"/> + <PolyStepSegment x="1.115" y="3.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U17"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.195"/> + <PolyStepSegment x="1.133" y="3.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.129" y="3.203"/> + <PolyStepSegment x="1.160" y="3.203"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.212"/> + <PolyStepSegment x="1.133" y="3.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.145" y="3.192"/> + <PolyStepSegment x="1.145" y="3.215"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.226"/> + <PolyStepSegment x="1.133" y="3.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.129" y="3.234"/> + <PolyStepSegment x="1.160" y="3.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.243"/> + <PolyStepSegment x="1.133" y="3.226"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.145" y="3.223"/> + <PolyStepSegment x="1.145" y="3.246"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.257"/> + <PolyStepSegment x="1.133" y="3.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.129" y="3.265"/> + <PolyStepSegment x="1.160" y="3.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.156" y="3.274"/> + <PolyStepSegment x="1.133" y="3.257"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.145" y="3.254"/> + <PolyStepSegment x="1.145" y="3.277"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="3.039"/> + <PolyStepSegment x="1.389" y="2.700"/> + <PolyStepSegment x="1.050" y="2.361"/> + <PolyStepSegment x="0.753" y="2.658"/> + <PolyStepSegment x="0.753" y="2.742"/> + <PolyStepSegment x="1.050" y="3.039"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.964" y="2.806"/> + <PolyStepCurve x="0.924" y="2.806" centerX="0.943934" centerY="2.806066" clockwise="false"/> + <PolyStepCurve x="0.964" y="2.806" centerX="0.943934" centerY="2.806066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U18"> + <NonstandardAttribute name="TEXT" value="U18" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.950" y="2.664"/> + <PolyStepSegment x="0.988" y="2.626"/> + <PolyStepSegment x="0.999" y="2.621"/> + <PolyStepSegment x="1.009" y="2.621"/> + <PolyStepSegment x="1.018" y="2.626"/> + <PolyStepSegment x="1.023" y="2.634"/> + <PolyStepSegment x="1.023" y="2.645"/> + <PolyStepSegment x="1.017" y="2.655"/> + <PolyStepSegment x="0.979" y="2.693"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.071" y="2.679"/> + <PolyStepSegment x="1.018" y="2.732"/> + <PolyStepSegment x="1.020" y="2.713"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.063" y="2.671"/> + <PolyStepSegment x="1.079" y="2.687"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.124" y="2.732"/> + <PolyStepSegment x="1.128" y="2.737"/> + <PolyStepSegment x="1.130" y="2.745"/> + <PolyStepSegment x="1.129" y="2.753"/> + <PolyStepSegment x="1.124" y="2.760"/> + <PolyStepSegment x="1.117" y="2.765"/> + <PolyStepSegment x="1.107" y="2.767"/> + <PolyStepSegment x="1.099" y="2.763"/> + <PolyStepSegment x="1.092" y="2.757"/> + <PolyStepSegment x="1.086" y="2.755"/> + <PolyStepSegment x="1.079" y="2.756"/> + <PolyStepSegment x="1.071" y="2.761"/> + <PolyStepSegment x="1.067" y="2.769"/> + <PolyStepSegment x="1.067" y="2.778"/> + <PolyStepSegment x="1.071" y="2.785"/> + <PolyStepSegment x="1.078" y="2.788"/> + <PolyStepSegment x="1.087" y="2.789"/> + <PolyStepSegment x="1.095" y="2.784"/> + <PolyStepSegment x="1.100" y="2.777"/> + <PolyStepSegment x="1.101" y="2.769"/> + <PolyStepSegment x="1.099" y="2.763"/> + <PolyStepSegment x="1.092" y="2.757"/> + <PolyStepSegment x="1.089" y="2.748"/> + <PolyStepSegment x="1.090" y="2.739"/> + <PolyStepSegment x="1.095" y="2.731"/> + <PolyStepSegment x="1.103" y="2.727"/> + <PolyStepSegment x="1.110" y="2.725"/> + <PolyStepSegment x="1.118" y="2.728"/> + <PolyStepSegment x="1.124" y="2.732"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U18"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.966" y="2.565"/> + <PolyStepSegment x="0.962" y="2.593"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.953" y="2.590"/> + <PolyStepSegment x="0.975" y="2.568"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.978" y="2.577"/> + <PolyStepSegment x="0.950" y="2.582"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.956" y="2.571"/> + <PolyStepSegment x="0.972" y="2.588"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.988" y="2.587"/> + <PolyStepSegment x="0.984" y="2.615"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.975" y="2.612"/> + <PolyStepSegment x="0.997" y="2.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="2.599"/> + <PolyStepSegment x="0.972" y="2.604"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.978" y="2.593"/> + <PolyStepSegment x="0.994" y="2.610"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.010" y="2.609"/> + <PolyStepSegment x="1.006" y="2.637"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.997" y="2.634"/> + <PolyStepSegment x="1.019" y="2.612"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.022" y="2.621"/> + <PolyStepSegment x="0.994" y="2.626"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.000" y="2.615"/> + <PolyStepSegment x="1.016" y="2.632"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U18"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.995" y="2.537"/> + <PolyStepSegment x="0.991" y="2.565"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.982" y="2.562"/> + <PolyStepSegment x="1.004" y="2.540"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.007" y="2.549"/> + <PolyStepSegment x="0.979" y="2.554"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.985" y="2.543"/> + <PolyStepSegment x="1.001" y="2.560"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.017" y="2.559"/> + <PolyStepSegment x="1.013" y="2.587"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.004" y="2.584"/> + <PolyStepSegment x="1.026" y="2.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.029" y="2.571"/> + <PolyStepSegment x="1.001" y="2.576"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.007" y="2.565"/> + <PolyStepSegment x="1.023" y="2.582"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.039" y="2.581"/> + <PolyStepSegment x="1.035" y="2.609"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.026" y="2.606"/> + <PolyStepSegment x="1.048" y="2.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.051" y="2.593"/> + <PolyStepSegment x="1.023" y="2.598"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.029" y="2.587"/> + <PolyStepSegment x="1.045" y="2.604"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U18"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.016" y="2.515"/> + <PolyStepSegment x="1.012" y="2.543"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.003" y="2.540"/> + <PolyStepSegment x="1.025" y="2.518"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.028" y="2.527"/> + <PolyStepSegment x="1.000" y="2.532"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.006" y="2.521"/> + <PolyStepSegment x="1.022" y="2.538"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.038" y="2.537"/> + <PolyStepSegment x="1.034" y="2.565"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.025" y="2.562"/> + <PolyStepSegment x="1.047" y="2.540"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="2.549"/> + <PolyStepSegment x="1.022" y="2.554"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.028" y="2.543"/> + <PolyStepSegment x="1.044" y="2.560"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.060" y="2.559"/> + <PolyStepSegment x="1.056" y="2.587"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.047" y="2.584"/> + <PolyStepSegment x="1.069" y="2.562"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.072" y="2.571"/> + <PolyStepSegment x="1.044" y="2.576"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.050" y="2.565"/> + <PolyStepSegment x="1.066" y="2.582"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.461" y="2.700"/> + <PolyStepSegment x="1.800" y="3.039"/> + <PolyStepSegment x="2.139" y="2.700"/> + <PolyStepSegment x="1.842" y="2.403"/> + <PolyStepSegment x="1.758" y="2.403"/> + <PolyStepSegment x="1.461" y="2.700"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.714" y="2.594"/> + <PolyStepCurve x="1.674" y="2.594" centerX="1.693934" centerY="2.593934" clockwise="false"/> + <PolyStepCurve x="1.714" y="2.594" centerX="1.693934" centerY="2.593934" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U6"> + <NonstandardAttribute name="TEXT" value="U6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.810" y="2.626"/> + <PolyStepSegment x="1.848" y="2.664"/> + <PolyStepSegment x="1.853" y="2.675"/> + <PolyStepSegment x="1.853" y="2.685"/> + <PolyStepSegment x="1.848" y="2.694"/> + <PolyStepSegment x="1.840" y="2.699"/> + <PolyStepSegment x="1.829" y="2.699"/> + <PolyStepSegment x="1.819" y="2.693"/> + <PolyStepSegment x="1.781" y="2.655"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.786" y="2.712"/> + <PolyStepSegment x="1.775" y="2.711"/> + <PolyStepSegment x="1.767" y="2.711"/> + <PolyStepSegment x="1.760" y="2.715"/> + <PolyStepSegment x="1.757" y="2.721"/> + <PolyStepSegment x="1.758" y="2.728"/> + <PolyStepSegment x="1.760" y="2.736"/> + <PolyStepSegment x="1.766" y="2.743"/> + <PolyStepSegment x="1.772" y="2.747"/> + <PolyStepSegment x="1.780" y="2.750"/> + <PolyStepSegment x="1.788" y="2.750"/> + <PolyStepSegment x="1.795" y="2.747"/> + <PolyStepSegment x="1.798" y="2.740"/> + <PolyStepSegment x="1.797" y="2.730"/> + <PolyStepSegment x="1.792" y="2.720"/> + <PolyStepSegment x="1.784" y="2.710"/> + <PolyStepSegment x="1.771" y="2.700"/> + <PolyStepSegment x="1.763" y="2.696"/> + <PolyStepSegment x="1.753" y="2.693"/> + <PolyStepSegment x="1.744" y="2.693"/> + <PolyStepSegment x="1.739" y="2.697"/> + <PolyStepSegment x="1.736" y="2.703"/> + <PolyStepSegment x="1.737" y="2.711"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.935" y="2.616"/> + <PolyStepSegment x="1.907" y="2.612"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.910" y="2.603"/> + <PolyStepSegment x="1.932" y="2.625"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.923" y="2.628"/> + <PolyStepSegment x="1.918" y="2.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.929" y="2.606"/> + <PolyStepSegment x="1.912" y="2.622"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.913" y="2.638"/> + <PolyStepSegment x="1.885" y="2.634"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.888" y="2.625"/> + <PolyStepSegment x="1.910" y="2.647"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.901" y="2.650"/> + <PolyStepSegment x="1.896" y="2.622"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.907" y="2.628"/> + <PolyStepSegment x="1.890" y="2.644"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.891" y="2.660"/> + <PolyStepSegment x="1.863" y="2.656"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.866" y="2.647"/> + <PolyStepSegment x="1.888" y="2.669"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.879" y="2.672"/> + <PolyStepSegment x="1.874" y="2.644"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.885" y="2.650"/> + <PolyStepSegment x="1.868" y="2.666"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.963" y="2.645"/> + <PolyStepSegment x="1.935" y="2.641"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.938" y="2.632"/> + <PolyStepSegment x="1.960" y="2.654"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.951" y="2.657"/> + <PolyStepSegment x="1.946" y="2.629"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.957" y="2.635"/> + <PolyStepSegment x="1.940" y="2.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.941" y="2.667"/> + <PolyStepSegment x="1.913" y="2.663"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.916" y="2.654"/> + <PolyStepSegment x="1.938" y="2.676"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.929" y="2.679"/> + <PolyStepSegment x="1.924" y="2.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.935" y="2.657"/> + <PolyStepSegment x="1.918" y="2.673"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.919" y="2.689"/> + <PolyStepSegment x="1.891" y="2.685"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.894" y="2.676"/> + <PolyStepSegment x="1.916" y="2.698"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.907" y="2.701"/> + <PolyStepSegment x="1.902" y="2.673"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.913" y="2.679"/> + <PolyStepSegment x="1.896" y="2.695"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U6"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.985" y="2.666"/> + <PolyStepSegment x="1.957" y="2.662"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.960" y="2.653"/> + <PolyStepSegment x="1.982" y="2.675"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.973" y="2.678"/> + <PolyStepSegment x="1.968" y="2.650"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.979" y="2.656"/> + <PolyStepSegment x="1.962" y="2.672"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.963" y="2.688"/> + <PolyStepSegment x="1.935" y="2.684"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.938" y="2.675"/> + <PolyStepSegment x="1.960" y="2.697"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.951" y="2.700"/> + <PolyStepSegment x="1.946" y="2.672"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.957" y="2.678"/> + <PolyStepSegment x="1.940" y="2.694"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.941" y="2.710"/> + <PolyStepSegment x="1.913" y="2.706"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.916" y="2.697"/> + <PolyStepSegment x="1.938" y="2.719"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.929" y="2.722"/> + <PolyStepSegment x="1.924" y="2.694"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.935" y="2.700"/> + <PolyStepSegment x="1.918" y="2.716"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="3.110"/> + <PolyStepSegment x="1.460" y="3.590"/> + <PolyStepSegment x="1.940" y="3.590"/> + <PolyStepSegment x="1.940" y="3.170"/> + <PolyStepSegment x="1.880" y="3.110"/> + <PolyStepSegment x="1.460" y="3.110"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.720" y="3.200"/> + <PolyStepCurve x="1.680" y="3.200" centerX="1.700000" centerY="3.200000" clockwise="false"/> + <PolyStepCurve x="1.720" y="3.200" centerX="1.700000" centerY="3.200000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U5"> + <NonstandardAttribute name="TEXT" value="U5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.759" y="3.305"/> + <PolyStepSegment x="1.759" y="3.359"/> + <PolyStepSegment x="1.755" y="3.370"/> + <PolyStepSegment x="1.747" y="3.378"/> + <PolyStepSegment x="1.738" y="3.380"/> + <PolyStepSegment x="1.729" y="3.378"/> + <PolyStepSegment x="1.721" y="3.370"/> + <PolyStepSegment x="1.717" y="3.359"/> + <PolyStepSegment x="1.717" y="3.305"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.684" y="3.369"/> + <PolyStepSegment x="1.678" y="3.375"/> + <PolyStepSegment x="1.671" y="3.379"/> + <PolyStepSegment x="1.663" y="3.380"/> + <PolyStepSegment x="1.655" y="3.378"/> + <PolyStepSegment x="1.648" y="3.373"/> + <PolyStepSegment x="1.643" y="3.364"/> + <PolyStepSegment x="1.642" y="3.354"/> + <PolyStepSegment x="1.644" y="3.344"/> + <PolyStepSegment x="1.649" y="3.337"/> + <PolyStepSegment x="1.656" y="3.333"/> + <PolyStepSegment x="1.662" y="3.331"/> + <PolyStepSegment x="1.669" y="3.333"/> + <PolyStepSegment x="1.677" y="3.337"/> + <PolyStepSegment x="1.674" y="3.305"/> + <PolyStepSegment x="1.649" y="3.305"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.855" y="3.386"/> + <PolyStepSegment x="1.838" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.847" y="3.359"/> + <PolyStepSegment x="1.847" y="3.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.838" y="3.386"/> + <PolyStepSegment x="1.855" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.858" y="3.375"/> + <PolyStepSegment x="1.835" y="3.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.824" y="3.386"/> + <PolyStepSegment x="1.807" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.816" y="3.359"/> + <PolyStepSegment x="1.816" y="3.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.807" y="3.386"/> + <PolyStepSegment x="1.824" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.827" y="3.375"/> + <PolyStepSegment x="1.804" y="3.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.793" y="3.386"/> + <PolyStepSegment x="1.776" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.785" y="3.359"/> + <PolyStepSegment x="1.785" y="3.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.776" y="3.386"/> + <PolyStepSegment x="1.793" y="3.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.796" y="3.375"/> + <PolyStepSegment x="1.773" y="3.375"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.855" y="3.426"/> + <PolyStepSegment x="1.838" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.847" y="3.399"/> + <PolyStepSegment x="1.847" y="3.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.838" y="3.426"/> + <PolyStepSegment x="1.855" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.858" y="3.415"/> + <PolyStepSegment x="1.835" y="3.415"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.824" y="3.426"/> + <PolyStepSegment x="1.807" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.816" y="3.399"/> + <PolyStepSegment x="1.816" y="3.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.807" y="3.426"/> + <PolyStepSegment x="1.824" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.827" y="3.415"/> + <PolyStepSegment x="1.804" y="3.415"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.793" y="3.426"/> + <PolyStepSegment x="1.776" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.785" y="3.399"/> + <PolyStepSegment x="1.785" y="3.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.776" y="3.426"/> + <PolyStepSegment x="1.793" y="3.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.796" y="3.415"/> + <PolyStepSegment x="1.773" y="3.415"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U5"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.855" y="3.456"/> + <PolyStepSegment x="1.838" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.847" y="3.429"/> + <PolyStepSegment x="1.847" y="3.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.838" y="3.456"/> + <PolyStepSegment x="1.855" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.858" y="3.445"/> + <PolyStepSegment x="1.835" y="3.445"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.824" y="3.456"/> + <PolyStepSegment x="1.807" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.816" y="3.429"/> + <PolyStepSegment x="1.816" y="3.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.807" y="3.456"/> + <PolyStepSegment x="1.824" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.827" y="3.445"/> + <PolyStepSegment x="1.804" y="3.445"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.793" y="3.456"/> + <PolyStepSegment x="1.776" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.785" y="3.429"/> + <PolyStepSegment x="1.785" y="3.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.776" y="3.456"/> + <PolyStepSegment x="1.793" y="3.433"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.796" y="3.445"/> + <PolyStepSegment x="1.773" y="3.445"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.908" y="2.334"/> + <PolyStepSegment x="2.184" y="1.942"/> + <PolyStepSegment x="1.792" y="1.666"/> + <PolyStepSegment x="1.550" y="2.009"/> + <PolyStepSegment x="1.565" y="2.093"/> + <PolyStepSegment x="1.908" y="2.334"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.784" y="2.123"/> + <PolyStepCurve x="1.744" y="2.122" centerX="1.763758" centerY="2.122728" clockwise="false"/> + <PolyStepCurve x="1.784" y="2.123" centerX="1.763758" centerY="2.122728" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U10"> + <NonstandardAttribute name="TEXT" value="U10" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.746" y="1.982"/> + <PolyStepSegment x="1.777" y="1.938"/> + <PolyStepSegment x="1.786" y="1.931"/> + <PolyStepSegment x="1.797" y="1.929"/> + <PolyStepSegment x="1.806" y="1.932"/> + <PolyStepSegment x="1.812" y="1.940"/> + <PolyStepSegment x="1.814" y="1.950"/> + <PolyStepSegment x="1.810" y="1.961"/> + <PolyStepSegment x="1.780" y="2.005"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.867" y="1.975"/> + <PolyStepSegment x="1.824" y="2.036"/> + <PolyStepSegment x="1.823" y="2.018"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.858" y="1.969"/> + <PolyStepSegment x="1.876" y="1.982"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.885" y="2.079"/> + <PolyStepSegment x="1.880" y="2.073"/> + <PolyStepSegment x="1.879" y="2.065"/> + <PolyStepSegment x="1.880" y="2.057"/> + <PolyStepSegment x="1.884" y="2.047"/> + <PolyStepSegment x="1.890" y="2.037"/> + <PolyStepSegment x="1.897" y="2.028"/> + <PolyStepSegment x="1.905" y="2.022"/> + <PolyStepSegment x="1.912" y="2.018"/> + <PolyStepSegment x="1.920" y="2.016"/> + <PolyStepSegment x="1.928" y="2.018"/> + <PolyStepSegment x="1.933" y="2.024"/> + <PolyStepSegment x="1.934" y="2.033"/> + <PolyStepSegment x="1.932" y="2.041"/> + <PolyStepSegment x="1.929" y="2.051"/> + <PolyStepSegment x="1.923" y="2.061"/> + <PolyStepSegment x="1.916" y="2.069"/> + <PolyStepSegment x="1.908" y="2.076"/> + <PolyStepSegment x="1.901" y="2.080"/> + <PolyStepSegment x="1.892" y="2.082"/> + <PolyStepSegment x="1.885" y="2.079"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U10"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.744" y="1.881"/> + <PolyStepSegment x="1.745" y="1.909"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.736" y="1.908"/> + <PolyStepSegment x="1.753" y="1.882"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.758" y="1.891"/> + <PolyStepSegment x="1.731" y="1.900"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="1.888"/> + <PolyStepSegment x="1.754" y="1.902"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.769" y="1.899"/> + <PolyStepSegment x="1.770" y="1.927"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.761" y="1.926"/> + <PolyStepSegment x="1.778" y="1.900"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.783" y="1.909"/> + <PolyStepSegment x="1.756" y="1.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="1.906"/> + <PolyStepSegment x="1.779" y="1.920"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.794" y="1.917"/> + <PolyStepSegment x="1.795" y="1.945"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.786" y="1.944"/> + <PolyStepSegment x="1.803" y="1.918"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.808" y="1.927"/> + <PolyStepSegment x="1.781" y="1.936"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.785" y="1.924"/> + <PolyStepSegment x="1.804" y="1.938"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U10"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.767" y="1.849"/> + <PolyStepSegment x="1.768" y="1.877"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.759" y="1.876"/> + <PolyStepSegment x="1.776" y="1.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.781" y="1.859"/> + <PolyStepSegment x="1.754" y="1.868"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.758" y="1.856"/> + <PolyStepSegment x="1.777" y="1.870"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.792" y="1.867"/> + <PolyStepSegment x="1.793" y="1.895"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.784" y="1.894"/> + <PolyStepSegment x="1.801" y="1.868"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.806" y="1.877"/> + <PolyStepSegment x="1.779" y="1.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.783" y="1.874"/> + <PolyStepSegment x="1.802" y="1.888"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.817" y="1.885"/> + <PolyStepSegment x="1.818" y="1.913"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.809" y="1.912"/> + <PolyStepSegment x="1.826" y="1.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.831" y="1.895"/> + <PolyStepSegment x="1.804" y="1.904"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.808" y="1.892"/> + <PolyStepSegment x="1.827" y="1.906"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U10"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.784" y="1.824"/> + <PolyStepSegment x="1.785" y="1.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.776" y="1.851"/> + <PolyStepSegment x="1.793" y="1.825"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.798" y="1.834"/> + <PolyStepSegment x="1.771" y="1.843"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.775" y="1.831"/> + <PolyStepSegment x="1.794" y="1.845"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.809" y="1.842"/> + <PolyStepSegment x="1.810" y="1.870"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.801" y="1.869"/> + <PolyStepSegment x="1.818" y="1.843"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.823" y="1.852"/> + <PolyStepSegment x="1.796" y="1.861"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.800" y="1.849"/> + <PolyStepSegment x="1.819" y="1.863"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.834" y="1.860"/> + <PolyStepSegment x="1.835" y="1.888"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.826" y="1.887"/> + <PolyStepSegment x="1.843" y="1.861"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.848" y="1.870"/> + <PolyStepSegment x="1.821" y="1.879"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.825" y="1.867"/> + <PolyStepSegment x="1.844" y="1.881"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.640" y="3.590"/> + <PolyStepSegment x="0.640" y="3.110"/> + <PolyStepSegment x="0.160" y="3.110"/> + <PolyStepSegment x="0.160" y="3.530"/> + <PolyStepSegment x="0.220" y="3.590"/> + <PolyStepSegment x="0.640" y="3.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.420" y="3.500"/> + <PolyStepCurve x="0.380" y="3.500" centerX="0.400000" centerY="3.500000" clockwise="false"/> + <PolyStepCurve x="0.420" y="3.500" centerX="0.400000" centerY="3.500000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U3"> + <NonstandardAttribute name="TEXT" value="U3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.341" y="3.395"/> + <PolyStepSegment x="0.341" y="3.341"/> + <PolyStepSegment x="0.345" y="3.330"/> + <PolyStepSegment x="0.353" y="3.322"/> + <PolyStepSegment x="0.362" y="3.320"/> + <PolyStepSegment x="0.371" y="3.322"/> + <PolyStepSegment x="0.379" y="3.330"/> + <PolyStepSegment x="0.383" y="3.341"/> + <PolyStepSegment x="0.383" y="3.395"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.416" y="3.335"/> + <PolyStepSegment x="0.422" y="3.326"/> + <PolyStepSegment x="0.430" y="3.321"/> + <PolyStepSegment x="0.438" y="3.320"/> + <PolyStepSegment x="0.445" y="3.321"/> + <PolyStepSegment x="0.453" y="3.327"/> + <PolyStepSegment x="0.458" y="3.335"/> + <PolyStepSegment x="0.458" y="3.342"/> + <PolyStepSegment x="0.457" y="3.351"/> + <PolyStepSegment x="0.450" y="3.357"/> + <PolyStepSegment x="0.444" y="3.360"/> + <PolyStepSegment x="0.435" y="3.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.444" y="3.360"/> + <PolyStepSegment x="0.449" y="3.364"/> + <PolyStepSegment x="0.454" y="3.370"/> + <PolyStepSegment x="0.456" y="3.377"/> + <PolyStepSegment x="0.454" y="3.385"/> + <PolyStepSegment x="0.449" y="3.391"/> + <PolyStepSegment x="0.441" y="3.395"/> + <PolyStepSegment x="0.432" y="3.394"/> + <PolyStepSegment x="0.424" y="3.389"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.245" y="3.314"/> + <PolyStepSegment x="0.262" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.253" y="3.341"/> + <PolyStepSegment x="0.253" y="3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.262" y="3.314"/> + <PolyStepSegment x="0.245" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.242" y="3.325"/> + <PolyStepSegment x="0.265" y="3.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.276" y="3.314"/> + <PolyStepSegment x="0.293" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.284" y="3.341"/> + <PolyStepSegment x="0.284" y="3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.293" y="3.314"/> + <PolyStepSegment x="0.276" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.273" y="3.325"/> + <PolyStepSegment x="0.296" y="3.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.307" y="3.314"/> + <PolyStepSegment x="0.324" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.315" y="3.341"/> + <PolyStepSegment x="0.315" y="3.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="3.314"/> + <PolyStepSegment x="0.307" y="3.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.304" y="3.325"/> + <PolyStepSegment x="0.327" y="3.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.245" y="3.274"/> + <PolyStepSegment x="0.262" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.253" y="3.301"/> + <PolyStepSegment x="0.253" y="3.270"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.262" y="3.274"/> + <PolyStepSegment x="0.245" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.242" y="3.285"/> + <PolyStepSegment x="0.265" y="3.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.276" y="3.274"/> + <PolyStepSegment x="0.293" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.284" y="3.301"/> + <PolyStepSegment x="0.284" y="3.270"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.293" y="3.274"/> + <PolyStepSegment x="0.276" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.273" y="3.285"/> + <PolyStepSegment x="0.296" y="3.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.307" y="3.274"/> + <PolyStepSegment x="0.324" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.315" y="3.301"/> + <PolyStepSegment x="0.315" y="3.270"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="3.274"/> + <PolyStepSegment x="0.307" y="3.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.304" y="3.285"/> + <PolyStepSegment x="0.327" y="3.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U3"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.245" y="3.244"/> + <PolyStepSegment x="0.262" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.253" y="3.271"/> + <PolyStepSegment x="0.253" y="3.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.262" y="3.244"/> + <PolyStepSegment x="0.245" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.242" y="3.255"/> + <PolyStepSegment x="0.265" y="3.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.276" y="3.244"/> + <PolyStepSegment x="0.293" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.284" y="3.271"/> + <PolyStepSegment x="0.284" y="3.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.293" y="3.244"/> + <PolyStepSegment x="0.276" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.273" y="3.255"/> + <PolyStepSegment x="0.296" y="3.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.307" y="3.244"/> + <PolyStepSegment x="0.324" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.315" y="3.271"/> + <PolyStepSegment x="0.315" y="3.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="3.244"/> + <PolyStepSegment x="0.307" y="3.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.304" y="3.255"/> + <PolyStepSegment x="0.327" y="3.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="1.711"/> + <PolyStepSegment x="0.061" y="2.050"/> + <PolyStepSegment x="0.400" y="2.389"/> + <PolyStepSegment x="0.697" y="2.092"/> + <PolyStepSegment x="0.697" y="2.008"/> + <PolyStepSegment x="0.400" y="1.711"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.526" y="1.944"/> + <PolyStepCurve x="0.486" y="1.944" centerX="0.506066" centerY="1.943934" clockwise="false"/> + <PolyStepCurve x="0.526" y="1.944" centerX="0.506066" centerY="1.943934" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U2"> + <NonstandardAttribute name="TEXT" value="U2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.474" y="2.060"/> + <PolyStepSegment x="0.436" y="2.098"/> + <PolyStepSegment x="0.425" y="2.103"/> + <PolyStepSegment x="0.415" y="2.103"/> + <PolyStepSegment x="0.406" y="2.098"/> + <PolyStepSegment x="0.401" y="2.090"/> + <PolyStepSegment x="0.401" y="2.079"/> + <PolyStepSegment x="0.407" y="2.069"/> + <PolyStepSegment x="0.445" y="2.031"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.410" y="2.014"/> + <PolyStepSegment x="0.411" y="2.004"/> + <PolyStepSegment x="0.409" y="1.997"/> + <PolyStepSegment x="0.405" y="1.991"/> + <PolyStepSegment x="0.397" y="1.986"/> + <PolyStepSegment x="0.388" y="1.986"/> + <PolyStepSegment x="0.381" y="1.990"/> + <PolyStepSegment x="0.376" y="1.996"/> + <PolyStepSegment x="0.374" y="2.003"/> + <PolyStepSegment x="0.379" y="2.025"/> + <PolyStepSegment x="0.379" y="2.037"/> + <PolyStepSegment x="0.374" y="2.050"/> + <PolyStepSegment x="0.367" y="2.059"/> + <PolyStepSegment x="0.339" y="2.031"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.484" y="2.185"/> + <PolyStepSegment x="0.488" y="2.157"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.497" y="2.160"/> + <PolyStepSegment x="0.475" y="2.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.472" y="2.173"/> + <PolyStepSegment x="0.500" y="2.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.494" y="2.179"/> + <PolyStepSegment x="0.478" y="2.162"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.462" y="2.163"/> + <PolyStepSegment x="0.466" y="2.135"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.475" y="2.138"/> + <PolyStepSegment x="0.453" y="2.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.450" y="2.151"/> + <PolyStepSegment x="0.478" y="2.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.472" y="2.157"/> + <PolyStepSegment x="0.456" y="2.140"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.440" y="2.141"/> + <PolyStepSegment x="0.444" y="2.113"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.453" y="2.116"/> + <PolyStepSegment x="0.431" y="2.138"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.428" y="2.129"/> + <PolyStepSegment x="0.456" y="2.124"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.450" y="2.135"/> + <PolyStepSegment x="0.434" y="2.118"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.455" y="2.213"/> + <PolyStepSegment x="0.459" y="2.185"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.468" y="2.188"/> + <PolyStepSegment x="0.446" y="2.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.443" y="2.201"/> + <PolyStepSegment x="0.471" y="2.196"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.465" y="2.207"/> + <PolyStepSegment x="0.449" y="2.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.433" y="2.191"/> + <PolyStepSegment x="0.437" y="2.163"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.446" y="2.166"/> + <PolyStepSegment x="0.424" y="2.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.421" y="2.179"/> + <PolyStepSegment x="0.449" y="2.174"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.443" y="2.185"/> + <PolyStepSegment x="0.427" y="2.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.411" y="2.169"/> + <PolyStepSegment x="0.415" y="2.141"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.424" y="2.144"/> + <PolyStepSegment x="0.402" y="2.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.399" y="2.157"/> + <PolyStepSegment x="0.427" y="2.152"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.421" y="2.163"/> + <PolyStepSegment x="0.405" y="2.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.434" y="2.235"/> + <PolyStepSegment x="0.438" y="2.207"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.447" y="2.210"/> + <PolyStepSegment x="0.425" y="2.232"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.422" y="2.223"/> + <PolyStepSegment x="0.450" y="2.218"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.444" y="2.229"/> + <PolyStepSegment x="0.428" y="2.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.412" y="2.213"/> + <PolyStepSegment x="0.416" y="2.185"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.425" y="2.188"/> + <PolyStepSegment x="0.403" y="2.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="2.201"/> + <PolyStepSegment x="0.428" y="2.196"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.422" y="2.207"/> + <PolyStepSegment x="0.406" y="2.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.390" y="2.191"/> + <PolyStepSegment x="0.394" y="2.163"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.403" y="2.166"/> + <PolyStepSegment x="0.381" y="2.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.378" y="2.179"/> + <PolyStepSegment x="0.406" y="2.174"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="2.185"/> + <PolyStepSegment x="0.384" y="2.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.489" y="2.000"/> + <PolyStepSegment x="1.150" y="1.661"/> + <PolyStepSegment x="0.811" y="2.000"/> + <PolyStepSegment x="1.108" y="2.297"/> + <PolyStepSegment x="1.192" y="2.297"/> + <PolyStepSegment x="1.489" y="2.000"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.276" y="2.106"/> + <PolyStepCurve x="1.236" y="2.106" centerX="1.256066" centerY="2.106066" clockwise="false"/> + <PolyStepCurve x="1.276" y="2.106" centerX="1.256066" centerY="2.106066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U1"> + <NonstandardAttribute name="TEXT" value="U1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.140" y="2.074"/> + <PolyStepSegment x="1.102" y="2.036"/> + <PolyStepSegment x="1.097" y="2.025"/> + <PolyStepSegment x="1.097" y="2.015"/> + <PolyStepSegment x="1.102" y="2.006"/> + <PolyStepSegment x="1.110" y="2.001"/> + <PolyStepSegment x="1.121" y="2.001"/> + <PolyStepSegment x="1.131" y="2.007"/> + <PolyStepSegment x="1.169" y="2.045"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.155" y="1.953"/> + <PolyStepSegment x="1.208" y="2.006"/> + <PolyStepSegment x="1.189" y="2.004"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.147" y="1.961"/> + <PolyStepSegment x="1.163" y="1.945"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.015" y="2.084"/> + <PolyStepSegment x="1.043" y="2.088"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.040" y="2.097"/> + <PolyStepSegment x="1.018" y="2.075"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.027" y="2.072"/> + <PolyStepSegment x="1.032" y="2.100"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.021" y="2.094"/> + <PolyStepSegment x="1.038" y="2.078"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.037" y="2.062"/> + <PolyStepSegment x="1.065" y="2.066"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.062" y="2.075"/> + <PolyStepSegment x="1.040" y="2.053"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.049" y="2.050"/> + <PolyStepSegment x="1.054" y="2.078"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.043" y="2.072"/> + <PolyStepSegment x="1.060" y="2.056"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.059" y="2.040"/> + <PolyStepSegment x="1.087" y="2.044"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.084" y="2.053"/> + <PolyStepSegment x="1.062" y="2.031"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.071" y="2.028"/> + <PolyStepSegment x="1.076" y="2.056"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.065" y="2.050"/> + <PolyStepSegment x="1.082" y="2.034"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.987" y="2.055"/> + <PolyStepSegment x="1.015" y="2.059"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.012" y="2.068"/> + <PolyStepSegment x="0.990" y="2.046"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.999" y="2.043"/> + <PolyStepSegment x="1.004" y="2.071"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.993" y="2.065"/> + <PolyStepSegment x="1.010" y="2.049"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.009" y="2.033"/> + <PolyStepSegment x="1.037" y="2.037"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.034" y="2.046"/> + <PolyStepSegment x="1.012" y="2.024"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.021" y="2.021"/> + <PolyStepSegment x="1.026" y="2.049"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.015" y="2.043"/> + <PolyStepSegment x="1.032" y="2.027"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.031" y="2.011"/> + <PolyStepSegment x="1.059" y="2.015"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.056" y="2.024"/> + <PolyStepSegment x="1.034" y="2.002"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.043" y="1.999"/> + <PolyStepSegment x="1.048" y="2.027"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.037" y="2.021"/> + <PolyStepSegment x="1.054" y="2.005"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.965" y="2.034"/> + <PolyStepSegment x="0.993" y="2.038"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.990" y="2.047"/> + <PolyStepSegment x="0.968" y="2.025"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.977" y="2.022"/> + <PolyStepSegment x="0.982" y="2.050"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.971" y="2.044"/> + <PolyStepSegment x="0.988" y="2.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.987" y="2.012"/> + <PolyStepSegment x="1.015" y="2.016"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.012" y="2.025"/> + <PolyStepSegment x="0.990" y="2.003"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.999" y="2.000"/> + <PolyStepSegment x="1.004" y="2.028"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.993" y="2.022"/> + <PolyStepSegment x="1.010" y="2.006"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.009" y="1.990"/> + <PolyStepSegment x="1.037" y="1.994"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.034" y="2.003"/> + <PolyStepSegment x="1.012" y="1.981"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.021" y="1.978"/> + <PolyStepSegment x="1.026" y="2.006"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.015" y="2.000"/> + <PolyStepSegment x="1.032" y="1.984"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.640" y="2.460"/> + <PolyStepSegment x="0.160" y="2.460"/> + <PolyStepSegment x="0.160" y="2.940"/> + <PolyStepSegment x="0.580" y="2.940"/> + <PolyStepSegment x="0.640" y="2.880"/> + <PolyStepSegment x="0.640" y="2.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.570" y="2.700"/> + <PolyStepCurve x="0.530" y="2.700" centerX="0.550000" centerY="2.700000" clockwise="false"/> + <PolyStepCurve x="0.570" y="2.700" centerX="0.550000" centerY="2.700000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U4"> + <NonstandardAttribute name="TEXT" value="U4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.445" y="2.759"/> + <PolyStepSegment x="0.391" y="2.759"/> + <PolyStepSegment x="0.380" y="2.755"/> + <PolyStepSegment x="0.372" y="2.747"/> + <PolyStepSegment x="0.370" y="2.738"/> + <PolyStepSegment x="0.372" y="2.729"/> + <PolyStepSegment x="0.380" y="2.721"/> + <PolyStepSegment x="0.391" y="2.717"/> + <PolyStepSegment x="0.445" y="2.717"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.370" y="2.652"/> + <PolyStepSegment x="0.445" y="2.652"/> + <PolyStepSegment x="0.391" y="2.686"/> + <PolyStepSegment x="0.391" y="2.640"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.855"/> + <PolyStepSegment x="0.387" y="2.838"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.391" y="2.847"/> + <PolyStepSegment x="0.360" y="2.847"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.838"/> + <PolyStepSegment x="0.387" y="2.855"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.375" y="2.858"/> + <PolyStepSegment x="0.375" y="2.835"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.824"/> + <PolyStepSegment x="0.387" y="2.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.391" y="2.816"/> + <PolyStepSegment x="0.360" y="2.816"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.807"/> + <PolyStepSegment x="0.387" y="2.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.375" y="2.827"/> + <PolyStepSegment x="0.375" y="2.804"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.793"/> + <PolyStepSegment x="0.387" y="2.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.391" y="2.785"/> + <PolyStepSegment x="0.360" y="2.785"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.364" y="2.776"/> + <PolyStepSegment x="0.387" y="2.793"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.375" y="2.796"/> + <PolyStepSegment x="0.375" y="2.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.855"/> + <PolyStepSegment x="0.347" y="2.838"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.351" y="2.847"/> + <PolyStepSegment x="0.320" y="2.847"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.838"/> + <PolyStepSegment x="0.347" y="2.855"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.335" y="2.858"/> + <PolyStepSegment x="0.335" y="2.835"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.824"/> + <PolyStepSegment x="0.347" y="2.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.351" y="2.816"/> + <PolyStepSegment x="0.320" y="2.816"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.807"/> + <PolyStepSegment x="0.347" y="2.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.335" y="2.827"/> + <PolyStepSegment x="0.335" y="2.804"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.793"/> + <PolyStepSegment x="0.347" y="2.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.351" y="2.785"/> + <PolyStepSegment x="0.320" y="2.785"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.324" y="2.776"/> + <PolyStepSegment x="0.347" y="2.793"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.335" y="2.796"/> + <PolyStepSegment x="0.335" y="2.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U4"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.855"/> + <PolyStepSegment x="0.317" y="2.838"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.321" y="2.847"/> + <PolyStepSegment x="0.290" y="2.847"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.838"/> + <PolyStepSegment x="0.317" y="2.855"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.305" y="2.858"/> + <PolyStepSegment x="0.305" y="2.835"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.824"/> + <PolyStepSegment x="0.317" y="2.807"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.321" y="2.816"/> + <PolyStepSegment x="0.290" y="2.816"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.807"/> + <PolyStepSegment x="0.317" y="2.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.305" y="2.827"/> + <PolyStepSegment x="0.305" y="2.804"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.793"/> + <PolyStepSegment x="0.317" y="2.776"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.321" y="2.785"/> + <PolyStepSegment x="0.290" y="2.785"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.294" y="2.776"/> + <PolyStepSegment x="0.317" y="2.793"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.305" y="2.796"/> + <PolyStepSegment x="0.305" y="2.773"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.335" y="0.810"/> + <PolyStepSegment x="2.335" y="2.170"/> + <PolyStepSegment x="2.215" y="2.170"/> + <PolyStepSegment x="2.215" y="0.810"/> + <PolyStepSegment x="2.235" y="0.790"/> + <PolyStepSegment x="2.315" y="0.790"/> + <PolyStepSegment x="2.335" y="0.810"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R15"> + <NonstandardAttribute name="TEXT" value="R15" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.331" y="0.850"/> + <PolyStepSegment x="2.331" y="0.925"/> + <PolyStepSegment x="2.355" y="0.925"/> + <PolyStepSegment x="2.362" y="0.921"/> + <PolyStepSegment x="2.367" y="0.916"/> + <PolyStepSegment x="2.369" y="0.906"/> + <PolyStepSegment x="2.367" y="0.896"/> + <PolyStepSegment x="2.361" y="0.890"/> + <PolyStepSegment x="2.355" y="0.886"/> + <PolyStepSegment x="2.331" y="0.886"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.355" y="0.886"/> + <PolyStepSegment x="2.369" y="0.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.425" y="0.850"/> + <PolyStepSegment x="2.425" y="0.925"/> + <PolyStepSegment x="2.414" y="0.910"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.414" y="0.850"/> + <PolyStepSegment x="2.436" y="0.850"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.479" y="0.861"/> + <PolyStepSegment x="2.485" y="0.855"/> + <PolyStepSegment x="2.492" y="0.851"/> + <PolyStepSegment x="2.500" y="0.850"/> + <PolyStepSegment x="2.508" y="0.852"/> + <PolyStepSegment x="2.515" y="0.857"/> + <PolyStepSegment x="2.520" y="0.866"/> + <PolyStepSegment x="2.521" y="0.876"/> + <PolyStepSegment x="2.519" y="0.886"/> + <PolyStepSegment x="2.514" y="0.893"/> + <PolyStepSegment x="2.507" y="0.897"/> + <PolyStepSegment x="2.501" y="0.899"/> + <PolyStepSegment x="2.494" y="0.897"/> + <PolyStepSegment x="2.486" y="0.893"/> + <PolyStepSegment x="2.489" y="0.925"/> + <PolyStepSegment x="2.514" y="0.925"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R15"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.357" y="1.582"/> + <PolyStepSegment x="2.369" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.363" y="1.604"/> + <PolyStepSegment x="2.363" y="1.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.369" y="1.582"/> + <PolyStepSegment x="2.357" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.355" y="1.591"/> + <PolyStepSegment x="2.371" y="1.591"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.379" y="1.582"/> + <PolyStepSegment x="2.391" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.385" y="1.604"/> + <PolyStepSegment x="2.385" y="1.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.391" y="1.582"/> + <PolyStepSegment x="2.379" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.377" y="1.591"/> + <PolyStepSegment x="2.393" y="1.591"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.401" y="1.582"/> + <PolyStepSegment x="2.413" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.407" y="1.604"/> + <PolyStepSegment x="2.407" y="1.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.413" y="1.582"/> + <PolyStepSegment x="2.401" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.399" y="1.591"/> + <PolyStepSegment x="2.415" y="1.591"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R15"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.357" y="1.532"/> + <PolyStepSegment x="2.369" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.363" y="1.554"/> + <PolyStepSegment x="2.363" y="1.529"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.369" y="1.532"/> + <PolyStepSegment x="2.357" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.355" y="1.541"/> + <PolyStepSegment x="2.371" y="1.541"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.379" y="1.532"/> + <PolyStepSegment x="2.391" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.385" y="1.554"/> + <PolyStepSegment x="2.385" y="1.529"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.391" y="1.532"/> + <PolyStepSegment x="2.379" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.377" y="1.541"/> + <PolyStepSegment x="2.393" y="1.541"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.401" y="1.532"/> + <PolyStepSegment x="2.413" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.407" y="1.554"/> + <PolyStepSegment x="2.407" y="1.529"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.413" y="1.532"/> + <PolyStepSegment x="2.401" y="1.551"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.399" y="1.541"/> + <PolyStepSegment x="2.415" y="1.541"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.314" y="0.579"/> + <PolyStepSegment x="3.276" y="1.541"/> + <PolyStepSegment x="3.191" y="1.626"/> + <PolyStepSegment x="2.229" y="0.664"/> + <PolyStepSegment x="2.229" y="0.636"/> + <PolyStepSegment x="2.286" y="0.579"/> + <PolyStepSegment x="2.314" y="0.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R14"> + <NonstandardAttribute name="TEXT" value="R14" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.340" y="0.610"/> + <PolyStepSegment x="2.393" y="0.663"/> + <PolyStepSegment x="2.409" y="0.647"/> + <PolyStepSegment x="2.412" y="0.639"/> + <PolyStepSegment x="2.412" y="0.632"/> + <PolyStepSegment x="2.406" y="0.624"/> + <PolyStepSegment x="2.397" y="0.618"/> + <PolyStepSegment x="2.389" y="0.618"/> + <PolyStepSegment x="2.382" y="0.620"/> + <PolyStepSegment x="2.365" y="0.636"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.382" y="0.620"/> + <PolyStepSegment x="2.366" y="0.584"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.406" y="0.544"/> + <PolyStepSegment x="2.459" y="0.597"/> + <PolyStepSegment x="2.440" y="0.595"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.398" y="0.552"/> + <PolyStepSegment x="2.414" y="0.536"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.467" y="0.483"/> + <PolyStepSegment x="2.520" y="0.536"/> + <PolyStepSegment x="2.457" y="0.523"/> + <PolyStepSegment x="2.490" y="0.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R14"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.876" y="1.110"/> + <PolyStepSegment x="2.897" y="1.115"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.895" y="1.121"/> + <PolyStepSegment x="2.878" y="1.103"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.884" y="1.102"/> + <PolyStepSegment x="2.889" y="1.123"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.881" y="1.118"/> + <PolyStepSegment x="2.892" y="1.107"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.892" y="1.094"/> + <PolyStepSegment x="2.913" y="1.099"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.911" y="1.105"/> + <PolyStepSegment x="2.894" y="1.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.900" y="1.086"/> + <PolyStepSegment x="2.905" y="1.107"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.897" y="1.102"/> + <PolyStepSegment x="2.908" y="1.091"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.908" y="1.078"/> + <PolyStepSegment x="2.929" y="1.083"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.927" y="1.089"/> + <PolyStepSegment x="2.910" y="1.071"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.916" y="1.070"/> + <PolyStepSegment x="2.921" y="1.091"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.913" y="1.086"/> + <PolyStepSegment x="2.924" y="1.075"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R14"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.841" y="1.074"/> + <PolyStepSegment x="2.862" y="1.079"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.860" y="1.085"/> + <PolyStepSegment x="2.843" y="1.067"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.849" y="1.066"/> + <PolyStepSegment x="2.854" y="1.087"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.846" y="1.082"/> + <PolyStepSegment x="2.857" y="1.071"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.857" y="1.058"/> + <PolyStepSegment x="2.878" y="1.063"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.876" y="1.069"/> + <PolyStepSegment x="2.859" y="1.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.865" y="1.050"/> + <PolyStepSegment x="2.870" y="1.071"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.862" y="1.066"/> + <PolyStepSegment x="2.873" y="1.055"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.873" y="1.042"/> + <PolyStepSegment x="2.894" y="1.047"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.892" y="1.053"/> + <PolyStepSegment x="2.875" y="1.035"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.881" y="1.034"/> + <PolyStepSegment x="2.886" y="1.055"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.878" y="1.050"/> + <PolyStepSegment x="2.889" y="1.039"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.310" y="2.260"/> + <PolyStepSegment x="2.310" y="3.620"/> + <PolyStepSegment x="2.190" y="3.620"/> + <PolyStepSegment x="2.190" y="2.260"/> + <PolyStepSegment x="2.210" y="2.240"/> + <PolyStepSegment x="2.290" y="2.240"/> + <PolyStepSegment x="2.310" y="2.260"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R9"> + <NonstandardAttribute name="TEXT" value="R9" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.343" y="2.300"/> + <PolyStepSegment x="2.343" y="2.375"/> + <PolyStepSegment x="2.367" y="2.375"/> + <PolyStepSegment x="2.374" y="2.371"/> + <PolyStepSegment x="2.379" y="2.366"/> + <PolyStepSegment x="2.381" y="2.356"/> + <PolyStepSegment x="2.379" y="2.346"/> + <PolyStepSegment x="2.373" y="2.340"/> + <PolyStepSegment x="2.367" y="2.336"/> + <PolyStepSegment x="2.343" y="2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.367" y="2.336"/> + <PolyStepSegment x="2.381" y="2.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.421" y="2.309"/> + <PolyStepSegment x="2.428" y="2.302"/> + <PolyStepSegment x="2.435" y="2.300"/> + <PolyStepSegment x="2.443" y="2.302"/> + <PolyStepSegment x="2.449" y="2.310"/> + <PolyStepSegment x="2.454" y="2.321"/> + <PolyStepSegment x="2.456" y="2.332"/> + <PolyStepSegment x="2.456" y="2.346"/> + <PolyStepSegment x="2.454" y="2.357"/> + <PolyStepSegment x="2.449" y="2.367"/> + <PolyStepSegment x="2.444" y="2.373"/> + <PolyStepSegment x="2.437" y="2.375"/> + <PolyStepSegment x="2.430" y="2.373"/> + <PolyStepSegment x="2.424" y="2.367"/> + <PolyStepSegment x="2.420" y="2.360"/> + <PolyStepSegment x="2.418" y="2.350"/> + <PolyStepSegment x="2.420" y="2.341"/> + <PolyStepSegment x="2.425" y="2.332"/> + <PolyStepSegment x="2.430" y="2.327"/> + <PolyStepSegment x="2.437" y="2.326"/> + <PolyStepSegment x="2.444" y="2.329"/> + <PolyStepSegment x="2.450" y="2.335"/> + <PolyStepSegment x="2.456" y="2.346"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R9"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.332" y="3.032"/> + <PolyStepSegment x="2.344" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.338" y="3.054"/> + <PolyStepSegment x="2.338" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.344" y="3.032"/> + <PolyStepSegment x="2.332" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.330" y="3.041"/> + <PolyStepSegment x="2.346" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.354" y="3.032"/> + <PolyStepSegment x="2.366" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.360" y="3.054"/> + <PolyStepSegment x="2.360" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.366" y="3.032"/> + <PolyStepSegment x="2.354" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.352" y="3.041"/> + <PolyStepSegment x="2.368" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.376" y="3.032"/> + <PolyStepSegment x="2.388" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.382" y="3.054"/> + <PolyStepSegment x="2.382" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.388" y="3.032"/> + <PolyStepSegment x="2.376" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.374" y="3.041"/> + <PolyStepSegment x="2.390" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R9"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.332" y="2.982"/> + <PolyStepSegment x="2.344" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.338" y="3.004"/> + <PolyStepSegment x="2.338" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.344" y="2.982"/> + <PolyStepSegment x="2.332" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.330" y="2.991"/> + <PolyStepSegment x="2.346" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.354" y="2.982"/> + <PolyStepSegment x="2.366" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.360" y="3.004"/> + <PolyStepSegment x="2.360" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.366" y="2.982"/> + <PolyStepSegment x="2.354" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.352" y="2.991"/> + <PolyStepSegment x="2.368" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.376" y="2.982"/> + <PolyStepSegment x="2.388" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.382" y="3.004"/> + <PolyStepSegment x="2.382" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.388" y="2.982"/> + <PolyStepSegment x="2.376" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.374" y="2.991"/> + <PolyStepSegment x="2.390" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.010" y="0.440"/> + <PolyStepSegment x="3.370" y="0.440"/> + <PolyStepSegment x="3.370" y="0.560"/> + <PolyStepSegment x="2.010" y="0.560"/> + <PolyStepSegment x="1.990" y="0.540"/> + <PolyStepSegment x="1.990" y="0.460"/> + <PolyStepSegment x="2.010" y="0.440"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R2"> + <NonstandardAttribute name="TEXT" value="R2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="0.407"/> + <PolyStepSegment x="2.125" y="0.407"/> + <PolyStepSegment x="2.125" y="0.383"/> + <PolyStepSegment x="2.121" y="0.376"/> + <PolyStepSegment x="2.116" y="0.371"/> + <PolyStepSegment x="2.106" y="0.369"/> + <PolyStepSegment x="2.096" y="0.371"/> + <PolyStepSegment x="2.090" y="0.377"/> + <PolyStepSegment x="2.086" y="0.383"/> + <PolyStepSegment x="2.086" y="0.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.086" y="0.383"/> + <PolyStepSegment x="2.050" y="0.369"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.113" y="0.331"/> + <PolyStepSegment x="2.120" y="0.325"/> + <PolyStepSegment x="2.124" y="0.319"/> + <PolyStepSegment x="2.125" y="0.311"/> + <PolyStepSegment x="2.123" y="0.302"/> + <PolyStepSegment x="2.116" y="0.295"/> + <PolyStepSegment x="2.109" y="0.293"/> + <PolyStepSegment x="2.101" y="0.294"/> + <PolyStepSegment x="2.095" y="0.298"/> + <PolyStepSegment x="2.082" y="0.317"/> + <PolyStepSegment x="2.074" y="0.325"/> + <PolyStepSegment x="2.061" y="0.331"/> + <PolyStepSegment x="2.050" y="0.333"/> + <PolyStepSegment x="2.050" y="0.293"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.418"/> + <PolyStepSegment x="2.801" y="0.406"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.804" y="0.412"/> + <PolyStepSegment x="2.779" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.406"/> + <PolyStepSegment x="2.801" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.791" y="0.420"/> + <PolyStepSegment x="2.791" y="0.404"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.396"/> + <PolyStepSegment x="2.801" y="0.384"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.804" y="0.390"/> + <PolyStepSegment x="2.779" y="0.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.384"/> + <PolyStepSegment x="2.801" y="0.396"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.791" y="0.398"/> + <PolyStepSegment x="2.791" y="0.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.374"/> + <PolyStepSegment x="2.801" y="0.362"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.804" y="0.368"/> + <PolyStepSegment x="2.779" y="0.368"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.782" y="0.362"/> + <PolyStepSegment x="2.801" y="0.374"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.791" y="0.376"/> + <PolyStepSegment x="2.791" y="0.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R2"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.418"/> + <PolyStepSegment x="2.751" y="0.406"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.754" y="0.412"/> + <PolyStepSegment x="2.729" y="0.412"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.406"/> + <PolyStepSegment x="2.751" y="0.418"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.741" y="0.420"/> + <PolyStepSegment x="2.741" y="0.404"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.396"/> + <PolyStepSegment x="2.751" y="0.384"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.754" y="0.390"/> + <PolyStepSegment x="2.729" y="0.390"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.384"/> + <PolyStepSegment x="2.751" y="0.396"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.741" y="0.398"/> + <PolyStepSegment x="2.741" y="0.382"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.374"/> + <PolyStepSegment x="2.751" y="0.362"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.754" y="0.368"/> + <PolyStepSegment x="2.729" y="0.368"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.732" y="0.362"/> + <PolyStepSegment x="2.751" y="0.374"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.741" y="0.376"/> + <PolyStepSegment x="2.741" y="0.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.510" y="2.260"/> + <PolyStepSegment x="2.510" y="3.620"/> + <PolyStepSegment x="2.390" y="3.620"/> + <PolyStepSegment x="2.390" y="2.260"/> + <PolyStepSegment x="2.410" y="2.240"/> + <PolyStepSegment x="2.490" y="2.240"/> + <PolyStepSegment x="2.510" y="2.260"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R1"> + <NonstandardAttribute name="TEXT" value="R1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.543" y="2.300"/> + <PolyStepSegment x="2.543" y="2.375"/> + <PolyStepSegment x="2.567" y="2.375"/> + <PolyStepSegment x="2.574" y="2.371"/> + <PolyStepSegment x="2.579" y="2.366"/> + <PolyStepSegment x="2.581" y="2.356"/> + <PolyStepSegment x="2.579" y="2.346"/> + <PolyStepSegment x="2.573" y="2.340"/> + <PolyStepSegment x="2.567" y="2.336"/> + <PolyStepSegment x="2.543" y="2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.567" y="2.336"/> + <PolyStepSegment x="2.581" y="2.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.637" y="2.300"/> + <PolyStepSegment x="2.637" y="2.375"/> + <PolyStepSegment x="2.626" y="2.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.626" y="2.300"/> + <PolyStepSegment x="2.648" y="2.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.532" y="3.032"/> + <PolyStepSegment x="2.544" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.538" y="3.054"/> + <PolyStepSegment x="2.538" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.544" y="3.032"/> + <PolyStepSegment x="2.532" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.530" y="3.041"/> + <PolyStepSegment x="2.546" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.554" y="3.032"/> + <PolyStepSegment x="2.566" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.560" y="3.054"/> + <PolyStepSegment x="2.560" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.566" y="3.032"/> + <PolyStepSegment x="2.554" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.552" y="3.041"/> + <PolyStepSegment x="2.568" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.576" y="3.032"/> + <PolyStepSegment x="2.588" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.582" y="3.054"/> + <PolyStepSegment x="2.582" y="3.029"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.588" y="3.032"/> + <PolyStepSegment x="2.576" y="3.051"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.574" y="3.041"/> + <PolyStepSegment x="2.590" y="3.041"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R1"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.532" y="2.982"/> + <PolyStepSegment x="2.544" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.538" y="3.004"/> + <PolyStepSegment x="2.538" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.544" y="2.982"/> + <PolyStepSegment x="2.532" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.530" y="2.991"/> + <PolyStepSegment x="2.546" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.554" y="2.982"/> + <PolyStepSegment x="2.566" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.560" y="3.004"/> + <PolyStepSegment x="2.560" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.566" y="2.982"/> + <PolyStepSegment x="2.554" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.552" y="2.991"/> + <PolyStepSegment x="2.568" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.576" y="2.982"/> + <PolyStepSegment x="2.588" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.582" y="3.004"/> + <PolyStepSegment x="2.582" y="2.979"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.588" y="2.982"/> + <PolyStepSegment x="2.576" y="3.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.574" y="2.991"/> + <PolyStepSegment x="2.590" y="2.991"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.300" y="1.150"/> + <PolyStepCurve x="3.550" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="0.650" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.050" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="1.150" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.978" y="1.930"/> + <PolyStepSegment x="3.328" y="2.213"/> + <PolyStepCurve x="3.335" y="2.283" centerX="3.296227" centerY="2.251527" clockwise="false"/> + <PolyStepCurve x="3.265" y="2.291" centerX="3.295975" centerY="2.251785" clockwise="false"/> + <PolyStepSegment x="2.915" y="2.008"/> + <PolyStepCurve x="2.908" y="1.937" centerX="2.946444" centerY="1.969055" clockwise="false"/> + <PolyStepCurve x="2.978" y="1.930" centerX="2.946527" centerY="1.968770" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.853" y="2.847"/> + <PolyStepSegment x="3.171" y="2.529"/> + <PolyStepCurve x="3.241" y="2.529" centerX="3.206000" centerY="2.564666" clockwise="false"/> + <PolyStepCurve x="3.241" y="2.600" centerX="3.205974" centerY="2.564500" clockwise="false"/> + <PolyStepSegment x="2.923" y="2.918"/> + <PolyStepCurve x="2.853" y="2.918" centerX="2.888000" centerY="2.882659" clockwise="false"/> + <PolyStepCurve x="2.853" y="2.847" centerX="2.887983" centerY="2.882500" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.900" y="2.350"/> + <PolyStepSegment x="3.350" y="2.350"/> + <PolyStepCurve x="3.400" y="2.400" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="3.350" y="2.450" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepSegment x="2.900" y="2.450"/> + <PolyStepCurve x="2.850" y="2.400" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="2.900" y="2.350" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="2.900"/> + <PolyStepSegment x="3.450" y="2.450"/> + <PolyStepCurve x="3.500" y="2.400" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepCurve x="3.550" y="2.450" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepSegment x="3.550" y="2.900"/> + <PolyStepCurve x="3.500" y="2.950" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="3.450" y="2.900" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.0" y="-0.250"/> + <PolyStepSegment x="3.250" y="-0.250"/> + <PolyStepSegment x="3.500" y="0.0"/> + <PolyStepSegment x="3.500" y="0.300"/> + <PolyStepCurve x="3.535" y="0.386" centerX="3.621307" centerY="0.300753" clockwise="true"/> + <PolyStepSegment x="3.550" y="0.400"/> + <PolyStepSegment x="3.614" y="0.464"/> + <PolyStepCurve x="3.650" y="0.550" centerX="3.528979" centerY="0.550125" clockwise="false"/> + <PolyStepSegment x="3.650" y="1.300"/> + <PolyStepSegment x="3.400" y="1.500"/> + <PolyStepSegment x="3.400" y="1.700"/> + <PolyStepCurve x="3.450" y="1.700" centerX="3.425000" centerY="1.700000" clockwise="true"/> + <PolyStepSegment x="3.450" y="1.550"/> + <PolyStepSegment x="3.500" y="1.500"/> + <PolyStepSegment x="3.600" y="1.500"/> + <PolyStepSegment x="3.650" y="1.550"/> + <PolyStepSegment x="3.650" y="2.150"/> + <PolyStepCurve x="3.600" y="2.200" centerX="3.600000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.500" y="2.200"/> + <PolyStepCurve x="3.450" y="2.150" centerX="3.500000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.450" y="1.900"/> + <PolyStepCurve x="3.400" y="1.900" centerX="3.425000" centerY="1.900000" clockwise="true"/> + <PolyStepSegment x="3.400" y="2.250"/> + <PolyStepSegment x="3.450" y="2.300"/> + <PolyStepSegment x="3.600" y="2.300"/> + <PolyStepSegment x="3.650" y="2.350"/> + <PolyStepSegment x="3.650" y="3.800"/> + <PolyStepCurve x="3.450" y="4.000" centerX="3.450000" centerY="3.800000" clockwise="false"/> + <PolyStepCurve x="2.450" y="4.100" centerX="3.450000" centerY="9.050000" clockwise="true"/> + <PolyStepSegment x="-0.250" y="4.100"/> + <PolyStepSegment x="-0.250" y="0.0"/> + <PolyStepCurve x="0.0" y="-0.250" centerX="0.0" centerY="0.0" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.429" y="3.017"/> + <PolyStepSegment x="3.366" y="3.095"/> + <PolyStepSegment x="3.095" y="2.873"/> + <PolyStepSegment x="3.158" y="2.796"/> + <PolyStepSegment x="3.429" y="3.017"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.350" y="3.300"/> + <PolyStepSegment x="3.400" y="3.350"/> + <PolyStepSegment x="3.150" y="3.600"/> + <PolyStepSegment x="3.100" y="3.550"/> + <PolyStepSegment x="3.350" y="3.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.400" y="3.150"/> + <PolyStepSegment x="3.400" y="3.250"/> + <PolyStepSegment x="3.050" y="3.250"/> + <PolyStepSegment x="3.050" y="3.150"/> + <PolyStepSegment x="3.400" y="3.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="3.600"/> + <PolyStepSegment x="3.550" y="3.600"/> + <PolyStepSegment x="3.550" y="3.150"/> + <PolyStepSegment x="3.450" y="3.150"/> + <PolyStepSegment x="3.450" y="3.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.150" y="0.050"/> + <PolyStepCurve x="2.250" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <PolyStepCurve x="2.150" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="0.100"/> + <PolyStepCurve x="2.050" y="0.0" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <PolyStepCurve x="2.050" y="0.100" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + </LayerFeature> + <LayerFeature layerRef="SS_TOP"> + <Set> + <ColorRef id="COLOR_SS_TOP"/> + </Set> + <Set geometryUsage="TEXT" componentRef="J1"> + <NonstandardAttribute name="TEXT" value="J1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.090" y="3.058"/> + <PolyStepSegment x="-0.083" y="3.062"/> + <PolyStepSegment x="-0.079" y="3.066"/> + <PolyStepSegment x="-0.077" y="3.072"/> + <PolyStepSegment x="-0.079" y="3.078"/> + <PolyStepSegment x="-0.083" y="3.083"/> + <PolyStepSegment x="-0.090" y="3.088"/> + <PolyStepSegment x="-0.098" y="3.089"/> + <PolyStepSegment x="-0.140" y="3.089"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.077" y="3.136"/> + <PolyStepSegment x="-0.140" y="3.136"/> + <PolyStepSegment x="-0.127" y="3.127"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.077" y="3.127"/> + <PolyStepSegment x="-0.077" y="3.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="OR_00000258EB6DF090"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.725" y="3.825"/> + <PolyStepSegment x="2.675" y="3.825"/> + <PolyStepSegment x="2.675" y="2.075"/> + <PolyStepSegment x="2.725" y="2.075"/> + <PolyStepSegment x="2.725" y="3.825"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C7"> + <NonstandardAttribute name="TEXT" value="C7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.933" y="0.943"/> + <PolyStepSegment x="0.927" y="0.947"/> + <PolyStepSegment x="0.920" y="0.949"/> + <PolyStepSegment x="0.913" y="0.949"/> + <PolyStepSegment x="0.905" y="0.945"/> + <PolyStepSegment x="0.898" y="0.939"/> + <PolyStepSegment x="0.893" y="0.931"/> + <PolyStepSegment x="0.890" y="0.919"/> + <PolyStepSegment x="0.889" y="0.908"/> + <PolyStepSegment x="0.891" y="0.896"/> + <PolyStepSegment x="0.893" y="0.889"/> + <PolyStepSegment x="0.899" y="0.881"/> + <PolyStepSegment x="0.905" y="0.876"/> + <PolyStepSegment x="0.912" y="0.874"/> + <PolyStepSegment x="0.919" y="0.874"/> + <PolyStepSegment x="0.925" y="0.876"/> + <PolyStepSegment x="0.931" y="0.880"/> + <PolyStepSegment x="0.935" y="0.885"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.985" y="0.874"/> + <PolyStepSegment x="0.987" y="0.890"/> + <PolyStepSegment x="0.990" y="0.904"/> + <PolyStepSegment x="0.994" y="0.917"/> + <PolyStepSegment x="0.998" y="0.930"/> + <PolyStepSegment x="1.006" y="0.949"/> + <PolyStepSegment x="0.968" y="0.949"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C2"> + <NonstandardAttribute name="TEXT" value="C2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.206" y="0.895"/> + <PolyStepSegment x="0.202" y="0.889"/> + <PolyStepSegment x="0.200" y="0.882"/> + <PolyStepSegment x="0.200" y="0.875"/> + <PolyStepSegment x="0.204" y="0.867"/> + <PolyStepSegment x="0.210" y="0.860"/> + <PolyStepSegment x="0.218" y="0.855"/> + <PolyStepSegment x="0.230" y="0.852"/> + <PolyStepSegment x="0.241" y="0.851"/> + <PolyStepSegment x="0.253" y="0.853"/> + <PolyStepSegment x="0.260" y="0.855"/> + <PolyStepSegment x="0.268" y="0.861"/> + <PolyStepSegment x="0.273" y="0.867"/> + <PolyStepSegment x="0.275" y="0.874"/> + <PolyStepSegment x="0.275" y="0.881"/> + <PolyStepSegment x="0.273" y="0.887"/> + <PolyStepSegment x="0.269" y="0.893"/> + <PolyStepSegment x="0.264" y="0.897"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.212" y="0.931"/> + <PolyStepSegment x="0.205" y="0.937"/> + <PolyStepSegment x="0.201" y="0.943"/> + <PolyStepSegment x="0.200" y="0.951"/> + <PolyStepSegment x="0.202" y="0.960"/> + <PolyStepSegment x="0.209" y="0.967"/> + <PolyStepSegment x="0.216" y="0.969"/> + <PolyStepSegment x="0.224" y="0.968"/> + <PolyStepSegment x="0.230" y="0.964"/> + <PolyStepSegment x="0.243" y="0.945"/> + <PolyStepSegment x="0.251" y="0.937"/> + <PolyStepSegment x="0.264" y="0.931"/> + <PolyStepSegment x="0.275" y="0.929"/> + <PolyStepSegment x="0.275" y="0.969"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C3"> + <NonstandardAttribute name="TEXT" value="C3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.432" y="0.856"/> + <PolyStepSegment x="0.438" y="0.852"/> + <PolyStepSegment x="0.445" y="0.850"/> + <PolyStepSegment x="0.452" y="0.850"/> + <PolyStepSegment x="0.460" y="0.854"/> + <PolyStepSegment x="0.467" y="0.860"/> + <PolyStepSegment x="0.472" y="0.868"/> + <PolyStepSegment x="0.475" y="0.880"/> + <PolyStepSegment x="0.476" y="0.891"/> + <PolyStepSegment x="0.474" y="0.903"/> + <PolyStepSegment x="0.472" y="0.910"/> + <PolyStepSegment x="0.466" y="0.918"/> + <PolyStepSegment x="0.460" y="0.923"/> + <PolyStepSegment x="0.453" y="0.925"/> + <PolyStepSegment x="0.446" y="0.925"/> + <PolyStepSegment x="0.440" y="0.923"/> + <PolyStepSegment x="0.434" y="0.919"/> + <PolyStepSegment x="0.430" y="0.914"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.399" y="0.910"/> + <PolyStepSegment x="0.393" y="0.919"/> + <PolyStepSegment x="0.385" y="0.924"/> + <PolyStepSegment x="0.377" y="0.925"/> + <PolyStepSegment x="0.370" y="0.924"/> + <PolyStepSegment x="0.362" y="0.918"/> + <PolyStepSegment x="0.357" y="0.910"/> + <PolyStepSegment x="0.357" y="0.903"/> + <PolyStepSegment x="0.358" y="0.894"/> + <PolyStepSegment x="0.365" y="0.888"/> + <PolyStepSegment x="0.371" y="0.885"/> + <PolyStepSegment x="0.380" y="0.885"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.371" y="0.885"/> + <PolyStepSegment x="0.366" y="0.881"/> + <PolyStepSegment x="0.361" y="0.875"/> + <PolyStepSegment x="0.359" y="0.868"/> + <PolyStepSegment x="0.361" y="0.860"/> + <PolyStepSegment x="0.366" y="0.854"/> + <PolyStepSegment x="0.374" y="0.850"/> + <PolyStepSegment x="0.383" y="0.851"/> + <PolyStepSegment x="0.391" y="0.856"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C5"> + <NonstandardAttribute name="TEXT" value="C5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.056" y="0.583"/> + <PolyStepSegment x="1.052" y="0.577"/> + <PolyStepSegment x="1.050" y="0.570"/> + <PolyStepSegment x="1.050" y="0.563"/> + <PolyStepSegment x="1.054" y="0.555"/> + <PolyStepSegment x="1.060" y="0.548"/> + <PolyStepSegment x="1.068" y="0.543"/> + <PolyStepSegment x="1.080" y="0.540"/> + <PolyStepSegment x="1.091" y="0.539"/> + <PolyStepSegment x="1.103" y="0.541"/> + <PolyStepSegment x="1.110" y="0.543"/> + <PolyStepSegment x="1.118" y="0.549"/> + <PolyStepSegment x="1.123" y="0.555"/> + <PolyStepSegment x="1.125" y="0.562"/> + <PolyStepSegment x="1.125" y="0.569"/> + <PolyStepSegment x="1.123" y="0.575"/> + <PolyStepSegment x="1.119" y="0.581"/> + <PolyStepSegment x="1.114" y="0.585"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.114" y="0.616"/> + <PolyStepSegment x="1.120" y="0.622"/> + <PolyStepSegment x="1.124" y="0.629"/> + <PolyStepSegment x="1.125" y="0.637"/> + <PolyStepSegment x="1.123" y="0.645"/> + <PolyStepSegment x="1.118" y="0.652"/> + <PolyStepSegment x="1.109" y="0.657"/> + <PolyStepSegment x="1.099" y="0.658"/> + <PolyStepSegment x="1.089" y="0.656"/> + <PolyStepSegment x="1.082" y="0.651"/> + <PolyStepSegment x="1.078" y="0.644"/> + <PolyStepSegment x="1.076" y="0.638"/> + <PolyStepSegment x="1.078" y="0.631"/> + <PolyStepSegment x="1.082" y="0.623"/> + <PolyStepSegment x="1.050" y="0.626"/> + <PolyStepSegment x="1.050" y="0.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C6"> + <NonstandardAttribute name="TEXT" value="C6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.094" y="0.617"/> + <PolyStepSegment x="1.098" y="0.623"/> + <PolyStepSegment x="1.100" y="0.630"/> + <PolyStepSegment x="1.100" y="0.637"/> + <PolyStepSegment x="1.096" y="0.645"/> + <PolyStepSegment x="1.090" y="0.652"/> + <PolyStepSegment x="1.082" y="0.657"/> + <PolyStepSegment x="1.070" y="0.660"/> + <PolyStepSegment x="1.059" y="0.661"/> + <PolyStepSegment x="1.047" y="0.659"/> + <PolyStepSegment x="1.040" y="0.657"/> + <PolyStepSegment x="1.032" y="0.651"/> + <PolyStepSegment x="1.027" y="0.645"/> + <PolyStepSegment x="1.025" y="0.638"/> + <PolyStepSegment x="1.025" y="0.631"/> + <PolyStepSegment x="1.027" y="0.625"/> + <PolyStepSegment x="1.031" y="0.619"/> + <PolyStepSegment x="1.036" y="0.615"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.056" y="0.581"/> + <PolyStepSegment x="1.065" y="0.574"/> + <PolyStepSegment x="1.070" y="0.569"/> + <PolyStepSegment x="1.072" y="0.561"/> + <PolyStepSegment x="1.070" y="0.555"/> + <PolyStepSegment x="1.065" y="0.550"/> + <PolyStepSegment x="1.057" y="0.546"/> + <PolyStepSegment x="1.049" y="0.545"/> + <PolyStepSegment x="1.041" y="0.546"/> + <PolyStepSegment x="1.034" y="0.550"/> + <PolyStepSegment x="1.027" y="0.556"/> + <PolyStepSegment x="1.025" y="0.562"/> + <PolyStepSegment x="1.027" y="0.570"/> + <PolyStepSegment x="1.035" y="0.576"/> + <PolyStepSegment x="1.046" y="0.580"/> + <PolyStepSegment x="1.059" y="0.581"/> + <PolyStepSegment x="1.075" y="0.579"/> + <PolyStepSegment x="1.084" y="0.576"/> + <PolyStepSegment x="1.092" y="0.571"/> + <PolyStepSegment x="1.099" y="0.565"/> + <PolyStepSegment x="1.100" y="0.558"/> + <PolyStepSegment x="1.098" y="0.552"/> + <PolyStepSegment x="1.091" y="0.547"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C4"> + <NonstandardAttribute name="TEXT" value="C4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.606" y="0.583"/> + <PolyStepSegment x="0.602" y="0.577"/> + <PolyStepSegment x="0.600" y="0.570"/> + <PolyStepSegment x="0.600" y="0.563"/> + <PolyStepSegment x="0.604" y="0.555"/> + <PolyStepSegment x="0.610" y="0.548"/> + <PolyStepSegment x="0.618" y="0.543"/> + <PolyStepSegment x="0.630" y="0.540"/> + <PolyStepSegment x="0.641" y="0.539"/> + <PolyStepSegment x="0.653" y="0.541"/> + <PolyStepSegment x="0.660" y="0.543"/> + <PolyStepSegment x="0.668" y="0.549"/> + <PolyStepSegment x="0.673" y="0.555"/> + <PolyStepSegment x="0.675" y="0.562"/> + <PolyStepSegment x="0.675" y="0.569"/> + <PolyStepSegment x="0.673" y="0.575"/> + <PolyStepSegment x="0.669" y="0.581"/> + <PolyStepSegment x="0.664" y="0.585"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.675" y="0.648"/> + <PolyStepSegment x="0.600" y="0.648"/> + <PolyStepSegment x="0.654" y="0.614"/> + <PolyStepSegment x="0.654" y="0.660"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R3"> + <NonstandardAttribute name="TEXT" value="R3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.575" y="0.357"/> + <PolyStepSegment x="0.650" y="0.357"/> + <PolyStepSegment x="0.650" y="0.333"/> + <PolyStepSegment x="0.646" y="0.326"/> + <PolyStepSegment x="0.641" y="0.321"/> + <PolyStepSegment x="0.631" y="0.319"/> + <PolyStepSegment x="0.621" y="0.321"/> + <PolyStepSegment x="0.615" y="0.327"/> + <PolyStepSegment x="0.611" y="0.333"/> + <PolyStepSegment x="0.611" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.611" y="0.333"/> + <PolyStepSegment x="0.575" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.590" y="0.284"/> + <PolyStepSegment x="0.581" y="0.278"/> + <PolyStepSegment x="0.576" y="0.270"/> + <PolyStepSegment x="0.575" y="0.262"/> + <PolyStepSegment x="0.576" y="0.255"/> + <PolyStepSegment x="0.582" y="0.247"/> + <PolyStepSegment x="0.590" y="0.242"/> + <PolyStepSegment x="0.597" y="0.242"/> + <PolyStepSegment x="0.606" y="0.243"/> + <PolyStepSegment x="0.612" y="0.250"/> + <PolyStepSegment x="0.615" y="0.256"/> + <PolyStepSegment x="0.615" y="0.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.615" y="0.256"/> + <PolyStepSegment x="0.619" y="0.251"/> + <PolyStepSegment x="0.625" y="0.246"/> + <PolyStepSegment x="0.632" y="0.244"/> + <PolyStepSegment x="0.640" y="0.246"/> + <PolyStepSegment x="0.646" y="0.251"/> + <PolyStepSegment x="0.650" y="0.259"/> + <PolyStepSegment x="0.649" y="0.268"/> + <PolyStepSegment x="0.644" y="0.276"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R7"> + <NonstandardAttribute name="TEXT" value="R7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.675" y="0.243"/> + <PolyStepSegment x="0.600" y="0.243"/> + <PolyStepSegment x="0.600" y="0.267"/> + <PolyStepSegment x="0.604" y="0.274"/> + <PolyStepSegment x="0.609" y="0.279"/> + <PolyStepSegment x="0.619" y="0.281"/> + <PolyStepSegment x="0.629" y="0.279"/> + <PolyStepSegment x="0.635" y="0.273"/> + <PolyStepSegment x="0.639" y="0.267"/> + <PolyStepSegment x="0.639" y="0.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.639" y="0.267"/> + <PolyStepSegment x="0.675" y="0.281"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.675" y="0.335"/> + <PolyStepSegment x="0.659" y="0.337"/> + <PolyStepSegment x="0.645" y="0.340"/> + <PolyStepSegment x="0.632" y="0.344"/> + <PolyStepSegment x="0.619" y="0.348"/> + <PolyStepSegment x="0.600" y="0.356"/> + <PolyStepSegment x="0.600" y="0.318"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R10"> + <NonstandardAttribute name="TEXT" value="R10" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.725" y="0.694"/> + <PolyStepSegment x="0.800" y="0.694"/> + <PolyStepSegment x="0.800" y="0.670"/> + <PolyStepSegment x="0.796" y="0.663"/> + <PolyStepSegment x="0.791" y="0.658"/> + <PolyStepSegment x="0.781" y="0.656"/> + <PolyStepSegment x="0.771" y="0.658"/> + <PolyStepSegment x="0.765" y="0.664"/> + <PolyStepSegment x="0.761" y="0.670"/> + <PolyStepSegment x="0.761" y="0.694"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.761" y="0.670"/> + <PolyStepSegment x="0.725" y="0.656"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.725" y="0.600"/> + <PolyStepSegment x="0.800" y="0.600"/> + <PolyStepSegment x="0.785" y="0.611"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.725" y="0.611"/> + <PolyStepSegment x="0.725" y="0.589"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.800" y="0.525"/> + <PolyStepSegment x="0.798" y="0.532"/> + <PolyStepSegment x="0.791" y="0.538"/> + <PolyStepSegment x="0.784" y="0.542"/> + <PolyStepSegment x="0.774" y="0.545"/> + <PolyStepSegment x="0.762" y="0.546"/> + <PolyStepSegment x="0.751" y="0.545"/> + <PolyStepSegment x="0.741" y="0.542"/> + <PolyStepSegment x="0.734" y="0.538"/> + <PolyStepSegment x="0.727" y="0.532"/> + <PolyStepSegment x="0.725" y="0.525"/> + <PolyStepSegment x="0.727" y="0.518"/> + <PolyStepSegment x="0.734" y="0.512"/> + <PolyStepSegment x="0.741" y="0.508"/> + <PolyStepSegment x="0.751" y="0.505"/> + <PolyStepSegment x="0.762" y="0.504"/> + <PolyStepSegment x="0.774" y="0.505"/> + <PolyStepSegment x="0.784" y="0.508"/> + <PolyStepSegment x="0.791" y="0.512"/> + <PolyStepSegment x="0.798" y="0.518"/> + <PolyStepSegment x="0.800" y="0.525"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R11"> + <NonstandardAttribute name="TEXT" value="R11" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.806"/> + <PolyStepSegment x="0.750" y="0.806"/> + <PolyStepSegment x="0.750" y="0.830"/> + <PolyStepSegment x="0.754" y="0.837"/> + <PolyStepSegment x="0.759" y="0.842"/> + <PolyStepSegment x="0.769" y="0.844"/> + <PolyStepSegment x="0.779" y="0.842"/> + <PolyStepSegment x="0.785" y="0.836"/> + <PolyStepSegment x="0.789" y="0.830"/> + <PolyStepSegment x="0.789" y="0.806"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.830"/> + <PolyStepSegment x="0.825" y="0.844"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.900"/> + <PolyStepSegment x="0.750" y="0.900"/> + <PolyStepSegment x="0.765" y="0.889"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.889"/> + <PolyStepSegment x="0.825" y="0.911"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.975"/> + <PolyStepSegment x="0.750" y="0.975"/> + <PolyStepSegment x="0.765" y="0.964"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.964"/> + <PolyStepSegment x="0.825" y="0.986"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R13"> + <NonstandardAttribute name="TEXT" value="R13" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="0.506"/> + <PolyStepSegment x="1.850" y="0.506"/> + <PolyStepSegment x="1.850" y="0.530"/> + <PolyStepSegment x="1.854" y="0.537"/> + <PolyStepSegment x="1.859" y="0.542"/> + <PolyStepSegment x="1.869" y="0.544"/> + <PolyStepSegment x="1.879" y="0.542"/> + <PolyStepSegment x="1.885" y="0.536"/> + <PolyStepSegment x="1.889" y="0.530"/> + <PolyStepSegment x="1.889" y="0.506"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.889" y="0.530"/> + <PolyStepSegment x="1.925" y="0.544"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="0.600"/> + <PolyStepSegment x="1.850" y="0.600"/> + <PolyStepSegment x="1.865" y="0.589"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.925" y="0.589"/> + <PolyStepSegment x="1.925" y="0.611"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.910" y="0.654"/> + <PolyStepSegment x="1.919" y="0.660"/> + <PolyStepSegment x="1.924" y="0.668"/> + <PolyStepSegment x="1.925" y="0.676"/> + <PolyStepSegment x="1.924" y="0.683"/> + <PolyStepSegment x="1.918" y="0.691"/> + <PolyStepSegment x="1.910" y="0.696"/> + <PolyStepSegment x="1.903" y="0.696"/> + <PolyStepSegment x="1.894" y="0.695"/> + <PolyStepSegment x="1.888" y="0.688"/> + <PolyStepSegment x="1.885" y="0.682"/> + <PolyStepSegment x="1.885" y="0.673"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.885" y="0.682"/> + <PolyStepSegment x="1.881" y="0.687"/> + <PolyStepSegment x="1.875" y="0.692"/> + <PolyStepSegment x="1.868" y="0.694"/> + <PolyStepSegment x="1.860" y="0.692"/> + <PolyStepSegment x="1.854" y="0.687"/> + <PolyStepSegment x="1.850" y="0.679"/> + <PolyStepSegment x="1.851" y="0.670"/> + <PolyStepSegment x="1.856" y="0.662"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R5"> + <NonstandardAttribute name="TEXT" value="R5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.525" y="0.543"/> + <PolyStepSegment x="0.450" y="0.543"/> + <PolyStepSegment x="0.450" y="0.567"/> + <PolyStepSegment x="0.454" y="0.574"/> + <PolyStepSegment x="0.459" y="0.579"/> + <PolyStepSegment x="0.469" y="0.581"/> + <PolyStepSegment x="0.479" y="0.579"/> + <PolyStepSegment x="0.485" y="0.573"/> + <PolyStepSegment x="0.489" y="0.567"/> + <PolyStepSegment x="0.489" y="0.543"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="0.567"/> + <PolyStepSegment x="0.525" y="0.581"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.514" y="0.616"/> + <PolyStepSegment x="0.520" y="0.622"/> + <PolyStepSegment x="0.524" y="0.629"/> + <PolyStepSegment x="0.525" y="0.637"/> + <PolyStepSegment x="0.523" y="0.645"/> + <PolyStepSegment x="0.518" y="0.652"/> + <PolyStepSegment x="0.509" y="0.657"/> + <PolyStepSegment x="0.499" y="0.658"/> + <PolyStepSegment x="0.489" y="0.656"/> + <PolyStepSegment x="0.482" y="0.651"/> + <PolyStepSegment x="0.478" y="0.644"/> + <PolyStepSegment x="0.476" y="0.638"/> + <PolyStepSegment x="0.478" y="0.631"/> + <PolyStepSegment x="0.482" y="0.623"/> + <PolyStepSegment x="0.450" y="0.626"/> + <PolyStepSegment x="0.450" y="0.651"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R8"> + <NonstandardAttribute name="TEXT" value="R8" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.275" y="0.357"/> + <PolyStepSegment x="0.350" y="0.357"/> + <PolyStepSegment x="0.350" y="0.333"/> + <PolyStepSegment x="0.346" y="0.326"/> + <PolyStepSegment x="0.341" y="0.321"/> + <PolyStepSegment x="0.331" y="0.319"/> + <PolyStepSegment x="0.321" y="0.321"/> + <PolyStepSegment x="0.315" y="0.327"/> + <PolyStepSegment x="0.311" y="0.333"/> + <PolyStepSegment x="0.311" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.311" y="0.333"/> + <PolyStepSegment x="0.275" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.275" y="0.263"/> + <PolyStepSegment x="0.276" y="0.256"/> + <PolyStepSegment x="0.280" y="0.249"/> + <PolyStepSegment x="0.286" y="0.244"/> + <PolyStepSegment x="0.295" y="0.242"/> + <PolyStepSegment x="0.304" y="0.244"/> + <PolyStepSegment x="0.311" y="0.250"/> + <PolyStepSegment x="0.315" y="0.258"/> + <PolyStepSegment x="0.315" y="0.268"/> + <PolyStepSegment x="0.318" y="0.273"/> + <PolyStepSegment x="0.324" y="0.278"/> + <PolyStepSegment x="0.332" y="0.280"/> + <PolyStepSegment x="0.341" y="0.277"/> + <PolyStepSegment x="0.348" y="0.270"/> + <PolyStepSegment x="0.350" y="0.263"/> + <PolyStepSegment x="0.348" y="0.256"/> + <PolyStepSegment x="0.341" y="0.249"/> + <PolyStepSegment x="0.332" y="0.246"/> + <PolyStepSegment x="0.324" y="0.248"/> + <PolyStepSegment x="0.318" y="0.253"/> + <PolyStepSegment x="0.315" y="0.258"/> + <PolyStepSegment x="0.315" y="0.268"/> + <PolyStepSegment x="0.311" y="0.276"/> + <PolyStepSegment x="0.304" y="0.282"/> + <PolyStepSegment x="0.295" y="0.284"/> + <PolyStepSegment x="0.286" y="0.282"/> + <PolyStepSegment x="0.280" y="0.277"/> + <PolyStepSegment x="0.276" y="0.270"/> + <PolyStepSegment x="0.275" y="0.263"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R4"> + <NonstandardAttribute name="TEXT" value="R4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.175" y="0.357"/> + <PolyStepSegment x="1.250" y="0.357"/> + <PolyStepSegment x="1.250" y="0.333"/> + <PolyStepSegment x="1.246" y="0.326"/> + <PolyStepSegment x="1.241" y="0.321"/> + <PolyStepSegment x="1.231" y="0.319"/> + <PolyStepSegment x="1.221" y="0.321"/> + <PolyStepSegment x="1.215" y="0.327"/> + <PolyStepSegment x="1.211" y="0.333"/> + <PolyStepSegment x="1.211" y="0.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.211" y="0.333"/> + <PolyStepSegment x="1.175" y="0.319"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.175" y="0.252"/> + <PolyStepSegment x="1.250" y="0.252"/> + <PolyStepSegment x="1.196" y="0.286"/> + <PolyStepSegment x="1.196" y="0.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R6"> + <NonstandardAttribute name="TEXT" value="R6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.825" y="0.543"/> + <PolyStepSegment x="0.750" y="0.543"/> + <PolyStepSegment x="0.750" y="0.567"/> + <PolyStepSegment x="0.754" y="0.574"/> + <PolyStepSegment x="0.759" y="0.579"/> + <PolyStepSegment x="0.769" y="0.581"/> + <PolyStepSegment x="0.779" y="0.579"/> + <PolyStepSegment x="0.785" y="0.573"/> + <PolyStepSegment x="0.789" y="0.567"/> + <PolyStepSegment x="0.789" y="0.543"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.789" y="0.567"/> + <PolyStepSegment x="0.825" y="0.581"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.794" y="0.619"/> + <PolyStepSegment x="0.785" y="0.626"/> + <PolyStepSegment x="0.780" y="0.631"/> + <PolyStepSegment x="0.778" y="0.639"/> + <PolyStepSegment x="0.780" y="0.645"/> + <PolyStepSegment x="0.785" y="0.650"/> + <PolyStepSegment x="0.793" y="0.654"/> + <PolyStepSegment x="0.801" y="0.655"/> + <PolyStepSegment x="0.809" y="0.654"/> + <PolyStepSegment x="0.816" y="0.650"/> + <PolyStepSegment x="0.823" y="0.644"/> + <PolyStepSegment x="0.825" y="0.638"/> + <PolyStepSegment x="0.823" y="0.630"/> + <PolyStepSegment x="0.815" y="0.624"/> + <PolyStepSegment x="0.804" y="0.620"/> + <PolyStepSegment x="0.791" y="0.619"/> + <PolyStepSegment x="0.775" y="0.621"/> + <PolyStepSegment x="0.766" y="0.624"/> + <PolyStepSegment x="0.758" y="0.629"/> + <PolyStepSegment x="0.751" y="0.635"/> + <PolyStepSegment x="0.750" y="0.642"/> + <PolyStepSegment x="0.752" y="0.648"/> + <PolyStepSegment x="0.759" y="0.653"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R12"> + <NonstandardAttribute name="TEXT" value="R12" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.729"/> + <PolyStepSegment x="1.600" y="0.729"/> + <PolyStepSegment x="1.600" y="0.705"/> + <PolyStepSegment x="1.596" y="0.698"/> + <PolyStepSegment x="1.591" y="0.693"/> + <PolyStepSegment x="1.581" y="0.691"/> + <PolyStepSegment x="1.571" y="0.693"/> + <PolyStepSegment x="1.565" y="0.699"/> + <PolyStepSegment x="1.561" y="0.705"/> + <PolyStepSegment x="1.561" y="0.729"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.561" y="0.705"/> + <PolyStepSegment x="1.525" y="0.691"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.635"/> + <PolyStepSegment x="1.600" y="0.635"/> + <PolyStepSegment x="1.585" y="0.646"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.646"/> + <PolyStepSegment x="1.525" y="0.624"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.588" y="0.578"/> + <PolyStepSegment x="1.595" y="0.572"/> + <PolyStepSegment x="1.599" y="0.566"/> + <PolyStepSegment x="1.600" y="0.558"/> + <PolyStepSegment x="1.598" y="0.549"/> + <PolyStepSegment x="1.591" y="0.542"/> + <PolyStepSegment x="1.584" y="0.540"/> + <PolyStepSegment x="1.576" y="0.541"/> + <PolyStepSegment x="1.570" y="0.545"/> + <PolyStepSegment x="1.557" y="0.564"/> + <PolyStepSegment x="1.549" y="0.572"/> + <PolyStepSegment x="1.536" y="0.578"/> + <PolyStepSegment x="1.525" y="0.580"/> + <PolyStepSegment x="1.525" y="0.540"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="C1"> + <NonstandardAttribute name="TEXT" value="C1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.968" y="0.343"/> + <PolyStepSegment x="0.962" y="0.347"/> + <PolyStepSegment x="0.955" y="0.349"/> + <PolyStepSegment x="0.948" y="0.349"/> + <PolyStepSegment x="0.940" y="0.345"/> + <PolyStepSegment x="0.933" y="0.339"/> + <PolyStepSegment x="0.928" y="0.331"/> + <PolyStepSegment x="0.925" y="0.319"/> + <PolyStepSegment x="0.924" y="0.308"/> + <PolyStepSegment x="0.926" y="0.296"/> + <PolyStepSegment x="0.928" y="0.289"/> + <PolyStepSegment x="0.934" y="0.281"/> + <PolyStepSegment x="0.940" y="0.276"/> + <PolyStepSegment x="0.947" y="0.274"/> + <PolyStepSegment x="0.954" y="0.274"/> + <PolyStepSegment x="0.960" y="0.276"/> + <PolyStepSegment x="0.966" y="0.280"/> + <PolyStepSegment x="0.970" y="0.285"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.022" y="0.274"/> + <PolyStepSegment x="1.022" y="0.349"/> + <PolyStepSegment x="1.011" y="0.334"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.011" y="0.274"/> + <PolyStepSegment x="1.033" y="0.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U13"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.565" y="0.203"/> + <PolyStepSegment x="1.565" y="0.168"/> + <PolyStepSegment x="1.935" y="0.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U13"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.935" y="0.168"/> + <PolyStepSegment x="1.935" y="0.433"/> + <PolyStepSegment x="1.565" y="0.433"/> + <PolyStepSegment x="1.565" y="0.247"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U13"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.565" y="0.252"/> + <PolyStepSegment x="1.935" y="0.252"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U13"> + <NonstandardAttribute name="TEXT" value="U13" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.494" y="0.348"/> + <PolyStepSegment x="1.494" y="0.294"/> + <PolyStepSegment x="1.498" y="0.283"/> + <PolyStepSegment x="1.506" y="0.275"/> + <PolyStepSegment x="1.515" y="0.273"/> + <PolyStepSegment x="1.524" y="0.275"/> + <PolyStepSegment x="1.532" y="0.283"/> + <PolyStepSegment x="1.536" y="0.294"/> + <PolyStepSegment x="1.536" y="0.348"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.590" y="0.273"/> + <PolyStepSegment x="1.590" y="0.348"/> + <PolyStepSegment x="1.579" y="0.333"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.579" y="0.273"/> + <PolyStepSegment x="1.601" y="0.273"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.644" y="0.288"/> + <PolyStepSegment x="1.650" y="0.279"/> + <PolyStepSegment x="1.658" y="0.274"/> + <PolyStepSegment x="1.666" y="0.273"/> + <PolyStepSegment x="1.673" y="0.274"/> + <PolyStepSegment x="1.681" y="0.280"/> + <PolyStepSegment x="1.686" y="0.288"/> + <PolyStepSegment x="1.686" y="0.295"/> + <PolyStepSegment x="1.685" y="0.304"/> + <PolyStepSegment x="1.678" y="0.310"/> + <PolyStepSegment x="1.672" y="0.313"/> + <PolyStepSegment x="1.663" y="0.313"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.672" y="0.313"/> + <PolyStepSegment x="1.677" y="0.317"/> + <PolyStepSegment x="1.682" y="0.323"/> + <PolyStepSegment x="1.684" y="0.330"/> + <PolyStepSegment x="1.682" y="0.338"/> + <PolyStepSegment x="1.677" y="0.344"/> + <PolyStepSegment x="1.669" y="0.348"/> + <PolyStepSegment x="1.660" y="0.347"/> + <PolyStepSegment x="1.652" y="0.342"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="0.768"/> + <PolyStepSegment x="1.460" y="1.033"/> + <PolyStepSegment x="1.240" y="1.033"/> + <PolyStepSegment x="1.240" y="0.768"/> + <PolyStepSegment x="1.460" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.339" y="0.852"/> + <PolyStepSegment x="1.460" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U7"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.240" y="0.852"/> + <PolyStepSegment x="1.311" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U7"> + <NonstandardAttribute name="TEXT" value="U7" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.171" y="0.947"/> + <PolyStepSegment x="1.171" y="0.893"/> + <PolyStepSegment x="1.175" y="0.882"/> + <PolyStepSegment x="1.183" y="0.874"/> + <PolyStepSegment x="1.192" y="0.872"/> + <PolyStepSegment x="1.201" y="0.874"/> + <PolyStepSegment x="1.209" y="0.882"/> + <PolyStepSegment x="1.213" y="0.893"/> + <PolyStepSegment x="1.213" y="0.947"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.265" y="0.872"/> + <PolyStepSegment x="1.267" y="0.888"/> + <PolyStepSegment x="1.270" y="0.902"/> + <PolyStepSegment x="1.274" y="0.915"/> + <PolyStepSegment x="1.278" y="0.928"/> + <PolyStepSegment x="1.286" y="0.947"/> + <PolyStepSegment x="1.248" y="0.947"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U12"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.120" y="0.768"/> + <PolyStepSegment x="1.160" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U12"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="0.768"/> + <PolyStepSegment x="1.160" y="1.033"/> + <PolyStepSegment x="0.940" y="1.033"/> + <PolyStepSegment x="0.940" y="0.768"/> + <PolyStepSegment x="1.080" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U12"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.940" y="0.852"/> + <PolyStepSegment x="1.160" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U12"> + <NonstandardAttribute name="TEXT" value="U12" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.845" y="0.802"/> + <PolyStepSegment x="0.899" y="0.802"/> + <PolyStepSegment x="0.910" y="0.806"/> + <PolyStepSegment x="0.918" y="0.814"/> + <PolyStepSegment x="0.920" y="0.823"/> + <PolyStepSegment x="0.918" y="0.832"/> + <PolyStepSegment x="0.910" y="0.840"/> + <PolyStepSegment x="0.899" y="0.844"/> + <PolyStepSegment x="0.845" y="0.844"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.920" y="0.898"/> + <PolyStepSegment x="0.845" y="0.898"/> + <PolyStepSegment x="0.860" y="0.887"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.920" y="0.887"/> + <PolyStepSegment x="0.920" y="0.909"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.857" y="0.955"/> + <PolyStepSegment x="0.850" y="0.961"/> + <PolyStepSegment x="0.846" y="0.967"/> + <PolyStepSegment x="0.845" y="0.975"/> + <PolyStepSegment x="0.847" y="0.984"/> + <PolyStepSegment x="0.854" y="0.991"/> + <PolyStepSegment x="0.861" y="0.993"/> + <PolyStepSegment x="0.869" y="0.992"/> + <PolyStepSegment x="0.875" y="0.988"/> + <PolyStepSegment x="0.888" y="0.969"/> + <PolyStepSegment x="0.896" y="0.961"/> + <PolyStepSegment x="0.909" y="0.955"/> + <PolyStepSegment x="0.920" y="0.953"/> + <PolyStepSegment x="0.920" y="0.993"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="0.772"/> + <PolyStepSegment x="0.485" y="1.020"/> + <PolyStepSegment x="0.265" y="1.020"/> + <PolyStepSegment x="0.265" y="0.755"/> + <PolyStepSegment x="0.473" y="0.755"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.265" y="0.840"/> + <PolyStepSegment x="0.485" y="0.840"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U9"> + <NonstandardAttribute name="TEXT" value="U9" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.170" y="0.826"/> + <PolyStepSegment x="0.224" y="0.826"/> + <PolyStepSegment x="0.235" y="0.830"/> + <PolyStepSegment x="0.243" y="0.838"/> + <PolyStepSegment x="0.245" y="0.847"/> + <PolyStepSegment x="0.243" y="0.856"/> + <PolyStepSegment x="0.235" y="0.864"/> + <PolyStepSegment x="0.224" y="0.868"/> + <PolyStepSegment x="0.170" y="0.868"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.236" y="0.906"/> + <PolyStepSegment x="0.243" y="0.913"/> + <PolyStepSegment x="0.245" y="0.920"/> + <PolyStepSegment x="0.243" y="0.928"/> + <PolyStepSegment x="0.235" y="0.934"/> + <PolyStepSegment x="0.224" y="0.939"/> + <PolyStepSegment x="0.213" y="0.941"/> + <PolyStepSegment x="0.199" y="0.941"/> + <PolyStepSegment x="0.188" y="0.939"/> + <PolyStepSegment x="0.178" y="0.934"/> + <PolyStepSegment x="0.172" y="0.929"/> + <PolyStepSegment x="0.170" y="0.922"/> + <PolyStepSegment x="0.172" y="0.915"/> + <PolyStepSegment x="0.178" y="0.909"/> + <PolyStepSegment x="0.185" y="0.905"/> + <PolyStepSegment x="0.195" y="0.903"/> + <PolyStepSegment x="0.204" y="0.905"/> + <PolyStepSegment x="0.213" y="0.910"/> + <PolyStepSegment x="0.218" y="0.915"/> + <PolyStepSegment x="0.219" y="0.922"/> + <PolyStepSegment x="0.216" y="0.929"/> + <PolyStepSegment x="0.210" y="0.935"/> + <PolyStepSegment x="0.199" y="0.941"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.965" y="0.378"/> + <PolyStepSegment x="0.965" y="0.155"/> + <PolyStepSegment x="1.185" y="0.155"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.185" y="0.155"/> + <PolyStepSegment x="1.185" y="0.420"/> + <PolyStepSegment x="0.968" y="0.420"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U8"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.965" y="0.240"/> + <PolyStepSegment x="1.185" y="0.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U8"> + <NonstandardAttribute name="TEXT" value="U8" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.870" y="0.226"/> + <PolyStepSegment x="0.924" y="0.226"/> + <PolyStepSegment x="0.935" y="0.230"/> + <PolyStepSegment x="0.943" y="0.238"/> + <PolyStepSegment x="0.945" y="0.247"/> + <PolyStepSegment x="0.943" y="0.256"/> + <PolyStepSegment x="0.935" y="0.264"/> + <PolyStepSegment x="0.924" y="0.268"/> + <PolyStepSegment x="0.870" y="0.268"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.945" y="0.322"/> + <PolyStepSegment x="0.944" y="0.329"/> + <PolyStepSegment x="0.940" y="0.336"/> + <PolyStepSegment x="0.934" y="0.341"/> + <PolyStepSegment x="0.925" y="0.343"/> + <PolyStepSegment x="0.916" y="0.341"/> + <PolyStepSegment x="0.909" y="0.335"/> + <PolyStepSegment x="0.905" y="0.327"/> + <PolyStepSegment x="0.905" y="0.317"/> + <PolyStepSegment x="0.902" y="0.312"/> + <PolyStepSegment x="0.896" y="0.307"/> + <PolyStepSegment x="0.888" y="0.305"/> + <PolyStepSegment x="0.879" y="0.308"/> + <PolyStepSegment x="0.872" y="0.315"/> + <PolyStepSegment x="0.870" y="0.322"/> + <PolyStepSegment x="0.872" y="0.329"/> + <PolyStepSegment x="0.879" y="0.336"/> + <PolyStepSegment x="0.888" y="0.339"/> + <PolyStepSegment x="0.896" y="0.337"/> + <PolyStepSegment x="0.902" y="0.332"/> + <PolyStepSegment x="0.905" y="0.327"/> + <PolyStepSegment x="0.905" y="0.317"/> + <PolyStepSegment x="0.909" y="0.309"/> + <PolyStepSegment x="0.916" y="0.303"/> + <PolyStepSegment x="0.925" y="0.301"/> + <PolyStepSegment x="0.934" y="0.303"/> + <PolyStepSegment x="0.940" y="0.308"/> + <PolyStepSegment x="0.944" y="0.315"/> + <PolyStepSegment x="0.945" y="0.322"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.745" y="0.768"/> + <PolyStepSegment x="1.950" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="0.915"/> + <PolyStepSegment x="1.550" y="0.768"/> + <PolyStepSegment x="1.705" y="0.768"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.950" y="0.768"/> + <PolyStepSegment x="1.950" y="1.033"/> + <PolyStepSegment x="1.550" y="1.033"/> + <PolyStepSegment x="1.550" y="0.935"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.814" y="0.852"/> + <PolyStepSegment x="1.950" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.739" y="0.852"/> + <PolyStepSegment x="1.786" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.614" y="0.852"/> + <PolyStepSegment x="1.711" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.550" y="0.852"/> + <PolyStepSegment x="1.586" y="0.852"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U15"> + <NonstandardAttribute name="TEXT" value="U15" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.450" y="0.814"/> + <PolyStepSegment x="1.504" y="0.814"/> + <PolyStepSegment x="1.515" y="0.818"/> + <PolyStepSegment x="1.523" y="0.826"/> + <PolyStepSegment x="1.525" y="0.835"/> + <PolyStepSegment x="1.523" y="0.844"/> + <PolyStepSegment x="1.515" y="0.852"/> + <PolyStepSegment x="1.504" y="0.856"/> + <PolyStepSegment x="1.450" y="0.856"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.910"/> + <PolyStepSegment x="1.450" y="0.910"/> + <PolyStepSegment x="1.465" y="0.899"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.525" y="0.899"/> + <PolyStepSegment x="1.525" y="0.921"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.514" y="0.964"/> + <PolyStepSegment x="1.520" y="0.970"/> + <PolyStepSegment x="1.524" y="0.977"/> + <PolyStepSegment x="1.525" y="0.985"/> + <PolyStepSegment x="1.523" y="0.993"/> + <PolyStepSegment x="1.518" y="1.000"/> + <PolyStepSegment x="1.509" y="1.005"/> + <PolyStepSegment x="1.499" y="1.006"/> + <PolyStepSegment x="1.489" y="1.004"/> + <PolyStepSegment x="1.482" y="0.999"/> + <PolyStepSegment x="1.478" y="0.992"/> + <PolyStepSegment x="1.476" y="0.986"/> + <PolyStepSegment x="1.478" y="0.979"/> + <PolyStepSegment x="1.482" y="0.971"/> + <PolyStepSegment x="1.450" y="0.974"/> + <PolyStepSegment x="1.450" y="0.999"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.920" y="3.350"/> + <PolyStepCurve x="0.880" y="3.350" centerX="0.900000" centerY="3.350000" clockwise="false"/> + <PolyStepCurve x="0.920" y="3.350" centerX="0.900000" centerY="3.350000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.880" y="3.590"/> + <PolyStepSegment x="0.810" y="3.590"/> + <PolyStepSegment x="0.810" y="3.170"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.220" y="3.110"/> + <PolyStepSegment x="1.290" y="3.110"/> + <PolyStepSegment x="1.290" y="3.590"/> + <PolyStepSegment x="1.220" y="3.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U17"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.810" y="3.170"/> + <PolyStepSegment x="0.870" y="3.110"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U17"> + <NonstandardAttribute name="TEXT" value="U17" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.725" y="3.254"/> + <PolyStepSegment x="0.779" y="3.254"/> + <PolyStepSegment x="0.790" y="3.258"/> + <PolyStepSegment x="0.798" y="3.266"/> + <PolyStepSegment x="0.800" y="3.275"/> + <PolyStepSegment x="0.798" y="3.284"/> + <PolyStepSegment x="0.790" y="3.292"/> + <PolyStepSegment x="0.779" y="3.296"/> + <PolyStepSegment x="0.725" y="3.296"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.800" y="3.350"/> + <PolyStepSegment x="0.725" y="3.350"/> + <PolyStepSegment x="0.740" y="3.339"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.800" y="3.339"/> + <PolyStepSegment x="0.800" y="3.361"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.800" y="3.423"/> + <PolyStepSegment x="0.784" y="3.425"/> + <PolyStepSegment x="0.770" y="3.428"/> + <PolyStepSegment x="0.757" y="3.432"/> + <PolyStepSegment x="0.744" y="3.436"/> + <PolyStepSegment x="0.725" y="3.444"/> + <PolyStepSegment x="0.725" y="3.406"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.964" y="2.806"/> + <PolyStepCurve x="0.924" y="2.806" centerX="0.943934" centerY="2.806066" clockwise="false"/> + <PolyStepCurve x="0.964" y="2.806" centerX="0.943934" centerY="2.806066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.763" y="2.752"/> + <PolyStepSegment x="0.753" y="2.742"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.799" y="2.788"/> + <PolyStepSegment x="0.785" y="2.774"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.834" y="2.823"/> + <PolyStepSegment x="0.821" y="2.810"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.870" y="2.859"/> + <PolyStepSegment x="0.856" y="2.845"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.905" y="2.894"/> + <PolyStepSegment x="0.891" y="2.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.940" y="2.929"/> + <PolyStepSegment x="0.927" y="2.916"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.976" y="2.965"/> + <PolyStepSegment x="0.962" y="2.951"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.089" y="3.000"/> + <PolyStepSegment x="1.050" y="3.039"/> + <PolyStepSegment x="1.036" y="3.025"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.337" y="2.648"/> + <PolyStepSegment x="1.389" y="2.700"/> + <PolyStepSegment x="1.340" y="2.748"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.301" y="2.612"/> + <PolyStepSegment x="1.315" y="2.626"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.266" y="2.577"/> + <PolyStepSegment x="1.279" y="2.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.230" y="2.541"/> + <PolyStepSegment x="1.244" y="2.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.195" y="2.506"/> + <PolyStepSegment x="1.209" y="2.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.160" y="2.471"/> + <PolyStepSegment x="1.173" y="2.484"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.124" y="2.435"/> + <PolyStepSegment x="1.138" y="2.449"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.002" y="2.410"/> + <PolyStepSegment x="1.050" y="2.361"/> + <PolyStepSegment x="1.102" y="2.413"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U18"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.753" y="2.742"/> + <PolyStepSegment x="0.753" y="2.658"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U18"> + <NonstandardAttribute name="TEXT" value="U18" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.759" y="3.038"/> + <PolyStepSegment x="0.759" y="2.984"/> + <PolyStepSegment x="0.763" y="2.973"/> + <PolyStepSegment x="0.771" y="2.965"/> + <PolyStepSegment x="0.780" y="2.963"/> + <PolyStepSegment x="0.789" y="2.965"/> + <PolyStepSegment x="0.797" y="2.973"/> + <PolyStepSegment x="0.801" y="2.984"/> + <PolyStepSegment x="0.801" y="3.038"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.855" y="2.963"/> + <PolyStepSegment x="0.855" y="3.038"/> + <PolyStepSegment x="0.844" y="3.023"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.844" y="2.963"/> + <PolyStepSegment x="0.866" y="2.963"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.930" y="2.963"/> + <PolyStepSegment x="0.937" y="2.964"/> + <PolyStepSegment x="0.944" y="2.968"/> + <PolyStepSegment x="0.949" y="2.974"/> + <PolyStepSegment x="0.951" y="2.983"/> + <PolyStepSegment x="0.949" y="2.992"/> + <PolyStepSegment x="0.943" y="2.999"/> + <PolyStepSegment x="0.935" y="3.003"/> + <PolyStepSegment x="0.925" y="3.003"/> + <PolyStepSegment x="0.920" y="3.006"/> + <PolyStepSegment x="0.915" y="3.012"/> + <PolyStepSegment x="0.913" y="3.020"/> + <PolyStepSegment x="0.916" y="3.029"/> + <PolyStepSegment x="0.923" y="3.036"/> + <PolyStepSegment x="0.930" y="3.038"/> + <PolyStepSegment x="0.937" y="3.036"/> + <PolyStepSegment x="0.944" y="3.029"/> + <PolyStepSegment x="0.947" y="3.020"/> + <PolyStepSegment x="0.945" y="3.012"/> + <PolyStepSegment x="0.940" y="3.006"/> + <PolyStepSegment x="0.935" y="3.003"/> + <PolyStepSegment x="0.925" y="3.003"/> + <PolyStepSegment x="0.917" y="2.999"/> + <PolyStepSegment x="0.911" y="2.992"/> + <PolyStepSegment x="0.909" y="2.983"/> + <PolyStepSegment x="0.911" y="2.974"/> + <PolyStepSegment x="0.916" y="2.968"/> + <PolyStepSegment x="0.923" y="2.964"/> + <PolyStepSegment x="0.930" y="2.963"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.694" y="2.574"/> + <PolyStepCurve x="1.708" y="2.579" centerX="1.694664" centerY="2.594240" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.674" y="2.594"/> + <PolyStepCurve x="1.694" y="2.574" centerX="1.694113" centerY="2.594113" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.694" y="2.614"/> + <PolyStepCurve x="1.674" y="2.594" centerX="1.694332" centerY="2.593668" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.701" y="2.613"/> + <PolyStepCurve x="1.694" y="2.614" centerX="1.694694" centerY="2.593857" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.748" y="2.413"/> + <PolyStepSegment x="1.758" y="2.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.712" y="2.449"/> + <PolyStepSegment x="1.726" y="2.435"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.677" y="2.484"/> + <PolyStepSegment x="1.690" y="2.471"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.641" y="2.520"/> + <PolyStepSegment x="1.655" y="2.506"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.606" y="2.555"/> + <PolyStepSegment x="1.620" y="2.541"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.571" y="2.590"/> + <PolyStepSegment x="1.584" y="2.577"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.535" y="2.626"/> + <PolyStepSegment x="1.549" y="2.612"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.510" y="2.748"/> + <PolyStepSegment x="1.461" y="2.700"/> + <PolyStepSegment x="1.513" y="2.648"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.852" y="2.987"/> + <PolyStepSegment x="1.800" y="3.039"/> + <PolyStepSegment x="1.752" y="2.990"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.888" y="2.951"/> + <PolyStepSegment x="1.874" y="2.965"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.923" y="2.916"/> + <PolyStepSegment x="1.910" y="2.929"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.959" y="2.880"/> + <PolyStepSegment x="1.945" y="2.894"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.994" y="2.845"/> + <PolyStepSegment x="1.980" y="2.859"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.029" y="2.810"/> + <PolyStepSegment x="2.016" y="2.823"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.065" y="2.774"/> + <PolyStepSegment x="2.051" y="2.788"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.090" y="2.652"/> + <PolyStepSegment x="2.139" y="2.700"/> + <PolyStepSegment x="2.087" y="2.752"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U6"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.758" y="2.403"/> + <PolyStepSegment x="1.842" y="2.403"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U6"> + <NonstandardAttribute name="TEXT" value="U6" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.476" y="2.621"/> + <PolyStepSegment x="1.476" y="2.567"/> + <PolyStepSegment x="1.480" y="2.556"/> + <PolyStepSegment x="1.488" y="2.548"/> + <PolyStepSegment x="1.497" y="2.546"/> + <PolyStepSegment x="1.506" y="2.548"/> + <PolyStepSegment x="1.514" y="2.556"/> + <PolyStepSegment x="1.518" y="2.567"/> + <PolyStepSegment x="1.518" y="2.621"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.554" y="2.577"/> + <PolyStepSegment x="1.561" y="2.586"/> + <PolyStepSegment x="1.566" y="2.591"/> + <PolyStepSegment x="1.574" y="2.593"/> + <PolyStepSegment x="1.580" y="2.591"/> + <PolyStepSegment x="1.585" y="2.586"/> + <PolyStepSegment x="1.589" y="2.578"/> + <PolyStepSegment x="1.590" y="2.570"/> + <PolyStepSegment x="1.589" y="2.562"/> + <PolyStepSegment x="1.585" y="2.555"/> + <PolyStepSegment x="1.579" y="2.548"/> + <PolyStepSegment x="1.573" y="2.546"/> + <PolyStepSegment x="1.565" y="2.548"/> + <PolyStepSegment x="1.559" y="2.556"/> + <PolyStepSegment x="1.555" y="2.567"/> + <PolyStepSegment x="1.554" y="2.580"/> + <PolyStepSegment x="1.556" y="2.596"/> + <PolyStepSegment x="1.559" y="2.605"/> + <PolyStepSegment x="1.564" y="2.613"/> + <PolyStepSegment x="1.570" y="2.620"/> + <PolyStepSegment x="1.577" y="2.621"/> + <PolyStepSegment x="1.583" y="2.619"/> + <PolyStepSegment x="1.588" y="2.612"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.720" y="3.200"/> + <PolyStepCurve x="1.680" y="3.200" centerX="1.700000" centerY="3.200000" clockwise="false"/> + <PolyStepCurve x="1.720" y="3.200" centerX="1.700000" centerY="3.200000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.460" y="3.180"/> + <PolyStepSegment x="1.460" y="3.110"/> + <PolyStepSegment x="1.880" y="3.110"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.940" y="3.520"/> + <PolyStepSegment x="1.940" y="3.590"/> + <PolyStepSegment x="1.460" y="3.590"/> + <PolyStepSegment x="1.460" y="3.520"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U5"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.880" y="3.110"/> + <PolyStepSegment x="1.940" y="3.170"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U5"> + <NonstandardAttribute name="TEXT" value="U5" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.759" y="3.025"/> + <PolyStepSegment x="1.759" y="3.079"/> + <PolyStepSegment x="1.755" y="3.090"/> + <PolyStepSegment x="1.747" y="3.098"/> + <PolyStepSegment x="1.738" y="3.100"/> + <PolyStepSegment x="1.729" y="3.098"/> + <PolyStepSegment x="1.721" y="3.090"/> + <PolyStepSegment x="1.717" y="3.079"/> + <PolyStepSegment x="1.717" y="3.025"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.684" y="3.089"/> + <PolyStepSegment x="1.678" y="3.095"/> + <PolyStepSegment x="1.671" y="3.099"/> + <PolyStepSegment x="1.663" y="3.100"/> + <PolyStepSegment x="1.655" y="3.098"/> + <PolyStepSegment x="1.648" y="3.093"/> + <PolyStepSegment x="1.643" y="3.084"/> + <PolyStepSegment x="1.642" y="3.074"/> + <PolyStepSegment x="1.644" y="3.064"/> + <PolyStepSegment x="1.649" y="3.057"/> + <PolyStepSegment x="1.656" y="3.053"/> + <PolyStepSegment x="1.662" y="3.051"/> + <PolyStepSegment x="1.669" y="3.053"/> + <PolyStepSegment x="1.677" y="3.057"/> + <PolyStepSegment x="1.674" y="3.025"/> + <PolyStepSegment x="1.649" y="3.025"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.784" y="2.123"/> + <PolyStepCurve x="1.744" y="2.122" centerX="1.763758" centerY="2.122728" clockwise="false"/> + <PolyStepCurve x="1.784" y="2.123" centerX="1.763758" centerY="2.122728" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.576" y="2.101"/> + <PolyStepSegment x="1.565" y="2.093"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.616" y="2.129"/> + <PolyStepSegment x="1.601" y="2.118"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.658" y="2.158"/> + <PolyStepSegment x="1.641" y="2.146"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.698" y="2.187"/> + <PolyStepSegment x="1.682" y="2.176"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.740" y="2.216"/> + <PolyStepSegment x="1.724" y="2.204"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.780" y="2.244"/> + <PolyStepSegment x="1.765" y="2.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.822" y="2.273"/> + <PolyStepSegment x="1.805" y="2.262"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.948" y="2.276"/> + <PolyStepSegment x="1.908" y="2.334"/> + <PolyStepSegment x="1.846" y="2.290"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.124" y="1.899"/> + <PolyStepSegment x="2.184" y="1.942"/> + <PolyStepSegment x="2.144" y="1.998"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.084" y="1.871"/> + <PolyStepSegment x="2.098" y="1.882"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.042" y="1.842"/> + <PolyStepSegment x="2.058" y="1.854"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.002" y="1.814"/> + <PolyStepSegment x="2.017" y="1.824"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.960" y="1.785"/> + <PolyStepSegment x="1.976" y="1.796"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.920" y="1.756"/> + <PolyStepSegment x="1.935" y="1.766"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.878" y="1.727"/> + <PolyStepSegment x="1.895" y="1.738"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.751" y="1.724"/> + <PolyStepSegment x="1.792" y="1.666"/> + <PolyStepSegment x="1.854" y="1.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U10"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.565" y="2.093"/> + <PolyStepSegment x="1.550" y="2.009"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U10"> + <NonstandardAttribute name="TEXT" value="U10" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.757" y="2.391"/> + <PolyStepSegment x="1.703" y="2.391"/> + <PolyStepSegment x="1.692" y="2.387"/> + <PolyStepSegment x="1.684" y="2.379"/> + <PolyStepSegment x="1.682" y="2.370"/> + <PolyStepSegment x="1.684" y="2.361"/> + <PolyStepSegment x="1.692" y="2.353"/> + <PolyStepSegment x="1.703" y="2.349"/> + <PolyStepSegment x="1.757" y="2.349"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.682" y="2.295"/> + <PolyStepSegment x="1.757" y="2.295"/> + <PolyStepSegment x="1.742" y="2.306"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.682" y="2.306"/> + <PolyStepSegment x="1.682" y="2.284"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.757" y="2.220"/> + <PolyStepSegment x="1.755" y="2.227"/> + <PolyStepSegment x="1.748" y="2.233"/> + <PolyStepSegment x="1.741" y="2.237"/> + <PolyStepSegment x="1.731" y="2.240"/> + <PolyStepSegment x="1.719" y="2.241"/> + <PolyStepSegment x="1.708" y="2.240"/> + <PolyStepSegment x="1.698" y="2.237"/> + <PolyStepSegment x="1.691" y="2.233"/> + <PolyStepSegment x="1.684" y="2.227"/> + <PolyStepSegment x="1.682" y="2.220"/> + <PolyStepSegment x="1.684" y="2.213"/> + <PolyStepSegment x="1.691" y="2.207"/> + <PolyStepSegment x="1.698" y="2.203"/> + <PolyStepSegment x="1.708" y="2.200"/> + <PolyStepSegment x="1.719" y="2.199"/> + <PolyStepSegment x="1.731" y="2.200"/> + <PolyStepSegment x="1.741" y="2.203"/> + <PolyStepSegment x="1.748" y="2.207"/> + <PolyStepSegment x="1.755" y="2.213"/> + <PolyStepSegment x="1.757" y="2.220"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.420" y="3.500"/> + <PolyStepCurve x="0.380" y="3.500" centerX="0.400000" centerY="3.500000" clockwise="false"/> + <PolyStepCurve x="0.420" y="3.500" centerX="0.400000" centerY="3.500000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.640" y="3.520"/> + <PolyStepSegment x="0.640" y="3.590"/> + <PolyStepSegment x="0.220" y="3.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.160" y="3.180"/> + <PolyStepSegment x="0.160" y="3.110"/> + <PolyStepSegment x="0.640" y="3.110"/> + <PolyStepSegment x="0.640" y="3.180"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U3"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.220" y="3.590"/> + <PolyStepSegment x="0.160" y="3.530"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U3"> + <NonstandardAttribute name="TEXT" value="U3" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.340" y="3.675"/> + <PolyStepSegment x="0.340" y="3.621"/> + <PolyStepSegment x="0.344" y="3.610"/> + <PolyStepSegment x="0.352" y="3.602"/> + <PolyStepSegment x="0.361" y="3.600"/> + <PolyStepSegment x="0.370" y="3.602"/> + <PolyStepSegment x="0.378" y="3.610"/> + <PolyStepSegment x="0.382" y="3.621"/> + <PolyStepSegment x="0.382" y="3.675"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.415" y="3.615"/> + <PolyStepSegment x="0.421" y="3.606"/> + <PolyStepSegment x="0.429" y="3.601"/> + <PolyStepSegment x="0.437" y="3.600"/> + <PolyStepSegment x="0.444" y="3.601"/> + <PolyStepSegment x="0.452" y="3.607"/> + <PolyStepSegment x="0.457" y="3.615"/> + <PolyStepSegment x="0.457" y="3.622"/> + <PolyStepSegment x="0.456" y="3.631"/> + <PolyStepSegment x="0.449" y="3.637"/> + <PolyStepSegment x="0.443" y="3.640"/> + <PolyStepSegment x="0.434" y="3.640"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.443" y="3.640"/> + <PolyStepSegment x="0.448" y="3.644"/> + <PolyStepSegment x="0.453" y="3.650"/> + <PolyStepSegment x="0.455" y="3.657"/> + <PolyStepSegment x="0.453" y="3.665"/> + <PolyStepSegment x="0.448" y="3.671"/> + <PolyStepSegment x="0.440" y="3.675"/> + <PolyStepSegment x="0.431" y="3.674"/> + <PolyStepSegment x="0.423" y="3.669"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.526" y="1.944"/> + <PolyStepCurve x="0.486" y="1.944" centerX="0.506066" centerY="1.943934" clockwise="false"/> + <PolyStepCurve x="0.526" y="1.944" centerX="0.506066" centerY="1.943934" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.687" y="1.998"/> + <PolyStepSegment x="0.697" y="2.008"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.651" y="1.962"/> + <PolyStepSegment x="0.665" y="1.976"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.616" y="1.927"/> + <PolyStepSegment x="0.629" y="1.940"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.580" y="1.891"/> + <PolyStepSegment x="0.594" y="1.905"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.545" y="1.856"/> + <PolyStepSegment x="0.559" y="1.870"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.510" y="1.821"/> + <PolyStepSegment x="0.523" y="1.834"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.474" y="1.785"/> + <PolyStepSegment x="0.488" y="1.799"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.352" y="1.760"/> + <PolyStepSegment x="0.400" y="1.711"/> + <PolyStepSegment x="0.452" y="1.763"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.113" y="2.102"/> + <PolyStepSegment x="0.061" y="2.050"/> + <PolyStepSegment x="0.110" y="2.002"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.149" y="2.138"/> + <PolyStepSegment x="0.135" y="2.124"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.184" y="2.173"/> + <PolyStepSegment x="0.171" y="2.160"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.220" y="2.209"/> + <PolyStepSegment x="0.206" y="2.195"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.255" y="2.244"/> + <PolyStepSegment x="0.241" y="2.230"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.290" y="2.279"/> + <PolyStepSegment x="0.277" y="2.266"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.326" y="2.315"/> + <PolyStepSegment x="0.312" y="2.301"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.448" y="2.340"/> + <PolyStepSegment x="0.400" y="2.389"/> + <PolyStepSegment x="0.348" y="2.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.697" y="2.008"/> + <PolyStepSegment x="0.697" y="2.092"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U2"> + <NonstandardAttribute name="TEXT" value="U2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.654" y="1.739"/> + <PolyStepSegment x="0.654" y="1.793"/> + <PolyStepSegment x="0.650" y="1.804"/> + <PolyStepSegment x="0.642" y="1.812"/> + <PolyStepSegment x="0.633" y="1.814"/> + <PolyStepSegment x="0.624" y="1.812"/> + <PolyStepSegment x="0.616" y="1.804"/> + <PolyStepSegment x="0.612" y="1.793"/> + <PolyStepSegment x="0.612" y="1.739"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.576" y="1.751"/> + <PolyStepSegment x="0.570" y="1.744"/> + <PolyStepSegment x="0.564" y="1.740"/> + <PolyStepSegment x="0.556" y="1.739"/> + <PolyStepSegment x="0.547" y="1.741"/> + <PolyStepSegment x="0.540" y="1.748"/> + <PolyStepSegment x="0.538" y="1.755"/> + <PolyStepSegment x="0.539" y="1.763"/> + <PolyStepSegment x="0.543" y="1.769"/> + <PolyStepSegment x="0.562" y="1.782"/> + <PolyStepSegment x="0.570" y="1.790"/> + <PolyStepSegment x="0.576" y="1.803"/> + <PolyStepSegment x="0.578" y="1.814"/> + <PolyStepSegment x="0.538" y="1.814"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.276" y="2.106"/> + <PolyStepCurve x="1.236" y="2.106" centerX="1.256066" centerY="2.106066" clockwise="false"/> + <PolyStepCurve x="1.276" y="2.106" centerX="1.256066" centerY="2.106066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.202" y="2.287"/> + <PolyStepSegment x="1.192" y="2.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.238" y="2.251"/> + <PolyStepSegment x="1.224" y="2.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.273" y="2.216"/> + <PolyStepSegment x="1.260" y="2.229"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.309" y="2.180"/> + <PolyStepSegment x="1.295" y="2.194"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.344" y="2.145"/> + <PolyStepSegment x="1.330" y="2.159"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.379" y="2.110"/> + <PolyStepSegment x="1.366" y="2.123"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.415" y="2.074"/> + <PolyStepSegment x="1.401" y="2.088"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.440" y="1.952"/> + <PolyStepSegment x="1.489" y="2.000"/> + <PolyStepSegment x="1.437" y="2.052"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.098" y="1.713"/> + <PolyStepSegment x="1.150" y="1.661"/> + <PolyStepSegment x="1.198" y="1.710"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.062" y="1.749"/> + <PolyStepSegment x="1.076" y="1.735"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.027" y="1.784"/> + <PolyStepSegment x="1.040" y="1.771"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.991" y="1.820"/> + <PolyStepSegment x="1.005" y="1.806"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.956" y="1.855"/> + <PolyStepSegment x="0.970" y="1.841"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.921" y="1.890"/> + <PolyStepSegment x="0.934" y="1.877"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.885" y="1.926"/> + <PolyStepSegment x="0.899" y="1.912"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.860" y="2.048"/> + <PolyStepSegment x="0.811" y="2.000"/> + <PolyStepSegment x="0.863" y="1.948"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.192" y="2.297"/> + <PolyStepSegment x="1.108" y="2.297"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U1"> + <NonstandardAttribute name="TEXT" value="U1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.426" y="2.254"/> + <PolyStepSegment x="1.372" y="2.254"/> + <PolyStepSegment x="1.361" y="2.250"/> + <PolyStepSegment x="1.353" y="2.242"/> + <PolyStepSegment x="1.351" y="2.233"/> + <PolyStepSegment x="1.353" y="2.224"/> + <PolyStepSegment x="1.361" y="2.216"/> + <PolyStepSegment x="1.372" y="2.212"/> + <PolyStepSegment x="1.426" y="2.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.351" y="2.158"/> + <PolyStepSegment x="1.426" y="2.158"/> + <PolyStepSegment x="1.411" y="2.169"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.351" y="2.169"/> + <PolyStepSegment x="1.351" y="2.147"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.570" y="2.700"/> + <PolyStepCurve x="0.530" y="2.700" centerX="0.550000" centerY="2.700000" clockwise="false"/> + <PolyStepCurve x="0.570" y="2.700" centerX="0.550000" centerY="2.700000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.570" y="2.460"/> + <PolyStepSegment x="0.640" y="2.460"/> + <PolyStepSegment x="0.640" y="2.880"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.230" y="2.940"/> + <PolyStepSegment x="0.160" y="2.940"/> + <PolyStepSegment x="0.160" y="2.460"/> + <PolyStepSegment x="0.230" y="2.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U4"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.640" y="2.880"/> + <PolyStepSegment x="0.580" y="2.940"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U4"> + <NonstandardAttribute name="TEXT" value="U4" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.725" y="2.759"/> + <PolyStepSegment x="0.671" y="2.759"/> + <PolyStepSegment x="0.660" y="2.755"/> + <PolyStepSegment x="0.652" y="2.747"/> + <PolyStepSegment x="0.650" y="2.738"/> + <PolyStepSegment x="0.652" y="2.729"/> + <PolyStepSegment x="0.660" y="2.721"/> + <PolyStepSegment x="0.671" y="2.717"/> + <PolyStepSegment x="0.725" y="2.717"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.650" y="2.652"/> + <PolyStepSegment x="0.725" y="2.652"/> + <PolyStepSegment x="0.671" y="2.686"/> + <PolyStepSegment x="0.671" y="2.640"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R15"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.315" y="0.790"/> + <PolyStepSegment x="2.335" y="0.810"/> + <PolyStepSegment x="2.335" y="0.910"/> + <PolyStepSegment x="2.320" y="0.925"/> + <PolyStepSegment x="2.335" y="0.940"/> + <PolyStepSegment x="2.335" y="1.070"/> + <PolyStepSegment x="2.320" y="1.085"/> + <PolyStepSegment x="2.335" y="1.100"/> + <PolyStepSegment x="2.335" y="1.225"/> + <PolyStepSegment x="2.320" y="1.240"/> + <PolyStepSegment x="2.335" y="1.255"/> + <PolyStepSegment x="2.335" y="1.380"/> + <PolyStepSegment x="2.320" y="1.395"/> + <PolyStepSegment x="2.335" y="1.410"/> + <PolyStepSegment x="2.335" y="1.540"/> + <PolyStepSegment x="2.320" y="1.555"/> + <PolyStepSegment x="2.335" y="1.570"/> + <PolyStepSegment x="2.335" y="1.695"/> + <PolyStepSegment x="2.320" y="1.710"/> + <PolyStepSegment x="2.335" y="1.725"/> + <PolyStepSegment x="2.335" y="1.850"/> + <PolyStepSegment x="2.320" y="1.865"/> + <PolyStepSegment x="2.335" y="1.880"/> + <PolyStepSegment x="2.335" y="2.010"/> + <PolyStepSegment x="2.320" y="2.025"/> + <PolyStepSegment x="2.335" y="2.040"/> + <PolyStepSegment x="2.335" y="2.170"/> + <PolyStepSegment x="2.215" y="2.170"/> + <PolyStepSegment x="2.215" y="2.040"/> + <PolyStepSegment x="2.230" y="2.025"/> + <PolyStepSegment x="2.215" y="2.010"/> + <PolyStepSegment x="2.215" y="1.880"/> + <PolyStepSegment x="2.230" y="1.865"/> + <PolyStepSegment x="2.215" y="1.850"/> + <PolyStepSegment x="2.215" y="1.725"/> + <PolyStepSegment x="2.230" y="1.710"/> + <PolyStepSegment x="2.215" y="1.695"/> + <PolyStepSegment x="2.215" y="1.570"/> + <PolyStepSegment x="2.230" y="1.555"/> + <PolyStepSegment x="2.215" y="1.540"/> + <PolyStepSegment x="2.215" y="1.410"/> + <PolyStepSegment x="2.230" y="1.395"/> + <PolyStepSegment x="2.215" y="1.380"/> + <PolyStepSegment x="2.215" y="1.255"/> + <PolyStepSegment x="2.230" y="1.240"/> + <PolyStepSegment x="2.215" y="1.225"/> + <PolyStepSegment x="2.215" y="1.100"/> + <PolyStepSegment x="2.230" y="1.085"/> + <PolyStepSegment x="2.215" y="1.070"/> + <PolyStepSegment x="2.215" y="0.940"/> + <PolyStepSegment x="2.230" y="0.925"/> + <PolyStepSegment x="2.215" y="0.910"/> + <PolyStepSegment x="2.215" y="0.810"/> + <PolyStepSegment x="2.235" y="0.790"/> + <PolyStepSegment x="2.315" y="0.790"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R15"> + <NonstandardAttribute name="TEXT" value="R15" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.365" y="1.039"/> + <PolyStepSegment x="2.440" y="1.039"/> + <PolyStepSegment x="2.440" y="1.015"/> + <PolyStepSegment x="2.436" y="1.008"/> + <PolyStepSegment x="2.431" y="1.003"/> + <PolyStepSegment x="2.421" y="1.001"/> + <PolyStepSegment x="2.411" y="1.003"/> + <PolyStepSegment x="2.405" y="1.009"/> + <PolyStepSegment x="2.401" y="1.015"/> + <PolyStepSegment x="2.401" y="1.039"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.401" y="1.015"/> + <PolyStepSegment x="2.365" y="1.001"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.365" y="0.945"/> + <PolyStepSegment x="2.440" y="0.945"/> + <PolyStepSegment x="2.425" y="0.956"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.365" y="0.956"/> + <PolyStepSegment x="2.365" y="0.934"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.376" y="0.891"/> + <PolyStepSegment x="2.370" y="0.885"/> + <PolyStepSegment x="2.366" y="0.878"/> + <PolyStepSegment x="2.365" y="0.870"/> + <PolyStepSegment x="2.367" y="0.862"/> + <PolyStepSegment x="2.372" y="0.855"/> + <PolyStepSegment x="2.381" y="0.850"/> + <PolyStepSegment x="2.391" y="0.849"/> + <PolyStepSegment x="2.401" y="0.851"/> + <PolyStepSegment x="2.408" y="0.856"/> + <PolyStepSegment x="2.412" y="0.863"/> + <PolyStepSegment x="2.414" y="0.869"/> + <PolyStepSegment x="2.412" y="0.876"/> + <PolyStepSegment x="2.408" y="0.884"/> + <PolyStepSegment x="2.440" y="0.881"/> + <PolyStepSegment x="2.440" y="0.856"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.286" y="0.579"/> + <PolyStepSegment x="2.314" y="0.579"/> + <PolyStepSegment x="2.385" y="0.650"/> + <PolyStepSegment x="2.385" y="0.671"/> + <PolyStepSegment x="2.406" y="0.671"/> + <PolyStepSegment x="2.498" y="0.763"/> + <PolyStepSegment x="2.498" y="0.784"/> + <PolyStepSegment x="2.519" y="0.784"/> + <PolyStepSegment x="2.608" y="0.873"/> + <PolyStepSegment x="2.608" y="0.894"/> + <PolyStepSegment x="2.629" y="0.894"/> + <PolyStepSegment x="2.717" y="0.982"/> + <PolyStepSegment x="2.717" y="1.004"/> + <PolyStepSegment x="2.738" y="1.004"/> + <PolyStepSegment x="2.830" y="1.095"/> + <PolyStepSegment x="2.830" y="1.117"/> + <PolyStepSegment x="2.852" y="1.117"/> + <PolyStepSegment x="2.940" y="1.205"/> + <PolyStepSegment x="2.940" y="1.226"/> + <PolyStepSegment x="2.961" y="1.226"/> + <PolyStepSegment x="3.050" y="1.315"/> + <PolyStepSegment x="3.050" y="1.336"/> + <PolyStepSegment x="3.071" y="1.336"/> + <PolyStepSegment x="3.163" y="1.428"/> + <PolyStepSegment x="3.163" y="1.449"/> + <PolyStepSegment x="3.184" y="1.449"/> + <PolyStepSegment x="3.276" y="1.541"/> + <PolyStepSegment x="3.191" y="1.626"/> + <PolyStepSegment x="3.099" y="1.534"/> + <PolyStepSegment x="3.099" y="1.513"/> + <PolyStepSegment x="3.078" y="1.513"/> + <PolyStepSegment x="2.986" y="1.421"/> + <PolyStepSegment x="2.986" y="1.400"/> + <PolyStepSegment x="2.965" y="1.400"/> + <PolyStepSegment x="2.876" y="1.311"/> + <PolyStepSegment x="2.876" y="1.290"/> + <PolyStepSegment x="2.855" y="1.290"/> + <PolyStepSegment x="2.767" y="1.202"/> + <PolyStepSegment x="2.767" y="1.180"/> + <PolyStepSegment x="2.745" y="1.180"/> + <PolyStepSegment x="2.654" y="1.088"/> + <PolyStepSegment x="2.654" y="1.067"/> + <PolyStepSegment x="2.632" y="1.067"/> + <PolyStepSegment x="2.544" y="0.979"/> + <PolyStepSegment x="2.544" y="0.958"/> + <PolyStepSegment x="2.523" y="0.958"/> + <PolyStepSegment x="2.434" y="0.869"/> + <PolyStepSegment x="2.434" y="0.848"/> + <PolyStepSegment x="2.413" y="0.848"/> + <PolyStepSegment x="2.321" y="0.756"/> + <PolyStepSegment x="2.321" y="0.735"/> + <PolyStepSegment x="2.300" y="0.735"/> + <PolyStepSegment x="2.229" y="0.664"/> + <PolyStepSegment x="2.229" y="0.636"/> + <PolyStepSegment x="2.286" y="0.579"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R14"> + <NonstandardAttribute name="TEXT" value="R14" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.587" y="0.528"/> + <PolyStepSegment x="2.587" y="0.453"/> + <PolyStepSegment x="2.563" y="0.453"/> + <PolyStepSegment x="2.556" y="0.457"/> + <PolyStepSegment x="2.551" y="0.462"/> + <PolyStepSegment x="2.549" y="0.472"/> + <PolyStepSegment x="2.551" y="0.482"/> + <PolyStepSegment x="2.557" y="0.488"/> + <PolyStepSegment x="2.563" y="0.492"/> + <PolyStepSegment x="2.587" y="0.492"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.563" y="0.492"/> + <PolyStepSegment x="2.549" y="0.528"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.493" y="0.528"/> + <PolyStepSegment x="2.493" y="0.453"/> + <PolyStepSegment x="2.504" y="0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.504" y="0.528"/> + <PolyStepSegment x="2.482" y="0.528"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.407" y="0.528"/> + <PolyStepSegment x="2.407" y="0.453"/> + <PolyStepSegment x="2.441" y="0.507"/> + <PolyStepSegment x="2.395" y="0.507"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R9"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.290" y="2.240"/> + <PolyStepSegment x="2.310" y="2.260"/> + <PolyStepSegment x="2.310" y="2.360"/> + <PolyStepSegment x="2.295" y="2.375"/> + <PolyStepSegment x="2.310" y="2.390"/> + <PolyStepSegment x="2.310" y="2.520"/> + <PolyStepSegment x="2.295" y="2.535"/> + <PolyStepSegment x="2.310" y="2.550"/> + <PolyStepSegment x="2.310" y="2.675"/> + <PolyStepSegment x="2.295" y="2.690"/> + <PolyStepSegment x="2.310" y="2.705"/> + <PolyStepSegment x="2.310" y="2.830"/> + <PolyStepSegment x="2.295" y="2.845"/> + <PolyStepSegment x="2.310" y="2.860"/> + <PolyStepSegment x="2.310" y="2.990"/> + <PolyStepSegment x="2.295" y="3.005"/> + <PolyStepSegment x="2.310" y="3.020"/> + <PolyStepSegment x="2.310" y="3.145"/> + <PolyStepSegment x="2.295" y="3.160"/> + <PolyStepSegment x="2.310" y="3.175"/> + <PolyStepSegment x="2.310" y="3.300"/> + <PolyStepSegment x="2.295" y="3.315"/> + <PolyStepSegment x="2.310" y="3.330"/> + <PolyStepSegment x="2.310" y="3.460"/> + <PolyStepSegment x="2.295" y="3.475"/> + <PolyStepSegment x="2.310" y="3.490"/> + <PolyStepSegment x="2.310" y="3.620"/> + <PolyStepSegment x="2.190" y="3.620"/> + <PolyStepSegment x="2.190" y="3.490"/> + <PolyStepSegment x="2.205" y="3.475"/> + <PolyStepSegment x="2.190" y="3.460"/> + <PolyStepSegment x="2.190" y="3.330"/> + <PolyStepSegment x="2.205" y="3.315"/> + <PolyStepSegment x="2.190" y="3.300"/> + <PolyStepSegment x="2.190" y="3.175"/> + <PolyStepSegment x="2.205" y="3.160"/> + <PolyStepSegment x="2.190" y="3.145"/> + <PolyStepSegment x="2.190" y="3.020"/> + <PolyStepSegment x="2.205" y="3.005"/> + <PolyStepSegment x="2.190" y="2.990"/> + <PolyStepSegment x="2.190" y="2.860"/> + <PolyStepSegment x="2.205" y="2.845"/> + <PolyStepSegment x="2.190" y="2.830"/> + <PolyStepSegment x="2.190" y="2.705"/> + <PolyStepSegment x="2.205" y="2.690"/> + <PolyStepSegment x="2.190" y="2.675"/> + <PolyStepSegment x="2.190" y="2.550"/> + <PolyStepSegment x="2.205" y="2.535"/> + <PolyStepSegment x="2.190" y="2.520"/> + <PolyStepSegment x="2.190" y="2.390"/> + <PolyStepSegment x="2.205" y="2.375"/> + <PolyStepSegment x="2.190" y="2.360"/> + <PolyStepSegment x="2.190" y="2.260"/> + <PolyStepSegment x="2.210" y="2.240"/> + <PolyStepSegment x="2.290" y="2.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R9"> + <NonstandardAttribute name="TEXT" value="R9" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.339" y="2.347"/> + <PolyStepSegment x="2.414" y="2.347"/> + <PolyStepSegment x="2.414" y="2.323"/> + <PolyStepSegment x="2.410" y="2.316"/> + <PolyStepSegment x="2.405" y="2.311"/> + <PolyStepSegment x="2.395" y="2.309"/> + <PolyStepSegment x="2.385" y="2.311"/> + <PolyStepSegment x="2.379" y="2.317"/> + <PolyStepSegment x="2.375" y="2.323"/> + <PolyStepSegment x="2.375" y="2.347"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.375" y="2.323"/> + <PolyStepSegment x="2.339" y="2.309"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.348" y="2.269"/> + <PolyStepSegment x="2.341" y="2.262"/> + <PolyStepSegment x="2.339" y="2.255"/> + <PolyStepSegment x="2.341" y="2.247"/> + <PolyStepSegment x="2.349" y="2.241"/> + <PolyStepSegment x="2.360" y="2.236"/> + <PolyStepSegment x="2.371" y="2.234"/> + <PolyStepSegment x="2.385" y="2.234"/> + <PolyStepSegment x="2.396" y="2.236"/> + <PolyStepSegment x="2.406" y="2.241"/> + <PolyStepSegment x="2.412" y="2.246"/> + <PolyStepSegment x="2.414" y="2.253"/> + <PolyStepSegment x="2.412" y="2.260"/> + <PolyStepSegment x="2.406" y="2.266"/> + <PolyStepSegment x="2.399" y="2.270"/> + <PolyStepSegment x="2.389" y="2.272"/> + <PolyStepSegment x="2.380" y="2.270"/> + <PolyStepSegment x="2.371" y="2.265"/> + <PolyStepSegment x="2.366" y="2.260"/> + <PolyStepSegment x="2.365" y="2.253"/> + <PolyStepSegment x="2.368" y="2.246"/> + <PolyStepSegment x="2.374" y="2.240"/> + <PolyStepSegment x="2.385" y="2.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R2"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.990" y="0.460"/> + <PolyStepSegment x="2.010" y="0.440"/> + <PolyStepSegment x="2.110" y="0.440"/> + <PolyStepSegment x="2.125" y="0.455"/> + <PolyStepSegment x="2.140" y="0.440"/> + <PolyStepSegment x="2.270" y="0.440"/> + <PolyStepSegment x="2.285" y="0.455"/> + <PolyStepSegment x="2.300" y="0.440"/> + <PolyStepSegment x="2.425" y="0.440"/> + <PolyStepSegment x="2.440" y="0.455"/> + <PolyStepSegment x="2.455" y="0.440"/> + <PolyStepSegment x="2.580" y="0.440"/> + <PolyStepSegment x="2.595" y="0.455"/> + <PolyStepSegment x="2.610" y="0.440"/> + <PolyStepSegment x="2.740" y="0.440"/> + <PolyStepSegment x="2.755" y="0.455"/> + <PolyStepSegment x="2.770" y="0.440"/> + <PolyStepSegment x="2.895" y="0.440"/> + <PolyStepSegment x="2.910" y="0.455"/> + <PolyStepSegment x="2.925" y="0.440"/> + <PolyStepSegment x="3.050" y="0.440"/> + <PolyStepSegment x="3.065" y="0.455"/> + <PolyStepSegment x="3.080" y="0.440"/> + <PolyStepSegment x="3.210" y="0.440"/> + <PolyStepSegment x="3.225" y="0.455"/> + <PolyStepSegment x="3.240" y="0.440"/> + <PolyStepSegment x="3.370" y="0.440"/> + <PolyStepSegment x="3.370" y="0.560"/> + <PolyStepSegment x="3.240" y="0.560"/> + <PolyStepSegment x="3.225" y="0.545"/> + <PolyStepSegment x="3.210" y="0.560"/> + <PolyStepSegment x="3.080" y="0.560"/> + <PolyStepSegment x="3.065" y="0.545"/> + <PolyStepSegment x="3.050" y="0.560"/> + <PolyStepSegment x="2.925" y="0.560"/> + <PolyStepSegment x="2.910" y="0.545"/> + <PolyStepSegment x="2.895" y="0.560"/> + <PolyStepSegment x="2.770" y="0.560"/> + <PolyStepSegment x="2.755" y="0.545"/> + <PolyStepSegment x="2.740" y="0.560"/> + <PolyStepSegment x="2.610" y="0.560"/> + <PolyStepSegment x="2.595" y="0.545"/> + <PolyStepSegment x="2.580" y="0.560"/> + <PolyStepSegment x="2.455" y="0.560"/> + <PolyStepSegment x="2.440" y="0.545"/> + <PolyStepSegment x="2.425" y="0.560"/> + <PolyStepSegment x="2.300" y="0.560"/> + <PolyStepSegment x="2.285" y="0.545"/> + <PolyStepSegment x="2.270" y="0.560"/> + <PolyStepSegment x="2.140" y="0.560"/> + <PolyStepSegment x="2.125" y="0.545"/> + <PolyStepSegment x="2.110" y="0.560"/> + <PolyStepSegment x="2.010" y="0.560"/> + <PolyStepSegment x="1.990" y="0.540"/> + <PolyStepSegment x="1.990" y="0.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R2"> + <NonstandardAttribute name="TEXT" value="R2" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="0.407"/> + <PolyStepSegment x="2.125" y="0.407"/> + <PolyStepSegment x="2.125" y="0.383"/> + <PolyStepSegment x="2.121" y="0.376"/> + <PolyStepSegment x="2.116" y="0.371"/> + <PolyStepSegment x="2.106" y="0.369"/> + <PolyStepSegment x="2.096" y="0.371"/> + <PolyStepSegment x="2.090" y="0.377"/> + <PolyStepSegment x="2.086" y="0.383"/> + <PolyStepSegment x="2.086" y="0.407"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.086" y="0.383"/> + <PolyStepSegment x="2.050" y="0.369"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.113" y="0.331"/> + <PolyStepSegment x="2.120" y="0.325"/> + <PolyStepSegment x="2.124" y="0.319"/> + <PolyStepSegment x="2.125" y="0.311"/> + <PolyStepSegment x="2.123" y="0.302"/> + <PolyStepSegment x="2.116" y="0.295"/> + <PolyStepSegment x="2.109" y="0.293"/> + <PolyStepSegment x="2.101" y="0.294"/> + <PolyStepSegment x="2.095" y="0.298"/> + <PolyStepSegment x="2.082" y="0.317"/> + <PolyStepSegment x="2.074" y="0.325"/> + <PolyStepSegment x="2.061" y="0.331"/> + <PolyStepSegment x="2.050" y="0.333"/> + <PolyStepSegment x="2.050" y="0.293"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="R1"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.490" y="2.240"/> + <PolyStepSegment x="2.510" y="2.260"/> + <PolyStepSegment x="2.510" y="2.360"/> + <PolyStepSegment x="2.495" y="2.375"/> + <PolyStepSegment x="2.510" y="2.390"/> + <PolyStepSegment x="2.510" y="2.520"/> + <PolyStepSegment x="2.495" y="2.535"/> + <PolyStepSegment x="2.510" y="2.550"/> + <PolyStepSegment x="2.510" y="2.675"/> + <PolyStepSegment x="2.495" y="2.690"/> + <PolyStepSegment x="2.510" y="2.705"/> + <PolyStepSegment x="2.510" y="2.830"/> + <PolyStepSegment x="2.495" y="2.845"/> + <PolyStepSegment x="2.510" y="2.860"/> + <PolyStepSegment x="2.510" y="2.990"/> + <PolyStepSegment x="2.495" y="3.005"/> + <PolyStepSegment x="2.510" y="3.020"/> + <PolyStepSegment x="2.510" y="3.145"/> + <PolyStepSegment x="2.495" y="3.160"/> + <PolyStepSegment x="2.510" y="3.175"/> + <PolyStepSegment x="2.510" y="3.300"/> + <PolyStepSegment x="2.495" y="3.315"/> + <PolyStepSegment x="2.510" y="3.330"/> + <PolyStepSegment x="2.510" y="3.460"/> + <PolyStepSegment x="2.495" y="3.475"/> + <PolyStepSegment x="2.510" y="3.490"/> + <PolyStepSegment x="2.510" y="3.620"/> + <PolyStepSegment x="2.390" y="3.620"/> + <PolyStepSegment x="2.390" y="3.490"/> + <PolyStepSegment x="2.405" y="3.475"/> + <PolyStepSegment x="2.390" y="3.460"/> + <PolyStepSegment x="2.390" y="3.330"/> + <PolyStepSegment x="2.405" y="3.315"/> + <PolyStepSegment x="2.390" y="3.300"/> + <PolyStepSegment x="2.390" y="3.175"/> + <PolyStepSegment x="2.405" y="3.160"/> + <PolyStepSegment x="2.390" y="3.145"/> + <PolyStepSegment x="2.390" y="3.020"/> + <PolyStepSegment x="2.405" y="3.005"/> + <PolyStepSegment x="2.390" y="2.990"/> + <PolyStepSegment x="2.390" y="2.860"/> + <PolyStepSegment x="2.405" y="2.845"/> + <PolyStepSegment x="2.390" y="2.830"/> + <PolyStepSegment x="2.390" y="2.705"/> + <PolyStepSegment x="2.405" y="2.690"/> + <PolyStepSegment x="2.390" y="2.675"/> + <PolyStepSegment x="2.390" y="2.550"/> + <PolyStepSegment x="2.405" y="2.535"/> + <PolyStepSegment x="2.390" y="2.520"/> + <PolyStepSegment x="2.390" y="2.390"/> + <PolyStepSegment x="2.405" y="2.375"/> + <PolyStepSegment x="2.390" y="2.360"/> + <PolyStepSegment x="2.390" y="2.260"/> + <PolyStepSegment x="2.410" y="2.240"/> + <PolyStepSegment x="2.490" y="2.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="R1"> + <NonstandardAttribute name="TEXT" value="R1" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.542" y="2.300"/> + <PolyStepSegment x="2.542" y="2.375"/> + <PolyStepSegment x="2.566" y="2.375"/> + <PolyStepSegment x="2.573" y="2.371"/> + <PolyStepSegment x="2.578" y="2.366"/> + <PolyStepSegment x="2.580" y="2.356"/> + <PolyStepSegment x="2.578" y="2.346"/> + <PolyStepSegment x="2.572" y="2.340"/> + <PolyStepSegment x="2.566" y="2.336"/> + <PolyStepSegment x="2.542" y="2.336"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.566" y="2.336"/> + <PolyStepSegment x="2.580" y="2.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.636" y="2.300"/> + <PolyStepSegment x="2.636" y="2.375"/> + <PolyStepSegment x="2.625" y="2.360"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.625" y="2.300"/> + <PolyStepSegment x="2.647" y="2.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Silk Screen Top (ss_top)" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.288" y="-0.465"/> + <PolyStepSegment x="1.296" y="-0.471"/> + <PolyStepSegment x="1.304" y="-0.475"/> + <PolyStepSegment x="1.312" y="-0.475"/> + <PolyStepSegment x="1.319" y="-0.471"/> + <PolyStepSegment x="1.325" y="-0.465"/> + <PolyStepSegment x="1.328" y="-0.456"/> + <PolyStepSegment x="1.326" y="-0.448"/> + <PolyStepSegment x="1.321" y="-0.440"/> + <PolyStepSegment x="1.313" y="-0.435"/> + <PolyStepSegment x="1.301" y="-0.432"/> + <PolyStepSegment x="1.295" y="-0.428"/> + <PolyStepSegment x="1.292" y="-0.419"/> + <PolyStepSegment x="1.294" y="-0.410"/> + <PolyStepSegment x="1.299" y="-0.404"/> + <PolyStepSegment x="1.305" y="-0.400"/> + <PolyStepSegment x="1.312" y="-0.400"/> + <PolyStepSegment x="1.318" y="-0.402"/> + <PolyStepSegment x="1.324" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.383" y="-0.425"/> + <PolyStepSegment x="1.383" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.383" y="-0.405"/> + <PolyStepSegment x="1.381" y="-0.404"/> + <PolyStepSegment x="1.381" y="-0.401"/> + <PolyStepSegment x="1.383" y="-0.400"/> + <PolyStepSegment x="1.385" y="-0.401"/> + <PolyStepSegment x="1.385" y="-0.404"/> + <PolyStepSegment x="1.383" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.458" y="-0.475"/> + <PolyStepSegment x="1.458" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.517" y="-0.475"/> + <PolyStepSegment x="1.517" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.547" y="-0.425"/> + <PolyStepSegment x="1.517" y="-0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.529" y="-0.443"/> + <PolyStepSegment x="1.549" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.663" y="-0.465"/> + <PolyStepSegment x="1.671" y="-0.471"/> + <PolyStepSegment x="1.679" y="-0.475"/> + <PolyStepSegment x="1.687" y="-0.475"/> + <PolyStepSegment x="1.694" y="-0.471"/> + <PolyStepSegment x="1.700" y="-0.465"/> + <PolyStepSegment x="1.703" y="-0.456"/> + <PolyStepSegment x="1.701" y="-0.448"/> + <PolyStepSegment x="1.696" y="-0.440"/> + <PolyStepSegment x="1.688" y="-0.435"/> + <PolyStepSegment x="1.676" y="-0.432"/> + <PolyStepSegment x="1.670" y="-0.428"/> + <PolyStepSegment x="1.667" y="-0.419"/> + <PolyStepSegment x="1.669" y="-0.410"/> + <PolyStepSegment x="1.674" y="-0.404"/> + <PolyStepSegment x="1.680" y="-0.400"/> + <PolyStepSegment x="1.687" y="-0.400"/> + <PolyStepSegment x="1.693" y="-0.402"/> + <PolyStepSegment x="1.699" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.773" y="-0.431"/> + <PolyStepSegment x="1.766" y="-0.426"/> + <PolyStepSegment x="1.761" y="-0.425"/> + <PolyStepSegment x="1.753" y="-0.428"/> + <PolyStepSegment x="1.748" y="-0.432"/> + <PolyStepSegment x="1.744" y="-0.441"/> + <PolyStepSegment x="1.743" y="-0.450"/> + <PolyStepSegment x="1.744" y="-0.459"/> + <PolyStepSegment x="1.748" y="-0.466"/> + <PolyStepSegment x="1.753" y="-0.473"/> + <PolyStepSegment x="1.761" y="-0.475"/> + <PolyStepSegment x="1.767" y="-0.473"/> + <PolyStepSegment x="1.773" y="-0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.820" y="-0.475"/> + <PolyStepSegment x="1.820" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.820" y="-0.435"/> + <PolyStepSegment x="1.825" y="-0.430"/> + <PolyStepSegment x="1.829" y="-0.426"/> + <PolyStepSegment x="1.836" y="-0.425"/> + <PolyStepSegment x="1.840" y="-0.426"/> + <PolyStepSegment x="1.846" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.894" y="-0.441"/> + <PolyStepSegment x="1.924" y="-0.441"/> + <PolyStepSegment x="1.921" y="-0.432"/> + <PolyStepSegment x="1.916" y="-0.428"/> + <PolyStepSegment x="1.910" y="-0.425"/> + <PolyStepSegment x="1.903" y="-0.426"/> + <PolyStepSegment x="1.898" y="-0.430"/> + <PolyStepSegment x="1.894" y="-0.439"/> + <PolyStepSegment x="1.892" y="-0.446"/> + <PolyStepSegment x="1.892" y="-0.454"/> + <PolyStepSegment x="1.894" y="-0.461"/> + <PolyStepSegment x="1.899" y="-0.469"/> + <PolyStepSegment x="1.904" y="-0.474"/> + <PolyStepSegment x="1.911" y="-0.475"/> + <PolyStepSegment x="1.917" y="-0.473"/> + <PolyStepSegment x="1.924" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.969" y="-0.441"/> + <PolyStepSegment x="1.999" y="-0.441"/> + <PolyStepSegment x="1.996" y="-0.432"/> + <PolyStepSegment x="1.991" y="-0.428"/> + <PolyStepSegment x="1.985" y="-0.425"/> + <PolyStepSegment x="1.978" y="-0.426"/> + <PolyStepSegment x="1.973" y="-0.430"/> + <PolyStepSegment x="1.969" y="-0.439"/> + <PolyStepSegment x="1.967" y="-0.446"/> + <PolyStepSegment x="1.967" y="-0.454"/> + <PolyStepSegment x="1.969" y="-0.461"/> + <PolyStepSegment x="1.974" y="-0.469"/> + <PolyStepSegment x="1.979" y="-0.474"/> + <PolyStepSegment x="1.986" y="-0.475"/> + <PolyStepSegment x="1.992" y="-0.473"/> + <PolyStepSegment x="1.999" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.042" y="-0.475"/> + <PolyStepSegment x="2.042" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.042" y="-0.438"/> + <PolyStepSegment x="2.046" y="-0.431"/> + <PolyStepSegment x="2.051" y="-0.426"/> + <PolyStepSegment x="2.059" y="-0.425"/> + <PolyStepSegment x="2.065" y="-0.426"/> + <PolyStepSegment x="2.071" y="-0.431"/> + <PolyStepSegment x="2.074" y="-0.440"/> + <PolyStepSegment x="2.074" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.208" y="-0.400"/> + <PolyStepSegment x="2.208" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.187" y="-0.400"/> + <PolyStepSegment x="2.229" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.283" y="-0.475"/> + <PolyStepSegment x="2.277" y="-0.474"/> + <PolyStepSegment x="2.272" y="-0.469"/> + <PolyStepSegment x="2.268" y="-0.460"/> + <PolyStepSegment x="2.266" y="-0.450"/> + <PolyStepSegment x="2.268" y="-0.440"/> + <PolyStepSegment x="2.272" y="-0.431"/> + <PolyStepSegment x="2.277" y="-0.426"/> + <PolyStepSegment x="2.283" y="-0.425"/> + <PolyStepSegment x="2.289" y="-0.426"/> + <PolyStepSegment x="2.294" y="-0.431"/> + <PolyStepSegment x="2.298" y="-0.440"/> + <PolyStepSegment x="2.299" y="-0.450"/> + <PolyStepSegment x="2.298" y="-0.460"/> + <PolyStepSegment x="2.294" y="-0.469"/> + <PolyStepSegment x="2.289" y="-0.474"/> + <PolyStepSegment x="2.283" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.341" y="-0.500"/> + <PolyStepSegment x="2.341" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.341" y="-0.436"/> + <PolyStepSegment x="2.346" y="-0.430"/> + <PolyStepSegment x="2.351" y="-0.426"/> + <PolyStepSegment x="2.358" y="-0.425"/> + <PolyStepSegment x="2.365" y="-0.426"/> + <PolyStepSegment x="2.371" y="-0.432"/> + <PolyStepSegment x="2.374" y="-0.441"/> + <PolyStepSegment x="2.375" y="-0.450"/> + <PolyStepSegment x="2.374" y="-0.459"/> + <PolyStepSegment x="2.371" y="-0.468"/> + <PolyStepSegment x="2.365" y="-0.473"/> + <PolyStepSegment x="2.358" y="-0.475"/> + <PolyStepSegment x="2.351" y="-0.474"/> + <PolyStepSegment x="2.345" y="-0.470"/> + <PolyStepSegment x="2.341" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.503" y="-0.500"/> + <PolyStepSegment x="2.494" y="-0.487"/> + <PolyStepSegment x="2.489" y="-0.475"/> + <PolyStepSegment x="2.489" y="-0.425"/> + <PolyStepSegment x="2.494" y="-0.412"/> + <PolyStepSegment x="2.503" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.569" y="-0.466"/> + <PolyStepSegment x="2.574" y="-0.471"/> + <PolyStepSegment x="2.580" y="-0.475"/> + <PolyStepSegment x="2.586" y="-0.475"/> + <PolyStepSegment x="2.591" y="-0.473"/> + <PolyStepSegment x="2.595" y="-0.469"/> + <PolyStepSegment x="2.597" y="-0.464"/> + <PolyStepSegment x="2.596" y="-0.456"/> + <PolyStepSegment x="2.592" y="-0.453"/> + <PolyStepSegment x="2.576" y="-0.445"/> + <PolyStepSegment x="2.572" y="-0.436"/> + <PolyStepSegment x="2.574" y="-0.430"/> + <PolyStepSegment x="2.577" y="-0.426"/> + <PolyStepSegment x="2.583" y="-0.425"/> + <PolyStepSegment x="2.589" y="-0.426"/> + <PolyStepSegment x="2.594" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.644" y="-0.466"/> + <PolyStepSegment x="2.649" y="-0.471"/> + <PolyStepSegment x="2.655" y="-0.475"/> + <PolyStepSegment x="2.661" y="-0.475"/> + <PolyStepSegment x="2.666" y="-0.473"/> + <PolyStepSegment x="2.670" y="-0.469"/> + <PolyStepSegment x="2.672" y="-0.464"/> + <PolyStepSegment x="2.671" y="-0.456"/> + <PolyStepSegment x="2.667" y="-0.453"/> + <PolyStepSegment x="2.651" y="-0.445"/> + <PolyStepSegment x="2.647" y="-0.436"/> + <PolyStepSegment x="2.649" y="-0.430"/> + <PolyStepSegment x="2.652" y="-0.426"/> + <PolyStepSegment x="2.658" y="-0.425"/> + <PolyStepSegment x="2.664" y="-0.426"/> + <PolyStepSegment x="2.669" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.705" y="-0.500"/> + <PolyStepSegment x="2.761" y="-0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.808" y="-0.400"/> + <PolyStepSegment x="2.808" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.795" y="-0.425"/> + <PolyStepSegment x="2.821" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.883" y="-0.475"/> + <PolyStepSegment x="2.877" y="-0.474"/> + <PolyStepSegment x="2.872" y="-0.469"/> + <PolyStepSegment x="2.868" y="-0.460"/> + <PolyStepSegment x="2.866" y="-0.450"/> + <PolyStepSegment x="2.868" y="-0.440"/> + <PolyStepSegment x="2.872" y="-0.431"/> + <PolyStepSegment x="2.877" y="-0.426"/> + <PolyStepSegment x="2.883" y="-0.425"/> + <PolyStepSegment x="2.889" y="-0.426"/> + <PolyStepSegment x="2.894" y="-0.431"/> + <PolyStepSegment x="2.898" y="-0.440"/> + <PolyStepSegment x="2.899" y="-0.450"/> + <PolyStepSegment x="2.898" y="-0.460"/> + <PolyStepSegment x="2.894" y="-0.469"/> + <PolyStepSegment x="2.889" y="-0.474"/> + <PolyStepSegment x="2.883" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.941" y="-0.500"/> + <PolyStepSegment x="2.941" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.941" y="-0.436"/> + <PolyStepSegment x="2.946" y="-0.430"/> + <PolyStepSegment x="2.951" y="-0.426"/> + <PolyStepSegment x="2.958" y="-0.425"/> + <PolyStepSegment x="2.965" y="-0.426"/> + <PolyStepSegment x="2.971" y="-0.432"/> + <PolyStepSegment x="2.974" y="-0.441"/> + <PolyStepSegment x="2.975" y="-0.450"/> + <PolyStepSegment x="2.974" y="-0.459"/> + <PolyStepSegment x="2.971" y="-0.468"/> + <PolyStepSegment x="2.965" y="-0.473"/> + <PolyStepSegment x="2.958" y="-0.475"/> + <PolyStepSegment x="2.951" y="-0.474"/> + <PolyStepSegment x="2.945" y="-0.470"/> + <PolyStepSegment x="2.941" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.038" y="-0.500"/> + <PolyStepSegment x="3.047" y="-0.487"/> + <PolyStepSegment x="3.052" y="-0.475"/> + <PolyStepSegment x="3.052" y="-0.425"/> + <PolyStepSegment x="3.047" y="-0.412"/> + <PolyStepSegment x="3.038" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + </LayerFeature> + <LayerFeature layerRef="SS_BOT"> + <Set> + <ColorRef id="COLOR_SS_BOT"/> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.919" y="1.369"/> + <PolyStepCurve x="1.879" y="1.370" centerX="1.898751" centerY="1.369317" clockwise="false"/> + <PolyStepCurve x="1.919" y="1.369" centerX="1.898751" centerY="1.369317" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.007" y="1.233"/> + <PolyStepSegment x="2.011" y="1.202"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.000" y="1.287"/> + <PolyStepSegment x="2.005" y="1.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.994" y="1.333"/> + <PolyStepSegment x="1.998" y="1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.987" y="1.387"/> + <PolyStepSegment x="1.992" y="1.350"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.981" y="1.434"/> + <PolyStepSegment x="1.985" y="1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.974" y="1.488"/> + <PolyStepSegment x="1.979" y="1.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.968" y="1.534"/> + <PolyStepSegment x="1.973" y="1.498"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.896" y="1.611"/> + <PolyStepSegment x="1.957" y="1.619"/> + <PolyStepSegment x="1.966" y="1.548"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.493" y="1.465"/> + <PolyStepSegment x="1.481" y="1.557"/> + <PolyStepSegment x="1.550" y="1.566"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.500" y="1.411"/> + <PolyStepSegment x="1.495" y="1.450"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.506" y="1.365"/> + <PolyStepSegment x="1.502" y="1.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.513" y="1.311"/> + <PolyStepSegment x="1.508" y="1.350"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.519" y="1.265"/> + <PolyStepSegment x="1.514" y="1.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.526" y="1.212"/> + <PolyStepSegment x="1.521" y="1.250"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.532" y="1.165"/> + <PolyStepSegment x="1.527" y="1.202"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.604" y="1.089"/> + <PolyStepSegment x="1.543" y="1.081"/> + <PolyStepSegment x="1.534" y="1.152"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.011" y="1.202"/> + <PolyStepSegment x="1.959" y="1.135"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U11"> + <NonstandardAttribute name="TEXT" value="U11" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.131" y="1.289"/> + <PolyStepSegment x="2.077" y="1.289"/> + <PolyStepSegment x="2.066" y="1.293"/> + <PolyStepSegment x="2.058" y="1.301"/> + <PolyStepSegment x="2.056" y="1.310"/> + <PolyStepSegment x="2.058" y="1.319"/> + <PolyStepSegment x="2.066" y="1.327"/> + <PolyStepSegment x="2.077" y="1.331"/> + <PolyStepSegment x="2.131" y="1.331"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.056" y="1.385"/> + <PolyStepSegment x="2.131" y="1.385"/> + <PolyStepSegment x="2.116" y="1.374"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.056" y="1.374"/> + <PolyStepSegment x="2.056" y="1.396"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.056" y="1.460"/> + <PolyStepSegment x="2.131" y="1.460"/> + <PolyStepSegment x="2.116" y="1.449"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.056" y="1.449"/> + <PolyStepSegment x="2.056" y="1.471"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.420" y="1.500"/> + <PolyStepCurve x="0.380" y="1.500" centerX="0.400000" centerY="1.500000" clockwise="false"/> + <PolyStepCurve x="0.420" y="1.500" centerX="0.400000" centerY="1.500000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.160" y="1.520"/> + <PolyStepSegment x="0.160" y="1.590"/> + <PolyStepSegment x="0.580" y="1.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.640" y="1.180"/> + <PolyStepSegment x="0.640" y="1.110"/> + <PolyStepSegment x="0.160" y="1.110"/> + <PolyStepSegment x="0.160" y="1.180"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.580" y="1.590"/> + <PolyStepSegment x="0.640" y="1.530"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U16"> + <NonstandardAttribute name="TEXT" value="U16" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.496" y="1.675"/> + <PolyStepSegment x="0.496" y="1.621"/> + <PolyStepSegment x="0.492" y="1.610"/> + <PolyStepSegment x="0.484" y="1.602"/> + <PolyStepSegment x="0.475" y="1.600"/> + <PolyStepSegment x="0.466" y="1.602"/> + <PolyStepSegment x="0.458" y="1.610"/> + <PolyStepSegment x="0.454" y="1.621"/> + <PolyStepSegment x="0.454" y="1.675"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="1.600"/> + <PolyStepSegment x="0.400" y="1.675"/> + <PolyStepSegment x="0.411" y="1.660"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.411" y="1.600"/> + <PolyStepSegment x="0.389" y="1.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.343" y="1.631"/> + <PolyStepSegment x="0.336" y="1.640"/> + <PolyStepSegment x="0.331" y="1.645"/> + <PolyStepSegment x="0.323" y="1.647"/> + <PolyStepSegment x="0.317" y="1.645"/> + <PolyStepSegment x="0.312" y="1.640"/> + <PolyStepSegment x="0.308" y="1.632"/> + <PolyStepSegment x="0.307" y="1.624"/> + <PolyStepSegment x="0.308" y="1.616"/> + <PolyStepSegment x="0.312" y="1.609"/> + <PolyStepSegment x="0.318" y="1.602"/> + <PolyStepSegment x="0.324" y="1.600"/> + <PolyStepSegment x="0.332" y="1.602"/> + <PolyStepSegment x="0.338" y="1.610"/> + <PolyStepSegment x="0.342" y="1.621"/> + <PolyStepSegment x="0.343" y="1.634"/> + <PolyStepSegment x="0.341" y="1.650"/> + <PolyStepSegment x="0.338" y="1.659"/> + <PolyStepSegment x="0.333" y="1.667"/> + <PolyStepSegment x="0.327" y="1.674"/> + <PolyStepSegment x="0.320" y="1.675"/> + <PolyStepSegment x="0.314" y="1.673"/> + <PolyStepSegment x="0.309" y="1.666"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.226" y="1.456"/> + <PolyStepCurve x="1.186" y="1.456" centerX="1.206066" centerY="1.456066" clockwise="false"/> + <PolyStepCurve x="1.226" y="1.456" centerX="1.206066" centerY="1.456066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.387" y="1.402"/> + <PolyStepSegment x="1.397" y="1.392"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.351" y="1.438"/> + <PolyStepSegment x="1.365" y="1.424"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.316" y="1.473"/> + <PolyStepSegment x="1.329" y="1.460"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.280" y="1.509"/> + <PolyStepSegment x="1.294" y="1.495"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.245" y="1.544"/> + <PolyStepSegment x="1.259" y="1.530"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.210" y="1.579"/> + <PolyStepSegment x="1.223" y="1.566"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.174" y="1.615"/> + <PolyStepSegment x="1.188" y="1.601"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.052" y="1.640"/> + <PolyStepSegment x="1.100" y="1.689"/> + <PolyStepSegment x="1.152" y="1.637"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.813" y="1.298"/> + <PolyStepSegment x="0.761" y="1.350"/> + <PolyStepSegment x="0.810" y="1.398"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.849" y="1.262"/> + <PolyStepSegment x="0.835" y="1.276"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.884" y="1.227"/> + <PolyStepSegment x="0.871" y="1.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.920" y="1.191"/> + <PolyStepSegment x="0.906" y="1.205"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.955" y="1.156"/> + <PolyStepSegment x="0.941" y="1.170"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.990" y="1.121"/> + <PolyStepSegment x="0.977" y="1.134"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.026" y="1.085"/> + <PolyStepSegment x="1.012" y="1.099"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.148" y="1.060"/> + <PolyStepSegment x="1.100" y="1.011"/> + <PolyStepSegment x="1.048" y="1.063"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.397" y="1.392"/> + <PolyStepSegment x="1.397" y="1.308"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U14"> + <NonstandardAttribute name="TEXT" value="U14" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.438" y="1.448"/> + <PolyStepSegment x="1.384" y="1.448"/> + <PolyStepSegment x="1.373" y="1.452"/> + <PolyStepSegment x="1.365" y="1.460"/> + <PolyStepSegment x="1.363" y="1.469"/> + <PolyStepSegment x="1.365" y="1.478"/> + <PolyStepSegment x="1.373" y="1.486"/> + <PolyStepSegment x="1.384" y="1.490"/> + <PolyStepSegment x="1.438" y="1.490"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.363" y="1.544"/> + <PolyStepSegment x="1.438" y="1.544"/> + <PolyStepSegment x="1.423" y="1.533"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.363" y="1.533"/> + <PolyStepSegment x="1.363" y="1.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.363" y="1.630"/> + <PolyStepSegment x="1.438" y="1.630"/> + <PolyStepSegment x="1.384" y="1.596"/> + <PolyStepSegment x="1.384" y="1.642"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Silk Screen Bottom (SS_BOTTOM)" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.288" y="-0.465"/> + <PolyStepSegment x="1.296" y="-0.471"/> + <PolyStepSegment x="1.304" y="-0.475"/> + <PolyStepSegment x="1.312" y="-0.475"/> + <PolyStepSegment x="1.319" y="-0.471"/> + <PolyStepSegment x="1.325" y="-0.465"/> + <PolyStepSegment x="1.328" y="-0.456"/> + <PolyStepSegment x="1.326" y="-0.448"/> + <PolyStepSegment x="1.321" y="-0.440"/> + <PolyStepSegment x="1.313" y="-0.435"/> + <PolyStepSegment x="1.301" y="-0.432"/> + <PolyStepSegment x="1.295" y="-0.428"/> + <PolyStepSegment x="1.292" y="-0.419"/> + <PolyStepSegment x="1.294" y="-0.410"/> + <PolyStepSegment x="1.299" y="-0.404"/> + <PolyStepSegment x="1.305" y="-0.400"/> + <PolyStepSegment x="1.312" y="-0.400"/> + <PolyStepSegment x="1.318" y="-0.402"/> + <PolyStepSegment x="1.324" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.383" y="-0.425"/> + <PolyStepSegment x="1.383" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.383" y="-0.405"/> + <PolyStepSegment x="1.381" y="-0.404"/> + <PolyStepSegment x="1.381" y="-0.401"/> + <PolyStepSegment x="1.383" y="-0.400"/> + <PolyStepSegment x="1.385" y="-0.401"/> + <PolyStepSegment x="1.385" y="-0.404"/> + <PolyStepSegment x="1.383" y="-0.405"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.458" y="-0.475"/> + <PolyStepSegment x="1.458" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.517" y="-0.475"/> + <PolyStepSegment x="1.517" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.547" y="-0.425"/> + <PolyStepSegment x="1.517" y="-0.454"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.529" y="-0.443"/> + <PolyStepSegment x="1.549" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.663" y="-0.465"/> + <PolyStepSegment x="1.671" y="-0.471"/> + <PolyStepSegment x="1.679" y="-0.475"/> + <PolyStepSegment x="1.687" y="-0.475"/> + <PolyStepSegment x="1.694" y="-0.471"/> + <PolyStepSegment x="1.700" y="-0.465"/> + <PolyStepSegment x="1.703" y="-0.456"/> + <PolyStepSegment x="1.701" y="-0.448"/> + <PolyStepSegment x="1.696" y="-0.440"/> + <PolyStepSegment x="1.688" y="-0.435"/> + <PolyStepSegment x="1.676" y="-0.432"/> + <PolyStepSegment x="1.670" y="-0.428"/> + <PolyStepSegment x="1.667" y="-0.419"/> + <PolyStepSegment x="1.669" y="-0.410"/> + <PolyStepSegment x="1.674" y="-0.404"/> + <PolyStepSegment x="1.680" y="-0.400"/> + <PolyStepSegment x="1.687" y="-0.400"/> + <PolyStepSegment x="1.693" y="-0.402"/> + <PolyStepSegment x="1.699" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.773" y="-0.431"/> + <PolyStepSegment x="1.766" y="-0.426"/> + <PolyStepSegment x="1.761" y="-0.425"/> + <PolyStepSegment x="1.753" y="-0.428"/> + <PolyStepSegment x="1.748" y="-0.432"/> + <PolyStepSegment x="1.744" y="-0.441"/> + <PolyStepSegment x="1.743" y="-0.450"/> + <PolyStepSegment x="1.744" y="-0.459"/> + <PolyStepSegment x="1.748" y="-0.466"/> + <PolyStepSegment x="1.753" y="-0.473"/> + <PolyStepSegment x="1.761" y="-0.475"/> + <PolyStepSegment x="1.767" y="-0.473"/> + <PolyStepSegment x="1.773" y="-0.468"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.820" y="-0.475"/> + <PolyStepSegment x="1.820" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.820" y="-0.435"/> + <PolyStepSegment x="1.825" y="-0.430"/> + <PolyStepSegment x="1.829" y="-0.426"/> + <PolyStepSegment x="1.836" y="-0.425"/> + <PolyStepSegment x="1.840" y="-0.426"/> + <PolyStepSegment x="1.846" y="-0.430"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.894" y="-0.441"/> + <PolyStepSegment x="1.924" y="-0.441"/> + <PolyStepSegment x="1.921" y="-0.432"/> + <PolyStepSegment x="1.916" y="-0.428"/> + <PolyStepSegment x="1.910" y="-0.425"/> + <PolyStepSegment x="1.903" y="-0.426"/> + <PolyStepSegment x="1.898" y="-0.430"/> + <PolyStepSegment x="1.894" y="-0.439"/> + <PolyStepSegment x="1.892" y="-0.446"/> + <PolyStepSegment x="1.892" y="-0.454"/> + <PolyStepSegment x="1.894" y="-0.461"/> + <PolyStepSegment x="1.899" y="-0.469"/> + <PolyStepSegment x="1.904" y="-0.474"/> + <PolyStepSegment x="1.911" y="-0.475"/> + <PolyStepSegment x="1.917" y="-0.473"/> + <PolyStepSegment x="1.924" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.969" y="-0.441"/> + <PolyStepSegment x="1.999" y="-0.441"/> + <PolyStepSegment x="1.996" y="-0.432"/> + <PolyStepSegment x="1.991" y="-0.428"/> + <PolyStepSegment x="1.985" y="-0.425"/> + <PolyStepSegment x="1.978" y="-0.426"/> + <PolyStepSegment x="1.973" y="-0.430"/> + <PolyStepSegment x="1.969" y="-0.439"/> + <PolyStepSegment x="1.967" y="-0.446"/> + <PolyStepSegment x="1.967" y="-0.454"/> + <PolyStepSegment x="1.969" y="-0.461"/> + <PolyStepSegment x="1.974" y="-0.469"/> + <PolyStepSegment x="1.979" y="-0.474"/> + <PolyStepSegment x="1.986" y="-0.475"/> + <PolyStepSegment x="1.992" y="-0.473"/> + <PolyStepSegment x="1.999" y="-0.465"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.042" y="-0.475"/> + <PolyStepSegment x="2.042" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.042" y="-0.438"/> + <PolyStepSegment x="2.046" y="-0.431"/> + <PolyStepSegment x="2.051" y="-0.426"/> + <PolyStepSegment x="2.059" y="-0.425"/> + <PolyStepSegment x="2.065" y="-0.426"/> + <PolyStepSegment x="2.071" y="-0.431"/> + <PolyStepSegment x="2.074" y="-0.440"/> + <PolyStepSegment x="2.074" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.215" y="-0.435"/> + <PolyStepSegment x="2.219" y="-0.431"/> + <PolyStepSegment x="2.222" y="-0.425"/> + <PolyStepSegment x="2.224" y="-0.416"/> + <PolyStepSegment x="2.222" y="-0.409"/> + <PolyStepSegment x="2.218" y="-0.404"/> + <PolyStepSegment x="2.212" y="-0.400"/> + <PolyStepSegment x="2.187" y="-0.400"/> + <PolyStepSegment x="2.187" y="-0.475"/> + <PolyStepSegment x="2.217" y="-0.475"/> + <PolyStepSegment x="2.224" y="-0.470"/> + <PolyStepSegment x="2.228" y="-0.463"/> + <PolyStepSegment x="2.229" y="-0.454"/> + <PolyStepSegment x="2.228" y="-0.445"/> + <PolyStepSegment x="2.222" y="-0.438"/> + <PolyStepSegment x="2.215" y="-0.435"/> + <PolyStepSegment x="2.187" y="-0.435"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.283" y="-0.475"/> + <PolyStepSegment x="2.277" y="-0.474"/> + <PolyStepSegment x="2.272" y="-0.469"/> + <PolyStepSegment x="2.268" y="-0.460"/> + <PolyStepSegment x="2.266" y="-0.450"/> + <PolyStepSegment x="2.268" y="-0.440"/> + <PolyStepSegment x="2.272" y="-0.431"/> + <PolyStepSegment x="2.277" y="-0.426"/> + <PolyStepSegment x="2.283" y="-0.425"/> + <PolyStepSegment x="2.289" y="-0.426"/> + <PolyStepSegment x="2.294" y="-0.431"/> + <PolyStepSegment x="2.298" y="-0.440"/> + <PolyStepSegment x="2.299" y="-0.450"/> + <PolyStepSegment x="2.298" y="-0.460"/> + <PolyStepSegment x="2.294" y="-0.469"/> + <PolyStepSegment x="2.289" y="-0.474"/> + <PolyStepSegment x="2.283" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.358" y="-0.400"/> + <PolyStepSegment x="2.358" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.345" y="-0.425"/> + <PolyStepSegment x="2.371" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.433" y="-0.400"/> + <PolyStepSegment x="2.433" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.420" y="-0.425"/> + <PolyStepSegment x="2.446" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.508" y="-0.475"/> + <PolyStepSegment x="2.502" y="-0.474"/> + <PolyStepSegment x="2.497" y="-0.469"/> + <PolyStepSegment x="2.493" y="-0.460"/> + <PolyStepSegment x="2.491" y="-0.450"/> + <PolyStepSegment x="2.493" y="-0.440"/> + <PolyStepSegment x="2.497" y="-0.431"/> + <PolyStepSegment x="2.502" y="-0.426"/> + <PolyStepSegment x="2.508" y="-0.425"/> + <PolyStepSegment x="2.514" y="-0.426"/> + <PolyStepSegment x="2.519" y="-0.431"/> + <PolyStepSegment x="2.523" y="-0.440"/> + <PolyStepSegment x="2.524" y="-0.450"/> + <PolyStepSegment x="2.523" y="-0.460"/> + <PolyStepSegment x="2.519" y="-0.469"/> + <PolyStepSegment x="2.514" y="-0.474"/> + <PolyStepSegment x="2.508" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.555" y="-0.475"/> + <PolyStepSegment x="2.555" y="-0.425"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.555" y="-0.439"/> + <PolyStepSegment x="2.558" y="-0.432"/> + <PolyStepSegment x="2.562" y="-0.428"/> + <PolyStepSegment x="2.569" y="-0.425"/> + <PolyStepSegment x="2.576" y="-0.428"/> + <PolyStepSegment x="2.580" y="-0.432"/> + <PolyStepSegment x="2.583" y="-0.439"/> + <PolyStepSegment x="2.583" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.583" y="-0.439"/> + <PolyStepSegment x="2.586" y="-0.432"/> + <PolyStepSegment x="2.590" y="-0.428"/> + <PolyStepSegment x="2.597" y="-0.425"/> + <PolyStepSegment x="2.604" y="-0.428"/> + <PolyStepSegment x="2.608" y="-0.432"/> + <PolyStepSegment x="2.611" y="-0.440"/> + <PolyStepSegment x="2.611" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.728" y="-0.500"/> + <PolyStepSegment x="2.719" y="-0.487"/> + <PolyStepSegment x="2.714" y="-0.475"/> + <PolyStepSegment x="2.714" y="-0.425"/> + <PolyStepSegment x="2.719" y="-0.412"/> + <PolyStepSegment x="2.728" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.788" y="-0.465"/> + <PolyStepSegment x="2.796" y="-0.471"/> + <PolyStepSegment x="2.804" y="-0.475"/> + <PolyStepSegment x="2.812" y="-0.475"/> + <PolyStepSegment x="2.819" y="-0.471"/> + <PolyStepSegment x="2.825" y="-0.465"/> + <PolyStepSegment x="2.828" y="-0.456"/> + <PolyStepSegment x="2.826" y="-0.448"/> + <PolyStepSegment x="2.821" y="-0.440"/> + <PolyStepSegment x="2.813" y="-0.435"/> + <PolyStepSegment x="2.801" y="-0.432"/> + <PolyStepSegment x="2.795" y="-0.428"/> + <PolyStepSegment x="2.792" y="-0.419"/> + <PolyStepSegment x="2.794" y="-0.410"/> + <PolyStepSegment x="2.799" y="-0.404"/> + <PolyStepSegment x="2.805" y="-0.400"/> + <PolyStepSegment x="2.812" y="-0.400"/> + <PolyStepSegment x="2.818" y="-0.402"/> + <PolyStepSegment x="2.824" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.863" y="-0.465"/> + <PolyStepSegment x="2.871" y="-0.471"/> + <PolyStepSegment x="2.879" y="-0.475"/> + <PolyStepSegment x="2.887" y="-0.475"/> + <PolyStepSegment x="2.894" y="-0.471"/> + <PolyStepSegment x="2.900" y="-0.465"/> + <PolyStepSegment x="2.903" y="-0.456"/> + <PolyStepSegment x="2.901" y="-0.448"/> + <PolyStepSegment x="2.896" y="-0.440"/> + <PolyStepSegment x="2.888" y="-0.435"/> + <PolyStepSegment x="2.876" y="-0.432"/> + <PolyStepSegment x="2.870" y="-0.428"/> + <PolyStepSegment x="2.867" y="-0.419"/> + <PolyStepSegment x="2.869" y="-0.410"/> + <PolyStepSegment x="2.874" y="-0.404"/> + <PolyStepSegment x="2.880" y="-0.400"/> + <PolyStepSegment x="2.887" y="-0.400"/> + <PolyStepSegment x="2.893" y="-0.402"/> + <PolyStepSegment x="2.899" y="-0.409"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.930" y="-0.500"/> + <PolyStepSegment x="2.986" y="-0.500"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.040" y="-0.435"/> + <PolyStepSegment x="3.044" y="-0.431"/> + <PolyStepSegment x="3.047" y="-0.425"/> + <PolyStepSegment x="3.049" y="-0.416"/> + <PolyStepSegment x="3.047" y="-0.409"/> + <PolyStepSegment x="3.043" y="-0.404"/> + <PolyStepSegment x="3.037" y="-0.400"/> + <PolyStepSegment x="3.012" y="-0.400"/> + <PolyStepSegment x="3.012" y="-0.475"/> + <PolyStepSegment x="3.042" y="-0.475"/> + <PolyStepSegment x="3.049" y="-0.470"/> + <PolyStepSegment x="3.053" y="-0.463"/> + <PolyStepSegment x="3.054" y="-0.454"/> + <PolyStepSegment x="3.053" y="-0.445"/> + <PolyStepSegment x="3.047" y="-0.438"/> + <PolyStepSegment x="3.040" y="-0.435"/> + <PolyStepSegment x="3.012" y="-0.435"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.108" y="-0.475"/> + <PolyStepSegment x="3.101" y="-0.474"/> + <PolyStepSegment x="3.094" y="-0.469"/> + <PolyStepSegment x="3.088" y="-0.461"/> + <PolyStepSegment x="3.085" y="-0.453"/> + <PolyStepSegment x="3.083" y="-0.443"/> + <PolyStepSegment x="3.083" y="-0.432"/> + <PolyStepSegment x="3.085" y="-0.422"/> + <PolyStepSegment x="3.088" y="-0.414"/> + <PolyStepSegment x="3.094" y="-0.406"/> + <PolyStepSegment x="3.101" y="-0.401"/> + <PolyStepSegment x="3.108" y="-0.400"/> + <PolyStepSegment x="3.115" y="-0.401"/> + <PolyStepSegment x="3.122" y="-0.406"/> + <PolyStepSegment x="3.128" y="-0.414"/> + <PolyStepSegment x="3.131" y="-0.422"/> + <PolyStepSegment x="3.133" y="-0.432"/> + <PolyStepSegment x="3.133" y="-0.443"/> + <PolyStepSegment x="3.131" y="-0.453"/> + <PolyStepSegment x="3.128" y="-0.461"/> + <PolyStepSegment x="3.122" y="-0.469"/> + <PolyStepSegment x="3.115" y="-0.474"/> + <PolyStepSegment x="3.108" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.183" y="-0.400"/> + <PolyStepSegment x="3.183" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.162" y="-0.400"/> + <PolyStepSegment x="3.204" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.258" y="-0.400"/> + <PolyStepSegment x="3.258" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.237" y="-0.400"/> + <PolyStepSegment x="3.279" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.333" y="-0.475"/> + <PolyStepSegment x="3.326" y="-0.474"/> + <PolyStepSegment x="3.319" y="-0.469"/> + <PolyStepSegment x="3.313" y="-0.461"/> + <PolyStepSegment x="3.310" y="-0.453"/> + <PolyStepSegment x="3.308" y="-0.443"/> + <PolyStepSegment x="3.308" y="-0.432"/> + <PolyStepSegment x="3.310" y="-0.422"/> + <PolyStepSegment x="3.313" y="-0.414"/> + <PolyStepSegment x="3.319" y="-0.406"/> + <PolyStepSegment x="3.326" y="-0.401"/> + <PolyStepSegment x="3.333" y="-0.400"/> + <PolyStepSegment x="3.340" y="-0.401"/> + <PolyStepSegment x="3.347" y="-0.406"/> + <PolyStepSegment x="3.353" y="-0.414"/> + <PolyStepSegment x="3.356" y="-0.422"/> + <PolyStepSegment x="3.358" y="-0.432"/> + <PolyStepSegment x="3.358" y="-0.443"/> + <PolyStepSegment x="3.356" y="-0.453"/> + <PolyStepSegment x="3.353" y="-0.461"/> + <PolyStepSegment x="3.347" y="-0.469"/> + <PolyStepSegment x="3.340" y="-0.474"/> + <PolyStepSegment x="3.333" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.384" y="-0.475"/> + <PolyStepSegment x="3.384" y="-0.400"/> + <PolyStepSegment x="3.408" y="-0.463"/> + <PolyStepSegment x="3.432" y="-0.400"/> + <PolyStepSegment x="3.432" y="-0.475"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.488" y="-0.500"/> + <PolyStepSegment x="3.497" y="-0.487"/> + <PolyStepSegment x="3.502" y="-0.475"/> + <PolyStepSegment x="3.502" y="-0.425"/> + <PolyStepSegment x="3.497" y="-0.412"/> + <PolyStepSegment x="3.488" y="-0.400"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.275" y="0.100"/> + <PolyStepSegment x="-0.275" y="0.005"/> + <PolyStepCurve x="0.005" y="-0.275" centerX="0.005000" centerY="0.005000" clockwise="false"/> + <PolyStepSegment x="0.110" y="-0.275"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="-0.170" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.125"/> + <PolyStepSegment x="-0.275" y="4.005"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.450" y="4.125"/> + <PolyStepSegment x="2.360" y="4.125"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="3.660"/> + <PolyStepSegment x="3.675" y="3.815"/> + <PolyStepCurve x="3.465" y="4.025" centerX="3.465000" centerY="3.815000" clockwise="false"/> + <PolyStepSegment x="3.405" y="4.025"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.675" y="0.540"/> + <PolyStepSegment x="3.675" y="1.300"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.120" y="-0.275"/> + <PolyStepSegment x="3.260" y="-0.275"/> + <PolyStepSegment x="3.525" y="-0.010"/> + <PolyStepSegment x="3.525" y="0.190"/> + <LineDescRef id="ROUND_50"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT"> + <NonstandardAttribute name="TEXT" value="Layer:" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.824" y="-0.480"/> + <PolyStepSegment x="0.824" y="-0.555"/> + <PolyStepSegment x="0.862" y="-0.555"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.555"/> + <PolyStepSegment x="0.935" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.935" y="-0.514"/> + <PolyStepSegment x="0.931" y="-0.509"/> + <PolyStepSegment x="0.925" y="-0.506"/> + <PolyStepSegment x="0.919" y="-0.505"/> + <PolyStepSegment x="0.912" y="-0.508"/> + <PolyStepSegment x="0.907" y="-0.512"/> + <PolyStepSegment x="0.903" y="-0.520"/> + <PolyStepSegment x="0.901" y="-0.530"/> + <PolyStepSegment x="0.903" y="-0.540"/> + <PolyStepSegment x="0.907" y="-0.548"/> + <PolyStepSegment x="0.912" y="-0.553"/> + <PolyStepSegment x="0.919" y="-0.555"/> + <PolyStepSegment x="0.925" y="-0.554"/> + <PolyStepSegment x="0.931" y="-0.550"/> + <PolyStepSegment x="0.935" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.973" y="-0.577"/> + <PolyStepSegment x="0.979" y="-0.580"/> + <PolyStepSegment x="0.986" y="-0.577"/> + <PolyStepSegment x="0.991" y="-0.573"/> + <PolyStepSegment x="0.995" y="-0.566"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <PolyStepSegment x="1.013" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.983" y="-0.505"/> + <PolyStepSegment x="1.000" y="-0.546"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.054" y="-0.521"/> + <PolyStepSegment x="1.084" y="-0.521"/> + <PolyStepSegment x="1.081" y="-0.512"/> + <PolyStepSegment x="1.076" y="-0.508"/> + <PolyStepSegment x="1.070" y="-0.505"/> + <PolyStepSegment x="1.063" y="-0.506"/> + <PolyStepSegment x="1.058" y="-0.510"/> + <PolyStepSegment x="1.054" y="-0.519"/> + <PolyStepSegment x="1.052" y="-0.526"/> + <PolyStepSegment x="1.052" y="-0.534"/> + <PolyStepSegment x="1.054" y="-0.541"/> + <PolyStepSegment x="1.059" y="-0.549"/> + <PolyStepSegment x="1.064" y="-0.554"/> + <PolyStepSegment x="1.071" y="-0.555"/> + <PolyStepSegment x="1.077" y="-0.553"/> + <PolyStepSegment x="1.084" y="-0.545"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.555"/> + <PolyStepSegment x="1.130" y="-0.505"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.130" y="-0.515"/> + <PolyStepSegment x="1.135" y="-0.510"/> + <PolyStepSegment x="1.139" y="-0.506"/> + <PolyStepSegment x="1.146" y="-0.505"/> + <PolyStepSegment x="1.150" y="-0.506"/> + <PolyStepSegment x="1.156" y="-0.510"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.557"/> + <PolyStepSegment x="1.216" y="-0.556"/> + <PolyStepSegment x="1.216" y="-0.554"/> + <PolyStepSegment x="1.218" y="-0.553"/> + <PolyStepSegment x="1.220" y="-0.554"/> + <PolyStepSegment x="1.220" y="-0.556"/> + <PolyStepSegment x="1.218" y="-0.557"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.218" y="-0.524"/> + <PolyStepSegment x="1.216" y="-0.523"/> + <PolyStepSegment x="1.216" y="-0.520"/> + <PolyStepSegment x="1.218" y="-0.519"/> + <PolyStepSegment x="1.220" y="-0.520"/> + <PolyStepSegment x="1.220" y="-0.523"/> + <PolyStepSegment x="1.218" y="-0.524"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + </LayerFeature> + <LayerFeature layerRef="asm_bot"> + <Set> + <ColorRef id="COLOR_asm_bot"/> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.957" y="1.619"/> + <PolyStepSegment x="1.481" y="1.557"/> + <PolyStepSegment x="1.543" y="1.081"/> + <PolyStepSegment x="1.959" y="1.135"/> + <PolyStepSegment x="2.011" y="1.202"/> + <PolyStepSegment x="1.957" y="1.619"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U11"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.919" y="1.369"/> + <PolyStepCurve x="1.879" y="1.370" centerX="1.898751" centerY="1.369317" clockwise="false"/> + <PolyStepCurve x="1.919" y="1.369" centerX="1.898751" centerY="1.369317" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U11"> + <NonstandardAttribute name="TEXT" value="U11" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.806" y="1.261"/> + <PolyStepSegment x="1.753" y="1.254"/> + <PolyStepSegment x="1.741" y="1.256"/> + <PolyStepSegment x="1.733" y="1.263"/> + <PolyStepSegment x="1.729" y="1.272"/> + <PolyStepSegment x="1.731" y="1.281"/> + <PolyStepSegment x="1.737" y="1.290"/> + <PolyStepSegment x="1.748" y="1.295"/> + <PolyStepSegment x="1.801" y="1.302"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.719" y="1.346"/> + <PolyStepSegment x="1.794" y="1.355"/> + <PolyStepSegment x="1.780" y="1.342"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.721" y="1.335"/> + <PolyStepSegment x="1.718" y="1.357"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.709" y="1.420"/> + <PolyStepSegment x="1.784" y="1.429"/> + <PolyStepSegment x="1.770" y="1.416"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.711" y="1.409"/> + <PolyStepSegment x="1.708" y="1.431"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U11"> + <NonstandardAttribute name="TEXT" value="100E151" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.634" y="1.124"/> + <PolyStepSegment x="1.664" y="1.128"/> + <PolyStepSegment x="1.659" y="1.123"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.634" y="1.120"/> + <PolyStepSegment x="1.633" y="1.129"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.660" y="1.159"/> + <PolyStepSegment x="1.660" y="1.156"/> + <PolyStepSegment x="1.657" y="1.154"/> + <PolyStepSegment x="1.654" y="1.152"/> + <PolyStepSegment x="1.651" y="1.150"/> + <PolyStepSegment x="1.646" y="1.149"/> + <PolyStepSegment x="1.641" y="1.149"/> + <PolyStepSegment x="1.637" y="1.149"/> + <PolyStepSegment x="1.634" y="1.151"/> + <PolyStepSegment x="1.631" y="1.152"/> + <PolyStepSegment x="1.630" y="1.155"/> + <PolyStepSegment x="1.630" y="1.159"/> + <PolyStepSegment x="1.632" y="1.161"/> + <PolyStepSegment x="1.635" y="1.163"/> + <PolyStepSegment x="1.639" y="1.165"/> + <PolyStepSegment x="1.644" y="1.166"/> + <PolyStepSegment x="1.648" y="1.166"/> + <PolyStepSegment x="1.653" y="1.165"/> + <PolyStepSegment x="1.656" y="1.164"/> + <PolyStepSegment x="1.659" y="1.162"/> + <PolyStepSegment x="1.660" y="1.159"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.656" y="1.190"/> + <PolyStepSegment x="1.656" y="1.187"/> + <PolyStepSegment x="1.653" y="1.185"/> + <PolyStepSegment x="1.650" y="1.183"/> + <PolyStepSegment x="1.647" y="1.181"/> + <PolyStepSegment x="1.642" y="1.180"/> + <PolyStepSegment x="1.637" y="1.180"/> + <PolyStepSegment x="1.633" y="1.180"/> + <PolyStepSegment x="1.630" y="1.182"/> + <PolyStepSegment x="1.627" y="1.183"/> + <PolyStepSegment x="1.626" y="1.186"/> + <PolyStepSegment x="1.626" y="1.190"/> + <PolyStepSegment x="1.628" y="1.192"/> + <PolyStepSegment x="1.631" y="1.194"/> + <PolyStepSegment x="1.635" y="1.196"/> + <PolyStepSegment x="1.640" y="1.197"/> + <PolyStepSegment x="1.644" y="1.197"/> + <PolyStepSegment x="1.649" y="1.196"/> + <PolyStepSegment x="1.652" y="1.195"/> + <PolyStepSegment x="1.655" y="1.193"/> + <PolyStepSegment x="1.656" y="1.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.621" y="1.225"/> + <PolyStepSegment x="1.623" y="1.210"/> + <PolyStepSegment x="1.653" y="1.214"/> + <PolyStepSegment x="1.651" y="1.229"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.637" y="1.221"/> + <PolyStepSegment x="1.638" y="1.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.618" y="1.248"/> + <PolyStepSegment x="1.648" y="1.252"/> + <PolyStepSegment x="1.643" y="1.247"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.618" y="1.244"/> + <PolyStepSegment x="1.617" y="1.253"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.619" y="1.272"/> + <PolyStepSegment x="1.616" y="1.274"/> + <PolyStepSegment x="1.614" y="1.276"/> + <PolyStepSegment x="1.614" y="1.279"/> + <PolyStepSegment x="1.614" y="1.283"/> + <PolyStepSegment x="1.616" y="1.286"/> + <PolyStepSegment x="1.619" y="1.288"/> + <PolyStepSegment x="1.623" y="1.289"/> + <PolyStepSegment x="1.627" y="1.289"/> + <PolyStepSegment x="1.630" y="1.287"/> + <PolyStepSegment x="1.633" y="1.285"/> + <PolyStepSegment x="1.633" y="1.282"/> + <PolyStepSegment x="1.633" y="1.280"/> + <PolyStepSegment x="1.632" y="1.276"/> + <PolyStepSegment x="1.645" y="1.279"/> + <PolyStepSegment x="1.644" y="1.289"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.610" y="1.310"/> + <PolyStepSegment x="1.640" y="1.314"/> + <PolyStepSegment x="1.635" y="1.309"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.610" y="1.306"/> + <PolyStepSegment x="1.609" y="1.315"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U11"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.735" y="1.191"/> + <PolyStepSegment x="1.755" y="1.211"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.760" y="1.203"/> + <PolyStepSegment x="1.729" y="1.199"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.732" y="1.208"/> + <PolyStepSegment x="1.757" y="1.194"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.746" y="1.189"/> + <PolyStepSegment x="1.743" y="1.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.731" y="1.222"/> + <PolyStepSegment x="1.751" y="1.242"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.756" y="1.234"/> + <PolyStepSegment x="1.725" y="1.230"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.728" y="1.239"/> + <PolyStepSegment x="1.753" y="1.225"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.742" y="1.220"/> + <PolyStepSegment x="1.739" y="1.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.727" y="1.253"/> + <PolyStepSegment x="1.747" y="1.273"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.752" y="1.265"/> + <PolyStepSegment x="1.721" y="1.261"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.724" y="1.270"/> + <PolyStepSegment x="1.749" y="1.256"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.738" y="1.251"/> + <PolyStepSegment x="1.735" y="1.274"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U11"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.666" y="1.182"/> + <PolyStepSegment x="1.686" y="1.202"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.691" y="1.194"/> + <PolyStepSegment x="1.660" y="1.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.663" y="1.199"/> + <PolyStepSegment x="1.688" y="1.185"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.677" y="1.180"/> + <PolyStepSegment x="1.674" y="1.203"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.662" y="1.213"/> + <PolyStepSegment x="1.682" y="1.233"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.687" y="1.225"/> + <PolyStepSegment x="1.656" y="1.221"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.659" y="1.230"/> + <PolyStepSegment x="1.684" y="1.216"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.673" y="1.211"/> + <PolyStepSegment x="1.670" y="1.234"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.658" y="1.244"/> + <PolyStepSegment x="1.678" y="1.264"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.683" y="1.256"/> + <PolyStepSegment x="1.652" y="1.252"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.655" y="1.261"/> + <PolyStepSegment x="1.680" y="1.247"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.669" y="1.242"/> + <PolyStepSegment x="1.666" y="1.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.160" y="1.590"/> + <PolyStepSegment x="0.160" y="1.110"/> + <PolyStepSegment x="0.640" y="1.110"/> + <PolyStepSegment x="0.640" y="1.530"/> + <PolyStepSegment x="0.580" y="1.590"/> + <PolyStepSegment x="0.160" y="1.590"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U16"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.420" y="1.500"/> + <PolyStepCurve x="0.380" y="1.500" centerX="0.400000" centerY="1.500000" clockwise="false"/> + <PolyStepCurve x="0.420" y="1.500" centerX="0.400000" centerY="1.500000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U16"> + <NonstandardAttribute name="TEXT" value="U16" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.496" y="1.395"/> + <PolyStepSegment x="0.496" y="1.341"/> + <PolyStepSegment x="0.492" y="1.330"/> + <PolyStepSegment x="0.484" y="1.322"/> + <PolyStepSegment x="0.475" y="1.320"/> + <PolyStepSegment x="0.466" y="1.322"/> + <PolyStepSegment x="0.458" y="1.330"/> + <PolyStepSegment x="0.454" y="1.341"/> + <PolyStepSegment x="0.454" y="1.395"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.400" y="1.320"/> + <PolyStepSegment x="0.400" y="1.395"/> + <PolyStepSegment x="0.411" y="1.380"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.411" y="1.320"/> + <PolyStepSegment x="0.389" y="1.320"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.343" y="1.351"/> + <PolyStepSegment x="0.336" y="1.360"/> + <PolyStepSegment x="0.331" y="1.365"/> + <PolyStepSegment x="0.323" y="1.367"/> + <PolyStepSegment x="0.317" y="1.365"/> + <PolyStepSegment x="0.312" y="1.360"/> + <PolyStepSegment x="0.308" y="1.352"/> + <PolyStepSegment x="0.307" y="1.344"/> + <PolyStepSegment x="0.308" y="1.336"/> + <PolyStepSegment x="0.312" y="1.329"/> + <PolyStepSegment x="0.318" y="1.322"/> + <PolyStepSegment x="0.324" y="1.320"/> + <PolyStepSegment x="0.332" y="1.322"/> + <PolyStepSegment x="0.338" y="1.330"/> + <PolyStepSegment x="0.342" y="1.341"/> + <PolyStepSegment x="0.343" y="1.354"/> + <PolyStepSegment x="0.341" y="1.370"/> + <PolyStepSegment x="0.338" y="1.379"/> + <PolyStepSegment x="0.333" y="1.387"/> + <PolyStepSegment x="0.327" y="1.394"/> + <PolyStepSegment x="0.320" y="1.395"/> + <PolyStepSegment x="0.314" y="1.393"/> + <PolyStepSegment x="0.309" y="1.386"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U16"> + <NonstandardAttribute name="TEXT" value="100E116" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.609" y="1.205"/> + <PolyStepSegment x="0.609" y="1.236"/> + <PolyStepSegment x="0.613" y="1.230"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.613" y="1.205"/> + <PolyStepSegment x="0.604" y="1.205"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.578" y="1.236"/> + <PolyStepSegment x="0.581" y="1.235"/> + <PolyStepSegment x="0.583" y="1.232"/> + <PolyStepSegment x="0.584" y="1.229"/> + <PolyStepSegment x="0.586" y="1.225"/> + <PolyStepSegment x="0.586" y="1.220"/> + <PolyStepSegment x="0.586" y="1.216"/> + <PolyStepSegment x="0.584" y="1.212"/> + <PolyStepSegment x="0.583" y="1.209"/> + <PolyStepSegment x="0.581" y="1.206"/> + <PolyStepSegment x="0.578" y="1.205"/> + <PolyStepSegment x="0.574" y="1.206"/> + <PolyStepSegment x="0.572" y="1.209"/> + <PolyStepSegment x="0.571" y="1.212"/> + <PolyStepSegment x="0.569" y="1.216"/> + <PolyStepSegment x="0.569" y="1.220"/> + <PolyStepSegment x="0.569" y="1.225"/> + <PolyStepSegment x="0.571" y="1.229"/> + <PolyStepSegment x="0.572" y="1.232"/> + <PolyStepSegment x="0.574" y="1.235"/> + <PolyStepSegment x="0.578" y="1.236"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.547" y="1.236"/> + <PolyStepSegment x="0.550" y="1.235"/> + <PolyStepSegment x="0.552" y="1.232"/> + <PolyStepSegment x="0.553" y="1.229"/> + <PolyStepSegment x="0.555" y="1.225"/> + <PolyStepSegment x="0.555" y="1.220"/> + <PolyStepSegment x="0.555" y="1.216"/> + <PolyStepSegment x="0.553" y="1.212"/> + <PolyStepSegment x="0.552" y="1.209"/> + <PolyStepSegment x="0.550" y="1.206"/> + <PolyStepSegment x="0.547" y="1.205"/> + <PolyStepSegment x="0.543" y="1.206"/> + <PolyStepSegment x="0.541" y="1.209"/> + <PolyStepSegment x="0.540" y="1.212"/> + <PolyStepSegment x="0.538" y="1.216"/> + <PolyStepSegment x="0.538" y="1.220"/> + <PolyStepSegment x="0.538" y="1.225"/> + <PolyStepSegment x="0.540" y="1.229"/> + <PolyStepSegment x="0.541" y="1.232"/> + <PolyStepSegment x="0.543" y="1.235"/> + <PolyStepSegment x="0.547" y="1.236"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.508" y="1.205"/> + <PolyStepSegment x="0.523" y="1.205"/> + <PolyStepSegment x="0.523" y="1.236"/> + <PolyStepSegment x="0.508" y="1.236"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.514" y="1.221"/> + <PolyStepSegment x="0.523" y="1.221"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="1.205"/> + <PolyStepSegment x="0.485" y="1.236"/> + <PolyStepSegment x="0.489" y="1.230"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.489" y="1.205"/> + <PolyStepSegment x="0.480" y="1.205"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.454" y="1.205"/> + <PolyStepSegment x="0.454" y="1.236"/> + <PolyStepSegment x="0.458" y="1.230"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.458" y="1.205"/> + <PolyStepSegment x="0.449" y="1.205"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.430" y="1.218"/> + <PolyStepSegment x="0.427" y="1.222"/> + <PolyStepSegment x="0.425" y="1.224"/> + <PolyStepSegment x="0.422" y="1.225"/> + <PolyStepSegment x="0.419" y="1.224"/> + <PolyStepSegment x="0.417" y="1.222"/> + <PolyStepSegment x="0.416" y="1.218"/> + <PolyStepSegment x="0.415" y="1.215"/> + <PolyStepSegment x="0.416" y="1.212"/> + <PolyStepSegment x="0.417" y="1.209"/> + <PolyStepSegment x="0.419" y="1.206"/> + <PolyStepSegment x="0.422" y="1.205"/> + <PolyStepSegment x="0.425" y="1.206"/> + <PolyStepSegment x="0.428" y="1.209"/> + <PolyStepSegment x="0.429" y="1.214"/> + <PolyStepSegment x="0.430" y="1.219"/> + <PolyStepSegment x="0.429" y="1.226"/> + <PolyStepSegment x="0.428" y="1.229"/> + <PolyStepSegment x="0.426" y="1.233"/> + <PolyStepSegment x="0.423" y="1.235"/> + <PolyStepSegment x="0.421" y="1.236"/> + <PolyStepSegment x="0.418" y="1.235"/> + <PolyStepSegment x="0.416" y="1.232"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U16"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.555" y="1.314"/> + <PolyStepSegment x="0.538" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.547" y="1.341"/> + <PolyStepSegment x="0.547" y="1.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.538" y="1.314"/> + <PolyStepSegment x="0.555" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.558" y="1.325"/> + <PolyStepSegment x="0.535" y="1.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.524" y="1.314"/> + <PolyStepSegment x="0.507" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.516" y="1.341"/> + <PolyStepSegment x="0.516" y="1.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.507" y="1.314"/> + <PolyStepSegment x="0.524" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.527" y="1.325"/> + <PolyStepSegment x="0.504" y="1.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.493" y="1.314"/> + <PolyStepSegment x="0.476" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="1.341"/> + <PolyStepSegment x="0.485" y="1.310"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.476" y="1.314"/> + <PolyStepSegment x="0.493" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.496" y="1.325"/> + <PolyStepSegment x="0.473" y="1.325"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U16"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.555" y="1.244"/> + <PolyStepSegment x="0.538" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.547" y="1.271"/> + <PolyStepSegment x="0.547" y="1.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.538" y="1.244"/> + <PolyStepSegment x="0.555" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.558" y="1.255"/> + <PolyStepSegment x="0.535" y="1.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.524" y="1.244"/> + <PolyStepSegment x="0.507" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.516" y="1.271"/> + <PolyStepSegment x="0.516" y="1.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.507" y="1.244"/> + <PolyStepSegment x="0.524" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.527" y="1.255"/> + <PolyStepSegment x="0.504" y="1.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.493" y="1.244"/> + <PolyStepSegment x="0.476" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.485" y="1.271"/> + <PolyStepSegment x="0.485" y="1.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.476" y="1.244"/> + <PolyStepSegment x="0.493" y="1.267"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.496" y="1.255"/> + <PolyStepSegment x="0.473" y="1.255"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="1.689"/> + <PolyStepSegment x="0.761" y="1.350"/> + <PolyStepSegment x="1.100" y="1.011"/> + <PolyStepSegment x="1.397" y="1.308"/> + <PolyStepSegment x="1.397" y="1.392"/> + <PolyStepSegment x="1.100" y="1.689"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set componentRef="U14"> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.226" y="1.456"/> + <PolyStepCurve x="1.186" y="1.456" centerX="1.206066" centerY="1.456066" clockwise="false"/> + <PolyStepCurve x="1.226" y="1.456" centerX="1.206066" centerY="1.456066" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U14"> + <NonstandardAttribute name="TEXT" value="U14" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.200" y="1.314"/> + <PolyStepSegment x="1.162" y="1.276"/> + <PolyStepSegment x="1.151" y="1.271"/> + <PolyStepSegment x="1.141" y="1.271"/> + <PolyStepSegment x="1.132" y="1.276"/> + <PolyStepSegment x="1.127" y="1.284"/> + <PolyStepSegment x="1.127" y="1.295"/> + <PolyStepSegment x="1.133" y="1.305"/> + <PolyStepSegment x="1.171" y="1.343"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.079" y="1.329"/> + <PolyStepSegment x="1.132" y="1.382"/> + <PolyStepSegment x="1.130" y="1.363"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.087" y="1.321"/> + <PolyStepSegment x="1.071" y="1.337"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.018" y="1.390"/> + <PolyStepSegment x="1.071" y="1.443"/> + <PolyStepSegment x="1.058" y="1.380"/> + <PolyStepSegment x="1.025" y="1.413"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U14"> + <NonstandardAttribute name="TEXT" value="100E016" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.145" y="1.100"/> + <PolyStepSegment x="1.167" y="1.122"/> + <PolyStepSegment x="1.166" y="1.114"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.148" y="1.097"/> + <PolyStepSegment x="1.142" y="1.103"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.145" y="1.144"/> + <PolyStepSegment x="1.146" y="1.141"/> + <PolyStepSegment x="1.146" y="1.138"/> + <PolyStepSegment x="1.145" y="1.134"/> + <PolyStepSegment x="1.143" y="1.131"/> + <PolyStepSegment x="1.140" y="1.127"/> + <PolyStepSegment x="1.136" y="1.124"/> + <PolyStepSegment x="1.132" y="1.122"/> + <PolyStepSegment x="1.129" y="1.121"/> + <PolyStepSegment x="1.126" y="1.121"/> + <PolyStepSegment x="1.123" y="1.122"/> + <PolyStepSegment x="1.121" y="1.125"/> + <PolyStepSegment x="1.122" y="1.128"/> + <PolyStepSegment x="1.123" y="1.132"/> + <PolyStepSegment x="1.125" y="1.135"/> + <PolyStepSegment x="1.128" y="1.139"/> + <PolyStepSegment x="1.131" y="1.142"/> + <PolyStepSegment x="1.135" y="1.144"/> + <PolyStepSegment x="1.138" y="1.145"/> + <PolyStepSegment x="1.142" y="1.145"/> + <PolyStepSegment x="1.145" y="1.144"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.123" y="1.166"/> + <PolyStepSegment x="1.124" y="1.163"/> + <PolyStepSegment x="1.124" y="1.160"/> + <PolyStepSegment x="1.123" y="1.156"/> + <PolyStepSegment x="1.121" y="1.153"/> + <PolyStepSegment x="1.118" y="1.149"/> + <PolyStepSegment x="1.114" y="1.146"/> + <PolyStepSegment x="1.110" y="1.144"/> + <PolyStepSegment x="1.107" y="1.143"/> + <PolyStepSegment x="1.104" y="1.143"/> + <PolyStepSegment x="1.101" y="1.144"/> + <PolyStepSegment x="1.099" y="1.147"/> + <PolyStepSegment x="1.100" y="1.150"/> + <PolyStepSegment x="1.101" y="1.154"/> + <PolyStepSegment x="1.103" y="1.157"/> + <PolyStepSegment x="1.106" y="1.161"/> + <PolyStepSegment x="1.109" y="1.164"/> + <PolyStepSegment x="1.113" y="1.166"/> + <PolyStepSegment x="1.116" y="1.167"/> + <PolyStepSegment x="1.120" y="1.167"/> + <PolyStepSegment x="1.123" y="1.166"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.073" y="1.172"/> + <PolyStepSegment x="1.084" y="1.161"/> + <PolyStepSegment x="1.106" y="1.183"/> + <PolyStepSegment x="1.095" y="1.193"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.089" y="1.179"/> + <PolyStepSegment x="1.096" y="1.172"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.079" y="1.210"/> + <PolyStepSegment x="1.080" y="1.207"/> + <PolyStepSegment x="1.080" y="1.204"/> + <PolyStepSegment x="1.079" y="1.200"/> + <PolyStepSegment x="1.077" y="1.197"/> + <PolyStepSegment x="1.074" y="1.193"/> + <PolyStepSegment x="1.070" y="1.190"/> + <PolyStepSegment x="1.066" y="1.188"/> + <PolyStepSegment x="1.063" y="1.187"/> + <PolyStepSegment x="1.060" y="1.187"/> + <PolyStepSegment x="1.057" y="1.188"/> + <PolyStepSegment x="1.055" y="1.191"/> + <PolyStepSegment x="1.056" y="1.194"/> + <PolyStepSegment x="1.057" y="1.198"/> + <PolyStepSegment x="1.059" y="1.201"/> + <PolyStepSegment x="1.062" y="1.205"/> + <PolyStepSegment x="1.065" y="1.208"/> + <PolyStepSegment x="1.069" y="1.210"/> + <PolyStepSegment x="1.072" y="1.211"/> + <PolyStepSegment x="1.076" y="1.211"/> + <PolyStepSegment x="1.079" y="1.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.035" y="1.210"/> + <PolyStepSegment x="1.057" y="1.232"/> + <PolyStepSegment x="1.056" y="1.224"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.038" y="1.207"/> + <PolyStepSegment x="1.032" y="1.213"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.027" y="1.236"/> + <PolyStepSegment x="1.028" y="1.241"/> + <PolyStepSegment x="1.028" y="1.244"/> + <PolyStepSegment x="1.026" y="1.247"/> + <PolyStepSegment x="1.024" y="1.248"/> + <PolyStepSegment x="1.021" y="1.248"/> + <PolyStepSegment x="1.017" y="1.247"/> + <PolyStepSegment x="1.015" y="1.244"/> + <PolyStepSegment x="1.013" y="1.242"/> + <PolyStepSegment x="1.012" y="1.238"/> + <PolyStepSegment x="1.011" y="1.235"/> + <PolyStepSegment x="1.013" y="1.232"/> + <PolyStepSegment x="1.015" y="1.231"/> + <PolyStepSegment x="1.020" y="1.231"/> + <PolyStepSegment x="1.024" y="1.233"/> + <PolyStepSegment x="1.028" y="1.237"/> + <PolyStepSegment x="1.032" y="1.242"/> + <PolyStepSegment x="1.034" y="1.246"/> + <PolyStepSegment x="1.035" y="1.249"/> + <PolyStepSegment x="1.035" y="1.253"/> + <PolyStepSegment x="1.033" y="1.255"/> + <PolyStepSegment x="1.031" y="1.257"/> + <PolyStepSegment x="1.028" y="1.256"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U14"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.184" y="1.215"/> + <PolyStepSegment x="1.188" y="1.243"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.197" y="1.240"/> + <PolyStepSegment x="1.175" y="1.218"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.172" y="1.227"/> + <PolyStepSegment x="1.200" y="1.232"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.194" y="1.221"/> + <PolyStepSegment x="1.178" y="1.238"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.162" y="1.237"/> + <PolyStepSegment x="1.166" y="1.265"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.175" y="1.262"/> + <PolyStepSegment x="1.153" y="1.240"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.150" y="1.249"/> + <PolyStepSegment x="1.178" y="1.254"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.172" y="1.243"/> + <PolyStepSegment x="1.156" y="1.260"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.140" y="1.259"/> + <PolyStepSegment x="1.144" y="1.287"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.153" y="1.284"/> + <PolyStepSegment x="1.131" y="1.262"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.128" y="1.271"/> + <PolyStepSegment x="1.156" y="1.276"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.150" y="1.265"/> + <PolyStepSegment x="1.134" y="1.282"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set geometryUsage="TEXT" componentRef="U14"> + <NonstandardAttribute name="TEXT" value="***" type="STRING"/> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.134" y="1.165"/> + <PolyStepSegment x="1.138" y="1.193"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.147" y="1.190"/> + <PolyStepSegment x="1.125" y="1.168"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.122" y="1.177"/> + <PolyStepSegment x="1.150" y="1.182"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.144" y="1.171"/> + <PolyStepSegment x="1.128" y="1.188"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.112" y="1.187"/> + <PolyStepSegment x="1.116" y="1.215"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.125" y="1.212"/> + <PolyStepSegment x="1.103" y="1.190"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="1.199"/> + <PolyStepSegment x="1.128" y="1.204"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.122" y="1.193"/> + <PolyStepSegment x="1.106" y="1.210"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.090" y="1.209"/> + <PolyStepSegment x="1.094" y="1.237"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.103" y="1.234"/> + <PolyStepSegment x="1.081" y="1.212"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.078" y="1.221"/> + <PolyStepSegment x="1.106" y="1.226"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="1.100" y="1.215"/> + <PolyStepSegment x="1.084" y="1.232"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.300" y="1.150"/> + <PolyStepCurve x="3.550" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="0.650" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.050" y="0.900" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <PolyStepCurve x="3.300" y="1.150" centerX="3.300000" centerY="0.900000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.978" y="1.930"/> + <PolyStepSegment x="3.328" y="2.213"/> + <PolyStepCurve x="3.335" y="2.283" centerX="3.296227" centerY="2.251527" clockwise="false"/> + <PolyStepCurve x="3.265" y="2.291" centerX="3.295975" centerY="2.251785" clockwise="false"/> + <PolyStepSegment x="2.915" y="2.008"/> + <PolyStepCurve x="2.908" y="1.937" centerX="2.946444" centerY="1.969055" clockwise="false"/> + <PolyStepCurve x="2.978" y="1.930" centerX="2.946527" centerY="1.968770" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.853" y="2.847"/> + <PolyStepSegment x="3.171" y="2.529"/> + <PolyStepCurve x="3.241" y="2.529" centerX="3.206000" centerY="2.564666" clockwise="false"/> + <PolyStepCurve x="3.241" y="2.600" centerX="3.205974" centerY="2.564500" clockwise="false"/> + <PolyStepSegment x="2.923" y="2.918"/> + <PolyStepCurve x="2.853" y="2.918" centerX="2.888000" centerY="2.882659" clockwise="false"/> + <PolyStepCurve x="2.853" y="2.847" centerX="2.887983" centerY="2.882500" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.900" y="2.350"/> + <PolyStepSegment x="3.350" y="2.350"/> + <PolyStepCurve x="3.400" y="2.400" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="3.350" y="2.450" centerX="3.350000" centerY="2.400000" clockwise="false"/> + <PolyStepSegment x="2.900" y="2.450"/> + <PolyStepCurve x="2.850" y="2.400" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <PolyStepCurve x="2.900" y="2.350" centerX="2.900000" centerY="2.400000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="2.900"/> + <PolyStepSegment x="3.450" y="2.450"/> + <PolyStepCurve x="3.500" y="2.400" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepCurve x="3.550" y="2.450" centerX="3.500000" centerY="2.450000" clockwise="false"/> + <PolyStepSegment x="3.550" y="2.900"/> + <PolyStepCurve x="3.500" y="2.950" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <PolyStepCurve x="3.450" y="2.900" centerX="3.500000" centerY="2.900000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="0.0" y="-0.250"/> + <PolyStepSegment x="3.250" y="-0.250"/> + <PolyStepSegment x="3.500" y="0.0"/> + <PolyStepSegment x="3.500" y="0.300"/> + <PolyStepCurve x="3.535" y="0.386" centerX="3.621307" centerY="0.300753" clockwise="true"/> + <PolyStepSegment x="3.550" y="0.400"/> + <PolyStepSegment x="3.614" y="0.464"/> + <PolyStepCurve x="3.650" y="0.550" centerX="3.528979" centerY="0.550125" clockwise="false"/> + <PolyStepSegment x="3.650" y="1.300"/> + <PolyStepSegment x="3.400" y="1.500"/> + <PolyStepSegment x="3.400" y="1.700"/> + <PolyStepCurve x="3.450" y="1.700" centerX="3.425000" centerY="1.700000" clockwise="true"/> + <PolyStepSegment x="3.450" y="1.550"/> + <PolyStepSegment x="3.500" y="1.500"/> + <PolyStepSegment x="3.600" y="1.500"/> + <PolyStepSegment x="3.650" y="1.550"/> + <PolyStepSegment x="3.650" y="2.150"/> + <PolyStepCurve x="3.600" y="2.200" centerX="3.600000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.500" y="2.200"/> + <PolyStepCurve x="3.450" y="2.150" centerX="3.500000" centerY="2.150000" clockwise="false"/> + <PolyStepSegment x="3.450" y="1.900"/> + <PolyStepCurve x="3.400" y="1.900" centerX="3.425000" centerY="1.900000" clockwise="true"/> + <PolyStepSegment x="3.400" y="2.250"/> + <PolyStepSegment x="3.450" y="2.300"/> + <PolyStepSegment x="3.600" y="2.300"/> + <PolyStepSegment x="3.650" y="2.350"/> + <PolyStepSegment x="3.650" y="3.800"/> + <PolyStepCurve x="3.450" y="4.000" centerX="3.450000" centerY="3.800000" clockwise="false"/> + <PolyStepCurve x="2.450" y="4.100" centerX="3.450000" centerY="9.050000" clockwise="true"/> + <PolyStepSegment x="-0.250" y="4.100"/> + <PolyStepSegment x="-0.250" y="0.0"/> + <PolyStepCurve x="0.0" y="-0.250" centerX="0.0" centerY="0.0" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.429" y="3.017"/> + <PolyStepSegment x="3.366" y="3.095"/> + <PolyStepSegment x="3.095" y="2.873"/> + <PolyStepSegment x="3.158" y="2.796"/> + <PolyStepSegment x="3.429" y="3.017"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.350" y="3.300"/> + <PolyStepSegment x="3.400" y="3.350"/> + <PolyStepSegment x="3.150" y="3.600"/> + <PolyStepSegment x="3.100" y="3.550"/> + <PolyStepSegment x="3.350" y="3.300"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.400" y="3.150"/> + <PolyStepSegment x="3.400" y="3.250"/> + <PolyStepSegment x="3.050" y="3.250"/> + <PolyStepSegment x="3.050" y="3.150"/> + <PolyStepSegment x="3.400" y="3.150"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="3.450" y="3.600"/> + <PolyStepSegment x="3.550" y="3.600"/> + <PolyStepSegment x="3.550" y="3.150"/> + <PolyStepSegment x="3.450" y="3.150"/> + <PolyStepSegment x="3.450" y="3.600"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.150" y="0.050"/> + <PolyStepCurve x="2.250" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <PolyStepCurve x="2.150" y="0.050" centerX="2.200000" centerY="0.050000" clockwise="true"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + <Set> + <Features> + <Location x="0.0" y="0.0"/> + <Polyline> + <PolyBegin x="2.050" y="0.100"/> + <PolyStepCurve x="2.050" y="0.0" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <PolyStepCurve x="2.050" y="0.100" centerX="2.050000" centerY="0.050000" clockwise="false"/> + <LineDescRef id="ROUND_4"/> + </Polyline> + </Features> + </Set> + </LayerFeature> + </Step> + </CadData> + </Ecad> + </IPC-2581> diff --git a/qa/tools/pns/CMakeLists.txt b/qa/tools/pns/CMakeLists.txt index 835a6d1b17..b17ee5e7c3 100644 --- a/qa/tools/pns/CMakeLists.txt +++ b/qa/tools/pns/CMakeLists.txt @@ -51,6 +51,7 @@ set( COMMON_SRCS ../../../pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp ../../../pcbnew/drc/drc_engine.cpp ../../../pcbnew/drc/drc_item.cpp + ../../../pcbnew/board_stackup_manager/stackup_predefined_prms.cpp pns_log_file.cpp pns_log_player.cpp pns_test_debug_decorator.cpp @@ -65,7 +66,7 @@ add_executable( pns_debug_tool ../../qa_utils/test_app_main.cpp ../../qa_utils/utility_program.cpp ../../qa_utils/mocks.cpp - + playground.cpp pns_debug_tool_main.cpp ) diff --git a/resources/bitmaps_png/CMakeLists.txt b/resources/bitmaps_png/CMakeLists.txt index 104937d769..9affb418e9 100644 --- a/resources/bitmaps_png/CMakeLists.txt +++ b/resources/bitmaps_png/CMakeLists.txt @@ -429,6 +429,7 @@ set( BMAPS_MID post_gencad post_gerber post_rpt + post_xml preference print_button project diff --git a/resources/bitmaps_png/png/post_xml_16.png b/resources/bitmaps_png/png/post_xml_16.png new file mode 100644 index 0000000000..657ef27cf7 Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_16.png differ diff --git a/resources/bitmaps_png/png/post_xml_24.png b/resources/bitmaps_png/png/post_xml_24.png new file mode 100644 index 0000000000..785b893613 Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_24.png differ diff --git a/resources/bitmaps_png/png/post_xml_32.png b/resources/bitmaps_png/png/post_xml_32.png new file mode 100644 index 0000000000..fb22cd2e42 Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_32.png differ diff --git a/resources/bitmaps_png/png/post_xml_48.png b/resources/bitmaps_png/png/post_xml_48.png new file mode 100644 index 0000000000..ffcd94f04e Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_48.png differ diff --git a/resources/bitmaps_png/png/post_xml_64.png b/resources/bitmaps_png/png/post_xml_64.png new file mode 100644 index 0000000000..c7306e6bb7 Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_64.png differ diff --git a/resources/bitmaps_png/png/post_xml_dark_16.png b/resources/bitmaps_png/png/post_xml_dark_16.png new file mode 100644 index 0000000000..0adb762c16 Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_dark_16.png differ diff --git a/resources/bitmaps_png/png/post_xml_dark_24.png b/resources/bitmaps_png/png/post_xml_dark_24.png new file mode 100644 index 0000000000..08371eefcb Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_dark_24.png differ diff --git a/resources/bitmaps_png/png/post_xml_dark_32.png b/resources/bitmaps_png/png/post_xml_dark_32.png new file mode 100644 index 0000000000..5d19d1815c Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_dark_32.png differ diff --git a/resources/bitmaps_png/png/post_xml_dark_48.png b/resources/bitmaps_png/png/post_xml_dark_48.png new file mode 100644 index 0000000000..ffa35c98cc Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_dark_48.png differ diff --git a/resources/bitmaps_png/png/post_xml_dark_64.png b/resources/bitmaps_png/png/post_xml_dark_64.png new file mode 100644 index 0000000000..c62a8f59ca Binary files /dev/null and b/resources/bitmaps_png/png/post_xml_dark_64.png differ diff --git a/resources/bitmaps_png/sources/dark/post_xml.svg b/resources/bitmaps_png/sources/dark/post_xml.svg new file mode 100644 index 0000000000..1e1f1a6c96 --- /dev/null +++ b/resources/bitmaps_png/sources/dark/post_xml.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="post_xml.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview159354" + showgrid="true" + inkscape:zoom="30.291667" + inkscape:cx="21.392022" + inkscape:cy="16.225584" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Слой_1" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid6877" + empspacing="2" + spacingx="0.5" + spacingy="0.5" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>post_xml</dc:title> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159331"> + <style + id="style159329">.cls-1{fill:#b9b9b9;}.cls-2{fill:#1a81c4;}.cls-3{fill:#fff;}.cls-4{fill:#bf2641;}.cls-5{fill:none;stroke:#f5f5f5;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style> + </defs> + <title + id="title159333">post_xml</title> + <rect + class="cls-1" + x="3.0489998" + y="0" + width="17.937201" + height="17.983299" + rx="2.9934001" + id="rect159335" + style="fill:#8f8f8f;fill-opacity:1" /> + <rect + class="cls-2" + x="0.00010001659" + y="2.9995" + width="18.7099" + height="9.2299004" + id="rect159337" + style="fill:#42b8eb;fill-opacity:1" /> + <g + aria-label="xml" + id="text5854" + style="font-size:8.52777px;line-height:1.25;font-family:'Tiresias LPfont';-inkscape-font-specification:'Tiresias LPfont';stroke-width:0.700254"> + <path + d="M 3.8969283,7.587901 2.6647828,5.3280419 H 3.7175654 L 4.4974043,6.880096 5.2850417,5.3280419 H 6.3300259 L 5.0900819,7.5964287 6.3846146,9.958621 H 5.3396304 L 4.4896059,8.3042336 3.6473799,9.958621 H 2.6023957 Z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff;stroke-width:0.669638" + id="path6460" /> + <path + d="m 10.980765,5.2427642 c 0.391193,0 0.545706,0.1364443 0.743658,0.409333 0.197954,0.2672034 0.29693,0.6907493 0.29693,1.2706377 V 9.958621 H 11.037525 V 7.1529847 c 0,-0.6992771 -0.07181,-0.9380351 -0.448863,-0.9380351 -0.230177,0 -0.352273,0.081193 -0.455934,0.2643412 C 10.019612,6.7237536 9.998069,7.0790774 9.998069,7.5452621 V 9.958621 H 9.0609388 V 7.1444569 C 9.0609388,6.450865 8.8838823,6.1689327 8.5070321,6.1565914 8.277701,6.1490811 8.1739136,6.3182798 8.1128246,6.481079 8.0091349,6.7539677 7.9864691,7.1842532 7.9864691,7.6902342 V 9.958621 H 6.9792978 V 5.3280419 h 0.6645567 l 0.03725,0.6139994 h 0.049488 C 7.8295695,5.7032638 8.0468304,5.5270232 8.2306439,5.4133196 8.4144575,5.299616 8.6147672,5.2427642 8.8315729,5.2427642 c 0.5184395,0 0.8624963,0.235935 1.0321705,0.7078049 h 0.063628 C 10.035774,5.7117916 10.181883,5.535551 10.365696,5.4218474 10.554223,5.3024586 10.759246,5.2427642 10.980765,5.2427642 Z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff;stroke-width:0.637588" + id="path6462" + sodipodi:nodetypes="scsccsscsccsscsccccccsscccs" /> + <path + d="M 14.018376,9.958621 H 12.986515 V 3.4775158 h 1.031861 z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff" + id="path6464" /> + </g> + <path + class="cls-3" + d="M 2.07,9.9365 H 0.9965 V 8.9 H 2.07 Z" + id="path159339" /> + <ellipse + class="cls-4" + cx="17.0075" + cy="16.996099" + rx="6.9924002" + ry="7.0039001" + id="ellipse159347" + style="fill:#f2647e;fill-opacity:1" /> + <line + class="cls-5" + x1="17.1112" + y1="13.6254" + x2="17.1112" + y2="20.629299" + id="line159349" /> + <polyline + class="cls-5" + points="15.362 17.16 18.111 14.406 20.861 17.16" + id="polyline159351" + transform="translate(-1,-1)" /> +</svg> diff --git a/resources/bitmaps_png/sources/light/post_rpt.svg b/resources/bitmaps_png/sources/light/post_rpt.svg index 1b63ac5434..a51e70dd0a 100644 --- a/resources/bitmaps_png/sources/light/post_rpt.svg +++ b/resources/bitmaps_png/sources/light/post_rpt.svg @@ -1,40 +1,137 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="post_rpt.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="post_rpt.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"> - <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1488" inkscape:window-height="975" id="namedview159354" showgrid="false" inkscape:zoom="30.291667" inkscape:cx="3.0701513" inkscape:cy="12" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:current-layer="Слой_1" /> - <metadata id="metadata43"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - <cc:license rdf:resource="http://creativecommons.org/licenses/by/4.0/" /> - </cc:Work> - <cc:License rdf:about="http://creativecommons.org/licenses/by/4.0/"> - <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> - <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> - <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - </cc:License> - </rdf:RDF> - </metadata> - <defs id="defs159331"> - <style id="style159329">.cls-1{fill:#b9b9b9;}.cls-2{fill:#1a81c4;}.cls-3{fill:#fff;}.cls-4{fill:#bf2641;}.cls-5{fill:none;stroke:#f5f5f5;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style> - </defs> - <title id="title159333">post_rpt</title> - <rect class="cls-1" x="3.0489998" y="0" width="17.937201" height="17.983299" rx="2.9934001" id="rect159335" /> - <rect class="cls-2" x="0.00010001659" y="2.9995" width="18.7099" height="9.2299004" id="rect159337" /> - <path class="cls-3" d="M 2.07,9.9365 H 0.9965 V 8.9 H 2.07 Z" id="path159339" /> - <path class="cls-3" d="M 5.8119,6.1 5.351,6.082 A 0.96,0.96 0 0 0 4.8246,6.2158 0.8793,0.8793 0 0 0 4.4994,6.5928 V 9.9365 H 3.4213 V 5.126 H 4.4057 L 4.4769,5.8242 A 1.5456,1.5456 0 0 1 4.9447,5.2461 1.0838,1.0838 0 0 1 5.6029,5.0371 0.9823,0.9823 0 0 1 5.7855,5.0527 1.4452,1.4452 0 0 1 5.9398,5.0908 Z" id="path159341" /> - <path class="cls-3" d="M 10.77,7.6914 A 2.7166,2.7166 0 0 1 10.2778,9.3848 1.625,1.625 0 0 1 8.9078,10.0303 1.68,1.68 0 0 1 8.1851,9.8828 1.4832,1.4832 0 0 1 7.6441,9.4521 v 2.334 H 6.5658 V 5.126 H 7.475 L 7.5814,5.7305 A 1.6071,1.6071 0 0 1 8.1381,5.2148 1.5582,1.5582 0 0 1 8.8939,5.0371 1.5937,1.5937 0 0 1 10.2758,5.7422 3.1693,3.1693 0 0 1 10.77,7.5977 Z M 9.6968,7.5957 A 2.3439,2.3439 0 0 0 9.4194,6.3906 0.9,0.9 0 0 0 8.5923,5.9219 1.0651,1.0651 0 0 0 8.021,6.0664 1.0532,1.0532 0 0 0 7.644,6.4678 V 8.6387 A 0.9969,0.9969 0 0 0 8.021,9.0273 1.1373,1.1373 0 0 0 8.601,9.1631 0.9249,0.9249 0 0 0 9.4242,8.7568 1.8858,1.8858 0 0 0 9.6967,7.6885 Z" id="path159343" /> - <path class="cls-3" d="m 13.0492,3.957 v 1.169 h 0.86 v 0.8008 h -0.86 V 8.585 a 0.582,0.582 0 0 0 0.1279,0.4248 0.4692,0.4692 0 0 0 0.3418,0.1269 1.0134,1.0134 0 0 0 0.1729,-0.0156 0.9933,0.9933 0 0 0 0.1592,-0.043 l 0.1162,0.792 A 1.2639,1.2639 0 0 1 13.639,9.9873 1.8184,1.8184 0 0 1 13.2435,10.0303 1.2309,1.2309 0 0 1 12.3129,9.6803 1.53,1.53 0 0 1 11.976,8.585 V 5.9268 H 11.2435 V 5.126 H 11.976 V 3.957 Z" id="path159345" /> - <ellipse class="cls-4" cx="17.0075" cy="16.996099" rx="6.9924002" ry="7.0039001" id="ellipse159347" /> - <line class="cls-5" x1="17.1112" y1="13.6254" x2="17.1112" y2="20.629299" id="line159349" /> - <polyline class="cls-5" points="15.362 17.16 18.111 14.406 20.861 17.16" id="polyline159351" transform="translate(-1,-1)" /> + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview159354" + showgrid="true" + inkscape:zoom="85.677773" + inkscape:cx="12.021788" + inkscape:cy="8.7829081" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Слой_1" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid6877" + empspacing="2" + spacingx="0.5" + spacingy="0.5" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>post_xml</dc:title> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159331"> + <style + id="style159329">.cls-1{fill:#b9b9b9;}.cls-2{fill:#1a81c4;}.cls-3{fill:#fff;}.cls-4{fill:#bf2641;}.cls-5{fill:none;stroke:#f5f5f5;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style> + </defs> + <title + id="title159333">post_xml</title> + <rect + class="cls-1" + x="3.0489998" + y="0" + width="17.937201" + height="17.983299" + rx="2.9934001" + id="rect159335" /> + <rect + class="cls-2" + x="0.00010001659" + y="2.9995" + width="18.7099" + height="9.2299004" + id="rect159337" /> + <g + aria-label="xml" + id="text5854" + style="font-size:8.52777px;line-height:1.25;font-family:'Tiresias LPfont';-inkscape-font-specification:'Tiresias LPfont';stroke-width:0.700254"> + <path + d="M 4.0180055,7.587901 2.6706178,5.3280419 h 1.151249 L 4.6746438,6.880096 5.5359486,5.3280419 H 6.6786698 L 5.3227543,7.5964287 6.7383641,9.958621 H 5.595643 L 4.666116,8.3042336 3.7451169,9.958621 H 2.6023957 Z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff" + id="path6460" /> + <path + d="m 12.27288,5.2427642 q 0.707805,0 1.065971,0.409333 0.358166,0.4008051 0.358166,1.2706377 V 9.958621 h -1.03186 V 7.1529847 q 0,-1.0489157 -0.682221,-1.0489157 -0.486083,0 -0.69075,0.3752218 Q 11.08752,6.845985 11.08752,7.5452621 V 9.958621 H 10.055659 V 7.1444569 q 0,-1.0403879 -0.6822211,-1.0403879 -0.520194,0 -0.7078049,0.4178607 -0.187611,0.409333 -0.187611,1.1683045 V 9.958621 H 7.4461618 V 5.3280419 h 0.8016104 l 0.1364443,0.6139994 h 0.059694 Q 8.6229941,5.583875 8.9555771,5.4133196 9.2881602,5.2427642 9.6804376,5.2427642 q 0.9380544,0 1.2450544,0.7078049 h 0.07675 q 0.196139,-0.3581663 0.528722,-0.5287217 0.34111,-0.1790832 0.741916,-0.1790832 z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff" + id="path6462" /> + <path + d="M 15.948344,9.958621 H 14.916483 V 3.4775158 h 1.031861 z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff" + id="path6464" /> + </g> + <path + class="cls-3" + d="M 2.07,9.9365 H 0.9965 V 8.9 H 2.07 Z" + id="path159339" /> + <ellipse + class="cls-4" + cx="17.0075" + cy="16.996099" + rx="6.9924002" + ry="7.0039001" + id="ellipse159347" /> + <line + class="cls-5" + x1="17.1112" + y1="13.6254" + x2="17.1112" + y2="20.629299" + id="line159349" /> + <polyline + class="cls-5" + points="15.362 17.16 18.111 14.406 20.861 17.16" + id="polyline159351" + transform="translate(-1,-1)" /> </svg> diff --git a/resources/bitmaps_png/sources/light/post_xml.svg b/resources/bitmaps_png/sources/light/post_xml.svg new file mode 100644 index 0000000000..f027a24d06 --- /dev/null +++ b/resources/bitmaps_png/sources/light/post_xml.svg @@ -0,0 +1,138 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="post_xml.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview159354" + showgrid="true" + inkscape:zoom="30.291667" + inkscape:cx="21.392022" + inkscape:cy="16.225584" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Слой_1" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid6877" + empspacing="2" + spacingx="0.5" + spacingy="0.5" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>post_xml</dc:title> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159331"> + <style + id="style159329">.cls-1{fill:#b9b9b9;}.cls-2{fill:#1a81c4;}.cls-3{fill:#fff;}.cls-4{fill:#bf2641;}.cls-5{fill:none;stroke:#f5f5f5;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style> + </defs> + <title + id="title159333">post_xml</title> + <rect + class="cls-1" + x="3.0489998" + y="0" + width="17.937201" + height="17.983299" + rx="2.9934001" + id="rect159335" /> + <rect + class="cls-2" + x="0.00010001659" + y="2.9995" + width="18.7099" + height="9.2299004" + id="rect159337" /> + <g + aria-label="xml" + id="text5854" + style="font-size:8.52777px;line-height:1.25;font-family:'Tiresias LPfont';-inkscape-font-specification:'Tiresias LPfont';stroke-width:0.700254"> + <path + d="M 3.8969283,7.587901 2.6647828,5.3280419 H 3.7175654 L 4.4974043,6.880096 5.2850417,5.3280419 H 6.3300259 L 5.0900819,7.5964287 6.3846146,9.958621 H 5.3396304 L 4.4896059,8.3042336 3.6473799,9.958621 H 2.6023957 Z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff;stroke-width:0.669638" + id="path6460" /> + <path + d="m 10.980765,5.2427642 c 0.391193,0 0.545706,0.1364443 0.743658,0.409333 0.197954,0.2672034 0.29693,0.6907493 0.29693,1.2706377 V 9.958621 H 11.037525 V 7.1529847 c 0,-0.6992771 -0.07181,-0.9380351 -0.448863,-0.9380351 -0.230177,0 -0.352273,0.081193 -0.455934,0.2643412 C 10.019612,6.7237536 9.998069,7.0790774 9.998069,7.5452621 V 9.958621 H 9.0609388 V 7.1444569 C 9.0609388,6.450865 8.8838823,6.1689327 8.5070321,6.1565914 8.277701,6.1490811 8.1739136,6.3182798 8.1128246,6.481079 8.0091349,6.7539677 7.9864691,7.1842532 7.9864691,7.6902342 V 9.958621 H 6.9792978 V 5.3280419 h 0.6645567 l 0.03725,0.6139994 h 0.049488 C 7.8295695,5.7032638 8.0468304,5.5270232 8.2306439,5.4133196 8.4144575,5.299616 8.6147672,5.2427642 8.8315729,5.2427642 c 0.5184395,0 0.8624963,0.235935 1.0321705,0.7078049 h 0.063628 C 10.035774,5.7117916 10.181883,5.535551 10.365696,5.4218474 10.554223,5.3024586 10.759246,5.2427642 10.980765,5.2427642 Z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff;stroke-width:0.637588" + id="path6462" + sodipodi:nodetypes="scsccsscsccsscsccccccsscccs" /> + <path + d="M 14.018376,9.958621 H 12.986515 V 3.4775158 h 1.031861 z" + style="font-weight:600;font-stretch:semi-condensed;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold Semi-Condensed';fill:#ffffff" + id="path6464" /> + </g> + <path + class="cls-3" + d="M 2.07,9.9365 H 0.9965 V 8.9 H 2.07 Z" + id="path159339" /> + <ellipse + class="cls-4" + cx="17.0075" + cy="16.996099" + rx="6.9924002" + ry="7.0039001" + id="ellipse159347" /> + <line + class="cls-5" + x1="17.1112" + y1="13.6254" + x2="17.1112" + y2="20.629299" + id="line159349" /> + <polyline + class="cls-5" + points="15.362 17.16 18.111 14.406 20.861 17.16" + id="polyline159351" + transform="translate(-1,-1)" /> +</svg>