Add document type icons

Update Macos script to use doctype icons for icns builds

Fixes https://gitlab.com/kicad/code/kicad/-/issues/14754
This commit is contained in:
Seth Hillbrand 2024-02-09 15:55:06 -08:00
parent 96130725ad
commit cd548e392a
87 changed files with 13484 additions and 663 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -20,8 +20,14 @@ ICONS="bitmap2component
pcbcalculator
pcbnew"
DOCS="project
schematic
pcb
footprint
symbol
worksheet"
for pgm in $ICONS
for doc in $DOCS
do
output=""
@ -29,8 +35,8 @@ do
do
sz=${size%x*}
echo -e '\E[0;32m'"\nMaking the applications icons with size $size."
echo -e '\E[0;32m'"\nMaking the documents icons with size $size."
# MacOS wants icons with 10% clearance on each side
let "sub_sz = $sz * 8 / 10"
@ -49,9 +55,51 @@ do
# Use specialized icons for smaller sizes to keep pixel alignment
if [ $sz -le 32 ]
then
inkscape sources/light/icon_${pgm}_${sz}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
inkscape linux/icons/hicolor/scalable/mimetypes/application-x-kicad-${doc}-${sz}.svg -o macos_tmp/${doc}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
else
inkscape sources/light/icon_${pgm}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
inkscape linux/icons/hicolor/scalable/mimetypes/application-x-kicad-${doc}.svg -o macos_tmp/${doc}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
fi
convert macos_tmp/${doc}_small_${sz}px.png \( +clone -background black -shadow 80x${sigma}+${off}+${off} \) +swap -background transparent -layers merge +repage -size $size xc:transparent +swap -gravity center -composite macos_tmp/${doc}_${sz}px.png
output+="macos_tmp/${doc}_${sz}px.png "
done
png2icns macos_tmp/${doc}.icns ${output}
done
for pgm in $ICONS
do
output=""
for size in $SIZES
do
sz=${size%x*}
echo -e '\E[0;32m'"\nMaking the applications icons with size $size."
# MacOS wants icons with 10% clearance on each side
let "sub_sz = $sz * 8 / 10"
sigma=3
if [ $sz -eq 16 ]
then
sigma=2
elif [ $sz -ge 512 ]
then
sigma=5
fi
# Offset the drop shadow by one smaller than the kernel
let "off = $sigma - 1"
# Use specialized icons for smaller sizes to keep pixel alignment
if [ $sz -le 32 ]
then
inkscape bitmaps_png/sources/light/icon_${pgm}_${sz}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
else
inkscape bitmaps_png/sources/light/icon_${pgm}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap
fi
convert macos_tmp/${pgm}_small_${sz}px.png \( +clone -background black -shadow 80x${sigma}+${off}+${off} \) +swap -background transparent -layers merge +repage -size $size xc:transparent +swap -gravity center -composite macos_tmp/${pgm}_${sz}px.png
@ -59,18 +107,38 @@ do
output+="macos_tmp/${pgm}_${sz}px.png "
done
if [ ${pgm} == "pcbcalculator" ]
then
# mismatch in the pcbcalculator icon names
png2icns ../pcb_calculator/pcb_calculator.icns ${output}
elif [ ${pgm} == "bitmap2component" ]
then
#bitmap2component does not have associated documents
png2icns ../${pgm}/${pgm}.icns ${output}
else
png2icns ../${pgm}/${pgm}.icns ${output}
cp ../${pgm}/${pgm}.icns ../${pgm}/${pgm}_doc.icns
fi
case ${pgm} in
pcbcalculator)
# mismatch in the pcbcalculator icon names
png2icns ../pcb_calculator/pcb_calculator.icns ${output}
;;
bitmap2component)
# bitmap2component does not have associated documents
png2icns ../${pgm}/${pgm}.icns ${output}
;;
eeschema)
png2icns ../${pgm}/${pgm}.icns ${output}
cp macos_tmp/schematic.icns ../${pgm}/${pgm}_doc.icns
cp macos_tmp/symbol.icns ../${pgm}/libedit_doc.icns
;;
pcbnew)
png2icns ../${pgm}/${pgm}.icns ${output}
cp macos_tmp/pcb.icns ../${pgm}/${pgm}_doc.icns
cp macos_tmp/footprint.icns ../${pgm}/fpedit_doc.icns
;;
kicad)
png2icns ../${pgm}/${pgm}.icns ${output}
cp macos_tmp/project.icns ../${pgm}/${pgm}_doc.icns
;;
pagelayout_editor)
png2icns ../${pgm}/${pgm}.icns ${output}
cp macos_tmp/worksheet.icns ../${pgm}/${pgm}_doc.icns
;;
*)
png2icns ../${pgm}/${pgm}.icns ${output}
cp ../${pgm}/${pgm}.icns ../${pgm}/${pgm}_doc.icns
;;
esac
done
# rm -rf macos_tmp

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 847 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 B

After

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 708 B

After

Width:  |  Height:  |  Size: 939 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 337 B

After

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 794 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 694 B

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 476 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 829 B

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 687 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 954 B

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,340 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-footprint-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-footprint.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="128"
inkscape:cx="10.417969"
inkscape:cy="6.4023437"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g45763"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.86252489,0,0,0.88679512,79.626719,68.77628)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.0539586,0,0,1.7772034,23.757065,289.66288)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g45155"
transform="matrix(0.25,0,0,0.25,2,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 5.7052628,2.0038514 H 31.410526 L 46,17.003852 V 58.43243 c 0,2.079774 -1.682469,3.571422 -3.705264,3.571422 H 5.7052628 C 3.6824706,62.003852 2,60.27411 2,58.194331 V 5.8133752 C 2,3.7336029 3.682472,2.0064446 5.7052628,2.0038514 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 13.919072,11.209678 c 0,0 0,-1.209678 1.583879,-1.209678 h 19.534508"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.372454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 44,43.132884 2.4129712,53.65103 v 4.252016 c 0,1.73114 1.4006958,3.133064 3.1302063,3.133064 H 40.869795 c 1.729499,0 3.139739,-1.178158 3.130205,-2.909274 z M 1.6133544,57.985967 v 0.08302 c 0,0.507223 0.1100073,0.986149 0.3008981,1.421212 C 1.7225031,59.026236 1.6133544,58.519207 1.6133544,57.985967 Z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 14.674181,18 H 9.9999997"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.60718;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 20.891315,12.062832 h 14.502862 c 0.267822,0 0.483433,0.212658 0.483433,0.476825 v 6.675641 c 0,0.264167 -0.215611,0.476825 -0.483433,0.476825 H 20.891315 c -0.267822,0 -0.483423,-0.212658 -0.483423,-0.476825 v -6.675641 c 0,-0.264167 0.215601,-0.476825 0.483423,-0.476825 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 37.566037,16.03611 H 33.886792"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 37.993605,26 H 34.31436"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 14.510115,34 H 10.83087"
id="path1062"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 38.06118,34 H 34.381935"
id="path1064"
sodipodi:nodetypes="cc" />
<g
id="g2446"
transform="matrix(0.91356627,0,0,0.90109824,6.1125464,143.5096)"
style="stroke-width:2.05252" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 30,2.0663655 V 14 c 0,2.217881 1.781942,4.065728 3.924528,4.062514 h 11.773585 z"
sodipodi:nodetypes="csscc" />
<g
id="g45763"
transform="matrix(0.58669789,0,0,0.57869085,-4.8679246,-10.721443)"
style="stroke-width:1.71621">
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.14862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 41,81.5 H 33.5"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.14862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 41,88.5 H 33.5"
id="path1078"
sodipodi:nodetypes="cc" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.633946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 1.6892891,73.824296 67.9682389,-5e-6 V 112 H 1.6892891 V 100.54729 L 8.2971572,98.016831 V 87.6486 L 1.6892891,85.277007 Z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(1.8622697,0,0,1.8622697,22.383267,301.89429)"
style="stroke-width:1.71621">
<g
id="g1133"
style="stroke-width:1.71621" />
<g
id="g1143"
style="stroke-width:1.71621">
<g
id="g73"
style="stroke-width:1.71621">
<g
id="g45547-2-6"
transform="translate(1.093298,1.0733028)"
style="stroke-width:1.71621">
<path
id="path5854-9-3-1"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 24.291992,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-8"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 16.950664,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 H 9.6609312 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-7"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 9.5217337,-120.26778 10e-7,-3.74207 -3.639727,-2.41641 v -4.56432 H 2.2320005 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-9"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 2.4260043,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
</g>
<g
id="g45547-2-6-2"
transform="rotate(180,8.3677903,-113.71788)"
style="stroke-width:1.71621">
<path
id="path5854-9-3-1-0"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 24.291992,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-8-2"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 16.950664,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 H 9.6609312 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-7-3"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 9.5217337,-120.26778 10e-7,-3.74207 -3.639727,-2.41641 v -4.56432 H 2.2320005 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1-9-7"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 2.4260043,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.633946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 1.753915,73.824293 H 69.657528 V 111.93751 H 1.753915 l -0.064626,-11.39222 6.6078682,-2.528459 0,-10.368231 -6.5432424,-2.372452 z"
sodipodi:nodetypes="ccccccccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.62161;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="55.210262"
cy="95.163109"
r="7.3689547" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,366 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-footprint-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-footprint.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="64"
inkscape:cx="10"
inkscape:cy="13.742188"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g46886"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.7773242,0,0,1.8130035,163.29143,139.17921)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.9977977,0,0,1.960284,14.687913,310.07344)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g2446"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" />
<g
id="g46886"
transform="matrix(0.1875,0,0,0.1875,2.875,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 10.968422,2.6666652 H 63.936849 L 94.000003,33.333335 v 84.698415 c 0,4.252 -3.466901,7.30159 -7.635089,7.30159 H 10.968422 c -4.1681795,0 -7.6350887,-3.53638 -7.6350887,-7.78836 V 10.455025 c 0,-4.2519787 3.4669122,-7.7830583 7.6350887,-7.7883598 z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:6.00001;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 29.705536,21.11348 c 0,0 0,-2.446813 2.961131,-2.446813 h 36.520624"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 91.333333,85.743671 4.2301633,108.36037 v 9.14292 c 0,3.7224 2.9337296,6.7369 6.5561527,6.7369 h 73.990867 c 3.622394,0 6.576119,-2.53335 6.55615,-6.25569 z M 2.5553823,117.68159 v 0.17853 c 0,1.09066 0.2304082,2.12046 0.6302251,3.05597 -0.401615,-0.99765 -0.6302251,-2.08789 -0.6302251,-3.2345 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 29.654503,34.254226 h -7.89635"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 41.343621,22.898334 h 29.180496 c 0.538871,0 0.972692,0.430144 0.972692,0.964473 v 13.502807 c 0,0.534329 -0.433821,0.964473 -0.972692,0.964473 H 41.343621 c -0.538871,0 -0.972672,-0.430144 -0.972672,-0.964473 V 23.862807 c 0,-0.534329 0.433801,-0.964473 0.972672,-0.964473 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 74.894011,32.403164 H 67.491182"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 29.57117,45.333333 H 21.67482"
id="path1054"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 74.822007,45.333333 H 67.419178"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 29.650841,56 h -7.89635"
id="path1058"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 74.957098,56 H 67.554269"
id="path1060"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 74.726924,66.666667 H 67.324095"
id="path1068"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 74.736162,77.333333 H 67.333333"
id="path1072"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 29.983517,80.360684 H 22.580688"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 29.983517,87.211758 H 22.580688"
id="path1078"
sodipodi:nodetypes="cc" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M -6.1059829,72.041519 H 59.333333 V 112 H -6.1059829 V 99.381532 l 3.2183275,-2.103079 v -9.463848 l -3.2183275,-3.15462 z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(1.8381419,0,0,1.8226498,11.607985,296.06607)"
style="stroke-width:2.03485">
<g
id="g1133"
style="stroke-width:2.03485" />
<g
id="g1143"
style="stroke-width:2.03485">
<g
id="g73"
transform="translate(1.7209168,0.00630557)"
style="stroke-width:2.03485">
<g
id="g47282"
style="stroke-width:2.03485">
<path
id="path1127"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 22.655071,-118.42613 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-9"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 13.675787,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 H 9.9169305 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-7"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 5.3340304,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.61093742,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-3"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -3.6424249,-118.4268 1e-6,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479168 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<g
id="g2452-6"
transform="matrix(-1.8381419,0,0,-1.8226498,42.847563,-114.58726)"
style="stroke-width:2.03485">
<g
id="g1133-1"
style="stroke-width:2.03485" />
<g
id="g1143-2"
style="stroke-width:2.03485">
<g
id="g73-9"
transform="translate(1.7209168,0.00630557)"
style="stroke-width:2.03485">
<g
id="g47282-3"
style="stroke-width:2.03485">
<path
id="path1127-1"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 22.655071,-118.42613 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-9-9"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 13.675787,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 H 9.9169305 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-7-4"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 5.3340304,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.61093742,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-3-7"
style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -3.6424249,-118.4268 1e-6,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479168 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M -6.1059825,72.000003 H 59.333332 V 112 H -6.1059825 V 99.36843 l 3.2183274,-2.105266 V 87.789483 L -6.1059825,84.63158 Z"
sodipodi:nodetypes="ccccccccc" />
<ellipse
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="40.841"
cy="93.573448"
rx="3.9481754"
ry="3.9148996" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 61.999995,2.6662881 V 26.539574 c 0,4.436881 3.632462,8.133506 8.000094,8.127075 h 24.000288 z"
sodipodi:nodetypes="csscc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,371 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-footprint-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-footprint.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="64"
inkscape:cx="16.742187"
inkscape:cy="18.414062"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g45155"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.8034611,0,0,1.8327099,176.31041,139.99635)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.0549184,0,0,1.8622697,22.078088,298.16975)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g45155"
transform="matrix(0.25,0,0,0.25,2,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 21.747367,2 h 53.74737 L 106,33 v 85.61906 C 106,122.91726 102.48211,126 98.252629,126 H 21.747367 C 17.517893,126 14,122.4252 14,118.12699 V 9.8730158 C 14,5.5748197 17.517896,2.0053591 21.747367,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 38.000001,24.577791 c 0,0 0,-2.5 3.228676,-2.5 h 39.820344"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.372454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 104,87 -89.075459,21.7375 v 8.7875 c 0,3.57769 3.000157,6.475 6.704604,6.475 h 75.666252 c 3.704423,0 6.725023,-2.43486 6.704603,-6.0125 z m -90.788162,30.69637 v 0.17158 c 0,1.04826 0.235625,2.03804 0.644495,2.93717 -0.410709,-0.95886 -0.644495,-2.00672 -0.644495,-3.10875 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 39.75,34 h -7.5"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.60718;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 52.50922,22.788558 h 29.563525 c 0.545945,0 0.98546,0.439494 0.98546,0.985438 v 13.796326 c 0,0.545944 -0.439515,0.985438 -0.98546,0.985438 H 52.50922 c -0.545945,0 -0.98544,-0.439494 -0.98544,-0.985438 V 23.773996 c 0,-0.545944 0.439495,-0.985438 0.98544,-0.985438 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 86.5,31 H 79"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 39.75,42 h -7.5"
id="path1050"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,42 h -7.5"
id="path1052"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 39.75,50 h -7.5"
id="path1054"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,50 h -7.5"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 39.75,58 h -7.5"
id="path1058"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,58 h -7.5"
id="path1060"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 39.75,66 h -7.5"
id="path1062"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,66 h -7.5"
id="path1064"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,74 h -7.5"
id="path1068"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 85.75,82 h -7.5"
id="path1072"
sodipodi:nodetypes="cc" />
<g
id="g2446"
transform="matrix(1.8622697,0,0,1.8622697,22.383267,294.4452)" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 74,2.0000001 V 25.873218 c 0,4.436869 3.63242,8.133482 8,8.127052 h 24 z"
sodipodi:nodetypes="csscc" />
<g
id="g45763">
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 41,74.5 H 33.5"
id="path1070"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 41,81.5 H 33.5"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 41,88.5 H 33.5"
id="path1078"
sodipodi:nodetypes="cc" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.369388;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 0,72 68.000001,-5e-6 V 112 H 0 v -12 l 4,-4 5e-7,-8.21053 L 0,84 Z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(1.8622697,0,0,1.8622697,22.383267,301.89429)">
<g
id="g1133" />
<g
id="g1143">
<g
id="g73">
<g
id="g45547-2"
transform="rotate(180,5.7042143,-113.24583)">
<path
id="path5854-9"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -4.5437702,-120.2427 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -2.1334782,2.41641 0,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-0"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 3.9183373,-120.23431 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.14791729 v 4.56432 l -2.13347801,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-9"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 12.674263,-120.23431 1e-6,-3.74207 -2.141869,-2.41641 v -4.56432 H 8.3844776 v 4.56432 l -2.1334784,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 21.243777,-120.22591 10e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.147917 v 4.56432 l -2.133479,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
</g>
<g
id="g45547-2-6"
transform="translate(1.093298,1.0733028)">
<path
id="path5854-9-06"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -4.5437702,-120.2427 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -2.1334782,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-0-2"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 3.9183373,-120.23431 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.14791729 v 4.56432 l -2.13347801,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-9-6"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 12.674263,-120.23431 1e-6,-3.74207 -2.141869,-2.41641 v -4.56432 H 8.3844776 v 4.56432 l -2.1334784,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path5854-9-3-1"
style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 21.243777,-120.22591 10e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.147917 v 4.56432 l -2.133479,2.41641 v 3.74207 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.369388;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.064656,71.999995 H 68.000001 V 111.93751 H 0.064656 L 0,100 4.0000003,95.999995 4,88 0.064656,83.999995 Z"
sodipodi:nodetypes="ccccccccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.94488;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="52"
cy="94"
r="6" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,368 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-footprint-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../48x48/mimetypes/application-x-kicad-footprint.png"
inkscape:export-xdpi="110.3"
inkscape:export-ydpi="110.3"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="22.627417"
inkscape:cx="17.147339"
inkscape:cy="34.095805"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g46886"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6591968,0,0,3.7048331,359.32549,281.62706)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.5961071,0,0,3.6591962,48.303319,588.40366)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g2446"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" />
<g
id="g46886"
transform="matrix(0.1875,0,0,0.1875,2.875,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 45.719299,2.6666651 H 154.77194 L 216.66667,65.333334 V 238.4127 c 0,8.68884 -7.13775,14.92064 -15.7193,14.92064 H 45.719299 C 37.137754,253.33334 30,246.10683 30,237.418 V 18.58201 C 30,9.8931826 37.137761,2.6774986 45.719299,2.6666651 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 82.666667,50.333333 c 0,0 0,-5 6,-5 h 74.000003"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 214,172 31.924541,218.21667 V 236.9 c 0,7.60663 6.132499,13.76667 13.704604,13.76667 H 200.2954 c 7.57205,0 13.74634,-5.17682 13.7046,-12.78334 z M 28.423676,237.26434 v 0.36482 c 0,2.22873 0.481632,4.33311 1.317386,6.2448 -0.839514,-2.03868 -1.317386,-4.26655 -1.317386,-6.60962 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 83.333336,61.333333 h -16"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,63 H 160"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 83.333336,77 h -16"
id="path1050"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,77.333333 h -15"
id="path1052"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 83.333336,93.333333 h -16"
id="path1054"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,93.333333 h -15"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 83.333336,109.33333 h -16"
id="path1058"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,109.33333 h -15"
id="path1060"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 83.333336,125.33333 h -16"
id="path1062"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,125.33333 h -15"
id="path1064"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,141.33333 h -15"
id="path1068"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,147 H 69"
id="path1070"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 175.66667,157.33333 h -15"
id="path1072"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,161 H 69"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,175 H 69"
id="path1078"
sodipodi:nodetypes="cc" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.873563,144 H 128.66667 v 74 H 10.873563 v -23.36842 l 5.793104,-3.89474 v -17.52631 l -5.793104,-5.84211 z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)">
<g
id="g1133" />
<g
id="g1143">
<g
id="g73"
transform="translate(1.7209168,0.00630557)">
<g
id="g47282">
<path
id="path5854"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -2.9012593,-119.92066 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1123"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.1986569,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.43980298 v 4.56432 l -1.61093668,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1125"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.583845,-119.93777 10e-7,-4.29583 -1.6109385,-2.41641 v -4.56432 H 7.8249902 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
</g>
<g
id="g47282-5"
transform="rotate(180,5.1561426,-113.40114)">
<path
id="path5854-9"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -2.9012593,-119.92066 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1123-2"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.1986569,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.43980298 v 4.56432 l -1.61093668,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1125-2"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.583845,-119.93777 10e-7,-4.29583 -1.6109385,-2.41641 v -4.56432 H 7.8249902 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-8"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.873563,144 H 128.66667 v 74.66666 H 10.873563 v -23.57894 l 5.793104,-3.92983 v -17.6842 l -5.793104,-5.89475 z"
sodipodi:nodetypes="ccccccccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="106"
cy="187.99997"
r="8" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 152.66667,2.6662952 V 50.412571 c 0,8.873708 7.26488,16.266911 16.00009,16.25405 h 48.0003 z"
sodipodi:nodetypes="csscc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,377 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-footprint-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-footprint.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="64"
inkscape:cx="19.757812"
inkscape:cy="43.445312"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g73"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6853338,0,0,3.7245395,361.67781,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6634815,0,0,3.7245395,46.131017,594.3395)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g45155"
transform="matrix(0.25,0,0,0.25,2,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 45.831579,2 H 155.66316 L 218,65 v 174 c 0,8.73506 -7.18874,15 -15.83158,15 H 45.831579 C 37.188738,254 30,246.73506 30,238 V 18 C 30,9.2649563 37.188745,2.0108911 45.831579,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:8;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 84,49 c 0,0 0,-5 6,-5 h 74"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 216,172 31.96227,219 v 19 c 0,7.73556 6.198591,14 13.852303,14 H 202.1477 c 7.65366,0 13.89449,-5.26456 13.8523,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.486822,4.40655 1.331584,6.35064 -0.848562,-2.07323 -1.331584,-4.33886 -1.331584,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,60 H 68"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,60 H 160"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,76 H 68"
id="path1050"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,76 H 160"
id="path1052"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,92 H 68"
id="path1054"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,92 H 160"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,108 H 68"
id="path1058"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,108 H 160"
id="path1060"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,124 H 68"
id="path1062"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,124 H 160"
id="path1064"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 83,140 H 68"
id="path1066"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,140 H 160"
id="path1068"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,147 H 69"
id="path1070"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,156 H 160"
id="path1072"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,161 H 69"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,175 H 69"
id="path1078"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,172 H 160"
id="path1080"
sodipodi:nodetypes="cc" />
<g
id="g2446"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.738777;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 7.9999998,141.99999 H 128 V 218 H 7.9999998 v -24 l 5.9016392,-4.00001 V 172 l -5.9016392,-6.00001 z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)">
<g
id="g1133" />
<g
id="g1143">
<g
id="g73">
<g
id="g45547">
<path
id="path5854"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -3.4276815,-120.22656 7e-7,-3.75885 -1.0739583,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.0655673,2.41641 -7e-7,3.75885 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1123"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.0984163,-120.22656 7e-7,-3.75885 -1.0823486,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.06556727,2.41641 -7e-7,3.75885 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1125"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.607734,-120.22656 10e-7,-3.75885 -1.073959,-2.41641 v -4.56432 H 8.385859 v 4.56432 l -1.0739576,2.41641 -7e-7,3.75885 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 19.123552,-120.22656 1e-6,-3.75885 -1.072068,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.072066,2.41641 -10e-7,3.75885 z"
sodipodi:nodetypes="ccccccccc" />
</g>
<g
id="g45547-2"
transform="rotate(180,5.7042143,-113.24583)">
<path
id="path5854-9"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -3.4276815,-120.24334 7e-7,-3.74207 -1.0739583,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.0655673,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1123-1"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.0984163,-120.24334 7e-7,-3.74207 -1.0823486,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.06556727,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1125-2"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.607734,-120.24334 10e-7,-3.74207 -1.073959,-2.41641 v -4.56432 H 8.385859 v 4.56432 l -1.0739576,2.41641 -7e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127-7"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 19.123552,-120.24334 1e-6,-3.74207 -1.072068,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.072066,2.41641 -10e-7,3.74207 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.738777;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 7.9999998,141.99999 H 128 V 218 H 7.9999998 v -24 l 5.9016392,-4.00001 V 172 l -5.9016392,-6.00001 z"
sodipodi:nodetypes="ccccccccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="106"
cy="187.99997"
r="8" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 154,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,366 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 256 256"
version="1.1"
sodipodi:docname="application-x-kicad-footprint.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="256"
height="256"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="1"
inkscape:cx="17"
inkscape:cy="206.5"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2468"
id="linearGradient2470"
x1="-8.4666672"
y1="-105.83334"
x2="78.316666"
y2="-137.58334"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,46.766534,594.3395)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2468">
<stop
style="stop-color:#39b4ea;stop-opacity:1;"
offset="0"
id="stop2464" />
<stop
style="stop-color:#39b4ea;stop-opacity:0;"
offset="1"
id="stop2466" />
</linearGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#87badc;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 84,52 c 0,0 0,-5 6,-5 h 74"
id="path880"
sodipodi:nodetypes="csc" />
<path
id="path5956"
style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,63 H 69"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,63 H 160"
id="path1048"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,77 H 69"
id="path1050"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,77 H 160"
id="path1052"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,91 H 69"
id="path1054"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,91 H 160"
id="path1056"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,105 H 69"
id="path1058"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,105 H 160"
id="path1060"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,119 H 69"
id="path1062"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,119 H 160"
id="path1064"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,133 H 69"
id="path1066"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,133 H 160"
id="path1068"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,147 H 69"
id="path1070"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,147 H 160"
id="path1072"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,161 H 69"
id="path1074"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,161 H 160"
id="path1076"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 84,175 H 69"
id="path1078"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,175 H 160"
id="path1080"
sodipodi:nodetypes="cc" />
<g
id="g2446"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" />
<path
id="path1082"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 7.9999998,141.99999 H 130 V 218 H 7.9999998 V 194 L 14,189.99999 V 172 l -6.0000002,-6.00001 z"
sodipodi:nodetypes="ccccccccc" />
<g
id="g2452"
transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)">
<g
id="g1133" />
<g
id="g1143">
<g
id="g73">
<path
id="path5854"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -2.3537229,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1123"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.6270051,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1125"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.607734,-119.95807 10e-7,-4.29583 -1.6109378,-2.41641 v -4.56432 H 7.8488799 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1127"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1135"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m -2.3537229,-106.53359 7e-7,4.29583 -1.6109374,2.416407 v 4.56432 h -2.1479173 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1137"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 4.6270051,-106.53359 7e-7,4.29583 -1.6109374,2.416407 v 4.56432 H 0.86815113 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1139"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.607734,-106.53359 10e-7,4.29583 -1.6109378,2.416407 v 4.56432 H 7.8488799 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z"
sodipodi:nodetypes="ccccccccc" />
<path
id="path1141"
style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 18.588464,-106.53359 1e-6,4.29583 -1.610938,2.416407 v 4.56432 h -2.147918 v -4.56432 l -1.610936,-2.416407 -1e-6,-4.29583 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</g>
</g>
<path
id="path5852"
style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 7.9999998,141.99999 H 130 V 218 H 7.9999998 V 194 L 14,189.99999 V 172 l -6.0000002,-6.00001 z"
sodipodi:nodetypes="ccccccccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path2462"
cx="106"
cy="187.99997"
r="8" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,487 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-pcb-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-pcb.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2838"
inkscape:window-height="1591"
id="namedview30"
showgrid="true"
inkscape:zoom="85.78301"
inkscape:cx="8.0785228"
inkscape:cy="8.6788748"
inkscape:window-x="4201"
inkscape:window-y="535"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g15318"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.9021094,0,0,1.7735762,177.66094,137.6311)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-5">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-0"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-6">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-1"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g4648"
transform="matrix(0.25,0,0,0.25,2.75,0)">
<g
id="g15318"
transform="matrix(0.49974545,0,0,0.49974545,-4.4707267,-0.02886212)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.00409;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 15.138062,4.0597998 56.192451,0.027473 31.663367,30.4759462 v 81.904141 c 0,4.15952 -3.199747,7.61706 -7.660638,7.61898 l -80.217109,0.0346 c -4.460823,0.002 -8.1720072,-3.45946 -8.1711359,-7.61898 L 6.9669297,11.678785 C 6.9677802,7.5192756 10.677242,4.0576189 15.138067,4.0597998 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744906;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 98.991846,83.751295 -88.04482,21.567615 v 8.71881 c 0,3.54973 2.995352,6.42439 6.693865,6.42439 h 75.135154 c 3.698493,0 6.159764,-2.87506 6.215801,-6.42439 z"
sodipodi:nodetypes="ccssssc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:7.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="m 55.858353,20.197039 h -25.04942 l -7.707514,7.745879 v 27.110576"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21434;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 47.037345,23.395194 h 28.468159 c 0.525717,0 0.948948,0.425317 0.948948,0.95365 v 13.351283 c 0,0.528333 -0.423231,0.95365 -0.948948,0.95365 H 47.037345 c -0.525717,0 -0.948928,-0.425317 -0.948928,-0.95365 V 24.348844 c 0,-0.528333 0.423211,-0.95365 0.948928,-0.95365 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.00409;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 70.977595,4.0592299 V 27.070202 c 0,4.369591 4.635834,9.097246 9.004719,9.004295 h 23.012126 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:8.00409;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 10.947027,44.080165 c -4.0020379,0 -12.0061128,8.004075 -12.0061128,16.00815 l 0.0865486,51.629125 c 2.94e-5,0.31312 0.23474348,0.56695 0.52428669,0.56698 l 15.0566755,0.13046 c 0.289543,-3e-5 0.524257,-0.25387 0.524285,-0.56699 v -3.32686 c 0,-0.59255 0.155475,-0.99425 0.404479,-1.26354 0.249003,-0.26928 0.620446,-0.43742 1.168379,-0.43742 h 5.813729 c 0.673684,0 1.014478,0.20715 1.236986,0.49278 0.22251,0.28566 0.335872,0.71444 0.335872,1.20818 l -1.139016,7.59581 36.018337,0 15.369666,-0.19296 c 0,0 -0.0056,-2.73866 -0.0109,-4.53824 0.0061,-3.88258 -0.04561,-4.61879 6.374731,-4.53825 4.196422,0 6.288275,-3.0414 6.280748,-5.76619 l -0.08107,-29.347332 c -0.0027,-0.976477 -0.309821,-1.845557 -0.874493,-2.456223 -0.564672,-0.610668 -1.368287,-0.945724 -2.271223,-0.945724 H 56.526763 c -2.127097,0 -4.295158,-0.847925 -5.907436,-2.339946 L 30.957214,48.082203 c -1.129799,-1.045532 -6.294962,-4.002038 -8.004075,-4.002038 z"
id="path4601"
sodipodi:nodetypes="ccccccssccsscccccsssssccsc" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4219;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="8.4200153"
height="8.0504856"
x="9.2556419"
y="62.258392" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:7.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="M 86.985738,52.08424 H 62.973513 L 30.808933,20.197039"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="m 26.166467,49.225944 v 0.283928 21.517526 L 11.620731,80.264609 H 3.7634158 1.3603733 l 0.1032223,7.837968 h 2.4030389 7.8880365 c 1.048572,0 2.866065,-0.787104 3.145717,-1.002553 l 16.056826,-11.003559 3.951722,-4.314904 0.05032,-15.695283 -5.980891,-4.546927 c -0.682685,-0.558549 -1.819377,-2.198936 -2.811893,-2.313407 z"
sodipodi:nodetypes="ccccccccccccccc" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:5.99999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 34.908936,82.865638 10.947027,104.11073 9.889852,111.3903 h 4.718573 v -2.04752 c 0,-1.24975 0.790023,-2.0051 2.097143,-2.0051 h 2.621431 4.64512 c 1.572858,0 2.097144,0.97017 2.097144,2.0051 v 6.0923 c 0,1.82413 0.71356,3.00766 2.62143,3.00766 h 7.345425 l 22.050101,-0.0331 h 11.669303 c 1.572858,0 2.62143,-1.50383 2.62143,-3.00767 v -4.05412 c 0,-5.01276 4.200769,-4.92865 4.200769,-4.92865 l 5.210622,-0.0481 c 1.57278,-0.0145 3.251412,-1.78597 3.251412,-3.96424 V 82.345659 Z"
sodipodi:nodetypes="ccccssccsssccssscsscc" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-4.6543227,-3.2899536,0,85.523486,194.93127)"
d="m 17,15.369285 h 2.51316 l 0,2.432884 -2.51316,0 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057-3"
clip-path="url(#clipPath1720-5)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-4.6543227,-3.2899536,0,101.53965,194.93127)"
d="m 17,15.369285 h 2.51316 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<ellipse
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cx="19.975735"
cy="96.230072"
rx="2.0971441"
ry="2.0051064" />
<ellipse
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="28.141146"
cy="100.23118"
rx="2.0971441"
ry="2.0051064" />
<g
id="g57782"
transform="matrix(1.413544,0,0,1.4099525,-20.572483,-42.805348)"
style="stroke-width:0.708342">
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.35004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="11.534293"
height="11.028087"
x="39.24987"
y="87.286598" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:1.4167;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 38.201297,86.284029 H 51.832735 V 99.317247 H 38.201297 Z"
sodipodi:nodetypes="ccccc" />
</g>
<path
id="path3057-0"
clip-path="url(#clipPath1720-6)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-4.6543227,-3.2899536,0,117.53979,194.93127)"
d="m 17,15.369285 h 2.51316 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-pcb-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-pcb.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1514"
inkscape:window-height="1247"
id="namedview30"
showgrid="true"
inkscape:zoom="22.627417"
inkscape:cx="12.396466"
inkscape:cy="18.981398"
inkscape:window-x="4368"
inkscape:window-y="301"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g4226"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="-0.0074650599"
refY="0.007904782"
orient="148.03297424"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always"
markerWidth="3"
markerHeight="3"
viewBox="0 0 2.2666667 2.2666667"
preserveAspectRatio="none">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always"
viewBox="0 0 2.2666667 2.2666667"
markerWidth="3"
markerHeight="3"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always"
viewBox="0 0 2.2666667 2.2666667"
markerWidth="3"
markerHeight="3"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.857145,0,0,1.8175254,186.78016,139.19436)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-6">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-7"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-3">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-5"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g4648"
transform="matrix(0.1875,0,0,0.1875,2.0625,0)">
<g
id="g4226"
transform="translate(-9.769214)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 27.117592,2.6666651 h 55.845895 l 30.472393,32.0000019 -0.022,83.346863 c -0.001,4.26259 -3.62261,7.3198 -7.97799,7.3198 l -80.000009,0 c -4.355374,0 -8.496393,-3.52448 -8.476609,-7.78703 L 17.457896,10.114569 C 17.477679,5.85203 21.08051,2.6666707 25.435881,2.6666667 Z"
sodipodi:nodetypes="sccsssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.371429;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 110.76921,74.666667 -91.520252,32.365293 -0.164216,9.46212 c -0.06693,3.85654 3.250501,6.99458 7.061292,6.99247 l 78.002596,-0.0431 c 3.81077,-0.002 6.91607,-2.62502 6.89708,-6.48211 z M 17.487088,116.69057 v 0.18499 c 0,1.13013 0.242389,2.19721 0.662998,3.16658 -0.4225,-1.03376 -0.662998,-2.16346 -0.662998,-3.35157 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="M 65.435881,18.666667 H 44.102547 l -10.666666,10.666667 0,29.333333"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 58.041478,21.728599 h 29.48217 c 0.544443,0 0.982748,0.438285 0.982748,0.982727 v 13.75836 c 0,0.544441 -0.438305,0.982726 -0.982748,0.982726 h -29.48217 c -0.544442,0 -0.982728,-0.438285 -0.982728,-0.982726 v -13.75836 c 0,-0.544442 0.438286,-0.982727 0.982728,-0.982727 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 81.501921,3.1262168 -0.04402,18.6023822 c -0.01031,4.355475 8.957076,13.045644 13.311313,12.938068 l 18.600626,-0.45955 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#499149;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 14.769214,56 c -5.0023096,0.05354 -7.8768471,2.593125 -8,8 v 49.98726 c 3e-5,0.27537 0.8511788,0.67938 1.1470608,0.67941 l 14.4495302,0.007 c 0.295882,-3e-5 0.535736,-0.22325 0.535766,-0.49862 v -2.70857 c 0,-0.52112 0.158531,-0.87471 0.412986,-1.11152 0.254455,-0.23681 0.634379,-0.38436 1.194311,-0.38436 h 3.512163 4.209018 c 1.4296,0 1.339415,0.047 1.339415,1.37662 v 5.40016 c 0,0.9694 0.18896,1.82799 0.719935,2.47754 0.530974,0.64954 1.404055,0.99993 2.49466,1.01283 h 36.196668 c 0.982236,0 1.816542,-0.46927 2.366302,-1.1271 0.549765,-0.65784 0.848294,-1.50453 0.848294,-2.36327 v -4.40291 c -0.09278,-3.01114 1.931933,-3.01114 3.067888,-3.01114 0,0 2.228197,0 3.287119,0 3.469729,0 4.218884,-2.89567 4.218884,-5.33333 V 77.333333 C 86.769214,74.666667 84.102547,72 81.435881,72 H 58.130613 C 55.957,72.01456 53.632976,70.712636 51.985397,69.400522 L 37.134633,57.573783 C 35.980098,56.65432 34.589454,56 32.842925,56 Z"
id="path4601"
sodipodi:nodetypes="ccccccssscssssccssccsscccccsc" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.05272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="5.3333325"
height="5.3333359"
x="14.769214"
y="64" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="m 76.102547,45.333333 h -16 L 49.435881,34.666667 h -16"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="m 100.14755,61.333332 -45.378336,1e-6"
id="path3399"
sodipodi:nodetypes="cc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.498624;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="m 30.769214,58.666667 v 0.282426 10.38424 L 17.435881,80 H 12.37034 l 0.06554,5.333333 h 5.872388 c 0.341562,3.5e-5 0.672852,-0.116808 0.938816,-0.331116 L 35.545491,72.289756 c 0.352287,-0.284021 0.557086,-0.712234 0.557056,-1.164756 l 0.113899,-9.295522 -0.816107,-0.698268 c -0.64927,-0.555592 -1.964458,-2.464543 -4.631125,-2.464543 z"
sodipodi:nodetypes="ccccccccccccc" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:2.99174;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 36.102547,80 -16,13.333333 V 112 h 2.666667 c 0,-2.66667 0,-2.66667 2.666667,-2.66667 h 2.666666 5.333334 c 1.578395,0 2.622518,1.63817 2.666666,2.66667 l 0.107684,2.50863 c 0.12083,2.81489 -0.107684,2.99174 2.630659,2.99174 h 7.013204 19.483091 6.094358 c 1.578395,0 2.630659,-1.49587 2.630659,-2.99174 v -3.69457 c 0,-1.99449 1.449772,-3.88416 3.55139,-3.98899 l 3.332165,-0.16621 c 1.576211,-0.0786 3.156792,-1.32362 3.156792,-3.49037 L 84.102547,80 Z"
sodipodi:nodetypes="cccccccsssccsssssscc" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-2.5461657,-2.4931203,0,86.362279,159.07922)"
d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057-5"
clip-path="url(#clipPath1720-6)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-2.5461657,-2.4931203,0,97.215582,159.07922)"
d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z"
sodipodi:nodetypes="sccssss" />
<ellipse
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:0.94228;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cy="98.692413"
cx="28.066221"
rx="2.7029927"
ry="2.6409187" />
<g
id="g4326"
transform="translate(-5.1905111,-3.4909592)">
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65427;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="10.969729"
height="10.969729"
x="46.563934"
y="88.755074" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:0.997248;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 45.566682,87.757835 H 58.530908 V 100.72206 H 45.566682 Z"
sodipodi:nodetypes="ccccc" />
</g>
<ellipse
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:0.94228;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="33.435883"
cy="104"
rx="2.6666658"
ry="2.6666653" />
<path
id="path3057-6"
clip-path="url(#clipPath1720-3)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-2.5461657,-2.4931203,0,107.69561,159.07922)"
d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z"
sodipodi:nodetypes="sccssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,474 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-pcb-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-pcb.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2838"
inkscape:window-height="1591"
id="namedview30"
showgrid="true"
inkscape:zoom="30.328874"
inkscape:cx="10.254255"
inkscape:cy="18.777486"
inkscape:window-x="4201"
inkscape:window-y="537"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g15318"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.8042263,0,0,3.6653908,372.3894,280.10711)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g4648"
transform="matrix(0.25,0,0,0.25,2.75,0)">
<g
id="g15318"
transform="matrix(0.49974545,0,0,0.49974545,-4.4707267,-0.02886212)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.00408;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 47.343395,4.0597957 159.72852,4.1165722 223.05501,67.1002 v 169.2685 c 0,8.59634 -6.39926,15.74193 -15.32093,15.74591 l -160.434542,0.0715 c -8.921666,0.004 -16.344062,-7.14956 -16.342321,-15.7459 l 0.04386,-216.634508 c 0.0017,-8.596323 7.420654,-15.7504136 16.342321,-15.7459063 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 219.20766,168.31306 -184.142727,47 v 19 c 0,7.73556 6.264682,14 14,14 H 206.20766 c 7.73527,0 12.88281,-6.26533 13,-14 z"
sodipodi:nodetypes="ccssssc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="M 131.00815,44.080165 H 78.981663 l -16.00815,16.00815 0,56.028525"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.00408;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 159.02241,4.0597911 V 50.059791 c 0,8.735013 9.26681,18.185813 18,18 h 46 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:8.00408;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 16.027764,107.77477 c -2.833324,-0.0168 -5.158552,1.45621 -6.681641,3.5332 -1.523088,2.077 -2.3245893,4.76681 -2.318359,7.4668 l 0.2537938,109.98431 c 5.5e-5,0.55226 0.447738,0.99994 1,1 L 37,229.98916 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 v -5.86755 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 0.474938,-0.47493 1.18341,-0.77148 2.228516,-0.77148 h 11.088847 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 0.424404,0.5038 0.640625,1.26002 0.640625,2.13086 v 11.88923 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 0.991057,1.30267 2.62439,2.0293 4.660156,2.0293 h 19.816347 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 0.991054,-1.30267 1.339844,-3.02655 1.339844,-4.9707 -0.147918,-14.60546 -1.719786,-15.25163 12.106918,-15.40645 15.178128,-0.16995 11.915798,1.60998 11.985848,16.57357 0,4.00204 4.00204,8.00408 8.00408,8.00408 h 23.92543 c 4.79892,-0.0291 8.01543,-3.71808 8.00407,-8.00408 0,0 -0.0106,-4.83018 -0.0208,-8.00407 0.0116,-6.84768 -0.087,-8.14613 12.15888,-8.00408 8.00407,0 11.99126,-5.36412 11.97962,-10.16981 l -0.15463,-63.86156 c -0.004,-1.72221 -0.59094,-3.255 -1.66797,-4.33203 -1.07703,-1.07703 -2.60981,-1.66797 -4.33203,-1.66797 h -68.04924 c -4.05713,0 -8.192394,-1.49548 -11.267582,-4.12695 l -26.81791,-24.85431 c -2.154926,-1.844 -4.753852,-3.13297 -8.013672,-3.15234 z"
id="path4601"
sodipodi:nodetypes="sssccccssccssssssscsccccccsssssccss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4219;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="16.059965"
height="16.059965"
x="26.790342"
y="128.07114" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="m 151.01834,76.096465 h -32.0163 l -32.016302,-32.0163"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 167.02649,100.10869 H 94.98981"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke"
d="M 182.98981,124.12091 H 94.989813"
id="path3517"
sodipodi:nodetypes="cc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="m 59.045298,113.65503 v 0.56641 31.34301 l -28,22.43555 H 16.058594 11.475138 l -0.05859,8 H 16 31.045298 c 2,0 5.466605,-1.5702 6,-2 L 65.92811,152.02344 c 0.70652,-0.56961 1.117248,-1.4284 1.117188,-2.33594 v -29.26214 l -2.636719,-2.1553 c -1.302123,-1.11425 -3.4702,-4.38667 -5.363281,-4.61503 z"
sodipodi:nodetypes="ccccccccccccccc" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 58.971476,168.14333 28,190 v 36.08461 h 9 V 222 c 0,-2.49314 1.506856,-4 4,-4 h 5 8.859896 c 2.999999,0 4,1.93541 4,4 v 12.15357 c 0,3.63896 1.361013,6 5,6 h 14.010339 c 3.638987,0 5.075386,-2.36181 5,-6 -0.01125,-17.11775 0.06859,-18.019 16.13276,-18.22147 15.791715,-0.19903 15.989735,-0.18484 15.924625,18.15549 0,3.63897 2,6 5,6 h 22.25751 c 3,0 5,-3 5,-6 V 226 c 0,-10 8.01236,-9.83222 8.01236,-9.83222 l 9.93851,-0.0958 c 2.99985,-0.0289 6.2016,-3.56284 6.2016,-7.90829 v -40.02037 z"
sodipodi:nodetypes="ccccssccsssscscsssscsscc" />
<path
id="rect880"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5,0,213.45563,316.78232)"
d="m 17,14.815357 h 1.154165 V 18 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1.184643 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.58311;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.5021335,-3.3327253,0,126.2382,324.06737)"
d="m 17,15.369285 h 1.154165 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="22"
height="22"
x="84.000008"
y="177.99998" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 82,176 h 26 v 26 H 82 Z"
sodipodi:nodetypes="ccccc" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cx="47.237347"
cy="195.84146"
r="3.9999998" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="62.811691"
cy="203.82329"
r="3.9999998" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,478 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-pcb-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-pcb.png"
inkscape:export-xdpi="24"
inkscape:export-ydpi="24"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1514"
inkscape:window-height="1247"
id="namedview30"
showgrid="true"
inkscape:zoom="16"
inkscape:cx="24.09375"
inkscape:cy="32.78125"
inkscape:window-x="4368"
inkscape:window-y="301"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g4648"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g4648"
transform="matrix(0.1875,0,0,0.1875,2.0625,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 45,2.6666667 H 157 L 221,65.773117 V 238.95746 c 0,8.73506 -7.26521,14.99548 -16,15 l -159,0.0823 c -8.734785,0.005 -17,-7.2224 -17,-15.95746 V 17.92918 C 29,9.1941358 36.265369,2.7186585 45,2.6666667 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218.33333,170.66667 32,219 31.666667,237.97646 C 31.530808,245.71082 38.264683,252.00422 46,252 l 158.33333,-0.0865 c 7.73527,-0.004 14.03854,-5.26454 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="M 130.33333,50.666667 H 77 L 61,66 v 52"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 156.08828,2.6666667 156,49 c -0.0166,8.734997 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#499149;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 21,113 c -2.833371,0 -5.153996,1.45426 -6.677083,3.53125 C 12.79983,118.60825 12,121.30001 12,124 v 104 c 5.5e-5,0.55226 0.447739,0.99994 1,1 h 24 c 0.552261,-6e-5 0.999945,-0.44774 1,-1 v -3.76083 c 0,-1.0451 0.295896,-1.75423 0.770833,-2.22917 0.474938,-0.47493 1.184062,-0.77083 2.229167,-0.77083 h 5 23 c 2.668329,0 2.5,0.0942 2.5,2.76083 v 12 c 0,1.94415 0.352693,3.66608 1.34375,4.96875 C 73.834806,242.27142 75.464236,243 77.5,243 h 15 c 2.035763,0 3.665193,-0.72858 4.65625,-2.03125 C 98.1473,239.66608 98.5,237.94415 98.5,236 v -14 c -0.166667,-3.33333 -0.166667,-3.33333 5.16667,-3.33333 5.33333,0 5.33333,0 5.25,3.33333 v 14 c 0,2.00269 0.54722,3.74796 1.60417,5.01042 1.05696,1.26246 2.63349,1.98958 4.39583,1.98958 h 15 c 1.83333,0 3.39055,-0.94112 4.41667,-2.26042 1.02613,-1.3193 1.58333,-3.01736 1.58333,-4.73958 v -10 c 0,-1.74999 0.67475,-3.54929 1.77083,-4.86458 1.09607,-1.31528 2.56564,-2.03305 4.22917,-2.13542 l 5.41666,-0.33333 c 3.58312,-0.2205 7,-3.19431 7,-8 v -61 c 0,-1.72222 -0.58963,-3.25631 -1.66666,-4.33334 -1.07703,-1.07703 -2.61116,-1.67905 -4.33334,-1.66666 L 102,144 c -4.057017,0.0292 -8.195648,-1.49353 -11.270833,-4.125 L 63.010417,116.15625 C 60.855493,114.31225 58.259874,113 55,113 Z"
id="path4601"
sodipodi:nodetypes="sssccccssscsssssssscscsssssssssssssscccss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="14"
height="14"
x="21.000008"
y="122.00002" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="M 186.33333,77.333333 H 117 L 90.333333,50.666667"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 186.33333,98.666667 H 85"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke"
d="M 186.33333,125.33333 H 85"
id="path3517"
sodipodi:nodetypes="cc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="m 58,116.36093 v 0.56641 29.63711 L 28.319682,170.6839 h -10.827545 -3 L 14.554309,176 h 3 H 30 c 0.685009,7e-5 1.349417,-0.23426 1.882812,-0.66406 l 31,-25 C 63.589332,149.76633 64.00006,148.90754 64,148 v -27.76016 l -1.636719,-1.40039 C 61.061158,117.7252 59.638576,116.85078 58,116.36093 Z"
sodipodi:nodetypes="ccccccccccccccc" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 60,166 -33.666667,24.42217 v 37.64106 L 36.999993,228 37,222.70711 c 3e-6,-2.49314 1.506856,-4 4,-4 h 5 24.166666 c 2.999999,0 4.000007,1.93541 4.000006,4 L 74.166666,236 c -2e-6,3.63896 1.361013,6 5,6 h 11.666667 c 3.638987,0 5,-2.36103 5,-6 v -14 c 0,-2.0006 -0.166666,-6 7.833337,-6 8,0 8,4 8,6 v 14 c 0,3.63897 2,6 5,6 H 128.25 c 3,0 5,-3 5,-6 v -10 c 0,-3.99999 2.75553,-7.78977 6.75,-8 l 6.33333,-0.33333 c 2.99585,-0.15768 6,-2.65455 6,-7 v -45 z"
sodipodi:nodetypes="ccccssccsssssszssssssssscc" />
<path
id="rect880"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-3.3211424,0,177.66599,318.70214)"
d="m 16.99335,15.054856 h 1.552484 l -5e-5,3.211811 H 16.99335 c -0.554,0 -1,-0.446 -1,-1 v -1.211811 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)"
d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z"
sodipodi:nodetypes="sccssss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="22"
height="22"
x="84.000008"
y="177.99998" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 82,176 h 26 v 26 H 82 Z"
sodipodi:nodetypes="ccccc" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cx="36"
cy="208"
r="3.9999998" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="63.999992"
cy="208"
r="3.9999998" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 269.66667,266.66667 h 34 c 2.74012,0 4.78896,1.03464 6.70833,2.67708 l 27.71875,23.71875 c 3.4601,2.96084 8.02877,4.63686 12.57292,4.60417 L 397,297.33334 c 1.27775,-0.009 2.2437,0.41036 2.91667,1.08333 0.67297,0.67297 1.08333,1.63889 1.08333,2.91667 v 61 c 0,3.88519 -2.59238,5.89056 -5,6 l -7.33333,0.33333 c -2.33092,0.10595 -4.3669,1.17988 -5.77083,2.86458 -1.40392,1.6847 -2.22917,3.88542 -2.22917,6.13542 v 10 c 0,1.27778 -0.4428,2.57972 -1.16667,3.51042 -0.72388,0.9307 -1.66666,1.48958 -2.83333,1.48958 h -15 c -1.23766,0 -2.16113,-0.45346 -2.85417,-1.28125 -0.69305,-0.8278 -1.14583,-2.08247 -1.14583,-3.71875 v -14 c 0,-1.16667 -0.28327,-2.40034 -1.10417,-3.38542 -0.8209,-0.98509 -2.17361,-1.61458 -3.89583,-1.61458 -1.72215,0 -3.07488,0.62954 -3.89583,1.61458 -0.82095,0.98503 -1.10417,2.2185 -1.10417,3.38542 v 14 c 0,1.69482 -0.32789,2.97283 -0.92708,3.76042 -0.59919,0.78758 -1.4697,1.23958 -3.07292,1.23958 h -15 c -1.60322,0 -2.47373,-0.45199 -3.07292,-1.23958 -0.59919,-0.78759 -0.92708,-2.06561 -0.92708,-3.76042 v -14 c 0,-1.19375 -0.27857,-2.43662 -1.10417,-3.41667 -0.8256,-0.98005 -2.18079,-1.58333 -3.89583,-1.58333 -1.69259,0 -3.03396,0.52519 -3.875,1.48958 -0.84104,0.96439 -1.125,2.23002 -1.125,3.51042 v 5 h -15 v -5 c 0,-2.73391 -2.26609,-5 -5,-5 h -5 c -1.44804,0 -2.74405,0.4524 -3.64583,1.35417 -0.90178,0.90178 -1.35417,2.19779 -1.35417,3.64583 v 5 h -22 v -103 c 0,-2.30001 0.70025,-4.60825 1.92708,-6.28125 1.22684,-1.67301 2.9062,-2.71875 5.07292,-2.71875 z"
id="path2382" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 275.33333,86.333333 c -2.83337,0 -5.154,1.45426 -6.67708,3.53125 -1.52309,2.077 -2.32292,4.76876 -2.32292,7.46875 V 201.33333 c 5e-5,0.55226 0.44774,0.99994 1,1 h 24 c 0.55226,-6e-5 0.99995,-0.44774 1,-1 v -6 c 0,-1.0451 0.2959,-1.75423 0.77083,-2.22917 0.47494,-0.47493 1.18407,-0.77083 2.22917,-0.77083 h 5 c 1.61393,0 3,1.38607 3,3 v 6 c 5e-5,0.55226 0.44774,0.99994 1,1 h 17 c 0.55226,-6e-5 0.99995,-0.44774 1,-1 v -6 c 0,-0.98629 0.21605,-1.72899 0.625,-2.19792 0.40895,-0.46893 1.06759,-0.80208 2.375,-0.80208 1.28495,0 1.92976,0.36078 2.35417,0.86458 0.4244,0.5038 0.64583,1.26458 0.64583,2.13542 v 14 c 0,1.94415 0.35269,3.66608 1.34375,4.96875 0.99106,1.30267 2.62049,2.03125 4.65625,2.03125 h 15 c 2.03576,0 3.66519,-0.72858 4.65625,-2.03125 0.99105,-1.30267 1.34375,-3.0246 1.34375,-4.96875 v -14 c 0,-0.83368 0.21677,-1.59976 0.64583,-2.11458 0.42905,-0.51481 1.07632,-0.88542 2.35417,-0.88542 1.27777,0 1.92508,0.37051 2.35417,0.88542 0.4291,0.51492 0.64583,1.28125 0.64583,2.11458 v 14 c 0,2.00269 0.54722,3.74796 1.60417,5.01042 1.05696,1.26246 2.63349,1.98958 4.39583,1.98958 h 15 c 1.83333,0 3.39055,-0.94112 4.41667,-2.26042 1.02613,-1.3193 1.58333,-3.01736 1.58333,-4.73958 v -10 c 0,-1.74999 0.67475,-3.54929 1.77083,-4.86458 1.09607,-1.31528 2.56422,-2.05974 4.22917,-2.13542 L 401.66666,192 c 3.5862,-0.16301 7,-3.19431 7,-8 v -61 c 0,-1.72222 -0.58963,-3.25631 -1.66666,-4.33334 -1.07703,-1.07703 -2.61116,-1.67905 -4.33334,-1.66666 l -46.33333,0.33333 c -4.05702,0.0292 -8.19565,-1.49353 -11.27083,-4.125 L 317.34375,89.489583 c -2.15493,-1.844 -4.75055,-3.15625 -8.01042,-3.15625 z"
id="path4601-3" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,467 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-pcb-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2508"
inkscape:window-height="1591"
id="namedview30"
showgrid="true"
inkscape:zoom="10.722876"
inkscape:cx="44.484334"
inkscape:cy="54.323112"
inkscape:window-x="4201"
inkscape:window-y="537"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g4648"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g4648"
transform="matrix(0.25,0,0,0.25,2.75,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 46.969,1.9423073 157,2 219,66 v 172 c 0,8.73506 -6.26521,15.99596 -15,16 l -157.073938,0.0727 c -8.734785,0.004 -16.001704,-7.26494 -16,-16 L 30.969,17.942307 c 0.0017,-8.7350433 7.265215,-16.0045797 16,-15.9999997 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 217,172 32.857269,219 v 19 c 0,7.73556 6.264682,14 14,14 H 204 c 7.73527,0 12.88281,-6.26533 13,-14 z"
sodipodi:nodetypes="ccssssc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="M 130,48 H 77 L 61,63 v 55"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 155,2 v 46 c 0,8.735013 9.26681,18.185813 18,18 h 46 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 20,113 c -2.833374,0 -5.158552,1.45621 -6.681641,3.5332 C 11.795271,118.6102 11,121.30001 11,124 v 104.98916 c 5.5e-5,0.55226 0.447738,0.99994 1,1 h 25 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 V 222 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 C 39.246422,219.29655 39.954894,219 41,219 h 5 c 1.61393,0 3,1.38607 3,3 v 6.98916 c 5.5e-5,0.55226 0.447738,0.99994 1,1 h 17 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 V 222 c 0,-0.98629 0.219953,-1.72443 0.628906,-2.19336 C 69.03786,219.33771 69.692589,219 71,219 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 C 73.783779,220.37294 74,221.12916 74,222 v 13.01084 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 0.991057,1.30267 2.62439,2.0293 4.660156,2.0293 h 15 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 C 100.65121,238.67887 101,236.95499 101,235.01084 V 222 c 0,-0.83368 0.21352,-1.59456 0.64258,-2.10938 C 102.07163,219.37581 102.72215,219 104,219 c 1.27777,0 1.92833,0.37571 2.35742,0.89062 C 106.78652,220.40554 107,221.16667 107,222 v 13.01084 c 0,2.00269 0.55047,3.7434 1.60742,5.00586 1.05696,1.26246 2.63024,1.99414 4.39258,1.99414 h 16 c 1.83333,0 3.38794,-0.94242 4.41406,-2.26172 C 134.44019,238.42982 135,236.73306 135,235.01084 V 225 c 0,-1.74999 0.6715,-3.54409 1.76758,-4.85938 C 137.86365,218.82534 139.33333,218 141,218 h 19 c 3.5899,0 7,-3.1943 7,-8 v -62 c 0,-1.72222 -0.59094,-3.255 -1.66797,-4.33203 C 164.255,142.59094 162.72222,142 161,142 h -60 c -4.057126,0 -8.19239,-1.49548 -11.267578,-4.12695 L 63.013672,116.15234 C 60.858746,114.30834 58.259877,113 55,113 Z"
id="path4601"
sodipodi:nodetypes="sssccccsssssccccsssssssssssssssssssssssssssssssccss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="14"
height="14"
x="21.000008"
y="122.00002" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="M 185,80 H 117 L 89,51"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 185,104 H 97"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke"
d="M 185,128 H 97"
id="path3517"
sodipodi:nodetypes="cc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="m 57,115.2055 v 0.56641 29.79254 L 29,168 h -12.941406 -3 L 13,176 h 3 13 c 2,0 5.466605,-1.5702 6,-2 L 63.882812,152.02344 C 64.589332,151.45383 65.00006,150.59504 65,149.6875 v -29.3611 l -2.636719,-2.1553 C 61.061158,117.05685 58.893081,115.43386 57,115.2055 Z"
sodipodi:nodetypes="ccccccccccccccc" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 60,166 -32,24 v 38.19589 h 9 V 222 c 0,-2.49314 1.506856,-4 4,-4 h 5 c 2.173922,0 4,1.82608 4,4 v 6 h 17 v -6 c 0,-2.26669 1,-4 4,-4 2.999999,0 4,1.93541 4,4 v 12.15357 c 0,3.63896 1.361013,6 5,6 h 15 c 3.638987,0 5,-2.36103 5,-6 V 222 c 0,-2.0006 1,-4 4,-4 2.99999,0 4,2 4,4 v 12.15357 c 0,3.63897 2,6 5,6 h 15 c 3,0 5,-3 5,-6 V 226 c 0,-10 4,-10 20,-10 h 6 c 3,0 6,-1.65455 6,-6 v -45 z"
sodipodi:nodetypes="ccccssssccsssssssssssssssssscc" />
<path
id="rect880"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5,0,203,318.70214)"
d="m 17,14.815357 h 1.154165 V 18 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1.184643 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)"
d="m 17,15.369285 h 1.154165 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="22"
height="22"
x="84.000008"
y="177.99998" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 82,176 h 26 v 26 H 82 Z"
sodipodi:nodetypes="ccccc" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cx="36"
cy="208"
r="3.9999998" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="63.999992"
cy="208"
r="3.9999998" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,23 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
viewBox="0 0 256 256"
version="1.1"
sodipodi:docname="icon_pcbnew.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_48/icon_pcbnew.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
width="48"
height="48">
sodipodi:docname="application-x-kicad-pcb.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="256"
height="256"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -27,25 +25,35 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3002"
inkscape:window-height="1747"
inkscape:window-width="1514"
inkscape:window-height="1247"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="19.392205"
inkscape:cy="25.62247"
inkscape:window-x="41"
inkscape:window-y="37"
inkscape:zoom="1.8955546"
inkscape:cx="112.36817"
inkscape:cy="108.93909"
inkscape:window-x="4368"
inkscape:window-y="301"
inkscape:window-maximized="0"
inkscape:current-layer="g895"
inkscape:document-rotation="0">
inkscape:document-rotation="0"
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid2239"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#8383ff"
opacity="0.1254902"
color="#9999ff"
opacity="0.13"
empspacing="2" />
</sodipodi:namedview>
<metadata
@ -58,7 +66,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>add_arc</dc:title>
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
@ -78,33 +86,154 @@
</rdf:RDF>
</metadata>
<defs
id="defs5">
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<marker
style="overflow:visible"
id="marker3125"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3123" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style3">.cls-1{fill:#b9b9b9;}.cls-2{fill:#545454;}.cls-3{fill:#1a81c4;}</style>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath897">
<rect
style="fill:#f2f2f2;stroke:none;stroke-linejoin:round"
id="rect899"
width="48"
height="48"
x="0"
y="0"
rx="7.8340001" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1736">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1738"
width="24"
height="16"
x="0"
y="8.5"
ry="2.6555922" />
</clipPath>
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3066"
id="linearGradient3068"
x1="-436.03336"
y1="-160.86667"
x2="-309.03336"
y2="-220.13333"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.5628208,0,0,2.5628208,1152.1189,608.92097)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3066">
<stop
style="stop-color:#489648;stop-opacity:1;"
offset="0"
id="stop3062" />
<stop
style="stop-color:#489648;stop-opacity:0;"
offset="1"
id="stop3064" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
@ -119,223 +248,240 @@
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1732">
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1734"
width="24"
height="24"
x="0"
y="1.5000001"
ry="3.9833882" />
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1724">
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1726"
width="24"
height="24"
x="0"
y="1.5000001"
ry="3.9833882" />
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath906">
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect904"
width="24"
height="24"
x="0"
y="1.5000001"
ry="3.9833882" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath910">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect908"
width="24"
height="24"
x="0"
y="1.5000001"
ry="3.9833882" />
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
</defs>
<title
id="title7">icon_pcbnew</title>
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1563"
clip-path="url(#clipPath1565)">
<g
id="g895"
clip-path="url(#clipPath897)">
<rect
class="cls-1"
x="0"
y="0"
width="48"
height="48"
rx="0"
id="rect9"
style="fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.99999899;stroke-opacity:1" />
<path
class="cls-2"
d="m 19,48 v -4 l 8,-5.970568 V 25 l 1,-1 h 6 c 0,0 1.128958,1.639203 2,2 2.771639,1.14805 6.228361,1.14805 9,0 1.306563,-0.541196 2.458804,-1.693437 3,-3 -0.26761,-2.960808 0.962324,-7.38699 0,-10 -0.541196,-1.306563 -1.693437,-2.458804 -3,-3 -2.771639,-1.1480503 -6.228361,-1.1480503 -9,0 -0.435521,0.180399 -1,1 -1,1 H 32 L 29,8 V 0 C 19.989874,-0.00320694 4.05901,0.00249473 -0.00413753,0.00257361 0,6.5 -1e-8,48 -1e-8,48 3,47.944449 7.618659,48 19,48 Z"
id="path11"
sodipodi:nodetypes="ccccccaaccaaccccccc"
style="fill:#006400;fill-opacity:1;stroke-width:0.999999"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#489648;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 40.5,18 H 29 L 22,11 V -0.5"
id="path2253"
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<g
id="g2245"
transform="matrix(2.1007353,0,0,2.0007002,-5.8158181,-1.3489937)"
style="stroke-width:0.48777926">
<path
id="path25"
style="fill:#f29100;fill-opacity:1;stroke-width:0.48777926"
d="m 24.0464,9.6716 c 0.01666,0.92263 -0.689803,1.788674 -1.596971,1.9577 -0.900331,0.202302 -1.891005,-0.315085 -2.239427,-1.169559 -0.379637,-0.8410705 -0.07257,-1.9157025 0.694131,-2.4292153 0.755018,-0.5479002 1.884301,-0.4542902 2.539321,0.2096171 0.38285,0.3706695 0.605209,0.8985716 0.602946,1.4314572 z"
inkscape:connector-curvature="0" />
<path
id="path27"
style="fill:#f2f2f2;fill-opacity:1;stroke-width:0.48777926"
d="m 23.0471,9.671111 c 0.01721,0.575481 -0.54098,1.074706 -1.110978,0.993612 -0.573846,-0.04664 -1.008169,-0.656695 -0.864436,-1.214203 0.109783,-0.5668907 0.767417,-0.92955 1.30554,-0.7235365 0.39433,0.1323668 0.675168,0.5281566 0.669874,0.9441275 z"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#489648;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 7,29 h -18.000001 -1.5"
id="path2255"
sodipodi:nodetypes="ccc"
inkscape:transform-center-x="9.6390115"
inkscape:transform-center-y="-0.0417481"
inkscape:connector-curvature="0" />
<g
id="g2251"
transform="matrix(2.1007353,0,0,2.0007002,-39.467859,9.5821874)"
style="stroke-width:0.48777926">
<path
class="cls-3"
d="m 24.0464,9.6716 a 1.9993,1.9993 0 1 1 -1.9992,-2 1.9995,1.9995 0 0 1 1.9992,2 z"
id="path2247"
style="fill:#f29100;fill-opacity:1;stroke-width:0.48777926"
inkscape:connector-curvature="0" />
<path
class="cls-1"
d="M 23.0471,9.671111 A 1,1 0 1 1 22.04717,8.6709 1.0000702,1.0000702 0 0 1 23.0471,9.671111 Z"
id="path2249"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.48777926"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 7,48 v -9 l 8,-6 V 26 L 7,18 V -0.5"
id="path2263"
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 11,48 v -7 l 8,-6 V 24 L 11,16 V -0.5"
id="path2265"
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15,48 v -5 l 8,-6 V 22 L 15,14 V -0.5"
id="path2267"
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0" />
<g
id="g913"
transform="matrix(2,0,0,2,-12,-13)"
clip-path="none">
<rect
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:1.81332;stroke-linecap:round;stroke-linejoin:round"
id="rect878"
width="8.1934328"
height="3.9016349"
x="13.136076"
y="17.057377"
rx="1.5000001"
ry="1"
clip-path="url(#clipPath1736)"
transform="matrix(-0.85434278,0,0,1.2815141,40.222712,-0.85926913)" />
<rect
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
id="rect880"
width="5"
height="3"
x="17"
y="15"
rx="0"
ry="1"
clip-path="url(#clipPath1720)"
transform="matrix(-1,0,0,0.99999997,45,7.0000004)" />
<path
style="fill:none;stroke:#489648;stroke-width:2.99999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18,21 v 3"
id="path886"
sodipodi:nodetypes="cc"
clip-path="url(#clipPath1732)"
transform="matrix(-0.66666667,0,0,0.66666667,37.5,11)" />
<path
style="fill:none;stroke:#489648;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 23.25,18.75 H 19.5"
id="path1080"
sodipodi:nodetypes="cc"
clip-path="url(#clipPath1724)"
transform="matrix(-0.66666667,0,0,0.66666667,36,11)" />
<path
style="fill:none;stroke:#489648;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 23.25,18.75 H 19.5"
id="path903"
sodipodi:nodetypes="cc"
clip-path="url(#clipPath1724)"
transform="matrix(-0.66666667,0,0,0.66666667,43.5,11)" />
<path
style="fill:none;stroke:#489648;stroke-width:2.99999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18,21 v 3"
id="path905"
sodipodi:nodetypes="cc"
clip-path="url(#clipPath1732)"
transform="matrix(-0.66666667,0,0,0.66666667,37.5,5.9999999)" />
</g>
<g
id="g927"
transform="matrix(2,0,0,2,-12,-4.0000001)"
clip-path="none">
<rect
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:1.81332;stroke-linecap:round;stroke-linejoin:round"
id="rect915"
width="8.1934328"
height="3.9016349"
x="13.136076"
y="17.057377"
rx="1.5000001"
ry="1"
clip-path="url(#clipPath935)"
transform="matrix(-0.85434278,0,0,1.2815141,40.222712,1.140731)" />
<rect
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
id="rect917"
width="5"
height="3"
x="17"
y="15"
rx="0"
ry="1"
clip-path="url(#clipPath931)"
transform="matrix(-1,0,0,0.99999997,45,9.0000005)" />
</g>
</g>
id="g4648">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke"
d="M 130,51 H 77 L 61,66 v 52"
id="path880"
sodipodi:nodetypes="cccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 12.999998,228 h 23.999995 v -6 c 0,-2.49314 1.506866,-3.99999 4.00001,-3.99999 h 5.000004 c 2.173922,0 3.999994,1.82607 3.999994,3.99999 v 6 h 17.000002 v -6 c 0,-2.26669 0.999994,-3.99999 3.999994,-3.99999 2.999999,0 4.000009,1.9354 4.000009,3.99999 v 14 c 0,3.63896 1.361002,6 4.999989,6 h 15.000012 c 3.638987,0 4.999989,-2.36103 4.999989,-6 v -14 c 0,-2.0006 1.000014,-3.99999 4.000014,-3.99999 C 107,218.00001 108,220 108,222 v 14 c 0,3.63897 2,6 5,6 h 15 c 3,0 5,-3 5,-6 v -10.00001 c 0,-3.99999 3,-7.99998 7,-7.99998 h 5.99995 c 3,0 6,-2.65456 6,-7.00001 v -61 c 0,-3 -1.99999,-5 -4.99999,-5 h -45 c -4.300699,0 -8.650242,-1.5713 -11.917886,-4.36746 L 62.362536,116.91268 c -2.037152,-1.74322 -4.362638,-2.91267 -7.362637,-2.91267 H 20.999896 c -5.000095,0 -7.999898,4.99999 -7.999898,9.99999 z"
id="path4599" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3222"
width="14"
height="14"
x="21.000008"
y="122.00002" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke"
d="M 186,79 H 116 L 89,51"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 186,102 H 84"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke"
d="M 186,125 H 84"
id="path3517"
sodipodi:nodetypes="cc" />
<path
id="path4465"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1"
d="M 58 114.43359 L 58 115 L 58 146.56445 L 28.941406 170 L 16 170 L 13 170 L 13 176 L 16 176 L 30 176 A 3.0003 3.0003 0 0 0 31.882812 175.33594 L 62.882812 150.33594 A 3.0003 3.0003 0 0 0 64 148 L 64 118.3125 L 62.363281 116.91211 C 61.061158 115.79786 59.638576 114.92344 58 114.43359 z " />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 21,113 c -2.833374,0 -5.158552,1.45621 -6.681641,3.5332 C 12.795271,118.6102 12,121.30001 12,124 v 104 a 1.0001,1.0001 0 0 0 1,1 h 24 a 1.0001,1.0001 0 0 0 1,-1 v -6 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 C 39.246422,219.29655 39.954894,219 41,219 h 5 c 1.61393,0 3,1.38607 3,3 v 6 a 1.0001,1.0001 0 0 0 1,1 h 17 a 1.0001,1.0001 0 0 0 1,-1 v -6 c 0,-0.98629 0.219953,-1.72443 0.628906,-2.19336 C 69.03786,219.33771 69.692589,219 71,219 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 C 73.783779,220.37294 74,221.12916 74,222 v 14 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 C 76.330901,242.27337 77.964234,243 80,243 h 15 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 C 100.65121,239.66803 101,237.94415 101,236 v -14 c 0,-0.83368 0.21352,-1.59456 0.64258,-2.10938 C 102.07163,219.37581 102.72215,219 104,219 c 1.27777,0 1.92833,0.37571 2.35742,0.89062 C 106.78652,220.40554 107,221.16667 107,222 v 14 c 0,2.00269 0.55047,3.7434 1.60742,5.00586 C 109.66438,242.26832 111.23766,243 113,243 h 15 c 1.83333,0 3.38794,-0.94242 4.41406,-2.26172 C 133.44019,239.41898 134,237.72222 134,236 v -10 c 0,-1.74999 0.6715,-3.54409 1.76758,-4.85938 C 136.86365,219.82534 138.33333,219 140,219 h 6 c 3.5899,0 7,-3.1943 7,-8 v -61 c 0,-1.72222 -0.59094,-3.255 -1.66797,-4.33203 C 150.255,144.59094 148.72222,144 147,144 h -45 c -4.057126,0 -8.19239,-1.49548 -11.267578,-4.12695 L 63.013672,116.15234 C 60.858746,114.30834 58.259877,113 55,113 Z m 0,2 h 34 c 2.740121,0 4.793513,1.02944 6.712891,2.67188 l 27.71875,23.7207 C 92.891741,144.35342 97.455728,146 102,146 h 45 c 1.27778,0 2.245,0.40906 2.91797,1.08203 C 150.59094,147.755 151,148.72222 151,150 v 61 c 0,3.8852 -2.5899,6 -5,6 h -6 c -2.33333,0 -4.36365,1.17467 -5.76758,2.85938 C 132.8285,221.54408 132,223.75 132,226 v 10 c 0,1.27778 -0.44019,2.58102 -1.16406,3.51172 C 130.11206,240.44242 129.16667,241 128,241 h -15 c -1.23766,0 -2.16438,-0.44955 -2.85742,-1.27734 C 109.44953,238.89486 109,237.63628 109,236 v -14 c 0,-1.16667 -0.28652,-2.40554 -1.10742,-3.39062 C 107.07168,217.62429 105.72222,217 104,217 c -1.72215,0 -3.07163,0.62434 -3.89258,1.60938 C 99.286471,219.59441 99,220.83308 99,222 v 14 c 0,1.69482 -0.332451,2.97218 -0.931641,3.75977 C 97.469169,240.54735 96.603222,241 95,241 H 80 c -1.603221,0 -2.469169,-0.45264 -3.068359,-1.24023 C 76.33245,238.97218 76,237.69481 76,236 v -14 c 0,-1.19375 -0.283774,-2.43792 -1.109375,-3.41797 C 74.065024,217.60198 72.715044,217 71,217 c -1.692589,0 -3.037863,0.5278 -3.878906,1.49219 C 66.28005,219.45658 66,220.7196 66,222 v 5 H 51 v -5 c 0,-2.73391 -2.266086,-5 -5,-5 h -5 c -1.448038,0 -2.740797,0.45565 -3.642578,1.35742 C 36.455641,219.2592 36,220.55196 36,222 v 5 H 14 V 124 c 0,-2.30001 0.704804,-4.6102 1.931641,-6.2832 C 17.158477,116.04379 18.833279,115 21,115 Z"
id="path4601" />
<path
id="path4494"
style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 60 166 L 28 190 L 28 228 L 37 228 L 37 222 C 37 219.50686 38.506856 218 41 218 L 46 218 C 48.173922 218 50 219.82608 50 222 L 50 228 L 67 228 L 67 222 C 67 219.73331 68 218 71 218 C 73.999999 218 75 219.93541 75 222 L 75 236 C 75 239.63896 76.361013 242 80 242 L 95 242 C 98.638987 242 100 239.63897 100 236 L 100 222 C 100 219.9994 101 218 104 218 C 106.99999 218 108 220 108 222 L 108 236 C 108 239.63897 110 242 113 242 L 128 242 C 131 242 133 239 133 236 L 133 226 C 133 222.00001 136 218 140 218 L 146 218 C 149 218 152 215.34545 152 211 L 152 166 L 60 166 z " />
<path
id="rect880"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5,0,203,318.70214)"
d="m 17,15 h 1.154165 v 3 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<path
id="path3057"
clip-path="url(#clipPath1720)"
style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)"
d="m 17,15 h 1.154165 v 3 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1 c 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sccssss" />
<rect
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3143"
width="22"
height="22"
x="84.000008"
y="177.99998" />
<path
id="rect3206"
style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 82,176 h 26 v 26 H 82 Z"
sodipodi:nodetypes="ccccc" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3214"
cx="36"
cy="208"
r="3.9999998" />
<circle
style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle3216"
cx="63.999992"
cy="208"
r="3.9999998" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,364 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-project-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-project.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="24.515625"
inkscape:cy="19.515625"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g19868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker1936"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1934" />
</marker>
<marker
style="overflow:visible"
id="marker1926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1924" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always"
viewBox="0 0 2.2666667 2.2666667"
markerWidth="2.2666667"
markerHeight="2.2666667"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.8860144,0,0,1.8013732,194.13936,137.54459)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
id="Безымянный_градиент_10"
x1="50.0093"
x2="50.0093"
y2="100"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)">
<stop
offset="0"
stop-color="#2b4bb7"
id="stop5398" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5400" />
</linearGradient>
<radialGradient
id="Безымянный_градиент_28"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.345644)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop5403" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5405" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6102"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
<radialGradient
id="Безымянный_градиент_114"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientUnits="userSpaceOnUse">
<stop
offset="0.0007"
stop-color="#fff"
stop-opacity="0"
id="stop5411" />
<stop
offset="0.1476"
stop-color="#fbfbfb"
stop-opacity="0.039"
id="stop5413" />
<stop
offset="0.3723"
stop-color="#f1f1f1"
stop-opacity="0.1465"
id="stop5415" />
<stop
offset="0.6466"
stop-color="#e0e0e0"
stop-opacity="0.3222"
id="stop5417" />
<stop
offset="0.9576"
stop-color="#c9c9c8"
stop-opacity="0.5641"
id="stop5419" />
<stop
offset="1"
stop-color="#c6c6c5"
stop-opacity="0.6"
id="stop5421" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6104"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g122"
transform="matrix(0.1239317,0,0,0.12301587,0.87606596,0.25396825)"
style="stroke-width:2.02474">
<g
id="g19868"
transform="translate(-1.6057103)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.09893;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 32.501213,1.9077674 H 88.708856 L 119.60566,32.377712 V 116.5328 c 0,4.22471 -3.67892,7.25475 -8.10201,7.25475 H 32.501213 c -4.42308,0 -8.102004,-3.51369 -8.102004,-7.7384 V 9.6461662 c 0,-4.2247032 3.678928,-7.7331313 8.102004,-7.7383988 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.50824;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 115.57118,79.225808 25.377248,105.1271 v 8.48889 c 0,3.45613 3.068766,6.25498 6.857924,6.25498 h 76.478098 c 6.85791,0 6.85791,0 6.85791,-5.80819 z m -91.9458,34.555732 v 0.16575 c 0,1.01264 0.241014,1.96878 0.659234,2.83737 -0.420102,-0.92629 -0.659234,-1.93854 -0.659234,-3.00312 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.5577;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 62.208137,22.016536 h 29.025911 c 0.536017,0 0.96754,0.425123 0.96754,0.953215 v 13.345183 c 0,0.528092 -0.431523,0.953215 -0.96754,0.953215 H 62.208137 c -0.536017,0 -0.96752,-0.425123 -0.96752,-0.953215 V 22.969751 c 0,-0.528092 0.431503,-0.953215 0.96752,-0.953215 z"
id="path6035" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3403);paint-order:fill markers stroke"
d="M 103.80623,26.387097 H 79.260855 L 63.122933,42.645162 h -24.05447"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="m 59.088453,18.258065 -19.605288,0"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke"
d="M 98.866141,50.774195 H 75.793489"
id="path1922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 95.398776,75.161292 -32.185454,0"
id="path2280"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.09893;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 87.329815,2.8578234 V 26.387097 c 0,4.372946 3.529644,8.016302 7.773647,8.009965 h 23.320958 z"
sodipodi:nodetypes="csscc" />
</g>
<g
id="g1338"
transform="matrix(1.7582357,0,0,1.7645596,-132.92077,241.38336)"
style="stroke-width:3.25375">
<rect
class="cls-8"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5459"
y="-114.92042"
style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.25375" />
<rect
class="cls-9"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5461"
y="-115.0269"
style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.25375" />
<path
class="cls-11"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z"
id="path5475"
style="fill:#ffffff;stroke-width:3.25375"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-11"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5477"
style="fill:#ffffff;stroke-width:3.25375"
sodipodi:nodetypes="ccccccccccccccc" />
<path
class="cls-12"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z"
id="path5479"
style="fill:url(#radialGradient6102);stroke-width:3.25375"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-12"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5481"
style="fill:url(#radialGradient6104);stroke-width:3.25375"
sodipodi:nodetypes="ccccccccccccccc" />
<ellipse
style="fill:#ff6d00;fill-opacity:1;stroke-width:6.50753;stroke-linecap:round;stroke-linejoin:round"
id="path6063"
cx="111.0855"
cy="-103.00631"
rx="3.7129955"
ry="3.7186167" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,429 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-project-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-project.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="64"
inkscape:cx="16.875"
inkscape:cy="12.414063"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g30744"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker1956"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1954" />
</marker>
<marker
style="overflow:visible"
id="marker1936"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1934" />
</marker>
<marker
style="overflow:visible"
id="marker1926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1924" />
</marker>
<marker
style="overflow:visible"
id="marker1676"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1674" />
</marker>
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
id="Безымянный_градиент_10"
x1="50.0093"
x2="50.0093"
y2="100"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.62436744,0,0,0.62952265,76.161905,-128.84484)">
<stop
offset="0"
stop-color="#2b4bb7"
id="stop5398" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5400" />
</linearGradient>
<radialGradient
id="Безымянный_градиент_28"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.62952265,1.1132471,0,81.478768,-82.712857)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop5403" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5405" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6102"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.62436744,0,0,0.6538606,76.161905,-130.78767)" />
<radialGradient
id="Безымянный_градиент_114"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientUnits="userSpaceOnUse">
<stop
offset="0.0007"
stop-color="#fff"
stop-opacity="0"
id="stop5411" />
<stop
offset="0.1476"
stop-color="#fbfbfb"
stop-opacity="0.039"
id="stop5413" />
<stop
offset="0.3723"
stop-color="#f1f1f1"
stop-opacity="0.1465"
id="stop5415" />
<stop
offset="0.6466"
stop-color="#e0e0e0"
stop-opacity="0.3222"
id="stop5417" />
<stop
offset="0.9576"
stop-color="#c9c9c8"
stop-opacity="0.5641"
id="stop5419" />
<stop
offset="1"
stop-color="#c6c6c5"
stop-opacity="0.6"
id="stop5421" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6104"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.62436744,0,0,0.62952265,76.161905,-128.76554)" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g122"
transform="matrix(0.25,0,0,0.25,0.74999817,0)">
<g
id="g21945"
transform="matrix(0.74354146,0,0,0.74599266,0.25646888,0.50833633)"
style="stroke-width:1.3427">
<g
id="g1338"
transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)"
style="stroke-width:1.36368">
<g
id="g30744"
transform="matrix(0.49427092,0,0,0.48935228,38.520226,-78.853651)"
style="stroke-width:2.7728">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:10.9206;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z"
sodipodi:nodetypes="sccssssss"
transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" />
<path
id="path5956"
style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:2.03371;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc"
transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:14.236;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035"
transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3727);paint-order:fill markers stroke"
d="m 148.71057,-142.40949 -14.14254,0.0452 -11.57276,11.55219 -16.25019,0.0452"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="m 121.66508,-142.61565 h -16.8511"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke"
d="M 146.40905,-130.8121 H 132.75101"
id="path1672"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke"
d="m 148.3602,-119.00855 -13.65804,0 -11.70689,11.80355 h -19.31028"
id="path1918"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke"
d="m 121.04412,-119.00855 -16.23015,0"
id="path1920"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke"
d="m 146.40905,-107.205 -13.65804,0"
id="path1922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 148.3602,-95.401454 -28.12398,0"
id="path2280"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:10.9206;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc"
transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" />
<rect
class="cls-8"
x="76.167709"
width="62.436749"
height="62.952267"
rx="13.874819"
id="rect5459"
y="-128.84485"
style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.7728" />
<rect
class="cls-9"
x="76.167709"
width="62.436749"
height="62.952267"
rx="13.874819"
id="rect5461"
y="-128.84485"
style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.7728" />
<path
class="cls-11"
d="m 95.379016,-101.6154 7.157984,-9.18374 c 1.41677,-1.87214 2.1253,-3.27196 2.12559,-4.19951 0.01,-0.27545 -0.0686,-0.44072 -0.1582,-0.69991 h 12.2472 c -1.33019,0.92181 -2.60497,1.96856 -3.55796,3.30805 -0.43472,0.53999 -1.08644,1.37543 -1.95514,2.5063 l -9.08823,11.834905 10.84676,15.634264 c 0.5148,0.742349 1.3521,1.804894 2.51189,3.187637 0.37072,0.390088 0.82512,0.917409 1.24268,1.251579 h -12.48734 c 0.0898,-0.338008 0.15037,-0.850513 0.15652,-1.201297 0,-0.927043 -0.61188,-2.267807 -1.83564,-4.02229 l -7.206114,-9.865503 v 10.059394 c 0,2.344353 0.538887,4.08526 1.440848,5.029696 H 85.533222 c 0.603392,-0.611357 0.871042,-1.515932 1.055917,-2.373584 0.121343,-0.879339 0.169788,-1.768025 0.14479,-2.656112 v -27.663369 c 0.02497,-0.88808 -0.02348,-1.77676 -0.14479,-2.6561 -0.184954,-0.85764 -0.452593,-1.76215 -1.055917,-2.37357 h 11.526783 c -0.901961,0.94457 -1.684841,2.47162 -1.680995,4.7988 z"
id="path5475"
style="fill:#ffffff;stroke-width:2.7728"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-11"
d="m 128.03824,-104.55315 4.3e-4,22.275415 c -0.0231,0.764517 0.01,1.529717 0.0963,2.289512 0.13886,0.750867 0.58118,1.516346 1.10438,2.068721 H 118.433 c 0.52288,-0.552607 0.72456,-1.317983 0.86379,-2.068721 0.0857,-0.75992 0.11796,-1.525006 0.0963,-2.289512 v -18.159305 c 0.0224,-0.75633 -0.01,-1.51329 -0.0963,-2.2649 -0.14084,-0.73808 -0.35763,-1.29982 -0.86423,-1.85121 z m -4.19527,-14.33943 c 2.66504,0.008 4.82349,2.18434 4.83148,4.87138 -0.004,6.49052 -9.66691,6.49052 -9.66258,0 -0.0264,-2.70119 2.15204,-4.89777 4.8311,-4.87138 z"
id="path5477"
style="fill:#ffffff;stroke-width:2.7728"
sodipodi:nodetypes="ccccccccccccccc" />
<path
class="cls-12"
d="m 95.379016,-101.6154 7.157984,-9.18374 c 1.41677,-1.87214 2.1253,-3.27196 2.12559,-4.19951 0.01,-0.27545 -0.0686,-0.44072 -0.1582,-0.69991 h 12.2472 c -1.33019,0.92181 -2.60497,1.96863 -3.55796,3.30812 -0.43472,0.53999 -1.08644,1.37543 -1.95514,2.5063 l -9.08823,11.834905 10.84676,15.634267 c 0.5148,0.742349 1.3521,1.804893 2.51189,3.187635 0.37072,0.390087 0.82512,0.917338 1.24268,1.251508 h -12.48734 c 0.0898,-0.338008 0.15037,-0.850439 0.15652,-1.201224 0,-0.927043 -0.61188,-2.267806 -1.83564,-4.022289 l -7.206114,-9.865574 v 10.059394 c 0,2.344352 0.538887,4.085259 1.440848,5.029696 H 85.533222 c 0.603392,-0.611358 0.871042,-1.515933 1.055917,-2.373584 0.121343,-0.879339 0.169788,-1.768025 0.14479,-2.656112 v -27.663372 c 0.02497,-0.88808 -0.02348,-1.77676 -0.14479,-2.6561 -0.184954,-0.85764 -0.452593,-1.76209 -1.055917,-2.3735 h 11.526783 c -0.901961,0.94457 -1.680996,2.47162 -1.680995,4.79882 z"
id="path5479"
style="fill:url(#radialGradient6102);stroke-width:2.7728"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-12"
d="m 128.03824,-104.63735 4.3e-4,22.359615 c -0.0231,0.764517 0.01,1.529717 0.0963,2.289512 0.13886,0.750867 0.58118,1.516346 1.10438,2.068721 H 118.433 c 0.52289,-0.552607 0.72456,-1.317983 0.86379,-2.068721 0.0857,-0.75992 0.11796,-1.525006 0.0963,-2.289512 v -18.243515 c 0.0224,-0.75632 -0.01,-1.51328 -0.0963,-2.26489 -0.14084,-0.73809 -0.35763,-1.29982 -0.86423,-1.85121 z m -4.19527,-14.00262 c 2.66504,0.008 4.82349,2.18434 4.83148,4.87137 -0.004,6.49052 -9.66691,6.49052 -9.66258,0 -0.0264,-2.70118 2.15204,-4.89777 4.8311,-4.87137 z"
id="path5481"
style="fill:url(#radialGradient6104);stroke-width:2.7728"
sodipodi:nodetypes="ccccccccccccccc" />
<ellipse
style="fill:#ff6d00;fill-opacity:1;stroke-width:5.54563;stroke-linecap:round;stroke-linejoin:round"
id="path6063"
cx="123.6735"
cy="-114.04723"
rx="5.0515447"
ry="5.0932531" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,432 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-project-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2136"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="24.375"
inkscape:cy="6.21875"
inkscape:window-x="3840"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g19868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker1956"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1954" />
</marker>
<marker
style="overflow:visible"
id="marker1936"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1934" />
</marker>
<marker
style="overflow:visible"
id="marker1926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1924" />
</marker>
<marker
style="overflow:visible"
id="marker1676"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1674" />
</marker>
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6758174,0,0,3.7245395,377.82134,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
id="Безымянный_градиент_10"
x1="50.0093"
x2="50.0093"
y2="100"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)">
<stop
offset="0"
stop-color="#2b4bb7"
id="stop5398" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5400" />
</linearGradient>
<radialGradient
id="Безымянный_градиент_28"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop5403" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5405" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6102"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
<radialGradient
id="Безымянный_градиент_114"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientUnits="userSpaceOnUse">
<stop
offset="0.0007"
stop-color="#fff"
stop-opacity="0"
id="stop5411" />
<stop
offset="0.1476"
stop-color="#fbfbfb"
stop-opacity="0.039"
id="stop5413" />
<stop
offset="0.3723"
stop-color="#f1f1f1"
stop-opacity="0.1465"
id="stop5415" />
<stop
offset="0.6466"
stop-color="#e0e0e0"
stop-opacity="0.3222"
id="stop5417" />
<stop
offset="0.9576"
stop-color="#c9c9c8"
stop-opacity="0.5641"
id="stop5419" />
<stop
offset="1"
stop-color="#c6c6c5"
stop-opacity="0.6"
id="stop5421" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6104"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g122"
transform="matrix(0.1239317,0,0,0.12301587,0.87606596,0.25396825)"
style="stroke-width:2.02474">
<g
id="g19868"
transform="translate(-1.6057103)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.09894;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 62.7907,2 h 109.54796 l 60.21746,63 v 174 c 0,8.73506 -7.17017,15 -15.7907,15 H 62.7907 c -8.620523,0 -15.790698,-7.26494 -15.790698,-16 V 18 c 0,-8.7350437 7.170182,-15.9891089 15.790698,-16 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.50824;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 228.53662,172 48.912578,219 v 19 c 0,7.73556 6.111542,14 13.657769,14 H 214.87886 c 7.54618,0 13.65776,-5.26444 13.65776,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.479986,4.40655 1.312884,6.35064 -0.836646,-2.07323 -1.312884,-4.33886 -1.312884,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.5577;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke"
d="m 197.65515,51.223265 h -50 l -17,24 H 81.655144"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 124.65515,50.774195 H 77.655144"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke"
d="m 197.65515,75.133451 h -47"
id="path1672"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke"
d="m 201.48267,99.54839 h -54 l -17,23.99999 H 81.482665"
id="path1918"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke"
d="M 125.36203,99.54839 H 78.362023"
id="path1920"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke"
d="m 197.98267,123.93549 h -47"
id="path1922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 201.48721,148.32258 h -82"
id="path2280"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.09894;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 169.23006,1.8213759 V 50.470766 c 0,9.041554 7.19004,16.574597 15.83526,16.561494 h 47.50579 z"
sodipodi:nodetypes="csscc" />
</g>
<g
id="g1338"
transform="matrix(2.8131771,0,0,2.8298363,-213.27324,436.94791)"
style="stroke-width:2.03124">
<rect
class="cls-8"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5459"
y="-114.92042"
style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.03124" />
<rect
class="cls-9"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5461"
y="-114.92042"
style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.03124" />
<path
class="cls-11"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z"
id="path5475"
style="fill:#ffffff;stroke-width:2.03124"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-11"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5477"
style="fill:#ffffff;stroke-width:2.03124"
sodipodi:nodetypes="ccccccccccccccc" />
<path
class="cls-12"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z"
id="path5479"
style="fill:url(#radialGradient6102);stroke-width:2.03124"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-12"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5481"
style="fill:url(#radialGradient6104);stroke-width:2.03124"
sodipodi:nodetypes="ccccccccccccccc" />
<ellipse
style="fill:#ff6d00;fill-opacity:1;stroke-width:4.0625;stroke-linecap:round;stroke-linejoin:round"
id="path6063"
cx="111.0855"
cy="-103.00631"
rx="3.7129955"
ry="3.7186167" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,435 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-project-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-project.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="16"
inkscape:cx="38.125"
inkscape:cy="43.65625"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1338"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker1956"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1954" />
</marker>
<marker
style="overflow:visible"
id="marker1936"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1934" />
</marker>
<marker
style="overflow:visible"
id="marker1926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1924" />
</marker>
<marker
style="overflow:visible"
id="marker1676"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1674" />
</marker>
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
id="Безымянный_градиент_10"
x1="50.0093"
x2="50.0093"
y2="100"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)">
<stop
offset="0"
stop-color="#2b4bb7"
id="stop5398" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5400" />
</linearGradient>
<radialGradient
id="Безымянный_градиент_28"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop5403" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5405" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6102"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.46722157,76.163443,-116.10429)" />
<radialGradient
id="Безымянный_градиент_114"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientUnits="userSpaceOnUse">
<stop
offset="0.0007"
stop-color="#fff"
stop-opacity="0"
id="stop5411" />
<stop
offset="0.1476"
stop-color="#fbfbfb"
stop-opacity="0.039"
id="stop5413" />
<stop
offset="0.3723"
stop-color="#f1f1f1"
stop-opacity="0.1465"
id="stop5415" />
<stop
offset="0.6466"
stop-color="#e0e0e0"
stop-opacity="0.3222"
id="stop5417" />
<stop
offset="0.9576"
stop-color="#c9c9c8"
stop-opacity="0.5641"
id="stop5419" />
<stop
offset="1"
stop-color="#c6c6c5"
stop-opacity="0.6"
id="stop5421" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6104"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-115.46195)" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g122"
transform="matrix(0.25,0,0,0.25,0.74999817,0)">
<g
id="g21945"
transform="matrix(0.74354146,0,0,0.74599266,0.25646888,0.50833633)"
style="stroke-width:1.3427">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.37082;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.00019;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:7.00132;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke"
d="M 200.0474,47.576425 H 162.38979 L 130.11183,79.748323 83.000007,80"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 126.00506,47.576425 H 79.005061"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke"
d="m 197.35757,79.748323 -40.34744,0"
id="path1672"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke"
d="m 202.83893,106.55824 -40.44914,0 -32.27796,26.80991 H 81.694891"
id="path1918"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke"
d="M 126.00506,106.55824 H 79.005061"
id="path1920"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke"
d="m 197.35757,133.36815 -40.34744,0"
id="path1922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 202.73723,160.17807 H 122.04234"
id="path2280"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.37082;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<g
id="g1338"
transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)"
style="stroke-width:1.36368">
<rect
class="cls-8"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5459"
y="-114.92042"
style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:1.36368" />
<rect
class="cls-9"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5461"
y="-114.92042"
style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:1.36368" />
<path
class="cls-11"
d="m 90.28844,-95.258996 5.261271,-6.562324 c 1.041359,-1.33775 1.562146,-2.33801 1.56236,-3.00079 0.0072,-0.19683 -0.05043,-0.31492 -0.116284,-0.50013 h 9.001963 c -0.97772,0.65869 -1.91471,1.40665 -2.61518,2.36379 -0.31953,0.38586 -0.79856,0.98283 -1.43707,1.79091 l -6.68005,8.456727 7.97261,11.171595 c 0.37839,0.530452 0.99382,1.289702 1.84629,2.277752 0.27249,0.278741 0.60648,0.655542 0.9134,0.894327 h -9.178473 c 0.06599,-0.241527 0.110531,-0.607742 0.115049,-0.858398 0,-0.662426 -0.449745,-1.62048 -1.349236,-2.87416 l -5.29665,-7.049478 v 7.188024 c 0,1.675177 0.396094,2.919157 1.059055,3.594012 h -8.295929 c 0.443506,-0.436851 0.640235,-1.083223 0.776122,-1.696065 0.08919,-0.628339 0.124798,-1.263357 0.106424,-1.897947 v -19.767089 c 0.01835,-0.6346 -0.01726,-1.26961 -0.106424,-1.89795 -0.135945,-0.61283 -0.332666,-1.25916 -0.776122,-1.69605 h 8.472438 c -0.662961,0.67495 -1.238395,1.76612 -1.235568,3.42903 z"
id="path5475"
style="fill:#ffffff;stroke-width:1.36368"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-11"
d="m 114.29368,-97.784292 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.424238 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738807 -7.10539,4.738807 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5477"
style="fill:#ffffff;stroke-width:1.36368"
sodipodi:nodetypes="ccccccccccccccc" />
<path
class="cls-12"
d="m 90.28844,-95.258996 5.261271,-6.562324 c 1.041359,-1.33775 1.562146,-2.33801 1.56236,-3.00079 0.0072,-0.19683 -0.05043,-0.31492 -0.116284,-0.50013 h 9.001963 c -0.97772,0.65869 -1.91471,1.4067 -2.61518,2.36384 -0.31953,0.38586 -0.79856,0.98283 -1.43707,1.79091 l -6.68005,8.456727 7.97261,11.171596 c 0.37839,0.530452 0.99382,1.289702 1.84629,2.277752 0.27249,0.27874 0.60648,0.655491 0.9134,0.894276 h -9.178473 c 0.06599,-0.241527 0.110531,-0.607689 0.115049,-0.858345 0,-0.662426 -0.449745,-1.62048 -1.349236,-2.87416 l -5.29665,-7.049529 v 7.188024 c 0,1.675176 0.396094,2.919157 1.059055,3.594012 h -8.295929 c 0.443506,-0.436851 0.640235,-1.083223 0.776122,-1.696065 0.08919,-0.628339 0.124798,-1.263357 0.106424,-1.897947 v -19.767091 c 0.01835,-0.6346 -0.01726,-1.26961 -0.106424,-1.89795 -0.135945,-0.61283 -0.332666,-1.25911 -0.776122,-1.696 h 8.472438 c -0.662961,0.67495 -1.235569,1.76612 -1.235568,3.42903 z"
id="path5479"
style="fill:url(#radialGradient6102);stroke-width:1.36368"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-12"
d="m 114.29368,-97.784292 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.424238 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738807 -7.10539,4.738807 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5481"
style="fill:url(#radialGradient6104);stroke-width:1.36368"
sodipodi:nodetypes="ccccccccccccccc" />
<ellipse
style="fill:#ff6d00;fill-opacity:1;stroke-width:2.72737;stroke-linecap:round;stroke-linejoin:round"
id="path6063"
cx="111.0855"
cy="-103.54778"
rx="3.7129955"
ry="3.7186167" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,427 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-project-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2136"
id="namedview30"
showgrid="true"
inkscape:zoom="22.627417"
inkscape:cx="44.326756"
inkscape:cy="42.338018"
inkscape:window-x="3840"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g122"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker1956"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1954" />
</marker>
<marker
style="overflow:visible"
id="marker1936"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1934" />
</marker>
<marker
style="overflow:visible"
id="marker1926"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1924" />
</marker>
<marker
style="overflow:visible"
id="marker1676"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path1674" />
</marker>
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<marker
style="overflow:visible"
id="marker3403"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3401" />
</marker>
<marker
style="overflow:visible"
id="marker3269"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3267" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
id="Безымянный_градиент_10"
x1="50.0093"
x2="50.0093"
y2="100"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)">
<stop
offset="0"
stop-color="#2b4bb7"
id="stop5398" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5400" />
</linearGradient>
<radialGradient
id="Безымянный_градиент_28"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop5403" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop5405" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6102"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
<radialGradient
id="Безымянный_градиент_114"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientUnits="userSpaceOnUse">
<stop
offset="0.0007"
stop-color="#fff"
stop-opacity="0"
id="stop5411" />
<stop
offset="0.1476"
stop-color="#fbfbfb"
stop-opacity="0.039"
id="stop5413" />
<stop
offset="0.3723"
stop-color="#f1f1f1"
stop-opacity="0.1465"
id="stop5415" />
<stop
offset="0.6466"
stop-color="#e0e0e0"
stop-opacity="0.3222"
id="stop5417" />
<stop
offset="0.9576"
stop-color="#c9c9c8"
stop-opacity="0.5641"
id="stop5419" />
<stop
offset="1"
stop-color="#c6c6c5"
stop-opacity="0.6"
id="stop5421" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
id="radialGradient6104"
gradientUnits="userSpaceOnUse"
cx="47.3605"
cy="53.197102"
r="38.302299"
gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g122"
transform="matrix(0.25,0,0,0.25,0.74999817,0)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke"
d="m 199.00001,56 h -50 l -17,24 H 83.000007"
id="path3265"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke"
d="M 126.00001,56 H 79.000007"
id="path3399"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke"
d="m 199.00001,80 h -47"
id="path1672"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke"
d="m 203.00001,104 h -54 l -17,24 H 83.000007"
id="path1918"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke"
d="M 126.00001,104 H 79.000007"
id="path1920"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke"
d="m 199.00001,128 h -47"
id="path1922"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 203.00001,154 h -82"
id="path2280"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<g
id="g1338"
transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)"
style="stroke-width:1.01562">
<rect
class="cls-8"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5459"
y="-114.92042"
style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:1.01562" />
<rect
class="cls-9"
x="76.167709"
width="45.892372"
height="45.961853"
rx="10.198295"
id="rect5461"
y="-114.92042"
style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:1.01562" />
<path
class="cls-11"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z"
id="path5475"
style="fill:#ffffff;stroke-width:1.01562"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-11"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5477"
style="fill:#ffffff;stroke-width:1.01562"
sodipodi:nodetypes="ccccccccccccccc" />
<path
class="cls-12"
d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z"
id="path5479"
style="fill:url(#radialGradient6102);stroke-width:1.01562"
sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
<path
class="cls-12"
d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z"
id="path5481"
style="fill:url(#radialGradient6104);stroke-width:1.01562"
sodipodi:nodetypes="ccccccccccccccc" />
<ellipse
style="fill:#ff6d00;fill-opacity:1;stroke-width:2.03125;stroke-linecap:round;stroke-linejoin:round"
id="path6063"
cx="111.0855"
cy="-103.00631"
rx="3.7129955"
ry="3.7186167" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,460 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-schematic-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-schematic.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="90.509668"
inkscape:cx="11.67831"
inkscape:cy="9.8387279"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g37121"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.8441679,0,0,1.8323475,186.88651,139.96907)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g937"
transform="scale(0.25)">
<g
id="g37121"
transform="matrix(0.49021142,0,0,0.48387096,-0.8148316,1.2234877)"
style="stroke-width:2.05326">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.21303;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 29.983804,2 80.709731,1.6047921 111.90354,32.598662 v 85.602118 c 0,4.29735 -3.59736,7.35639 -7.92224,7.37949 l -73.997496,0.39523 c -4.324881,0.0231 -7.922238,-3.5741 -7.922238,-7.87146 V 9.871459 c 0,-4.2973461 3.597297,-7.873394 7.922238,-7.871459 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:1.52948;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 107.59432,85.634252 21.902797,108.75666 v 6.24198 c 0,3.80563 3.101893,6.88753 6.931958,6.88753 h 71.827605 c 3.83004,0 6.93196,-2.58993 6.93196,-6.39556 z M 20.132016,115.18092 v 0.18252 c 0,1.11504 0.243616,2.16788 0.666351,3.1243 -0.424637,-1.01996 -0.666351,-2.13457 -0.666351,-3.30682 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:8.21303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 38,60 V 18.25528 h 50.296273 l 7.202995,8.149513 0,41.333334 -20.039865,-0.237172"
id="path880"
sodipodi:nodetypes="cccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.7064;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 59.047415,22.454535 h 29.276158 c 0.540638,0 0.975881,0.432433 0.975881,0.969605 v 13.574652 c 0,0.537172 -0.435243,0.969604 -0.975881,0.969604 H 59.047415 c -0.540638,0 -0.975861,-0.432432 -0.975861,-0.969604 V 23.42414 c 0,-0.537172 0.435223,-0.969605 0.975861,-0.969605 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.21303;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 79.179778,1.6047921 0,24.8000009 c 0,4.365542 3.83462,8.266666 8.159745,8.266666 l 24.479237,0 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:8.21303;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 95.499266,42.938126 62.890642,42.922546 62.829932,63.00575"
id="path3265"
sodipodi:nodetypes="ccc" />
<g
id="g34146"
transform="matrix(0.49513984,0,0,0.49196619,6.1570773,-1.6642963)"
style="stroke-width:4.16019">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.37797;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625008,111.64067 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 v -79.27809 c 0,-11.67564 11.848079,-23.67564 23.625008,-23.67564 z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 114.27975,174.67818 H 98.279754"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 114.27975,208.28482 H 98.279753"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.16019;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 106.27975,112.50588 v 25.20498 h 16.47968 v -20.69128 c -4.95653,-2.16325 -10.5184,-3.71639 -16.47968,-4.5137 z"
sodipodi:nodetypes="ccccc" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 59.745248,132.66987 v 16.80333 h 3.889188 68.324774 1.94459 c -0.1709,-5.95509 -0.82533,-11.61446 -1.88194,-16.80333 H 63.634436 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:16.6406;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 106.27974,141.07153 -32.959342,0"
id="path1209"
sodipodi:nodetypes="cc" />
<circle
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="64.588943"
cy="132.09024"
r="7.9999995" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 65.08056,115.86654 v 28 l -16.479677,22.40997 v 25.20499 l 16.479677,25.20498 v 16.80333"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 20.121206,174.67818 h 24"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:49.9221;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 89.800079,183.07985 H 40.361047 v 50.40996 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 38.087425,107.69832 h 70.804745 c 12.24732,0 22.1071,10.39172 22.1071,23.29983 v 87.84068 c 0,12.90811 -9.85978,23.03408 -22.1071,23.03408 H 38.087425 c -12.247329,0 -22.107092,-10.12597 -22.107092,-23.03408 v -87.84068 c 0,-12.90811 9.859763,-23.29983 22.107092,-23.29983 z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,466 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-schematic-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-schematic.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2136"
id="namedview30"
showgrid="true"
inkscape:zoom="90.509668"
inkscape:cx="14.915534"
inkscape:cy="19.633262"
inkscape:window-x="3840"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g34146"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.3967023,0,0,1.3594857,139.70236,104.36431)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,356.53575,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g937"
transform="scale(0.25)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 19.999999,2 42.374998,0.018191 23.624999,22.995487 v 63.511347 c 0,3.188368 -2.724454,5.476113 -6.000004,5.475119 l -59.999993,-0.0182 c -3.275544,-9.79e-4 -6,-2.651757 -6,-5.84012 V 7.8401242 c 0,-3.1883588 2.724458,-5.8361488 6,-5.8401242 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 83.985197,64.051174 15.937411,81.206539 v 6.935147 c 0,2.823538 2.302885,5.110104 5.146374,5.110104 H 78.83882 c 2.843473,0 5.146377,-1.92156 5.146377,-4.745099 z M 14.622761,88.276926 v 0.135416 c 0,0.827292 0.180863,1.608427 0.494707,2.318037 -0.315256,-0.756745 -0.494707,-1.583719 -0.494707,-2.453453 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 30.000007,44.273226 -3.54e-4,-26.293771 44.000348,0.04109 V 57.7853 H 57.976208"
id="path880"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21436;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 43.514047,17.175825 h 21.734994 c 0.401373,0 0.724503,0.320838 0.724503,0.719386 v 10.071531 c 0,0.398548 -0.32313,0.719385 -0.724503,0.719385 H 43.514047 c -0.401376,0 -0.724491,-0.320837 -0.724491,-0.719385 V 17.895211 c 0,-0.398548 0.323115,-0.719386 0.724491,-0.719386 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 62.000004,1.9997192 V 19.904686 c 0,3.327663 2.724351,6.100131 6.000069,6.095309 h 18.000216 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:3.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 71.999998,38.212679 H 47.640625 v 7.300166"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 71.81232,50.025198 H 49.008786"
id="path1203"
sodipodi:nodetypes="cc" />
<g
id="g34146"
transform="matrix(0.36759811,0,0,0.36500774,5.8535092,1.2698405)"
style="stroke-width:2.73001">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.4978;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 31.056874,112 h 78.749996 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 v 78.91876 c 0,13.11631 -10.53677,23.4056 -23.62501,23.4056 H 31.056874 C 17.96862,238 7.4318655,227.71071 7.4318655,214.5944 V 135.67564 C 7.4318655,124 19.279945,112 31.056874,112 Z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 109.213,177.33914 H 87.450098"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 109.213,199.25649 H 87.450098"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.73003;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 108.32472,112.42969 v 16.08829 h 10.70275 v -13.20721 c -3.21902,-1.38079 -6.83119,-2.37217 -10.70275,-2.88108 z"
sodipodi:nodetypes="ccccc" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.73003;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 56.160382,128.23161 v 10.72552 h 4 70.271488 2 c -0.17577,-3.80112 -0.84884,-7.41348 -1.93555,-10.72552 H 60.160382 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:10.92;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 102.97335,133.59437 -20.963976,2e-4"
id="path1209"
sodipodi:nodetypes="cc" />
<ellipse
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="65.11673"
cy="133.97975"
rx="16.322172"
ry="16.438007" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 65.687201,114.61821 v 26.81381 l -32.281708,24.11974 v 28 l 32.281708,24.1325 v 12"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 33.042854,155.4218 v 49.31402"
id="path1591"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 11.279957,177.33914 H 33.042854"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:32.76;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 76.56865,193.6404 H 38.366901 v 38.49211 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 33.734998,111.56778 h 74.785852 c 12.42941,0 22.43577,10.10545 22.43577,22.65797 v 75.52656 c 0,12.55252 -10.00636,22.39953 -22.43577,22.39953 H 33.734998 c -12.429414,0 -22.435766,-9.84701 -22.435766,-22.39953 v -75.52656 c 0,-12.55252 10.006352,-22.65797 22.435766,-22.65797 z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,465 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-schematic-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-schematic.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="32.90625"
inkscape:cy="16.671875"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g937"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.8441679,0,0,1.8323475,186.88651,139.96907)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g937"
transform="scale(0.25)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 29.983804,2 54.801752,0.024518 31.193814,30.99387 v 85.602122 c 0,4.29735 -3.5973,7.38085 -7.92224,7.37949 l -78.073326,-0.0245 c -4.324941,-0.001 -7.922238,-3.5741 -7.922238,-7.87146 V 9.871459 c 0,-4.2973461 3.597297,-7.873394 7.922238,-7.871459 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744906;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 114.98909,85.634252 21.902797,108.75666 v 9.34736 c 0,3.80563 3.101893,6.88753 6.931958,6.88753 h 79.222375 c 3.83004,0 6.93196,-2.58993 6.93196,-6.39556 z M 20.132016,118.2863 v 0.18252 c 0,1.11504 0.243616,2.16788 0.666351,3.1243 -0.424637,-1.01996 -0.666351,-2.13457 -0.666351,-3.30682 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 38,60 V 22 H 98 V 78 L 75.525996,77.762828"
id="path880"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21436;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 59.047415,22.454535 h 29.276158 c 0.540638,0 0.975881,0.432433 0.975881,0.969605 v 13.574652 c 0,0.537172 -0.435243,0.969604 -0.975881,0.969604 H 59.047415 c -0.540638,0 -0.975861,-0.432432 -0.975861,-0.969604 V 23.42414 c 0,-0.537172 0.435223,-0.969605 0.975861,-0.969605 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 84.290417,2 v 23.489433 c 0,4.365543 3.597111,8.002729 7.922232,7.996403 h 23.766711 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 96,54 H 66 l -0.05492,9.005751"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 97.35772,66 H 66.642279"
id="path1203"
sodipodi:nodetypes="cc" />
<g
id="g34146"
transform="matrix(0.49513984,0,0,0.49196619,6.0583219,1.0160676)"
style="stroke-width:2.02614">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.08033;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625008,111.64067 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 v -79.27809 c 0,-11.67564 11.848079,-23.67564 23.625008,-23.67564 z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 104.82452,180.87408 H 88.824524"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 104.82452,197.13536 H 88.824522"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.02614;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 117,112.42969 V 130 h 8 v -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z"
sodipodi:nodetypes="ccccc" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.02614;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 58.906404,128.15556 v 8 h 4 70.271486 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 62.906404 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:24.3136;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 108.94231,132.09024 H 84.706733"
id="path1209"
sodipodi:nodetypes="cc" />
<circle
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="64.588943"
cy="132.09024"
r="7.9999995" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 64,116 v 28 l -23.747546,24 v 28 L 64,220 v 12"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 40.274841,148.35152 v 65.04512"
id="path1591"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 16.157052,180.87408 h 24"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:24.3136;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 68.549681,201.20067 H 44.314103 v 24.39192 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 39.230339,107.69832 h 74.465281 c 12.88049,0 23.25001,10.39172 23.25001,23.29983 v 83.75633 c 0,12.90811 -10.36952,23.03408 -23.25001,23.03408 H 39.230339 c -12.880503,0 -23.250006,-10.12597 -23.250006,-23.03408 v -83.75633 c 0,-12.90811 10.369503,-23.29983 23.250006,-23.29983 z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,466 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-schematic-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-schematic.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2136"
id="namedview30"
showgrid="true"
inkscape:zoom="22.627417"
inkscape:cx="56.612737"
inkscape:cy="32.438524"
inkscape:window-x="3840"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g937"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7934046,0,0,2.7780752,273.40472,211.17892)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,356.53575,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g937"
transform="scale(0.25)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 34,2 118.75,2.037173 166,49.027878 V 178.81173 c 0,6.51535 -5.44891,11.1903 -12.00001,11.18827 L 34,189.9628 C 27.44891,189.9608 22,184.544 22,178.02866 V 13.934148 C 22,7.4188163 27.448916,2.0081235 34,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 164.05956,128.80032 23.534882,163.85688 v 14.1718 c 0,5.76983 4.682673,10.44237 10.464604,10.44237 H 153.59495 c 5.7819,0 10.46461,-3.92666 10.46461,-9.69649 z M 20.861682,178.30504 v 0.27672 c 0,1.69055 0.367765,3.28678 1.005933,4.73685 -0.641039,-1.54639 -1.005933,-3.23629 -1.005933,-5.01357 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 48.000738,87.483708 48.000001,32 139.99997,32.08671 v 83.90946 h -33.50402"
id="path880"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 79.609041,33.011715 h 44.195799 c 0.81615,0 1.4732,0.655624 1.4732,1.470046 v 20.580923 c 0,0.814422 -0.65705,1.470046 -1.4732,1.470046 H 79.609041 c -0.816157,0 -1.473177,-0.655624 -1.473177,-1.470046 V 34.481761 c 0,-0.814422 0.65702,-1.470046 1.473177,-1.470046 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 118,1.9997179 V 37.809441 c 0,6.655285 5.44867,12.200189 12.00007,12.190544 h 36.00022 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 135.12869,76 H 88 v 14.917707"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 137.15057,95.984358 H 90.782008"
id="path1203"
sodipodi:nodetypes="cc" />
<g
id="g34146"
transform="matrix(0.74747167,0,0,0.74588422,3.03034,0.50823155)"
style="stroke-width:1.33927">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.69708;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 31.056874,112 h 78.749996 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 v 78.91876 c 0,13.11631 -10.53677,23.4056 -23.62501,23.4056 H 31.056874 C 17.96862,238 7.4318655,227.71071 7.4318655,214.5944 V 135.67564 C 7.4318655,124 19.279945,112 31.056874,112 Z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 102.92487,181.64683 H 86.924894"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 102.9591,197.74083 H 86.93348"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33928;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 108.32472,112.42969 v 16.08829 h 10.70275 v -13.20721 c -3.21902,-1.38079 -6.83119,-2.37217 -10.70275,-2.88108 z"
sodipodi:nodetypes="ccccc" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33928;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 56.160382,122.66216 v 10.72552 h 4 70.271488 2 c -0.17577,-3.80112 -0.84884,-7.41348 -1.93555,-10.72552 H 60.160382 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:21.4283;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 102.97335,128.02492 H 76.216481"
id="path1209"
sodipodi:nodetypes="cc" />
<ellipse
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="60.162361"
cy="128.02492"
rx="10.702745"
ry="10.725525" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 60.162359,117.2994 v 26.81381 L 33.405493,168 v 28 l 25.966517,24 v 12"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 33.378133,154.83873 0.02736,53.62763"
id="path1591"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 14.675687,181.65255 h 16.05412"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:16.0712;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 70.86511,203.10359 H 44.108242 v 26.81381 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:5.35706;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 32.403894,114.61516 h 76.922426 c 12.7845,0 23.07674,10.33718 23.07674,23.17755 v 77.2585 c 0,12.84037 -10.29224,22.91319 -23.07674,22.91319 H 32.403894 c -12.784512,0 -23.0767375,-10.07282 -23.0767375,-22.91319 v -77.2585 c 0,-12.84037 10.2922255,-23.17755 23.0767375,-23.17755 z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,463 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-schematic-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-schematic.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="16"
inkscape:cx="-8"
inkscape:cy="31.53125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g937"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g937"
transform="scale(0.25)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 113,0.049837 63,62.9999999 V 239.04984 c 0,8.73506 -7.26521,15.00272 -16,15 L 46,254 c -8.734786,-0.003 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 220,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 160 c 7.73527,0 14,-5.26444 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 64.001009,117.98299 64.000048,44.003817 183.99999,44.119422 V 156.00007 H 140.2991"
id="path880"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 158,2 v 47.746031 c 0,8.873664 7.26484,16.266828 15.99999,16.253968 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 183.99999,106.00392 h -63.05081 v 20.00003"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 183.99999,128.00395 H 121.96612"
id="path1203"
sodipodi:nodetypes="cc" />
<g
id="g34146">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.01385;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,124 23.848079,112 35.625008,112 Z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 108,188 H 92"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 108,200 H 92"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 117,112.42969 V 130 h 8 v -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z"
sodipodi:nodetypes="ccccc" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 60.728516,124 v 8 h 4 H 135 h 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 64.728516 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:16;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 103.87935,128 H 84.021606"
id="path1209"
sodipodi:nodetypes="cc" />
<circle
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="64.012535"
cy="128"
r="7.9999995" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 64,116 v 28 l -24,24 v 28 l 24,24 v 12"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 40,152 0.02736,60"
id="path1591"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 16,182 H 40"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 68,204 H 48 v 20 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 37.250006,114 H 114.74999 C 127.63048,114 138,124.39172 138,137.29983 v 77.66609 C 138,227.87403 127.63048,238 114.74999,238 H 37.250006 C 24.369503,238 14,227.87403 14,214.96592 V 137.29983 C 14,124.39172 24.369503,114 37.250006,114 Z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,23 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
viewBox="0 0 256 256"
version="1.1"
sodipodi:docname="icon_eeschema.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_48/icon_eeschema.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
width="48"
height="48">
sodipodi:docname="application-x-kicad-schematic.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="256"
height="256"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -27,28 +25,36 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2921"
inkscape:window-height="1681"
id="namedview44"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="11.313709"
inkscape:cx="5.5407053"
inkscape:cy="19.836494"
inkscape:window-x="299"
inkscape:window-y="334"
inkscape:window-maximized="0"
inkscape:current-layer="g904"
inkscape:snap-global="true"
inkscape:zoom="1.8955546"
inkscape:cx="78.604963"
inkscape:cy="165.38695"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-nodes="false">
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid869"
color="#9696ff"
opacity="0.1254902"
empspacing="2"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5" />
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata43">
@ -60,7 +66,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>add_arc</dc:title>
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
@ -80,157 +86,368 @@
</rdf:RDF>
</metadata>
<defs
id="defs5">
id="defs159429">
<marker
style="overflow:visible"
id="marker3727"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotS"
inkscape:isstock="true">
<path
transform="matrix(0.2,0,0,0.2,1.48,0.2)"
style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path3725" />
</marker>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style3">.cls-1{fill:#b9b9b9;}.cls-2,.cls-3,.cls-4,.cls-5{fill:none;stroke-linejoin:round;}.cls-2,.cls-5{stroke:#333;}.cls-2,.cls-3{stroke-linecap:round;}.cls-2,.cls-4,.cls-5{stroke-width:1.9097px;}.cls-3,.cls-4{stroke:#545454;}.cls-3{stroke-width:0.9549px;}.cls-5{stroke-linecap:square;}.cls-6{fill:#333;}.cls-7{fill:#1a81c4;}</style>
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath934">
id="clipPath1720">
<rect
style="fill:#e5d7c7;fill-opacity:1;stroke-width:2;stroke-linejoin:round"
id="rect936"
width="48"
height="48"
x="0"
y="0"
rx="7.8340001" />
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2395">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2393"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-5"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-3"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2461"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2457"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2459"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-0">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-9"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2473">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2471"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-7"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-36"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-1"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient2612"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop2608"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop2610"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1720-7">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1722-8"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath2624">
<rect
style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2622"
width="16"
height="16"
x="8"
y="4.9999995"
ry="2.6555922" />
</clipPath>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-53"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5976">
<stop
style="stop-color:#d0c5ac;stop-opacity:1;"
offset="0"
id="stop5972" />
<stop
style="stop-color:#d0c5ac;stop-opacity:0;"
offset="1"
id="stop5974" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5976"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title7">icon_eeschema</title>
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g903"
clip-path="url(#clipPath909)">
<g
id="g881">
<g
id="g904"
clip-path="url(#clipPath934)">
<rect
style="fill:#d0c5ac;fill-opacity:1;stroke-width:2;stroke-linejoin:round"
id="rect853"
width="48"
height="48"
x="0"
y="0"
rx="7.8340001" />
<line
class="cls-2"
x1="23"
y1="9.6126261"
x2="23"
y2="26.352333"
id="line11"
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="line15"
style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.915665,5.5392616 c -1.857484,0 -3.714968,0 -5.572451,0"
inkscape:connector-curvature="0" />
<line
class="cls-3"
x1="36.838913"
y1="36.472931"
x2="27.438713"
y2="36.472931"
id="line17"
style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<line
class="cls-3"
x1="33.034874"
y1="31.582617"
x2="27.394508"
y2="31.582617"
id="line19"
style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="line21"
style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
d="M -1.2427636,34 H 11.960479"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<line
class="cls-2"
x1="15.539998"
y1="27.666437"
x2="15.539998"
y2="40.375622"
id="line23"
style="fill:none;stroke:#333333;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<line
class="cls-5"
x1="22"
y1="21"
x2="32.408836"
y2="21"
id="line25"
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="line27"
style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
d="M 23,48.6 V 42.127671"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
class="cls-6"
d="m 25.300296,20.999988 a 2.3202959,2.3701527 0 1 1 -2.320047,-2.370025 2.3202959,2.3701527 0 0 1 2.320047,2.370025 z"
id="path29"
style="fill:#333333;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0" />
<rect
class="cls-7"
x="20"
y="-2.0935922"
width="6"
height="14.093592"
id="rect31"
style="fill:#db295b;fill-opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
ry="0.55945843" />
<path
id="line35"
style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 23,26.6 -7.460001,4.519998"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
id="line37"
style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 22.191062,40.699911 15.539999,36.759998"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<line
class="cls-2"
x1="10.070891"
y1="34.000008"
x2="14.900987"
y2="34.000008"
id="line41"
style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#db295b;fill-opacity:1;stroke:#e10b4f;stroke-width:0.19999938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="0.34991295"
inkscape:transform-center-y="-0.73247214"
d="m 24.000001,42.356932 c -0.330205,0.01846 -5.237723,0.455024 -5.259989,0.305536 -0.02227,-0.149486 3.172685,-5.524944 3.304179,-5.526509 0.131491,-0.0016 2.065038,5.069921 1.955806,5.220971 z"
id="path873"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
id="line879"
style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
d="M 49,21 H 37.16"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<rect
class="cls-7"
x="18"
y="-42"
width="6"
height="12"
transform="rotate(90)"
id="rect33"
style="fill:#db295b;fill-opacity:1;stroke-width:1"
ry="0.5" />
</g>
</g>
id="g937">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 65.000945,118 65,46 182.95684,46.112513 V 155 H 140"
id="path880"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 183,108 h -62 v 20"
id="path3265"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 183,130 H 122"
id="path1203"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.01385;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.536754,112 35.625008,112 Z"
id="path1600"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 110,190 H 94"
id="path1205"
sodipodi:nodetypes="cc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 110,202 H 94"
id="path1207"
sodipodi:nodetypes="cc" />
<path
id="path1608"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 117,112.42969 V 130 v 4 h 8 v -4 -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z" />
<path
id="path1614"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 60.728516,126 v 8 h 4 H 135 h 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 64.728516 Z"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 104,130 H 83"
id="path1209"
sodipodi:nodetypes="cc" />
<circle
style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path1587"
cx="65"
cy="130"
r="7.9999995" />
<path
style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 65,117 v 27 l -22,22 v 31 l 22,22 v 13"
id="path1589"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 43,152 v 60"
id="path1591"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 16,182 H 42"
id="path1593"
sodipodi:nodetypes="cc" />
<path
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 72,206 H 52 v 20 z"
id="path1211" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.536754,112 35.625008,112 Z"
id="path1630"
sodipodi:nodetypes="sssssssss" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,194 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-symbol-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="64"
inkscape:cx="2.6875"
inkscape:cy="5.6328125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.86252495,0,0,0.88679508,79.626726,68.772428)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881"
transform="matrix(0.25,0,0,0.25,2,0)">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 8,2 23.410526,-1e-7 L 46,17.000001 46.015089,56.60584 C 46.015881,58.685614 42.022795,62 40,62 H 8 C 4,62 2,60 2,56 V 8 C 2,4 4,2 8,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 17.881141,14.021127 h -6.526485 c -1.3563281,0 -1.3563281,1.154081 -1.3563281,1.154081 v 13.952454 c 0,0 0,0.923264 1.3563281,0.923264 H 36.643672 C 38,30.050926 38,28.896845 38,28.896845 V 14.944393 c 0,0 -0.0016,-1.223246 -1.356328,-1.154081 l -4.521091,0.230815"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 18.280969,14 v 0.0082 a 4,4 45 0 0 4,4 h 8.222911 a 4,4 135 0 0 4,-4 V 14 a 4,4 45 0 0 -4,-4.0000004 h -8.222911 a 4,4 135 0 0 -4,4.0000004 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="M 18.280969,9.9999996 V 18.00823 H 34.50388 V 9.9999996 Z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.369634;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 44.000001,43.109806 4,53.657586 v 4.263997 c 0,1.736022 1.3472444,3.141893 3.0107525,3.141893 H 40.989246 c 1.663506,0 3.019931,-1.18148 3.010755,-2.917473 z M 3.2308986,58.004732 v 0.08326 c 0,0.508651 0.1058086,0.988918 0.2894154,1.425216 -0.1844322,-0.465277 -0.2894154,-0.97373 -0.2894154,-1.508481 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 38,38 H 15.587817"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.63433;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 20.624336,11.716031 h 14.581221 c 0.269269,0 0.486045,0.214875 0.486045,0.481794 v 6.745195 c 0,0.266919 -0.216776,0.481793 -0.486045,0.481793 H 20.624336 c -0.269269,0 -0.486036,-0.214874 -0.486036,-0.481793 v -6.745195 c 0,-0.266919 0.216767,-0.481794 0.486036,-0.481794 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 30.031809,2.0309416 V 13.944366 c 0,2.214127 1.81262,4.058843 3.992096,4.055635 h 11.976291 z"
sodipodi:nodetypes="csscc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:1.01042;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 8.5276506,20.504355 v 1.132398 6.845538 H -2.9408988 c -1.5211472,0 -4.3726354,2.689285 -4.3726354,3.517709 l -0.033891,4.031614 v 1.132399 h 2.8079079 v -1.132399 l 0.066291,-3.191925 c 0.020245,-0.974787 1.6267183,-0.943566 2.0436605,-0.943566 H 8.8176556 L -2.7009341,49.135962 c -0.4658215,0.754801 0.086022,1.720867 0.9829044,1.720703 H 8.6160389 v 11.50573 1.132394 H 11.313462 V 62.362396 50.856667 h 10.731816 c 0.896878,1.63e-4 1.448721,-0.965903 0.9829,-1.720703 L 11.509593,31.896136 h 12.83536 1.149838 V 28.482291 H 24.344953 11.490239 v -6.845538 -1.132398 z m 1.6359734,13.594629 9.8365,14.492896 H 0.32712381 Z"
sodipodi:nodetypes="cccccccccsscccccccccccccccccccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,184 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-symbol-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="45.254834"
inkscape:cx="4.4194174"
inkscape:cy="13.821728"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.3335968,0,0,1.3602087,126.00227,104.40851)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881"
transform="matrix(0.25,0,0,0.25,2,0)">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 11.708288,1.9897617 h 39.744305 l 22.55758,23.0077163 v 63.545117 c 0,3.190066 -2.601352,5.478028 -5.728907,5.478028 H 11.708288 c -3.1275498,0 -5.728908,-2.653168 -5.728908,-5.843222 V 7.8329914 c 0,-3.1900541 2.6013612,-5.839252 5.728908,-5.8432297 z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 33.367157,21.919592 H 16.329114 c -2.27174,0 -2.27174,1.650721 -2.27174,1.650721 v 25.109113 c 0,0 0,1.320574 2.27174,1.320574 H 63.728258 C 66,50 66,48.349282 66,48.349282 V 23.240168 c 0,0 -0.0035,-1.765788 -2.271742,-1.65072 l -6.507838,0.330144"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 33.998944,21 v 2 a 3,3 45 0 0 3,3 h 15.989645 a 3,3 135 0 0 3,-3 v -2 a 3,3 45 0 0 -3,-3 H 36.998944 a 3,3 135 0 0 -3,3 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="m 33.998944,18 v 8 h 21.989645 v -8 z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731648;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 72.056302,64.728393 7.9922295,81.638095 v 5.51001 c 0,2.783107 2.2252295,5.036934 4.9728285,5.036934 h 54.118419 c 2.74758,0 4.972825,-1.894047 4.972825,-4.677151 z M 6.7219112,87.281413 v 0.13348 c 0,0.815443 0.1747642,1.585391 0.4780253,2.284839 -0.3046259,-0.745906 -0.4780253,-1.56104 -0.4780253,-2.418319 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 54.126441,61.96329 H 30.31745"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21434;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 35.105184,17.339578 h 21.669712 c 0.40017,0 0.722331,0.324352 0.722331,0.727265 v 10.181853 c 0,0.402915 -0.322161,0.727266 -0.722331,0.727266 H 35.105184 c -0.400169,0 -0.722315,-0.324351 -0.722315,-0.727266 V 18.066843 c 0,-0.402913 0.322146,-0.727265 0.722315,-0.727265 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 50.000001,1.9997146 V 19.904677 c 0,3.327662 2.724349,6.100129 6.000074,6.095306 h 18.000206 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 54,42 H 26"
id="path876"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 54,34.068474 H 26"
id="path878"
sodipodi:nodetypes="cc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2.00001;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 21.013101,37.066274 v 1.117888 10.766001 H 7.1033847 c -0.936681,0 -1.6537993,0.250327 -2.1060689,0.700137 -0.2261348,0.224897 -0.3646006,0.481587 -0.4354104,0.69285 -0.07081,0.211273 -0.081228,0.470155 -0.081228,0.470155 v 5.589438 1.117886 h 2.2480349 v -1.117886 -5.184057 c 0.010469,-0.0059 -0.032907,-0.0328 0.3746723,-0.0328 H 20.821374 L 9.5614412,69.457699 c -0.4553595,0.745125 0.084091,1.698826 0.9608298,1.69866 h 10.49083 v 11.43933 1.11789 h 2.248035 v -1.11789 -11.43933 h 10.490828 c 0.876741,1.66e-4 1.41619,-0.953535 0.960831,-1.69866 L 23.452862,51.185938 h 12.547137 1.124018 V 48.950163 H 36 23.261136 V 38.184162 37.066274 Z m 1.124017,16.272465 9.615617,15.581887 H 12.521501 Z"
sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,204 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-symbol-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="45.254834"
inkscape:cx="15.733126"
inkscape:cy="27.124174"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.8034613,0,0,1.83271,180.31043,139.99636)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881"
transform="matrix(0.25,0,0,0.25,2,0)">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 25.747369,2 H 79.494737 L 110,33.000001 V 118.61905 C 110,122.91725 106.48211,126 102.25263,126 H 25.747369 C 21.517893,126 18,122.42519 18,118.12698 V 9.8730161 C 18,5.5748199 21.517897,2.0053592 25.747369,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 51.832465,29.930414 H 29.09809 c -3.03125,0 -3.03125,2.385095 -3.03125,2.385095 v 35.776416 c 0,0 0,1.908075 3.03125,1.908075 h 64.666668 c 3.03125,0 3.03125,-2.385094 3.03125,-2.385094 V 31.838491 c 0,0 -0.0035,-2.528022 -3.03125,-2.385095 l -10.104167,0.477018"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 54.105434,26.14078 v 8.166667 a 4,4 45 0 0 4,4 h 22.3125 a 4,4 135 0 0 4,-4 V 26.14078 a 4,4 45 0 0 -4,-4 h -22.3125 a 4,4 135 0 0 -4,4 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="m 54.105434,22.14078 v 16.166667 h 30.3125 V 22.14078 Z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.369634;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 108,86.895836 19.942607,108.69453 v 8.81224 c 0,3.58777 2.96587,6.49323 6.627976,6.49323 h 74.801437 c 3.6621,0 6.64818,-2.44172 6.62798,-6.02943 z M 18.24948,117.67861 v 0.17208 c 0,1.05121 0.232932,2.04376 0.637129,2.94544 -0.406015,-0.96157 -0.637129,-2.01237 -0.637129,-3.11752 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 90.01823,82 H 37.98177"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.63433;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 55.983927,22.015523 h 29.871479 c 0.551632,0 0.995725,0.444073 0.995725,0.995704 v 13.940037 c 0,0.551631 -0.444093,0.995704 -0.995725,0.995704 H 55.983927 c -0.551632,0 -0.995705,-0.444073 -0.995705,-0.995704 V 23.011227 c 0,-0.551631 0.444073,-0.995704 0.995705,-0.995704 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 78,1.9997225 V 25.872941 c 0,4.436869 3.632452,8.133483 8.00007,8.127053 h 24.00022 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 89.79845,57.973362 H 37.761991"
id="path876"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 89.886838,46.113526 H 37.850379"
id="path878"
sodipodi:nodetypes="cc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:1.01042;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 24.374439,49.890029 v 1.515625 17.177083 H 8.0050564 C 6,68.582737 4.4685979,70.891221 4.4685979,72 v 6.686904 1.515625 H 7.499848 V 78.686904 71.65839 c 0,0 0.658753,-0.04441 1.2083334,-0.04441 H 24.115914 L 8.9330181,97.261163 c -0.6140091,1.01024 0.1133876,2.303244 1.2955869,2.303024 h 14.145834 v 17.055713 1.51562 h 3.03125 V 116.6199 99.564187 h 14.145833 c 1.182196,2.2e-4 1.90959,-1.292784 1.295583,-2.303024 L 27.664213,71.613987 h 16.918559 1.515625 v -3.03125 H 44.582772 27.405689 V 51.405654 49.890029 Z M 25.890064,74.532748 38.855762,96.53295 H 12.924365 Z"
sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-symbol-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../48x48/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="45.254834"
inkscape:cx="21.831922"
inkscape:cy="26.903203"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF />
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.745206,0,0,2.7792344,269.04626,211.24558)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881"
transform="matrix(0.25,0,0,0.25,2,0)">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 33.772327,1.97938 h 81.813563 l 46.43473,47.010312 V 178.82769 c 0,6.51807 -5.35488,11.19293 -11.79294,11.19293 H 33.772327 c -6.438055,0 -11.792946,-5.42106 -11.792946,-11.93911 V 13.918507 c 0,-6.5180498 5.354896,-11.931 11.792946,-11.939127 z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 78.903168,44.045715 H 44.953945 c -4.526564,0 -4.526564,3.769842 -4.526564,3.769842 v 57.343083 c 0,0 0,3.01587 4.526564,3.01587 H 139.3993 c 4.52657,0 4.52657,-3.76984 4.52657,-3.76984 V 47.061589 c 0,0 -0.007,-4.032629 -4.52657,-3.769842 l -12.96722,0.753968"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 79.657595,35.070611 0,18.126985 a 3,3 45 0 0 3,3 l 39.265635,0 a 3,3 135 0 0 3,-3 V 35.070611 a 3,3 45 0 0 -3,-3 H 82.657595 a 3,3 135 0 0 -3,3 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="M 79.657595,32.070611 V 56.197596 H 124.92323 V 32.070611 Z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 160,130.16953 -135.999999,34.5506 v 13.96726 c 0,5.68656 4.580629,10.29167 10.23656,10.29167 H 149.76345 c 5.65589,0 10.26774,-3.87008 10.23655,-9.55655 z M 21.385055,178.95977 v 0.27273 c 0,1.66615 0.359751,3.23934 0.984012,4.66848 -0.627069,-1.52407 -0.984012,-3.18958 -0.984012,-4.94121 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 133.59914,127.86078 H 55.893139"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 81.934788,33.342754 h 44.607052 c 0.82375,0 1.48692,0.66273 1.48692,1.485979 v 20.803983 c 0,0.823249 -0.66317,1.485979 -1.48692,1.485979 H 81.934788 c -0.823751,0 -1.486885,-0.66273 -1.486885,-1.485979 V 34.828733 c 0,-0.823249 0.663134,-1.485979 1.486885,-1.485979 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 114,1.9997228 V 37.809446 c 0,6.655285 5.44867,12.200189 12.00008,12.190544 h 36.00021 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 133.22193,91.935452 H 55.515925"
id="path876"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 133.22193,72.072454 H 55.515925"
id="path878"
sodipodi:nodetypes="cc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 38.153489,80.88909 v 2.284114 21.997536 H 9.7947249 c -1.9096806,0 -3.3717224,0.51148 -4.2937979,1.43055 -0.4610377,0.45952 -0.7433381,0.984 -0.8877033,1.41566 -0.1443651,0.43168 -0.1656051,0.96064 -0.1656051,0.96064 v 11.42057 2.28411 h 4.5832343 v -2.28411 -10.59228 c 0.021343,-0.0121 -0.06709,-0.067 0.763872,-0.067 H 37.7626 l -22.956454,36.12053 c -0.928375,1.52247 0.171441,3.47111 1.958915,3.47077 h 21.388428 v 23.37331 2.28412 h 4.583234 v -2.28412 -23.37331 h 21.388426 c 1.787475,3.4e-4 2.88729,-1.9483 1.958915,-3.47077 L 43.127611,109.73897 H 68.708383 71 v -4.56823 H 68.708384 42.736723 V 83.173204 80.88909 Z m 2.291616,33.24857 19.604068,30.62438 H 20.841037 Z"
sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,204 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-symbol-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="39.65625"
inkscape:cy="32.828125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g868"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6861422,0,0,3.6861422,361.72995,279.53242)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881"
transform="matrix(0.25,0,0,0.25,2,0)">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 45.814433,1.9793814 H 155.6701 L 218.02062,64.329897 V 236.53608 c 0,8.64501 -7.19031,14.84536 -15.83505,14.84536 H 45.814433 c -8.644737,0 -15.835052,-7.19004 -15.835052,-15.83505 V 17.814433 c 0,-8.6449917 7.190322,-15.8242727 15.835052,-15.8350516 z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 103,60 H 58 c -6,0 -6,5 -6,5 v 75 c 0,0 0,4 6,4 h 128 c 6,0 6,-5 6,-5 V 64 c 0,0 -0.007,-5.299626 -6,-5 l -20,1"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 104,48 v 24 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 V 48 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="m 104,44 v 32 h 60 V 44 Z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 216,172 31.96227,217.825 v 18.525 c 0,7.54217 6.198591,13.65 13.852303,13.65 H 202.1477 c 7.65366,0 13.89449,-5.13295 13.8523,-12.675 z M 28.423676,236.71126 v 0.36172 c 0,2.20984 0.486822,4.29639 1.331584,6.19188 -0.848562,-2.0214 -1.331584,-4.23039 -1.331584,-6.5536 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175.5,168 H 72.5"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 154,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,120 H 72"
id="path876"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 175,96 H 72"
id="path878"
sodipodi:nodetypes="cc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 49,104 v 3 34 H 11.875 c -2.5,0 -4.413987,0.6718 -5.6210938,1.87891 -0.6035533,0.60355 -0.9731182,1.2924 -1.1621093,1.85937 C 4.9028058,145.30525 4.875,146 4.875,146 v 15 3 h 6 v -3 -13.91211 c 0.02794,-0.0159 -0.08783,-0.0879 1,-0.0879 H 48.488281 L 18.435547,194.44141 C 17.220193,196.44106 18.659983,199.00044 21,199 h 28 v 37.08398 3 h 6 v -3 V 199 h 28 c 2.340017,4.4e-4 3.779807,-2.55894 2.564453,-4.55859 L 55.511719,147 H 89 92 v -6 H 89 55 v -34 -3 z M 52,152.77734 77.664062,193 H 26.335938 Z"
sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,200 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 256 256"
version="1.1"
sodipodi:docname="application-x-kicad-symbol.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="256"
height="256"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-symbol.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="4"
inkscape:cx="178.75"
inkscape:cy="196.875"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g881">
<g
id="g868">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 105,59 H 60 c -6,0 -6,5 -6,5 v 75 c 0,0 0,5 6,5 43,0 129,0 129,0 6,0 6,-5 6,-5 V 64 c 0,0 0,-5 -6,-5 h -21"
id="path880"
sodipodi:nodetypes="csccssccsc" />
<path
style="fill:none;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 105,46 v 26 a 3,3 45 0 0 3,3 h 57 a 3,3 135 0 0 3,-3 V 46 a 3,3 45 0 0 -3,-3 h -57 a 3,3 135 0 0 -3,3 z"
id="path882"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect884"
inkscape:original-d="m 105,43 v 32 h 63 V 43 Z" />
<path
id="path5956"
style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 176,170 H 73"
id="path5251-4"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z"
id="path6035" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 176,119 H 73"
id="path876"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 176,95 H 73"
id="path878"
sodipodi:nodetypes="cc" />
<path
id="path852"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 51,104 v 3 34 H 11 c -2.5,0 -4.413987,0.6718 -5.6210938,1.87891 -0.6035533,0.60355 -0.9731182,1.2924 -1.1621093,1.85937 C 4.0278058,145.30525 4,146 4,146 v 15 3 h 6 v -3 -13.91211 C 10.027938,147.07196 9.9121745,147 11,147 H 50.488281 L 20.435547,196.44141 A 3.0003,3.0003 0 0 0 23,201 h 28 v 35.08398 3 h 6 v -3 V 201 h 28 a 3.0003,3.0003 0 0 0 2.564453,-4.55859 L 57.511719,147 H 91 94 v -6 H 91 57 v -34 -3 z M 54,152.77734 79.664062,195 H 28.335938 Z" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,296 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 16 16"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet-16.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="16"
height="16"
inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="90.509668"
inkscape:cx="5.2922523"
inkscape:cy="9.7392911"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1031"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.7860925,0,0,1.8012061,174.26535,137.63725)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0417211,0,0,1.0708924,95.014278,164.92471)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031"
transform="matrix(0.25,0,0,0.25,2.46875,0.125)">
<g
id="g1135"
transform="matrix(0.48435227,0,0,0.49207345,-6.4225245,0.50945114)"
style="stroke-width:2.03777">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.1934;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 21.19086,2.0130102 H 74.420601 L 104.63208,32.480128 V 116.6274 c 0,4.22432 -3.48402,7.25408 -7.67276,7.25408 H 21.19086 c -4.188742,0 -7.672756,-3.51336 -7.672756,-7.73768 V 9.7506902 c 0,-4.224311 3.484017,-7.732413 7.672756,-7.73768 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:1.51795;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 100.23185,84.222574 13.500229,105.17224 v 8.46902 c 0,3.44803 2.921216,6.24033 6.528187,6.24033 h 73.675246 c 3.606953,0 6.548078,-2.34662 6.528188,-5.79459 z M 11.832592,113.80641 v 0.16538 c 0,1.01025 0.229426,1.96416 0.627537,2.83071 -0.399902,-0.92411 -0.627537,-1.93399 -0.627537,-2.99609 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.1934;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 89.085786,18.270746 H 28.793396"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.1934;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 87.844173,34.528481 H 27.551783"
id="path961"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.19341;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 97.344238,58.915084 H 71.327269"
id="path961-8"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.19337;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 96.102625,79.237253 H 71.327269"
id="path961-4"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.1934;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 71.327265,2.0246102 V 25.465608 c 0,4.356541 3.781945,7.986227 8.329301,7.979914 h 24.987894 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1;stroke-width:2.03777" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 1.5124071,25.521656 H 24.135294 c 3.759924,0 6.786871,3.018293 6.786871,6.767476 v 22.558235 c 0,3.749186 -3.026947,6.69029 -6.786871,6.69029 H 1.5124071 c -3.759927,0 -6.7868701,-2.941104 -6.7868701,-6.69029 V 32.289132 c 0,-3.749183 3.0269431,-6.767476 6.7868701,-6.767476 z"
id="path971" />
<path
id="path969"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 4.6971748,23.577959 c -1.9565498,0.0081 -4.01478763,-0.0557 -5.7664765,0.975285 -3.0807499,1.57631 -5.0880926,5.046003 -4.8004438,8.530448 0.011143,7.604475 -0.084494,15.214885 0.088365,22.815452 0.565475,4.384689 4.85494032,7.817056 9.2229674,7.476636 7.6922661,-0.0054 15.3895451,0.08727 23.0784841,-0.08117 4.333735,-0.508219 7.907213,-4.697721 7.584674,-9.107717 -0.0096,-7.682681 0.08973,-15.371227 -0.08774,-23.050033 -0.553567,-4.412738 -4.864054,-7.901104 -9.263143,-7.570717 -6.685569,0.0039 -13.371182,-0.002 -20.0566861,0.01187 z m -1.6559522,4.330755 c 7.6858614,0.09104 15.3764284,-0.06202 23.0625114,0.107256 2.326958,0.377347 3.99132,2.804886 3.643981,5.127785 -0.005,7.423888 0.078,14.853111 -0.06433,22.273495 -0.358957,2.357959 -2.845105,3.904708 -5.120942,3.602526 -7.508704,-0.03844 -15.0244564,0.08897 -22.5285453,-0.0999 -2.30827882,-0.385764 -3.9041544,-2.814812 -3.5533663,-5.106713 0.013987,-7.410164 -0.069029,-14.82594 0.076622,-22.232398 0.3462392,-2.106334 2.39537769,-3.683913 4.4840702,-3.67205 z" />
<g
id="g987"
style="stroke:#1a81c4;stroke-width:19.3838;stroke-opacity:1"
transform="matrix(0.05703514,0,0,-0.04666324,12.759526,62.749958)">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 20.139954,28.000455 11.314101,43.860858 H 28.965808 Z"
id="path989"
sodipodi:nodetypes="cccc" />
<ellipse
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="4.1328773"
cy="37.571522"
rx="5.9921231"
ry="5.873498" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,306 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24 24"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet-24.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="24"
height="24"
inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="45.254834"
inkscape:cx="7.4025241"
inkscape:cy="18.462116"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1031"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.3181368,0,0,1.3675354,124.8354,220.00933)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031"
transform="matrix(0.25,0,0,0.25,2.46875,0.125)">
<g
id="g1135"
transform="matrix(0.35813523,0,0,0.36495751,-6.63433,0.76589948)"
style="stroke-width:2.75171">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:11.064;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:2.04978;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 214.33058,172 31.930777,217.01162 v 18.19618 c 0,7.4083 6.143423,13.40772 13.729017,13.40772 H 200.60156 c 7.58555,0 13.77083,-5.04184 13.72902,-12.45002 z M 28.423676,235.56265 v 0.3553 c 0,2.17062 0.48249,4.22013 1.319733,6.08197 -0.84101,-1.98552 -1.319733,-4.1553 -1.319733,-6.43727 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,46.160125 H 63"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,67.581927 H 63"
id="path953"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,89.240696 H 63"
id="path955"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,111.39952 H 63"
id="path957"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,133.55313 H 63"
id="path959"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,155.22236 H 63"
id="path961"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:11.064;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 152.84878,2.0626088 V 51.045549 c 0,9.103545 7.61897,16.688236 16.77989,16.675044 h 50.33967 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1;stroke-width:2.75171" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 6.5232535,41.990397 H 35.149014 c 4.757601,0 8.587737,3.854376 8.587737,8.642101 v 28.806993 c 0,4.78773 -3.830136,8.543533 -8.587737,8.543533 H 6.5232535 c -4.757606,0 -8.5877335,-3.755803 -8.5877335,-8.543533 V 50.632498 c 0,-4.787725 3.8301275,-8.642101 8.5877335,-8.642101 z"
id="path971" />
<path
id="path969"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 24.566501,39.499692 c -6.680127,0.01147 -13.361696,-0.03928 -20.0407697,0.05738 -5.52110116,0.110041 -10.4497209,4.867669 -10.3694224,10.111546 -0.074322,4.36325 -0.00215,8.728339 -0.031309,13.092448 0.012058,5.441986 -0.035153,10.88854 0.1007118,16.327358 0.6185202,4.893531 5.46512791,8.905628 10.6720602,8.863255 3.6385013,0.08177 7.2795601,-0.0085 10.9192451,0.03135 6.924108,-0.01919 13.853657,0.05573 20.774102,-0.09925 5.106692,-0.566268 9.537893,-4.948697 9.500161,-9.88257 0.09256,-3.764381 -0.0032,-7.531051 0.03342,-11.296468 -0.01618,-6.071012 0.05152,-12.146444 -0.09802,-18.214412 -0.630924,-5.09459 -5.804152,-9.273011 -11.238061,-8.96816 -3.407139,-0.04871 -6.814734,-0.02617 -10.222114,-0.02247 z m -19.1816557,4.02605 c 10.2067207,0.01406 20.4170607,-0.03151 30.6214547,0.05828 3.342264,0.397729 6.124881,3.43271 5.813925,6.653669 0.02139,9.434519 0.05227,18.869885 -0.0446,28.304239 -0.373308,3.180922 -3.710559,5.647119 -7.053681,5.380843 -8.546065,0.0506 -17.092982,0.02515 -25.6393497,0.01043 -1.8288439,-0.07614 -3.6815346,0.08408 -5.4943357,-0.155396 -3.07716159,-0.629229 -5.4729849,-3.533056 -5.1559472,-6.533025 -0.00356,-9.210652 -0.057228,-18.422733 0.038206,-27.632438 -0.061384,-3.396344 3.4109083,-6.238966 6.9143315,-6.086601 z" />
<g
id="g987"
style="stroke:#1a81c4;stroke-width:5.78837;stroke-opacity:1"
transform="matrix(0.20311696,0,0,0.146941,6.9555344,46.508587)">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 26.089421,47.395407 14.160579,67.604593 h 23.857683 z"
id="path989"
sodipodi:nodetypes="cccc" />
<ellipse
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="10.278316"
cy="54.421188"
rx="7.8466845"
ry="8.0103722" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,296 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 32 32"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet-32.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="32"
height="32"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="8.625"
inkscape:cy="20.703125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1135"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.7692133,0,0,1.8433405,169.40921,295.28644)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031"
transform="matrix(0.25,0,0,0.25,2.46875,0.125)">
<g
id="g1135"
transform="matrix(0.48435227,0,0,0.49207345,-6.4225245,0.50945114)"
style="stroke-width:2.03777">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.19341;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:1.51795;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 215.85018,172 34.164235,217.79179 v 18.51158 c 0,7.5367 6.11938,13.64011 13.675286,13.64011 H 202.17489 c 7.55586,0 13.71695,-5.12923 13.67529,-12.66582 z M 30.670859,236.66436 v 0.36147 c 0,2.20823 0.480602,4.29327 1.314569,6.18738 -0.837719,-2.01993 -1.314569,-4.22732 -1.314569,-6.54885 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,47.057367 H 63"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,79.690584 H 63"
id="path955"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,112.32359 H 63"
id="path959"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,144.77106 H 63"
id="path961"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.19341;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 153.87928,2.0447098 V 50.512109 c 0,9.007731 7.507,16.512594 16.53331,16.499541 h 49.59993 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1;stroke-width:2.03777" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 10.609744,55.329575 H 49.03146 c 6.385689,0 11.526524,5.195425 11.526524,11.64894 v 38.829775 c 0,6.45352 -5.140835,11.51608 -11.526524,11.51608 H 10.609744 c -6.3856948,0 -11.52652182,-5.06256 -11.52652182,-11.51608 V 66.978515 c 0,-6.453515 5.14082702,-11.64894 11.52652182,-11.64894 z"
id="path971" />
<path
id="path969"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 47.15074,55.329562 c -12.263354,0.03997 -24.528437,-0.02521 -36.790732,0.04988 -5.9566449,0.365382 -11.4380926,5.357614 -12.0995358,11.513814 -0.3144339,2.916405 -0.035217,5.854516 -0.135592,8.780583 0.013818,10.652743 -0.050034,21.308068 0.069881,31.959091 0.5120275,6.02789 5.6259596,11.18203 11.4806977,11.7344 2.9183001,0.31362 5.8566101,0.0308 8.7837661,0.13267 10.574317,-0.0117 21.150888,0.0463 31.723702,-0.0706 5.88119,-0.45557 11.274472,-5.44719 11.825501,-11.55896 0.280365,-2.93208 0.0214,-5.88124 0.116572,-8.820952 C 62.1097,88.478982 62.17266,77.905899 62.05336,67.337109 61.539252,61.255166 56.403021,56.025551 50.48947,55.456767 49.382542,55.321993 48.263912,55.322343 47.15074,55.329595 Z m -35.759096,4.099586 c 12.878421,0.03508 25.760149,-0.05295 38.636457,0.07109 2.330585,0.251409 4.497436,1.556429 5.941105,3.313391 1.410314,1.665327 2.163285,3.823324 2.076154,6.056406 0.04307,9.809186 0.02058,19.619493 0.01448,29.429136 -0.02969,3.101509 0.01349,6.209909 -0.08861,9.306939 -0.485519,3.88575 -3.73587,7.09039 -7.48268,7.65304 -2.357898,0.31861 -4.744448,0.0618 -7.114785,0.147 -11.039625,-0.0143 -22.081788,0.0451 -33.119746,-0.0684 -4.18214,-0.39721 -7.9513923,-4.13203 -8.0365605,-8.5241 -0.1119466,-2.62803 0.025321,-5.25982 -0.035224,-7.889641 0.013234,-10.457498 -0.047957,-20.91804 0.068514,-31.373542 0.4440741,-4.28908 4.2035386,-7.860493 8.3901255,-8.079646 0.260131,-0.02278 0.473485,-0.03054 0.750771,-0.04165 z" />
<g
id="g987"
style="stroke:#1a81c4;stroke-width:2.31436;stroke-opacity:1"
transform="matrix(0.43372299,0,0,0.43045105,-7.247299,11.40979)">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 24.836999,65.170019 12.950641,86.818994 h 23.772717 z"
id="path989"
sodipodi:nodetypes="cccc" />
<ellipse
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="14.931701"
cy="75.010468"
rx="7.9242392"
ry="7.8723545" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,306 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 48 48"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet-48.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="48"
height="48"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="16"
inkscape:cx="28.1875"
inkscape:cy="35.03125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1031"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6707348,0,0,2.7948994,264.68892,447.76284)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031"
transform="matrix(0.25,0,0,0.25,2.46875,0.125)">
<g
id="g1135"
transform="matrix(0.73705032,0,0,0.74599659,-2.0052731,0.00464846)"
style="stroke-width:1.34162">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.3944;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.999391;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,47.855441 H 63"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,69.277243 H 63"
id="path953"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,90.936012 H 63"
id="path955"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,111.8839 H 63"
id="path957"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,133.06875 H 63"
id="path959"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,154.2536 H 63"
id="path961"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.3944;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 154.83101,2.0203483 V 49.99867 c 0,8.916835 7.39624,16.345968 16.28937,16.333046 h 48.86811 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1;stroke-width:1.34162" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 24.971479,83.936793 h 57.99991 c 9.639584,0 17.399991,7.877378 17.399991,17.662287 v 58.87427 c 0,9.78492 -7.760407,17.46084 -17.399991,17.46084 h -57.99991 c -9.639594,0 -17.3999843,-7.67592 -17.3999843,-17.46084 v -58.87427 c 0,-9.784909 7.7603903,-17.662287 17.3999843,-17.662287 z"
id="path971" />
<path
id="path969"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 82.230756,83.936811 c -19.386621,0.0049 -38.774259,-0.01941 -58.160235,0.03056 -7.102801,0.331053 -13.794173,5.0112 -16.4648826,11.584559 -1.2708397,2.959804 -1.6249115,6.21758 -1.4806384,9.41002 0.00444,18.85579 -0.019132,37.71268 0.03533,56.56777 0.3484982,6.82733 4.832039,13.2391 11.144126,15.9306 3.099883,1.39199 6.544818,1.80997 9.917606,1.65327 18.947217,-0.0102 37.895478,0.0307 56.842031,-0.0346 7.020628,-0.34254 13.687324,-4.88742 16.372177,-11.38712 1.27723,-2.9469 1.63607,-6.19719 1.49158,-9.38027 -0.007,-18.86432 0.0175,-37.72975 -0.0355,-56.59334 C 101.52705,94.645287 96.794425,88.003955 90.180184,85.378428 87.669913,84.352234 84.943209,83.85885 82.230716,83.936793 Z M 25.45448,87.346774 c 19.473237,0.0295 38.947067,-0.01014 58.420132,0.02907 3.367428,0.120224 6.840536,1.635121 9.400135,3.929208 3.152267,2.765558 5.149144,6.828058 5.187918,11.033268 0.06435,3.48879 0.0023,6.97975 0.02768,10.46966 -0.0071,16.19194 0.01733,32.38525 -0.037,48.57634 -0.231884,4.18952 -2.402198,8.40544 -5.806246,11.00439 -2.592379,2.00529 -5.681622,3.13538 -8.955353,3.27611 -3.164797,0.0759 -6.434725,0.003 -9.639419,0.0312 -16.591113,-0.004 -33.183158,0.0155 -49.77368,-0.0321 -5.820221,-0.23157 -11.401434,-3.98425 -13.541794,-9.42203 -1.0284603,-2.38628 -1.2842843,-5.01152 -1.1742829,-7.58391 0.012992,-18.93193 -0.030262,-37.86524 0.037001,-56.7963 0.2196641,-3.899536 2.0852989,-7.839036 5.0661809,-10.484838 2.905231,-2.670154 6.849308,-4.080903 10.788729,-4.0301 z" />
<g
id="g987"
style="stroke:#1a81c4;stroke-width:1.33901;stroke-opacity:1"
transform="matrix(0.74763247,0,0,0.74601109,-1.4000945,0.38355116)">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 48.315103,98.857016 28.505205,135.0964 H 68.125 Z"
id="path989"
sodipodi:nodetypes="cccc" />
<ellipse
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="30.069557"
cy="112.35415"
rx="13.388295"
ry="13.359261" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,303 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet-64.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="64"
height="64"
inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="32"
inkscape:cx="43.875"
inkscape:cy="34.953125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1031"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2"
originx="0"
originy="0" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.5722563,0,0,3.7464582,355.90885,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031"
transform="matrix(0.25,0,0,0.25,2.46875,0.125)">
<g
id="g1135"
transform="matrix(0.98969165,0,0,0.99999939,2.415812,-0.5103345)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4.02078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,51.88388 H 63"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,71.88388 H 63"
id="path953"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,91.88388 H 63"
id="path955"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,111.8839 H 63"
id="path957"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,131.8839 H 63"
id="path959"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,151.8839 H 63"
id="path961"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4.02078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 155.29973,2.0204456 V 49.751197 c 0,8.870824 7.34292,16.261622 16.17195,16.248767 h 48.51583 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 35.273446,112 h 77.578104 c 12.89348,0 23.27345,10.55933 23.27345,23.67564 V 214.5944 C 136.125,227.71071 125.74503,238 112.85155,238 H 35.273446 C 22.379952,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.379952,112 35.273446,112 Z"
id="path971" />
<path
id="path969"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 111.75511,111.50607 c -25.891247,0.005 -51.783078,-0.0181 -77.673959,0.0208 -8.255559,0.27258 -16.193372,4.98387 -20.397703,12.09066 -2.638168,4.34012 -3.8142692,9.48287 -3.59168,14.53977 0.0053,25.74386 -0.01912,51.48843 0.02606,77.23184 0.288944,7.92202 4.70878,15.54291 11.435914,19.7402 4.502742,2.88362 9.926547,4.15542 15.245804,3.91489 25.663566,-0.006 51.32788,0.0196 76.990974,-0.0264 8.19572,-0.29287 16.12116,-4.89691 20.3249,-11.95629 2.65073,-4.32094 3.77959,-9.46362 3.55495,-14.50327 -0.005,-25.70991 0.0187,-51.4205 -0.0258,-77.12999 -0.30827,-8.37787 -5.17588,-16.41571 -12.46575,-20.56481 -4.04893,-2.33896 -8.75181,-3.50064 -13.42374,-3.35739 z m 1.36891,3.55575 c 9.09139,-0.0282 17.5604,6.62374 20.12618,15.26667 1.30629,4.34 0.75411,8.8722 0.8748,13.34657 -0.005,23.84904 0.0187,47.69862 -0.0257,71.54731 -0.17292,5.14491 -2.43309,10.32207 -6.1001,13.9923 -2.7146,2.71188 -6.08523,4.61874 -9.81481,5.58761 -3.83292,1.03674 -8.01037,0.60303 -12.05455,0.69772 -23.932065,-0.004 -47.864783,0.016 -71.79643,-0.0236 -5.463405,-0.13895 -10.869611,-2.48882 -14.653499,-6.35327 -4.158378,-4.15987 -6.300048,-10.12821 -6.042818,-15.97671 0.0054,-25.85101 -0.01949,-51.70261 0.02638,-77.55325 0.08439,-2.57227 0.710071,-5.21813 1.721324,-7.55571 2.471095,-5.86278 7.688415,-10.4821 13.833352,-12.16241 2.317673,-0.68676 4.776493,-0.88684 7.197613,-0.8248 25.569418,-0.004 51.138829,1.1e-4 76.708238,0.0116 z" />
<g
id="g987"
style="stroke:#1a81c4;stroke-opacity:1">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 64,132 40,176 H 88 Z"
id="path989"
sodipodi:nodetypes="cccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="44"
cy="152"
r="16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,300 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 256 256"
version="1.1"
sodipodi:docname="application-x-kicad-worksheet.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="256"
height="256"
inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-worksheet.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="1"
inkscape:cx="-37"
inkscape:cy="31.5"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-paths="true"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid_kicad"
spacingx="0.5"
spacingy="0.5"
color="#9999ff"
opacity="0.13"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect884"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1"
unit="px"
method="auto"
mode="F"
radius="0"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" />
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#radialGradient1350"
id="linearGradient5941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)"
x1="-160.86667"
y1="118.53333"
x2="-67.733337"
y2="-76.200005" />
<radialGradient
id="radialGradient1350"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-3"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-6"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-7"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<radialGradient
id="radialGradient1350-36"
cx="50.0093"
cy="23.271601"
r="28.023199"
gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#2b4bed"
id="stop1346-7"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
offset="1"
stop-color="#2b2fb7"
id="stop1348-5"
style="stop-color:#f3f3f3;stop-opacity:1" />
</radialGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient5992">
<stop
style="stop-color:#f3f3f3;stop-opacity:1;"
offset="0"
id="stop5988" />
<stop
style="stop-color:#f3f3f3;stop-opacity:0;"
offset="1"
id="stop5990" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5992"
id="linearGradient1260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)"
x1="-93.133339"
y1="-105.83334"
x2="-42.333336"
y2="-152.40001" />
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g1031">
<g
id="g1135"
transform="translate(2)">
<path
id="path5939"
style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z"
sodipodi:nodetypes="sccssssss" />
<path
id="path5956"
style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z"
sodipodi:nodetypes="ccssssccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,51 H 63"
id="path878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,71 H 63"
id="path953"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,91 H 63"
id="path955"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,111 H 63"
id="path957"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,131 H 63"
id="path959"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 186,151 H 63"
id="path961"
sodipodi:nodetypes="cc" />
<path
id="path5943"
style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z"
sodipodi:nodetypes="csscc" />
<g
id="path1105"
style="opacity:1" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.62501,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.62501 C 22.53675,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.53675,112 35.62501,112 Z"
id="path971" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 35.625,111 C 21.998888,111 11,122.02392 11,135.67578 v 78.91797 C 11,228.24561 22.012642,239 35.625,239 h 78.75 C 127.98734,239 139,228.24562 139,214.59375 V 135.67578 C 139,122.02392 128.00109,111 114.375,111 Z m 0,2 h 78.75 C 126.92539,113 137,123.09503 137,135.67578 v 78.91797 C 137,227.1745 126.93914,237 114.375,237 H 35.625 C 23.060838,237 13,227.17451 13,214.59375 V 135.67578 C 13,123.09503 23.074592,113 35.625,113 Z"
id="path969" />
<g
id="g987"
style="stroke:#1a81c4;stroke-opacity:1">
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,200 h 20"
id="path975"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,200 h 4"
id="path977"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100,216 h 20"
id="path979"
sodipodi:nodetypes="cc" />
<path
style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80,216 h 4"
id="path981"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 64,132 40,176 H 88 Z"
id="path989"
sodipodi:nodetypes="cccc" />
<circle
style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path991"
cx="44"
cy="152"
r="16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -36,4 +36,46 @@
<match type="string" offset="0" value="PCBNEW-BOARD"/>
</magic>
</mime-type>
<mime-type type="application/x-kicad-footprint">
<sub-class-of type="text/plain"/>
<comment>KiCad Footprint</comment>
<generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-footprint"/>
<glob pattern="*.kicad_mod" weight="50"/>
<magic priority="50">
<!--The new fp file (.kicad_mod) header-->
<match type="string" offset="0" value="(footprint"/>
</magic>
<magic priority="40">
<!--The old board file (.mod) header-->
<match type="string" offset="0" value="PCBNEW-LibModule"/>
</magic>
</mime-type>
<mime-type type="application/x-kicad-symbol">
<sub-class-of type="text/plain"/>
<comment>KiCad Schematic Symbol</comment>
<generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-symbol"/>
<glob pattern="*.kicad_sym" weight="50"/>
<magic priority="50">
<!--The new sym file (.kicad_sym) header-->
<match type="string" offset="0" value="(kicad_symbol_lib"/>
</magic>
<magic priority="40">
<!--The old sym lib file (.lib) header-->
<match type="string" offset="0" value="EESchema-LIBRARY"/>
</magic>
</mime-type>
<mime-type type="application/x-kicad-worksheet">
<sub-class-of type="text/plain"/>
<comment>KiCad Drawing Sheet</comment>
<generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-worksheet"/>
<glob pattern="*.kicad_wks" weight="50"/>
<magic priority="50">
<!--The new wks file (.kicad_wks) header-->
<match type="string" offset="0" value="(kicad_wks"/>
</magic>
<magic priority="40">
<!--The old style worksheet file header-->
<match type="string" offset="0" value="(page_layout"/>
</magic>
</mime-type>
</mime-info>