Mailing list archives : pcb-rnd

ID:2624
From:Gabriel Paubert <pa...@iram.es>
Date:Wed, 30 Jan 2019 10:10:06 +0100
Subject:Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug:
in-reply-to:2623 from ge...@igor2.repo.hu
replies: 2625 from ge...@igor2.repo.hu , 2628 from ge...@igor2.repo.hu , 2629 from ge...@igor2.repo.hu , 2630 from ge...@igor2.repo.hu , 2631 from ge...@igor2.repo.hu
 
--ujun4vqr25kgqxwg
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
 
On Tue, Jan 29, 2019 at 05:07:14AM +0100, gedau@igor2.repo.hu wrote:
> 
> 
> On Mon, 28 Jan 2019, Gabriel Paubert wrote:
> 
> >On the board I'm working right now, I also sometimes have performance
> >issues when moving things around or performing cut and paste actions.
> >But I've not really found a way of producing a testcase, it seems to be
> >due to the size and complexity of the board (7 to 8MB .lht file).
> 
> The file size matters only for the loader/saver, but the low level lihata 
> loader and the high level parser (the io_lihata plugin) take up a rather 
> small part in even the load time. And once your data is in memor, file 
> formats do not matter any more.
 
Indeed, but I suspect that the size in memory is related to the file
size.
 
> 
> The usual suspect for performance issues:
> 
> 1. --debug; please compare the --debug to the non-debug build. The --debug 
> build does a lot of extra runtime checks, which are sometimes slower than 
> the original operation you are perofrming. Plus --debug turns off compiler 
> optimization
 
I never use debug builds when I work on this board (it has become so
large that the interface is slow except on my core i7 laptop).
 
> 
> 2. poly rendering - try the thin draw mode and see if it improves
> 
 
Not really (I use gtk with GL).
 
> 3. poly clipping - try removing some large polygons first, do the same 
> operations and see if it went faster
 
Significantly. I typically do a prototype layout of a subsystem outside
the outline of the bord, far from the ground planes and so on.
 
> 
> For 3, I've been working on doing some generic improvements compared to 
> the original code, see details at the bottom. We now have some 
> infrastructure that can be used to boost poly clipping at specific parts 
> of the code. After reading your mail, I've added an option for using this 
> with subcircuit buffer operations and mass selected object operations. I 
> got good speedup on 2 examples (see attached).
> 
> === test request ===
> 
> 1. preparation
> 
> First, get the latest svn version. Then pick a board and an operation. I 
> recommend using test boards first, like the ones attached, with 256 
> clearing lines within or outside of subc. If your hardware is stronger 
> than mine you may need to place multiple copies of these objects - make 
> sure clearances are always in islands (lines are not too close) and the 
> whole thing is covered with a single large poly. 
> 
 
I have hit another bug, on the subc256.lht file, removing the selected
component and undoing the operation ("s r Ctrl-z") always exits with a
segmentation fault.
 
This said, all operations with your example files are blindingly
fast on my laptop, so I have to scale up before finding problems.
(For a start, the board has two connectors with 320 contacts each,
and about three-quarters of the contacts have thermals).
 
I have attached an example file, which is a small part of the board I'm
currently designing. With the new brave mode, most operations are now 
reasonably fast. Without the brave mode, I selected P2 (bottom side), 
and simply cut (Ctrl-X) it. Well, I killed pcb-rnd after several minutes. 
In brave mode, it took maybe a couple of seconds.
 
However an undo (Ctrl-Z) took forever (once again had to kill the
process), and sometimes ended in a crash, very similar to the crash I
got with your subc256.lht file.
 
 
> 2. time the original setup
> 
> Pick one operation and try to time how fast it goes. If it's faster 
> than 4 sec, go back to 1 and increase the size of the example. It's 
> enough to just count the seconds in head, if the optimization works, 
> it gives you a factor of 3..4 of speedup, that's very easy to notice 
> even with mental timing. Repeat the timing a few times.
> 
 
On my files, I've got changes of at least 2 orders of magnitude.
 
> 3. enable the optimization
> 
> Execute action brave() - you will get a popup. Tick in the poly batch 
> clipping entry. You can turn it on or off any time. Once we find the 
> optimizations both efficient and safe, we will remove the brave setting 
> and make it default (but this sort of things wouldn't happen a few weeks 
> before the release, like we are now)
> 
> 4. repeat the test
> 
> Do the same test on the same board as in step 2, with the same mental 
> timing. Preferrably on the same zoom level. The only diff shall be the 
> tick in the brave dialog.
> 
> For me these things speeded up:
> 
> - moving the subc (subc example)
>  
> - cutting the subc to buffer (subc example)
> 
> - cutting all selected lines to buffer (lines example)
> 
> - removing all selected lines (lines example)
 
Indeed, only the undo does not seem to be affected.
 
 
> 
> How you can help:
> 
> If you see performance problems and you have large polygons, please try to 
> narrow it down to a single operation on a specific board. Please try with 
> and without the batch clipping brave setting. If you see speedup, it's 
> already handled and we can't do much about it on the poly level. If 
> there's no speedup, and you are sure a lot of poly clipping is involved, 
> please try to reproduce the problem with the same operation on an example 
> board similar to the attached ones. Then mail me the example and the 
> recipe and I will check if the optimization works on that operation.
> 
> Once we figure where we need this optimization it's rather easy to install 
> and with the brave setting it's easy to test the effect. However, we 
> really need to figure where we need it: the nature of the optimization is 
> that we can't just put One Big "do_it_fast_please()" call in main() and 
> lean back, but we need to do the optimization operation by operation, see 
> below.
> 
> 
> 
> === boring background (code stuff) ===
> 
> Polygon clipping is very expensive. We don't have arc in poly contour, so 
> any circular cutout (2 of them per line in our examples) is approximated 
> with a bunch of lines. This means every tiny line in the example really 
> means more than 40 new polygon edges. For our 256 line objects that means 
> the polygon has more than 10k(!) edges.
> 
 
I suspect I'm trying to do things with well more than 10k edges, perhaps
100k, perhaps 1e6. This was one of the reasons for which, in a previous
board with pcb, I implemented rectangular clipping of rectangular pads.
The other reason was that it was more consistent with soldermask, which
was rectangular, and in the end a slightly misaligned solder mask could
result in exposed copper, leading to shorts.
 
 
> The poly clipping code has a lot of clever optimizations, but if you need 
> to make a new cutout or remove an old cutout, this gets expensive. In any 
> such operation dealing with a single contour line we need to check a lot 
> other contour lines whehther they interfere. The code uses rtrees and 
> everyhting, but this is still noticable effort if you have 10k edges to 
> deal with.
> 
> Now if you remove 256 line objects at once, it's really removing 256 line 
> objects one by one. Normally for each of them the whole poly is 
> recalculated.
> 
> My predecessors had a plan to auto-batch operations on the polygon 
> clipping code level, low level: the code tries to batch some operations 
> and do them at once when enough of them accumulated. This reduces the 
> number of clippings some. But on that level the code has no idea about the 
> big picture, what we are really doing and when that really ends.
> 
> Optimally we would do the clipping only once, when we already removed all 
> 256 lines. But for that we really need to know when mass operations starts 
> and end, and that's never the case within the poly code.
> 
> When I figured this a year ago, I implemented a poly clip inhibit 
> mechanism. Before doing a batch operation, the high level code tells 
> pcb-rnd core that the current pcb_data_t should be frozen for poly 
> clipping - no operation should do any actual calculation, just mark the 
> polygon dirty. Once the freeze is removed, all dirty polygons are 
> reclipped at once. This is called poly clip inhibit.
> 
> High level code, such as subc operation or "do this on all selected 
> objects" function know exactly when they start and when they finish. With 
> the brave setting they install and remove an inhibit on start and exit.  
> It's much more efficient than trying to guess from the low level poly 
> clipping code. The inhibit mechanism is recursive: nested operations can 
> do their own inhibits and only the outermost operation's inhibit-removal 
> will cause actual poly clipping. So it doesn't break when you have a lot 
> of subcircuits selected and do an operation on them.
> 
> Best regards,
> 
> Igor2
> 
 
	Regards,
	Gabriel
 
 
--ujun4vqr25kgqxwg
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="slow-ui.lht"
Content-Transfer-Encoding: quoted-printable
 
ha:pcb-rnd-board-v6 {
 
 ha:attributes {
   {PCB::grid::unit}=3Dmm
 }
 
 li:styles {
   ha:Signal {
    diameter =3D 0.5mm
    text_scale =3D 0
    text_thick =3D 0.0
    thickness =3D 0.2mm
    hole =3D 0.2mm
    ha:attributes {
     <new>=3Dn/a
    }
    clearance =3D 0.2mm
   }
   ha:Power {
    diameter =3D 2.2mm
    text_scale =3D 0
    text_thick =3D 0.0
    thickness =3D 20.0mil
    hole =3D 1.0mm
    clearance =3D 20.0mil
   }
   ha:Fat {
    diameter =3D 137.8mil
    text_scale =3D 0
    text_thick =3D 0.0
    thickness =3D 80.0mil
    hole =3D 47.24mil
    clearance =3D 25.0mil
   }
   ha:Sig-tight {
    diameter =3D 16.0mil
    text_scale =3D 0
    text_thick =3D 0.0
    thickness =3D 5.0mil
    hole =3D 8.0mil
    clearance =3D 5.0mil
   }
 }
 
 ha:meta {
   ha:size {
    thermal_scale =3D 0.500000
    x =3D 210.0mm
    y =3D 110.0mm
   }
   board_name =3D quadmixer
   ha:grid {
    spacing =3D 0.25mm
    offs_x =3D 0.0
    offs_y =3D 0.0
   }
 }
 
 ha:data {
  li:padstack_prototypes {
 
   ha:ps_proto_v6.0 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D2.0mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D2.0mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D2.0mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.1 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
     }
     name =3D lpam
   }
 
   ha:ps_proto_v6.2 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.225mm; y1=3D0.0; x2=3D0.225mm; y2=3D0.0; thick=
ness=3D0.25mm; square=3D0;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.225mm; y1=3D0.0; x2=3D0.225mm; y2=3D0.0; thick=
ness=3D0.2mm; square=3D0;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.225mm; y1=3D0.0; x2=3D0.225mm; y2=3D0.0; thick=
ness=3D0.4mm; square=3D0;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.3 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.275mm; y2=3D0.0; thick=
ness=3D0.25mm; square=3D0;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.275mm; y2=3D0.0; thick=
ness=3D0.2mm; square=3D0;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.275mm; y2=3D0.0; thick=
ness=3D0.4mm; square=3D0;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.4 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.175mm; y2=3D0.0; thick=
ness=3D0.25mm; square=3D0;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.175mm; y2=3D0.0; thick=
ness=3D0.2mm; square=3D0;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D-0.175mm; y1=3D0.0; x2=3D0.175mm; y2=3D0.0; thick=
ness=3D0.4mm; square=3D0;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.5 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.25mm =20
          -0.3mm =20
          0.25mm =20
          -0.3mm =20
          0.25mm =20
          0.3mm =20
          -0.25mm =20
          0.3mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.25mm =20
          0.2mm =20
          -0.25mm =20
          0.2mm =20
          0.25mm =20
          -0.2mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.325mm =20
          -0.375mm =20
          0.325mm =20
          -0.375mm =20
          0.325mm =20
          0.375mm =20
          -0.325mm =20
          0.375mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.6 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.225mm =20
          -1.0mm =20
          0.225mm =20
          -1.0mm =20
          0.225mm =20
          1.0mm =20
          -0.225mm =20
          1.0mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.2mm =20
          -0.975mm =20
          0.2mm =20
          -0.975mm =20
          0.2mm =20
          0.975mm =20
          -0.2mm =20
          0.975mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.3mm =20
          -1.075mm =20
          0.3mm =20
          -1.075mm =20
          0.3mm =20
          1.075mm =20
          -0.3mm =20
          1.075mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.7 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.25mm =20
          -0.25mm =20
          0.25mm =20
          -0.25mm =20
          0.25mm =20
          0.25mm =20
          -0.25mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.2mm =20
          -0.2mm =20
          0.2mm =20
          -0.2mm =20
          0.2mm =20
          0.2mm =20
          -0.2mm =20
          0.2mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.325mm =20
          -0.325mm =20
          0.325mm =20
          -0.325mm =20
          0.325mm =20
          0.325mm =20
          -0.325mm =20
          0.325mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.8 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.3mm =20
          -0.12mm =20
          0.3mm =20
          -0.12mm =20
          0.3mm =20
          0.12mm =20
          -0.3mm =20
          0.12mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.275mm =20
          -0.095mm =20
          0.275mm =20
          -0.095mm =20
          0.275mm =20
          0.095mm =20
          -0.275mm =20
          0.095mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.375mm =20
          -0.195mm =20
          0.375mm =20
          -0.195mm =20
          0.375mm =20
          0.195mm =20
          -0.375mm =20
          0.195mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.9 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.3mm
         li:ps_poly {
          -0.725mm =20
          -0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.3mm
         li:ps_poly {
          -0.8mm =20
          -0.8mm =20
          0.8mm =20
          -0.8mm =20
          0.8mm =20
          0.8mm =20
          -0.8mm =20
          0.8mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.10 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.017766mm; y=3D-0.017767mm; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D5.0mil
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.3mm
         li:ps_poly {
          -0.332234mm =20
          -0.217767mm =20
          0.217766mm =20
          -0.217767mm =20
          0.217766mm =20
          0.332233mm =20
          -0.332234mm =20
          0.332233mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.11 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.3mm
         li:ps_poly {
          -0.35mm =20
          -0.2mm =20
          0.2mm =20
          -0.2mm =20
          0.2mm =20
          0.35mm =20
          -0.35mm =20
          0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.12 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.225mm
         li:ps_poly {
          -0.725mm =20
          -0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.13 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.225mm
         li:ps_poly {
          -0.725mm =20
          -0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
          0.725mm =20
          -0.725mm =20
          0.725mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.225mm
         li:ps_poly {
          -0.8mm =20
          -0.8mm =20
          0.8mm =20
          -0.8mm =20
          0.8mm =20
          0.8mm =20
          -0.8mm =20
          0.8mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.15mm
       }
     }
   }
 
   ha:ps_proto_v6.14 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.52mm =20
          -0.9mm =20
          0.52mm =20
          -0.9mm =20
          0.52mm =20
          0.9mm =20
          -0.52mm =20
          0.9mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.47mm =20
          -0.85mm =20
          0.47mm =20
          -0.85mm =20
          0.47mm =20
          0.85mm =20
          -0.47mm =20
          0.85mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.595mm =20
          -0.975mm =20
          0.595mm =20
          -0.975mm =20
          0.595mm =20
          0.975mm =20
          -0.595mm =20
          0.975mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.15 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.15mm
       }
     }
   }
 
   ha:ps_proto_v6.16 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.305mm =20
          -0.445mm =20
          0.305mm =20
          -0.445mm =20
          0.305mm =20
          0.8mm =20
          -0.305mm =20
          0.8mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.255mm =20
          -0.395mm =20
          0.255mm =20
          -0.395mm =20
          0.255mm =20
          0.75mm =20
          -0.255mm =20
          0.75mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.38mm =20
          -0.52mm =20
          0.38mm =20
          -0.52mm =20
          0.38mm =20
          0.875mm =20
          -0.38mm =20
          0.875mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
     }
   }
 
   ha:ps_proto_v6.17 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.275mm =20
          -0.3mm =20
          0.275mm =20
          -0.3mm =20
          0.275mm =20
          0.3mm =20
          -0.275mm =20
          0.3mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.225mm =20
          -0.25mm =20
          0.225mm =20
          -0.25mm =20
          0.225mm =20
          0.25mm =20
          -0.225mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.35mm =20
          -0.375mm =20
          0.35mm =20
          -0.375mm =20
          0.35mm =20
          0.375mm =20
          -0.35mm =20
          0.375mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.18 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          0.225mm =20
          0.25mm =20
          -0.225mm =20
          0.25mm =20
          -0.225mm =20
          -0.25mm =20
          0.225mm =20
          -0.25mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.19 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.275mm =20
          0.4mm =20
          0.275mm =20
          0.4mm =20
          0.275mm =20
          -0.4mm =20
          -0.275mm =20
          -0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.225mm =20
          0.35mm =20
          0.225mm =20
          0.35mm =20
          0.225mm =20
          -0.35mm =20
          -0.225mm =20
          -0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.35mm =20
          0.475mm =20
          0.35mm =20
          0.475mm =20
          0.35mm =20
          -0.475mm =20
          -0.35mm =20
          -0.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.20 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.15mm =20
          -0.115mm =20
          0.15mm =20
          -0.115mm =20
          0.15mm =20
          0.115mm =20
          -0.15mm =20
          0.115mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.135mm =20
          -0.1mm =20
          0.135mm =20
          -0.1mm =20
          0.135mm =20
          0.1mm =20
          -0.135mm =20
          0.1mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.225mm =20
          -0.19mm =20
          0.225mm =20
          -0.19mm =20
          0.225mm =20
          0.19mm =20
          -0.225mm =20
          0.19mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.21 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -118.0mil =20
          17.0mil =20
          -93.0mil =20
          17.0mil =20
          -93.0mil =20
          -17.0mil =20
          -118.0mil =20
          -17.0mil =20
          -118.0mil =20
          -73.0mil =20
          118.0mil =20
          -73.0mil =20
          118.0mil =20
          -59.0mil =20
          93.0mil =20
          -59.0mil =20
          93.0mil =20
          -25.0mil =20
          118.0mil =20
          -25.0mil =20
          118.0mil =20
          25.0mil =20
          93.0mil =20
          25.0mil =20
          93.0mil =20
          59.0mil =20
          118.0mil =20
          59.0mil =20
          118.0mil =20
          73.0mil =20
          -118.0mil =20
          73.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -35.0mil =20
          -20.0mil =20
          9.0mil =20
          -20.0mil =20
          9.0mil =20
          20.0mil =20
          -35.0mil =20
          20.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -118.0mil =20
          -73.0mil =20
          118.0mil =20
          -73.0mil =20
          118.0mil =20
          73.0mil =20
          -118.0mil =20
          73.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.22 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D14.0mil;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D12.0mil;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.23 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -4.0mil =20
          -7.0mil =20
          4.0mil =20
          -7.0mil =20
          4.0mil =20
          7.0mil =20
          -4.0mil =20
          7.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -3.0mil =20
          -6.0mil =20
          4.0mil =20
          -6.0mil =20
          4.0mil =20
          6.0mil =20
          -3.0mil =20
          6.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.24 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -8.0mil =20
          -7.0mil =20
          0.0 =20
          -7.0mil =20
          0.0 =20
          7.0mil =20
          -8.0mil =20
          7.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -7.0mil =20
          -6.0mil =20
          0.0 =20
          -6.0mil =20
          0.0 =20
          6.0mil =20
          -7.0mil =20
          6.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.25 {
     hdia=3D0.7mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.1mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.1mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.1mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.26 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -22.0mil =20
          -20.0mil =20
          22.0mil =20
          -20.0mil =20
          22.0mil =20
          20.0mil =20
          -22.0mil =20
          20.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.27 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.369951mm =20
          -5.905mil =20
          -0.369951mm =20
          5.905mil =20
          0.369951mm =20
          5.905mil =20
          0.369951mm =20
          -5.905mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.474277mm =20
          -0.300681mm =20
          -0.474277mm =20
          0.300681mm =20
          0.474277mm =20
          0.300681mm =20
          0.474277mm =20
          -0.300681mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.369951mm =20
          -5.905mil =20
          -0.369951mm =20
          5.905mil =20
          0.369951mm =20
          5.905mil =20
          0.369951mm =20
          -5.905mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.28 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          5.905mil =20
          -0.369951mm =20
          -5.905mil =20
          -0.369951mm =20
          -5.905mil =20
          0.369951mm =20
          5.905mil =20
          0.369951mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          15.0mil =20
          -23.66mil =20
          -15.0mil =20
          -23.66mil =20
          -15.0mil =20
          23.66mil =20
          15.0mil =20
          23.66mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          5.905mil =20
          -0.369951mm =20
          -5.905mil =20
          -0.369951mm =20
          -5.905mil =20
          0.369951mm =20
          5.905mil =20
          0.369951mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.29 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          -0.499999mm =20
          -0.499999mm =20
          -0.499999mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          0.499999mm =20
          -0.499999mm =20
          -0.499999mm =20
          -0.499999mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.30 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          1.287726mm =20
          1.287501mm =20
          1.287726mm =20
          -1.287501mm =20
          -1.287726mm =20
          -1.287501mm =20
          -1.287726mm =20
          1.287501mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          1.287726mm =20
          1.287501mm =20
          1.287726mm =20
          -1.287501mm =20
          -1.287726mm =20
          -1.287501mm =20
          -1.287726mm =20
          1.287501mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.31 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.3mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.32 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.15mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.125mm =20
          0.125mm =20
          -0.125mm =20
          0.125mm =20
          0.125mm =20
          -0.175mm =20
          0.125mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.33 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.225mm =20
          -0.15mm =20
          0.125mm =20
          -0.15mm =20
          0.125mm =20
          0.15mm =20
          -0.225mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.125mm =20
          0.1mm =20
          -0.125mm =20
          0.1mm =20
          0.125mm =20
          -0.2mm =20
          0.125mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.34 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.15mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.125mm =20
          0.125mm =20
          -0.125mm =20
          0.125mm =20
          0.125mm =20
          -0.175mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.15mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.35 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.15mm =20
          0.175mm =20
          -0.15mm =20
          0.175mm =20
          0.15mm =20
          -0.175mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.15mm =20
          -0.125mm =20
          0.15mm =20
          -0.125mm =20
          0.15mm =20
          0.125mm =20
          -0.15mm =20
          0.125mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.36 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.15mm =20
          0.0 =20
          -0.15mm =20
          0.0 =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.125mm =20
          0.0 =20
          -0.125mm =20
          0.0 =20
          0.125mm =20
          -0.175mm =20
          0.125mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.37 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.3mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.25mm;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.38 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          1.6mm =20
          2.05mm =20
          1.6mm =20
          1.25mm =20
          0.9mm =20
          1.25mm =20
          0.9mm =20
          2.05mm =20
          0.6mm =20
          2.05mm =20
          0.6mm =20
          1.25mm =20
          -0.1mm =20
          1.25mm =20
          -0.1mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          -2.05mm =20
          -1.1mm =20
          -2.05mm =20
          -1.1mm =20
          -1.25mm =20
          -0.4mm =20
          -1.25mm =20
          -0.4mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -0.6mm =20
          1.25mm =20
          -0.6mm =20
          1.25mm =20
          0.1mm =20
          2.05mm =20
          0.1mm =20
          2.05mm =20
          2.05mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -1.975mm =20
          -1.975mm =20
          1.975mm =20
          -1.975mm =20
          1.975mm =20
          1.975mm =20
          -1.975mm =20
          1.975mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.39 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          1.6mm =20
          2.05mm =20
          1.6mm =20
          1.25mm =20
          0.9mm =20
          1.25mm =20
          0.9mm =20
          1.25mm =20
          0.9mm =20
          2.05mm =20
          0.6mm =20
          2.05mm =20
          0.6mm =20
          1.25mm =20
          -0.1mm =20
          1.25mm =20
          -0.1mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          -2.05mm =20
          -1.1mm =20
          -2.05mm =20
          -1.1mm =20
          -1.25mm =20
          -0.4mm =20
          -1.25mm =20
          -0.4mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -0.6mm =20
          1.25mm =20
          -0.6mm =20
          1.25mm =20
          0.1mm =20
          2.05mm =20
          0.1mm =20
          2.05mm =20
          2.05mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.975mm =20
          1.475mm =20
          -1.975mm =20
          -1.475mm =20
          -1.475mm =20
          -1.475mm =20
          -1.475mm =20
          -1.975mm =20
          1.475mm =20
          -1.975mm =20
          1.475mm =20
          -1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.975mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.40 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.625mm =20
          -0.625mm =20
          0.375mm =20
          -0.625mm =20
          0.375mm =20
          0.375mm =20
          -0.625mm =20
          0.375mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.3mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.41 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.35mm =20
          -0.125mm =20
          0.35mm =20
          -0.125mm =20
          0.35mm =20
          0.125mm =20
          -0.35mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.325mm =20
          -0.1mm =20
          0.325mm =20
          -0.1mm =20
          0.325mm =20
          0.1mm =20
          -0.325mm =20
          0.1mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.45mm =20
          -0.25mm =20
          0.45mm =20
          -0.25mm =20
          0.45mm =20
          0.25mm =20
          -0.45mm =20
          0.25mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.42 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.1mm =20
          -0.1mm =20
          0.275mm =20
          -0.1mm =20
          0.275mm =20
          0.275mm =20
          -0.1mm =20
          0.275mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.075mm =20
          -0.075mm =20
          0.25mm =20
          -0.075mm =20
          0.25mm =20
          0.25mm =20
          -0.075mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.2mm =20
          -0.2mm =20
          0.4mm =20
          -0.2mm =20
          0.4mm =20
          0.4mm =20
          -0.2mm =20
          0.4mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.43 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.55mm =20
          -0.665mm =20
          0.55mm =20
          -0.665mm =20
          0.55mm =20
          0.665mm =20
          -0.55mm =20
          0.665mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.5mm =20
          -0.615mm =20
          0.5mm =20
          -0.615mm =20
          0.5mm =20
          0.615mm =20
          -0.5mm =20
          0.615mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.65mm =20
          -0.765mm =20
          0.65mm =20
          -0.765mm =20
          0.65mm =20
          0.765mm =20
          -0.65mm =20
          0.765mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.44 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.55mm =20
          -0.415mm =20
          -0.3mm =20
          -0.665mm =20
          0.55mm =20
          -0.665mm =20
          0.55mm =20
          0.665mm =20
          -0.55mm =20
          0.665mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.5mm =20
          -0.39mm =20
          -0.275mm =20
          -0.615mm =20
          0.5mm =20
          -0.615mm =20
          0.5mm =20
          0.615mm =20
          -0.5mm =20
          0.615mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.65mm =20
          -0.415mm =20
          -0.65mm =20
          -0.46mm =20
          -0.345mm =20
          -0.765mm =20
          0.65mm =20
          -0.765mm =20
          0.65mm =20
          0.765mm =20
          -0.65mm =20
          0.765mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.45 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -1.55mm =20
          -2.8mm =20
          1.55mm =20
          -2.8mm =20
          1.55mm =20
          2.8mm =20
          -1.55mm =20
          2.8mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -1.45mm =20
          -2.6mm =20
          1.45mm =20
          -2.6mm =20
          1.45mm =20
          2.6mm =20
          -1.45mm =20
          2.6mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -1.65mm =20
          -2.9mm =20
          1.65mm =20
          -2.9mm =20
          1.65mm =20
          2.9mm =20
          -1.65mm =20
          2.9mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.46 {
     hdia=3D250.0mil; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
     }
     name =3D SAMTEC-JSO
   }
 
   ha:ps_proto_v6.47 {
     hdia=3D250.0mil; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
     }
     name =3D SAMTEC-JSO
   }
 
   ha:ps_proto_v6.48 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D31.0mil;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.49 {
     hdia=3D57.0mil; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.50 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          1.6mm =20
          2.05mm =20
          1.6mm =20
          1.4mm =20
          1.5mm =20
          1.25mm =20
          1.0mm =20
          1.25mm =20
          0.9mm =20
          1.4mm =20
          0.9mm =20
          2.05mm =20
          0.6mm =20
          2.05mm =20
          0.6mm =20
          1.4mm =20
          0.5mm =20
          1.25mm =20
          0.0 =20
          1.25mm =20
          -0.1mm =20
          1.4mm =20
          -0.1mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          -2.05mm =20
          -1.1mm =20
          -2.05mm =20
          -1.1mm =20
          -1.4mm =20
          -1.0mm =20
          -1.25mm =20
          -0.5mm =20
          -1.25mm =20
          -0.4mm =20
          -1.4mm =20
          -0.4mm =20
          -2.05mm =20
          2.05mm =20
          -2.05mm =20
          2.05mm =20
          -0.6mm =20
          1.4mm =20
          -0.6mm =20
          1.25mm =20
          -0.5mm =20
          1.25mm =20
          0.0 =20
          1.4mm =20
          0.1mm =20
          2.05mm =20
          0.1mm =20
          2.05mm =20
          2.05mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.975mm =20
          1.475mm =20
          -1.975mm =20
          -1.475mm =20
          -1.475mm =20
          -1.475mm =20
          -1.475mm =20
          -1.975mm =20
          1.475mm =20
          -1.975mm =20
          1.475mm =20
          -1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.975mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.975mm =20
          -1.475mm =20
          1.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.51 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.295mm =20
          1.295mm =20
          -1.295mm =20
          -1.295mm =20
          1.295mm =20
          -1.295mm =20
          1.295mm =20
          1.295mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.295mm =20
          1.295mm =20
          -1.295mm =20
          -1.295mm =20
          1.295mm =20
          -1.295mm =20
          1.295mm =20
          1.295mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.52 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.25mm
         li:ps_poly {
          -0.255mm =20
          -0.15mm =20
          0.255mm =20
          -0.15mm =20
          0.255mm =20
          0.15mm =20
          -0.255mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.25mm
         li:ps_poly {
          -0.23mm =20
          -0.125mm =20
          0.23mm =20
          -0.125mm =20
          0.23mm =20
          0.125mm =20
          -0.23mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.33mm =20
          -0.225mm =20
          0.33mm =20
          -0.225mm =20
          0.33mm =20
          0.225mm =20
          -0.33mm =20
          0.225mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.53 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.285mm =20
          1.295mm =20
          -1.285mm =20
          -1.295mm =20
          1.305mm =20
          -1.295mm =20
          1.305mm =20
          1.295mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -1.285mm =20
          1.295mm =20
          -1.285mm =20
          -1.295mm =20
          1.305mm =20
          -1.295mm =20
          1.305mm =20
          1.295mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.54 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.255mm =20
          -0.15mm =20
          0.605mm =20
          -0.15mm =20
          0.605mm =20
          0.15mm =20
          -0.255mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.23mm =20
          -0.125mm =20
          0.23mm =20
          -0.125mm =20
          0.23mm =20
          0.125mm =20
          -0.23mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.33mm =20
          -0.225mm =20
          0.33mm =20
          -0.225mm =20
          0.33mm =20
          0.225mm =20
          -0.33mm =20
          0.225mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.55 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.3925mm =20
          -0.15mm =20
          0.4675mm =20
          -0.15mm =20
          0.4675mm =20
          0.15mm =20
          -0.3925mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.3675mm =20
          -0.125mm =20
          0.0925mm =20
          -0.125mm =20
          0.0925mm =20
          0.125mm =20
          -0.3675mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.4675mm =20
          -0.225mm =20
          0.1925mm =20
          -0.225mm =20
          0.1925mm =20
          0.225mm =20
          -0.4675mm =20
          0.225mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.56 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.15mm =20
          0.175mm =20
          -0.15mm =20
          0.175mm =20
          0.15mm =20
          -0.175mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.15mm =20
          -0.15mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
          0.125mm =20
          -0.15mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.25mm =20
          -0.225mm =20
          0.25mm =20
          -0.225mm =20
          0.25mm =20
          0.225mm =20
          -0.25mm =20
          0.225mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.57 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.15mm =20
          -0.11mm =20
          0.15mm =20
          -0.11mm =20
          0.15mm =20
          0.11mm =20
          -0.15mm =20
          0.11mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.135mm =20
          -0.145mm =20
          0.135mm =20
          -0.145mm =20
          0.135mm =20
          0.095mm =20
          -0.135mm =20
          0.095mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.225mm =20
          -0.185mm =20
          0.225mm =20
          -0.185mm =20
          0.225mm =20
          0.215mm =20
          -0.225mm =20
          0.215mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.58 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.15mm =20
          -0.105mm =20
          0.15mm =20
          -0.105mm =20
          0.15mm =20
          0.105mm =20
          -0.15mm =20
          0.105mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.135mm =20
          -0.14mm =20
          0.135mm =20
          -0.14mm =20
          0.135mm =20
          0.09mm =20
          -0.135mm =20
          0.09mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.225mm =20
          -0.18mm =20
          0.225mm =20
          -0.18mm =20
          0.225mm =20
          0.22mm =20
          -0.225mm =20
          0.22mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.59 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -0.45mm =20
          -0.8mm =20
          0.45mm =20
          -0.8mm =20
          0.45mm =20
          0.8mm =20
          -0.45mm =20
          0.8mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -0.4mm =20
          -0.75mm =20
          0.4mm =20
          -0.75mm =20
          0.4mm =20
          0.75mm =20
          -0.4mm =20
          0.75mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -0.55mm =20
          -0.9mm =20
          0.55mm =20
          -0.9mm =20
          0.55mm =20
          0.9mm =20
          -0.55mm =20
          0.9mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.60 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.15mm
         li:ps_poly {
          -0.305mm =20
          -0.445mm =20
          0.305mm =20
          -0.445mm =20
          0.305mm =20
          0.8mm =20
          -0.305mm =20
          0.8mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.255mm =20
          -0.395mm =20
          0.255mm =20
          -0.395mm =20
          0.255mm =20
          0.75mm =20
          -0.255mm =20
          0.75mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.38mm =20
          -0.52mm =20
          0.38mm =20
          -0.52mm =20
          0.38mm =20
          0.875mm =20
          -0.38mm =20
          0.875mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
     }
   }
 
   ha:ps_proto_v6.61 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.4mm =20
          -0.4mm =20
          0.4mm =20
          -0.4mm =20
          0.4mm =20
          0.4mm =20
          -0.4mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.35mm =20
          -0.35mm =20
          0.35mm =20
          -0.35mm =20
          0.35mm =20
          0.35mm =20
          -0.35mm =20
          0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.475mm =20
          -0.475mm =20
          0.475mm =20
          -0.475mm =20
          0.475mm =20
          0.475mm =20
          -0.475mm =20
          0.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.62 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          -0.6mm =20
          -0.6mm =20
          -0.6mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          -0.6mm =20
          -0.6mm =20
          -0.6mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          0.6mm =20
          -0.6mm =20
          -0.6mm =20
          -0.6mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.63 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.425mm =20
          -0.95mm =20
          -0.425mm =20
          -0.95mm =20
          -0.425mm =20
          0.95mm =20
          0.425mm =20
          0.95mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.425mm =20
          -0.95mm =20
          -0.425mm =20
          -0.95mm =20
          -0.425mm =20
          0.95mm =20
          0.425mm =20
          0.95mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.425mm =20
          -0.95mm =20
          -0.425mm =20
          -0.95mm =20
          -0.425mm =20
          0.95mm =20
          0.425mm =20
          0.95mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.64 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -1.4mm =20
          -1.0mm =20
          -1.4mm =20
          1.0mm =20
          1.4mm =20
          1.0mm =20
          1.4mm =20
          -1.0mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -1.475mm =20
          -1.075mm =20
          -1.475mm =20
          1.075mm =20
          1.475mm =20
          1.075mm =20
          1.475mm =20
          -1.075mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.65 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.55mm =20
          -0.35mm =20
          -0.55mm =20
          0.35mm =20
          0.55mm =20
          0.35mm =20
          0.55mm =20
          -0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.625mm =20
          -0.425mm =20
          -0.625mm =20
          0.425mm =20
          0.625mm =20
          0.425mm =20
          0.625mm =20
          -0.425mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.55mm =20
          -0.35mm =20
          -0.55mm =20
          0.35mm =20
          0.55mm =20
          0.35mm =20
          0.55mm =20
          -0.35mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.66 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.925mm =20
          -0.35mm =20
          -0.925mm =20
          0.35mm =20
          0.925mm =20
          0.35mm =20
          0.925mm =20
          -0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -1.0mm =20
          -0.425mm =20
          -1.0mm =20
          0.425mm =20
          1.0mm =20
          0.425mm =20
          1.0mm =20
          -0.425mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.67 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.5mm
         li:ps_poly {
          0.6mm =20
          0.275mm =20
          0.6mm =20
          -0.275mm =20
          -0.6mm =20
          -0.275mm =20
          -0.6mm =20
          0.275mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.5mm
         li:ps_poly {
          0.575mm =20
          0.25mm =20
          0.575mm =20
          -0.25mm =20
          -0.575mm =20
          -0.25mm =20
          -0.575mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.5mm
         li:ps_poly {
          0.675mm =20
          0.35mm =20
          0.675mm =20
          -0.35mm =20
          -0.675mm =20
          -0.35mm =20
          -0.675mm =20
          0.35mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.68 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          0.6mm =20
          0.275mm =20
          0.6mm =20
          -0.275mm =20
          -0.6mm =20
          -0.275mm =20
          -0.6mm =20
          0.275mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          0.55mm =20
          0.25mm =20
          0.55mm =20
          -0.25mm =20
          -0.55mm =20
          -0.25mm =20
          -0.55mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          0.675mm =20
          0.35mm =20
          0.675mm =20
          -0.35mm =20
          -0.675mm =20
          -0.35mm =20
          -0.675mm =20
          0.35mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.69 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          2.1mm =20
          0.9mm =20
          2.1mm =20
          -0.9mm =20
          0.1mm =20
          -0.9mm =20
          -0.7mm =20
          -0.275mm =20
          -2.1mm =20
          -0.275mm =20
          -2.1mm =20
          0.275mm =20
          -0.7mm =20
          0.275mm =20
          0.1mm =20
          0.9mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -1.89mm =20
          -0.25mm =20
          -0.63mm =20
          -0.25mm =20
          0.09mm =20
          -0.81mm =20
          74.80314961mil =20
          -0.81mm =20
          74.80314961mil =20
          0.81mm =20
          0.09mm =20
          0.81mm =20
          -0.63mm =20
          0.25mm =20
          -1.89mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          2.175mm =20
          0.975mm =20
          2.175mm =20
          -0.975mm =20
          0.025mm =20
          -0.975mm =20
          -0.75mm =20
          -0.35mm =20
          -2.175mm =20
          -0.35mm =20
          -2.175mm =20
          0.35mm =20
          -0.75mm =20
          0.35mm =20
          0.025mm =20
          0.975mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.70 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          1.75mm =20
          0.9mm =20
          1.75mm =20
          -0.9mm =20
          -0.25mm =20
          -0.9mm =20
          -1.05mm =20
          -0.275mm =20
          -2.45mm =20
          -0.275mm =20
          -2.45mm =20
          0.275mm =20
          -1.05mm =20
          0.275mm =20
          -0.25mm =20
          0.9mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -2.24mm =20
          -0.25mm =20
          -0.98mm =20
          -0.25mm =20
          -0.26mm =20
          -0.81mm =20
          1.55mm =20
          -0.81mm =20
          1.55mm =20
          0.81mm =20
          -0.26mm =20
          0.81mm =20
          -0.98mm =20
          0.25mm =20
          -2.24mm =20
          0.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          1.825mm =20
          0.975mm =20
          1.825mm =20
          -0.975mm =20
          -0.325mm =20
          -0.975mm =20
          -1.1mm =20
          -0.35mm =20
          -2.525mm =20
          -0.35mm =20
          -2.525mm =20
          0.35mm =20
          -1.1mm =20
          0.35mm =20
          -0.325mm =20
          0.975mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.71 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -5.0mil =20
          -10.0mil =20
          5.0mil =20
          -10.0mil =20
          5.0mil =20
          10.0mil =20
          -5.0mil =20
          10.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -4.0mil =20
          -9.0mil =20
          4.0mil =20
          -9.0mil =20
          4.0mil =20
          9.0mil =20
          -4.0mil =20
          9.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -8.0mil =20
          -13.0mil =20
          8.0mil =20
          -13.0mil =20
          8.0mil =20
          13.0mil =20
          -8.0mil =20
          13.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.72 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.350012mm =20
          -11.81mil =20
          -0.350012mm =20
          11.81mil =20
          0.350012mm =20
          11.81mil =20
          0.350012mm =20
          -11.81mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -16.78mil =20
          -14.81mil =20
          -16.78mil =20
          14.81mil =20
          16.78mil =20
          14.81mil =20
          16.78mil =20
          -14.81mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.300012mm =20
          -0.249974mm =20
          -0.300012mm =20
          0.249974mm =20
          0.300012mm =20
          0.249974mm =20
          0.300012mm =20
          -0.249974mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.73 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D12.0mil
         li:ps_poly {
          -0.45mm =20
          -0.4mm =20
          -0.45mm =20
          0.4mm =20
          0.45mm =20
          0.4mm =20
          0.45mm =20
          -0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D12.0mil
         li:ps_poly {
          -0.4mm =20
          -0.35mm =20
          -0.4mm =20
          0.35mm =20
          0.4mm =20
          0.35mm =20
          0.4mm =20
          -0.35mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D12.0mil
         li:ps_poly {
          -0.525mm =20
          -0.475mm =20
          -0.525mm =20
          0.475mm =20
          0.525mm =20
          0.475mm =20
          0.525mm =20
          -0.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.74 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.35mm =20
          -1.15mm =20
          -0.35mm =20
          -1.15mm =20
          -0.35mm =20
          1.15mm =20
          0.35mm =20
          1.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.425mm =20
          -1.225mm =20
          -0.425mm =20
          -1.225mm =20
          -0.425mm =20
          1.225mm =20
          0.425mm =20
          1.225mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.3mm =20
          -1.1mm =20
          -0.3mm =20
          -1.1mm =20
          -0.3mm =20
          1.1mm =20
          0.3mm =20
          1.1mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.75 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.35mm =20
          -0.4mm =20
          -0.35mm =20
          -0.4mm =20
          -0.35mm =20
          0.4mm =20
          0.35mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.425mm =20
          -0.475mm =20
          -0.425mm =20
          -0.475mm =20
          -0.425mm =20
          0.475mm =20
          0.425mm =20
          0.475mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.3mm =20
          -0.35mm =20
          -0.3mm =20
          -0.35mm =20
          -0.3mm =20
          0.35mm =20
          0.3mm =20
          0.35mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.76 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.1mm =20
          0.0 =20
          0.1mm =20
          0.0 =20
          0.1mm =20
          1.25mm =20
          -0.1mm =20
          1.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.175mm =20
          -0.075mm =20
          0.175mm =20
          -0.075mm =20
          0.175mm =20
          1.325mm =20
          -0.175mm =20
          1.325mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.77 {
     hdia=3D1.1mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.6mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.6mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.6mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D74.80314961mil;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D74.80314961mil;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
     name =3D SMA-GND
   }
 
   ha:ps_proto_v6.78 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -72.5mil =20
          -110.0mil =20
          72.5mil =20
          -110.0mil =20
          72.5mil =20
          110.0mil =20
          -72.5mil =20
          110.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -77.5mil =20
          -115.0mil =20
          77.5mil =20
          -115.0mil =20
          77.5mil =20
          115.0mil =20
          -77.5mil =20
          115.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.79 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -72.5mil =20
          -110.0mil =20
          72.5mil =20
          -110.0mil =20
          72.5mil =20
          110.0mil =20
          -72.5mil =20
          110.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -77.5mil =20
          -115.0mil =20
          77.5mil =20
          -115.0mil =20
          77.5mil =20
          115.0mil =20
          -77.5mil =20
          115.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -72.5mil =20
          -110.0mil =20
          72.5mil =20
          -110.0mil =20
          72.5mil =20
          110.0mil =20
          -72.5mil =20
          110.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -72.5mil =20
          -110.0mil =20
          72.5mil =20
          -110.0mil =20
          72.5mil =20
          110.0mil =20
          -72.5mil =20
          110.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.80 {
     hdia=3D1.1mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.7mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D1.7mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
     name =3D SMA-GND
   }
 
   ha:ps_proto_v6.81 {
     hdia=3D0.15mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.6mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.6mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
   }
 
   ha:ps_proto_v6.82 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.28mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.48mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.23mm;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.83 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.425mm =20
          -0.14mm =20
          0.425mm =20
          -0.14mm =20
          0.425mm =20
          0.14mm =20
          -0.425mm =20
          0.14mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.84 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          0.0 =20
          -0.14mm =20
          0.85mm =20
          -0.14mm =20
          0.85mm =20
          0.14mm =20
          0.0 =20
          0.14mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.85 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.4mm =20
          -0.14mm =20
          0.31mm =20
          -0.14mm =20
          0.31mm =20
          0.14mm =20
          -0.4mm =20
          0.14mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.475mm =20
          -0.215mm =20
          0.385mm =20
          -0.215mm =20
          0.385mm =20
          0.215mm =20
          -0.475mm =20
          0.215mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.86 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.4mm =20
          -0.14mm =20
          0.31mm =20
          -0.14mm =20
          0.31mm =20
          0.14mm =20
          -0.4mm =20
          0.14mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.375mm =20
          -0.115mm =20
          0.31mm =20
          -0.115mm =20
          0.31mm =20
          0.115mm =20
          -0.375mm =20
          0.115mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.5mm =20
          -0.24mm =20
          0.31mm =20
          -0.24mm =20
          0.31mm =20
          0.24mm =20
          -0.5mm =20
          0.24mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.87 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.4mm =20
          -0.14mm =20
          0.31mm =20
          -0.14mm =20
          0.31mm =20
          0.14mm =20
          -0.4mm =20
          0.14mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.375mm =20
          -0.115mm =20
          0.31mm =20
          -0.115mm =20
          0.31mm =20
          0.115mm =20
          -0.375mm =20
          0.115mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.475mm =20
          -0.215mm =20
          0.385mm =20
          -0.215mm =20
          0.385mm =20
          0.215mm =20
          -0.475mm =20
          0.215mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.88 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.31mm; y=3D0.0; dia=3D0.28mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.31mm; y=3D0.0; dia=3D0.23mm;        }
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.31mm; y=3D0.0; dia=3D0.43mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
       }
     }
   }
 
   ha:ps_proto_v6.89 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -2.25mm =20
          -2.25mm =20
          2.25mm =20
          -2.25mm =20
          2.25mm =20
          2.25mm =20
          -2.25mm =20
          2.25mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -2.325mm =20
          -2.325mm =20
          2.325mm =20
          -2.325mm =20
          2.325mm =20
          2.325mm =20
          -2.325mm =20
          2.325mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.90 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.15mm =20
          -0.2mm =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
          0.2mm =20
          -0.15mm =20
          0.2mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.15mm =20
          -0.15mm =20
          0.1mm =20
          -0.15mm =20
          0.1mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.225mm =20
          -0.275mm =20
          0.35mm =20
          -0.275mm =20
          0.35mm =20
          0.25mm =20
          -0.225mm =20
          0.25mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.91 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.15mm =20
          -0.2mm =20
          0.15mm =20
          -0.2mm =20
          0.15mm =20
          0.2mm =20
          -0.15mm =20
          0.2mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.15mm =20
          -0.15mm =20
          0.1mm =20
          -0.15mm =20
          0.1mm =20
          0.15mm =20
          -0.15mm =20
          0.15mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.15mm =20
          -0.275mm =20
          0.35mm =20
          -0.275mm =20
          0.35mm =20
          0.275mm =20
          -0.15mm =20
          0.275mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.92 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.3mm =20
          -0.45mm =20
          0.3mm =20
          -0.45mm =20
          0.3mm =20
          0.45mm =20
          -0.3mm =20
          0.45mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.25mm =20
          -0.4mm =20
          0.25mm =20
          -0.4mm =20
          0.25mm =20
          0.4mm =20
          -0.25mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.375mm =20
          -0.525mm =20
          0.375mm =20
          -0.525mm =20
          0.375mm =20
          0.525mm =20
          -0.375mm =20
          0.525mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.93 {
     hdia=3D6.3mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D8.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D8.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D7.0mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D8.5mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D8.5mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
     name =3D SAMTEC-JSO
   }
 
   ha:ps_proto_v6.94 {
     hdia=3D0.15mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.45mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.45mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.15mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.001um;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.75mm
       }
     }
     name =3D ThinVia
   }
 
   ha:ps_proto_v6.95 {
     hdia=3D0.15mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.001um;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.75mm
       }
     }
     name =3D ThinVia
   }
 
   ha:ps_proto_v6.96 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.18mm =20
          -0.5mm =20
          0.18mm =20
          -0.5mm =20
          0.18mm =20
          0.5mm =20
          -0.18mm =20
          0.5mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.155mm =20
          -0.475mm =20
          0.155mm =20
          -0.475mm =20
          0.155mm =20
          0.475mm =20
          -0.155mm =20
          0.475mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.255mm =20
          -0.575mm =20
          0.255mm =20
          -0.575mm =20
          0.255mm =20
          0.575mm =20
          -0.255mm =20
          0.575mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.97 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -5.0mil =20
          -20.0mil =20
          5.0mil =20
          -20.0mil =20
          5.0mil =20
          20.0mil =20
          -5.0mil =20
          20.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -4.0mil =20
          -19.0mil =20
          4.0mil =20
          -19.0mil =20
          4.0mil =20
          19.0mil =20
          -4.0mil =20
          19.0mil =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -8.0mil =20
          -23.0mil =20
          8.0mil =20
          -23.0mil =20
          8.0mil =20
          23.0mil =20
          -8.0mil =20
          23.0mil =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.98 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.175mm =20
          -0.4mm =20
          -0.175mm =20
          -0.4mm =20
          -0.175mm =20
          0.4mm =20
          0.175mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.25mm =20
          -0.475mm =20
          -0.25mm =20
          -0.475mm =20
          -0.25mm =20
          0.475mm =20
          0.25mm =20
          0.475mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.15mm =20
          -0.375mm =20
          -0.15mm =20
          -0.375mm =20
          -0.15mm =20
          0.375mm =20
          0.15mm =20
          0.375mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.99 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.575mm =20
          -0.32mm =20
          -0.575mm =20
          0.32mm =20
          0.575mm =20
          0.32mm =20
          0.575mm =20
          -0.32mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.655mm =20
          -0.4mm =20
          -0.655mm =20
          0.4mm =20
          0.655mm =20
          0.4mm =20
          0.655mm =20
          -0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.525mm =20
          -0.27mm =20
          -0.525mm =20
          0.27mm =20
          0.525mm =20
          0.27mm =20
          0.525mm =20
          -0.27mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.100 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          0.35mm =20
          0.32mm =20
          0.35mm =20
          -0.32mm =20
          -0.35mm =20
          -0.32mm =20
          -0.35mm =20
          0.32mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          0.3mm =20
          0.27mm =20
          0.3mm =20
          -0.27mm =20
          -0.3mm =20
          -0.27mm =20
          -0.3mm =20
          0.27mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          0.425mm =20
          0.395mm =20
          0.425mm =20
          -0.395mm =20
          -0.425mm =20
          -0.395mm =20
          -0.425mm =20
          0.395mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.101 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.3mm =20
          -0.775mm =20
          -0.3mm =20
          -0.775mm =20
          -0.3mm =20
          0.775mm =20
          0.3mm =20
          0.775mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.375mm =20
          -0.85mm =20
          -0.375mm =20
          -0.85mm =20
          -0.375mm =20
          0.85mm =20
          0.375mm =20
          0.85mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.3mm =20
          -0.775mm =20
          -0.3mm =20
          -0.775mm =20
          -0.3mm =20
          0.775mm =20
          0.3mm =20
          0.775mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.102 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -1.55mm =20
          -1.2mm =20
          -1.55mm =20
          1.2mm =20
          1.55mm =20
          1.2mm =20
          1.55mm =20
          -1.2mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -1.625mm =20
          -1.275mm =20
          -1.625mm =20
          1.275mm =20
          1.625mm =20
          1.275mm =20
          1.625mm =20
          -1.275mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.103 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.65mm =20
          -0.475mm =20
          -0.65mm =20
          0.475mm =20
          0.65mm =20
          0.475mm =20
          0.65mm =20
          -0.475mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.65mm =20
          -0.475mm =20
          -0.65mm =20
          0.475mm =20
          0.65mm =20
          0.475mm =20
          0.65mm =20
          -0.475mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          -0.65mm =20
          -0.475mm =20
          -0.65mm =20
          0.475mm =20
          0.65mm =20
          0.475mm =20
          0.65mm =20
          -0.475mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.104 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.3mm =20
          -0.775mm =20
          -0.3mm =20
          -0.775mm =20
          -0.3mm =20
          0.775mm =20
          0.3mm =20
          0.775mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.375mm =20
          -0.85mm =20
          -0.375mm =20
          -0.85mm =20
          -0.375mm =20
          0.85mm =20
          0.375mm =20
          0.85mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.0
         li:ps_poly {
          0.25mm =20
          -0.725mm =20
          -0.25mm =20
          -0.725mm =20
          -0.25mm =20
          0.725mm =20
          0.25mm =20
          0.725mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.105 {
     hdia=3D0.2mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.4mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.5mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.0
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.3mm;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         bottom =3D 1
         mask =3D 1
        }
        clearance=3D0.0
       }
     }
     name =3D lpam
   }
 
   ha:ps_proto_v6.106 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.15mm
         li:ps_poly {
          -1.2mm =20
          0.0 =20
          0.0 =20
          0.0 =20
          0.0 =20
          -1.55mm =20
          -1.2mm =20
          -1.55mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.15mm
         li:ps_poly {
          -1.1mm =20
          -0.15mm =20
          -0.15mm =20
          -0.15mm =20
          -0.15mm =20
          -1.45mm =20
          -1.1mm =20
          -1.45mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.15mm
         li:ps_poly {
          -1.275mm =20
          0.0 =20
          0.0 =20
          0.0 =20
          0.0 =20
          -1.625mm =20
          -1.275mm =20
          -1.625mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.107 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.62mm =20
          -0.62mm =20
          0.62mm =20
          -0.62mm =20
          0.62mm =20
          0.62mm =20
          -0.62mm =20
          0.62mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.7mm =20
          -0.7mm =20
          0.7mm =20
          -0.7mm =20
          0.7mm =20
          0.7mm =20
          -0.7mm =20
          0.7mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.108 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.255mm =20
          -0.125mm =20
          0.255mm =20
          -0.125mm =20
          0.255mm =20
          0.125mm =20
          -0.255mm =20
          0.125mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.23mm =20
          -0.1mm =20
          0.23mm =20
          -0.1mm =20
          0.23mm =20
          0.1mm =20
          -0.23mm =20
          0.1mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.33mm =20
          -0.2mm =20
          0.33mm =20
          -0.2mm =20
          0.33mm =20
          0.2mm =20
          -0.33mm =20
          0.2mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.109 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.235mm =20
          -0.425mm =20
          0.235mm =20
          -0.425mm =20
          0.235mm =20
          0.425mm =20
          -0.235mm =20
          0.425mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.21mm =20
          -0.4mm =20
          0.21mm =20
          -0.4mm =20
          0.21mm =20
          0.4mm =20
          -0.21mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.26mm =20
          -0.45mm =20
          0.26mm =20
          -0.45mm =20
          0.26mm =20
          0.45mm =20
          -0.26mm =20
          0.45mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.110 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D0.0; y1=3D0.1mm; x2=3D-0.2mm; y2=3D0.1mm; thickne=
ss=3D0.2mm; square=3D0;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.111 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D0.1mm; y1=3D0.0; x2=3D-0.1mm; y2=3D0.0; thickness=
=3D0.23mm; square=3D0;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_line { x1=3D0.1mm; y1=3D0.0; x2=3D-0.1mm; y2=3D0.0; thickness=
=3D0.38mm; square=3D0;        }
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
       }
     }
   }
 
   ha:ps_proto_v6.112 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          0.25mm =20
          -0.04mm =20
          0.228033mm =20
          -0.093033mm =20
          0.175mm =20
          -0.115mm =20
          -0.25mm =20
          -0.115mm =20
          -0.25mm =20
          0.115mm =20
          0.175mm =20
          0.115mm =20
          0.228033mm =20
          0.093033mm =20
          0.25mm =20
          0.04mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          0.3mm =20
          -0.049946mm =20
          0.266298mm =20
          -0.131298mm =20
          0.184946mm =20
          -0.165mm =20
          -0.3mm =20
          -0.165mm =20
          -0.3mm =20
          0.165mm =20
          0.184946mm =20
          0.165mm =20
          0.266298mm =20
          0.131298mm =20
          0.3mm =20
          0.049946mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.113 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -0.195mm =20
          -0.115mm =20
          0.165mm =20
          -0.115mm =20
          0.165mm =20
          0.115mm =20
          -0.195mm =20
          0.115mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.36mm
         li:ps_poly {
          -0.18mm =20
          -0.1mm =20
          0.15mm =20
          -0.1mm =20
          0.15mm =20
          0.1mm =20
          -0.18mm =20
          0.1mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.4mm
         li:ps_poly {
          -0.27mm =20
          -0.2mm =20
          0.24mm =20
          -0.2mm =20
          0.24mm =20
          0.2mm =20
          -0.27mm =20
          0.2mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.114 {
     hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.235mm =20
          -0.425mm =20
          0.235mm =20
          -0.425mm =20
          0.235mm =20
          0.425mm =20
          -0.235mm =20
          0.425mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         paste =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.21mm =20
          -0.4mm =20
          0.21mm =20
          -0.4mm =20
          0.21mm =20
          0.4mm =20
          -0.21mm =20
          0.4mm =20
         }
       }
 
       ha:ps_shape_v4 {
        ha:combining { sub=3D1; auto=3D1;        }
        ha:layer_mask {
         top =3D 1
         mask =3D 1
        }
        clearance=3D0.2mm
         li:ps_poly {
          -0.36mm =20
          -0.45mm =20
          0.36mm =20
          -0.45mm =20
          0.36mm =20
          0.45mm =20
          -0.36mm =20
          0.45mm =20
         }
       }
     }
   }
 
   ha:ps_proto_v6.115 {
     hdia=3D0.15mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.75mm
         ps_hshadow =3D=20
       }
     }
     name =3D ThinVia
   }
 
   ha:ps_proto_v6.116 {
     hdia=3D0.15mm; hplated=3D1; htop=3D0; hbottom=3D0;
     li:shape {
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         top =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         bottom =3D 1
         copper =3D 1
        }
        clearance=3D0.225mm
       }
 
       ha:ps_shape_v4 {
        ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D0.35mm;        }
        ha:combining {        }
        ha:layer_mask {
         copper =3D 1
         intern =3D 1
        }
        clearance=3D0.225mm
       }
     }
     name =3D ThinVia
   }
  }
 
   li:objects {
    ha:padstack_ref.1501462 {
     proto=3D1; x=3D96.915mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501463 {
     proto=3D1; x=3D98.185mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501464 {
     proto=3D1; x=3D99.455mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501465 {
     proto=3D1; x=3D100.725mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501466 {
     proto=3D1; x=3D101.995mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501467 {
     proto=3D1; x=3D103.265mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501468 {
     proto=3D1; x=3D104.535mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501469 {
     proto=3D1; x=3D105.805mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501470 {
     proto=3D1; x=3D107.075mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501471 {
     proto=3D1; x=3D108.345mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501472 {
     proto=3D1; x=3D109.615mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501473 {
     proto=3D1; x=3D110.885mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501474 {
     proto=3D1; x=3D112.155mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501475 {
     proto=3D1; x=3D113.425mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501476 {
     proto=3D1; x=3D114.695mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501477 {
     proto=3D1; x=3D115.965mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501478 {
     proto=3D1; x=3D117.235mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501479 {
     proto=3D1; x=3D118.505mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501480 {
     proto=3D1; x=3D119.775mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501481 {
     proto=3D1; x=3D121.045mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501482 {
     proto=3D1; x=3D122.315mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501483 {
     proto=3D1; x=3D123.585mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501484 {
     proto=3D1; x=3D124.855mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501485 {
     proto=3D1; x=3D126.125mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501486 {
     proto=3D1; x=3D127.395mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501487 {
     proto=3D1; x=3D128.665mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501488 {
     proto=3D1; x=3D129.935mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501489 {
     proto=3D1; x=3D131.205mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501490 {
     proto=3D1; x=3D132.475mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501491 {
     proto=3D1; x=3D133.745mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501492 {
     proto=3D1; x=3D96.915mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501493 {
     proto=3D1; x=3D95.645mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501494 {
     proto=3D1; x=3D96.915mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501495 {
     proto=3D1; x=3D98.185mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501496 {
     proto=3D1; x=3D99.455mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501497 {
     proto=3D1; x=3D100.725mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501498 {
     proto=3D1; x=3D101.995mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501499 {
     proto=3D1; x=3D103.265mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501500 {
     proto=3D1; x=3D104.535mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501501 {
     proto=3D1; x=3D105.805mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501502 {
     proto=3D1; x=3D107.075mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501503 {
     proto=3D1; x=3D108.345mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501504 {
     proto=3D1; x=3D109.615mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501505 {
     proto=3D1; x=3D110.885mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501506 {
     proto=3D1; x=3D112.155mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501507 {
     proto=3D1; x=3D113.425mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501508 {
     proto=3D1; x=3D114.695mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501509 {
     proto=3D1; x=3D115.965mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501510 {
     proto=3D1; x=3D117.235mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501511 {
     proto=3D1; x=3D118.505mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501512 {
     proto=3D1; x=3D119.775mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501513 {
     proto=3D1; x=3D121.045mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501514 {
     proto=3D1; x=3D122.315mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501515 {
     proto=3D1; x=3D123.585mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501516 {
     proto=3D1; x=3D124.855mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501517 {
     proto=3D1; x=3D126.125mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501518 {
     proto=3D1; x=3D127.395mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501519 {
     proto=3D1; x=3D128.665mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501520 {
     proto=3D1; x=3D129.935mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501521 {
     proto=3D1; x=3D131.205mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501522 {
     proto=3D1; x=3D132.475mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501523 {
     proto=3D1; x=3D133.745mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501524 {
     proto=3D1; x=3D119.775mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501525 {
     proto=3D1; x=3D119.775mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501526 {
     proto=3D1; x=3D119.775mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501527 {
     proto=3D1; x=3D118.505mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501528 {
     proto=3D1; x=3D118.505mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501529 {
     proto=3D1; x=3D118.505mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501530 {
     proto=3D1; x=3D115.965mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501531 {
     proto=3D1; x=3D115.965mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501532 {
     proto=3D1; x=3D115.965mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501533 {
     proto=3D1; x=3D114.695mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501534 {
     proto=3D1; x=3D114.695mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501535 {
     proto=3D1; x=3D114.695mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501536 {
     proto=3D1; x=3D112.155mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501537 {
     proto=3D1; x=3D112.155mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501538 {
     proto=3D1; x=3D112.155mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501539 {
     proto=3D1; x=3D110.885mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501540 {
     proto=3D1; x=3D110.885mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501541 {
     proto=3D1; x=3D110.885mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501542 {
     proto=3D1; x=3D108.345mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501543 {
     proto=3D1; x=3D108.345mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501544 {
     proto=3D1; x=3D108.345mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501545 {
     proto=3D1; x=3D107.075mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501546 {
     proto=3D1; x=3D107.075mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501547 {
     proto=3D1; x=3D107.075mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501548 {
     proto=3D1; x=3D104.535mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501549 {
     proto=3D1; x=3D104.535mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501550 {
     proto=3D1; x=3D104.535mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501551 {
     proto=3D1; x=3D103.265mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501552 {
     proto=3D1; x=3D103.265mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501553 {
     proto=3D1; x=3D103.265mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501554 {
     proto=3D1; x=3D100.725mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501555 {
     proto=3D1; x=3D100.725mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501556 {
     proto=3D1; x=3D100.725mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501557 {
     proto=3D1; x=3D99.455mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501558 {
     proto=3D1; x=3D99.455mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501559 {
     proto=3D1; x=3D99.455mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501560 {
     proto=3D1; x=3D142.635mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501561 {
     proto=3D1; x=3D140.095mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501562 {
     proto=3D1; x=3D137.555mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501563 {
     proto=3D1; x=3D137.555mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501564 {
     proto=3D1; x=3D140.095mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501565 {
     proto=3D1; x=3D142.635mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501566 {
     proto=3D1; x=3D142.635mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501567 {
     proto=3D1; x=3D140.095mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501568 {
     proto=3D1; x=3D137.555mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501569 {
     proto=3D1; x=3D142.635mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501570 {
     proto=3D1; x=3D140.095mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501571 {
     proto=3D1; x=3D137.555mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501572 {
     proto=3D1; x=3D123.585mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501573 {
     proto=3D1; x=3D123.585mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501574 {
     proto=3D1; x=3D123.585mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501575 {
     proto=3D1; x=3D122.315mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501576 {
     proto=3D1; x=3D122.315mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501577 {
     proto=3D1; x=3D122.315mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501578 {
     proto=3D1; x=3D126.125mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501579 {
     proto=3D1; x=3D126.125mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501580 {
     proto=3D1; x=3D126.125mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501581 {
     proto=3D1; x=3D127.395mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501582 {
     proto=3D1; x=3D127.395mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501583 {
     proto=3D1; x=3D127.395mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501584 {
     proto=3D1; x=3D131.205mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501585 {
     proto=3D1; x=3D131.205mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501586 {
     proto=3D1; x=3D129.935mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501587 {
     proto=3D1; x=3D129.935mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501588 {
     proto=3D1; x=3D129.935mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501592 {
     proto=3D1; x=3D133.745mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501593 {
     proto=3D1; x=3D133.745mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501594 {
     proto=3D1; x=3D133.745mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501595 {
     proto=3D1; x=3D133.745mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501596 {
     proto=3D1; x=3D132.475mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501597 {
     proto=3D1; x=3D131.205mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501598 {
     proto=3D1; x=3D129.935mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501599 {
     proto=3D1; x=3D128.665mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501600 {
     proto=3D1; x=3D127.395mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501601 {
     proto=3D1; x=3D126.125mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501602 {
     proto=3D1; x=3D124.855mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501603 {
     proto=3D1; x=3D123.585mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501604 {
     proto=3D1; x=3D122.315mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501605 {
     proto=3D1; x=3D121.045mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501606 {
     proto=3D1; x=3D119.775mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501607 {
     proto=3D1; x=3D118.505mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501608 {
     proto=3D1; x=3D117.235mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501609 {
     proto=3D1; x=3D115.965mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501610 {
     proto=3D1; x=3D114.695mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501611 {
     proto=3D1; x=3D113.425mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501612 {
     proto=3D1; x=3D112.155mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501613 {
     proto=3D1; x=3D110.885mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501614 {
     proto=3D1; x=3D109.615mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501615 {
     proto=3D1; x=3D108.345mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501616 {
     proto=3D1; x=3D107.075mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501617 {
     proto=3D1; x=3D105.805mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501618 {
     proto=3D1; x=3D104.535mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501619 {
     proto=3D1; x=3D103.265mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501620 {
     proto=3D1; x=3D101.995mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501621 {
     proto=3D1; x=3D100.725mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501622 {
     proto=3D1; x=3D99.455mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501623 {
     proto=3D1; x=3D98.185mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501624 {
     proto=3D1; x=3D96.915mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501625 {
     proto=3D1; x=3D96.915mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501626 {
     proto=3D1; x=3D96.915mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501627 {
     proto=3D1; x=3D95.645mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501628 {
     proto=3D1; x=3D95.645mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501629 {
     proto=3D1; x=3D95.645mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501630 {
     proto=3D1; x=3D95.645mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501631 {
     proto=3D1; x=3D95.645mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501644 {
     proto=3D1; x=3D43.505mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501646 {
     proto=3D1; x=3D43.505mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501650 {
     proto=3D1; x=3D19.375mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501651 {
     proto=3D1; x=3D21.915mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501652 {
     proto=3D1; x=3D24.455mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501653 {
     proto=3D1; x=3D19.375mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501654 {
     proto=3D1; x=3D21.915mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501655 {
     proto=3D1; x=3D24.455mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501656 {
     proto=3D1; x=3D19.375mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501657 {
     proto=3D1; x=3D21.915mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501658 {
     proto=3D1; x=3D24.455mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501659 {
     proto=3D1; x=3D19.375mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501660 {
     proto=3D1; x=3D21.915mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501661 {
     proto=3D1; x=3D24.455mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501662 {
     proto=3D1; x=3D44.775mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501665 {
     proto=3D1; x=3D46.045mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501666 {
     proto=3D1; x=3D47.315mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501667 {
     proto=3D1; x=3D48.585mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501668 {
     proto=3D1; x=3D49.855mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501669 {
     proto=3D1; x=3D51.125mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501670 {
     proto=3D1; x=3D52.395mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501671 {
     proto=3D1; x=3D53.665mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501672 {
     proto=3D1; x=3D54.935mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501673 {
     proto=3D1; x=3D56.205mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501674 {
     proto=3D1; x=3D57.475mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501675 {
     proto=3D1; x=3D58.745mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501684 {
     proto=3D1; x=3D47.315mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501687 {
     proto=3D1; x=3D51.125mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501690 {
     proto=3D1; x=3D54.935mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501693 {
     proto=3D1; x=3D58.745mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501709 {
     proto=3D1; x=3D48.585mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501715 {
     proto=3D1; x=3D52.395mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501721 {
     proto=3D1; x=3D56.205mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501745 {
     proto=3D1; x=3D54.935mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501748 {
     proto=3D1; x=3D58.745mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501794 {
     proto=3D1; x=3D29.535mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501795 {
     proto=3D1; x=3D33.345mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501796 {
     proto=3D1; x=3D37.155mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501797 {
     proto=3D1; x=3D40.965mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501798 {
     proto=3D1; x=3D28.265mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501799 {
     proto=3D1; x=3D29.535mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501801 {
     proto=3D1; x=3D32.075mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501802 {
     proto=3D1; x=3D33.345mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501804 {
     proto=3D1; x=3D35.885mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501805 {
     proto=3D1; x=3D37.155mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501807 {
     proto=3D1; x=3D39.695mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501808 {
     proto=3D1; x=3D40.965mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501809 {
     proto=3D1; x=3D29.535mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501810 {
     proto=3D1; x=3D33.345mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501811 {
     proto=3D1; x=3D37.155mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501812 {
     proto=3D1; x=3D40.965mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501813 {
     proto=3D1; x=3D29.535mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501814 {
     proto=3D1; x=3D29.535mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501815 {
     proto=3D1; x=3D29.535mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501816 {
     proto=3D1; x=3D29.535mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501818 {
     proto=3D1; x=3D32.075mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501819 {
     proto=3D1; x=3D33.345mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501820 {
     proto=3D1; x=3D33.345mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501821 {
     proto=3D1; x=3D35.885mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501822 {
     proto=3D1; x=3D37.155mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501823 {
     proto=3D1; x=3D37.155mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501824 {
     proto=3D1; x=3D39.695mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501825 {
     proto=3D1; x=3D40.965mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501826 {
     proto=3D1; x=3D40.965mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501827 {
     proto=3D1; x=3D33.345mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501828 {
     proto=3D1; x=3D33.345mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501829 {
     proto=3D1; x=3D37.155mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501830 {
     proto=3D1; x=3D37.155mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501831 {
     proto=3D1; x=3D40.965mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501832 {
     proto=3D1; x=3D40.965mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501838 {
     proto=3D1; x=3D27.63mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501840 {
     proto=3D1; x=3D27.63mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501841 {
     proto=3D1; x=3D27.63mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501842 {
     proto=3D1; x=3D27.63mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501843 {
     proto=3D1; x=3D27.63mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501846 {
     proto=3D1; x=3D31.44mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501847 {
     proto=3D1; x=3D31.44mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501848 {
     proto=3D1; x=3D31.44mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501849 {
     proto=3D1; x=3D31.44mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501852 {
     proto=3D1; x=3D35.25mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501853 {
     proto=3D1; x=3D35.25mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501854 {
     proto=3D1; x=3D35.25mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501855 {
     proto=3D1; x=3D35.25mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501858 {
     proto=3D1; x=3D39.06mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501859 {
     proto=3D1; x=3D39.06mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501860 {
     proto=3D1; x=3D39.06mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501861 {
     proto=3D1; x=3D39.06mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501862 {
     proto=3D1; x=3D42.87mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1501863 {
     proto=3D1; x=3D42.87mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619385 {
     proto=3D1; x=3D61.285mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619386 {
     proto=3D1; x=3D62.555mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619388 {
     proto=3D1; x=3D65.095mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619389 {
     proto=3D1; x=3D66.365mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619390 {
     proto=3D1; x=3D62.555mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619392 {
     proto=3D1; x=3D61.285mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619393 {
     proto=3D1; x=3D62.555mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619394 {
     proto=3D1; x=3D62.555mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619395 {
     proto=3D1; x=3D65.095mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619396 {
     proto=3D1; x=3D66.365mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619398 {
     proto=3D1; x=3D62.555mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619399 {
     proto=3D1; x=3D62.555mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619403 {
     proto=3D1; x=3D67.635mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619404 {
     proto=3D1; x=3D67.635mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619407 {
     proto=3D1; x=3D60.65mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619409 {
     proto=3D1; x=3D60.65mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619411 {
     proto=3D1; x=3D60.65mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619412 {
     proto=3D1; x=3D60.65mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619419 {
     proto=3D1; x=3D68.27mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619421 {
     proto=3D1; x=3D67.635mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619422 {
     proto=3D1; x=3D67.635mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791249 {
     proto=3D1; x=3D140.095mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791250 {
     proto=3D1; x=3D141.365mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791252 {
     proto=3D1; x=3D140.095mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791253 {
     proto=3D1; x=3D138.825mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791254 {
     proto=3D1; x=3D141.365mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791325 {
     proto=3D1; x=3D43.505mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791330 {
     proto=3D1; x=3D44.775mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791412 {
     proto=3D1; x=3D23.185mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791416 {
     proto=3D1; x=3D20.645mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791582 {
     proto=3D1; x=3D24.455mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791617 {
     proto=3D1; x=3D21.915mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1791682 {
     proto=3D1; x=3D23.185mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1805689 {
     proto=3D1; x=3D138.825mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1813133 {
     proto=3D1; x=3D138.825mm; y=3D97.667mm; rot=3D180.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1813137 {
     proto=3D1; x=3D138.825mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1820387 {
     proto=3D1; x=3D141.365mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1820826 {
     proto=3D1; x=3D143.905mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1820830 {
     proto=3D1; x=3D143.905mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1820834 {
     proto=3D1; x=3D141.365mm; y=3D97.667mm; rot=3D180.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1828082 {
     proto=3D1; x=3D20.645mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1828083 {
     proto=3D1; x=3D23.185mm; y=3D97.665mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1828085 {
     proto=3D1; x=3D24.455mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1861586 {
     proto=3D1; x=3D23.185mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869509 {
     proto=3D1; x=3D40.965mm; y=3D89.0945mm; rot=3D270.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869511 {
     proto=3D1; x=3D42.9425mm; y=3D89.0945mm; rot=3D-90.000000; xmirror=3D0=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869512 {
     proto=3D1; x=3D39.06mm; y=3D89.0945mm; rot=3D270.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869513 {
     proto=3D1; x=3D37.155mm; y=3D89.0945mm; rot=3D270.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869514 {
     proto=3D1; x=3D35.25mm; y=3D89.0945mm; rot=3D270.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869627 {
     proto=3D1; x=3D29.535mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869629 {
     proto=3D1; x=3D27.5575mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D=
1; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869630 {
     proto=3D1; x=3D31.44mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869631 {
     proto=3D1; x=3D33.345mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1869632 {
     proto=3D1; x=3D35.25mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876729 {
     proto=3D1; x=3D52.0825mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876731 {
     proto=3D1; x=3D53.0375mm; y=3D88.6995mm; rot=3D-180.000000; xmirror=3D=
1; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876737 {
     proto=3D1; x=3D51.13mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; smi=
rror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876738 {
     proto=3D1; x=3D50.1775mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876751 {
     proto=3D1; x=3D49.225mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876752 {
     proto=3D1; x=3D48.2725mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876760 {
     proto=3D1; x=3D47.32mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; smi=
rror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876761 {
     proto=3D1; x=3D46.3675mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1876797 {
     proto=3D1; x=3D44.655mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1883826 {
     proto=3D1; x=3D45.5125mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1883829 {
     proto=3D1; x=3D43.7975mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884637 {
     proto=3D1; x=3D18.4175mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884639 {
     proto=3D1; x=3D687.5mil; y=3D88.6995mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884645 {
     proto=3D1; x=3D19.37mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884646 {
     proto=3D1; x=3D20.3225mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884651 {
     proto=3D1; x=3D21.275mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884652 {
     proto=3D1; x=3D22.2275mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884658 {
     proto=3D1; x=3D23.18mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884659 {
     proto=3D1; x=3D24.1325mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884664 {
     proto=3D1; x=3D25.845mm; y=3D89.022mm; rot=3D-180.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884672 {
     proto=3D1; x=3D24.9875mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1884674 {
     proto=3D1; x=3D26.7025mm; y=3D89.022mm; rot=3D0.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1885789 {
     proto=3D1; x=3D23.185mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1885995 {
     proto=3D1; x=3D23.185mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1886791 {
     proto=3D1; x=3D20.645mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1910358 {
     proto=3D1; x=3D94.375mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1910362 {
     proto=3D1; x=3D131.205mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1910365 {
     proto=3D1; x=3D135.015mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1917483 {
     proto=3D1; x=3D43.505mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1926089 {
     proto=3D93; x=3D156.005mm; y=3D93.0mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.2mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1926090 {
     proto=3D93; x=3D81.005mm; y=3D93.0mm; rot=3D-90.000000; xmirror=3D1; s=
mirror=3D0; clearance=3D0.2mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1926091 {
     proto=3D93; x=3D6.005mm; y=3D93.0mm; rot=3D-90.000000; xmirror=3D1; sm=
irror=3D0; clearance=3D0.2mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933744 {
     proto=3D1; x=3D26.36mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933746 {
     proto=3D1; x=3D26.36mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933747 {
     proto=3D1; x=3D26.36mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933748 {
     proto=3D1; x=3D26.36mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933749 {
     proto=3D1; x=3D26.36mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933750 {
     proto=3D1; x=3D26.36mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1933751 {
     proto=3D1; x=3D26.36mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941386 {
     proto=3D1; x=3D28.265mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941427 {
     proto=3D1; x=3D135.65mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941428 {
     proto=3D1; x=3D135.65mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941429 {
     proto=3D1; x=3D135.65mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941430 {
     proto=3D1; x=3D135.65mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941431 {
     proto=3D1; x=3D135.65mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941432 {
     proto=3D1; x=3D135.65mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941433 {
     proto=3D1; x=3D135.65mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941459 {
     proto=3D1; x=3D134.38mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941460 {
     proto=3D1; x=3D134.38mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941461 {
     proto=3D1; x=3D134.38mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941476 {
     proto=3D1; x=3D31.44mm; y=3D93.857mm; rot=3D180.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941480 {
     proto=3D1; x=3D35.25mm; y=3D93.857mm; rot=3D180.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941482 {
     proto=3D1; x=3D39.06mm; y=3D93.857mm; rot=3D180.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941530 {
     proto=3D1; x=3D54.935mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1941608 {
     proto=3D1; x=3D43.505mm; y=3D95.127mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043772 {
     proto=3D1; x=3D67.635mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043774 {
     proto=3D1; x=3D66.365mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043775 {
     proto=3D1; x=3D66.365mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043776 {
     proto=3D1; x=3D66.365mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043777 {
     proto=3D1; x=3D66.365mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043778 {
     proto=3D1; x=3D64.46mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043779 {
     proto=3D1; x=3D64.46mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043781 {
     proto=3D1; x=3D64.46mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043782 {
     proto=3D1; x=3D64.46mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043783 {
     proto=3D1; x=3D64.1425mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043784 {
     proto=3D1; x=3D66.0475mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043785 {
     proto=3D1; x=3D66.6825mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043786 {
     proto=3D1; x=3D64.7775mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2043836 {
     proto=3D1; x=3D67.9525mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044146 {
     proto=3D1; x=3D62.2375mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044261 {
     proto=3D1; x=3D62.8725mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044262 {
     proto=3D1; x=3D60.9675mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044266 {
     proto=3D1; x=3D60.3325mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044467 {
     proto=3D1; x=3D29.8525mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044468 {
     proto=3D1; x=3D27.9475mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044469 {
     proto=3D1; x=3D33.6625mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044470 {
     proto=3D1; x=3D31.7575mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044471 {
     proto=3D1; x=3D37.4725mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044472 {
     proto=3D1; x=3D35.5675mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044473 {
     proto=3D1; x=3D41.2825mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044474 {
     proto=3D1; x=3D39.3775mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044477 {
     proto=3D1; x=3D31.1225mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044478 {
     proto=3D1; x=3D29.2175mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044479 {
     proto=3D1; x=3D34.9325mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044480 {
     proto=3D1; x=3D33.0275mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044481 {
     proto=3D1; x=3D38.7425mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044482 {
     proto=3D1; x=3D36.8375mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044483 {
     proto=3D1; x=3D42.5525mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2044484 {
     proto=3D1; x=3D40.6475mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052106 {
     proto=3D1; x=3D27.3125mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052112 {
     proto=3D1; x=3D30.805mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052114 {
     proto=3D1; x=3D34.615mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052115 {
     proto=3D1; x=3D38.425mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052116 {
     proto=3D1; x=3D42.235mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052123 {
     proto=3D1; x=3D63.825mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052124 {
     proto=3D1; x=3D67.635mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052127 {
     proto=3D1; x=3D46.045mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052128 {
     proto=3D1; x=3D46.045mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052130 {
     proto=3D1; x=3D46.045mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052131 {
     proto=3D1; x=3D46.045mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052132 {
     proto=3D1; x=3D46.045mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052135 {
     proto=3D1; x=3D44.775mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052136 {
     proto=3D1; x=3D44.775mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052137 {
     proto=3D1; x=3D44.775mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052138 {
     proto=3D1; x=3D48.585mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052139 {
     proto=3D1; x=3D48.585mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052140 {
     proto=3D1; x=3D48.585mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052141 {
     proto=3D1; x=3D47.315mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052142 {
     proto=3D1; x=3D48.585mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052143 {
     proto=3D1; x=3D49.855mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052144 {
     proto=3D1; x=3D49.855mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052145 {
     proto=3D1; x=3D49.855mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052146 {
     proto=3D1; x=3D49.855mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052147 {
     proto=3D1; x=3D49.855mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052148 {
     proto=3D1; x=3D51.125mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052149 {
     proto=3D1; x=3D52.395mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052150 {
     proto=3D1; x=3D52.395mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052151 {
     proto=3D1; x=3D52.395mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052152 {
     proto=3D1; x=3D53.665mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052153 {
     proto=3D1; x=3D53.665mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052154 {
     proto=3D1; x=3D53.665mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052155 {
     proto=3D1; x=3D53.665mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052156 {
     proto=3D1; x=3D53.665mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052157 {
     proto=3D1; x=3D52.395mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052158 {
     proto=3D1; x=3D56.205mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052159 {
     proto=3D1; x=3D57.475mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052160 {
     proto=3D1; x=3D57.475mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052161 {
     proto=3D1; x=3D57.475mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052162 {
     proto=3D1; x=3D57.475mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052163 {
     proto=3D1; x=3D56.205mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052164 {
     proto=3D1; x=3D57.475mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052166 {
     proto=3D1; x=3D56.205mm; y=3D96.397mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052167 {
     proto=3D1; x=3D56.205mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052168 {
     proto=3D1; x=3D60.015mm; y=3D98.937mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052169 {
     proto=3D1; x=3D60.015mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2052171 {
     proto=3D1; x=3D60.015mm; y=3D100.207mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2059359 {
     proto=3D1; x=3D137.555mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2059360 {
     proto=3D1; x=3D137.555mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2059393 {
     proto=3D1; x=3D24.455mm; y=3D90.047mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2059394 {
     proto=3D1; x=3D24.455mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073819 {
     proto=3D1; x=3D44.775mm; y=3D93.857mm; rot=3D0.000000; xmirror=3D1; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073821 {
     proto=3D1; x=3D43.505mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073829 {
     proto=3D1; x=3D44.775mm; y=3D92.587mm; rot=3D0.000000; xmirror=3D1; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073833 {
     proto=3D1; x=3D44.775mm; y=3D90.047mm; rot=3D0.000000; xmirror=3D1; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073837 {
     proto=3D1; x=3D44.775mm; y=3D91.317mm; rot=3D0.000000; xmirror=3D1; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073841 {
     proto=3D95; x=3D40.005mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2073839 {
     proto=3D95; x=3D40.655mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090270 {
     proto=3D95; x=3D41.925mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090271 {
     proto=3D95; x=3D1.625in; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090334 {
     proto=3D95; x=3D36.195mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090335 {
     proto=3D95; x=3D36.845mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090366 {
     proto=3D95; x=3D1.275in; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090367 {
     proto=3D95; x=3D33.035mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090398 {
     proto=3D95; x=3D1.125in; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090399 {
     proto=3D95; x=3D29.225mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090430 {
     proto=3D95; x=3D2.425in; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090431 {
     proto=3D95; x=3D62.245mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090462 {
     proto=3D95; x=3D65.405mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090463 {
     proto=3D95; x=3D66.055mm; y=3D97.667mm; rot=3D90.000000; xmirror=3D0; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090526 {
     proto=3D95; x=3D38.115mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090527 {
     proto=3D95; x=3D37.465mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090558 {
     proto=3D95; x=3D34.305mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090559 {
     proto=3D95; x=3D33.655mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090591 {
     proto=3D95; x=3D1.175in; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090654 {
     proto=3D95; x=3D63.515mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090655 {
     proto=3D95; x=3D62.865mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090686 {
     proto=3D95; x=3D67.325mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090687 {
     proto=3D95; x=3D2.625in; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163313 {
     proto=3D1; x=3D62.555mm; y=3D90.047mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163338 {
     proto=3D1; x=3D64.46mm; y=3D89.0945mm; rot=3D-90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163349 {
     proto=3D1; x=3D60.305mm; y=3D89.0945mm; rot=3D90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163350 {
     proto=3D1; x=3D68.615mm; y=3D89.0945mm; rot=3D90.000000; xmirror=3D1; =
smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163352 {
     proto=3D1; x=3D62.555mm; y=3D89.0945mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163353 {
     proto=3D1; x=3D66.365mm; y=3D89.0945mm; rot=3D-270.000000; xmirror=3D1=
; smirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163314 {
     proto=3D1; x=3D64.46mm; y=3D90.047mm; rot=3D-90.000000; xmirror=3D1; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163315 {
     proto=3D1; x=3D60.65mm; y=3D90.047mm; rot=3D-90.000000; xmirror=3D1; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2163316 {
     proto=3D1; x=3D66.365mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; s=
mirror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.1619420 {
     proto=3D1; x=3D68.27mm; y=3D90.047mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D5.0mil;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:2 {
        on =20
        solid =20
        noshape =20
       }
       li:3 {
        on =20
        solid =20
        noshape =20
       }
       li:4 {
        on =20
        solid =20
        noshape =20
       }
       li:5 {
        on =20
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2417239 {
     proto=3D1; x=3D93.74mm; y=3D95.127mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2417245 {
     proto=3D1; x=3D93.74mm; y=3D91.317mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2417247 {
     proto=3D1; x=3D93.74mm; y=3D92.587mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2417248 {
     proto=3D1; x=3D93.74mm; y=3D93.857mm; rot=3D90.000000; xmirror=3D0; sm=
irror=3D0; clearance=3D0.15mm;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
    ha:padstack_ref.2090590 {
     proto=3D95; x=3D30.495mm; y=3D92.587mm; rot=3D-90.000000; xmirror=3D1;=
 smirror=3D0; clearance=3D0.0;
     ha:flags {
      clearline=3D1
     }
 
     li:thermal {
       li:1 {
        on =20
        diag =20
        round =20
        noshape =20
       }
       li:2 {
        solid =20
        noshape =20
       }
       li:3 {
        solid =20
        noshape =20
       }
       li:4 {
        solid =20
        noshape =20
       }
       li:5 {
        solid =20
        noshape =20
       }
     }
    }
     ha:subc.1495233 {
      ha:attributes {
       vendor_part_number=3Dunknown
       vendor=3Dunknown
       manufacturer_part_number=3Dunknown
       device=3DLPAM_40_8
       refdes=3DP2
       manufacturer=3Dunknown
      }
     ha:data {
          li:padstack_prototypes {
 
      ha:ps_proto_v6.0 {
        hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
        li:shape {
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            top =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D31.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;           }
           ha:combining { auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            paste =3D 1
           }
           clearance=3D0.0
          }
        }
      }
 
      ha:ps_proto_v6.1 {
        hdia=3D57.0mil; hplated=3D1; htop=3D0; hbottom=3D0;
        li:shape {
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            top =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            bottom =3D 1
            copper =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            intern =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            bottom =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
        }
      }
     }
 
      li:objects {
       ha:padstack_ref.1495259 {
        proto=3D0; x=3D93.74mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH1
          name=3DDAC_AVTT
        }
       }
       ha:padstack_ref.1495260 {
        proto=3D0; x=3D93.74mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG1
          name=3DDAC_AVTT
        }
       }
       ha:padstack_ref.1495261 {
        proto=3D0; x=3D93.74mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF1
        }
       }
       ha:padstack_ref.1495262 {
        proto=3D0; x=3D93.74mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE1
          name=3DVCC12_SW
        }
       }
       ha:padstack_ref.1495263 {
        proto=3D0; x=3D93.74mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD1
          name=3DVCC12_SW
        }
       }
       ha:padstack_ref.1495264 {
        proto=3D0; x=3D93.74mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC1
          name=3DVCC12_SW
        }
       }
       ha:padstack_ref.1495265 {
        proto=3D0; x=3D93.74mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB1
          name=3DVCC12_SW
        }
       }
       ha:padstack_ref.1495266 {
        proto=3D0; x=3D93.74mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA1
          name=3DVCC12_SW
        }
       }
       ha:padstack_ref.1495267 {
        proto=3D0; x=3D95.01mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH2
          name=3DDAC_AVTT
        }
       }
       ha:padstack_ref.1495268 {
        proto=3D0; x=3D95.01mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG2
          name=3DDAC_AVTT
        }
       }
       ha:padstack_ref.1495269 {
        proto=3D0; x=3D95.01mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF2
        }
       }
       ha:padstack_ref.1495270 {
        proto=3D0; x=3D95.01mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE2
        }
       }
       ha:padstack_ref.1495271 {
        proto=3D0; x=3D95.01mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD2
        }
       }
       ha:padstack_ref.1495272 {
        proto=3D0; x=3D95.01mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC2
        }
       }
       ha:padstack_ref.1495273 {
        proto=3D0; x=3D95.01mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB2
        }
       }
       ha:padstack_ref.1495274 {
        proto=3D0; x=3D95.01mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA2
        }
       }
       ha:padstack_ref.1495275 {
        proto=3D0; x=3D96.28mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH3
        }
       }
       ha:padstack_ref.1495276 {
        proto=3D0; x=3D96.28mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG3
        }
       }
       ha:padstack_ref.1495277 {
        proto=3D0; x=3D96.28mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF3
        }
       }
       ha:padstack_ref.1495278 {
        proto=3D0; x=3D96.28mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE3
        }
       }
       ha:padstack_ref.1495279 {
        proto=3D0; x=3D96.28mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD3
        }
       }
       ha:padstack_ref.1495280 {
        proto=3D0; x=3D96.28mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC3
        }
       }
       ha:padstack_ref.1495281 {
        proto=3D0; x=3D96.28mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB3
        }
       }
       ha:padstack_ref.1495282 {
        proto=3D0; x=3D96.28mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA3
        }
       }
       ha:padstack_ref.1495283 {
        proto=3D0; x=3D97.55mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH4
        }
       }
       ha:padstack_ref.1495284 {
        proto=3D0; x=3D97.55mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG4
        }
       }
       ha:padstack_ref.1495285 {
        proto=3D0; x=3D97.55mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF4
        }
       }
       ha:padstack_ref.1495286 {
        proto=3D0; x=3D97.55mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE4
        }
       }
       ha:padstack_ref.1495287 {
        proto=3D0; x=3D97.55mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD4
        }
       }
       ha:padstack_ref.1495288 {
        proto=3D0; x=3D97.55mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC4
        }
       }
       ha:padstack_ref.1495289 {
        proto=3D0; x=3D97.55mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB4
        }
       }
       ha:padstack_ref.1495290 {
        proto=3D0; x=3D97.55mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA4
        }
       }
       ha:padstack_ref.1495291 {
        proto=3D0; x=3D98.82mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH5
        }
       }
       ha:padstack_ref.1495292 {
        proto=3D0; x=3D98.82mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG5
        }
       }
       ha:padstack_ref.1495293 {
        proto=3D0; x=3D98.82mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF5
        }
       }
       ha:padstack_ref.1495294 {
        proto=3D0; x=3D98.82mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE5
        }
       }
       ha:padstack_ref.1495295 {
        proto=3D0; x=3D98.82mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD5
        }
       }
       ha:padstack_ref.1495296 {
        proto=3D0; x=3D98.82mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC5
        }
       }
       ha:padstack_ref.1495297 {
        proto=3D0; x=3D98.82mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB5
        }
       }
       ha:padstack_ref.1495298 {
        proto=3D0; x=3D98.82mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA5
        }
       }
       ha:padstack_ref.1495299 {
        proto=3D0; x=3D100.09mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH6
        }
       }
       ha:padstack_ref.1495300 {
        proto=3D0; x=3D100.09mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG6
        }
       }
       ha:padstack_ref.1495301 {
        proto=3D0; x=3D100.09mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF6
        }
       }
       ha:padstack_ref.1495302 {
        proto=3D0; x=3D100.09mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE6
        }
       }
       ha:padstack_ref.1495303 {
        proto=3D0; x=3D100.09mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD6
        }
       }
       ha:padstack_ref.1495304 {
        proto=3D0; x=3D100.09mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC6
        }
       }
       ha:padstack_ref.1495305 {
        proto=3D0; x=3D100.09mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB6
        }
       }
       ha:padstack_ref.1495306 {
        proto=3D0; x=3D100.09mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA6
        }
       }
       ha:padstack_ref.1495307 {
        proto=3D0; x=3D101.36mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH7
        }
       }
       ha:padstack_ref.1495308 {
        proto=3D0; x=3D101.36mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG7
        }
       }
       ha:padstack_ref.1495309 {
        proto=3D0; x=3D101.36mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF7
        }
       }
       ha:padstack_ref.1495310 {
        proto=3D0; x=3D101.36mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE7
        }
       }
       ha:padstack_ref.1495311 {
        proto=3D0; x=3D101.36mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD7
        }
       }
       ha:padstack_ref.1495312 {
        proto=3D0; x=3D101.36mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC7
        }
       }
       ha:padstack_ref.1495313 {
        proto=3D0; x=3D101.36mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB7
        }
       }
       ha:padstack_ref.1495314 {
        proto=3D0; x=3D101.36mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA7
        }
       }
       ha:padstack_ref.1495315 {
        proto=3D0; x=3D102.63mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH8
        }
       }
       ha:padstack_ref.1495316 {
        proto=3D0; x=3D102.63mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG8
        }
       }
       ha:padstack_ref.1495317 {
        proto=3D0; x=3D102.63mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF8
        }
       }
       ha:padstack_ref.1495318 {
        proto=3D0; x=3D102.63mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE8
        }
       }
       ha:padstack_ref.1495319 {
        proto=3D0; x=3D102.63mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD8
        }
       }
       ha:padstack_ref.1495320 {
        proto=3D0; x=3D102.63mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC8
        }
       }
       ha:padstack_ref.1495321 {
        proto=3D0; x=3D102.63mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB8
        }
       }
       ha:padstack_ref.1495322 {
        proto=3D0; x=3D102.63mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA8
        }
       }
       ha:padstack_ref.1495323 {
        proto=3D0; x=3D103.9mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH9
        }
       }
       ha:padstack_ref.1495324 {
        proto=3D0; x=3D103.9mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG9
        }
       }
       ha:padstack_ref.1495325 {
        proto=3D0; x=3D103.9mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF9
        }
       }
       ha:padstack_ref.1495326 {
        proto=3D0; x=3D103.9mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE9
        }
       }
       ha:padstack_ref.1495327 {
        proto=3D0; x=3D103.9mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD9
        }
       }
       ha:padstack_ref.1495328 {
        proto=3D0; x=3D103.9mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC9
        }
       }
       ha:padstack_ref.1495329 {
        proto=3D0; x=3D103.9mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB9
        }
       }
       ha:padstack_ref.1495330 {
        proto=3D0; x=3D103.9mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA9
        }
       }
       ha:padstack_ref.1495331 {
        proto=3D0; x=3D105.17mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH10
        }
       }
       ha:padstack_ref.1495332 {
        proto=3D0; x=3D105.17mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG10
        }
       }
       ha:padstack_ref.1495333 {
        proto=3D0; x=3D105.17mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF10
        }
       }
       ha:padstack_ref.1495334 {
        proto=3D0; x=3D105.17mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE10
        }
       }
       ha:padstack_ref.1495335 {
        proto=3D0; x=3D105.17mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD10
        }
       }
       ha:padstack_ref.1495336 {
        proto=3D0; x=3D105.17mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC10
        }
       }
       ha:padstack_ref.1495337 {
        proto=3D0; x=3D105.17mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB10
        }
       }
       ha:padstack_ref.1495338 {
        proto=3D0; x=3D105.17mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA10
        }
       }
       ha:padstack_ref.1495339 {
        proto=3D0; x=3D106.44mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH11
        }
       }
       ha:padstack_ref.1495340 {
        proto=3D0; x=3D106.44mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG11
        }
       }
       ha:padstack_ref.1495341 {
        proto=3D0; x=3D106.44mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF11
        }
       }
       ha:padstack_ref.1495342 {
        proto=3D0; x=3D106.44mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE11
        }
       }
       ha:padstack_ref.1495343 {
        proto=3D0; x=3D106.44mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD11
        }
       }
       ha:padstack_ref.1495344 {
        proto=3D0; x=3D106.44mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC11
        }
       }
       ha:padstack_ref.1495345 {
        proto=3D0; x=3D106.44mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB11
        }
       }
       ha:padstack_ref.1495346 {
        proto=3D0; x=3D106.44mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA11
        }
       }
       ha:padstack_ref.1495347 {
        proto=3D0; x=3D107.71mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH12
        }
       }
       ha:padstack_ref.1495348 {
        proto=3D0; x=3D107.71mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG12
        }
       }
       ha:padstack_ref.1495349 {
        proto=3D0; x=3D107.71mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF12
        }
       }
       ha:padstack_ref.1495350 {
        proto=3D0; x=3D107.71mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE12
        }
       }
       ha:padstack_ref.1495351 {
        proto=3D0; x=3D107.71mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD12
        }
       }
       ha:padstack_ref.1495352 {
        proto=3D0; x=3D107.71mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC12
        }
       }
       ha:padstack_ref.1495353 {
        proto=3D0; x=3D107.71mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB12
        }
       }
       ha:padstack_ref.1495354 {
        proto=3D0; x=3D107.71mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA12
        }
       }
       ha:padstack_ref.1495355 {
        proto=3D0; x=3D108.98mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH13
        }
       }
       ha:padstack_ref.1495356 {
        proto=3D0; x=3D108.98mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG13
        }
       }
       ha:padstack_ref.1495357 {
        proto=3D0; x=3D108.98mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF13
        }
       }
       ha:padstack_ref.1495358 {
        proto=3D0; x=3D108.98mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE13
        }
       }
       ha:padstack_ref.1495359 {
        proto=3D0; x=3D108.98mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD13
        }
       }
       ha:padstack_ref.1495360 {
        proto=3D0; x=3D108.98mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC13
        }
       }
       ha:padstack_ref.1495361 {
        proto=3D0; x=3D108.98mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB13
        }
       }
       ha:padstack_ref.1495362 {
        proto=3D0; x=3D108.98mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA13
        }
       }
       ha:padstack_ref.1495363 {
        proto=3D0; x=3D110.25mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH14
        }
       }
       ha:padstack_ref.1495364 {
        proto=3D0; x=3D110.25mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG14
        }
       }
       ha:padstack_ref.1495365 {
        proto=3D0; x=3D110.25mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF14
        }
       }
       ha:padstack_ref.1495366 {
        proto=3D0; x=3D110.25mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE14
        }
       }
       ha:padstack_ref.1495367 {
        proto=3D0; x=3D110.25mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD14
        }
       }
       ha:padstack_ref.1495368 {
        proto=3D0; x=3D110.25mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC14
        }
       }
       ha:padstack_ref.1495369 {
        proto=3D0; x=3D110.25mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB14
        }
       }
       ha:padstack_ref.1495370 {
        proto=3D0; x=3D110.25mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA14
        }
       }
       ha:padstack_ref.1495371 {
        proto=3D0; x=3D111.52mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH15
        }
       }
       ha:padstack_ref.1495372 {
        proto=3D0; x=3D111.52mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG15
        }
       }
       ha:padstack_ref.1495373 {
        proto=3D0; x=3D111.52mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF15
        }
       }
       ha:padstack_ref.1495374 {
        proto=3D0; x=3D111.52mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE15
        }
       }
       ha:padstack_ref.1495375 {
        proto=3D0; x=3D111.52mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD15
        }
       }
       ha:padstack_ref.1495376 {
        proto=3D0; x=3D111.52mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC15
        }
       }
       ha:padstack_ref.1495377 {
        proto=3D0; x=3D111.52mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB15
        }
       }
       ha:padstack_ref.1495378 {
        proto=3D0; x=3D111.52mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA15
        }
       }
       ha:padstack_ref.1495379 {
        proto=3D0; x=3D112.79mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH16
        }
       }
       ha:padstack_ref.1495380 {
        proto=3D0; x=3D112.79mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG16
        }
       }
       ha:padstack_ref.1495381 {
        proto=3D0; x=3D112.79mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF16
        }
       }
       ha:padstack_ref.1495382 {
        proto=3D0; x=3D112.79mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE16
        }
       }
       ha:padstack_ref.1495383 {
        proto=3D0; x=3D112.79mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD16
        }
       }
       ha:padstack_ref.1495384 {
        proto=3D0; x=3D112.79mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC16
        }
       }
       ha:padstack_ref.1495385 {
        proto=3D0; x=3D112.79mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB16
        }
       }
       ha:padstack_ref.1495386 {
        proto=3D0; x=3D112.79mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA16
        }
       }
       ha:padstack_ref.1495387 {
        proto=3D0; x=3D114.06mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH17
        }
       }
       ha:padstack_ref.1495388 {
        proto=3D0; x=3D114.06mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG17
        }
       }
       ha:padstack_ref.1495389 {
        proto=3D0; x=3D114.06mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF17
        }
       }
       ha:padstack_ref.1495390 {
        proto=3D0; x=3D114.06mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE17
        }
       }
       ha:padstack_ref.1495391 {
        proto=3D0; x=3D114.06mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD17
        }
       }
       ha:padstack_ref.1495392 {
        proto=3D0; x=3D114.06mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC17
        }
       }
       ha:padstack_ref.1495393 {
        proto=3D0; x=3D114.06mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB17
        }
       }
       ha:padstack_ref.1495394 {
        proto=3D0; x=3D114.06mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA17
        }
       }
       ha:padstack_ref.1495395 {
        proto=3D0; x=3D115.33mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH18
        }
       }
       ha:padstack_ref.1495396 {
        proto=3D0; x=3D115.33mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG18
        }
       }
       ha:padstack_ref.1495397 {
        proto=3D0; x=3D115.33mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF18
        }
       }
       ha:padstack_ref.1495398 {
        proto=3D0; x=3D115.33mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE18
        }
       }
       ha:padstack_ref.1495399 {
        proto=3D0; x=3D115.33mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD18
        }
       }
       ha:padstack_ref.1495400 {
        proto=3D0; x=3D115.33mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC18
        }
       }
       ha:padstack_ref.1495401 {
        proto=3D0; x=3D115.33mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB18
        }
       }
       ha:padstack_ref.1495402 {
        proto=3D0; x=3D115.33mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA18
        }
       }
       ha:padstack_ref.1495403 {
        proto=3D0; x=3D116.6mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH19
        }
       }
       ha:padstack_ref.1495404 {
        proto=3D0; x=3D116.6mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG19
        }
       }
       ha:padstack_ref.1495405 {
        proto=3D0; x=3D116.6mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF19
        }
       }
       ha:padstack_ref.1495406 {
        proto=3D0; x=3D116.6mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE19
        }
       }
       ha:padstack_ref.1495407 {
        proto=3D0; x=3D116.6mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD19
        }
       }
       ha:padstack_ref.1495408 {
        proto=3D0; x=3D116.6mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC19
        }
       }
       ha:padstack_ref.1495409 {
        proto=3D0; x=3D116.6mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB19
        }
       }
       ha:padstack_ref.1495410 {
        proto=3D0; x=3D117.87mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH20
        }
       }
       ha:padstack_ref.1495411 {
        proto=3D0; x=3D117.87mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG20
        }
       }
       ha:padstack_ref.1495412 {
        proto=3D0; x=3D117.87mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF20
        }
       }
       ha:padstack_ref.1495413 {
        proto=3D0; x=3D117.87mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE20
        }
       }
       ha:padstack_ref.1495414 {
        proto=3D0; x=3D117.87mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD20
        }
       }
       ha:padstack_ref.1495415 {
        proto=3D0; x=3D117.87mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC20
        }
       }
       ha:padstack_ref.1495416 {
        proto=3D0; x=3D117.87mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB20
        }
       }
       ha:padstack_ref.1495417 {
        proto=3D0; x=3D117.87mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA20
        }
       }
       ha:padstack_ref.1495418 {
        proto=3D0; x=3D119.14mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH21
        }
       }
       ha:padstack_ref.1495419 {
        proto=3D0; x=3D119.14mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG21
        }
       }
       ha:padstack_ref.1495420 {
        proto=3D0; x=3D119.14mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF21
        }
       }
       ha:padstack_ref.1495421 {
        proto=3D0; x=3D119.14mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE21
        }
       }
       ha:padstack_ref.1495422 {
        proto=3D0; x=3D119.14mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD21
        }
       }
       ha:padstack_ref.1495423 {
        proto=3D0; x=3D119.14mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC21
        }
       }
       ha:padstack_ref.1495424 {
        proto=3D0; x=3D119.14mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB21
        }
       }
       ha:padstack_ref.1495425 {
        proto=3D0; x=3D119.14mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA21
        }
       }
       ha:padstack_ref.1495426 {
        proto=3D0; x=3D120.41mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH22
        }
       }
       ha:padstack_ref.1495427 {
        proto=3D0; x=3D120.41mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG22
        }
       }
       ha:padstack_ref.1495428 {
        proto=3D0; x=3D120.41mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF22
        }
       }
       ha:padstack_ref.1495429 {
        proto=3D0; x=3D120.41mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE22
        }
       }
       ha:padstack_ref.1495430 {
        proto=3D0; x=3D120.41mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD22
        }
       }
       ha:padstack_ref.1495431 {
        proto=3D0; x=3D120.41mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC22
        }
       }
       ha:padstack_ref.1495432 {
        proto=3D0; x=3D120.41mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB22
        }
       }
       ha:padstack_ref.1495433 {
        proto=3D0; x=3D120.41mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA22
        }
       }
       ha:padstack_ref.1495434 {
        proto=3D0; x=3D121.68mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH23
        }
       }
       ha:padstack_ref.1495435 {
        proto=3D0; x=3D121.68mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG23
        }
       }
       ha:padstack_ref.1495436 {
        proto=3D0; x=3D121.68mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF23
        }
       }
       ha:padstack_ref.1495437 {
        proto=3D0; x=3D121.68mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE23
        }
       }
       ha:padstack_ref.1495438 {
        proto=3D0; x=3D121.68mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD23
        }
       }
       ha:padstack_ref.1495439 {
        proto=3D0; x=3D121.68mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC23
        }
       }
       ha:padstack_ref.1495440 {
        proto=3D0; x=3D121.68mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB23
        }
       }
       ha:padstack_ref.1495441 {
        proto=3D0; x=3D121.68mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA23
        }
       }
       ha:padstack_ref.1495442 {
        proto=3D0; x=3D122.95mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH24
        }
       }
       ha:padstack_ref.1495443 {
        proto=3D0; x=3D122.95mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG24
        }
       }
       ha:padstack_ref.1495444 {
        proto=3D0; x=3D122.95mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF24
        }
       }
       ha:padstack_ref.1495445 {
        proto=3D0; x=3D122.95mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE24
        }
       }
       ha:padstack_ref.1495446 {
        proto=3D0; x=3D122.95mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD24
        }
       }
       ha:padstack_ref.1495447 {
        proto=3D0; x=3D122.95mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC24
        }
       }
       ha:padstack_ref.1495448 {
        proto=3D0; x=3D122.95mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB24
        }
       }
       ha:padstack_ref.1495449 {
        proto=3D0; x=3D122.95mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA24
        }
       }
       ha:padstack_ref.1495450 {
        proto=3D0; x=3D124.22mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH25
        }
       }
       ha:padstack_ref.1495451 {
        proto=3D0; x=3D124.22mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG25
        }
       }
       ha:padstack_ref.1495452 {
        proto=3D0; x=3D124.22mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF25
        }
       }
       ha:padstack_ref.1495453 {
        proto=3D0; x=3D124.22mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE25
        }
       }
       ha:padstack_ref.1495454 {
        proto=3D0; x=3D124.22mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD25
        }
       }
       ha:padstack_ref.1495455 {
        proto=3D0; x=3D124.22mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC25
        }
       }
       ha:padstack_ref.1495456 {
        proto=3D0; x=3D124.22mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB25
        }
       }
       ha:padstack_ref.1495457 {
        proto=3D0; x=3D124.22mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA25
        }
       }
       ha:padstack_ref.1495458 {
        proto=3D0; x=3D125.49mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH26
        }
       }
       ha:padstack_ref.1495459 {
        proto=3D0; x=3D125.49mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG26
        }
       }
       ha:padstack_ref.1495460 {
        proto=3D0; x=3D125.49mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF26
        }
       }
       ha:padstack_ref.1495461 {
        proto=3D0; x=3D125.49mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE26
        }
       }
       ha:padstack_ref.1495462 {
        proto=3D0; x=3D125.49mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD26
        }
       }
       ha:padstack_ref.1495463 {
        proto=3D0; x=3D125.49mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC26
        }
       }
       ha:padstack_ref.1495464 {
        proto=3D0; x=3D125.49mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB26
        }
       }
       ha:padstack_ref.1495465 {
        proto=3D0; x=3D125.49mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA26
        }
       }
       ha:padstack_ref.1495466 {
        proto=3D0; x=3D126.76mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH27
        }
       }
       ha:padstack_ref.1495467 {
        proto=3D0; x=3D126.76mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG27
        }
       }
       ha:padstack_ref.1495468 {
        proto=3D0; x=3D126.76mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF27
        }
       }
       ha:padstack_ref.1495469 {
        proto=3D0; x=3D126.76mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE27
        }
       }
       ha:padstack_ref.1495470 {
        proto=3D0; x=3D126.76mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD27
        }
       }
       ha:padstack_ref.1495471 {
        proto=3D0; x=3D126.76mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC27
        }
       }
       ha:padstack_ref.1495472 {
        proto=3D0; x=3D126.76mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB27
        }
       }
       ha:padstack_ref.1495473 {
        proto=3D0; x=3D126.76mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA27
        }
       }
       ha:padstack_ref.1495474 {
        proto=3D0; x=3D128.03mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH28
        }
       }
       ha:padstack_ref.1495475 {
        proto=3D0; x=3D128.03mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG28
        }
       }
       ha:padstack_ref.1495476 {
        proto=3D0; x=3D128.03mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF28
        }
       }
       ha:padstack_ref.1495477 {
        proto=3D0; x=3D128.03mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE28
        }
       }
       ha:padstack_ref.1495478 {
        proto=3D0; x=3D128.03mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD28
        }
       }
       ha:padstack_ref.1495479 {
        proto=3D0; x=3D128.03mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC28
        }
       }
       ha:padstack_ref.1495480 {
        proto=3D0; x=3D128.03mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB28
        }
       }
       ha:padstack_ref.1495481 {
        proto=3D0; x=3D128.03mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA28
        }
       }
       ha:padstack_ref.1495482 {
        proto=3D0; x=3D129.3mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH29
        }
       }
       ha:padstack_ref.1495483 {
        proto=3D0; x=3D129.3mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG29
        }
       }
       ha:padstack_ref.1495484 {
        proto=3D0; x=3D129.3mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF29
        }
       }
       ha:padstack_ref.1495485 {
        proto=3D0; x=3D129.3mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE29
        }
       }
       ha:padstack_ref.1495486 {
        proto=3D0; x=3D129.3mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD29
        }
       }
       ha:padstack_ref.1495487 {
        proto=3D0; x=3D129.3mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC29
        }
       }
       ha:padstack_ref.1495488 {
        proto=3D0; x=3D129.3mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB29
        }
       }
       ha:padstack_ref.1495489 {
        proto=3D0; x=3D129.3mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA29
        }
       }
       ha:padstack_ref.1495490 {
        proto=3D0; x=3D130.57mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH30
        }
       }
       ha:padstack_ref.1495491 {
        proto=3D0; x=3D130.57mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG30
        }
       }
       ha:padstack_ref.1495492 {
        proto=3D0; x=3D130.57mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF30
        }
       }
       ha:padstack_ref.1495493 {
        proto=3D0; x=3D130.57mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE30
        }
       }
       ha:padstack_ref.1495494 {
        proto=3D0; x=3D130.57mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD30
        }
       }
       ha:padstack_ref.1495495 {
        proto=3D0; x=3D130.57mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC30
        }
       }
       ha:padstack_ref.1495496 {
        proto=3D0; x=3D130.57mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB30
        }
       }
       ha:padstack_ref.1495497 {
        proto=3D0; x=3D130.57mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA30
        }
       }
       ha:padstack_ref.1495498 {
        proto=3D0; x=3D131.84mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH31
        }
       }
       ha:padstack_ref.1495499 {
        proto=3D0; x=3D131.84mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG31
        }
       }
       ha:padstack_ref.1495500 {
        proto=3D0; x=3D131.84mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF31
        }
       }
       ha:padstack_ref.1495501 {
        proto=3D0; x=3D131.84mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE31
        }
       }
       ha:padstack_ref.1495502 {
        proto=3D0; x=3D131.84mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD31
        }
       }
       ha:padstack_ref.1495503 {
        proto=3D0; x=3D131.84mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC31
        }
       }
       ha:padstack_ref.1495504 {
        proto=3D0; x=3D131.84mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB31
        }
       }
       ha:padstack_ref.1495505 {
        proto=3D0; x=3D131.84mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA31
        }
       }
       ha:padstack_ref.1495506 {
        proto=3D0; x=3D133.11mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH32
        }
       }
       ha:padstack_ref.1495507 {
        proto=3D0; x=3D133.11mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG32
        }
       }
       ha:padstack_ref.1495508 {
        proto=3D0; x=3D133.11mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF32
        }
       }
       ha:padstack_ref.1495509 {
        proto=3D0; x=3D133.11mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE32
        }
       }
       ha:padstack_ref.1495510 {
        proto=3D0; x=3D133.11mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD32
        }
       }
       ha:padstack_ref.1495511 {
        proto=3D0; x=3D133.11mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC32
        }
       }
       ha:padstack_ref.1495512 {
        proto=3D0; x=3D133.11mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB32
        }
       }
       ha:padstack_ref.1495513 {
        proto=3D0; x=3D133.11mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA32
        }
       }
       ha:padstack_ref.1495514 {
        proto=3D0; x=3D134.38mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH33
        }
       }
       ha:padstack_ref.1495515 {
        proto=3D0; x=3D134.38mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG33
        }
       }
       ha:padstack_ref.1495516 {
        proto=3D0; x=3D134.38mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF33
        }
       }
       ha:padstack_ref.1495517 {
        proto=3D0; x=3D134.38mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE33
        }
       }
       ha:padstack_ref.1495518 {
        proto=3D0; x=3D134.38mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD33
        }
       }
       ha:padstack_ref.1495519 {
        proto=3D0; x=3D134.38mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC33
        }
       }
       ha:padstack_ref.1495520 {
        proto=3D0; x=3D134.38mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB33
        }
       }
       ha:padstack_ref.1495521 {
        proto=3D0; x=3D134.38mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA33
        }
       }
       ha:padstack_ref.1495522 {
        proto=3D0; x=3D135.65mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495523 {
        proto=3D0; x=3D135.65mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495524 {
        proto=3D0; x=3D135.65mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495525 {
        proto=3D0; x=3D135.65mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495526 {
        proto=3D0; x=3D135.65mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495527 {
        proto=3D0; x=3D135.65mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495528 {
        proto=3D0; x=3D135.65mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495529 {
        proto=3D0; x=3D135.65mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA34
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.1495530 {
        proto=3D0; x=3D136.92mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH35
        }
       }
       ha:padstack_ref.1495531 {
        proto=3D0; x=3D136.92mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG35
        }
       }
       ha:padstack_ref.1495532 {
        proto=3D0; x=3D136.92mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF35
        }
       }
       ha:padstack_ref.1495533 {
        proto=3D0; x=3D136.92mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE35
        }
       }
       ha:padstack_ref.1495534 {
        proto=3D0; x=3D136.92mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD35
        }
       }
       ha:padstack_ref.1495535 {
        proto=3D0; x=3D136.92mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC35
          name=3DVCC1V8_BUS
        }
       }
       ha:padstack_ref.1495536 {
        proto=3D0; x=3D136.92mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB35
        }
       }
       ha:padstack_ref.1495537 {
        proto=3D0; x=3D136.92mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA35
          name=3DVCC1V8_BUS
        }
       }
       ha:padstack_ref.1495538 {
        proto=3D0; x=3D138.19mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH36
        }
       }
       ha:padstack_ref.1495539 {
        proto=3D0; x=3D138.19mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG36
        }
       }
       ha:padstack_ref.1495540 {
        proto=3D0; x=3D138.19mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF36
        }
       }
       ha:padstack_ref.1495541 {
        proto=3D0; x=3D138.19mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE36
        }
       }
       ha:padstack_ref.1495542 {
        proto=3D0; x=3D138.19mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD36
        }
       }
       ha:padstack_ref.1495543 {
        proto=3D0; x=3D138.19mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC36
        }
       }
       ha:padstack_ref.1495544 {
        proto=3D0; x=3D138.19mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB36
        }
       }
       ha:padstack_ref.1495545 {
        proto=3D0; x=3D138.19mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA36
        }
       }
       ha:padstack_ref.1495546 {
        proto=3D0; x=3D139.46mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH37
        }
       }
       ha:padstack_ref.1495547 {
        proto=3D0; x=3D139.46mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG37
        }
       }
       ha:padstack_ref.1495548 {
        proto=3D0; x=3D139.46mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF37
        }
       }
       ha:padstack_ref.1495549 {
        proto=3D0; x=3D139.46mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE37
        }
       }
       ha:padstack_ref.1495550 {
        proto=3D0; x=3D139.46mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD37
        }
       }
       ha:padstack_ref.1495551 {
        proto=3D0; x=3D139.46mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC37
        }
       }
       ha:padstack_ref.1495552 {
        proto=3D0; x=3D139.46mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB37
        }
       }
       ha:padstack_ref.1495553 {
        proto=3D0; x=3D139.46mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA37
        }
       }
       ha:padstack_ref.1495554 {
        proto=3D0; x=3D140.73mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH38
        }
       }
       ha:padstack_ref.1495555 {
        proto=3D0; x=3D140.73mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG38
        }
       }
       ha:padstack_ref.1495556 {
        proto=3D0; x=3D140.73mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF38
        }
       }
       ha:padstack_ref.1495557 {
        proto=3D0; x=3D140.73mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE38
        }
       }
       ha:padstack_ref.1495558 {
        proto=3D0; x=3D140.73mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD38
        }
       }
       ha:padstack_ref.1495559 {
        proto=3D0; x=3D140.73mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC38
        }
       }
       ha:padstack_ref.1495560 {
        proto=3D0; x=3D140.73mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB38
        }
       }
       ha:padstack_ref.1495561 {
        proto=3D0; x=3D140.73mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA38
        }
       }
       ha:padstack_ref.1495562 {
        proto=3D0; x=3D142.0mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH39
        }
       }
       ha:padstack_ref.1495563 {
        proto=3D0; x=3D142.0mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG39
        }
       }
       ha:padstack_ref.1495564 {
        proto=3D0; x=3D142.0mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF39
        }
       }
       ha:padstack_ref.1495565 {
        proto=3D0; x=3D142.0mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE39
        }
       }
       ha:padstack_ref.1495566 {
        proto=3D0; x=3D142.0mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD39
        }
       }
       ha:padstack_ref.1495567 {
        proto=3D0; x=3D142.0mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC39
        }
       }
       ha:padstack_ref.1495568 {
        proto=3D0; x=3D142.0mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB39
        }
       }
       ha:padstack_ref.1495569 {
        proto=3D0; x=3D142.0mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA39
        }
       }
       ha:padstack_ref.1495570 {
        proto=3D0; x=3D143.27mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH40
        }
       }
       ha:padstack_ref.1495571 {
        proto=3D0; x=3D143.27mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG40
        }
       }
       ha:padstack_ref.1495572 {
        proto=3D0; x=3D143.27mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF40
        }
       }
       ha:padstack_ref.1495573 {
        proto=3D0; x=3D143.27mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE40
        }
       }
       ha:padstack_ref.1495574 {
        proto=3D0; x=3D143.27mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD40
        }
       }
       ha:padstack_ref.1495575 {
        proto=3D0; x=3D143.27mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC40
        }
       }
       ha:padstack_ref.1495576 {
        proto=3D0; x=3D143.27mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB40
        }
       }
       ha:padstack_ref.1495577 {
        proto=3D0; x=3D143.27mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA40
        }
       }
       ha:padstack_ref.1495578 {
        proto=3D0; x=3D116.6mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA19
        }
       }
       ha:padstack_ref.1495579 {
        proto=3D1; x=3D91.5556mm; y=3D92.968mm; rot=3D-180.000000; xmirror=
=3D0; smirror=3D1; clearance=3D6.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
       }
       ha:padstack_ref.1495580 {
        proto=3D1; x=3D145.4544mm; y=3D95.0mm; rot=3D0.000000; xmirror=3D1;=
 smirror=3D1; clearance=3D6.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
       }
      }
      li:layers {
 
       ha:top-silk {
        lid=3D0
        ha:combining { auto=3D1;        }
 
         li:objects {
          ha:line.1495234 {
           x1=3D89.7268mm; y1=3D101.6294mm; x2=3D147.2832mm; y2=3D101.6294m=
m; thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.1495237 {
           x1=3D91.5556mm; y1=3D88.3706mm; x2=3D147.2832mm; y2=3D88.3706mm;=
 thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.1495240 {
           x1=3D147.2832mm; y1=3D101.6294mm; x2=3D147.2832mm; y2=3D88.3706m=
m; thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.1495243 {
           x1=3D89.7268mm; y1=3D101.6294mm; x2=3D89.7268mm; y2=3D90.1994mm;=
 thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.1495246 {
           x1=3D89.7268mm; y1=3D90.1994mm; x2=3D91.5556mm; y2=3D88.3706mm; =
thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:text.1495249 {
           string=3D%a.parent.refdes%; x=3D88.66mm; y=3D89.412mm; scale=3D1=
00; fid=3D0;
           ha:flags {
            dyntext=3D1
            floater=3D1
            onsolder=3D1
           }
           rot =3D 360.000000
          }
         }
         ha:type {
          silk =3D 1
          bottom =3D 1
         }
       }
 
       ha:top-courtyard {
        lid=3D1
        ha:combining {        }
 
         li:objects {
          ha:polygon.1495581 { clearance=3D0.4mm;
           li:geometry {
             ta:contour {
              { 86.5518mm; 104.8044mm }
              { 150.4582mm; 104.8044mm }
              { 150.4582mm; 85.1956mm }
              { 89.9681mm; 85.1956mm }
              { 86.5518mm; 88.6119mm }
             }
           }
 
           ha:flags {
            clearpoly=3D1
           }
          }
         }
         ha:type {
          bottom =3D 1
          doc =3D 1
         }
         purpose =3D courtyard
       }
 
       ha:subc-aux {
        lid=3D2
        ha:combining {        }
 
         li:objects {
          ha:line.1495250 {
           x1=3D118.505mm; y1=3D95.0mm; x2=3D118.505mm; y2=3D95.0mm; thickn=
ess=3D0.1mm; clearance=3D0.0;
           ha:flags {
            selected=3D1
           }
 
           ha:attributes {
             subc-role=3Dorigin
           }
          }
          ha:line.1495253 {
           x1=3D118.505mm; y1=3D95.0mm; x2=3D119.505mm; y2=3D95.0mm; thickn=
ess=3D0.1mm; clearance=3D0.0;
           ha:flags {
            selected=3D1
           }
 
           ha:attributes {
             subc-role=3Dx
           }
          }
          ha:line.1495256 {
           x1=3D118.505mm; y1=3D95.0mm; x2=3D118.505mm; y2=3D94.0mm; thickn=
ess=3D0.1mm; clearance=3D0.0;
           ha:flags {
            selected=3D1
           }
 
           ha:attributes {
             subc-role=3Dy
           }
          }
         }
         ha:type {
          bottom =3D 1
          virtual =3D 1
          misc =3D 1
         }
       }
      }
     }
      uid =3D Nw/RM4pTGP/u+P/VmJ4AAACr
     }
     ha:subc.2489992 {
      ha:attributes {
       footprint=3DLPAM-40-08
       manufacturer=3Dunknown
       refdes=3DP1
       vendor_part_number=3Dunknown
       manufacturer_part_number=3Dunknown
       value=3Dunknown
       vendor=3Dunknown
       device=3DLPAM_40_8
      }
     ha:data {
          li:padstack_prototypes {
 
      ha:ps_proto_v6.0 {
        hdia=3D0.0; hplated=3D0; htop=3D0; hbottom=3D0;
        li:shape {
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            top =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D31.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D25.0mil;           }
           ha:combining { auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            paste =3D 1
           }
           clearance=3D0.0
          }
        }
      }
 
      ha:ps_proto_v6.1 {
        hdia=3D57.0mil; hplated=3D1; htop=3D0; hbottom=3D0;
        li:shape {
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            top =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            bottom =3D 1
            copper =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D70.0mil;           }
           ha:combining {           }
           ha:layer_mask {
            copper =3D 1
            intern =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            top =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
 
          ha:ps_shape_v4 {
           ha:ps_circ { x=3D0.0; y=3D0.0; dia=3D63.0mil;           }
           ha:combining { sub=3D1; auto=3D1;           }
           ha:layer_mask {
            bottom =3D 1
            mask =3D 1
           }
           clearance=3D0.0
          }
        }
      }
     }
 
      li:objects {
       ha:padstack_ref.2490018 {
        proto=3D0; x=3D18.74mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH1
        }
       }
       ha:padstack_ref.2490019 {
        proto=3D0; x=3D18.74mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG1
        }
       }
       ha:padstack_ref.2490020 {
        proto=3D0; x=3D18.74mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF1
        }
       }
       ha:padstack_ref.2490021 {
        proto=3D0; x=3D18.74mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE1
        }
       }
       ha:padstack_ref.2490022 {
        proto=3D0; x=3D18.74mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD1
        }
       }
       ha:padstack_ref.2490023 {
        proto=3D0; x=3D18.74mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC1
        }
       }
       ha:padstack_ref.2490024 {
        proto=3D0; x=3D18.74mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB1
        }
       }
       ha:padstack_ref.2490025 {
        proto=3D0; x=3D18.74mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA1
        }
       }
       ha:padstack_ref.2490026 {
        proto=3D0; x=3D20.01mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH2
        }
       }
       ha:padstack_ref.2490027 {
        proto=3D0; x=3D20.01mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG2
        }
       }
       ha:padstack_ref.2490028 {
        proto=3D0; x=3D20.01mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF2
        }
       }
       ha:padstack_ref.2490029 {
        proto=3D0; x=3D20.01mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE2
        }
       }
       ha:padstack_ref.2490030 {
        proto=3D0; x=3D20.01mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD2
        }
       }
       ha:padstack_ref.2490031 {
        proto=3D0; x=3D20.01mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC2
        }
       }
       ha:padstack_ref.2490032 {
        proto=3D0; x=3D20.01mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB2
        }
       }
       ha:padstack_ref.2490033 {
        proto=3D0; x=3D20.01mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA2
        }
       }
       ha:padstack_ref.2490034 {
        proto=3D0; x=3D21.28mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH3
        }
       }
       ha:padstack_ref.2490035 {
        proto=3D0; x=3D21.28mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG3
        }
       }
       ha:padstack_ref.2490036 {
        proto=3D0; x=3D21.28mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF3
        }
       }
       ha:padstack_ref.2490037 {
        proto=3D0; x=3D21.28mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE3
        }
       }
       ha:padstack_ref.2490038 {
        proto=3D0; x=3D21.28mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD3
        }
       }
       ha:padstack_ref.2490039 {
        proto=3D0; x=3D21.28mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC3
        }
       }
       ha:padstack_ref.2490040 {
        proto=3D0; x=3D21.28mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB3
        }
       }
       ha:padstack_ref.2490041 {
        proto=3D0; x=3D21.28mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA3
        }
       }
       ha:padstack_ref.2490042 {
        proto=3D0; x=3D22.55mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH4
        }
       }
       ha:padstack_ref.2490043 {
        proto=3D0; x=3D22.55mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG4
        }
       }
       ha:padstack_ref.2490044 {
        proto=3D0; x=3D22.55mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF4
        }
       }
       ha:padstack_ref.2490045 {
        proto=3D0; x=3D22.55mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE4
        }
       }
       ha:padstack_ref.2490046 {
        proto=3D0; x=3D22.55mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD4
        }
       }
       ha:padstack_ref.2490047 {
        proto=3D0; x=3D22.55mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC4
        }
       }
       ha:padstack_ref.2490048 {
        proto=3D0; x=3D22.55mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB4
        }
       }
       ha:padstack_ref.2490049 {
        proto=3D0; x=3D22.55mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA4
        }
       }
       ha:padstack_ref.2490050 {
        proto=3D0; x=3D23.82mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH5
        }
       }
       ha:padstack_ref.2490051 {
        proto=3D0; x=3D23.82mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG5
        }
       }
       ha:padstack_ref.2490052 {
        proto=3D0; x=3D23.82mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF5
        }
       }
       ha:padstack_ref.2490053 {
        proto=3D0; x=3D23.82mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE5
        }
       }
       ha:padstack_ref.2490054 {
        proto=3D0; x=3D23.82mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD5
        }
       }
       ha:padstack_ref.2490055 {
        proto=3D0; x=3D23.82mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC5
        }
       }
       ha:padstack_ref.2490056 {
        proto=3D0; x=3D23.82mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB5
        }
       }
       ha:padstack_ref.2490057 {
        proto=3D0; x=3D23.82mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA5
        }
       }
       ha:padstack_ref.2490058 {
        proto=3D0; x=3D25.09mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH6
        }
       }
       ha:padstack_ref.2490059 {
        proto=3D0; x=3D25.09mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG6
        }
       }
       ha:padstack_ref.2490060 {
        proto=3D0; x=3D25.09mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF6
        }
       }
       ha:padstack_ref.2490061 {
        proto=3D0; x=3D25.09mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE6
        }
       }
       ha:padstack_ref.2490062 {
        proto=3D0; x=3D25.09mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD6
        }
       }
       ha:padstack_ref.2490063 {
        proto=3D0; x=3D25.09mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC6
          name=3DVCC1V8_BUS
        }
       }
       ha:padstack_ref.2490064 {
        proto=3D0; x=3D25.09mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB6
        }
       }
       ha:padstack_ref.2490065 {
        proto=3D0; x=3D25.09mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA6
          name=3DVCC1V8_BUS
        }
       }
       ha:padstack_ref.2490066 {
        proto=3D0; x=3D26.36mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490067 {
        proto=3D0; x=3D26.36mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490068 {
        proto=3D0; x=3D26.36mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490069 {
        proto=3D0; x=3D26.36mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490070 {
        proto=3D0; x=3D26.36mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490071 {
        proto=3D0; x=3D26.36mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490072 {
        proto=3D0; x=3D26.36mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490073 {
        proto=3D0; x=3D26.36mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA7
          name=3DUTIL_3V3
        }
       }
       ha:padstack_ref.2490074 {
        proto=3D0; x=3D27.63mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH8
        }
       }
       ha:padstack_ref.2490075 {
        proto=3D0; x=3D27.63mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG8
        }
       }
       ha:padstack_ref.2490076 {
        proto=3D0; x=3D27.63mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF8
        }
       }
       ha:padstack_ref.2490077 {
        proto=3D0; x=3D27.63mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE8
        }
       }
       ha:padstack_ref.2490078 {
        proto=3D0; x=3D27.63mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD8
        }
       }
       ha:padstack_ref.2490079 {
        proto=3D0; x=3D27.63mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC8
        }
       }
       ha:padstack_ref.2490080 {
        proto=3D0; x=3D27.63mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB8
        }
       }
       ha:padstack_ref.2490081 {
        proto=3D0; x=3D27.63mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA8
        }
       }
       ha:padstack_ref.2490082 {
        proto=3D0; x=3D28.9mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH9
        }
       }
       ha:padstack_ref.2490083 {
        proto=3D0; x=3D28.9mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG9
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490084 {
        proto=3D0; x=3D28.9mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF9
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490085 {
        proto=3D0; x=3D28.9mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE9
        }
       }
       ha:padstack_ref.2490086 {
        proto=3D0; x=3D28.9mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD9
        }
       }
       ha:padstack_ref.2490087 {
        proto=3D0; x=3D28.9mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC9
        }
       }
       ha:padstack_ref.2490088 {
        proto=3D0; x=3D28.9mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB9
        }
       }
       ha:padstack_ref.2490089 {
        proto=3D0; x=3D28.9mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA9
        }
       }
       ha:padstack_ref.2490090 {
        proto=3D0; x=3D30.17mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH10
        }
       }
       ha:padstack_ref.2490091 {
        proto=3D0; x=3D30.17mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG10
        }
       }
       ha:padstack_ref.2490092 {
        proto=3D0; x=3D30.17mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF10
        }
       }
       ha:padstack_ref.2490093 {
        proto=3D0; x=3D30.17mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE10
        }
       }
       ha:padstack_ref.2490094 {
        proto=3D0; x=3D30.17mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD10
        }
       }
       ha:padstack_ref.2490095 {
        proto=3D0; x=3D30.17mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC10
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490096 {
        proto=3D0; x=3D30.17mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB10
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490097 {
        proto=3D0; x=3D30.17mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA10
        }
       }
       ha:padstack_ref.2490098 {
        proto=3D0; x=3D31.44mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH11
        }
       }
       ha:padstack_ref.2490099 {
        proto=3D0; x=3D31.44mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG11
        }
       }
       ha:padstack_ref.2490100 {
        proto=3D0; x=3D31.44mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF11
        }
       }
       ha:padstack_ref.2490101 {
        proto=3D0; x=3D31.44mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE11
        }
       }
       ha:padstack_ref.2490102 {
        proto=3D0; x=3D31.44mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD11
        }
       }
       ha:padstack_ref.2490103 {
        proto=3D0; x=3D31.44mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC11
        }
       }
       ha:padstack_ref.2490104 {
        proto=3D0; x=3D31.44mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB11
        }
       }
       ha:padstack_ref.2490105 {
        proto=3D0; x=3D31.44mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA11
        }
       }
       ha:padstack_ref.2490106 {
        proto=3D0; x=3D32.71mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH12
        }
       }
       ha:padstack_ref.2490107 {
        proto=3D0; x=3D32.71mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG12
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490108 {
        proto=3D0; x=3D32.71mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF12
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490109 {
        proto=3D0; x=3D32.71mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE12
        }
       }
       ha:padstack_ref.2490110 {
        proto=3D0; x=3D32.71mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD12
        }
       }
       ha:padstack_ref.2490111 {
        proto=3D0; x=3D32.71mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC12
        }
       }
       ha:padstack_ref.2490112 {
        proto=3D0; x=3D32.71mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB12
        }
       }
       ha:padstack_ref.2490113 {
        proto=3D0; x=3D32.71mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA12
        }
       }
       ha:padstack_ref.2490114 {
        proto=3D0; x=3D33.98mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:1 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH13
        }
       }
       ha:padstack_ref.2490115 {
        proto=3D0; x=3D33.98mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG13
        }
       }
       ha:padstack_ref.2490116 {
        proto=3D0; x=3D33.98mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF13
        }
       }
       ha:padstack_ref.2490117 {
        proto=3D0; x=3D33.98mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE13
        }
       }
       ha:padstack_ref.2490118 {
        proto=3D0; x=3D33.98mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD13
        }
       }
       ha:padstack_ref.2490119 {
        proto=3D0; x=3D33.98mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC13
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490120 {
        proto=3D0; x=3D33.98mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB13
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490121 {
        proto=3D0; x=3D33.98mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA13
        }
       }
       ha:padstack_ref.2490122 {
        proto=3D0; x=3D35.25mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:1 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH14
        }
       }
       ha:padstack_ref.2490123 {
        proto=3D0; x=3D35.25mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG14
        }
       }
       ha:padstack_ref.2490124 {
        proto=3D0; x=3D35.25mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF14
        }
       }
       ha:padstack_ref.2490125 {
        proto=3D0; x=3D35.25mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE14
        }
       }
       ha:padstack_ref.2490126 {
        proto=3D0; x=3D35.25mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD14
        }
       }
       ha:padstack_ref.2490127 {
        proto=3D0; x=3D35.25mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC14
        }
       }
       ha:padstack_ref.2490128 {
        proto=3D0; x=3D35.25mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB14
        }
       }
       ha:padstack_ref.2490129 {
        proto=3D0; x=3D35.25mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA14
        }
       }
       ha:padstack_ref.2490130 {
        proto=3D0; x=3D36.52mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH15
        }
       }
       ha:padstack_ref.2490131 {
        proto=3D0; x=3D36.52mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG15
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490132 {
        proto=3D0; x=3D36.52mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF15
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490133 {
        proto=3D0; x=3D36.52mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE15
        }
       }
       ha:padstack_ref.2490134 {
        proto=3D0; x=3D36.52mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD15
        }
       }
       ha:padstack_ref.2490135 {
        proto=3D0; x=3D36.52mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC15
        }
       }
       ha:padstack_ref.2490136 {
        proto=3D0; x=3D36.52mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB15
        }
       }
       ha:padstack_ref.2490137 {
        proto=3D0; x=3D36.52mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA15
        }
       }
       ha:padstack_ref.2490138 {
        proto=3D0; x=3D37.79mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH16
        }
       }
       ha:padstack_ref.2490139 {
        proto=3D0; x=3D37.79mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG16
        }
       }
       ha:padstack_ref.2490140 {
        proto=3D0; x=3D37.79mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF16
        }
       }
       ha:padstack_ref.2490141 {
        proto=3D0; x=3D37.79mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE16
        }
       }
       ha:padstack_ref.2490142 {
        proto=3D0; x=3D37.79mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD16
        }
       }
       ha:padstack_ref.2490143 {
        proto=3D0; x=3D37.79mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC16
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490144 {
        proto=3D0; x=3D37.79mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB16
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490145 {
        proto=3D0; x=3D37.79mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA16
        }
       }
       ha:padstack_ref.2490146 {
        proto=3D0; x=3D39.06mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH17
        }
       }
       ha:padstack_ref.2490147 {
        proto=3D0; x=3D39.06mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG17
        }
       }
       ha:padstack_ref.2490148 {
        proto=3D0; x=3D39.06mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF17
        }
       }
       ha:padstack_ref.2490149 {
        proto=3D0; x=3D39.06mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE17
        }
       }
       ha:padstack_ref.2490150 {
        proto=3D0; x=3D39.06mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD17
        }
       }
       ha:padstack_ref.2490151 {
        proto=3D0; x=3D39.06mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC17
        }
       }
       ha:padstack_ref.2490152 {
        proto=3D0; x=3D39.06mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB17
        }
       }
       ha:padstack_ref.2490153 {
        proto=3D0; x=3D39.06mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA17
        }
       }
       ha:padstack_ref.2490154 {
        proto=3D0; x=3D40.33mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH18
        }
       }
       ha:padstack_ref.2490155 {
        proto=3D0; x=3D40.33mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG18
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490156 {
        proto=3D0; x=3D40.33mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF18
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490157 {
        proto=3D0; x=3D40.33mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE18
        }
       }
       ha:padstack_ref.2490158 {
        proto=3D0; x=3D40.33mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD18
        }
       }
       ha:padstack_ref.2490159 {
        proto=3D0; x=3D40.33mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC18
        }
       }
       ha:padstack_ref.2490160 {
        proto=3D0; x=3D40.33mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB18
        }
       }
       ha:padstack_ref.2490161 {
        proto=3D0; x=3D40.33mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA18
        }
       }
       ha:padstack_ref.2490162 {
        proto=3D0; x=3D41.6mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH19
        }
       }
       ha:padstack_ref.2490163 {
        proto=3D0; x=3D41.6mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG19
        }
       }
       ha:padstack_ref.2490164 {
        proto=3D0; x=3D41.6mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF19
        }
       }
       ha:padstack_ref.2490165 {
        proto=3D0; x=3D41.6mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE19
        }
       }
       ha:padstack_ref.2490166 {
        proto=3D0; x=3D41.6mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD19
        }
       }
       ha:padstack_ref.2490167 {
        proto=3D0; x=3D41.6mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC19
          name=3DADC_P
        }
       }
       ha:padstack_ref.2490168 {
        proto=3D0; x=3D41.6mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB19
          name=3DADC_N
        }
       }
       ha:padstack_ref.2490169 {
        proto=3D0; x=3D42.87mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH20
        }
       }
       ha:padstack_ref.2490170 {
        proto=3D0; x=3D42.87mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG20
        }
       }
       ha:padstack_ref.2490171 {
        proto=3D0; x=3D42.87mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF20
        }
       }
       ha:padstack_ref.2490172 {
        proto=3D0; x=3D42.87mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE20
        }
       }
       ha:padstack_ref.2490173 {
        proto=3D0; x=3D42.87mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD20
        }
       }
       ha:padstack_ref.2490174 {
        proto=3D0; x=3D42.87mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC20
        }
       }
       ha:padstack_ref.2490175 {
        proto=3D0; x=3D42.87mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB20
        }
       }
       ha:padstack_ref.2490176 {
        proto=3D0; x=3D42.87mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA20
        }
       }
       ha:padstack_ref.2490177 {
        proto=3D0; x=3D44.14mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DH21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490178 {
        proto=3D0; x=3D44.14mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490179 {
        proto=3D0; x=3D44.14mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490180 {
        proto=3D0; x=3D44.14mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DE21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490181 {
        proto=3D0; x=3D44.14mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DD21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490182 {
        proto=3D0; x=3D44.14mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490183 {
        proto=3D0; x=3D44.14mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490184 {
        proto=3D0; x=3D44.14mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DA21
          name=3DVCM
        }
       }
       ha:padstack_ref.2490185 {
        proto=3D0; x=3D45.41mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH22
        }
       }
       ha:padstack_ref.2490186 {
        proto=3D0; x=3D45.41mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG22
        }
       }
       ha:padstack_ref.2490187 {
        proto=3D0; x=3D45.41mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF22
        }
       }
       ha:padstack_ref.2490188 {
        proto=3D0; x=3D45.41mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE22
        }
       }
       ha:padstack_ref.2490189 {
        proto=3D0; x=3D45.41mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD22
        }
       }
       ha:padstack_ref.2490190 {
        proto=3D0; x=3D45.41mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC22
        }
       }
       ha:padstack_ref.2490191 {
        proto=3D0; x=3D45.41mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB22
        }
       }
       ha:padstack_ref.2490192 {
        proto=3D0; x=3D45.41mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA22
        }
       }
       ha:padstack_ref.2490193 {
        proto=3D0; x=3D46.68mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH23
        }
       }
       ha:padstack_ref.2490194 {
        proto=3D0; x=3D46.68mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG23
        }
       }
       ha:padstack_ref.2490195 {
        proto=3D0; x=3D46.68mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF23
        }
       }
       ha:padstack_ref.2490196 {
        proto=3D0; x=3D46.68mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE23
        }
       }
       ha:padstack_ref.2490197 {
        proto=3D0; x=3D46.68mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD23
        }
       }
       ha:padstack_ref.2490198 {
        proto=3D0; x=3D46.68mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC23
        }
       }
       ha:padstack_ref.2490199 {
        proto=3D0; x=3D46.68mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB23
        }
       }
       ha:padstack_ref.2490200 {
        proto=3D0; x=3D46.68mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA23
        }
       }
       ha:padstack_ref.2490201 {
        proto=3D0; x=3D47.95mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH24
        }
       }
       ha:padstack_ref.2490202 {
        proto=3D0; x=3D47.95mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG24
        }
       }
       ha:padstack_ref.2490203 {
        proto=3D0; x=3D47.95mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF24
        }
       }
       ha:padstack_ref.2490204 {
        proto=3D0; x=3D47.95mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE24
        }
       }
       ha:padstack_ref.2490205 {
        proto=3D0; x=3D47.95mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD24
        }
       }
       ha:padstack_ref.2490206 {
        proto=3D0; x=3D47.95mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC24
        }
       }
       ha:padstack_ref.2490207 {
        proto=3D0; x=3D47.95mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB24
        }
       }
       ha:padstack_ref.2490208 {
        proto=3D0; x=3D47.95mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA24
        }
       }
       ha:padstack_ref.2490209 {
        proto=3D0; x=3D49.22mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH25
        }
       }
       ha:padstack_ref.2490210 {
        proto=3D0; x=3D49.22mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG25
        }
       }
       ha:padstack_ref.2490211 {
        proto=3D0; x=3D49.22mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF25
        }
       }
       ha:padstack_ref.2490212 {
        proto=3D0; x=3D49.22mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE25
        }
       }
       ha:padstack_ref.2490213 {
        proto=3D0; x=3D49.22mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD25
        }
       }
       ha:padstack_ref.2490214 {
        proto=3D0; x=3D49.22mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC25
        }
       }
       ha:padstack_ref.2490215 {
        proto=3D0; x=3D49.22mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB25
        }
       }
       ha:padstack_ref.2490216 {
        proto=3D0; x=3D49.22mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           round =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA25
        }
       }
       ha:padstack_ref.2490217 {
        proto=3D0; x=3D50.49mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH26
        }
       }
       ha:padstack_ref.2490218 {
        proto=3D0; x=3D50.49mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG26
        }
       }
       ha:padstack_ref.2490219 {
        proto=3D0; x=3D50.49mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF26
        }
       }
       ha:padstack_ref.2490220 {
        proto=3D0; x=3D50.49mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE26
        }
       }
       ha:padstack_ref.2490221 {
        proto=3D0; x=3D50.49mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD26
        }
       }
       ha:padstack_ref.2490222 {
        proto=3D0; x=3D50.49mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC26
        }
       }
       ha:padstack_ref.2490223 {
        proto=3D0; x=3D50.49mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB26
        }
       }
       ha:padstack_ref.2490224 {
        proto=3D0; x=3D50.49mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA26
        }
       }
       ha:padstack_ref.2490225 {
        proto=3D0; x=3D51.76mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH27
        }
       }
       ha:padstack_ref.2490226 {
        proto=3D0; x=3D51.76mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG27
        }
       }
       ha:padstack_ref.2490227 {
        proto=3D0; x=3D51.76mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF27
        }
       }
       ha:padstack_ref.2490228 {
        proto=3D0; x=3D51.76mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE27
        }
       }
       ha:padstack_ref.2490229 {
        proto=3D0; x=3D51.76mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD27
        }
       }
       ha:padstack_ref.2490230 {
        proto=3D0; x=3D51.76mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC27
        }
       }
       ha:padstack_ref.2490231 {
        proto=3D0; x=3D51.76mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB27
        }
       }
       ha:padstack_ref.2490232 {
        proto=3D0; x=3D51.76mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA27
        }
       }
       ha:padstack_ref.2490233 {
        proto=3D0; x=3D53.03mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH28
        }
       }
       ha:padstack_ref.2490234 {
        proto=3D0; x=3D53.03mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG28
        }
       }
       ha:padstack_ref.2490235 {
        proto=3D0; x=3D53.03mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF28
        }
       }
       ha:padstack_ref.2490236 {
        proto=3D0; x=3D53.03mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE28
        }
       }
       ha:padstack_ref.2490237 {
        proto=3D0; x=3D53.03mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD28
        }
       }
       ha:padstack_ref.2490238 {
        proto=3D0; x=3D53.03mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC28
        }
       }
       ha:padstack_ref.2490239 {
        proto=3D0; x=3D53.03mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB28
        }
       }
       ha:padstack_ref.2490240 {
        proto=3D0; x=3D53.03mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA28
        }
       }
       ha:padstack_ref.2490241 {
        proto=3D0; x=3D54.3mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH29
        }
       }
       ha:padstack_ref.2490242 {
        proto=3D0; x=3D54.3mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG29
        }
       }
       ha:padstack_ref.2490243 {
        proto=3D0; x=3D54.3mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF29
        }
       }
       ha:padstack_ref.2490244 {
        proto=3D0; x=3D54.3mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE29
        }
       }
       ha:padstack_ref.2490245 {
        proto=3D0; x=3D54.3mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD29
        }
       }
       ha:padstack_ref.2490246 {
        proto=3D0; x=3D54.3mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC29
        }
       }
       ha:padstack_ref.2490247 {
        proto=3D0; x=3D54.3mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB29
        }
       }
       ha:padstack_ref.2490248 {
        proto=3D0; x=3D54.3mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA29
        }
       }
       ha:padstack_ref.2490249 {
        proto=3D0; x=3D55.57mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH30
        }
       }
       ha:padstack_ref.2490250 {
        proto=3D0; x=3D55.57mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG30
        }
       }
       ha:padstack_ref.2490251 {
        proto=3D0; x=3D55.57mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF30
        }
       }
       ha:padstack_ref.2490252 {
        proto=3D0; x=3D55.57mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE30
        }
       }
       ha:padstack_ref.2490253 {
        proto=3D0; x=3D55.57mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD30
        }
       }
       ha:padstack_ref.2490254 {
        proto=3D0; x=3D55.57mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC30
        }
       }
       ha:padstack_ref.2490255 {
        proto=3D0; x=3D55.57mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB30
        }
       }
       ha:padstack_ref.2490256 {
        proto=3D0; x=3D55.57mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA30
        }
       }
       ha:padstack_ref.2490257 {
        proto=3D0; x=3D56.84mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH31
        }
       }
       ha:padstack_ref.2490258 {
        proto=3D0; x=3D56.84mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG31
        }
       }
       ha:padstack_ref.2490259 {
        proto=3D0; x=3D56.84mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF31
        }
       }
       ha:padstack_ref.2490260 {
        proto=3D0; x=3D56.84mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE31
        }
       }
       ha:padstack_ref.2490261 {
        proto=3D0; x=3D56.84mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD31
        }
       }
       ha:padstack_ref.2490262 {
        proto=3D0; x=3D56.84mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC31
        }
       }
       ha:padstack_ref.2490263 {
        proto=3D0; x=3D56.84mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB31
        }
       }
       ha:padstack_ref.2490264 {
        proto=3D0; x=3D56.84mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA31
        }
       }
       ha:padstack_ref.2490265 {
        proto=3D0; x=3D58.11mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH32
        }
       }
       ha:padstack_ref.2490266 {
        proto=3D0; x=3D58.11mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG32
        }
       }
       ha:padstack_ref.2490267 {
        proto=3D0; x=3D58.11mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF32
        }
       }
       ha:padstack_ref.2490268 {
        proto=3D0; x=3D58.11mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE32
        }
       }
       ha:padstack_ref.2490269 {
        proto=3D0; x=3D58.11mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD32
        }
       }
       ha:padstack_ref.2490270 {
        proto=3D0; x=3D58.11mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC32
        }
       }
       ha:padstack_ref.2490271 {
        proto=3D0; x=3D58.11mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB32
        }
       }
       ha:padstack_ref.2490272 {
        proto=3D0; x=3D58.11mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA32
        }
       }
       ha:padstack_ref.2490273 {
        proto=3D0; x=3D59.38mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH33
        }
       }
       ha:padstack_ref.2490274 {
        proto=3D0; x=3D59.38mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG33
        }
       }
       ha:padstack_ref.2490275 {
        proto=3D0; x=3D59.38mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF33
        }
       }
       ha:padstack_ref.2490276 {
        proto=3D0; x=3D59.38mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE33
        }
       }
       ha:padstack_ref.2490277 {
        proto=3D0; x=3D59.38mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD33
        }
       }
       ha:padstack_ref.2490278 {
        proto=3D0; x=3D59.38mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC33
        }
       }
       ha:padstack_ref.2490279 {
        proto=3D0; x=3D59.38mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB33
        }
       }
       ha:padstack_ref.2490280 {
        proto=3D0; x=3D59.38mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA33
        }
       }
       ha:padstack_ref.2490281 {
        proto=3D0; x=3D60.65mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH34
        }
       }
       ha:padstack_ref.2490282 {
        proto=3D0; x=3D60.65mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG34
        }
       }
       ha:padstack_ref.2490283 {
        proto=3D0; x=3D60.65mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF34
        }
       }
       ha:padstack_ref.2490284 {
        proto=3D0; x=3D60.65mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE34
        }
       }
       ha:padstack_ref.2490285 {
        proto=3D0; x=3D60.65mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD34
        }
       }
       ha:padstack_ref.2490286 {
        proto=3D0; x=3D60.65mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC34
        }
       }
       ha:padstack_ref.2490287 {
        proto=3D0; x=3D60.65mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB34
        }
       }
       ha:padstack_ref.2490288 {
        proto=3D0; x=3D60.65mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA34
        }
       }
       ha:padstack_ref.2490289 {
        proto=3D0; x=3D61.92mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH35
        }
       }
       ha:padstack_ref.2490290 {
        proto=3D0; x=3D61.92mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG35
          name=3DADCLK_P
        }
       }
       ha:padstack_ref.2490291 {
        proto=3D0; x=3D61.92mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF35
          name=3DADCLK_N
        }
       }
       ha:padstack_ref.2490292 {
        proto=3D0; x=3D61.92mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE35
        }
       }
       ha:padstack_ref.2490293 {
        proto=3D0; x=3D61.92mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD35
        }
       }
       ha:padstack_ref.2490294 {
        proto=3D0; x=3D61.92mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC35
        }
       }
       ha:padstack_ref.2490295 {
        proto=3D0; x=3D61.92mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB35
        }
       }
       ha:padstack_ref.2490296 {
        proto=3D0; x=3D61.92mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA35
        }
       }
       ha:padstack_ref.2490297 {
        proto=3D0; x=3D63.19mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH36
        }
       }
       ha:padstack_ref.2490298 {
        proto=3D0; x=3D63.19mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG36
        }
       }
       ha:padstack_ref.2490299 {
        proto=3D0; x=3D63.19mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF36
        }
       }
       ha:padstack_ref.2490300 {
        proto=3D0; x=3D63.19mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE36
        }
       }
       ha:padstack_ref.2490301 {
        proto=3D0; x=3D63.19mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD36
        }
       }
       ha:padstack_ref.2490302 {
        proto=3D0; x=3D63.19mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC36
          name=3DADCLK_P
        }
       }
       ha:padstack_ref.2490303 {
        proto=3D0; x=3D63.19mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB36
          name=3DADCLK_N
        }
       }
       ha:padstack_ref.2490304 {
        proto=3D0; x=3D63.19mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA36
        }
       }
       ha:padstack_ref.2490305 {
        proto=3D0; x=3D64.46mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH37
        }
       }
       ha:padstack_ref.2490306 {
        proto=3D0; x=3D64.46mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG37
        }
       }
       ha:padstack_ref.2490307 {
        proto=3D0; x=3D64.46mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF37
        }
       }
       ha:padstack_ref.2490308 {
        proto=3D0; x=3D64.46mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE37
        }
       }
       ha:padstack_ref.2490309 {
        proto=3D0; x=3D64.46mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD37
        }
       }
       ha:padstack_ref.2490310 {
        proto=3D0; x=3D64.46mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC37
        }
       }
       ha:padstack_ref.2490311 {
        proto=3D0; x=3D64.46mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB37
        }
       }
       ha:padstack_ref.2490312 {
        proto=3D0; x=3D64.46mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA37
        }
       }
       ha:padstack_ref.2490313 {
        proto=3D0; x=3D65.73mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH38
        }
       }
       ha:padstack_ref.2490314 {
        proto=3D0; x=3D65.73mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DG38
          name=3DADCLK_P
        }
       }
       ha:padstack_ref.2490315 {
        proto=3D0; x=3D65.73mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DF38
          name=3DADCLK_N
        }
       }
       ha:padstack_ref.2490316 {
        proto=3D0; x=3D65.73mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE38
        }
       }
       ha:padstack_ref.2490317 {
        proto=3D0; x=3D65.73mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD38
        }
       }
       ha:padstack_ref.2490318 {
        proto=3D0; x=3D65.73mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC38
        }
       }
       ha:padstack_ref.2490319 {
        proto=3D0; x=3D65.73mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB38
        }
       }
       ha:padstack_ref.2490320 {
        proto=3D0; x=3D65.73mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA38
        }
       }
       ha:padstack_ref.2490321 {
        proto=3D0; x=3D67.0mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH39
        }
       }
       ha:padstack_ref.2490322 {
        proto=3D0; x=3D67.0mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG39
        }
       }
       ha:padstack_ref.2490323 {
        proto=3D0; x=3D67.0mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF39
        }
       }
       ha:padstack_ref.2490324 {
        proto=3D0; x=3D67.0mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE39
        }
       }
       ha:padstack_ref.2490325 {
        proto=3D0; x=3D67.0mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD39
        }
       }
       ha:padstack_ref.2490326 {
        proto=3D0; x=3D67.0mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DC39
          name=3DADCLK_P
        }
       }
       ha:padstack_ref.2490327 {
        proto=3D0; x=3D67.0mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
 
        ha:attributes {
          term=3DB39
          name=3DADCLK_N
        }
       }
       ha:padstack_ref.2490328 {
        proto=3D0; x=3D67.0mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA39
        }
       }
       ha:padstack_ref.2490329 {
        proto=3D0; x=3D68.27mm; y=3D99.572mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DH40
        }
       }
       ha:padstack_ref.2490330 {
        proto=3D0; x=3D68.27mm; y=3D98.302mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DG40
        }
       }
       ha:padstack_ref.2490331 {
        proto=3D0; x=3D68.27mm; y=3D97.032mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DF40
        }
       }
       ha:padstack_ref.2490332 {
        proto=3D0; x=3D68.27mm; y=3D95.762mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DE40
        }
       }
       ha:padstack_ref.2490333 {
        proto=3D0; x=3D68.27mm; y=3D94.492mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           round =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DD40
        }
       }
       ha:padstack_ref.2490334 {
        proto=3D0; x=3D68.27mm; y=3D93.222mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DC40
        }
       }
       ha:padstack_ref.2490335 {
        proto=3D0; x=3D68.27mm; y=3D91.952mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DB40
        }
       }
       ha:padstack_ref.2490336 {
        proto=3D0; x=3D68.27mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA40
        }
       }
       ha:padstack_ref.2490337 {
        proto=3D0; x=3D41.6mm; y=3D90.682mm; rot=3D0.000000; xmirror=3D1; s=
mirror=3D1; clearance=3D7.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
          li:3 {
           on =20
           diag =20
           sharp =20
           noshape =20
          }
        }
 
        ha:attributes {
          term=3DA19
        }
       }
       ha:padstack_ref.2490338 {
        proto=3D1; x=3D16.5556mm; y=3D92.968mm; rot=3D-180.000000; xmirror=
=3D0; smirror=3D1; clearance=3D6.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
       }
       ha:padstack_ref.2490339 {
        proto=3D1; x=3D70.4544mm; y=3D95.0mm; rot=3D0.000000; xmirror=3D1; =
smirror=3D1; clearance=3D6.0mil;
        ha:flags {
         clearline=3D1
        }
 
        li:thermal {
        }
       }
      }
      li:layers {
 
       ha:top-silk {
        lid=3D0
        ha:combining { auto=3D1;        }
 
         li:objects {
          ha:line.2489993 {
           x1=3D14.7268mm; y1=3D101.6294mm; x2=3D72.2832mm; y2=3D101.6294mm=
; thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.2489996 {
           x1=3D16.5556mm; y1=3D88.3706mm; x2=3D72.2832mm; y2=3D88.3706mm; =
thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.2489999 {
           x1=3D72.2832mm; y1=3D101.6294mm; x2=3D72.2832mm; y2=3D88.3706mm;=
 thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.2490002 {
           x1=3D14.7268mm; y1=3D101.6294mm; x2=3D14.7268mm; y2=3D90.1994mm;=
 thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:line.2490005 {
           x1=3D14.7268mm; y1=3D90.1994mm; x2=3D16.5556mm; y2=3D88.3706mm; =
thickness=3D10.0mil; clearance=3D40.0mil;
           ha:flags {
            clearline=3D1
           }
          }
          ha:text.2490008 {
           string=3D%a.parent.refdes%; x=3D13.66mm; y=3D89.412mm; scale=3D1=
00; fid=3D0;
           ha:flags {
            dyntext=3D1
            floater=3D1
            onsolder=3D1
           }
           rot =3D 0.000000
          }
         }
         ha:type {
          silk =3D 1
          bottom =3D 1
         }
       }
 
       ha:top-courtyard {
        lid=3D1
        ha:combining {        }
 
         li:objects {
          ha:polygon.2490340 { clearance=3D0.4mm;
           li:geometry {
             ta:contour {
              { 11.5518mm; 104.8044mm }
              { 75.4582mm; 104.8044mm }
              { 75.4582mm; 85.1956mm }
              { 14.9681mm; 85.1956mm }
              { 11.5518mm; 88.6119mm }
             }
           }
 
           ha:flags {
            clearpoly=3D1
           }
          }
         }
         ha:type {
          bottom =3D 1
          doc =3D 1
         }
         purpose =3D courtyard
       }
 
       ha:subc-aux {
        lid=3D2
        ha:combining {        }
 
         li:objects {
          ha:line.2490009 {
           x1=3D43.505mm; y1=3D95.0mm; x2=3D43.505mm; y2=3D95.0mm; thicknes=
s=3D0.1mm; clearance=3D0.0;
           ha:attributes {
             subc-role=3Dorigin
           }
          }
          ha:line.2490012 {
           x1=3D43.505mm; y1=3D95.0mm; x2=3D44.505mm; y2=3D95.0mm; thicknes=
s=3D0.1mm; clearance=3D0.0;
           ha:attributes {
             subc-role=3Dx
           }
          }
          ha:line.2490015 {
           x1=3D43.505mm; y1=3D95.0mm; x2=3D43.505mm; y2=3D94.0mm; thicknes=
s=3D0.1mm; clearance=3D0.0;
           ha:attributes {
             subc-role=3Dy
           }
          }
         }
         ha:type {
          bottom =3D 1
          virtual =3D 1
          misc =3D 1
         }
       }
      }
     }
      uid =3D Nw/RM4pTGP/u+P/VmJ4AAACr
     }
    ha:rat.4571237 {
     x1=3D37.7mm; y1=3D78.72mm; lgrp1=3D12; x2=3D87.5mm; y2=3D56.38mm; lgrp=
2=3D12;
    }
   }
   li:layers {
 
    ha:top-sig {
     lid=3D0
     group=3D3
     ha:combining {     }
 
      li:objects {
       ha:line.1492908 {
        x1=3D28.3425mm; y1=3D95.512mm; x2=3D28.3425mm; y2=3D95.1965mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492911 {
        x1=3D28.3425mm; y1=3D95.1965mm; x2=3D28.3825mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492914 {
        x1=3D28.8225mm; y1=3D95.1965mm; x2=3D28.8225mm; y2=3D95.512mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492917 {
        x1=3D28.8225mm; y1=3D95.1965mm; x2=3D28.7825mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492935 {
        x1=3D32.1525mm; y1=3D95.512mm; x2=3D32.1525mm; y2=3D95.1965mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492938 {
        x1=3D32.1525mm; y1=3D95.1965mm; x2=3D32.1925mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492941 {
        x1=3D32.6325mm; y1=3D95.1965mm; x2=3D32.6325mm; y2=3D95.512mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492944 {
        x1=3D32.6325mm; y1=3D95.1965mm; x2=3D32.5925mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492959 {
        x1=3D34.0575mm; y1=3D90.432mm; x2=3D34.0575mm; y2=3D90.1165mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492962 {
        x1=3D34.0575mm; y1=3D90.1165mm; x2=3D34.0975mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492965 {
        x1=3D34.5375mm; y1=3D90.1165mm; x2=3D34.5375mm; y2=3D90.432mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492968 {
        x1=3D34.5375mm; y1=3D90.1165mm; x2=3D34.4975mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492983 {
        x1=3D35.9625mm; y1=3D95.512mm; x2=3D35.9625mm; y2=3D95.1965mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492986 {
        x1=3D35.9625mm; y1=3D95.1965mm; x2=3D36.0025mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1492989 {
        x1=3D36.4425mm; y1=3D95.1965mm; x2=3D36.4025mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493004 {
        x1=3D37.8675mm; y1=3D90.432mm; x2=3D37.8675mm; y2=3D90.1165mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493007 {
        x1=3D37.8675mm; y1=3D90.1165mm; x2=3D37.9075mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493010 {
        x1=3D38.3475mm; y1=3D90.1165mm; x2=3D38.3475mm; y2=3D90.432mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493013 {
        x1=3D38.3475mm; y1=3D90.1165mm; x2=3D38.3075mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493028 {
        x1=3D41.6775mm; y1=3D90.432mm; x2=3D41.6775mm; y2=3D90.1165mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493031 {
        x1=3D41.6775mm; y1=3D90.1165mm; x2=3D41.7175mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493034 {
        x1=3D42.1575mm; y1=3D90.1165mm; x2=3D42.1575mm; y2=3D90.432mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493037 {
        x1=3D42.1575mm; y1=3D90.1165mm; x2=3D42.1175mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493067 {
        x1=3D36.4425mm; y1=3D95.1965mm; x2=3D36.4425mm; y2=3D95.512mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493091 {
        x1=3D39.7725mm; y1=3D95.512mm; x2=3D39.7725mm; y2=3D95.1965mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493094 {
        x1=3D39.7725mm; y1=3D95.1965mm; x2=3D39.8125mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493097 {
        x1=3D40.2525mm; y1=3D95.1965mm; x2=3D40.2525mm; y2=3D95.512mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493100 {
        x1=3D40.2525mm; y1=3D95.1965mm; x2=3D40.2125mm; y2=3D95.1565mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493334 {
        x1=3D30.2475mm; y1=3D90.432mm; x2=3D30.2475mm; y2=3D90.1165mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493337 {
        x1=3D30.2475mm; y1=3D90.1165mm; x2=3D30.2875mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493340 {
        x1=3D30.7275mm; y1=3D90.1165mm; x2=3D30.7275mm; y2=3D90.432mm; thic=
kness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1493343 {
        x1=3D30.7275mm; y1=3D90.1165mm; x2=3D30.6875mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869442 {
        x1=3D37.9075mm; y1=3D90.0765mm; x2=3D37.9075mm; y2=3D85.4595mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869445 {
        x1=3D38.3075mm; y1=3D90.0765mm; x2=3D38.3075mm; y2=3D85.4595mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869454 {
        x1=3D41.7175mm; y1=3D90.0765mm; x2=3D41.7175mm; y2=3D89.2695mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869457 {
        x1=3D42.1175mm; y1=3D90.0765mm; x2=3D42.1175mm; y2=3D89.2695mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869554 {
        x1=3D34.4975mm; y1=3D83.5545mm; x2=3D34.4975mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869557 {
        x1=3D34.0975mm; y1=3D83.5545mm; x2=3D34.0975mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869566 {
        x1=3D30.6875mm; y1=3D87.3645mm; x2=3D30.6875mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1869569 {
        x1=3D30.2875mm; y1=3D87.3645mm; x2=3D30.2875mm; y2=3D90.0765mm; thi=
ckness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043726 {
        x1=3D65.2125mm; y1=3D91.646658mm; x2=3D64.895mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043729 {
        x1=3D65.6125mm; y1=3D91.812342mm; x2=3D65.295mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043732 {
        x1=3D64.895mm; y1=3D93.209842mm; x2=3D65.2125mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043735 {
        x1=3D65.295mm; y1=3D93.044158mm; x2=3D65.6125mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043738 {
        x1=3D64.895mm; y1=3D91.964158mm; x2=3D64.895mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2043741 {
        x1=3D65.295mm; y1=3D92.129842mm; x2=3D65.295mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044185 {
        x1=3D61.4025mm; y1=3D91.646658mm; x2=3D61.085mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044188 {
        x1=3D61.8025mm; y1=3D91.812342mm; x2=3D61.485mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044191 {
        x1=3D61.085mm; y1=3D93.209842mm; x2=3D61.4025mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044194 {
        x1=3D61.485mm; y1=3D93.044158mm; x2=3D61.8025mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044197 {
        x1=3D61.085mm; y1=3D91.964158mm; x2=3D61.085mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2044200 {
        x1=3D61.485mm; y1=3D92.129842mm; x2=3D61.485mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051691 {
        x1=3D30.7275mm; y1=3D3.58in; x2=3D30.7275mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051694 {
        x1=3D30.7275mm; y1=3D91.2475mm; x2=3D30.6875mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051697 {
        x1=3D30.2475mm; y1=3D3.58in; x2=3D30.2475mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051700 {
        x1=3D30.2475mm; y1=3D91.2475mm; x2=3D30.2875mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051703 {
        x1=3D28.8225mm; y1=3D3.78in; x2=3D28.8225mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051706 {
        x1=3D28.8225mm; y1=3D96.3275mm; x2=3D28.7825mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051709 {
        x1=3D28.3425mm; y1=3D3.78in; x2=3D28.3425mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051712 {
        x1=3D28.3425mm; y1=3D96.3275mm; x2=3D28.3825mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051733 {
        x1=3D30.6875mm; y1=3D91.2875mm; x2=3D30.6875mm; y2=3D91.812342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051736 {
        x1=3D30.2875mm; y1=3D91.2875mm; x2=3D30.2875mm; y2=3D91.646658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051739 {
        x1=3D28.3825mm; y1=3D91.646658mm; x2=3D28.065mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051742 {
        x1=3D28.7825mm; y1=3D91.812342mm; x2=3D28.465mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051745 {
        x1=3D28.065mm; y1=3D93.209842mm; x2=3D28.3825mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051748 {
        x1=3D28.465mm; y1=3D93.044158mm; x2=3D28.7825mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051751 {
        x1=3D28.065mm; y1=3D91.964158mm; x2=3D28.065mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051754 {
        x1=3D28.465mm; y1=3D92.129842mm; x2=3D28.465mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051757 {
        x1=3D28.3825mm; y1=3D93.527342mm; x2=3D28.3825mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051760 {
        x1=3D28.7825mm; y1=3D93.361658mm; x2=3D28.7825mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051781 {
        x1=3D28.3825mm; y1=3D96.3675mm; x2=3D28.3825mm; y2=3D96.892342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051784 {
        x1=3D28.7825mm; y1=3D96.3675mm; x2=3D28.7825mm; y2=3D96.726658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051787 {
        x1=3D34.5375mm; y1=3D3.58in; x2=3D34.5375mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051790 {
        x1=3D34.5375mm; y1=3D91.2475mm; x2=3D34.4975mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051793 {
        x1=3D34.0575mm; y1=3D3.58in; x2=3D34.0575mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051796 {
        x1=3D34.0575mm; y1=3D91.2475mm; x2=3D34.0975mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051799 {
        x1=3D32.6325mm; y1=3D3.78in; x2=3D32.6325mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051802 {
        x1=3D32.6325mm; y1=3D96.3275mm; x2=3D32.5925mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051805 {
        x1=3D32.1525mm; y1=3D3.78in; x2=3D32.1525mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051808 {
        x1=3D32.1525mm; y1=3D96.3275mm; x2=3D32.1925mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051829 {
        x1=3D34.4975mm; y1=3D91.2875mm; x2=3D34.4975mm; y2=3D91.812342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051832 {
        x1=3D34.0975mm; y1=3D91.2875mm; x2=3D34.0975mm; y2=3D91.646658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051835 {
        x1=3D32.1925mm; y1=3D91.646658mm; x2=3D31.875mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051838 {
        x1=3D32.5925mm; y1=3D91.812342mm; x2=3D32.275mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051841 {
        x1=3D31.875mm; y1=3D93.209842mm; x2=3D32.1925mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051844 {
        x1=3D32.275mm; y1=3D93.044158mm; x2=3D32.5925mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051847 {
        x1=3D31.875mm; y1=3D91.964158mm; x2=3D31.875mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051850 {
        x1=3D32.275mm; y1=3D92.129842mm; x2=3D32.275mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051853 {
        x1=3D32.1925mm; y1=3D93.527342mm; x2=3D32.1925mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051856 {
        x1=3D32.5925mm; y1=3D93.361658mm; x2=3D32.5925mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051877 {
        x1=3D32.1925mm; y1=3D96.3675mm; x2=3D32.1925mm; y2=3D96.892342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051880 {
        x1=3D32.5925mm; y1=3D96.3675mm; x2=3D32.5925mm; y2=3D96.726658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051883 {
        x1=3D38.3475mm; y1=3D3.58in; x2=3D38.3475mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051886 {
        x1=3D38.3475mm; y1=3D91.2475mm; x2=3D38.3075mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051889 {
        x1=3D37.8675mm; y1=3D3.58in; x2=3D37.8675mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051892 {
        x1=3D37.8675mm; y1=3D91.2475mm; x2=3D37.9075mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051895 {
        x1=3D36.4425mm; y1=3D3.78in; x2=3D36.4425mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051898 {
        x1=3D36.4425mm; y1=3D96.3275mm; x2=3D36.4025mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051901 {
        x1=3D35.9625mm; y1=3D3.78in; x2=3D35.9625mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051904 {
        x1=3D35.9625mm; y1=3D96.3275mm; x2=3D36.0025mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051925 {
        x1=3D38.3075mm; y1=3D91.2875mm; x2=3D38.3075mm; y2=3D91.812342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051928 {
        x1=3D37.9075mm; y1=3D91.2875mm; x2=3D37.9075mm; y2=3D91.646658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051931 {
        x1=3D36.0025mm; y1=3D91.646658mm; x2=3D35.685mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051934 {
        x1=3D36.4025mm; y1=3D91.812342mm; x2=3D36.085mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051937 {
        x1=3D35.685mm; y1=3D93.209842mm; x2=3D36.0025mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051940 {
        x1=3D36.085mm; y1=3D93.044158mm; x2=3D36.4025mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051943 {
        x1=3D35.685mm; y1=3D91.964158mm; x2=3D35.685mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051946 {
        x1=3D36.085mm; y1=3D92.129842mm; x2=3D36.085mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051949 {
        x1=3D36.0025mm; y1=3D93.527342mm; x2=3D36.0025mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051952 {
        x1=3D36.4025mm; y1=3D93.361658mm; x2=3D36.4025mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051973 {
        x1=3D36.0025mm; y1=3D96.3675mm; x2=3D36.0025mm; y2=3D96.892342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051976 {
        x1=3D36.4025mm; y1=3D96.3675mm; x2=3D36.4025mm; y2=3D96.726658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051979 {
        x1=3D42.1575mm; y1=3D3.58in; x2=3D42.1575mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051982 {
        x1=3D42.1575mm; y1=3D91.2475mm; x2=3D42.1175mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051985 {
        x1=3D41.6775mm; y1=3D3.58in; x2=3D41.6775mm; y2=3D91.2475mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051988 {
        x1=3D41.6775mm; y1=3D91.2475mm; x2=3D41.7175mm; y2=3D91.2875mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051991 {
        x1=3D40.2525mm; y1=3D3.78in; x2=3D40.2525mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051994 {
        x1=3D40.2525mm; y1=3D96.3275mm; x2=3D40.2125mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2051997 {
        x1=3D39.7725mm; y1=3D3.78in; x2=3D39.7725mm; y2=3D96.3275mm; thickn=
ess=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052000 {
        x1=3D39.7725mm; y1=3D96.3275mm; x2=3D39.8125mm; y2=3D96.3675mm; thi=
ckness=3D0.2mm; clearance=3D0.8mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052021 {
        x1=3D42.1175mm; y1=3D91.2875mm; x2=3D42.1175mm; y2=3D91.812342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052024 {
        x1=3D41.7175mm; y1=3D91.2875mm; x2=3D41.7175mm; y2=3D91.646658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052027 {
        x1=3D39.8125mm; y1=3D91.646658mm; x2=3D39.495mm; y2=3D91.964158mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052030 {
        x1=3D40.2125mm; y1=3D91.812342mm; x2=3D39.895mm; y2=3D92.129842mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052033 {
        x1=3D39.495mm; y1=3D93.209842mm; x2=3D39.8125mm; y2=3D93.527342mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052036 {
        x1=3D39.895mm; y1=3D93.044158mm; x2=3D40.2125mm; y2=3D93.361658mm; =
thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052039 {
        x1=3D39.495mm; y1=3D91.964158mm; x2=3D39.495mm; y2=3D93.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052042 {
        x1=3D39.895mm; y1=3D92.129842mm; x2=3D39.895mm; y2=3D93.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052045 {
        x1=3D39.8125mm; y1=3D93.527342mm; x2=3D39.8125mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052048 {
        x1=3D40.2125mm; y1=3D93.361658mm; x2=3D40.2125mm; y2=3D95.1565mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052069 {
        x1=3D39.8125mm; y1=3D96.3675mm; x2=3D39.8125mm; y2=3D96.892342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052072 {
        x1=3D40.2125mm; y1=3D96.3675mm; x2=3D40.2125mm; y2=3D96.726658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052075 {
        x1=3D28.3825mm; y1=3D89.2695mm; x2=3D28.3825mm; y2=3D91.646658mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052078 {
        x1=3D28.7825mm; y1=3D89.2695mm; x2=3D28.7825mm; y2=3D91.812342mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052087 {
        x1=3D32.1925mm; y1=3D91.646658mm; x2=3D32.1925mm; y2=3D85.4595mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052090 {
        x1=3D32.5925mm; y1=3D91.812342mm; x2=3D32.5925mm; y2=3D85.4595mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052093 {
        x1=3D36.0025mm; y1=3D91.646658mm; x2=3D36.0025mm; y2=3D83.5545mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052096 {
        x1=3D36.4025mm; y1=3D91.812342mm; x2=3D36.4025mm; y2=3D83.5545mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052099 {
        x1=3D39.8125mm; y1=3D91.646658mm; x2=3D39.8125mm; y2=3D87.3645mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052102 {
        x1=3D40.2125mm; y1=3D91.812342mm; x2=3D40.2125mm; y2=3D87.3645mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2082491 {
        x1=3D40.13mm; y1=3D97.542mm; x2=3D40.13mm; y2=3D97.209842mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2082488 {
        x1=3D40.530421mm; y1=3D97.542421mm; x2=3D40.530421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2081065 {
        x1=3D40.005mm; y1=3D97.667mm; x2=3D40.13mm; y2=3D97.542mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2081059 {
        x1=3D40.655mm; y1=3D97.667mm; x2=3D40.530421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2052066 {
        x1=3D39.8125mm; y1=3D96.892342mm; x2=3D40.13mm; y2=3D97.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2052063 {
        x1=3D40.2125mm; y1=3D96.726658mm; x2=3D40.53mm; y2=3D97.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090240 {
        x1=3D41.8mm; y1=3D92.129842mm; x2=3D41.8mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090243 {
        x1=3D41.399579mm; y1=3D91.964579mm; x2=3D41.399579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090246 {
        x1=3D41.925mm; y1=3D92.587mm; x2=3D41.8mm; y2=3D92.462mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090249 {
        x1=3D1.625in; y1=3D92.587mm; x2=3D41.399579mm; y2=3D92.462421mm; th=
ickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090252 {
        x1=3D42.1175mm; y1=3D91.812342mm; x2=3D41.8mm; y2=3D92.129842mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090255 {
        x1=3D41.7175mm; y1=3D91.646658mm; x2=3D41.4mm; y2=3D91.964158mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090304 {
        x1=3D36.32mm; y1=3D97.542mm; x2=3D36.32mm; y2=3D97.209842mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090307 {
        x1=3D36.720421mm; y1=3D97.542421mm; x2=3D36.720421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090310 {
        x1=3D36.195mm; y1=3D97.667mm; x2=3D36.32mm; y2=3D97.542mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090313 {
        x1=3D36.845mm; y1=3D97.667mm; x2=3D36.720421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090316 {
        x1=3D36.0025mm; y1=3D96.892342mm; x2=3D36.32mm; y2=3D97.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090319 {
        x1=3D36.4025mm; y1=3D96.726658mm; x2=3D36.72mm; y2=3D97.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090336 {
        x1=3D32.51mm; y1=3D97.542mm; x2=3D32.51mm; y2=3D97.209842mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090339 {
        x1=3D32.910421mm; y1=3D97.542421mm; x2=3D32.910421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090342 {
        x1=3D1.275in; y1=3D97.667mm; x2=3D32.51mm; y2=3D97.542mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090345 {
        x1=3D33.035mm; y1=3D97.667mm; x2=3D32.910421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090348 {
        x1=3D32.1925mm; y1=3D96.892342mm; x2=3D32.51mm; y2=3D97.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090351 {
        x1=3D32.5925mm; y1=3D96.726658mm; x2=3D32.91mm; y2=3D97.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090368 {
        x1=3D28.7mm; y1=3D97.542mm; x2=3D28.7mm; y2=3D97.209842mm; thicknes=
s=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090371 {
        x1=3D29.100421mm; y1=3D97.542421mm; x2=3D29.100421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090374 {
        x1=3D1.125in; y1=3D97.667mm; x2=3D28.7mm; y2=3D97.542mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090377 {
        x1=3D29.225mm; y1=3D97.667mm; x2=3D29.100421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090380 {
        x1=3D28.3825mm; y1=3D96.892342mm; x2=3D28.7mm; y2=3D97.209842mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090383 {
        x1=3D28.7825mm; y1=3D96.726658mm; x2=3D29.1mm; y2=3D97.044158mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090400 {
        x1=3D61.72mm; y1=3D97.542mm; x2=3D61.72mm; y2=3D97.209842mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090403 {
        x1=3D62.120421mm; y1=3D97.542421mm; x2=3D62.120421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090406 {
        x1=3D2.425in; y1=3D97.667mm; x2=3D61.72mm; y2=3D97.542mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090409 {
        x1=3D62.245mm; y1=3D97.667mm; x2=3D62.120421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090412 {
        x1=3D61.4025mm; y1=3D96.892342mm; x2=3D61.72mm; y2=3D97.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090415 {
        x1=3D61.8025mm; y1=3D96.726658mm; x2=3D62.12mm; y2=3D97.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090432 {
        x1=3D65.53mm; y1=3D97.542mm; x2=3D65.53mm; y2=3D97.209842mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090435 {
        x1=3D65.930421mm; y1=3D97.542421mm; x2=3D65.930421mm; y2=3D97.04457=
9mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090438 {
        x1=3D65.405mm; y1=3D97.667mm; x2=3D65.53mm; y2=3D97.542mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090441 {
        x1=3D66.055mm; y1=3D97.667mm; x2=3D65.930421mm; y2=3D97.542421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090444 {
        x1=3D65.2125mm; y1=3D96.892342mm; x2=3D65.53mm; y2=3D97.209842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090447 {
        x1=3D65.6125mm; y1=3D96.726658mm; x2=3D65.93mm; y2=3D97.044158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090496 {
        x1=3D37.99mm; y1=3D92.129842mm; x2=3D37.99mm; y2=3D92.462mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090499 {
        x1=3D37.589579mm; y1=3D91.964579mm; x2=3D37.589579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090502 {
        x1=3D38.115mm; y1=3D92.587mm; x2=3D37.99mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090505 {
        x1=3D37.465mm; y1=3D92.587mm; x2=3D37.589579mm; y2=3D92.462421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090508 {
        x1=3D38.3075mm; y1=3D91.812342mm; x2=3D37.99mm; y2=3D92.129842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090511 {
        x1=3D37.9075mm; y1=3D91.646658mm; x2=3D37.59mm; y2=3D91.964158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090528 {
        x1=3D34.18mm; y1=3D92.129842mm; x2=3D34.18mm; y2=3D92.462mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090531 {
        x1=3D33.779579mm; y1=3D91.964579mm; x2=3D33.779579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090534 {
        x1=3D34.305mm; y1=3D92.587mm; x2=3D34.18mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090537 {
        x1=3D33.655mm; y1=3D92.587mm; x2=3D33.779579mm; y2=3D92.462421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090540 {
        x1=3D34.4975mm; y1=3D91.812342mm; x2=3D34.18mm; y2=3D92.129842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090543 {
        x1=3D34.0975mm; y1=3D91.646658mm; x2=3D33.78mm; y2=3D91.964158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090560 {
        x1=3D30.37mm; y1=3D92.129842mm; x2=3D30.37mm; y2=3D92.462mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090563 {
        x1=3D29.969579mm; y1=3D91.964579mm; x2=3D29.969579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090566 {
        x1=3D30.495mm; y1=3D92.587mm; x2=3D30.37mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090569 {
        x1=3D1.175in; y1=3D92.587mm; x2=3D29.969579mm; y2=3D92.462421mm; th=
ickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090572 {
        x1=3D30.6875mm; y1=3D91.812342mm; x2=3D30.37mm; y2=3D92.129842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090575 {
        x1=3D30.2875mm; y1=3D91.646658mm; x2=3D29.97mm; y2=3D91.964158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090624 {
        x1=3D63.39mm; y1=3D92.129842mm; x2=3D63.39mm; y2=3D92.462mm; thickn=
ess=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090627 {
        x1=3D62.989579mm; y1=3D91.964579mm; x2=3D62.989579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090630 {
        x1=3D63.515mm; y1=3D92.587mm; x2=3D63.39mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090633 {
        x1=3D62.865mm; y1=3D92.587mm; x2=3D62.989579mm; y2=3D92.462421mm; t=
hickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090636 {
        x1=3D63.7075mm; y1=3D91.812342mm; x2=3D63.39mm; y2=3D92.129842mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090639 {
        x1=3D63.3075mm; y1=3D91.646658mm; x2=3D62.99mm; y2=3D91.964158mm; t=
hickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090656 {
        x1=3D67.2mm; y1=3D92.129842mm; x2=3D67.2mm; y2=3D92.462mm; thicknes=
s=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090659 {
        x1=3D66.799579mm; y1=3D91.964579mm; x2=3D66.799579mm; y2=3D92.46242=
1mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090662 {
        x1=3D67.325mm; y1=3D92.587mm; x2=3D67.2mm; y2=3D92.462mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090665 {
        x1=3D2.625in; y1=3D92.587mm; x2=3D66.799579mm; y2=3D92.462421mm; th=
ickness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090668 {
        x1=3D67.5175mm; y1=3D91.812342mm; x2=3D67.2mm; y2=3D92.129842mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2090671 {
        x1=3D67.1175mm; y1=3D91.646658mm; x2=3D66.8mm; y2=3D91.964158mm; th=
ickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2154768 {
        x1=3D61.4025mm; y1=3D96.892342mm; x2=3D61.4025mm; y2=3D93.527342mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2154774 {
        x1=3D61.8025mm; y1=3D93.361658mm; x2=3D61.8025mm; y2=3D96.726658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2154780 {
        x1=3D65.2125mm; y1=3D93.527342mm; x2=3D65.2125mm; y2=3D96.892342mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2154786 {
        x1=3D65.6125mm; y1=3D93.361658mm; x2=3D65.6125mm; y2=3D96.726658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2162891 {
        x1=3D61.0575mm; y1=3D86.705923mm; x2=3D61.0575mm; y2=3D89.218423mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2162894 {
        x1=3D61.4575mm; y1=3D86.540238mm; x2=3D61.4575mm; y2=3D89.052738mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2162903 {
        x1=3D67.8625mm; y1=3D86.705923mm; x2=3D67.8625mm; y2=3D89.218423mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2162906 {
        x1=3D67.4625mm; y1=3D86.540238mm; x2=3D67.4625mm; y2=3D89.052738mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2162951 {
        x1=3D61.8025mm; y1=3D89.397738mm; x2=3D61.4575mm; y2=3D89.052738mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2162954 {
        x1=3D61.0575mm; y1=3D89.218423mm; x2=3D61.4025mm; y2=3D89.563423mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2162957 {
        x1=3D67.1175mm; y1=3D89.397738mm; x2=3D67.4625mm; y2=3D89.052738mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2162960 {
        x1=3D67.8625mm; y1=3D89.218423mm; x2=3D67.5175mm; y2=3D89.563423mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2162984 {
        x1=3D62.9625mm; y1=3D88.265923mm; x2=3D63.3075mm; y2=3D88.610923mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2162990 {
        x1=3D65.9575mm; y1=3D88.265923mm; x2=3D65.6125mm; y2=3D88.610923mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2163354 {
        x1=3D61.4025mm; y1=3D89.563423mm; x2=3D61.4025mm; y2=3D91.646658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163360 {
        x1=3D61.8025mm; y1=3D89.397738mm; x2=3D61.8025mm; y2=3D91.812342mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163363 {
        x1=3D63.3075mm; y1=3D88.610923mm; x2=3D63.3075mm; y2=3D91.646658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163366 {
        x1=3D63.7075mm; y1=3D91.812342mm; x2=3D63.7075mm; y2=3D88.445238mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163369 {
        x1=3D65.2125mm; y1=3D88.445238mm; x2=3D65.2125mm; y2=3D91.646658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163372 {
        x1=3D65.611711mm; y1=3D88.611711mm; x2=3D65.611711mm; y2=3D91.81155=
3mm; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163375 {
        x1=3D65.611711mm; y1=3D91.811553mm; x2=3D65.6125mm; y2=3D91.812342m=
m; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163378 {
        x1=3D67.1175mm; y1=3D89.397738mm; x2=3D67.1175mm; y2=3D91.646658mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2163381 {
        x1=3D67.5175mm; y1=3D89.563423mm; x2=3D67.5175mm; y2=3D91.812342mm;=
 thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.1869490 {
        x=3D43.1175mm; y=3D89.2695mm; width=3D1.0mm; height=3D1.0mm; astart=
=3D-90; adelta=3D90; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.1869491 {
        x=3D43.1175mm; y=3D89.2695mm; width=3D1.4mm; height=3D1.4mm; astart=
=3D-90; adelta=3D90; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.1869608 {
        x=3D27.3825mm; y=3D89.2695mm; width=3D1.0mm; height=3D1.0mm; astart=
=3D180; adelta=3D90; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.1869609 {
        x=3D27.3825mm; y=3D89.2695mm; width=3D1.4mm; height=3D1.4mm; astart=
=3D180; adelta=3D90; thickness=3D0.2mm; clearance=3D0.9mm;
        ha:flags {
         clearline=3D1
        }
       }
      }
      color =3D {#8b2323}
    }
 
    ha:bottom-sig {
     lid=3D1
     group=3D12
     ha:combining {     }
 
      li:objects {
       ha:line.1494578 {
        x1=3D44.14mm; y1=3D98.302mm; x2=3D43.505mm; y2=3D97.667mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1494584 {
        x1=3D44.14mm; y1=3D97.032mm; x2=3D43.505mm; y2=3D96.397mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1790978 {
        x1=3D139.46mm; y1=3D90.682mm; x2=3D139.3mm; y2=3D90.522mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1790990 {
        x1=3D138.19mm; y1=3D91.952mm; x2=3D138.825mm; y2=3D91.317mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1790996 {
        x1=3D138.825mm; y1=3D91.317mm; x2=3D138.825mm; y2=3D90.475mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791005 {
        x1=3D140.73mm; y1=3D91.952mm; x2=3D141.365mm; y2=3D91.317mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791008 {
        x1=3D141.365mm; y1=3D91.317mm; x2=3D141.365mm; y2=3D90.435mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791017 {
        x1=3D139.46mm; y1=3D93.222mm; x2=3D140.095mm; y2=3D92.587mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791020 {
        x1=3D142.0mm; y1=3D93.222mm; x2=3D142.635mm; y2=3D92.587mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791023 {
        x1=3D138.19mm; y1=3D94.492mm; x2=3D138.825mm; y2=3D93.857mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791026 {
        x1=3D140.73mm; y1=3D94.492mm; x2=3D141.365mm; y2=3D93.857mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791038 {
        x1=3D142.0mm; y1=3D95.762mm; x2=3D142.635mm; y2=3D95.127mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791041 {
        x1=3D139.46mm; y1=3D95.762mm; x2=3D140.095mm; y2=3D95.127mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791044 {
        x1=3D138.19mm; y1=3D97.032mm; x2=3D138.825mm; y2=3D96.397mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791047 {
        x1=3D140.73mm; y1=3D97.032mm; x2=3D141.365mm; y2=3D96.397mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791270 {
        x1=3D23.82mm; y1=3D99.572mm; x2=3D25.448mm; y2=3D101.2mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791276 {
        x1=3D23.185mm; y1=3D98.937mm; x2=3D22.55mm; y2=3D98.302mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791279 {
        x1=3D23.185mm; y1=3D98.937mm; x2=3D23.185mm; y2=3D99.935mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791282 {
        x1=3D23.185mm; y1=3D99.935mm; x2=3D24.75mm; y2=3D101.5mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791288 {
        x1=3D21.28mm; y1=3D99.572mm; x2=3D23.508mm; y2=3D101.8mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791294 {
        x1=3D20.645mm; y1=3D98.937mm; x2=3D20.01mm; y2=3D98.302mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791303 {
        x1=3D20.645mm; y1=3D98.937mm; x2=3D20.645mm; y2=3D99.895mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791306 {
        x1=3D20.645mm; y1=3D99.895mm; x2=3D22.85mm; y2=3D102.1mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791312 {
        x1=3D18.74mm; y1=3D99.572mm; x2=3D21.568mm; y2=3D102.4mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791321 {
        x1=3D44.14mm; y1=3D99.572mm; x2=3D43.505mm; y2=3D98.937mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791334 {
        x1=3D18.105mm; y1=3D97.667mm; x2=3D18.74mm; y2=3D97.032mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791346 {
        x1=3D18.105mm; y1=3D97.667mm; x2=3D18.105mm; y2=3D99.855mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791349 {
        x1=3D18.105mm; y1=3D99.855mm; x2=3D824.80314961mil; y2=3D102.7mm; t=
hickness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791367 {
        x1=3D18.74mm; y1=3D94.492mm; x2=3D17.805mm; y2=3D95.427mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1791409 {
        x1=3D23.185mm; y1=3D96.397mm; x2=3D22.55mm; y2=3D95.762mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791413 {
        x1=3D20.645mm; y1=3D96.397mm; x2=3D20.01mm; y2=3D95.762mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791417 {
        x1=3D21.28mm; y1=3D97.032mm; x2=3D20.645mm; y2=3D97.667mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791421 {
        x1=3D23.82mm; y1=3D97.032mm; x2=3D23.185mm; y2=3D97.667mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791614 {
        x1=3D21.915mm; y1=3D95.127mm; x2=3D21.28mm; y2=3D94.492mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791679 {
        x1=3D23.185mm; y1=3D93.857mm; x2=3D22.55mm; y2=3D93.222mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791692 {
        x1=3D18.74mm; y1=3D91.952mm; x2=3D17.9mm; y2=3D91.952mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791706 {
        x1=3D20.01mm; y1=3D93.222mm; x2=3D19.375mm; y2=3D92.587mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1805765 {
        x1=3D142.635mm; y1=3D92.587mm; x2=3D5.64814961in; y2=3D92.587mm; th=
ickness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1805774 {
        x1=3D5.64814961in; y1=3D92.587mm; x2=3D144.3mm; y2=3D91.75mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1812898 {
        x1=3D142.0mm; y1=3D90.682mm; x2=3D141.8mm; y2=3D90.482mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1812907 {
        x1=3D141.365mm; y1=3D90.435mm; x2=3D141.5mm; y2=3D90.3mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1812913 {
        x1=3D139.3mm; y1=3D90.522mm; x2=3D139.3mm; y2=3D89.5mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1812916 {
        x1=3D138.825mm; y1=3D90.475mm; x2=3D139.0mm; y2=3D90.3mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1812931 {
        x1=3D141.8mm; y1=3D90.482mm; x2=3D141.8mm; y2=3D89.5mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1812985 {
        x1=3D143.905mm; y1=3D91.317mm; x2=3D143.905mm; y2=3D90.435mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1812988 {
        x1=3D143.905mm; y1=3D90.435mm; x2=3D144.0mm; y2=3D90.34mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1812991 {
        x1=3D144.0mm; y1=3D90.34mm; x2=3D144.0mm; y2=3D89.5mm; thickness=3D=
0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1812997 {
        x1=3D143.27mm; y1=3D91.952mm; x2=3D143.905mm; y2=3D91.317mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1813006 {
        x1=3D144.3mm; y1=3D91.75mm; x2=3D144.3mm; y2=3D89.5mm; thickness=3D=
0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813012 {
        x1=3D144.6mm; y1=3D89.5mm; x2=3D144.6mm; y2=3D91.9mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1813018 {
        x1=3D143.27mm; y1=3D94.492mm; x2=3D143.905mm; y2=3D93.857mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1813021 {
        x1=3D143.905mm; y1=3D93.857mm; x2=3D143.905mm; y2=3D92.595mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813024 {
        x1=3D143.905mm; y1=3D92.595mm; x2=3D144.6mm; y2=3D91.9mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813051 {
        x1=3D143.905mm; y1=3D94.295mm; x2=3D143.905mm; y2=3D94.849mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813060 {
        x1=3D143.905mm; y1=3D94.295mm; x2=3D144.25mm; y2=3D93.95mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813063 {
        x1=3D144.25mm; y1=3D93.95mm; x2=3D144.25mm; y2=3D92.7mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813066 {
        x1=3D144.25mm; y1=3D92.7mm; x2=3D144.9mm; y2=3D92.05mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813069 {
        x1=3D144.9mm; y1=3D92.05mm; x2=3D144.9mm; y2=3D89.5mm; thickness=3D=
0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1791077 {
        x1=3D142.635mm; y1=3D95.127mm; x2=3D143.623mm; y2=3D95.127mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1813090 {
        x1=3D143.905mm; y1=3D94.849mm; x2=3D143.627mm; y2=3D95.127mm; thick=
ness=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813130 {
        x1=3D139.46mm; y1=3D98.302mm; x2=3D138.825mm; y2=3D97.667mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1813138 {
        x1=3D138.19mm; y1=3D99.572mm; x2=3D138.825mm; y2=3D98.937mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813192 {
        x1=3D139.0mm; y1=3D90.3mm; x2=3D139.0mm; y2=3D89.5mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1813435 {
        x1=3D141.5mm; y1=3D90.3mm; x2=3D141.5mm; y2=3D89.5mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1820384 {
        x1=3D140.73mm; y1=3D99.572mm; x2=3D141.365mm; y2=3D98.937mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1820823 {
        x1=3D143.27mm; y1=3D99.572mm; x2=3D143.905mm; y2=3D98.937mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1820827 {
        x1=3D143.27mm; y1=3D97.032mm; x2=3D143.905mm; y2=3D96.397mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1820831 {
        x1=3D142.0mm; y1=3D98.302mm; x2=3D141.365mm; y2=3D97.667mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1828092 {
        x1=3D25.09mm; y1=3D98.302mm; x2=3D24.455mm; y2=3D97.667mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1840280 {
        x1=3D93.75mm; y1=3D90.692mm; x2=3D93.75mm; y2=3D95.752mm; thickness=
=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1861587 {
        x1=3D23.82mm; y1=3D94.492mm; x2=3D23.185mm; y2=3D95.127mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1861590 {
        x1=3D24.455mm; y1=3D95.127mm; x2=3D25.09mm; y2=3D95.762mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885481 {
        x1=3D17.805mm; y1=3D95.427mm; x2=3D17.805mm; y2=3D100.005mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885487 {
        x1=3D20.8mm; y1=3D103.0mm; x2=3D17.805mm; y2=3D100.005mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885511 {
        x1=3D17.505mm; y1=3D95.277mm; x2=3D17.505mm; y2=3D95.177mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885514 {
        x1=3D17.805mm; y1=3D94.877mm; x2=3D17.805mm; y2=3D92.995mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885523 {
        x1=3D17.505mm; y1=3D95.277mm; x2=3D17.505mm; y2=3D100.155mm; thickn=
ess=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885526 {
        x1=3D17.505mm; y1=3D100.155mm; x2=3D20.65mm; y2=3D103.3mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885535 {
        x1=3D20.01mm; y1=3D90.682mm; x2=3D19.375mm; y2=3D90.047mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885556 {
        x1=3D17.505mm; y1=3D95.177mm; x2=3D17.805mm; y2=3D94.877mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885559 {
        x1=3D18.213mm; y1=3D92.587mm; x2=3D17.805mm; y2=3D92.995mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885786 {
        x1=3D23.185mm; y1=3D92.587mm; x2=3D23.82mm; y2=3D91.952mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1885992 {
        x1=3D23.185mm; y1=3D91.317mm; x2=3D22.55mm; y2=3D90.682mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886788 {
        x1=3D20.645mm; y1=3D92.587mm; x2=3D21.28mm; y2=3D91.952mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886852 {
        x1=3D16.05mm; y1=3D91.85mm; x2=3D15.4mm; y2=3D92.5mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886855 {
        x1=3D15.4mm; y1=3D92.5mm; x2=3D15.4mm; y2=3D98.5mm; thickness=3D0.1=
5mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886858 {
        x1=3D15.4mm; y1=3D98.5mm; x2=3D20.5mm; y2=3D103.6mm; thickness=3D0.=
15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886864 {
        x1=3D19.378mm; y1=3D90.05mm; x2=3D17.4mm; y2=3D90.05mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886867 {
        x1=3D17.4mm; y1=3D90.05mm; x2=3D15.1mm; y2=3D92.35mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886870 {
        x1=3D15.1mm; y1=3D92.35mm; x2=3D15.1mm; y2=3D98.65mm; thickness=3D0=
=2E15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1886873 {
        x1=3D15.1mm; y1=3D98.65mm; x2=3D20.35mm; y2=3D103.9mm; thickness=3D=
0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1902271 {
        x1=3D17.798mm; y1=3D91.85mm; x2=3D17.9mm; y2=3D91.952mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.1902277 {
        x1=3D16.05mm; y1=3D91.85mm; x2=3D17.798mm; y2=3D91.85mm; thickness=
=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1902283 {
        x1=3D18.213mm; y1=3D92.587mm; x2=3D19.375mm; y2=3D92.587mm; thickne=
ss=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1902301 {
        x1=3D26.36mm; y1=3D100.21mm; x2=3D26.36mm; y2=3D90.682mm; thickness=
=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1910351 {
        x1=3D93.74mm; y1=3D98.302mm; x2=3D95.01mm; y2=3D99.572mm; thickness=
=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1910354 {
        x1=3D93.74mm; y1=3D99.572mm; x2=3D95.01mm; y2=3D98.302mm; thickness=
=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1910390 {
        x1=3D135.65mm; y1=3D100.4mm; x2=3D135.65mm; y2=3D90.682mm; thicknes=
s=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1933774 {
        x1=3D25.09mm; y1=3D93.222mm; x2=3D24.455mm; y2=3D92.587mm; thicknes=
s=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1933777 {
        x1=3D25.09mm; y1=3D90.682mm; x2=3D24.455mm; y2=3D90.047mm; thicknes=
s=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1941406 {
        x1=3D136.92mm; y1=3D93.222mm; x2=3D137.555mm; y2=3D92.587mm; thickn=
ess=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1941409 {
        x1=3D136.92mm; y1=3D90.682mm; x2=3D137.555mm; y2=3D90.047mm; thickn=
ess=3D0.3mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.1941605 {
        x1=3D44.14mm; y1=3D95.762mm; x2=3D43.505mm; y2=3D95.127mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2073816 {
        x1=3D44.14mm; y1=3D94.492mm; x2=3D44.775mm; y2=3D93.857mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2073826 {
        x1=3D44.14mm; y1=3D93.222mm; x2=3D44.775mm; y2=3D92.587mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2073830 {
        x1=3D44.14mm; y1=3D90.682mm; x2=3D44.775mm; y2=3D90.047mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2081038 {
        x1=3D40.33mm; y1=3D98.302mm; x2=3D40.33mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090196 {
        x1=3D40.33mm; y1=3D97.032mm; x2=3D40.33mm; y2=3D3.8323622in; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090199 {
        x1=3D40.33mm; y1=3D3.8323622in; x2=3D40.005mm; y2=3D97.667mm; thick=
ness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090205 {
        x1=3D40.33mm; y1=3D97.992mm; x2=3D40.655mm; y2=3D97.667mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090322 {
        x1=3D36.52mm; y1=3D98.302mm; x2=3D36.52mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090325 {
        x1=3D36.52mm; y1=3D97.032mm; x2=3D36.52mm; y2=3D3.8323622in; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090328 {
        x1=3D36.52mm; y1=3D3.8323622in; x2=3D36.195mm; y2=3D97.667mm; thick=
ness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090331 {
        x1=3D36.52mm; y1=3D97.992mm; x2=3D36.845mm; y2=3D97.667mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090354 {
        x1=3D32.71mm; y1=3D98.302mm; x2=3D32.71mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090357 {
        x1=3D32.71mm; y1=3D97.032mm; x2=3D32.71mm; y2=3D3.8323622in; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090360 {
        x1=3D32.71mm; y1=3D3.8323622in; x2=3D1.275in; y2=3D97.667mm; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090363 {
        x1=3D32.71mm; y1=3D97.992mm; x2=3D33.035mm; y2=3D97.667mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090386 {
        x1=3D28.9mm; y1=3D98.302mm; x2=3D28.9mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090389 {
        x1=3D28.9mm; y1=3D97.032mm; x2=3D28.9mm; y2=3D3.8323622in; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090392 {
        x1=3D28.9mm; y1=3D3.8323622in; x2=3D1.125in; y2=3D97.667mm; thickne=
ss=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090395 {
        x1=3D28.9mm; y1=3D97.992mm; x2=3D29.225mm; y2=3D97.667mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090424 {
        x1=3D2.425in; y1=3D97.667mm; x2=3D61.92mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090427 {
        x1=3D62.245mm; y1=3D97.667mm; x2=3D61.92mm; y2=3D3.8323622in; thick=
ness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090581 {
        x1=3D30.495mm; y1=3D92.587mm; x2=3D30.17mm; y2=3D92.912mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090642 {
        x1=3D63.19mm; y1=3D92.912mm; x2=3D63.19mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090645 {
        x1=3D63.19mm; y1=3D91.952mm; x2=3D63.19mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090648 {
        x1=3D63.19mm; y1=3D92.262mm; x2=3D63.515mm; y2=3D92.587mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090651 {
        x1=3D63.19mm; y1=3D92.912mm; x2=3D62.865mm; y2=3D92.587mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090674 {
        x1=3D67.0mm; y1=3D92.912mm; x2=3D67.0mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090677 {
        x1=3D67.0mm; y1=3D91.952mm; x2=3D67.0mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090680 {
        x1=3D67.0mm; y1=3D92.262mm; x2=3D67.325mm; y2=3D92.587mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2090683 {
        x1=3D67.0mm; y1=3D92.912mm; x2=3D2.625in; y2=3D92.587mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2073834 {
        x1=3D44.14mm; y1=3D91.952mm; x2=3D44.775mm; y2=3D91.317mm; thicknes=
s=3D0.15mm; clearance=3D0.3mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2511946 {
        x1=3D30.17mm; y1=3D92.912mm; x2=3D30.17mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2511949 {
        x1=3D30.17mm; y1=3D91.952mm; x2=3D30.17mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2511952 {
        x1=3D30.17mm; y1=3D92.262mm; x2=3D1.175in; y2=3D92.587mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513164 {
        x1=3D34.305mm; y1=3D92.587mm; x2=3D33.98mm; y2=3D92.912mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513167 {
        x1=3D33.98mm; y1=3D92.912mm; x2=3D33.98mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513170 {
        x1=3D33.98mm; y1=3D91.952mm; x2=3D33.98mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513173 {
        x1=3D33.98mm; y1=3D92.262mm; x2=3D33.655mm; y2=3D92.587mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513176 {
        x1=3D38.115mm; y1=3D92.587mm; x2=3D37.79mm; y2=3D92.912mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513179 {
        x1=3D37.79mm; y1=3D92.912mm; x2=3D37.79mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513182 {
        x1=3D37.79mm; y1=3D91.952mm; x2=3D37.79mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513185 {
        x1=3D37.79mm; y1=3D92.262mm; x2=3D37.465mm; y2=3D92.587mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513188 {
        x1=3D41.925mm; y1=3D92.587mm; x2=3D41.6mm; y2=3D92.912mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513191 {
        x1=3D41.6mm; y1=3D92.912mm; x2=3D41.6mm; y2=3D93.222mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.2513194 {
        x1=3D41.6mm; y1=3D91.952mm; x2=3D41.6mm; y2=3D92.262mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.2513197 {
        x1=3D41.6mm; y1=3D92.262mm; x2=3D1.625in; y2=3D92.587mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4045737 {
        x1=3D61.92mm; y1=3D3.8323622in; x2=3D61.92mm; y2=3D97.032mm; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4045743 {
        x1=3D61.92mm; y1=3D97.992mm; x2=3D61.92mm; y2=3D98.302mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4045755 {
        x1=3D66.055mm; y1=3D97.667mm; x2=3D65.73mm; y2=3D3.8323622in; thick=
ness=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4045758 {
        x1=3D65.73mm; y1=3D3.8323622in; x2=3D65.73mm; y2=3D97.032mm; thickn=
ess=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4045761 {
        x1=3D65.73mm; y1=3D98.302mm; x2=3D65.73mm; y2=3D97.992mm; thickness=
=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4045764 {
        x1=3D65.73mm; y1=3D97.992mm; x2=3D65.405mm; y2=3D97.667mm; thicknes=
s=3D0.2mm; clearance=3D0.65mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#3a5fcd}
    }
 
    ha:top-gnd {
     lid=3D2
     group=3D3
     ha:combining {     }
 
      li:objects {
       ha:polygon.2303699 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 59.2519685mil; 104.5mm }
           { 59.2519685mil; 5.5mm }
           { 160.505mm; 5.5mm }
           { 160.505mm; 104.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
         lock=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#104e8b}
    }
 
    ha:bottom-gnd {
     lid=3D3
     group=3D12
     ha:combining {     }
 
      li:objects {
       ha:polygon.2321002 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 59.2519685mil; 104.5mm }
           { 59.2519685mil; 5.5mm }
           { 160.505mm; 5.5mm }
           { 160.505mm; 104.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
         lock=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#cd3700}
    }
 
    ha:int-sig2 {
     lid=3D4
     group=3D7
     ha:combining {     }
 
      li:objects {
       ha:polygon.1393155 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 59.2519685mil; 104.5mm }
           { 59.2519685mil; 5.5mm }
           { 160.505mm; 5.5mm }
           { 160.505mm; 104.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
         lock=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#548b54}
    }
 
    ha:int-sig1 {
     lid=3D5
     group=3D5
     ha:combining {     }
 
      li:objects {
       ha:polygon.1070635 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 59.2519685mil; 104.5mm }
           { 59.2519685mil; 5.5mm }
           { 160.505mm; 5.5mm }
           { 160.505mm; 104.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
         lock=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#8b7355}
    }
 
    ha:outline {
     lid=3D6
     group=3D9
     ha:combining { auto=3D1;     }
 
      li:objects {
       ha:line.1535538 {
        x1=3D161.005mm; y1=3D105.0mm; x2=3D1.005mm; y2=3D105.0mm; thickness=
=3D0.001mm; clearance=3D0.4mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4583958 {
        x1=3D161.005mm; y1=3D105.0mm; x2=3D161.005mm; y2=3D5.0mm; thickness=
=3D0.001mm; clearance=3D0.4mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4584063 {
        x1=3D161.005mm; y1=3D5.0mm; x2=3D1.005mm; y2=3D5.0mm; thickness=3D0=
=2E001mm; clearance=3D0.4mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:line.4584066 {
        x1=3D1.005mm; y1=3D105.0mm; x2=3D1.005mm; y2=3D5.0mm; thickness=3D0=
=2E001mm; clearance=3D0.4mm;
        ha:flags {
         clearline=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
      }
      color =3D {#00868b}
    }
 
    ha:bottom-silk {
     lid=3D7
     group=3D14
     ha:combining { auto=3D1;     }
 
      li:objects {
      }
      color =3D {#000000}
    }
 
    ha:top-silk {
     lid=3D8
     group=3D1
     ha:combining { auto=3D1;     }
 
      li:objects {
      }
      color =3D {#000000}
    }
 
    ha:top-paste {
     lid=3D9
     group=3D0
     ha:combining { auto=3D1;     }
 
      li:objects {
      }
      color =3D {#cd00cd}
    }
 
    ha:top-mask {
     lid=3D10
     group=3D2
     ha:combining { sub=3D1; auto=3D1;     }
 
      li:objects {
       ha:line.4289725 {
        x1=3D16.5mm; y1=3D15.0mm; x2=3D16.5mm; y2=3D6.75mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4289974 {
        x1=3D11.5mm; y1=3D14.5mm; x2=3D11.5mm; y2=3D14.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325147 {
        x1=3D12.5mm; y1=3D19.5mm; x2=3D9.75mm; y2=3D22.25mm; thickness=3D0.=
7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325150 {
        x1=3D9.75mm; y1=3D22.25mm; x2=3D9.75mm; y2=3D23.75mm; thickness=3D0=
=2E7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325231 {
        x1=3D61.745mm; y1=3D78.0mm; x2=3D61.745mm; y2=3D81.0mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325237 {
        x1=3D63.995mm; y1=3D79.0mm; x2=3D63.995mm; y2=3D81.0mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325243 {
        x1=3D66.245mm; y1=3D80.0mm; x2=3D66.245mm; y2=3D81.0mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325277 {
        x1=3D62.995mm; y1=3D76.75mm; x2=3D67.5mm; y2=3D76.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325280 {
        x1=3D65.245mm; y1=3D77.75mm; x2=3D69.75mm; y2=3D77.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325283 {
        x1=3D67.495mm; y1=3D78.75mm; x2=3D72.0mm; y2=3D78.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325286 {
        x1=3D69.745mm; y1=3D79.75mm; x2=3D74.25mm; y2=3D79.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325289 {
        x1=3D71.0mm; y1=3D76.5mm; x2=3D71.0mm; y2=3D75.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325292 {
        x1=3D73.25mm; y1=3D77.5mm; x2=3D73.25mm; y2=3D75.5mm; thickness=3D0=
=2E7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325295 {
        x1=3D75.5mm; y1=3D78.5mm; x2=3D75.5mm; y2=3D75.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325298 {
        x1=3D68.125mm; y1=3D69.25mm; x2=3D69.75mm; y2=3D69.25mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325304 {
        x1=3D74.5mm; y1=3D69.25mm; x2=3D76.125mm; y2=3D69.25mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325307 {
        x1=3D63.75mm; y1=3D70.5mm; x2=3D63.75mm; y2=3D69.5mm; thickness=3D0=
=2E7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325310 {
        x1=3D80.5mm; y1=3D70.5mm; x2=3D80.5mm; y2=3D69.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325315 {
        x1=3D67.5mm; y1=3D65.75mm; x2=3D69.75mm; y2=3D65.75mm; thickness=3D=
0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325318 {
        x1=3D68.125mm; y1=3D66.75mm; x2=3D69.75mm; y2=3D66.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325322 {
        x1=3D76.125mm; y1=3D66.75mm; x2=3D74.5mm; y2=3D66.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325325 {
        x1=3D76.75mm; y1=3D65.75mm; x2=3D74.5mm; y2=3D65.75mm; thickness=3D=
0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325335 {
        x1=3D72.125mm; y1=3D63.34mm; x2=3D72.125mm; y2=3D64.0mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4325338 {
        x1=3D73.375mm; y1=3D62.09mm; x2=3D75.25mm; y2=3D62.09mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4349283 {
        x1=3D26.5mm; y1=3D14.5mm; x2=3D26.5mm; y2=3D14.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4349286 {
        x1=3D41.5mm; y1=3D14.5mm; x2=3D41.5mm; y2=3D14.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4349289 {
        x1=3D56.5mm; y1=3D14.5mm; x2=3D56.5mm; y2=3D14.5mm; thickness=3D0.7=
mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325106 {
        x=3D14.75mm; y=3D15.0mm; width=3D1.75mm; height=3D1.75mm; astart=3D=
90; adelta=3D90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325246 {
        x=3D69.745mm; y=3D81.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325248 {
        x=3D67.495mm; y=3D80.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325249 {
        x=3D65.245mm; y=3D79.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325250 {
        x=3D62.995mm; y=3D78.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325251 {
        x=3D68.125mm; y=3D68.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325252 {
        x=3D74.5mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D0=
; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325253 {
        x=3D69.75mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325254 {
        x=3D79.25mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325255 {
        x=3D76.75mm; y=3D75.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325256 {
        x=3D74.5mm; y=3D75.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D0=
; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325257 {
        x=3D68.125mm; y=3D68.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D90; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325258 {
        x=3D74.5mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D9=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325259 {
        x=3D67.5mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D9=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325260 {
        x=3D69.75mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
90; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325261 {
        x=3D76.75mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325262 {
        x=3D74.5mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D1=
80; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325263 {
        x=3D74.25mm; y=3D78.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325264 {
        x=3D72.0mm; y=3D77.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D1=
80; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325265 {
        x=3D69.75mm; y=3D76.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325266 {
        x=3D67.5mm; y=3D75.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D1=
80; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325267 {
        x=3D69.75mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325268 {
        x=3D76.125mm; y=3D68.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325270 {
        x=3D74.5mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D2=
70; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325271 {
        x=3D69.75mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
270; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325272 {
        x=3D65.0mm; y=3D73.0mm; width=3D1.25mm; height=3D1.25mm; astart=3D2=
70; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325273 {
        x=3D67.5mm; y=3D75.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D2=
70; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325274 {
        x=3D69.75mm; y=3D75.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
270; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325275 {
        x=3D65.0mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D9=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325276 {
        x=3D79.25mm; y=3D70.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325313 {
        x=3D76.75mm; y=3D69.5mm; width=3D3.75mm; height=3D3.75mm; astart=3D=
180; adelta=3D90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325314 {
        x=3D67.5mm; y=3D69.5mm; width=3D3.75mm; height=3D3.75mm; astart=3D0=
; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325321 {
        x=3D76.125mm; y=3D68.0mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D180; adelta=3D90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4325341 {
        x=3D73.375mm; y=3D63.34mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D-90; adelta=3D90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:polygon.851195 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 167.815mm; 138.75mm }
           { 168.475mm; 138.75mm }
           { 168.475mm; 141.25mm }
           { 167.815mm; 141.25mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.851205 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 168.75mm; 142.185mm }
           { 168.75mm; 141.525mm }
           { 171.25mm; 141.525mm }
           { 171.25mm; 142.185mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.851210 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 172.185mm; 141.25mm }
           { 171.525mm; 141.25mm }
           { 171.525mm; 138.75mm }
           { 172.185mm; 138.75mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.851215 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 171.25mm; 5.4257874in }
           { 171.25mm; 138.475mm }
           { 168.75mm; 138.475mm }
           { 168.75mm; 5.4257874in }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.1571587 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 4.9825in; 2.5575in }
           { 127.4445mm; 2.5575in }
           { 127.4445mm; 69.215mm }
           { 4.9825in; 69.215mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.1571592 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 4.9825in; 2.4875in }
           { 127.4445mm; 2.4875in }
           { 127.4445mm; 64.8335mm }
           { 4.9825in; 64.8335mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508212 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 181.75mm; 27.065mm }
           { 181.75mm; 27.725mm }
           { 179.25mm; 27.725mm }
           { 179.25mm; 27.065mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508217 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 182.685mm; 30.5mm }
           { 182.025mm; 30.5mm }
           { 182.025mm; 28.0mm }
           { 182.685mm; 28.0mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508222 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 179.25mm; 31.435mm }
           { 179.25mm; 30.775mm }
           { 181.75mm; 30.775mm }
           { 181.75mm; 31.435mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508227 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 178.315mm; 28.0mm }
           { 178.975mm; 28.0mm }
           { 178.975mm; 30.5mm }
           { 178.315mm; 30.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508499 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 173.315mm; 28.0mm }
           { 173.975mm; 28.0mm }
           { 173.975mm; 30.5mm }
           { 173.315mm; 30.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508524 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 174.815mm; 28.0mm }
           { 175.475mm; 28.0mm }
           { 175.475mm; 30.5mm }
           { 174.815mm; 30.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.3508539 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 7.2761811in; 28.0mm }
           { 185.475mm; 28.0mm }
           { 185.475mm; 30.5mm }
           { 7.2761811in; 30.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4325107 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 14.4mm; 16.4mm }
           { 14.75mm; 16.4mm }
           { 14.75mm; 17.1mm }
           { 14.4mm; 17.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325117 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 14.2mm; 16.4mm }
           { 14.3mm; 16.4mm }
           { 14.3mm; 17.1mm }
           { 14.2mm; 17.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325127 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 11.15mm; 15.05mm }
           { 11.15mm; 14.95mm }
           { 11.85mm; 14.95mm }
           { 11.85mm; 15.05mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325132 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 12.85mm; 18.95mm }
           { 12.85mm; 750.0mil }
           { 12.15mm; 750.0mil }
           { 12.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325137 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 13.85mm; 18.95mm }
           { 13.85mm; 750.0mil }
           { 13.15mm; 750.0mil }
           { 13.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325142 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 11.15mm; 14.5mm }
           { 11.85mm; 14.5mm }
           { 11.85mm; 14.85mm }
           { 11.15mm; 14.85mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325153 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 12.15mm; 19.15mm }
           { 12.85mm; 19.15mm }
           { 12.85mm; 19.5mm }
           { 12.15mm; 19.5mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325158 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 9.4mm; 23.8mm }
           { 10.1mm; 23.8mm }
           { 10.1mm; 24.1mm }
           { 9.4mm; 24.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325168 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 9.4mm; 24.2mm }
           { 10.1mm; 24.2mm }
           { 10.1mm; 24.3mm }
           { 9.4mm; 24.3mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4325178 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 16.15mm; 6.4mm }
           { 16.85mm; 6.4mm }
           { 16.85mm; 6.75mm }
           { 16.15mm; 6.75mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4337263 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 69.75mm; 65.4mm }
           { 70.3mm; 65.4mm }
           { 70.3mm; 2.6023622in }
           { 69.75mm; 2.6023622in }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4337273 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 69.75mm; 66.4mm }
           { 70.3mm; 66.4mm }
           { 70.3mm; 67.1mm }
           { 69.75mm; 67.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4337278 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 74.5mm; 66.4mm }
           { 73.95mm; 66.4mm }
           { 73.95mm; 67.1mm }
           { 74.5mm; 67.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4337283 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 74.5mm; 65.4mm }
           { 73.95mm; 65.4mm }
           { 73.95mm; 2.6023622in }
           { 74.5mm; 2.6023622in }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4337288 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 71.775mm; 63.875mm }
           { 71.775mm; 64.425mm }
           { 72.475mm; 64.425mm }
           { 72.475mm; 63.875mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4349260 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 68.145mm; 81.0mm }
           { 68.145mm; 81.4mm }
           { 68.845mm; 81.4mm }
           { 68.845mm; 81.0mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4349265 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 65.895mm; 81.0mm }
           { 65.895mm; 81.4mm }
           { 66.595mm; 81.4mm }
           { 66.595mm; 81.0mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4349270 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 63.645mm; 81.0mm }
           { 63.645mm; 81.4mm }
           { 64.345mm; 81.4mm }
           { 64.345mm; 81.0mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4349275 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 61.395mm; 81.0mm }
           { 61.395mm; 81.4mm }
           { 62.095mm; 81.4mm }
           { 62.095mm; 81.0mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4349300 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 26.15mm; 14.5mm }
           { 26.85mm; 14.5mm }
           { 26.85mm; 14.85mm }
           { 26.15mm; 14.85mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349305 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 41.15mm; 14.5mm }
           { 41.85mm; 14.5mm }
           { 41.85mm; 14.85mm }
           { 41.15mm; 14.85mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349310 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 56.15mm; 14.5mm }
           { 56.85mm; 14.5mm }
           { 56.85mm; 14.85mm }
           { 56.15mm; 14.85mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349355 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 29.2mm; 16.4mm }
           { 29.3mm; 16.4mm }
           { 29.3mm; 17.1mm }
           { 29.2mm; 17.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349360 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 26.15mm; 15.05mm }
           { 26.15mm; 14.95mm }
           { 26.85mm; 14.95mm }
           { 26.85mm; 15.05mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349365 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 27.85mm; 18.95mm }
           { 27.85mm; 750.0mil }
           { 27.15mm; 750.0mil }
           { 27.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349370 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 28.85mm; 18.95mm }
           { 28.85mm; 750.0mil }
           { 28.15mm; 750.0mil }
           { 28.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349375 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 44.2mm; 16.4mm }
           { 44.3mm; 16.4mm }
           { 44.3mm; 17.1mm }
           { 44.2mm; 17.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349380 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 41.15mm; 15.05mm }
           { 41.15mm; 14.95mm }
           { 41.85mm; 14.95mm }
           { 41.85mm; 15.05mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349385 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 42.85mm; 18.95mm }
           { 42.85mm; 750.0mil }
           { 42.15mm; 750.0mil }
           { 42.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349390 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 43.85mm; 18.95mm }
           { 43.85mm; 750.0mil }
           { 43.15mm; 750.0mil }
           { 43.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349395 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 59.2mm; 16.4mm }
           { 59.3mm; 16.4mm }
           { 59.3mm; 17.1mm }
           { 59.2mm; 17.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349400 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 56.15mm; 15.05mm }
           { 56.15mm; 14.95mm }
           { 56.85mm; 14.95mm }
           { 56.85mm; 15.05mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349405 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 57.85mm; 18.95mm }
           { 57.85mm; 750.0mil }
           { 2.25in; 750.0mil }
           { 2.25in; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4349410 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 58.85mm; 18.95mm }
           { 58.85mm; 750.0mil }
           { 58.15mm; 750.0mil }
           { 58.15mm; 18.95mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4409744 { clearance=3D0.4mm;
        li:geometry {
          ta:contour {
           { 75.208mm; 62.44mm }
           { 75.608mm; 62.44mm }
           { 75.608mm; 61.74mm }
           { 75.208mm; 61.74mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
 
        ha:attributes {
          <new>=3Dn/a
        }
       }
       ha:polygon.4422347 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 9.4mm; 32.8mm }
           { 10.1mm; 32.8mm }
           { 10.1mm; 33.1mm }
           { 9.4mm; 33.1mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
       ha:polygon.4422352 { clearance=3D0.36mm;
        li:geometry {
          ta:contour {
           { 9.4mm; 33.2mm }
           { 10.1mm; 33.2mm }
           { 10.1mm; 33.3mm }
           { 9.4mm; 33.3mm }
          }
        }
 
        ha:flags {
         clearpoly=3D1
        }
       }
      }
      color =3D {#ff0000}
    }
 
    ha:bottom-mask {
     lid=3D11
     group=3D13
     ha:combining { sub=3D1; auto=3D1;     }
 
      li:objects {
       ha:line.4289740 {
        x1=3D12.75mm; y1=3D13.25mm; x2=3D17.0mm; y2=3D13.25mm; thickness=3D=
0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4289743 {
        x1=3D18.25mm; y1=3D14.5mm; x2=3D18.25mm; y2=3D15.75mm; thickness=3D=
0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4289977 {
        x1=3D19.25mm; y1=3D21.25mm; x2=3D19.25mm; y2=3D21.75mm; thickness=
=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4289981 {
        x1=3D20.5mm; y1=3D23.0mm; x2=3D32.25mm; y2=3D23.0mm; thickness=3D0.=
7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:line.4289985 {
        x1=3D33.5mm; y1=3D24.25mm; x2=3D33.5mm; y2=3D34.5mm; thickness=3D0.=
7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289738 {
        x=3D12.75mm; y=3D14.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289739 {
        x=3D17.0mm; y=3D14.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D-=
90; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289980 {
        x=3D20.5mm; y=3D21.75mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289984 {
        x=3D32.25mm; y=3D24.25mm; width=3D1.25mm; height=3D1.25mm; astart=
=3D-90; adelta=3D-90; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289994 {
        x=3D34.75mm; y=3D34.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
0; adelta=3D53; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
       ha:arc.4289995 {
        x=3D33.25mm; y=3D36.5mm; width=3D1.25mm; height=3D1.25mm; astart=3D=
180; adelta=3D53; thickness=3D0.7mm; clearance=3D0.36mm;
        ha:flags {
         clearline=3D1
        }
       }
      }
      color =3D {#ff0000}
    }
 
    ha:bottom-paste {
     lid=3D12
     group=3D15
     ha:combining { auto=3D1;     }
 
      li:objects {
      }
      color =3D {#cd00cd}
    }
 
    ha:top-courtyard {
     lid=3D13
     group=3D10
     ha:combining {     }
 
      li:objects {
      }
      color =3D {#ff8080}
    }
 
    ha:bottom-courtyard {
     lid=3D14
     group=3D11
     ha:combining {     }
 
      li:objects {
      }
      color =3D {#00868b}
    }
   }
 }
 
 ha:font {
  ha:geda_pcb {
   cell_width=3D1.270001mm; cell_height=3D1.397001mm;
   ha:symbols {
    ha:] {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:&5c {
     width=3D0.762001mm; height=3D1.143001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D30.0mil; y2=3D45.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:b {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:c {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:d {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:e {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D0.0; y1=3D40.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D8.0m=
il;
      }
      ha:line.7 {
       x1=3D20.0mil; y1=3D40.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:f {
     width=3D0.381001mm; height=3D1.270001mm; delta=3D10.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D30.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:g {
     width=3D0.508001mm; height=3D1.651001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.6 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D60.0mil; x2=3D5.0mil; y2=3D65.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.8 {
       x1=3D5.0mil; y1=3D65.0mil; x2=3D15.0mil; y2=3D65.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.9 {
       x1=3D15.0mil; y1=3D65.0mil; x2=3D20.0mil; y2=3D60.0mil; thickness=3D=
8.0mil;
      }
      ha:line.10 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D60.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:h {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:i {
     width=3D0.001um; height=3D1.270001mm; delta=3D10.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D20.0mil; x2=3D0.0; y2=3D21.0mil; thickness=3D10.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:j {
     width=3D0.127001mm; height=3D1.651001mm; delta=3D10.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D20.0mil; x2=3D5.0mil; y2=3D21.0mil; thickness=3D10=
=2E0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D60.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D65.0mil; x2=3D5.0mil; y2=3D60.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:k {
     width=3D0.381001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D35.0mil; x2=3D10.0mil; y2=3D25.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:l {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D10.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:m {
     width=3D0.889001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D25.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D25.0mil; y1=3D30.0mil; x2=3D30.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D30.0mil; y1=3D30.0mil; x2=3D35.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D35.0mil; y1=3D35.0mil; x2=3D35.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:n {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:o {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:p {
     width=3D0.635001mm; height=3D1.651001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D65.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D25.0mil; y1=3D35.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D5.0mil; y1=3D45.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:q {
     width=3D0.508001mm; height=3D1.651001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D65.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:r {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:s {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D20.0mil; y1=3D40.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D40.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D40.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:t {
     width=3D0.254001mm; height=3D1.270001mm; delta=3D10.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D45.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D25.0mil; x2=3D10.0mil; y2=3D25.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:u {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:v {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:w {
     width=3D0.762001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D45.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D25.0mil; y1=3D50.0mil; x2=3D30.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D30.0mil; y1=3D30.0mil; x2=3D30.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:x {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:y {
     width=3D0.508001mm; height=3D1.651001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D60.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D65.0mil; x2=3D20.0mil; y2=3D60.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D65.0mil; x2=3D15.0mil; y2=3D65.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D60.0mil; x2=3D5.0mil; y2=3D65.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:z {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:~ {
     width=3D0.635001mm; height=3D0.889001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D25.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:&7b {
     width=3D0.254001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.=
0mil;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D45.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:&7d {
     width=3D0.254001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D5.0mil; y2=3D15.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D25.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D35.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.=
0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D50.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:| {
     width=3D0.001um; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:&20 {
     width=3D0.0; height=3D10.0mil; delta=3D18.0mil;
     li:objects {
     }
    }
    ha:&23 {
     width=3D0.508001mm; height=3D1.016001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D35.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D25.0mil; x2=3D20.0mil; y2=3D25.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D15.0mil; y1=3D20.0mil; x2=3D15.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D20.0mil; x2=3D5.0mil; y2=3D40.0mil; thickness=3D8.=
0mil;
      }
     }
    }
    ha:&26 {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D25.0mil; thickness=3D8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D35.0mil; x2=3D15.0mil; y2=3D20.0mil; thickness=3D8.0m=
il;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D0.0; y1=3D25.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D15.0mil; y1=3D15.0mil; x2=3D15.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.10 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:! {
     width=3D0.001um; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D35.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:" {
     width=3D0.254001mm; height=3D0.508001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D20.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:$ {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D15.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D15.0mil; y2=3D15.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D20.0mil; x2=3D5.0mil; y2=3D15.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D20.0mil; x2=3D0.0; y2=3D25.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D25.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.6 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D15.0mil; y1=3D45.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D5.0mil; y1=3D45.0mil; x2=3D15.0mil; y2=3D45.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.10 {
       x1=3D0.0; y1=3D40.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.11 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:% {
     width=3D1.016001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D20.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D15.0mil; y1=3D15.0mil; x2=3D15.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D10.0mil; y1=3D25.0mil; x2=3D15.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D25.0mil; x2=3D10.0mil; y2=3D25.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D20.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.8 {
       x1=3D0.0; y1=3D50.0mil; x2=3D40.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.9 {
       x1=3D35.0mil; y1=3D50.0mil; x2=3D40.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.10 {
       x1=3D40.0mil; y1=3D40.0mil; x2=3D40.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.11 {
       x1=3D35.0mil; y1=3D35.0mil; x2=3D40.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.12 {
       x1=3D30.0mil; y1=3D35.0mil; x2=3D35.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.13 {
       x1=3D25.0mil; y1=3D40.0mil; x2=3D30.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.14 {
       x1=3D25.0mil; y1=3D40.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.15 {
       x1=3D25.0mil; y1=3D45.0mil; x2=3D30.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.16 {
       x1=3D30.0mil; y1=3D50.0mil; x2=3D35.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:' {
     width=3D0.254001mm; height=3D0.508001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D20.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:( {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:) {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D5.0mil; y2=3D15.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D15.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D5.0mil; y2=3D45.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:* {
     width=3D0.508001mm; height=3D1.016001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D20.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D40.0mil; x2=3D20.0mil; y2=3D20.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.3 {
       x1=3D10.0mil; y1=3D20.0mil; x2=3D10.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:+ {
     width=3D0.508001mm; height=3D1.016001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D20.0mil; x2=3D10.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:, {
     width=3D0.254001mm; height=3D1.524001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D60.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:- {
     width=3D0.508001mm; height=3D0.762001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:. {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D50.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:0 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D0.0; y1=3D40.0mil; x2=3D20.0mil; y2=3D20.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:1 {
     width=3D0.381001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D18.0mil; x2=3D8.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D8.0mil; y1=3D10.0mil; x2=3D8.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:2 {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D25.0mil; y1=3D15.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D50.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D8.0m=
il;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D50.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:3 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D28.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D23.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D20.0mil; y1=3D33.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D20.0mil; y1=3D33.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D=
8.0mil;
      }
      ha:line.10 {
       x1=3D20.0mil; y1=3D23.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:4 {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D35.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D25.0mil; y2=3D35.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:5 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D30.0mil; thickness=3D8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D25.0mil; x2=3D15.0mil; y2=3D25.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D15.0mil; y1=3D25.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:6 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D28.0mil; x2=3D20.0mil; y2=3D33.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D0.0; y1=3D28.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D8.0m=
il;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D20.0mil; y1=3D33.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:7 {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D25.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:8 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D37.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D37.0mil; x2=3D7.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D7.0mil; y1=3D30.0mil; x2=3D13.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D13.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D37.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D20.0mil; y1=3D37.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D0.0; y1=3D23.0mil; x2=3D7.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.9 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D23.0mil; thickness=3D8.0mil;
      }
      ha:line.10 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.11 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.12 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.13 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D23.0mil; thickness=3D=
8.0mil;
      }
      ha:line.14 {
       x1=3D13.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D23.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:9 {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D25.0mil; thickness=3D8.0mil;
      }
      ha:line.6 {
       x1=3D0.0; y1=3D25.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:< {
     width=3D0.254001mm; height=3D1.016001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D30.0mil; x2=3D10.0mil; y2=3D20.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D30.0mil; x2=3D10.0mil; y2=3D40.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:> {
     width=3D0.254001mm; height=3D1.016001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D20.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D40.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:? {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D10.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D45.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D20.0mil; thickness=3D8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:@ {
     width=3D1.270001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D40.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D40.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D40.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D50.0mil; y1=3D35.0mil; x2=3D50.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D50.0mil; y1=3D10.0mil; x2=3D40.0mil; y2=3D0.0; thickness=3D8.0m=
il;
      }
      ha:line.5 {
       x1=3D40.0mil; y1=3D0.0; x2=3D10.0mil; y2=3D0.0; thickness=3D8.0mil;
      }
      ha:line.6 {
       x1=3D10.0mil; y1=3D0.0; x2=3D0.0; y2=3D10.0mil; thickness=3D8.0mil;
      }
      ha:line.7 {
       x1=3D15.0mil; y1=3D20.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D20.0mil; y1=3D35.0mil; x2=3D30.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.10 {
       x1=3D30.0mil; y1=3D35.0mil; x2=3D35.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.11 {
       x1=3D35.0mil; y1=3D30.0mil; x2=3D40.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.12 {
       x1=3D35.0mil; y1=3D30.0mil; x2=3D35.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.13 {
       x1=3D35.0mil; y1=3D20.0mil; x2=3D30.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.14 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D30.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.15 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D15.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.16 {
       x1=3D40.0mil; y1=3D35.0mil; x2=3D50.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:A {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D20.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D20.0mil; x2=3D7.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D7.0mil; y1=3D10.0mil; x2=3D18.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D18.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D20.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D25.0mil; y1=3D20.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D30.0mil; x2=3D25.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:B {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D25.0mil; y1=3D33.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D20.0mil; y1=3D28.0mil; x2=3D25.0mil; y2=3D33.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D28.0mil; x2=3D20.0mil; y2=3D28.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.6 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.7 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D25.0mil; y1=3D15.0mil; x2=3D25.0mil; y2=3D23.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D20.0mil; y1=3D28.0mil; x2=3D25.0mil; y2=3D23.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:C {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D7.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D43.0mil; x2=3D7.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D17.0mil; x2=3D0.0; y2=3D43.0mil; thickness=3D8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D17.0mil; x2=3D7.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.4 {
       x1=3D7.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:D {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D18.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D17.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D25.0mil; y1=3D17.0mil; x2=3D25.0mil; y2=3D43.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D18.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D43.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D50.0mil; x2=3D18.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D10.0mil; x2=3D18.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:E {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D28.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:F {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D28.0mil; x2=3D15.0mil; y2=3D28.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:G {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D25.0mil; y1=3D35.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:H {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D25.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D30.0mil; x2=3D25.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:I {
     width=3D0.254001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D10.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:J {
     width=3D0.381001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D7.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.1 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D0.0; y1=3D45.0mil; x2=3D0.0; y2=3D40.0mil; thickness=3D8.0mil;
      }
     }
    }
    ha:K {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D30.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:L {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:M {
     width=3D0.762001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D30.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D30.0mil; y1=3D10.0mil; x2=3D30.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:&2f {
     width=3D0.762001mm; height=3D1.143001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D45.0mil; x2=3D30.0mil; y2=3D15.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:&3a {
     width=3D0.127001mm; height=3D0.889001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D25.0mil; x2=3D5.0mil; y2=3D25.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D35.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:&3b {
     width=3D0.254001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D50.0mil; x2=3D10.0mil; y2=3D40.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D25.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:&3d {
     width=3D0.508001mm; height=3D0.889001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D25.0mil; x2=3D20.0mil; y2=3D25.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D35.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:O {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:P {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D25.0mil; y1=3D15.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:N {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D25.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:R {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D25.0mil; y1=3D15.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D=
8.0mil;
      }
      ha:line.3 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D25.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.=
0mil;
      }
      ha:line.6 {
       x1=3D13.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:S {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D25.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D25.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D25.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D25.0mil; y1=3D35.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.8 {
       x1=3D20.0mil; y1=3D50.0mil; x2=3D25.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.9 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.10 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:Q {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D15.0mil; y2=3D10.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D15.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D15.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D40.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.7 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.8 {
       x1=3D10.0mil; y1=3D35.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:U {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D20.0mil; y1=3D10.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:V {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:T {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:X {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D50.0mil; x2=3D25.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:Y {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D10.0mil; y2=3D30.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
      ha:line.2 {
       x1=3D10.0mil; y1=3D30.0mil; x2=3D10.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:W {
     width=3D0.762001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D30.0mil; thickness=3D8.0mil;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D30.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.2 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.3 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.4 {
       x1=3D25.0mil; y1=3D50.0mil; x2=3D30.0mil; y2=3D30.0mil; thickness=3D=
8.0mil;
      }
      ha:line.5 {
       x1=3D30.0mil; y1=3D30.0mil; x2=3D30.0mil; y2=3D10.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:[ {
     width=3D0.127001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D10.0mil; x2=3D0.0; y2=3D50.0mil; thickness=3D8.0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
     }
    }
    ha:^ {
     width=3D0.254001mm; height=3D0.381001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D15.0mil; x2=3D5.0mil; y2=3D10.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D10.0mil; x2=3D10.0mil; y2=3D15.0mil; thickness=3D8=
=2E0mil;
      }
     }
    }
    ha:Z {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D10.0mil; x2=3D25.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.1 {
       x1=3D0.0; y1=3D50.0mil; x2=3D25.0mil; y2=3D10.0mil; thickness=3D8.0m=
il;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D50.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
    ha:a {
     width=3D0.635001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D15.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D35.0mil; thickness=3D=
8.0mil;
      }
      ha:line.1 {
       x1=3D5.0mil; y1=3D30.0mil; x2=3D15.0mil; y2=3D30.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.2 {
       x1=3D0.0; y1=3D35.0mil; x2=3D5.0mil; y2=3D30.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.3 {
       x1=3D0.0; y1=3D35.0mil; x2=3D0.0; y2=3D45.0mil; thickness=3D8.0mil;
      }
      ha:line.4 {
       x1=3D0.0; y1=3D45.0mil; x2=3D5.0mil; y2=3D50.0mil; thickness=3D8.0mi=
l;
      }
      ha:line.5 {
       x1=3D20.0mil; y1=3D30.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
      ha:line.6 {
       x1=3D20.0mil; y1=3D45.0mil; x2=3D25.0mil; y2=3D50.0mil; thickness=3D=
8.0mil;
      }
      ha:line.7 {
       x1=3D5.0mil; y1=3D50.0mil; x2=3D15.0mil; y2=3D50.0mil; thickness=3D8=
=2E0mil;
      }
      ha:line.8 {
       x1=3D15.0mil; y1=3D50.0mil; x2=3D20.0mil; y2=3D45.0mil; thickness=3D=
8.0mil;
      }
     }
    }
    ha:_ {
     width=3D0.508001mm; height=3D1.270001mm; delta=3D12.0mil;
     li:objects {
      ha:line.0 {
       x1=3D0.0; y1=3D50.0mil; x2=3D20.0mil; y2=3D50.0mil; thickness=3D8.0m=
il;
      }
     }
    }
   }
   id =3D 0
  }
 }
 
 ha:netlists {
   li:input {
    ha:D1V8 {
    li:conn { P1-A6; P1-C6; P2-A35; P2-C35;    }
    }
    ha:D3V3 {
    li:conn { P1-A7; P1-B7; P1-C7; P1-D7; P1-E7; P1-F7; P1-G7; P1-H7; P2-A3=
4; P2-B34; P2-C34; P2-D34; P2-E34; P2-F34; P2-G34; P2-H34;    }
    }
    ha:GND {
    li:conn { C17-2; C18-2; C19-2; C20-2; C21-2; C22-2; C23-2; C24-2; C25-2=
; C26-2; C27-2; C28-2; C29-2; C30-2; C31-2; C32-2; C33-2; C34-2; C35-2; C36=
-2; C37-2; C38-2; C39-2; C40-2; C41-2; C42-2; C43-2; C44-2; C45-2; C46-2; C=
47-2; C48-2; C49-2; C50-2; C51-2; C52-2; C53-2; C54-2; C55-2; C56-2; C57-2;=
 C58-2; C59-2; C60-2; C61-2; C62-2; C63-2; C64-2; C89-2; C90-2; C91-2; C92-=
2; C93-2; C94-2; C95-2; C96-2; C97-1; C98-1; C99-1; C100-1; C101-1; C102-1;=
 C104-2; C105-2; C106-2; C107-2; C108-2; C109-2; C110-2; C111-2; C112-2; C1=
13-2; C114-2; C115-2; C116-2; C117-2; C118-2; C119-2; C120-2; C121-2; C122-=
2; C123-2; C124-2; C125-2; C126-2; C127-2; C128-2; C129-2; C130-2; C131-2; =
C132-2; C133-2; C134-2; C135-2; C136-2; C137-2; C138-2; C139-2; C140-2; C14=
1-2; C142-2; C143-2; C144-2; C145-2; C146-2; C147-2; C148-2; C149-2; C150-2=
; C151-2; C152-2; C153-2; C154-2; C155-2; C156-2; C157-2; C158-2; C159-2; C=
160-2; C167-1; C168-1; C169-1; C170-1; C171-1; FIL1-1; FIL1-2; FIL1-4; FIL1=
-5; FIL1-6; FIL1-7; FIL1-8; FIL1-9; FIL1-10; FIL1-11; FIL1-12; FIL1-13; FIL=
1-14; FIL1-15; FIL1-17; FIL1-18; FIL1-19; FIL1-20; FIL1-21; FIL1-22; FIL1-2=
3; FIL1-24; FIL1-25; FIL2-1; FIL2-2; FIL2-4; FIL2-5; FIL2-6; FIL2-7; FIL2-8=
; FIL2-9; FIL2-10; FIL2-11; FIL2-12; FIL2-13; FIL2-14; FIL2-15; FIL2-17; FI=
L2-18; FIL2-19; FIL2-20; FIL2-21; FIL2-22; FIL2-23; FIL2-24; FIL2-25; FIL3-=
1; FIL3-2; FIL3-4; FIL3-5; FIL3-6; FIL3-7; FIL3-8; FIL3-9; FIL3-10; FIL3-11=
; FIL3-12; FIL3-13; FIL3-14; FIL3-15; FIL3-17; FIL3-18; FIL3-19; FIL3-20; F=
IL3-21; FIL3-22; FIL3-23; FIL3-24; FIL3-25; FIL4-1; FIL4-2; FIL4-4; FIL4-5;=
 FIL4-6; FIL4-7; FIL4-8; FIL4-9; FIL4-10; FIL4-11; FIL4-12; FIL4-13; FIL4-1=
4; FIL4-15; FIL4-17; FIL4-18; FIL4-19; FIL4-20; FIL4-21; FIL4-22; FIL4-23; =
FIL4-24; FIL4-25; FIL5-1; FIL5-2; FIL5-4; FIL5-5; FIL5-6; FIL5-7; FIL5-8; F=
IL5-9; FIL5-10; FIL5-11; FIL5-12; FIL5-13; FIL5-14; FIL5-15; FIL5-17; FIL5-=
18; FIL5-19; FIL5-20; FIL5-21; FIL5-22; FIL5-23; FIL5-24; FIL5-25; FIL6-1; =
FIL6-2; FIL6-4; FIL6-5; FIL6-6; FIL6-7; FIL6-8; FIL6-9; FIL6-10; FIL6-11; F=
IL6-12; FIL6-13; FIL6-14; FIL6-15; FIL6-17; FIL6-18; FIL6-19; FIL6-20; FIL6=
-21; FIL6-22; FIL6-23; FIL6-24; FIL6-25; FIL7-1; FIL7-2; FIL7-4; FIL7-5; FI=
L7-6; FIL7-7; FIL7-8; FIL7-9; FIL7-10; FIL7-11; FIL7-12; FIL7-13; FIL7-14; =
FIL7-15; FIL7-17; FIL7-18; FIL7-19; FIL7-20; FIL7-21; FIL7-22; FIL7-23; FIL=
7-24; FIL7-25; FIL8-1; FIL8-2; FIL8-4; FIL8-5; FIL8-6; FIL8-7; FIL8-8; FIL8=
-9; FIL8-10; FIL8-11; FIL8-12; FIL8-13; FIL8-14; FIL8-15; FIL8-17; FIL8-18;=
 FIL8-19; FIL8-20; FIL8-21; FIL8-22; FIL8-23; FIL8-24; FIL8-25; FIL9-2; FIL=
9-4; FIL10-2; FIL10-4; FIL11-2; FIL11-4; FIL12-2; FIL12-4; FIL13-2; FIL13-4=
; FIL14-2; FIL14-4; FIL15-2; FIL15-4; FIL16-2; FIL16-4; J1-2; J2-2; J3-2; J=
4-2; M1-1; M1-2; M1-3; M1-4; M1-5; M1-6; M1-7; M1-8; M1-9; M1-11; M1-13; M1=
-14; M1-15; M1-17; M1-18; M1-19; M1-20; M1-21; M1-22; M1-24; M1-25; M2-1; M=
2-2; M2-3; M2-4; M2-5; M2-6; M2-7; M2-8; M2-9; M2-11; M2-13; M2-14; M2-15; =
M2-17; M2-18; M2-19; M2-20; M2-21; M2-22; M2-24; M2-25; M3-1; M3-2; M3-3; M=
3-4; M3-5; M3-6; M3-7; M3-8; M3-9; M3-11; M3-13; M3-14; M3-15; M3-17; M3-18=
; M3-19; M3-20; M3-21; M3-22; M3-24; M3-25; M4-1; M4-2; M4-3; M4-4; M4-5; M=
4-6; M4-7; M4-8; M4-9; M4-11; M4-13; M4-14; M4-15; M4-17; M4-18; M4-19; M4-=
20; M4-21; M4-22; M4-24; M4-25; P1-A1; P1-A3; P1-A5; P1-A8; P1-A9; P1-A10; =
P1-A11; P1-A12; P1-A13; P1-A14; P1-A15; P1-A16; P1-A17; P1-A18; P1-A19; P1-=
A20; P1-A22; P1-A23; P1-A24; P1-A25; P1-A26; P1-A27; P1-A28; P1-A29; P1-A30=
; P1-A31; P1-A32; P1-A33; P1-A34; P1-A35; P1-A36; P1-A37; P1-A38; P1-A39; P=
1-A40; P1-B2; P1-B4; P1-B6; P1-B8; P1-B9; P1-B11; P1-B12; P1-B14; P1-B15; P=
1-B17; P1-B18; P1-B20; P1-B22; P1-B23; P1-B25; P1-B26; P1-B28; P1-B29; P1-B=
31; P1-B32; P1-B34; P1-B35; P1-B37; P1-B38; P1-B40; P1-C1; P1-C3; P1-C5; P1=
-C8; P1-C9; P1-C11; P1-C12; P1-C14; P1-C15; P1-C17; P1-C18; P1-C20; P1-C22;=
 P1-C23; P1-C25; P1-C26; P1-C28; P1-C29; P1-C31; P1-C32; P1-C34; P1-C35; P1=
-C37; P1-C38; P1-C40; P1-D2; P1-D4; P1-D6; P1-D8; P1-D9; P1-D10; P1-D11; P1=
-D12; P1-D13; P1-D14; P1-D15; P1-D16; P1-D17; P1-D18; P1-D19; P1-D20; P1-D2=
2; P1-D23; P1-D24; P1-D25; P1-D26; P1-D27; P1-D28; P1-D29; P1-D30; P1-D31; =
P1-D32; P1-D33; P1-D34; P1-D35; P1-D36; P1-D37; P1-D38; P1-D39; P1-D40; P1-=
E1; P1-E3; P1-E5; P1-E8; P1-E9; P1-E10; P1-E11; P1-E12; P1-E13; P1-E14; P1-=
E15; P1-E16; P1-E17; P1-E18; P1-E19; P1-E20; P1-E22; P1-E23; P1-E24; P1-E25=
; P1-E26; P1-E27; P1-E28; P1-E29; P1-E30; P1-E31; P1-E32; P1-E33; P1-E34; P=
1-E35; P1-E36; P1-E37; P1-E38; P1-E39; P1-E40; P1-F2; P1-F4; P1-F6; P1-F8; =
P1-F10; P1-F11; P1-F13; P1-F14; P1-F16; P1-F17; P1-F19; P1-F20; P1-F22; P1-=
F24; P1-F25; P1-F27; P1-F28; P1-F30; P1-F31; P1-F33; P1-F34; P1-F36; P1-F37=
; P1-F39; P1-F40; P1-G1; P1-G3; P1-G5; P1-G8; P1-G10; P1-G11; P1-G13; P1-G1=
4; P1-G16; P1-G17; P1-G19; P1-G20; P1-G22; P1-G24; P1-G25; P1-G27; P1-G28; =
P1-G30; P1-G31; P1-G33; P1-G34; P1-G36; P1-G37; P1-G39; P1-G40; P1-H2; P1-H=
4; P1-H6; P1-H8; P1-H9; P1-H10; P1-H11; P1-H12; P1-H13; P1-H14; P1-H15; P1-=
H16; P1-H17; P1-H18; P1-H19; P1-H20; P1-H22; P1-H23; P1-H24; P1-H25; P1-H26=
; P1-H27; P1-H28; P1-H29; P1-H30; P1-H31; P1-H32; P1-H33; P1-H34; P1-H35; P=
1-H36; P1-H37; P1-H38; P1-H39; P1-H40; P2-A2; P2-A3; P2-A4; P2-A5; P2-A6; P=
2-A7; P2-A8; P2-A9; P2-A10; P2-A11; P2-A12; P2-A13; P2-A14; P2-A15; P2-A16;=
 P2-A17; P2-A18; P2-A19; P2-A20; P2-A21; P2-A22; P2-A23; P2-A24; P2-A25; P2=
-A26; P2-A27; P2-A28; P2-A29; P2-A30; P2-A31; P2-A32; P2-A33; P2-A36; P2-A3=
8; P2-A40; P2-B2; P2-B3; P2-B5; P2-B6; P2-B8; P2-B9; P2-B11; P2-B12; P2-B14=
; P2-B15; P2-B17; P2-B18; P2-B20; P2-B21; P2-B23; P2-B24; P2-B26; P2-B27; P=
2-B29; P2-B30; P2-B32; P2-B33; P2-B35; P2-B37; P2-B39; P2-C2; P2-C3; P2-C5;=
 P2-C6; P2-C8; P2-C9; P2-C11; P2-C12; P2-C14; P2-C15; P2-C17; P2-C18; P2-C2=
0; P2-C21; P2-C23; P2-C24; P2-C26; P2-C27; P2-C29; P2-C30; P2-C32; P2-C33; =
P2-C36; P2-C38; P2-C40; P2-D2; P2-D3; P2-D4; P2-D5; P2-D6; P2-D7; P2-D8; P2=
-D9; P2-D10; P2-D11; P2-D12; P2-D13; P2-D14; P2-D15; P2-D16; P2-D17; P2-D18=
; P2-D19; P2-D20; P2-D21; P2-D22; P2-D23; P2-D24; P2-D25; P2-D26; P2-D27; P=
2-D28; P2-D29; P2-D30; P2-D31; P2-D32; P2-D33; P2-D35; P2-D37; P2-D39; P2-E=
2; P2-E3; P2-E4; P2-E5; P2-E6; P2-E7; P2-E8; P2-E9; P2-E10; P2-E11; P2-E12;=
 P2-E13; P2-E14; P2-E15; P2-E16; P2-E17; P2-E18; P2-E19; P2-E20; P2-E21; P2=
-E22; P2-E23; P2-E24; P2-E25; P2-E26; P2-E27; P2-E28; P2-E29; P2-E30; P2-E3=
1; P2-E32; P2-E33; P2-E36; P2-E38; P2-E40; P2-F1; P2-F2; P2-F3; P2-F4; P2-F=
6; P2-F7; P2-F9; P2-F10; P2-F12; P2-F13; P2-F15; P2-F16; P2-F18; P2-F19; P2=
-F21; P2-F22; P2-F24; P2-F25; P2-F27; P2-F28; P2-F30; P2-F31; P2-F33; P2-F3=
5; P2-F37; P2-F39; P2-G3; P2-G4; P2-G6; P2-G7; P2-G9; P2-G10; P2-G12; P2-G1=
3; P2-G15; P2-G16; P2-G18; P2-G19; P2-G21; P2-G22; P2-G24; P2-G25; P2-G27; =
P2-G28; P2-G30; P2-G31; P2-G33; P2-G36; P2-G38; P2-G40; P2-H3; P2-H4; P2-H5=
; P2-H6; P2-H7; P2-H8; P2-H9; P2-H10; P2-H11; P2-H12; P2-H13; P2-H14; P2-H1=
5; P2-H16; P2-H17; P2-H18; P2-H19; P2-H20; P2-H21; P2-H22; P2-H23; P2-H24; =
P2-H25; P2-H26; P2-H27; P2-H28; P2-H29; P2-H30; P2-H31; P2-H32; P2-H33; P2-=
H35; P2-H37; P2-H39; R1-3; R2-3; R3-3; R4-3; R5-3; R6-3; R7-3; R8-3; R25-2;=
 R26-2; R27-2; R28-2; R29-2; R30-2; R31-2; R32-2; R51-3; R52-2; S1-1; S1-3;=
 S1-5; S1-7; S1-8; S1-9; S1-11; S1-13; T1-2; T1-5; T2-2; T2-5; T3-2; T3-5; =
T4-2; T4-5; T5-2; T5-5; U1-2; U2-2; U3-2; U4-2; U5-2; U6-2; U7-2; U8-2; U9-=
2; U10-2; U11-2; U12-2; U13-2; U14-2; U15-2; U16-2; U17-3; U17-8; U17-9; U1=
7-11; U17-14; U18-3; U18-8; U18-9; U18-11; U18-14; U19-3; U19-8; U19-9; U19=
-11; U19-14; U20-3; U20-8; U20-9; U20-11; U20-14; U21-3; U21-8; U21-9; U21-=
11; U21-14; U22-3; U22-8; U22-9; U22-11; U22-14; U23-3; U23-8; U23-9; U23-1=
1; U23-14; U24-3; U24-8; U24-9; U24-11; U24-14; U25-9; U26-2; U26-4; U26-5;=
 U26-6; U26-13; U26-14; U26-25; U26-28; U26-30; U26-31; U26-32; U26-34; U26=
-39; U26-40; U26-41; U27-2; U27-4; U27-6; U27-13; U27-14; U27-25; U27-30; U=
27-31; U27-32; U27-34; U27-39; U27-40; U27-41; U28-2; U28-4; U28-5; U28-6; =
U28-13; U28-14; U28-25; U28-28; U28-30; U28-31; U28-32; U28-34; U28-39; U28=
-40; U28-41; U29-9;    }
    }
    ha:unnamed_net1 {
    li:conn { C9-1; L1-1; U9-3;    }
    }
    ha:unnamed_net2 {
    li:conn { C10-1; L2-1; U10-3;    }
    }
    ha:unnamed_net3 {
    li:conn { C11-1; L3-1; U11-3;    }
    }
    ha:unnamed_net4 {
    li:conn { C12-1; L4-1; U12-3;    }
    }
    ha:unnamed_net5 {
    li:conn { C13-1; L5-1; U13-3;    }
    }
    ha:unnamed_net6 {
    li:conn { C14-1; L6-1; U14-3;    }
    }
    ha:unnamed_net7 {
    li:conn { C15-1; L7-1; U15-3;    }
    }
    ha:unnamed_net8 {
    li:conn { C16-1; L8-1; U16-3;    }
    }
    ha:unnamed_net9 {
    li:conn { FIL9-3; U17-5;    }
    }
    ha:unnamed_net10 {
    li:conn { C65-1; U17-6;    }
    }
    ha:unnamed_net11 {
    li:conn { R33-1; U17-13;    }
    }
    ha:unnamed_net12 {
    li:conn { R41-1; U17-12;    }
    }
    ha:unnamed_net13 {
    li:conn { C25-1; C33-1; C41-1; C49-1; C57-1; L9-2; U17-1; U17-10;    }
    }
    ha:unnamed_net14 {
    li:conn { C17-1; C18-1; C19-1; C20-1; C21-1; C22-1; C23-1; C24-1; C102-=
2; R51-1; R51-2; U17-2; U18-2; U19-2; U20-2; U21-2; U22-2; U23-2; U24-2;   =
 }
    }
    ha:unnamed_net15 {
    li:conn { L17-4; P1-G9;    }
    }
    ha:unnamed_net16 {
    li:conn { L17-3; P1-F9;    }
    }
    ha:unnamed_net17 {
    li:conn { P1-A21;    }
    }
    ha:unnamed_net18 {
    li:conn { L18-4; P1-C10;    }
    }
    ha:unnamed_net19 {
    li:conn { L18-3; P1-B10;    }
    }
    ha:unnamed_net20 {
    li:conn { P1-B21;    }
    }
    ha:unnamed_net21 {
    li:conn { FIL10-3; U18-5;    }
    }
    ha:unnamed_net22 {
    li:conn { C66-1; U18-6;    }
    }
    ha:unnamed_net23 {
    li:conn { R34-1; U18-13;    }
    }
    ha:unnamed_net24 {
    li:conn { R42-1; U18-12;    }
    }
    ha:unnamed_net25 {
    li:conn { C26-1; C34-1; C42-1; C50-1; C58-1; L10-2; U18-1; U18-10;    }
    }
    ha:unnamed_net26 {
    li:conn { L19-4; P1-G12;    }
    }
    ha:unnamed_net27 {
    li:conn { L19-3; P1-F12;    }
    }
    ha:unnamed_net28 {
    li:conn { P1-C21;    }
    }
    ha:unnamed_net29 {
    li:conn { L20-4; P1-C13;    }
    }
    ha:unnamed_net30 {
    li:conn { L20-3; P1-B13;    }
    }
    ha:unnamed_net31 {
    li:conn { P1-D21;    }
    }
    ha:unnamed_net32 {
    li:conn { FIL12-3; U20-5;    }
    }
    ha:unnamed_net33 {
    li:conn { C68-1; U20-6;    }
    }
    ha:unnamed_net34 {
    li:conn { R36-1; U20-13;    }
    }
    ha:unnamed_net35 {
    li:conn { R44-1; U20-12;    }
    }
    ha:unnamed_net36 {
    li:conn { C28-1; C36-1; C44-1; C52-1; C60-1; L12-2; U20-1; U20-10;    }
    }
    ha:unnamed_net37 {
    li:conn { L21-4; P1-G15;    }
    }
    ha:unnamed_net38 {
    li:conn { L21-3; P1-F15;    }
    }
    ha:unnamed_net39 {
    li:conn { P1-E21;    }
    }
    ha:unnamed_net40 {
    li:conn { L22-4; P1-C16;    }
    }
    ha:unnamed_net41 {
    li:conn { L22-3; P1-B16;    }
    }
    ha:unnamed_net42 {
    li:conn { P1-F21;    }
    }
    ha:unnamed_net43 {
    li:conn { L23-4; P1-G18;    }
    }
    ha:unnamed_net44 {
    li:conn { L23-3; P1-F18;    }
    }
    ha:unnamed_net45 {
    li:conn { P1-G21;    }
    }
    ha:unnamed_net46 {
    li:conn { L24-4; P1-C19;    }
    }
    ha:unnamed_net47 {
    li:conn { L24-3; P1-B19;    }
    }
    ha:unnamed_net48 {
    li:conn { P1-H21;    }
    }
    ha:unnamed_net49 {
    li:conn { C73-1; R33-2;    }
    }
    ha:unnamed_net50 {
    li:conn { C73-2; L17-1;    }
    }
    ha:unnamed_net51 {
    li:conn { C81-1; R41-2;    }
    }
    ha:unnamed_net52 {
    li:conn { C81-2; L17-2;    }
    }
    ha:unnamed_net54 {
    li:conn { C9-2; FIL9-1;    }
    }
    ha:unnamed_net55 {
    li:conn { C82-2; L18-2;    }
    }
    ha:unnamed_net56 {
    li:conn { C74-2; L18-1;    }
    }
    ha:unnamed_net57 {
    li:conn { C74-1; R34-2;    }
    }
    ha:unnamed_net58 {
    li:conn { C82-1; R42-2;    }
    }
    ha:unnamed_net60 {
    li:conn { C10-2; FIL10-1;    }
    }
    ha:unnamed_net61 {
    li:conn { C27-1; C35-1; C43-1; C51-1; C59-1; L11-2; U19-1; U19-10;    }
    }
    ha:unnamed_net62 {
    li:conn { C83-2; L19-2;    }
    }
    ha:unnamed_net63 {
    li:conn { C75-2; L19-1;    }
    }
    ha:unnamed_net64 {
    li:conn { C75-1; R35-2;    }
    }
    ha:unnamed_net65 {
    li:conn { R35-1; U19-13;    }
    }
    ha:unnamed_net66 {
    li:conn { C83-1; R43-2;    }
    }
    ha:unnamed_net67 {
    li:conn { R43-1; U19-12;    }
    }
    ha:unnamed_net69 {
    li:conn { C11-2; FIL11-1;    }
    }
    ha:unnamed_net70 {
    li:conn { FIL11-3; U19-5;    }
    }
    ha:unnamed_net71 {
    li:conn { C67-1; U19-6;    }
    }
    ha:unnamed_net72 {
    li:conn { C84-2; L20-2;    }
    }
    ha:unnamed_net73 {
    li:conn { C76-2; L20-1;    }
    }
    ha:unnamed_net74 {
    li:conn { C76-1; R36-2;    }
    }
    ha:unnamed_net75 {
    li:conn { C84-1; R44-2;    }
    }
    ha:unnamed_net77 {
    li:conn { C12-2; FIL12-1;    }
    }
    ha:unnamed_net78 {
    li:conn { FIL13-3; U21-5;    }
    }
    ha:unnamed_net79 {
    li:conn { C69-1; U21-6;    }
    }
    ha:unnamed_net80 {
    li:conn { R37-1; U21-13;    }
    }
    ha:unnamed_net81 {
    li:conn { R45-1; U21-12;    }
    }
    ha:unnamed_net82 {
    li:conn { C29-1; C37-1; C45-1; C53-1; C61-1; L13-2; U21-1; U21-10;    }
    }
    ha:unnamed_net83 {
    li:conn { FIL14-3; U22-5;    }
    }
    ha:unnamed_net84 {
    li:conn { C70-1; U22-6;    }
    }
    ha:unnamed_net85 {
    li:conn { R38-1; U22-13;    }
    }
    ha:unnamed_net86 {
    li:conn { R46-1; U22-12;    }
    }
    ha:unnamed_net87 {
    li:conn { C30-1; C38-1; C46-1; C54-1; C62-1; L14-2; U22-1; U22-10;    }
    }
    ha:unnamed_net88 {
    li:conn { FIL16-3; U24-5;    }
    }
    ha:unnamed_net89 {
    li:conn { C72-1; U24-6;    }
    }
    ha:unnamed_net90 {
    li:conn { R40-1; U24-13;    }
    }
    ha:unnamed_net91 {
    li:conn { R48-1; U24-12;    }
    }
    ha:unnamed_net92 {
    li:conn { C32-1; C40-1; C48-1; C56-1; C64-1; L16-2; U24-1; U24-10;    }
    }
    ha:unnamed_net93 {
    li:conn { C85-2; L21-2;    }
    }
    ha:unnamed_net94 {
    li:conn { C77-2; L21-1;    }
    }
    ha:unnamed_net95 {
    li:conn { C77-1; R37-2;    }
    }
    ha:unnamed_net96 {
    li:conn { C85-1; R45-2;    }
    }
    ha:unnamed_net98 {
    li:conn { C13-2; FIL13-1;    }
    }
    ha:unnamed_net99 {
    li:conn { C86-2; L22-2;    }
    }
    ha:unnamed_net100 {
    li:conn { C78-2; L22-1;    }
    }
    ha:unnamed_net101 {
    li:conn { C78-1; R38-2;    }
    }
    ha:unnamed_net102 {
    li:conn { C86-1; R46-2;    }
    }
    ha:unnamed_net104 {
    li:conn { C14-2; FIL14-1;    }
    }
    ha:unnamed_net105 {
    li:conn { C31-1; C39-1; C47-1; C55-1; C63-1; L15-2; U23-1; U23-10;    }
    }
    ha:unnamed_net106 {
    li:conn { C87-2; L23-2;    }
    }
    ha:unnamed_net107 {
    li:conn { C79-2; L23-1;    }
    }
    ha:unnamed_net108 {
    li:conn { C79-1; R39-2;    }
    }
    ha:unnamed_net109 {
    li:conn { R39-1; U23-13;    }
    }
    ha:unnamed_net110 {
    li:conn { C87-1; R47-2;    }
    }
    ha:unnamed_net111 {
    li:conn { R47-1; U23-12;    }
    }
    ha:unnamed_net113 {
    li:conn { C15-2; FIL15-1;    }
    }
    ha:unnamed_net114 {
    li:conn { FIL15-3; U23-5;    }
    }
    ha:unnamed_net115 {
    li:conn { C71-1; U23-6;    }
    }
    ha:unnamed_net116 {
    li:conn { C88-2; L24-2;    }
    }
    ha:unnamed_net117 {
    li:conn { C80-2; L24-1;    }
    }
    ha:unnamed_net118 {
    li:conn { C80-1; R40-2;    }
    }
    ha:unnamed_net119 {
    li:conn { C88-1; R48-2;    }
    }
    ha:unnamed_net121 {
    li:conn { C16-2; FIL16-1;    }
    }
    ha:unnamed_net122 {
    li:conn { C101-2; L9-1; L10-1; L11-1; L12-1; L13-1; L14-1; L15-1; L16-1=
; R51-4; U25-1; U25-2;    }
    }
    ha:unnamed_net123 {
    li:conn { C98-2; U25-3;    }
    }
    ha:unnamed_net124 {
    li:conn { C100-2; U25-5; U25-6;    }
    }
    ha:unnamed_net125 {
    li:conn { C99-2; U25-7;    }
    }
    ha:unnamed_net126 {
    li:conn { C65-2; R25-1;    }
    }
    ha:unnamed_net127 {
    li:conn { C69-2; R29-1;    }
    }
    ha:unnamed_net128 {
    li:conn { C66-2; R26-1;    }
    }
    ha:unnamed_net129 {
    li:conn { C70-2; R30-1;    }
    }
    ha:unnamed_net130 {
    li:conn { C67-2; R27-1;    }
    }
    ha:unnamed_net131 {
    li:conn { C71-2; R31-1;    }
    }
    ha:unnamed_net132 {
    li:conn { C68-2; R28-1;    }
    }
    ha:unnamed_net133 {
    li:conn { C72-2; R32-1;    }
    }
    ha:unnamed_net134 {
    li:conn { J1-1; M1-16;    }
    }
    ha:unnamed_net135 {
    li:conn { J2-1; M2-16;    }
    }
    ha:unnamed_net136 {
    li:conn { J3-1; M3-16;    }
    }
    ha:unnamed_net137 {
    li:conn { J4-1; M4-16;    }
    }
    ha:unnamed_net139 {
    li:conn { M1-12; R2-1;    }
    }
    ha:unnamed_net140 {
    li:conn { M1-10; R1-2;    }
    }
    ha:unnamed_net141 {
    li:conn { C1-1; FIL1-16;    }
    }
    ha:unnamed_net142 {
    li:conn { C1-2; U9-1;    }
    }
    ha:unnamed_net143 {
    li:conn { C2-1; FIL2-16;    }
    }
    ha:unnamed_net144 {
    li:conn { C2-2; U10-1;    }
    }
    ha:unnamed_net147 {
    li:conn { C103-2; R49-2; R50-1; U1-4; U2-4; U3-4; U4-4; U5-4; U6-4; U7-=
4; U8-4;    }
    }
    ha:unnamed_net148 {
    li:conn { C103-1; L25-1; L26-1; L27-1; L28-1; L29-1; L30-1; L31-1; L32-=
1; R49-1; Z1-1;    }
    }
    ha:unnamed_net149 {
    li:conn { R50-2; R52-1; Z1-2;    }
    }
    ha:unnamed_net159 {
    li:conn { FIL1-3; R1-1;    }
    }
    ha:unnamed_net160 {
    li:conn { L1-2; Q1-S;    }
    }
    ha:unnamed_net161 {
    li:conn { FIL2-3; R2-2;    }
    }
    ha:unnamed_net162 {
    li:conn { L2-2; Q2-S;    }
    }
    ha:unnamed_net163 {
    li:conn { Q1-G; R9-2;    }
    }
    ha:unnamed_net164 {
    li:conn { Q1-D; R17-2; U1-3;    }
    }
    ha:unnamed_net165 {
    li:conn { R9-1; U1-1;    }
    }
    ha:unnamed_net166 {
    li:conn { C89-1; L25-2; R17-1; U1-5;    }
    }
    ha:unnamed_net167 {
    li:conn { Q2-G; R10-2;    }
    }
    ha:unnamed_net168 {
    li:conn { Q2-D; R18-2; U2-3;    }
    }
    ha:unnamed_net169 {
    li:conn { R10-1; U2-1;    }
    }
    ha:unnamed_net170 {
    li:conn { C90-1; L26-2; R18-1; U2-5;    }
    }
    ha:unnamed_net171 {
    li:conn { M3-12; R6-1;    }
    }
    ha:unnamed_net172 {
    li:conn { M3-10; R5-2;    }
    }
    ha:unnamed_net173 {
    li:conn { C5-1; FIL5-16;    }
    }
    ha:unnamed_net174 {
    li:conn { C5-2; U13-1;    }
    }
    ha:unnamed_net175 {
    li:conn { C6-1; FIL6-16;    }
    }
    ha:unnamed_net176 {
    li:conn { C6-2; U14-1;    }
    }
    ha:unnamed_net177 {
    li:conn { FIL5-3; R5-1;    }
    }
    ha:unnamed_net178 {
    li:conn { L5-2; Q5-S;    }
    }
    ha:unnamed_net179 {
    li:conn { FIL6-3; R6-2;    }
    }
    ha:unnamed_net180 {
    li:conn { L6-2; Q6-S;    }
    }
    ha:unnamed_net181 {
    li:conn { Q5-G; R13-2;    }
    }
    ha:unnamed_net182 {
    li:conn { Q5-D; R21-2; U5-3;    }
    }
    ha:unnamed_net183 {
    li:conn { R13-1; U5-1;    }
    }
    ha:unnamed_net184 {
    li:conn { C93-1; L29-2; R21-1; U5-5;    }
    }
    ha:unnamed_net185 {
    li:conn { Q6-G; R14-2;    }
    }
    ha:unnamed_net186 {
    li:conn { Q6-D; R22-2; U6-3;    }
    }
    ha:unnamed_net187 {
    li:conn { R14-1; U6-1;    }
    }
    ha:unnamed_net188 {
    li:conn { C94-1; L30-2; R22-1; U6-5;    }
    }
    ha:unnamed_net189 {
    li:conn { M2-12; R4-1;    }
    }
    ha:unnamed_net190 {
    li:conn { M2-10; R3-2;    }
    }
    ha:unnamed_net191 {
    li:conn { C3-1; FIL3-16;    }
    }
    ha:unnamed_net192 {
    li:conn { C3-2; U11-1;    }
    }
    ha:unnamed_net193 {
    li:conn { C4-1; FIL4-16;    }
    }
    ha:unnamed_net194 {
    li:conn { C4-2; U12-1;    }
    }
    ha:unnamed_net195 {
    li:conn { FIL3-3; R3-1;    }
    }
    ha:unnamed_net196 {
    li:conn { L3-2; Q3-S;    }
    }
    ha:unnamed_net197 {
    li:conn { FIL4-3; R4-2;    }
    }
    ha:unnamed_net198 {
    li:conn { L4-2; Q4-S;    }
    }
    ha:unnamed_net199 {
    li:conn { Q3-G; R11-2;    }
    }
    ha:unnamed_net200 {
    li:conn { Q3-D; R19-2; U3-3;    }
    }
    ha:unnamed_net201 {
    li:conn { R11-1; U3-1;    }
    }
    ha:unnamed_net202 {
    li:conn { C91-1; L27-2; R19-1; U3-5;    }
    }
    ha:unnamed_net203 {
    li:conn { Q4-G; R12-2;    }
    }
    ha:unnamed_net204 {
    li:conn { Q4-D; R20-2; U4-3;    }
    }
    ha:unnamed_net205 {
    li:conn { R12-1; U4-1;    }
    }
    ha:unnamed_net206 {
    li:conn { C92-1; L28-2; R20-1; U4-5;    }
    }
    ha:unnamed_net207 {
    li:conn { M4-12; R8-1;    }
    }
    ha:unnamed_net208 {
    li:conn { M4-10; R7-2;    }
    }
    ha:unnamed_net209 {
    li:conn { C7-1; FIL7-16;    }
    }
    ha:unnamed_net210 {
    li:conn { C7-2; U15-1;    }
    }
    ha:unnamed_net211 {
    li:conn { C8-1; FIL8-16;    }
    }
    ha:unnamed_net212 {
    li:conn { C8-2; U16-1;    }
    }
    ha:unnamed_net213 {
    li:conn { FIL7-3; R7-1;    }
    }
    ha:unnamed_net214 {
    li:conn { L7-2; Q7-S;    }
    }
    ha:unnamed_net215 {
    li:conn { FIL8-3; R8-2;    }
    }
    ha:unnamed_net216 {
    li:conn { L8-2; Q8-S;    }
    }
    ha:unnamed_net217 {
    li:conn { Q7-G; R15-2;    }
    }
    ha:unnamed_net218 {
    li:conn { Q7-D; R23-2; U7-3;    }
    }
    ha:unnamed_net219 {
    li:conn { R15-1; U7-1;    }
    }
    ha:unnamed_net220 {
    li:conn { C95-1; L31-2; R23-1; U7-5;    }
    }
    ha:unnamed_net221 {
    li:conn { Q8-G; R16-2;    }
    }
    ha:unnamed_net222 {
    li:conn { Q8-D; R24-2; U8-3;    }
    }
    ha:unnamed_net223 {
    li:conn { R16-1; U8-1;    }
    }
    ha:unnamed_net224 {
    li:conn { C96-1; L32-2; R24-1; U8-5;    }
    }
    ha:unnamed_net225 {
    li:conn { P2-G1; P2-G2; P2-H1; P2-H2;    }
    }
    ha:unnamed_net226 {
    li:conn { P2-A1; P2-B1; P2-C1; P2-D1; P2-E1;    }
    }
    ha:unnamed_net227 {
    li:conn { C116-1; C117-1; C118-1; C119-1; L36-1; U26-26; U26-37;    }
    }
    ha:unnamed_net228 {
    li:conn { C115-1; U26-27;    }
    }
    ha:unnamed_net229 {
    li:conn { C114-1; U26-3;    }
    }
    ha:unnamed_net230 {
    li:conn { C113-1; U26-29;    }
    }
    ha:unnamed_net231 {
    li:conn { C112-1; U26-36;    }
    }
    ha:unnamed_net232 {
    li:conn { C110-1; U26-33;    }
    }
    ha:unnamed_net233 {
    li:conn { C111-1; U26-38;    }
    }
    ha:unnamed_net234 {
    li:conn { C109-1; U26-10;    }
    }
    ha:unnamed_net235 {
    li:conn { C108-1; L35-1; U26-21;    }
    }
    ha:unnamed_net236 {
    li:conn { C107-1; L34-1; U26-11;    }
    }
    ha:unnamed_net237 {
    li:conn { C104-1; C105-1; C106-1; L33-1; U26-1; U26-7; U26-15;    }
    }
    ha:unnamed_net238 {
    li:conn { U26-19;    }
    }
    ha:unnamed_net239 {
    li:conn { U26-18;    }
    }
    ha:unnamed_net240 {
    li:conn { C161-2; U26-8;    }
    }
    ha:unnamed_net241 {
    li:conn { C162-2; U26-9;    }
    }
    ha:unnamed_net242 {
    li:conn { C153-1; R53-2; R54-1; U26-12;    }
    }
    ha:unnamed_net243 {
    li:conn { C152-1; R53-1; U26-35;    }
    }
    ha:unnamed_net244 {
    li:conn { U26-23;    }
    }
    ha:unnamed_net245 {
    li:conn { U26-22;    }
    }
    ha:unnamed_net246 {
    li:conn { C132-1; C133-1; C134-1; C135-1; L40-1; U27-26; U27-37;    }
    }
    ha:unnamed_net247 {
    li:conn { C131-1; U27-27;    }
    }
    ha:unnamed_net248 {
    li:conn { C130-1; U27-3;    }
    }
    ha:unnamed_net249 {
    li:conn { C129-1; U27-29;    }
    }
    ha:unnamed_net250 {
    li:conn { C128-1; U27-36;    }
    }
    ha:unnamed_net251 {
    li:conn { C126-1; U27-33;    }
    }
    ha:unnamed_net252 {
    li:conn { C127-1; U27-38;    }
    }
    ha:unnamed_net253 {
    li:conn { C125-1; U27-10;    }
    }
    ha:unnamed_net254 {
    li:conn { C124-1; L39-1; U27-21;    }
    }
    ha:unnamed_net255 {
    li:conn { C123-1; L38-1; U27-11;    }
    }
    ha:unnamed_net256 {
    li:conn { C120-1; C121-1; C122-1; L37-1; U27-7; U27-15;    }
    }
    ha:unnamed_net257 {
    li:conn { U27-19;    }
    }
    ha:unnamed_net258 {
    li:conn { U27-18;    }
    }
    ha:unnamed_net259 {
    li:conn { C163-2; U27-8;    }
    }
    ha:unnamed_net260 {
    li:conn { C164-2; U27-9;    }
    }
    ha:unnamed_net261 {
    li:conn { C156-1; R55-2; R56-1; U27-12;    }
    }
    ha:unnamed_net262 {
    li:conn { C155-1; R55-1; U27-35;    }
    }
    ha:unnamed_net263 {
    li:conn { U27-23;    }
    }
    ha:unnamed_net264 {
    li:conn { U27-22;    }
    }
    ha:unnamed_net265 {
    li:conn { C148-1; C149-1; C150-1; C151-1; L44-1; U28-26; U28-37;    }
    }
    ha:unnamed_net266 {
    li:conn { C147-1; U28-27;    }
    }
    ha:unnamed_net267 {
    li:conn { C146-1; U28-3;    }
    }
    ha:unnamed_net268 {
    li:conn { C145-1; U28-29;    }
    }
    ha:unnamed_net269 {
    li:conn { C144-1; U28-36;    }
    }
    ha:unnamed_net270 {
    li:conn { C142-1; U28-33;    }
    }
    ha:unnamed_net271 {
    li:conn { C143-1; U28-38;    }
    }
    ha:unnamed_net272 {
    li:conn { C141-1; U28-10;    }
    }
    ha:unnamed_net273 {
    li:conn { C140-1; L43-1; U28-21;    }
    }
    ha:unnamed_net274 {
    li:conn { C139-1; L42-1; U28-11;    }
    }
    ha:unnamed_net275 {
    li:conn { C136-1; C137-1; C138-1; L41-1; U28-7; U28-15;    }
    }
    ha:unnamed_net276 {
    li:conn { U28-19;    }
    }
    ha:unnamed_net277 {
    li:conn { U28-18;    }
    }
    ha:unnamed_net278 {
    li:conn { C165-2; U28-8;    }
    }
    ha:unnamed_net279 {
    li:conn { C166-2; U28-9;    }
    }
    ha:unnamed_net280 {
    li:conn { C159-1; R57-2; R58-1; U28-12;    }
    }
    ha:unnamed_net281 {
    li:conn { C158-1; R57-1; U28-35;    }
    }
    ha:unnamed_net282 {
    li:conn { U28-23;    }
    }
    ha:unnamed_net283 {
    li:conn { U28-22;    }
    }
    ha:unnamed_net284 {
    li:conn { C154-1; R54-2;    }
    }
    ha:unnamed_net285 {
    li:conn { C157-1; R56-2;    }
    }
    ha:unnamed_net286 {
    li:conn { C160-1; R58-2;    }
    }
    ha:unnamed_net287 {
    li:conn { C161-1; R59-1;    }
    }
    ha:unnamed_net288 {
    li:conn { C162-1; R59-2;    }
    }
    ha:unnamed_net289 {
    li:conn { C163-1; R60-1;    }
    }
    ha:unnamed_net290 {
    li:conn { C164-1; R60-2;    }
    }
    ha:unnamed_net291 {
    li:conn { C165-1; R61-1;    }
    }
    ha:unnamed_net292 {
    li:conn { C166-1; R61-2;    }
    }
    ha:unnamed_net293 {
    li:conn { C171-2; L33-2; L34-2; L35-2; L36-2; L37-2; L38-2; L39-2; L40-=
2; L41-2; L42-2; L43-2; L44-2; U29-1; U29-2;    }
    }
    ha:unnamed_net294 {
    li:conn { C168-2; U29-3;    }
    }
    ha:unnamed_net295 {
    li:conn { C170-2; U29-5; U29-6;    }
    }
    ha:unnamed_net296 {
    li:conn { C169-2; U29-7;    }
    }
    ha:unnamed_net297 {
    li:conn { S1-6; T1-1;    }
    }
    ha:unnamed_net298 {
    li:conn { P1-B36; T1-6;    }
    }
    ha:unnamed_net299 {
    li:conn { P1-C36; T1-4;    }
    }
    ha:unnamed_net300 {
    li:conn { S1-2; T5-1;    }
    }
    ha:unnamed_net301 {
    li:conn { T5-6;    }
    }
    ha:unnamed_net302 {
    li:conn { T5-4;    }
    }
    ha:unnamed_net303 {
    li:conn { S1-4; T2-1;    }
    }
    ha:unnamed_net304 {
    li:conn { P1-F35; T2-6;    }
    }
    ha:unnamed_net305 {
    li:conn { P1-G35; T2-4;    }
    }
    ha:unnamed_net306 {
    li:conn { S1-10; T4-1;    }
    }
    ha:unnamed_net307 {
    li:conn { P1-F38; T4-6;    }
    }
    ha:unnamed_net308 {
    li:conn { P1-G38; T4-4;    }
    }
    ha:unnamed_net309 {
    li:conn { S1-12; T3-1;    }
    }
    ha:unnamed_net310 {
    li:conn { P1-B39; T3-6;    }
    }
    ha:unnamed_net311 {
    li:conn { P1-C39; T3-4;    }
    }
    ha:Vswout {
    li:conn { C97-2; C167-2; U25-4; U25-8; U29-4; U29-8;    }
    }
   }
 }
 ha:layer_stack {
  li:groups {
   ha:0 {
    name =3D top_paste
    ha:type { top=3D1; paste=3D1;    }
    li:layers { 9;    }
   }
   ha:1 {
    name =3D top_silk
    ha:type { silk=3D1; top=3D1;    }
    li:layers { 8;    }
   }
   ha:2 {
    name =3D top_mask
    ha:type { top=3D1; mask=3D1;    }
    li:layers { 10;    }
   }
   ha:3 {
    name =3D top_copper
    ha:type { copper=3D1; top=3D1;    }
    li:layers { 0; 2;    }
   }
   ha:4 {
    name =3D grp_4
    ha:type { substrate=3D1; intern=3D1;    }
    li:layers {    }
   }
   ha:5 {
    name =3D Intern
    ha:type { copper=3D1; intern=3D1;    }
    li:layers { 5;    }
   }
   ha:6 {
    name =3D grp_6
    ha:type { substrate=3D1; intern=3D1;    }
    li:layers {    }
   }
   ha:7 {
    name =3D Intern
    ha:type { copper=3D1; intern=3D1;    }
    li:layers { 4;    }
   }
   ha:8 {
    name =3D grp_8
    ha:type { substrate=3D1; intern=3D1;    }
    li:layers {    }
   }
   ha:9 {
    name =3D global_outline
    ha:type { boundary=3D1;    }
    li:layers { 6;    }
    purpose =3D uroute
   }
   ha:10 {
    name =3D courtyard
    ha:type { top=3D1; doc=3D1;    }
    li:layers { 13;    }
    purpose =3D courtyard
   }
   ha:11 {
    name =3D courtyard
    ha:type { bottom=3D1; doc=3D1;    }
    li:layers { 14;    }
    purpose =3D courtyard
   }
   ha:12 {
    name =3D bottom_copper
    ha:type { bottom=3D1; copper=3D1;    }
    li:layers { 1; 3;    }
   }
   ha:13 {
    name =3D bottom_mask
    ha:type { bottom=3D1; mask=3D1;    }
    li:layers { 11;    }
   }
   ha:14 {
    name =3D bottom_silk
    ha:type { silk=3D1; bottom=3D1;    }
    li:layers { 7;    }
   }
   ha:15 {
    name =3D bottom_paste
    ha:type { bottom=3D1; paste=3D1;    }
    li:layers { 12;    }
   }
  }
 }
 li:pcb-rnd-conf-v1 {
  ha:overwrite {
   ha:appearance {
    ha:color {
     via =3D {#695454}
     invisible_objects =3D {#a7a7a7}
    }
    compact =3D 0
    invis_other_groups =3D false
    black_current_group =3D false
   }
   ha:design {
    min_ring =3D 100.00 um
    min_drill =3D 0.15000000 mm
    text_font_id =3D 0
    text_scale =3D 100
    via_thickness =3D 500.00 um
    via_drilling_hole =3D 200.00 um
    min_slk =3D 150.00 um
    text_thickness =3D 0
    line_thickness =3D 200.00 um
    shrink =3D 50.00 um
    poly_isle_area =3D 10000000000.000000
    min_wid =3D 100.00 um
    bloat =3D 100.00 um
    clearance =3D 200.00 um
   }
   ha:editor {
    wireframe_draw =3D false
    snap_pin =3D true
    grid_unit =3D mm
    snap_offgrid_line =3D true
    grids_idx =3D 10
    grid =3D 250.00 um
    line_refraction =3D 0
    hide_names =3D false
    buffer_number =3D 4
    all_direction_lines =3D 0
    lock_names =3D false
    only_names =3D false
    thin_draw_poly =3D false
    thin_draw =3D false
    rubber_band_mode =3D true
    orthogonal_moves =3D false
    check_planes =3D false
    ha:view {
     flip_x =3D 0
     flip_y =3D 1
    }
    show_solder_side =3D 1
    subc_id =3D %a.refdes%
    fullscreen =3D 0
    show_drc =3D true
   }
   ha:plugins {
    ha:mincut {
     enable =3D false
    }
   }
  }
 }
}
 
--ujun4vqr25kgqxwg--
 

Reply subtree:
2624 Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug: from Gabriel Paubert <pa...@iram.es>
  2625 Re: [pcb-rnd] poly clipping performance optimization - padstack, from ge...@igor2.repo.hu
  2628 [pcb-rnd] subc remove undo segfault (was: poly clipping performance from ge...@igor2.repo.hu
  2629 Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug: from ge...@igor2.repo.hu
    2632 Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug: from Gabriel Paubert <pa...@iram.es>
  2630 Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug: from ge...@igor2.repo.hu
    2633 Re: [pcb-rnd] poly clipping performance optimization (was Re: Bug: from Gabriel Paubert <pa...@iram.es>
  2631 Re: [pcb-rnd] poly clipping performance optimization - experimental from ge...@igor2.repo.hu
    2655 Re: [pcb-rnd] poly clipping performance optimization - experimental from Gabriel Paubert <pa...@iram.es>
      2658 Re: [pcb-rnd] poly clipping performance optimization - experimental from ge...@igor2.repo.hu
        2672 Re: [pcb-rnd] poly clipping performance optimization - experimental from ge...@igor2.repo.hu
          2673 Re: [pcb-rnd] poly clipping performance optimization - experimental from Gabriel Paubert <pa...@iram.es>
            2674 Re: [pcb-rnd] poly clipping performance optimization - experimental from ge...@igor2.repo.hu