Skip to content
pinky.kicad_pcb 322 KiB
Newer Older
Nicolas Pouillon's avatar
Nicolas Pouillon committed
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000
      (net 57 "Net-(C5-Pad2)"))
    (pad 2 smd rect (at 0.75 0) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 2 +3V3))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Test_point:Round-SMD-Pad_0.4mm (layer B.Cu) (tedit 57AA5446) (tstamp 57AA7354)
    (at 105.8 99.05 270)
    (path /57A213A5/57AA5349)
    (fp_text reference TX1 (at 0.15 -1.2 360) (layer B.SilkS)
      (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
    )
    (fp_text value NFC_TX (at 0.35 -2.35 360) (layer B.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 1 smd circle (at 0 0 270) (size 0.4 0.4) (layers B.Cu B.Mask)
      (net 52 "Net-(L2-Pad1)") (solder_mask_margin 0.001))
  )

  (module Test_point:Round-SMD-Pad_0.4mm (layer B.Cu) (tedit 57AA5449) (tstamp 57AA7361)
    (at 105.8 99.7 270)
    (path /57A213A5/57AA548D)
    (fp_text reference TX2 (at 0.2 -1.2 360) (layer B.SilkS)
      (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
    )
    (fp_text value NFC_TX (at 0.6 -1.5 360) (layer B.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 1 smd circle (at 0 0 270) (size 0.4 0.4) (layers B.Cu B.Mask)
      (net 5 "Net-(L3-Pad1)") (solder_mask_margin 0.001))
  )

  (module Hole:Mounting-Hole_3mm (layer F.Cu) (tedit 57077A3D) (tstamp 57AB447C)
    (at 137.5991 127.6)
    (path /57A908BC)
    (fp_text reference H2 (at 0 2.1) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Hole (at 0 -4.2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 3 0) (layer F.SilkS) (width 0.05))
    (pad "" np_thru_hole circle (at 0 0) (size 3 3) (drill 3) (layers *.Cu)
      (clearance 0.5))
  )

  (module Solder_Bridge:3Way_Open (layer F.Cu) (tedit 57AB4226) (tstamp 57AB5B65)
    (at 131.027 86.17)
    (path /57AC953C/57ACB050)
    (fp_text reference SB1 (at 3.823 0.03) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LCD_VSel (at 0 -1.47) (layer F.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.547 0.5) (end -0.637 0.5) (layer F.Cu) (width 0.05))
    (fp_line (start -0.547 -0.5) (end -0.547 0.5) (layer F.Cu) (width 0.05))
    (fp_line (start -0.627 -0.5) (end -0.547 -0.5) (layer F.Cu) (width 0.05))
    (fp_arc (start -0.627 0) (end -0.637 0.5) (angle 178.8542372) (layer F.Cu) (width 0.05))
    (fp_line (start 0.549704 0.504274) (end 0.549704 -0.495726) (layer F.Cu) (width 0.05))
    (fp_line (start 0.549704 -0.495726) (end 0.639704 -0.495726) (layer F.Cu) (width 0.05))
    (fp_line (start 0.629704 0.504274) (end 0.549704 0.504274) (layer F.Cu) (width 0.05))
    (fp_arc (start 0.629704 0.004274) (end 0.639704 -0.495726) (angle 178.8542372) (layer F.Cu) (width 0.05))
    (fp_line (start 0.549704 0.504274) (end 0.549704 -0.495726) (layer F.Mask) (width 0.05))
    (fp_line (start 0.549704 -0.495726) (end 0.639704 -0.495726) (layer F.Mask) (width 0.05))
    (fp_line (start 0.629704 0.504274) (end 0.549704 0.504274) (layer F.Mask) (width 0.05))
    (fp_line (start -0.547 0.5) (end -0.637 0.5) (layer F.Mask) (width 0.05))
    (fp_line (start -0.547 -0.5) (end -0.547 0.5) (layer F.Mask) (width 0.05))
    (fp_line (start -0.627 -0.5) (end -0.547 -0.5) (layer F.Mask) (width 0.05))
    (fp_arc (start -0.627 0) (end -0.637 0.5) (angle 178.8542372) (layer F.Mask) (width 0.05))
    (fp_arc (start 0.629704 0.004274) (end 0.639704 -0.495726) (angle 178.8542372) (layer F.Mask) (width 0.05))
    (pad 1 smd rect (at -1.5 0) (size 1 0.5) (layers F.Cu)
      (net 6 +5V) (solder_mask_margin 0.1))
    (pad 3 smd rect (at 1.5 0) (size 1 0.5) (layers F.Cu)
      (net 2 +3V3) (solder_mask_margin 0.1))
    (pad "" smd rect (at -0.877 0) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.857 -0.1 337.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.807 -0.18 315) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.727 -0.23 292.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.637 0 270) (size 1 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.857 0.1 22.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.807 0.18 45) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at -0.727 0.23 67.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.859704 -0.095726 202.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.809704 0.184274 135) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.859704 0.104274 157.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.879704 0.004274 180) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.809704 -0.175726 225) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.639704 0.004274 90) (size 1 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.729704 0.234274 112.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad "" smd rect (at 0.729704 -0.225726 247.5) (size 0.5 0.2) (layers F.Cu F.Mask)
      (solder_mask_margin 0.001))
    (pad 2 smd rect (at 0 0) (size 0.5 1) (layers F.Cu F.Mask)
      (net 80 "Net-(LCD1-Pad2)") (solder_mask_margin 0.001))
  )

  (module Resistors_SMD:R_0603 (layer B.Cu) (tedit 5415CC62) (tstamp 57AB5D75)
    (at 100.194 90.681 180)
    (descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
    (tags "resistor 0603")
    (path /57AC953C/57ACB04E)
    (attr smd)
    (fp_text reference R7 (at 0 -1.651 180) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 43K (at 0 -0.127 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.3 0.8) (end 1.3 0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 0.8) (end -1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.3 0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 0.5 -0.675) (end -0.5 -0.675) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.5 0.675) (end 0.5 0.675) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -0.75 0 180) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 83 "Net-(Q1-Pad1)"))
    (pad 2 smd rect (at 0.75 0 180) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm (layer B.Cu) (tedit 54130A77) (tstamp 57ABA444)
    (at 115.189 117.127 90)
    (descr "8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf)")
    (tags "SOIC 1.27")
    (path /57ADA116/57ADA89A)
    (zone_connect 2)
    (attr smd)
    (fp_text reference U5 (at -4.539 -0.889 360) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value MIC4680 (at -1.173 -0.039 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -3.75 2.75) (end -3.75 -2.75) (layer B.CrtYd) (width 0.05))
    (fp_line (start 3.75 2.75) (end 3.75 -2.75) (layer B.CrtYd) (width 0.05))
    (fp_line (start -3.75 2.75) (end 3.75 2.75) (layer B.CrtYd) (width 0.05))
    (fp_line (start -3.75 -2.75) (end 3.75 -2.75) (layer B.CrtYd) (width 0.05))
    (fp_line (start -2.075 2.575) (end -2.075 2.43) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.075 2.575) (end 2.075 2.43) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.075 -2.575) (end 2.075 -2.43) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.075 -2.575) (end -2.075 -2.43) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.075 2.575) (end 2.075 2.575) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.075 -2.575) (end 2.075 -2.575) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.075 2.43) (end -3.475 2.43) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -2.7 1.905 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 1 GND) (zone_connect 2))
    (pad 2 smd rect (at -2.7 0.635 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 77 /can/VSupply) (zone_connect 2))
    (pad 3 smd rect (at -2.7 -0.635 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 50 "Net-(D1-Pad1)") (zone_connect 2))
    (pad 4 smd rect (at -2.7 -1.905 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 6 +5V) (zone_connect 2))
    (pad 5 smd rect (at 2.7 -1.905 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 1 GND) (zone_connect 2))
    (pad 6 smd rect (at 2.7 -0.635 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 1 GND) (zone_connect 2))
    (pad 7 smd rect (at 2.7 0.635 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 1 GND) (zone_connect 2))
    (pad 8 smd rect (at 2.7 1.905 90) (size 1.55 0.6) (layers B.Cu B.Paste B.Mask)
      (net 1 GND) (zone_connect 2))
    (model Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Diodes_SMD:SMA_Standard (layer B.Cu) (tedit 552FF239) (tstamp 57ABA663)
    (at 110.49 117.348 90)
    (descr "Diode SMA")
    (tags "Diode SMA")
    (path /57ADA116/57ADA898)
    (attr smd)
    (fp_text reference D1 (at -4.318 0.381 180) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value Schottky (at -0.652 -0.19 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -3.5 2) (end 3.5 2) (layer B.CrtYd) (width 0.05))
    (fp_line (start 3.5 2) (end 3.5 -2) (layer B.CrtYd) (width 0.05))
    (fp_line (start 3.5 -2) (end -3.5 -2) (layer B.CrtYd) (width 0.05))
    (fp_line (start -3.5 -2) (end -3.5 2) (layer B.CrtYd) (width 0.05))
    (fp_text user K (at -2.9 -2.95 90) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user A (at 2.9 -2.9 90) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_circle (center 0 0) (end 0.20066 0.0508) (layer B.Adhes) (width 0.381))
    (fp_line (start -1.79914 -1.75006) (end -1.79914 -1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.79914 1.75006) (end -1.79914 1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.25044 -1.75006) (end 2.25044 -1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.25044 -1.75006) (end -2.25044 -1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.25044 1.75006) (end -2.25044 1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.25044 1.75006) (end 2.25044 1.39954) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.25044 -1.75006) (end 2.25044 -1.75006) (layer B.SilkS) (width 0.15))
    (fp_line (start -2.25044 1.75006) (end 2.25044 1.75006) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -1.99898 0 90) (size 2.49936 1.80086) (layers B.Cu B.Paste B.Mask)
      (net 50 "Net-(D1-Pad1)"))
    (pad 2 smd rect (at 1.99898 0 90) (size 2.49936 1.80086) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Diodes_SMD.3dshapes/SMA_Standard.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3937 0.3937 0.3937))
      (rotate (xyz 0 0 180))
    )
  )

  (module Capacitors_Tantalum_SMD:TantalC_SizeD_EIA-7343_Reflow (layer B.Cu) (tedit 555EF99E) (tstamp 57ABF1BB)
    (at 103.5 118.35)
    (descr "Tantal Cap. , Size D, EIA-7343, Reflow")
    (tags "Tantal Capacitor Size-D EIA-7343 Reflow")
    (path /57ADA116/57ADA894)
    (attr smd)
    (fp_text reference C31 (at -5.6 0.25 90) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 220uF (at -0.1 -0.15) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start 4.6 2.6) (end -4.6 2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.6 2.6) (end -4.6 -2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.6 -2.6) (end 4.6 -2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 4.6 -2.6) (end 4.6 2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.2 -2.2) (end 3.8 -2.2) (layer B.SilkS) (width 0.15))
    (fp_line (start 3.8 2.2) (end -4.3 2.2) (layer B.SilkS) (width 0.15))
    (pad 2 smd rect (at 3.12 0) (size 2.37 2.43) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 1 smd rect (at -3.12 0) (size 2.37 2.43) (layers B.Cu B.Paste B.Mask)
      (net 6 +5V))
    (model Capacitors_Tantalum_SMD.3dshapes/TantalC_SizeD_EIA-7343_Reflow.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Capacitors_Tantalum_SMD:TantalC_SizeD_EIA-7343_Reflow (layer B.Cu) (tedit 555EF99E) (tstamp 57ABF1DC)
    (at 124.333 121.031)
    (descr "Tantal Cap. , Size D, EIA-7343, Reflow")
    (tags "Tantal Capacitor Size-D EIA-7343 Reflow")
    (path /57ADA116/57ADA891)
    (attr smd)
    (fp_text reference C30 (at -0.20066 3.29946) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 15uF (at 0.167 1.219) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start 4.6 2.6) (end -4.6 2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.6 2.6) (end -4.6 -2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.6 -2.6) (end 4.6 -2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 4.6 -2.6) (end 4.6 2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -4.2 -2.2) (end 3.8 -2.2) (layer B.SilkS) (width 0.15))
    (fp_line (start 3.8 2.2) (end -4.3 2.2) (layer B.SilkS) (width 0.15))
    (pad 2 smd rect (at 3.12 0) (size 2.37 2.43) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 1 smd rect (at -3.12 0) (size 2.37 2.43) (layers B.Cu B.Paste B.Mask)
      (net 77 /can/VSupply))
    (model Capacitors_Tantalum_SMD.3dshapes/TantalC_SizeD_EIA-7343_Reflow.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Wurth_Inductor:PD2 (layer B.Cu) (tedit 56DFC874) (tstamp 57AC0601)
    (at 108.15 110.65 180)
    (descr "WE-PD2 SMD Power Inductor")
    (tags Inductor)
    (path /57ADA116/57ADA874)
    (fp_text reference L5 (at 3.55 -1.9 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 10uH (at 0 3.7 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_arc (start 0 0) (end 0.9 -2.6) (angle -38.1) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.9 2.6) (end 0.9 2.6) (layer B.SilkS) (width 0.15))
    (fp_arc (start 0 0) (end -1.3 -2.6) (angle -126.8698976) (layer B.CrtYd) (width 0.05))
    (fp_arc (start 0 0) (end 1.3 2.6) (angle -126.8698976) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 2.6) (end 1.3 2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 -2.6) (end 1.3 -2.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -0.9 -2.6) (end 0.9 -2.6) (layer B.SilkS) (width 0.15))
    (fp_line (start -3 -0.9) (end -3 0.9) (layer B.SilkS) (width 0.15))
    (fp_line (start 3 -0.9) (end 3 0.9) (layer B.SilkS) (width 0.15))
    (fp_arc (start 0.003948 -0.001363) (end -0.896052 2.598637) (angle -38.1) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -1.925 0 90) (size 5.5 1.7) (layers B.Cu B.Paste B.Mask)
      (net 2 +3V3))
    (pad 2 smd rect (at 1.925 0 90) (size 5.5 1.7) (layers B.Cu B.Paste B.Mask)
      (net 49 "Net-(L5-Pad2)"))
    (model Inductors.3dshapes/SELF-WE-TPC_M.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.4 0.4 0.1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Wurth_Inductor:Inductor_2525 (layer B.Cu) (tedit 57ABA0BC) (tstamp 57AC7D97)
    (at 103.6 124.75)
    (path /57ADA116/57ADA896)
    (fp_text reference L4 (at -4.2 0.6 90) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 68uH (at 0.1 0.25) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.3 2.8) (end 1.3 2.8) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.3 -2.8) (end 1.3 -2.8) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -2.35 0) (size 1.6 5.7) (layers B.Cu B.Paste B.Mask)
      (net 6 +5V))
    (pad 2 smd rect (at 2.35 0) (size 1.6 5.7) (layers B.Cu B.Paste B.Mask)
      (net 50 "Net-(D1-Pad1)"))
  )

  (module Potentiometer_SMD:EVN_3.3x3.3mm (layer B.Cu) (tedit 57ABAF5C) (tstamp 57ABD4D0)
    (at 130.7 87.75 270)
    (path /57AC953C/57ACB051)
    (fp_text reference RV1 (at 0 -3.1 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value POT (at 0.75 -0.05 270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.6 -1.9) (end -1.6 1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.6 -1.9) (end -1.6 -1.9) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.6 1.6) (end 1.6 -1.9) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.6 1.6) (end 1.6 1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 0.4 0) (end 0.4 0.7) (layer B.SilkS) (width 0.15))
    (fp_line (start 0.4 0) (end 0.6 0.2) (layer B.SilkS) (width 0.15))
    (fp_line (start 0.2 0.2) (end 0.4 0) (layer B.SilkS) (width 0.15))
    (fp_line (start 1.4 -0.2) (end 1.4 -0.8) (layer B.SilkS) (width 0.15))
    (fp_line (start 0.9 -0.2) (end 1.4 -0.2) (layer B.SilkS) (width 0.15))
    (fp_line (start 0.9 0) (end -0.9 0) (layer B.SilkS) (width 0.15))
    (fp_line (start 0.9 -0.4) (end 0.9 0) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.9 -0.4) (end 0.9 -0.4) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.9 0) (end -0.9 -0.4) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.4 -0.2) (end -0.9 -0.2) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.4 -0.8) (end -1.4 -0.2) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -1.4 -1.6 270) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask)
      (net 80 "Net-(LCD1-Pad2)"))
    (pad 2 smd rect (at 0 1.5 270) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask)
      (net 82 "Net-(LCD1-Pad3)"))
    (pad 3 smd rect (at 1.4 -1.6 270) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
  )

  (module Resistors_SMD:R_0603 (layer B.Cu) (tedit 5415CC62) (tstamp 57AC333C)
    (at 102.7 89.2 270)
    (descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
    (tags "resistor 0603")
    (path /57AC953C/57ACB058)
    (attr smd)
    (fp_text reference C34 (at 2.55 0.4 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 100nF (at 1.2 -0.05 270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.3 0.8) (end 1.3 0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 0.8) (end -1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.3 0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 0.5 -0.675) (end -0.5 -0.675) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.5 0.675) (end 0.5 0.675) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -0.75 0 270) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 6 +5V))
    (pad 2 smd rect (at 0.75 0 270) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module TO_SOT_Packages_SMD:SOT-23 (layer B.Cu) (tedit 553634F8) (tstamp 57AC9069)
    (at 100.194 88.268 180)
    (descr "SOT-23, Standard")
    (tags SOT-23)
    (path /57AC953C/57ACB04D)
    (attr smd)
    (fp_text reference Q1 (at 0 2.25 180) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value NMOS (at -0.606 0.968 180) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.65 1.6) (end 1.65 1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.65 1.6) (end 1.65 -1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.65 -1.6) (end -1.65 -1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.65 -1.6) (end -1.65 1.6) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.29916 0.65024) (end 1.2509 0.65024) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.49982 -0.0508) (end -1.49982 0.65024) (layer B.SilkS) (width 0.15))
    (fp_line (start -1.49982 0.65024) (end -1.2509 0.65024) (layer B.SilkS) (width 0.15))
    (fp_line (start 1.29916 0.65024) (end 1.49982 0.65024) (layer B.SilkS) (width 0.15))
    (fp_line (start 1.49982 0.65024) (end 1.49982 -0.0508) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -0.95 -1.00076 180) (size 0.8001 0.8001) (layers B.Cu B.Paste B.Mask)
      (net 83 "Net-(Q1-Pad1)"))
    (pad 2 smd rect (at 0.95 -1.00076 180) (size 0.8001 0.8001) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 3 smd rect (at 0 0.99822 180) (size 0.8001 0.8001) (layers B.Cu B.Paste B.Mask)
      (net 48 "Net-(Q1-Pad3)"))
    (model TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603 (layer B.Cu) (tedit 5415CC62) (tstamp 57AD5665)
    (at 104.35 90.15 90)
    (descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
    (tags "resistor 0603")
    (path /57AC953C/57ACD4ED)
    (attr smd)
    (fp_text reference R9 (at 0 1.9 90) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 100R (at 0.7 0.05 90) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.3 0.8) (end 1.3 0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 -0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.3 0.8) (end -1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.3 0.8) (end 1.3 -0.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 0.5 -0.675) (end -0.5 -0.675) (layer B.SilkS) (width 0.15))
    (fp_line (start -0.5 0.675) (end 0.5 0.675) (layer B.SilkS) (width 0.15))
    (pad 1 smd rect (at -0.75 0 90) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 83 "Net-(Q1-Pad1)"))
    (pad 2 smd rect (at 0.75 0 90) (size 0.5 0.9) (layers B.Cu B.Paste B.Mask)
      (net 17 /P12))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Pinky_and_TheBrain:BetaMachine_Small (layer B.Cu) (tedit 0) (tstamp 57AD96D1)
    (at 78.2 85.7 180)
    (path /57A9106D)
    (fp_text reference Logo1 (at 0 0 180) (layer B.SilkS) hide
      (effects (font (thickness 0.3)) (justify mirror))
    )
    (fp_text value BetaMachine (at 0.75 0 180) (layer B.SilkS) hide
      (effects (font (thickness 0.3)) (justify mirror))
    )
    (fp_poly (pts (xy -9.172039 3.599233) (xy -8.834968 3.551598) (xy -8.527008 3.474201) (xy -8.248529 3.367202)
      (xy -7.999902 3.230759) (xy -7.781498 3.065031) (xy -7.670737 2.95759) (xy -7.524428 2.78277)
      (xy -7.409874 2.599978) (xy -7.325499 2.404129) (xy -7.26973 2.190139) (xy -7.240992 1.952924)
      (xy -7.237711 1.687398) (xy -7.242935 1.575992) (xy -7.267387 1.33977) (xy -7.309593 1.13026)
      (xy -7.36835 0.952824) (xy -7.39706 0.890362) (xy -7.448922 0.807945) (xy -7.525008 0.711549)
      (xy -7.615459 0.611583) (xy -7.710416 0.518457) (xy -7.800019 0.442583) (xy -7.859115 0.402491)
      (xy -7.961245 0.344163) (xy -7.838247 0.274773) (xy -7.685313 0.168164) (xy -7.542641 0.030163)
      (xy -7.420374 -0.128289) (xy -7.348148 -0.254) (xy -7.295462 -0.365477) (xy -7.253953 -0.465434)
      (xy -7.222319 -0.561296) (xy -7.199264 -0.660491) (xy -7.183489 -0.770444) (xy -7.173695 -0.898581)
      (xy -7.168584 -1.052329) (xy -7.166857 -1.239114) (xy -7.166802 -1.291167) (xy -7.168497 -1.514016)
      (xy -7.174214 -1.702388) (xy -7.184924 -1.864026) (xy -7.201597 -2.006677) (xy -7.225205 -2.138085)
      (xy -7.256719 -2.265995) (xy -7.29711 -2.398153) (xy -7.310665 -2.438502) (xy -7.379501 -2.617202)
      (xy -7.455992 -2.766318) (xy -7.547771 -2.898596) (xy -7.66247 -3.026785) (xy -7.663498 -3.027826)
      (xy -7.850512 -3.187478) (xy -8.066143 -3.318678) (xy -8.306381 -3.419952) (xy -8.567219 -3.489826)
      (xy -8.844647 -3.526826) (xy -9.035647 -3.532514) (xy -9.140655 -3.529751) (xy -9.240504 -3.524204)
      (xy -9.320932 -3.516799) (xy -9.354213 -3.511796) (xy -9.477472 -3.481283) (xy -9.616286 -3.437074)
      (xy -9.749637 -3.38633) (xy -9.831916 -3.349045) (xy -9.912863 -3.305007) (xy -10.000536 -3.251651)
      (xy -10.084271 -3.196091) (xy -10.153403 -3.145443) (xy -10.197267 -3.106822) (xy -10.200486 -3.103142)
      (xy -10.228162 -3.076348) (xy -10.247052 -3.076961) (xy -10.258638 -3.108769) (xy -10.264401 -3.175559)
      (xy -10.265833 -3.27025) (xy -10.265833 -3.471333) (xy -11.832166 -3.471333) (xy -11.831728 -1.195967)
      (xy -10.975069 -1.195967) (xy -10.973737 -1.351474) (xy -10.965379 -1.498688) (xy -10.950016 -1.625146)
      (xy -10.935463 -1.693333) (xy -10.851415 -1.926071) (xy -10.734468 -2.13241) (xy -10.585377 -2.311629)
      (xy -10.404894 -2.463009) (xy -10.193777 -2.585831) (xy -9.952778 -2.679376) (xy -9.878778 -2.700561)
      (xy -9.782323 -2.724332) (xy -9.700686 -2.738713) (xy -9.618202 -2.745215) (xy -9.51921 -2.745346)
      (xy -9.440333 -2.742797) (xy -9.327302 -2.735683) (xy -9.215226 -2.724056) (xy -9.119403 -2.709727)
      (xy -9.069916 -2.698984) (xy -8.99443 -2.674169) (xy -8.89715 -2.635979) (xy -8.793742 -2.59076)
      (xy -8.741833 -2.566125) (xy -8.537823 -2.443783) (xy -8.364103 -2.292031) (xy -8.221375 -2.111735)
      (xy -8.11034 -1.903759) (xy -8.039716 -1.699693) (xy -8.008282 -1.537192) (xy -7.992799 -1.350754)
      (xy -7.993082 -1.155223) (xy -8.008946 -0.96544) (xy -8.040205 -0.796247) (xy -8.051513 -0.755177)
      (xy -8.098244 -0.614269) (xy -8.151162 -0.488089) (xy -8.214964 -0.369439) (xy -8.294344 -0.251121)
      (xy -8.393997 -0.125938) (xy -8.518619 0.013307) (xy -8.626686 0.126562) (xy -8.7393 0.244284)
      (xy -8.824008 0.338117) (xy -8.884019 0.412876) (xy -8.922541 0.473378) (xy -8.942782 0.524437)
      (xy -8.947953 0.57087) (xy -8.944312 0.603255) (xy -8.927947 0.647077) (xy -8.892699 0.716534)
      (xy -8.843627 0.802351) (xy -8.785789 0.895251) (xy -8.781198 0.902309) (xy -8.71842 1.001302)
      (xy -8.65933 1.099468) (xy -8.625852 1.158524) (xy -8.377235 1.158524) (xy -8.365101 1.043722)
      (xy -8.361522 1.031119) (xy -8.310931 0.92792) (xy -8.233836 0.852532) (xy -8.137801 0.807639)
      (xy -8.030388 0.795923) (xy -7.919163 0.820065) (xy -7.855625 0.851715) (xy -7.79182 0.910876)
      (xy -7.739907 0.994868) (xy -7.70939 1.086258) (xy -7.705131 1.127805) (xy -7.722651 1.236414)
      (xy -7.772058 1.326496) (xy -7.845861 1.395054) (xy -7.936566 1.439091) (xy -8.036679 1.455612)
      (xy -8.138708 1.441619) (xy -8.235158 1.394117) (xy -8.278657 1.357157) (xy -8.348562 1.262446)
      (xy -8.377235 1.158524) (xy -8.625852 1.158524) (xy -8.610676 1.185293) (xy -8.579775 1.245995)
      (xy -8.507072 1.453746) (xy -8.471748 1.666822) (xy -8.472977 1.87949) (xy -8.50993 2.086016)
      (xy -8.581778 2.280667) (xy -8.687694 2.457709) (xy -8.768758 2.554692) (xy -8.904207 2.66833)
      (xy -9.063073 2.752461) (xy -9.238391 2.807053) (xy -9.423194 2.832077) (xy -9.610516 2.827504)
      (xy -9.793391 2.793303) (xy -9.964853 2.729445) (xy -10.117935 2.635899) (xy -10.202637 2.560855)
      (xy -10.288167 2.454339) (xy -10.368071 2.320847) (xy -10.434266 2.175663) (xy -10.476674 2.042583)
      (xy -10.493182 1.937016) (xy -10.500432 1.808055) (xy -10.498449 1.673613) (xy -10.487255 1.5516)
      (xy -10.475955 1.491097) (xy -10.432901 1.357237) (xy -10.366301 1.205386) (xy -10.282095 1.047933)
      (xy -10.203073 0.921846) (xy -10.126343 0.805957) (xy -10.070826 0.711608) (xy -10.037647 0.632154)
      (xy -10.027925 0.56095) (xy -10.042784 0.491352) (xy -10.083346 0.416715) (xy -10.150733 0.330393)
      (xy -10.246066 0.225742) (xy -10.336584 0.131225) (xy -10.430192 0.032648) (xy -10.518357 -0.063013)
      (xy -10.594844 -0.148783) (xy -10.653421 -0.217686) (xy -10.68567 -0.259501) (xy -10.761975 -0.385578)
      (xy -10.835964 -0.534437) (xy -10.898857 -0.687026) (xy -10.93674 -0.804333) (xy -10.956588 -0.909933)
      (xy -10.969359 -1.044633) (xy -10.975069 -1.195967) (xy -11.831728 -1.195967) (xy -11.831686 -0.978958)
      (xy -11.831499 -0.565342) (xy -11.83107 -0.191775) (xy -11.830428 0.105607) (xy -11.043043 0.105607)
      (xy -11.040078 0.034239) (xy -11.014985 -0.017977) (xy -10.965387 -0.066727) (xy -10.90702 -0.093931)
      (xy -10.86206 -0.093926) (xy -10.823415 -0.085237) (xy -10.81526 -0.084667) (xy -10.779763 -0.06676)
      (xy -10.74367 -0.023182) (xy -10.717374 0.030858) (xy -10.710333 0.068883) (xy -10.724356 0.151197)
      (xy -10.768715 0.206033) (xy -10.816512 0.229782) (xy -10.895698 0.239418) (xy -10.96425 0.216439)
      (xy -11.015566 0.169088) (xy -11.043043 0.105607) (xy -11.830428 0.105607) (xy -11.830344 0.144026)
      (xy -11.829268 0.444346) (xy -11.827788 0.711467) (xy -11.825849 0.947674) (xy -11.823398 1.15525)
      (xy -11.82038 1.33648) (xy -11.816742 1.493646) (xy -11.812429 1.629032) (xy -11.807389 1.744923)
      (xy -11.801565 1.843602) (xy -11.794905 1.927352) (xy -11.787355 1.998457) (xy -11.778861 2.059201)
      (xy -11.769368 2.111868) (xy -11.758822 2.158741) (xy -11.757351 2.164608) (xy -11.669377 2.433953)
      (xy -11.555484 2.663105) (xy -10.559615 2.663105) (xy -10.541622 2.613349) (xy -10.536766 2.607733)
      (xy -10.487465 2.584745) (xy -10.427845 2.589642) (xy -10.383762 2.615595) (xy -10.356463 2.659812)
      (xy -10.3505 2.688167) (xy -10.368336 2.741526) (xy -10.41235 2.77878) (xy -10.468297 2.79378)
      (xy -10.521933 2.780375) (xy -10.536767 2.7686) (xy -10.557996 2.722757) (xy -10.559615 2.663105)
      (xy -11.555484 2.663105) (xy -11.549084 2.675981) (xy -11.39658 2.890588) (xy -11.211974 3.07767)
      (xy -10.995374 3.237124) (xy -10.746889 3.368845) (xy -10.466628 3.47273) (xy -10.359104 3.503)
      (xy -10.052665 3.566234) (xy -9.729143 3.602958) (xy -9.405486 3.611801) (xy -9.172039 3.599233)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 1.054237 -0.405872) (xy 1.195557 -0.418065) (xy 1.288984 -0.434709) (xy 1.490258 -0.503001)
      (xy 1.670362 -0.606448) (xy 1.8265 -0.742069) (xy 1.955875 -0.906881) (xy 2.055693 -1.097902)
      (xy 2.123157 -1.31215) (xy 2.126653 -1.328208) (xy 2.141197 -1.397) (xy 1.753224 -1.39692)
      (xy 1.36525 -1.396841) (xy 1.325796 -1.300908) (xy 1.281293 -1.223089) (xy 1.222185 -1.15665)
      (xy 1.211027 -1.147529) (xy 1.166398 -1.117314) (xy 1.122205 -1.099956) (xy 1.064374 -1.092023)
      (xy 0.978827 -1.090085) (xy 0.975314 -1.090083) (xy 0.851767 -1.099429) (xy 0.759099 -1.130458)
      (xy 0.689508 -1.187657) (xy 0.63519 -1.27551) (xy 0.628932 -1.289216) (xy 0.600841 -1.379082)
      (xy 0.579328 -1.501446) (xy 0.564337 -1.648059) (xy 0.555814 -1.810674) (xy 0.553705 -1.981042)
      (xy 0.557954 -2.150914) (xy 0.568507 -2.312042) (xy 0.585309 -2.456177) (xy 0.608304 -2.575071)
      (xy 0.637439 -2.660475) (xy 0.638048 -2.661711) (xy 0.707698 -2.757273) (xy 0.804769 -2.822115)
      (xy 0.925425 -2.854065) (xy 0.983443 -2.857152) (xy 1.107905 -2.839638) (xy 1.208341 -2.787405)
      (xy 1.286163 -2.699572) (xy 1.312334 -2.652086) (xy 1.36525 -2.541922) (xy 1.751542 -2.540961)
      (xy 1.887408 -2.541681) (xy 1.998526 -2.544416) (xy 2.080156 -2.548931) (xy 2.127557 -2.55499)
      (xy 2.137834 -2.560074) (xy 2.129042 -2.611234) (xy 2.105635 -2.688751) (xy 2.072066 -2.781186)
      (xy 2.032786 -2.877101) (xy 1.992247 -2.965056) (xy 1.954903 -3.033613) (xy 1.951328 -3.039252)
      (xy 1.826638 -3.194645) (xy 1.671385 -3.32676) (xy 1.493296 -3.430373) (xy 1.300098 -3.500261)
      (xy 1.253083 -3.51128) (xy 1.138424 -3.526662) (xy 1.000183 -3.532257) (xy 0.855891 -3.528353)
      (xy 0.723083 -3.515244) (xy 0.648421 -3.501253) (xy 0.485336 -3.444403) (xy 0.325027 -3.356786)
      (xy 0.176624 -3.24558) (xy 0.04926 -3.117966) (xy -0.047933 -2.981122) (xy -0.071946 -2.934914)
      (xy -0.108327 -2.851865) (xy -0.137181 -2.770444) (xy -0.159331 -2.684357) (xy -0.175601 -2.587308)
      (xy -0.186813 -2.473004) (xy -0.193792 -2.33515) (xy -0.19736 -2.167452) (xy -0.198341 -1.9685)
      (xy -0.196311 -1.735329) (xy -0.18928 -1.538982) (xy -0.175837 -1.374103) (xy -0.154571 -1.235335)
      (xy -0.124071 -1.11732) (xy -0.082926 -1.014703) (xy -0.029724 -0.922127) (xy 0.036946 -0.834235)
      (xy 0.118494 -0.74567) (xy 0.12571 -0.738389) (xy 0.296089 -0.595372) (xy 0.484655 -0.490524)
      (xy 0.649884 -0.433686) (xy 0.765258 -0.413657) (xy 0.905423 -0.404394) (xy 1.054237 -0.405872)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy -5.054079 3.591518) (xy -4.857669 3.540144) (xy -4.683146 3.459423) (xy -4.53403 3.350898)
      (xy -4.41384 3.216114) (xy -4.342027 3.092874) (xy -4.31632 3.033559) (xy -4.300142 2.979984)
      (xy -4.29153 2.919554) (xy -4.288521 2.839676) (xy -4.288848 2.751667) (xy -4.298885 2.57986)
      (xy -4.326417 2.440902) (xy -4.374255 2.327935) (xy -4.445215 2.234102) (xy -4.53154 2.160077)
      (xy -4.612517 2.101417) (xy -4.534879 2.050834) (xy -4.428237 1.96269) (xy -4.347838 1.852494)
      (xy -4.292211 1.716545) (xy -4.259888 1.551143) (xy -4.249396 1.352589) (xy -4.249474 1.332798)
      (xy -4.263612 1.092938) (xy -4.302317 0.887163) (xy -4.366254 0.714612) (xy -4.456092 0.574427)
      (xy -4.572499 0.46575) (xy -4.716143 0.387721) (xy -4.88769 0.339481) (xy -5.034959 0.32234)
      (xy -5.211082 0.322792) (xy -5.359695 0.347966) (xy -5.488852 0.399625) (xy -5.545859 0.434047)
      (xy -5.6515 0.505137) (xy -5.6515 -0.430042) (xy -5.310052 -1.098729) (xy -5.230889 -1.253641)
      (xy -5.157907 -1.396233) (xy -5.093311 -1.522208) (xy -5.03931 -1.627271) (xy -4.998112 -1.707127)
      (xy -4.971924 -1.757479) (xy -4.962996 -1.774042) (xy -4.95249 -1.75741) (xy -4.925074 -1.707154)
      (xy -4.882919 -1.627443) (xy -4.828197 -1.52244) (xy -4.76308 -1.396312) (xy -4.689738 -1.253225)
      (xy -4.612707 -1.102) (xy -4.268026 -0.423333) (xy -3.513666 -0.423333) (xy -3.513666 -3.513667)
      (xy -4.275118 -3.513667) (xy -4.28625 -2.042583) (xy -4.497916 -2.418254) (xy -4.709583 -2.793925)
      (xy -4.96096 -2.788671) (xy -5.212338 -2.783417) (xy -5.41229 -2.434167) (xy -5.475976 -2.323646)
      (xy -5.533385 -2.225368) (xy -5.580891 -2.145435) (xy -5.614866 -2.089948) (xy -5.631681 -2.065008)
      (xy -5.631871 -2.064808) (xy -5.6372 -2.079735) (xy -5.641794 -2.134431) (xy -5.645583 -2.226338)
      (xy -5.648497 -2.352898) (xy -5.650466 -2.511552) (xy -5.651419 -2.699742) (xy -5.6515 -2.779183)
      (xy -5.6515 -3.513667) (xy -6.392333 -3.513667) (xy -6.392333 -0.319729) (xy -6.392324 0.110046)
      (xy -6.392277 0.499563) (xy -6.392168 0.850897) (xy -6.391969 1.166121) (xy -6.391653 1.447312)
      (xy -6.391223 1.681876) (xy -5.648615 1.681876) (xy -5.64839 1.533394) (xy -5.647546 1.407156)
      (xy -5.646116 1.308258) (xy -5.644135 1.241794) (xy -5.641793 1.213423) (xy -5.611418 1.150565)
      (xy -5.556959 1.083158) (xy -5.491901 1.02616) (xy -5.451466 1.002295) (xy -5.369524 0.983512)
      (xy -5.270986 0.987494) (xy -5.173993 1.01281) (xy -5.143493 1.026587) (xy -5.084701 1.070133)
      (xy -5.043155 1.134411) (xy -5.016315 1.225782) (xy -5.00164 1.350606) (xy -4.999618 1.386854)
      (xy -4.998401 1.519626) (xy -5.010708 1.618478) (xy -5.039192 1.690404) (xy -5.086504 1.742398)
      (xy -5.147995 1.778213) (xy -5.243982 1.807815) (xy -5.366545 1.81952) (xy -5.392823 1.819869)
      (xy -5.546895 1.820333) (xy -5.540989 2.100792) (xy -5.535083 2.38125) (xy -5.344583 2.391833)
      (xy -5.220162 2.402966) (xy -5.130792 2.42357) (xy -5.069446 2.458509) (xy -5.029095 2.512642)
      (xy -5.002708 2.590831) (xy -4.993632 2.63454) (xy -4.992204 2.742957) (xy -5.027161 2.835632)
      (xy -5.094007 2.907826) (xy -5.18825 2.954797) (xy -5.305393 2.971806) (xy -5.313388 2.971766)
      (xy -5.434953 2.957761) (xy -5.527728 2.917624) (xy -5.59668 2.850688) (xy -5.608271 2.833563)
      (xy -5.61769 2.813735) (xy -5.625206 2.786813) (xy -5.631086 2.748407) (xy -5.635599 2.694126)
      (xy -5.639012 2.619579) (xy -5.641594 2.520376) (xy -5.643613 2.392127) (xy -5.645336 2.230441)
      (xy -5.647032 2.030926) (xy -5.647078 2.025188) (xy -5.648189 1.847506) (xy -5.648615 1.681876)
      (xy -6.391223 1.681876) (xy -6.391196 1.696544) (xy -6.390569 1.915891) (xy -6.389746 2.10743)
      (xy -6.388702 2.273233) (xy -6.38741 2.415378) (xy -6.385842 2.535937) (xy -6.383974 2.636986)
      (xy -6.381777 2.720601) (xy -6.379227 2.788855) (xy -6.376296 2.843824) (xy -6.372958 2.887583)
      (xy -6.369186 2.922206) (xy -6.364955 2.949768) (xy -6.360237 2.972344) (xy -6.355006 2.992009)
      (xy -6.349902 3.008729) (xy -6.277538 3.174203) (xy -6.173033 3.313073) (xy -6.036023 3.425593)
      (xy -5.866143 3.512017) (xy -5.663027 3.572596) (xy -5.498487 3.600053) (xy -5.268859 3.612002)
      (xy -5.054079 3.591518)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy -1.788583 -0.423807) (xy -1.49225 -0.424033) (xy -0.941916 -1.939725) (xy -0.853898 -2.182274)
      (xy -0.77005 -2.413593) (xy -0.691502 -2.63055) (xy -0.619382 -2.830016) (xy -0.55482 -3.008859)
      (xy -0.498944 -3.163948) (xy -0.452884 -3.292153) (xy -0.417768 -3.390342) (xy -0.394727 -3.455384)
      (xy -0.384888 -3.484149) (xy -0.384648 -3.485015) (xy -0.388246 -3.495478) (xy -0.40807 -3.502951)
      (xy -0.449192 -3.507747) (xy -0.516681 -3.510176) (xy -0.615609 -3.510547) (xy -0.751045 -3.509172)
      (xy -0.773894 -3.508848) (xy -1.170075 -3.503083) (xy -1.241878 -3.275542) (xy -1.313682 -3.048)
      (xy -2.262695 -3.048) (xy -2.336264 -3.275542) (xy -2.409832 -3.503083) (xy -2.802999 -3.508842)
      (xy -2.926732 -3.50982) (xy -3.034488 -3.509079) (xy -3.119694 -3.506794) (xy -3.175779 -3.503143)
      (xy -3.19617 -3.498303) (xy -3.196171 -3.498259) (xy -3.189113 -3.476234) (xy -3.168674 -3.417511)
      (xy -3.135962 -3.325172) (xy -3.092085 -3.202296) (xy -3.038149 -3.051964) (xy -2.975262 -2.877254)
      (xy -2.904531 -2.681248) (xy -2.827064 -2.467025) (xy -2.801745 -2.397139) (xy -2.032 -2.397139)
      (xy -2.012198 -2.403262) (xy -1.958247 -2.408287) (xy -1.878325 -2.411703) (xy -1.780612 -2.412999)
      (xy -1.778 -2.413) (xy -1.679938 -2.411762) (xy -1.599454 -2.40839) (xy -1.544731 -2.403395)
      (xy -1.523951 -2.397287) (xy -1.523937 -2.397125) (xy -1.529899 -2.373134) (xy -1.546241 -2.31675)
      (xy -1.570579 -2.235638) (xy -1.600534 -2.137461) (xy -1.633723 -2.029883) (xy -1.667765 -1.920569)
      (xy -1.700279 -1.817184) (xy -1.728883 -1.72739) (xy -1.751196 -1.658854) (xy -1.764836 -1.619238)
      (xy -1.767693 -1.612631) (xy -1.77562 -1.629532) (xy -1.794177 -1.679346) (xy -1.820891 -1.754735)
      (xy -1.85329 -1.848357) (xy -1.888899 -1.952874) (xy -1.925247 -2.060944) (xy -1.959861 -2.165227)
      (xy -1.990267 -2.258383) (xy -2.013992 -2.333073) (xy -2.028563 -2.381956) (xy -2.032 -2.397139)
      (xy -2.801745 -2.397139) (xy -2.743968 -2.237666) (xy -2.65635 -1.996251) (xy -2.640546 -1.952749)
      (xy -2.084916 -0.423582) (xy -1.788583 -0.423807)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 3.302 -1.608667) (xy 4.106334 -1.608667) (xy 4.106334 -0.423333) (xy 4.868334 -0.423333)
      (xy 4.868334 -3.513667) (xy 4.106334 -3.513667) (xy 4.106334 -2.286) (xy 3.302 -2.286)
      (xy 3.302 -3.513667) (xy 2.54 -3.513667) (xy 2.54 -0.423333) (xy 3.302 -0.423333)
      (xy 3.302 -1.608667)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 6.244167 -3.513667) (xy 5.482167 -3.513667) (xy 5.482167 -0.423333) (xy 6.244167 -0.423333)
      (xy 6.244167 -3.513667)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 9.292167 -3.513667) (xy 8.622938 -3.513667) (xy 8.137344 -2.749699) (xy 7.65175 -1.985732)
      (xy 7.646194 -2.749699) (xy 7.640639 -3.513667) (xy 6.879167 -3.513667) (xy 6.879167 -0.423333)
      (xy 7.212542 -0.424353) (xy 7.545917 -0.425374) (xy 8.03275 -1.19354) (xy 8.519584 -1.961705)
      (xy 8.530688 -0.423333) (xy 9.292167 -0.423333) (xy 9.292167 -3.513667)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 12.022667 -1.100667) (xy 10.668 -1.100667) (xy 10.668 -1.608667) (xy 11.811 -1.608667)
      (xy 11.811 -2.286) (xy 10.668 -2.286) (xy 10.668 -2.836333) (xy 12.022667 -2.836333)
      (xy 12.022667 -3.513667) (xy 9.906 -3.513667) (xy 9.906 -0.423333) (xy 12.022667 -0.423333)
      (xy 12.022667 -1.100667)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy -1.481666 2.879238) (xy -2.185458 2.873661) (xy -2.88925 2.868083) (xy -2.901098 2.328333)
      (xy -1.693333 2.328333) (xy -1.693333 1.608667) (xy -2.899833 1.608667) (xy -2.899833 1.058904)
      (xy -2.196041 1.053327) (xy -1.49225 1.04775) (xy -1.486446 0.693208) (xy -1.480643 0.338667)
      (xy -3.683 0.338667) (xy -3.683 3.577167) (xy -1.481666 3.577167) (xy -1.481666 2.879238)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 1.291167 2.878667) (xy 0.486834 2.878667) (xy 0.486834 0.338667) (xy -0.3175 0.338667)
      (xy -0.3175 2.878667) (xy -1.100666 2.878667) (xy -1.100666 3.577167) (xy 1.291167 3.577167)
      (xy 1.291167 2.878667)) (layer B.Mask) (width 0.01))
    (fp_poly (pts (xy 3.746537 2.137833) (xy 3.833974 1.897417) (xy 3.918685 1.664503) (xy 3.999323 1.442799)
      (xy 4.074537 1.236015) (xy 4.142978 1.047859) (xy 4.203298 0.88204) (xy 4.254147 0.742268)
      (xy 4.294176 0.63225) (xy 4.322036 0.555697) (xy 4.333623 0.523875) (xy 4.401099 0.338667)
      (xy 1.420728 0.338667) (xy 1.473364 0.481542) (xy 1.489171 0.524702) (xy 1.518164 0.604138)
      (xy 1.559065 0.716337) (xy 1.610595 0.857789) (xy 1.670129 1.021286) (xy 2.497667 1.021286)
      (xy 2.507633 1.011811) (xy 2.540335 1.004716) (xy 2.599977 0.999741) (xy 2.690765 0.996622)
      (xy 2.816904 0.995096) (xy 2.921 0.994833) (xy 3.086069 0.995862) (xy 3.209767 0.998981)
      (xy 3.293007 1.00424) (xy 3.3367 1.011686) (xy 3.344334 1.017541) (xy 3.338199 1.043038)
      (xy 3.321052 1.10283) (xy 3.294776 1.190888) (xy 3.261253 1.301186) (xy 3.222366 1.427696)
      (xy 3.18 1.564392) (xy 3.136037 1.705246) (xy 3.092359 1.844232) (xy 3.050852 1.97532)
      (xy 3.013397 2.092486) (xy 2.981877 2.189701) (xy 2.958177 2.260938) (xy 2.944178 2.300171)
      (xy 2.942107 2.304886) (xy 2.932759 2.291535) (xy 2.912173 2.243588) (xy 2.882298 2.166673)
      (xy 2.845082 2.06642) (xy 2.802476 1.948459) (xy 2.756428 1.81842) (xy 2.708889 1.681932)
      (xy 2.661806 1.544625) (xy 2.617129 1.412128) (xy 2.576808 1.290072) (xy 2.542791 1.184086)
      (xy 2.517028 1.099799) (xy 2.501469 1.042842) (xy 2.497667 1.021286) (xy 1.670129 1.021286)
      (xy 1.671476 1.024984) (xy 1.740431 1.214409) (xy 1.816181 1.422556) (xy 1.897447 1.645912)
      (xy 1.982951 1.880966) (xy 2.060976 2.0955) (xy 2.595951 3.566583) (xy 3.226926 3.566583)
      (xy 3.746537 2.137833)) (layer B.Mask) (width 0.01))
  )

  (module Abracon:ABM11 (layer B.Cu) (tedit 57AC4CC7) (tstamp 57AD7194)
    (at 112.45 94.2)
    (path /57A213A5/57A4A651)
    (fp_text reference X1 (at 0 -1.8) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value 27.12MHz (at 0 1.7) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -1.2 -1.1) (end -1.2 1.1) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.2 -1.1) (end -1.2 -1.1) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.2 1.1) (end 1.2 -1.1) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.2 1.1) (end 1.2 1.1) (layer B.CrtYd) (width 0.05))
    (pad 3 smd rect (at -0.65 0.55) (size 0.75 0.65) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 2 smd rect (at 0.65 0.55) (size 0.75 0.65) (layers B.Cu B.Paste B.Mask)
      (net 47 "Net-(C8-Pad1)"))
    (pad 3 smd rect (at 0.65 -0.55) (size 0.75 0.65) (layers B.Cu B.Paste B.Mask)
      (net 1 GND))
    (pad 1 smd rect (at -0.65 -0.55) (size 0.75 0.65) (layers B.Cu B.Paste B.Mask)
      (net 59 "Net-(C6-Pad1)"))
    (model /Users/nipo/projects/hardware/kicad-library/Abracon.3dshapes/ABM8G.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.2460625 0.2460625 0.2460625))
      (rotate (xyz -90 0 0))
    )
  )

  (gr_text "5V\nVlcd\n3.3V" (at 131 87 90) (layer F.SilkS)
    (effects (font (size 0.9 0.8) (thickness 0.2)) (justify right))
  )
  (gr_text "BLE Ant." (at 134.62 98.298 90) (layer F.SilkS)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_line (start 138.684 106.426) (end 134.112 106.426) (layer F.SilkS) (width 0.2))
  (gr_line (start 138.684 101.981) (end 138.684 106.426) (layer F.SilkS) (width 0.2))
  (gr_line (start 136.017 101.981) (end 138.684 101.981) (layer F.SilkS) (width 0.2))
  (gr_line (start 136.017 99.441) (end 136.017 101.981) (layer F.SilkS) (width 0.2))
  (gr_line (start 138.684 99.441) (end 136.017 99.441) (layer F.SilkS) (width 0.2))
  (gr_line (start 138.684 97.155) (end 138.684 99.441) (layer F.SilkS) (width 0.2))
  (gr_line (start 136.017 97.155) (end 138.684 97.155) (layer F.SilkS) (width 0.2))
  (gr_line (start 136.017 94.742) (end 136.017 97.155) (layer F.SilkS) (width 0.2))
  (gr_line (start 138.684 94.742) (end 136.017 94.742) (layer F.SilkS) (width 0.2))
  (gr_line (start 138.684 92.583) (end 138.684 94.742) (layer F.SilkS) (width 0.2))
  (gr_line (start 134.62 92.583) (end 138.684 92.583) (layer F.SilkS) (width 0.2))
  (gr_text "6-34V\nCAN_H\nCAN_L\nGND" (at 123.063 122.682 90) (layer F.SilkS)
    (effects (font (size 3.7 2) (thickness 0.5)) (justify left))
  )
  (gr_text "P23 P24\nP21 P22\nVCC GND" (at 135.255 108.2 90) (layer F.SilkS) (tstamp 57AAAB83)
    (effects (font (size 1.7 0.8) (thickness 0.2)) (justify right))
  )
  (gr_text "GND +3.3V\nP3     P4\nP5     P6\nP7     P8\nP9    P10\nP11   +5V" (at 115.6 94.1 90) (layer F.SilkS)
    (effects (font (size 1.7 0.8) (thickness 0.2)) (justify right))
  )
  (gr_line (start 98.95 100) (end 102 100) (layer B.SilkS) (width 0.2))
  (dimension 44.964253 (width 0.3) (layer Cmts.User)
    (gr_text "45 mm" (at 143.656381 105.065012 89.93275644) (layer Cmts.User)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 137.56 127.54) (xy 144.979995 127.548708)))
    (feature2 (pts (xy 137.612771 82.575778) (xy 145.032766 82.584486)))
    (crossbar (pts (xy 142.332768 82.581317) (xy 142.279997 127.545539)))
    (arrow1a (pts (xy 142.279997 127.545539) (xy 141.694899 126.418348)))
    (arrow1b (pts (xy 142.279997 127.545539) (xy 142.867739 126.419724)))
    (arrow2a (pts (xy 142.332768 82.581317) (xy 141.745026 83.707132)))
    (arrow2b (pts (xy 142.332768 82.581317) (xy 142.917866 83.708508)))
  )
  (gr_text "Pinky v0.5\n2016 Nipo" (at 63.246 117.094 90) (layer F.SilkS)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text "2.000x32.000 mm rectangle antenna\n0.035x0.580 mm conductor, 0.490 mm spacing\n5 turns, 2 layers\n\nlength: 1108.800 mm\ninductance: 2.856 uH\nresistance: 939.476 mOhm\noriginal Q: 259.004\nrq: 3.006 ohm\nfinal Q: 35.001\n" (at 70.993 96.393) (layer F.Fab)
    (effects (font (size 0.6 0.4) (thickness 0.1)))
  )
  (gr_line (start 62 123.5) (end 62 91.5) (layer Cmts.User) (width 0.2))
  (gr_line (start 94 123.5) (end 62 123.5) (layer Cmts.User) (width 0.2))
  (gr_line (start 94 91.5) (end 94 123.5) (layer Cmts.User) (width 0.2))
  (gr_line (start 62 91.5) (end 94 91.5) (layer Cmts.User) (width 0.2))
  (dimension 32 (width 0.3) (layer Cmts.User)
    (gr_text "32.000 mm" (at 58.65 107.5 270) (layer Cmts.User) (tstamp 57A90020)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 62 123.5) (xy 57.3 123.5)))
    (feature2 (pts (xy 62 91.5) (xy 57.3 91.5)))
    (crossbar (pts (xy 60 91.5) (xy 60 123.5)))
    (arrow1a (pts (xy 60 123.5) (xy 59.413579 122.373496)))
    (arrow1b (pts (xy 60 123.5) (xy 60.586421 122.373496)))
    (arrow2a (pts (xy 60 91.5) (xy 59.413579 92.626504)))
    (arrow2b (pts (xy 60 91.5) (xy 60.586421 92.626504)))
  )
  (dimension 32 (width 0.3) (layer Cmts.User)
    (gr_text "32.000 mm" (at 78 88.65) (layer Cmts.User) (tstamp 57A902ED)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 94 91.494304) (xy 94 87.3)))
    (feature2 (pts (xy 62 91.494304) (xy 62 87.3)))
    (crossbar (pts (xy 62 90) (xy 94 90)))
    (arrow1a (pts (xy 94 90) (xy 92.873496 90.586421)))
    (arrow1b (pts (xy 94 90) (xy 92.873496 89.413579)))
    (arrow2a (pts (xy 62 90) (xy 63.126504 90.586421)))
    (arrow2b (pts (xy 62 90) (xy 63.126504 89.413579)))
  )
  (dimension 80 (width 0.3) (layer Cmts.User)
    (gr_text "80.000 mm" (at 100 134.45) (layer Cmts.User) (tstamp 57ABDBB3)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 60 130) (xy 60 135.8)))
    (feature2 (pts (xy 140 130) (xy 140 135.8)))
    (crossbar (pts (xy 140 133.1) (xy 60 133.1)))
    (arrow1a (pts (xy 60 133.1) (xy 61.126504 132.513579)))
    (arrow1b (pts (xy 60 133.1) (xy 61.126504 133.686421)))
    (arrow2a (pts (xy 140 133.1) (xy 138.873496 132.513579)))
    (arrow2b (pts (xy 140 133.1) (xy 138.873496 133.686421)))
  )
  (dimension 50 (width 0.3) (layer Cmts.User)
    (gr_text "50.000 mm" (at 55.65 105 270) (layer Cmts.User) (tstamp 57ABDBA8)
      (effects (font (size 1.5 1.5) (thickness 0.3)))
    )
    (feature1 (pts (xy 60 130) (xy 54.3 130)))
    (feature2 (pts (xy 60 80) (xy 54.3 80)))
    (crossbar (pts (xy 57 80) (xy 57 130)))
    (arrow1a (pts (xy 57 130) (xy 56.413579 128.873496)))
    (arrow1b (pts (xy 57 130) (xy 57.586421 128.873496)))
    (arrow2a (pts (xy 57 80) (xy 56.413579 81.126504)))
    (arrow2b (pts (xy 57 80) (xy 57.586421 81.126504)))
  )
  (gr_line (start 60 130) (end 60 80) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 140 130) (end 60 130) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 140 80) (end 140 130) (angle 90) (layer Edge.Cuts) (width 0.1))
  (gr_line (start 60 80) (end 140 80) (angle 90) (layer Edge.Cuts) (width 0.1))

  (segment (start 87.648 116.861534) (end 87.648 118.027) (width 0.1524) (layer B.Cu) (net 0))
  (segment (start 87.648 118.027) (end 87.579 118.096) (width 0.1524) (layer B.Cu) (net 0))
  (segment (start 114.05 94) (end 116.9 94) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 116.9 94) (end 118.5 92.4) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 118.5 92.4) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 113.1 93.65) (end 113.7 93.65) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 113.7 93.65) (end 114.05 94) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 114.05 94) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 111.8 94.75) (end 111.8 95.3) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 111.8 95.3) (end 111.55 95.55) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 111.55 95.55) (end 111.1 95.55) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 111.1 95.55) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 129.70043 111.844057) (end 129.244057 111.844057) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 129.244057 111.844057) (end 128.905 111.505) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 128.905 111.505) (end 128.905 111.379) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 94.4 87.2) (end 92.5 85.3) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 92.5 85.3) (end 92.5 81.25) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 92.5 81.25) (end 92.65 81.1) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 92.65 81.1) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 99.444 90.681) (end 98.619 90.681) (width 0.4) (layer B.Cu) (net 1))
  (segment (start 98.619 90.681) (end 98.6 90.7) (width 0.4) (layer B.Cu) (net 1))
  (via (at 98.6 90.7) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 102.7 89.95) (end 102.7 90.85) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 102.7 90.85) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 104.5 92.35) (end 106.150004 92.35) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 106.150004 92.35) (end 106.7 91.800004) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 96.15 89.4) (end 96.3 89.55) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 96.3 89.55) (end 96.3 90.9) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 96.3 90.9) (end 96.4 91) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 94.704999 87.504999) (end 94.4 87.2) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 96.15 88.95) (end 94.704999 87.504999) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 96.15 89.4) (end 96.15 88.95) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 94.4 87.2) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 133.6 85.900002) (end 133.6 87.4) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 133.6 87.5) (end 133.65 87.45) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 133.6 89.55) (end 133.6 87.5) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 133.6 87.4) (end 133.65 87.45) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 133.65 87.45) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 133.6 84.55) (end 133.6 85.900002) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 133.6 85.900002) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 127.935 90.38) (end 128.82 90.38) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 128.82 90.38) (end 128.85 90.35) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 128.85 90.35) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 133.65 96.45) (end 133.65 94.55) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 114.645001 98.654999) (end 114.95 98.35) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 114.5695 98.7305) (end 114.645001 98.654999) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 113.6825 98.7305) (end 114.5695 98.7305) (width 0.25) (layer B.Cu) (net 1))
  (via (at 114.95 98.35) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 113.6825 99.7305) (end 114.2805 99.7305) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 114.2805 99.7305) (end 114.65 100.1) (width 0.25) (layer B.Cu) (net 1))
  (via (at 114.65 100.1) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 122.7 98.75) (end 123.4 98.75) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 123.4 98.75) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 110.49 115.34902) (end 111.99902 115.34902) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 111.99902 115.34902) (end 112 115.35) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 112 115.35) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 102.24 111.28) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 100.29 110.08) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 102.19 109.58) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 103.44 108.33) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 103.388466 111.098) (end 102.422 111.098) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 103.388466 109.598) (end 102.208 109.598) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 102.422 111.098) (end 102.24 111.28) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 100.272 110.098) (end 100.29 110.08) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 98.988466 110.098) (end 100.272 110.098) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 103.388466 108.381534) (end 103.44 108.33) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 103.388466 109.098) (end 103.388466 108.381534) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 102.208 109.598) (end 102.19 109.58) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.839 120.904) (end 108.839 118.491) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.839 118.491) (end 108.966 118.364) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 129.018665 121.1) (end 129.45 121.1) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 128.29074 121.1) (end 129.018665 121.1) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 128.22174 121.031) (end 128.29074 121.1) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 129.45 121.1) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 123.4 128.7) (end 123.833601 129.133601) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 123.833601 129.133601) (end 128.676399 129.133601) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 128.676399 129.133601) (end 128.905001 128.904999) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 128.905001 128.904999) (end 130.81 127) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 118.5 128.8) (end 118.833601 129.133601) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 118.833601 129.133601) (end 122.966399 129.133601) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 123.4 128.7) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 122.966399 129.133601) (end 123.4 128.7) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 112.75 129.05) (end 113.054999 129.354999) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 113.054999 129.354999) (end 117.945001 129.354999) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 117.945001 129.354999) (end 118.5 128.8) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 118.5 128.8) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 108.458 129.032) (end 112.732 129.032) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 112.732 129.032) (end 112.75 129.05) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 112.75 129.05) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 135.85 125.9) (end 135.522899 126.227101) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 135.522899 126.227101) (end 135.522899 128.731957) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 135.522899 128.731957) (end 135.706149 128.915207) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 135.706149 128.915207) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 136.45 125.25) (end 136.45 125.3) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 136.45 125.3) (end 135.85 125.9) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 135.85 125.9) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 139.15 125.25) (end 136.45 125.25) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 133.65 98.2) (end 133.65 96.45) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 133.65 96.45) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 133.65 93.15) (end 133.65 94.55) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 133.65 94.55) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 127 115.304) (end 127.996002 115.304) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 128.05 115.250002) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 127.996002 115.304) (end 128.05 115.250002) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 107.17809 101.82809) (end 106.52191 101.82809) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 106.52191 101.82809) (end 106.5 101.85) (width 0.25) (layer B.Cu) (net 1))
  (via (at 106.5 101.85) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 107.15 101.8) (end 107.15 102.75) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.15 101.1) (end 107.15 101.8) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.15 101.8) (end 107.17809 101.82809) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 108.2825 101.7305) (end 108.8825 101.7305) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.17809 101.82809) (end 108.18491 101.82809) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 108.18491 101.82809) (end 108.2825 101.7305) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.15 101.1) (end 107.15 101.2) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.15 102.55) (end 107.15 102.75) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 107.15 101.3) (end 107.15 101.1) (width 0.25) (layer B.Cu) (net 1))
  (segment (start 106.7 92.231339) (end 106.7 91.800004) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 109.35 96.05) (end 110.25 96.95) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 108.3 94.95) (end 108.45 94.95) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.45 94.95) (end 109.35 95.85) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 109.35 95.85) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 108.2 94.15) (end 108.2 94.85) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 108.2 94.85) (end 108.3 94.95) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 108.3 94.95) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 107.6 93.55) (end 108.2 94.15) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 107.6 93.55) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 110.0325 97.1675) (end 110.25 96.95) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 110.0325 98.0805) (end 110.0325 97.1675) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 110.25 96.95) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 109.35 95.85) (end 109.35 96.05) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 106.7 91.800004) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 107.6 93.55) (end 106.7 92.65) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 106.7 92.65) (end 106.7 92.231339) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 109.093 115.773665) (end 109.093 115.69319) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 109.093 115.69319) (end 109.43717 115.34902) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 109.43717 115.34902) (end 110.49 115.34902) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.966 116.332) (end 108.966 115.900665) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.966 115.900665) (end 109.093 115.773665) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 108.966 118.364) (end 108.966 116.332) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 108.966 116.332) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 108.966 118.364) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 119.780073 109.796549) (end 119.780073 109.112073) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.780073 109.112073) (end 119.507 108.839) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.507 108.839) (end 119.38 108.839) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 120.13 108.077) (end 119.507 108.077) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.507 108.077) (end 119.38 108.204) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.38 108.204) (end 119.38 108.839) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.38 108.407665) (end 119.38 108.839) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.38 108.331) (end 119.38 108.407665) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 119.507 108.204) (end 119.38 108.331) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 119.38 108.839) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 118.440001 105.587999) (end 118.745 105.283) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 118.378 105.65) (end 118.440001 105.587999) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 114.7 105.65) (end 118.378 105.65) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 118.745 105.283) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 115.963 110.617) (end 115.316 110.617) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 115.316 110.617) (end 115.232141 110.700859) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 115.232141 110.700859) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 118.880073 114.596549) (end 118.880073 115.434927) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 118.880073 115.434927) (end 118.872 115.443) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 118.872 115.443) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 117.094 119.827) (end 117.094 118.364) (width 0.58) (layer B.Cu) (net 1))
  (via (at 117.094 118.364) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 104.7 106) (end 104.7 104.45296) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 104.7 104.45296) (end 104.715422 104.437538) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 117.094 114.427) (end 117.094 115.951) (width 0.58) (layer B.Cu) (net 1))
  (via (at 117.094 115.951) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 113.284 114.427) (end 113.284 112.776) (width 0.58) (layer B.Cu) (net 1))
  (via (at 113.284 112.776) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 114.554 114.427) (end 114.554 115.951) (width 0.58) (layer B.Cu) (net 1))
  (via (at 114.554 115.951) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 115.824 114.427) (end 115.824 112.776) (width 0.58) (layer B.Cu) (net 1))
  (via (at 115.824 112.776) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 117.906999 112.852001) (end 117.602 113.157) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 118.112451 112.646549) (end 117.906999 112.852001) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 118.880073 112.646549) (end 118.112451 112.646549) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 117.602 113.157) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 125.052541 118.288459) (end 126.048541 118.288459) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 126.048541 118.288459) (end 126.124541 118.364459) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 126.124541 118.364459) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 130.388927 113.101075) (end 130.693926 113.406074) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 129.70043 112.53958) (end 130.261925 113.101075) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 129.70043 111.844057) (end 129.70043 112.53958) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 130.693926 113.406074) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 130.261925 113.101075) (end 130.388927 113.101075) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 130.5 115.8) (end 130.5 113.6) (width 0.1524) (layer F.Cu) (net 1))
  (segment (start 130.5 113.6) (end 130.693926 113.406074) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 128.905 111.379) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (via (at 128.5 110.25) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 122.7 106.325) (end 123.545 106.325) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 123.545 106.325) (end 123.571 106.299) (width 0.1524) (layer B.Cu) (net 1))
  (via (at 123.571 106.299) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 102.75 129.05) (end 108.44 129.05) (width 0.1524) (layer F.Cu) (net 1))
  (via (at 108.458 129.032) (size 0.61) (drill 0.3) (layers F.Cu B.Cu) (net 1))
  (segment (start 113.75 105.6) (end 114.65 105.6) (width 0.1524) (layer B.Cu) (net 1))
  (segment (start 114.65 105.6) (end 114.7 105.65) (width 0.1524) (layer B.Cu) (net 1))