Import powercombining tool from Qt4 Qucs
@ -38,6 +38,7 @@ ADD_SUBDIRECTORY( qucs-attenuator )
|
||||
ADD_SUBDIRECTORY( qucs-filter )
|
||||
ADD_SUBDIRECTORY( library )
|
||||
ADD_SUBDIRECTORY( qucs-transcalc )
|
||||
ADD_SUBDIRECTORY( qucs-powercombining )
|
||||
#ADD_SUBDIRECTORY( examples )
|
||||
ADD_SUBDIRECTORY( translations )
|
||||
|
||||
|
96
qucs-powercombining/CMakeLists.txt
Normal file
@ -0,0 +1,96 @@
|
||||
PROJECT(qucspowercombining CXX C)
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
|
||||
cmake_policy(VERSION 3.0)
|
||||
|
||||
SET(QUCS_NAME "qucs-s")
|
||||
|
||||
# use top VERSION file
|
||||
file (STRINGS ${PROJECT_SOURCE_DIR}/../VERSION QUCS_VERSION)
|
||||
message(STATUS "Configuring ${PROJECT_NAME} (GUI): VERSION ${QUCS_VERSION}")
|
||||
|
||||
set(PROJECT_VERSION "${QUCS_VERSION}")
|
||||
|
||||
set(PROJECT_VENDOR "Qucs team. This program is licensed under the GNU GPL")
|
||||
set(PROJECT_COPYRIGHT_YEAR "2016")
|
||||
set(PROJECT_DOMAIN_FIRST "qucs")
|
||||
set(PROJECT_DOMAIN_SECOND "org")
|
||||
|
||||
#SET(CMAKE_BUILD_TYPE Debug)
|
||||
|
||||
ADD_DEFINITIONS( -DHAVE_CONFIG_H )
|
||||
|
||||
# configure the header config.h
|
||||
CONFIGURE_FILE (
|
||||
"${PROJECT_SOURCE_DIR}/../config.h.cmake"
|
||||
"${PROJECT_BINARY_DIR}/config.h"
|
||||
)
|
||||
|
||||
INCLUDE_DIRECTORIES("${PROJECT_BINARY_DIR}")
|
||||
|
||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall ") # enable warning level
|
||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x ") # enable C++11
|
||||
|
||||
# flag not available in mingw 4.8.2, MSVC10
|
||||
FIND_PACKAGE( Qt5 COMPONENTS Core Gui Widgets Svg REQUIRED)
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${Qt5Core_INCLUDE_DIRS}
|
||||
${Qt5Widgets_INCLUDE_DIRS}
|
||||
${Qt5Svg_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
# bug, the find package does not seem to set the QT_LIBRARIES, do it manually
|
||||
SET(QT_LIBRARIES ${Qt5Core_LIBRARIES} ${Qt5Widgets_LIBRARIES} ${Qt5Svg_LIBRARIES} )
|
||||
|
||||
ADD_DEFINITIONS(${QT_DEFINITIONS})
|
||||
|
||||
SET(QUCS-POWCOMB_SRCS
|
||||
qucspowercombiningtool.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
SET(QUCS-POWCOMB_HDRS
|
||||
qucspowercombiningtool.h
|
||||
)
|
||||
|
||||
SET(QUCS-POWCOMB_MOC_HDRS
|
||||
qucspowercombiningtool.h
|
||||
)
|
||||
|
||||
QT5_WRAP_CPP(QUCS-POWCOMB_MOC_SRCS ${QUCS-POWCOMB_MOC_HDRS})
|
||||
|
||||
SET(RESOURCES qucspowercombining.qrc)
|
||||
QT5_ADD_RESOURCES(RESOURCES_SRCS ${RESOURCES})
|
||||
|
||||
|
||||
IF(APPLE)
|
||||
# set information on Info.plist file
|
||||
SET(MACOSX_BUNDLE_INFO_STRING "${PROJECT_NAME} ${PROJECT_VERSION}")
|
||||
SET(MACOSX_BUNDLE_BUNDLE_VERSION "${PROJECT_NAME} ${PROJECT_VERSION}")
|
||||
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "${PROJECT_NAME} ${PROJECT_VERSION}")
|
||||
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION}")
|
||||
SET(MACOSX_BUNDLE_COPYRIGHT "${PROJECT_COPYRIGHT_YEAR} ${PROJECT_VENDOR}")
|
||||
SET(MACOSX_BUNDLE_GUI_IDENTIFIER "${PROJECT_DOMAIN_SECOND}.${PROJECT_DOMAIN_FIRST}")
|
||||
SET(MACOSX_BUNDLE_BUNDLE_NAME "${PROJECT_NAME}")
|
||||
SET(MACOSX_BUNDLE_ICON_FILE qucspowercombining.icns)
|
||||
|
||||
# set where in the bundle to put the icns file
|
||||
SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_SOURCE_DIR}/../qucs/bitmaps/qucspowercombining.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
||||
# include the icns file in the target
|
||||
SET(QUCS-POWCOMB_SRCS ${QUCS-POWCOMB_SRCS} ${CMAKE_CURRENT_SOURCE_DIR}/../qucs/bitmaps/qucspowercombining.icns)
|
||||
|
||||
ENDIF(APPLE)
|
||||
|
||||
ADD_EXECUTABLE(${QUCS_NAME}powercombining MACOSX_BUNDLE WIN32
|
||||
${QUCS-POWCOMB_SRCS}
|
||||
${QUCS-POWCOMB_HDRS}
|
||||
${QUCS-POWCOMB_MOC_SRCS}
|
||||
${RESOURCES_SRCS} )
|
||||
|
||||
TARGET_LINK_LIBRARIES(${QUCS_NAME}powercombining ${QT_LIBRARIES})
|
||||
|
||||
INSTALL(TARGETS ${QUCS_NAME}powercombining
|
||||
BUNDLE DESTINATION bin COMPONENT Runtime
|
||||
RUNTIME DESTINATION bin COMPONENT Runtime
|
||||
)
|
||||
|
566
qucs-powercombining/bitmaps/Bagley_idealTL.svg
Normal file
@ -0,0 +1,566 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg11357"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Bagley.svg">
|
||||
<metadata
|
||||
id="metadata11549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview11547"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.89298457"
|
||||
inkscape:cx="242.75293"
|
||||
inkscape:cy="229.08642"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11357" />
|
||||
<title
|
||||
id="title11359">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc11361">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs11363" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11371"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11373"
|
||||
points="165,197 225,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11375"
|
||||
points="167,204 223,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11377"
|
||||
points="167,211 174,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11379"
|
||||
points="174,211 181,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11381"
|
||||
points="181,211 188,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11383"
|
||||
points="188,211 195,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11385"
|
||||
points="195,211 202,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11387"
|
||||
points="202,211 209,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11389"
|
||||
points="209,211 216,204 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11391"
|
||||
points="216,211 223,204 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11393"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11395"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11397"
|
||||
points="115,27 115,87 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11399"
|
||||
points="108,29 108,85 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11401"
|
||||
points="101,29 108,36 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11403"
|
||||
points="101,36 108,43 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11405"
|
||||
points="101,43 108,50 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11407"
|
||||
points="101,50 108,57 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11409"
|
||||
points="101,57 108,64 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11411"
|
||||
points="101,64 108,71 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11413"
|
||||
points="101,71 108,78 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11415"
|
||||
points="101,78 108,85 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11417"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11419"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11421"
|
||||
points="115,137 115,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11423"
|
||||
points="108,139 108,195 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11425"
|
||||
points="101,139 108,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11427"
|
||||
points="101,146 108,153 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11429"
|
||||
points="101,153 108,160 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11431"
|
||||
points="101,160 108,167 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11433"
|
||||
points="101,167 108,174 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11435"
|
||||
points="101,174 108,181 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11437"
|
||||
points="101,181 108,188 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11439"
|
||||
points="101,188 108,195 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11441"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11443"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11445"
|
||||
points="155,27 215,27 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11447"
|
||||
points="157,34 213,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11449"
|
||||
points="157,41 164,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11451"
|
||||
points="164,41 171,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11453"
|
||||
points="171,41 178,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11455"
|
||||
points="178,41 185,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11457"
|
||||
points="185,41 192,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11459"
|
||||
points="192,41 199,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11461"
|
||||
points="199,41 206,34 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11463"
|
||||
points="206,41 213,34 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11465"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11467"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11469"
|
||||
points="15,107 115,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11471"
|
||||
points="115,107 115,137 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11473"
|
||||
points="115,87 115,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11475"
|
||||
points="115,197 165,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11477"
|
||||
points="115,27 155,27 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11479"
|
||||
points="115,197 115,217 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11481"
|
||||
points="215,27 255,27 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11483"
|
||||
points="255,27 255,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11485"
|
||||
points="225,197 255,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11487"
|
||||
points="255,107 255,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11489"
|
||||
points="255,107 295,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11491"
|
||||
points="115,7 115,27 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11493"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11495"
|
||||
d="m 163,195 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11497"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11499"
|
||||
d="m 223,195 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11501"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11503"
|
||||
d="m 118,27 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11505"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11507"
|
||||
d="m 113,85 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11509"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11511"
|
||||
d="m 113,135 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11513"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11515"
|
||||
d="m 118,197 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11517"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11519"
|
||||
d="m 19,107 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11521"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11523"
|
||||
d="m 118,107 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11525"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11527"
|
||||
d="m 119,217 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11529"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11531"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11533"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11535"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11537"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11539"
|
||||
d="m 258,107 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11541"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11543"
|
||||
d="m 299,107 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11545"
|
||||
d="m 119,7 c 0,2.20914 -1.791,4 -4,4 -2.209,0 -4,-1.79086 -4,-4 0,-2.20914 1.791,-4 4,-4 2.209,0 4,1.79086 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
510
qucs-powercombining/bitmaps/Bagley_microstrip.svg
Normal file
@ -0,0 +1,510 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg11357"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Bagley_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata11549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview11547"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.63143545"
|
||||
inkscape:cx="-79.533512"
|
||||
inkscape:cy="173.17854"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11357" />
|
||||
<title
|
||||
id="title11359">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc11361">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs11363" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11393"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11417"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11441"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11465"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11467"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11469"
|
||||
points="15,107 115,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11471"
|
||||
points="115,107 115,137 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11473"
|
||||
points="115,87 115,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11475"
|
||||
points="115,197 165,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11477"
|
||||
points="115,27 155,27 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11479"
|
||||
points="115,197 115,217 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11481"
|
||||
points="215,27 255,27 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11483"
|
||||
points="255,27 255,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11485"
|
||||
points="225,197 255,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11487"
|
||||
points="255,107 255,197 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11489"
|
||||
points="255,107 295,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline11491"
|
||||
points="115,7 115,27 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11493"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11495"
|
||||
d="m 163,195 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11497"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11499"
|
||||
d="m 223,195 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11501"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11503"
|
||||
d="m 118,27 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11513"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11515"
|
||||
d="m 118,197 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11517"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11519"
|
||||
d="m 19,107 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11521"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11523"
|
||||
d="m 118,107 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11525"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11527"
|
||||
d="m 119,217 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11529"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11531"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g11533"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11535"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11537"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11539"
|
||||
d="m 258,107 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g11541"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,0,6.2484131)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11543"
|
||||
d="m 299,107 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11545"
|
||||
d="m 119,7 c 0,2.20914 -1.791,4 -4,4 -2.209,0 -4,-1.79086 -4,-4 0,-2.20914 1.791,-4 4,-4 2.209,0 4,1.79086 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 234.111,49.107314 23.85548,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 332.25845,49.134434 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 269.55526,30.699764 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.10160208;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 251.02217,67.482917 69.33645,-0.175766"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.12982869;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 268.60127,31.275575 248.85082,66.910062"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.14545441;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 340.36072,33.330656 321.33174,66.680729"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none"
|
||||
id="g11529-3"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,15.849088,276.14009)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11531-6"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none"
|
||||
id="g11533-7"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,15.849088,276.14009)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11535-5"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 249.96009,318.99899 23.85548,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 348.10754,319.02611 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 285.40435,300.59144 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6-1"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.10160208;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 266.87126,337.37459 69.33645,-0.17576"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2-8"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.12982869;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 284.45036,301.16725 -19.75045,35.63449"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9-7"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.14545441;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 356.20981,303.22233 337.18083,336.5724"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none"
|
||||
id="g11529-9"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(0,1.5879262,-1.5879262,0,225.4004,-32.10129)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11531-2"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5-6-3"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 182.5415,202.00972 -0.0204,23.85548"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3-2-7"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 182.51438,300.15717 0.007,22.70255"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5-6-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 200.94905,237.45398 -0.51756,71.4298"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6-1-9"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.10160208;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 164.1659,218.92089 0.17576,69.33645"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2-8-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.12982869;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 200.37324,236.49999 164.73875,216.74954"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9-7-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.14545441;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 198.31816,308.25943 164.96809,289.23046"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g4378"
|
||||
transform="translate(61.59121,2.3796604)">
|
||||
<g
|
||||
transform="matrix(0,1.5879262,-1.5879262,0,163.78243,-198.97499)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-0"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 120.92353,35.13602 -0.0204,23.85548"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-3-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 120.89641,133.28347 0.007,22.70255"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-7-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 139.33108,70.58028 -0.51756,71.4298"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.0999999;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-5-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 102.54793,52.04719 0.17576,69.33645"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.10160208;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-9-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="M 138.75527,69.62629 103.12078,49.87584"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.12982869;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-2-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="M 136.70019,141.38573 103.35012,122.35676"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.14545441;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-2-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
578
qucs-powercombining/bitmaps/Branchline_idealTL.svg
Normal file
@ -0,0 +1,578 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg12947"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Branchline.svg">
|
||||
<metadata
|
||||
id="metadata13143">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview13141"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.76725194"
|
||||
inkscape:cx="313.00566"
|
||||
inkscape:cy="275.42093"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12947" />
|
||||
<title
|
||||
id="title12949">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc12951">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs12953" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12961"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12963"
|
||||
points="75,19 135,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12965"
|
||||
points="77,26 133,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12967"
|
||||
points="77,33 84,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12969"
|
||||
points="84,33 91,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12971"
|
||||
points="91,33 98,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12973"
|
||||
points="98,33 105,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12975"
|
||||
points="105,33 112,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12977"
|
||||
points="112,33 119,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12979"
|
||||
points="119,33 126,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12981"
|
||||
points="126,33 133,26 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12983"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12985"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12987"
|
||||
points="75,139 135,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12989"
|
||||
points="77,146 133,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12991"
|
||||
points="77,153 84,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12993"
|
||||
points="84,153 91,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12995"
|
||||
points="91,153 98,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12997"
|
||||
points="98,153 105,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12999"
|
||||
points="105,153 112,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13001"
|
||||
points="112,153 119,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13003"
|
||||
points="119,153 126,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13005"
|
||||
points="126,153 133,146 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13007"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13009"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13011"
|
||||
points="35,59 35,119 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13013"
|
||||
points="28,61 28,117 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13015"
|
||||
points="21,61 28,68 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13017"
|
||||
points="21,68 28,75 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13019"
|
||||
points="21,75 28,82 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13021"
|
||||
points="21,82 28,89 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13023"
|
||||
points="21,89 28,96 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13025"
|
||||
points="21,96 28,103 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13027"
|
||||
points="21,103 28,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13029"
|
||||
points="21,110 28,117 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13031"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13033"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13035"
|
||||
points="175,59 175,119 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13037"
|
||||
points="168,61 168,117 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13039"
|
||||
points="161,61 168,68 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13041"
|
||||
points="161,68 168,75 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13043"
|
||||
points="161,75 168,82 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13045"
|
||||
points="161,82 168,89 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13047"
|
||||
points="161,89 168,96 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13049"
|
||||
points="161,96 168,103 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13051"
|
||||
points="161,103 168,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13053"
|
||||
points="161,110 168,117 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13055"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13057"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13059"
|
||||
points="135,19 175,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13061"
|
||||
points="175,19 175,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13063"
|
||||
points="35,19 75,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13065"
|
||||
points="35,19 35,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13067"
|
||||
points="135,139 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13069"
|
||||
points="175,119 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13071"
|
||||
points="35,139 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13073"
|
||||
points="35,119 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13075"
|
||||
points="175,19 195,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13077"
|
||||
points="15,19 35,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13079"
|
||||
points="175,139 195,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13081"
|
||||
points="15,139 35,139 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13083"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13085"
|
||||
d="m 73,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13087"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13089"
|
||||
d="m 133,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13091"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13093"
|
||||
d="m 73,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13095"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13097"
|
||||
d="m 133,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13099"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13101"
|
||||
d="m 33,57 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13103"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13105"
|
||||
d="m 33,117 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13107"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13109"
|
||||
d="m 173,57 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g13111"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13113"
|
||||
d="m 173,117 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13115"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13117"
|
||||
d="m 178,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13119"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13121"
|
||||
d="m 38,19 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13123"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13125"
|
||||
d="m 178,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13127"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13129"
|
||||
d="m 38,139 c 0,1.657 -1.3431,3 -3,3 -1.6569,0 -3,-1.343 -3,-3 0,-1.657 1.3431,-3 3,-3 1.6569,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13131"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13133"
|
||||
d="m 199,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13135"
|
||||
d="m 19,19 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13137"
|
||||
d="m 199,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13139"
|
||||
d="m 19,139 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
510
qucs-powercombining/bitmaps/Branchline_microstrip.svg
Normal file
@ -0,0 +1,510 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg12947"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Branchline_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata13143">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview13141"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.76725194"
|
||||
inkscape:cx="313.00566"
|
||||
inkscape:cy="275.42093"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12947" />
|
||||
<title
|
||||
id="title12949">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc12951">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs12953" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12983"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13007"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13031"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13055"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13057"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13059"
|
||||
points="135,19 175,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13061"
|
||||
points="175,19 175,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13063"
|
||||
points="35,19 75,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13065"
|
||||
points="35,19 35,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13067"
|
||||
points="135,139 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13069"
|
||||
points="175,119 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13071"
|
||||
points="35,139 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13073"
|
||||
points="35,119 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13075"
|
||||
points="175,19 195,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13077"
|
||||
points="15,19 35,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13079"
|
||||
points="175,139 195,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline13081"
|
||||
points="15,139 35,139 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13115"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13117"
|
||||
d="m 178,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13119"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13121"
|
||||
d="m 38,19 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13123"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13125"
|
||||
d="m 178,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13127"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13129"
|
||||
d="m 38,139 c 0,1.657 -1.3431,3 -3,3 -1.6569,0 -3,-1.343 -3,-3 0,-1.657 1.3431,-3 3,-3 1.6569,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g13131"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.88983,0,0,1.88983,42.394044,20.572234)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13133"
|
||||
d="m 199,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13135"
|
||||
d="m 19,19 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13137"
|
||||
d="m 199,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13139"
|
||||
d="m 19,139 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4865"
|
||||
transform="matrix(0,1,-1,0,445.75811,-139.24646)"
|
||||
style="stroke-width:3.79999995;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-9"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-0"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 263.83439,337.19341 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 361.98184,337.22053 22.70255,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 299.27865,318.78586 71.4298,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 280.74556,355.56901 69.33645,-0.17576"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 298.32466,319.36167 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 370.0841,321.41675 -19.02897,33.35007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4865-3"
|
||||
transform="matrix(0,1,-1,0,710.31159,-135.28113)"
|
||||
style="stroke-width:3.79999995;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-9-6"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-2-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-0-5"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-2-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 263.83439,337.19341 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-3-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 361.98184,337.22053 22.70255,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-7-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 299.27865,318.78586 71.4298,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-5-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 280.74556,355.56901 69.33645,-0.17576"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-9-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 298.32466,319.36167 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-2-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 370.0841,321.41675 -19.02897,33.35007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-2-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4865-7"
|
||||
transform="matrix(-1,0,0,-1,561.92795,393.66622)"
|
||||
style="stroke-width:3.79999995;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-9-0"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-2-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-0-3"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-2-6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 263.83439,337.19341 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-3-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 361.98184,337.22053 22.70255,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-7-62"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 299.27865,318.78586 71.4298,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-5-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 280.74556,355.56901 69.33645,-0.17576"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-9-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 298.32466,319.36167 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-2-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 370.0841,321.41675 -19.02897,33.35007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-2-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4865-7-9"
|
||||
transform="matrix(-1,0,0,-1,558.92373,620.5251)"
|
||||
style="stroke-width:3.79999995;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-9-0-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-2-9-0"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,29.723383,294.33451)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-0-3-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-2-6-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:2.3930583;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 263.83439,337.19341 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-3-0-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 361.98184,337.22053 22.70255,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-7-62-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 299.27865,318.78586 71.4298,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-5-6-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 280.74556,355.56901 69.33645,-0.17576"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-9-1-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 298.32466,319.36167 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-2-8-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 370.0841,321.41675 -19.02897,33.35007"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.79999995;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-2-7-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
923
qucs-powercombining/bitmaps/DoubleBoxBranchline_idealTL.svg
Normal file
@ -0,0 +1,923 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg12089"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="DoubleBoxBranchline.svg">
|
||||
<metadata
|
||||
id="metadata12403">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview12401"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.79316239"
|
||||
inkscape:cx="219.375"
|
||||
inkscape:cy="108.74994"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12089" />
|
||||
<title
|
||||
id="title12091">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc12093">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs12095" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12103"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12105"
|
||||
points="75,19 135,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12107"
|
||||
points="77,26 133,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12109"
|
||||
points="77,33 84,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12111"
|
||||
points="84,33 91,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12113"
|
||||
points="91,33 98,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12115"
|
||||
points="98,33 105,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12117"
|
||||
points="105,33 112,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12119"
|
||||
points="112,33 119,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12121"
|
||||
points="119,33 126,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12123"
|
||||
points="126,33 133,26 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12125"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12127"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12129"
|
||||
points="75,139 135,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12131"
|
||||
points="77,146 133,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12133"
|
||||
points="77,153 84,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12135"
|
||||
points="84,153 91,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12137"
|
||||
points="91,153 98,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12139"
|
||||
points="98,153 105,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12141"
|
||||
points="105,153 112,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12143"
|
||||
points="112,153 119,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12145"
|
||||
points="119,153 126,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12147"
|
||||
points="126,153 133,146 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12149"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12151"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12153"
|
||||
points="35,59 35,119 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12155"
|
||||
points="28,61 28,117 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12157"
|
||||
points="21,61 28,68 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12159"
|
||||
points="21,68 28,75 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12161"
|
||||
points="21,75 28,82 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12163"
|
||||
points="21,82 28,89 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12165"
|
||||
points="21,89 28,96 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12167"
|
||||
points="21,96 28,103 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12169"
|
||||
points="21,103 28,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12171"
|
||||
points="21,110 28,117 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12173"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12175"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12177"
|
||||
points="175,59 175,119 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12179"
|
||||
points="168,61 168,117 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12181"
|
||||
points="161,61 168,68 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12183"
|
||||
points="161,68 168,75 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12185"
|
||||
points="161,75 168,82 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12187"
|
||||
points="161,82 168,89 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12189"
|
||||
points="161,89 168,96 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12191"
|
||||
points="161,96 168,103 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12193"
|
||||
points="161,103 168,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12195"
|
||||
points="161,110 168,117 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12197"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12199"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12201"
|
||||
points="295,59 295,119 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12203"
|
||||
points="288,61 288,117 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12205"
|
||||
points="281,61 288,68 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12207"
|
||||
points="281,68 288,75 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12209"
|
||||
points="281,75 288,82 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12211"
|
||||
points="281,82 288,89 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12213"
|
||||
points="281,89 288,96 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12215"
|
||||
points="281,96 288,103 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12217"
|
||||
points="281,103 288,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12219"
|
||||
points="281,110 288,117 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12221"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12223"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12225"
|
||||
points="215,19 275,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12227"
|
||||
points="217,26 273,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12229"
|
||||
points="217,33 224,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12231"
|
||||
points="224,33 231,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12233"
|
||||
points="231,33 238,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12235"
|
||||
points="238,33 245,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12237"
|
||||
points="245,33 252,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12239"
|
||||
points="252,33 259,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12241"
|
||||
points="259,33 266,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12243"
|
||||
points="266,33 273,26 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12245"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12247"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12249"
|
||||
points="215,139 275,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12251"
|
||||
points="217,146 273,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12253"
|
||||
points="217,153 224,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12255"
|
||||
points="224,153 231,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12257"
|
||||
points="231,153 238,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12259"
|
||||
points="238,153 245,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12261"
|
||||
points="245,153 252,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12263"
|
||||
points="252,153 259,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12265"
|
||||
points="259,153 266,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12267"
|
||||
points="266,153 273,146 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12269"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12271"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12273"
|
||||
points="135,19 175,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12275"
|
||||
points="175,19 175,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12277"
|
||||
points="35,19 75,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12279"
|
||||
points="35,19 35,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12281"
|
||||
points="135,139 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12283"
|
||||
points="175,119 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12285"
|
||||
points="35,139 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12287"
|
||||
points="35,119 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12289"
|
||||
points="15,19 35,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12291"
|
||||
points="15,139 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12293"
|
||||
points="175,19 215,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12295"
|
||||
points="175,139 215,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12297"
|
||||
points="275,19 295,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12299"
|
||||
points="295,19 295,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12301"
|
||||
points="295,119 295,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12303"
|
||||
points="275,139 295,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12305"
|
||||
points="295,139 315,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12307"
|
||||
points="295,19 315,19 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12309"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12311"
|
||||
d="m 73,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12313"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12315"
|
||||
d="m 133,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12317"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12319"
|
||||
d="m 73,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12321"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12323"
|
||||
d="m 133,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12325"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12327"
|
||||
d="m 33,57 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12329"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12331"
|
||||
d="m 33,117 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12333"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12335"
|
||||
d="m 173,57 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12337"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12339"
|
||||
d="m 173,117 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12341"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12343"
|
||||
d="m 178,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12345"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12347"
|
||||
d="m 38,19 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12349"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12351"
|
||||
d="m 178,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12353"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12355"
|
||||
d="m 38,139 c 0,1.657 -1.3431,3 -3,3 -1.6569,0 -3,-1.343 -3,-3 0,-1.657 1.3431,-3 3,-3 1.6569,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12357"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12359"
|
||||
d="m 19,19 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12361"
|
||||
d="m 19,139 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12363"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12365"
|
||||
d="m 293,57 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12367"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12369"
|
||||
d="m 293,117 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12371"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12373"
|
||||
d="m 213,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12375"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12377"
|
||||
d="m 273,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12379"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12381"
|
||||
d="m 213,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g12383"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12385"
|
||||
d="m 273,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12387"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12389"
|
||||
d="m 298,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12391"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12393"
|
||||
d="m 298,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12395"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12397"
|
||||
d="m 319,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12399"
|
||||
d="m 319,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 29 KiB |
793
qucs-powercombining/bitmaps/DoubleBoxBranchline_microstrip.svg
Normal file
@ -0,0 +1,793 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg12089"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="DoubleBoxBranchline_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata12403">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview12401"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.121701"
|
||||
inkscape:cx="209.84772"
|
||||
inkscape:cy="172.90863"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12089" />
|
||||
<title
|
||||
id="title12091">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc12093">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs12095" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12125"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12149"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12173"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12197"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12221"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12245"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12269"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12271"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12273"
|
||||
points="135,19 175,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12275"
|
||||
points="175,19 175,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12277"
|
||||
points="35,19 75,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12279"
|
||||
points="35,19 35,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12281"
|
||||
points="135,139 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12283"
|
||||
points="175,119 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12285"
|
||||
points="35,139 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12287"
|
||||
points="35,119 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12289"
|
||||
points="15,19 35,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12291"
|
||||
points="15,139 35,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12293"
|
||||
points="175,19 215,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12295"
|
||||
points="175,139 215,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12297"
|
||||
points="275,19 295,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12299"
|
||||
points="295,19 295,59 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12301"
|
||||
points="295,119 295,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12303"
|
||||
points="275,139 295,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12305"
|
||||
points="295,139 315,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline12307"
|
||||
points="295,19 315,19 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12341"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12343"
|
||||
d="m 178,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12345"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12347"
|
||||
d="m 38,19 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12349"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12351"
|
||||
d="m 178,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12353"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12355"
|
||||
d="m 38,139 c 0,1.657 -1.3431,3 -3,3 -1.6569,0 -3,-1.343 -3,-3 0,-1.657 1.3431,-3 3,-3 1.6569,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12357"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12359"
|
||||
d="m 19,19 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12361"
|
||||
d="m 19,139 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12387"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12389"
|
||||
d="m 298,19 c 0,1.6569 -1.343,3 -3,3 -1.657,0 -3,-1.3431 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12391"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12393"
|
||||
d="m 298,139 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g12395"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.4992816,0,0,1.4992816,2.5215517,46.627275)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12397"
|
||||
d="m 319,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12399"
|
||||
d="m 319,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
id="g11529"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,68.20771,212.21931)">
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11531"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
id="g11533"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.5879262,0,0,1.5879262,68.20771,212.21931)">
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11535"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 302.31871,255.07821 23.85548,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 400.46616,255.10533 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 337.76297,236.67066 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6-1"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 319.07246,273.45363 69.49369,-0.1754"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2-8"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 336.80898,237.24647 -19.75045,35.63449"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9-7"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 408.65464,239.18579 -19.15862,33.53712"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
transform="translate(268.28062,-375.40961)"
|
||||
id="g5012">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(45.610567,-375.52666)"
|
||||
id="g5012-3">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-5"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(57.180425,-195.57875)"
|
||||
id="g5012-7">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-0"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-3"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-62"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,505.73149,74.566674)"
|
||||
id="g5012-0">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6-9"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-0"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,715.52406,77.99778)"
|
||||
id="g5012-0-0">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-2-7"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-0-5"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,895.35457,75.666465)"
|
||||
id="g5012-0-3">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6-6"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3-1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-2-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-0-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 35 KiB |
889
qucs-powercombining/bitmaps/Gysel_idealTL.svg
Normal file
@ -0,0 +1,889 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg10527"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Gysel.svg">
|
||||
<metadata
|
||||
id="metadata10829">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview10827"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.59936508"
|
||||
inkscape:cx="286.2496"
|
||||
inkscape:cy="196.875"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg10527" />
|
||||
<title
|
||||
id="title10529">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc10531">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs10533" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10541"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10543"
|
||||
points="375,100 375,110 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10545"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10547"
|
||||
points="364,110 386,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10549"
|
||||
points="368,116 382,116 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10551"
|
||||
points="372,122 378,122 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10553"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10555"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10557"
|
||||
points="375,270 375,280 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10559"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10561"
|
||||
points="364,280 386,280 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10563"
|
||||
points="368,286 382,286 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10565"
|
||||
points="372,292 378,292 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10567"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10569"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10571"
|
||||
points="185,100 245,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10573"
|
||||
points="187,107 243,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10575"
|
||||
points="187,114 194,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10577"
|
||||
points="194,114 201,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10579"
|
||||
points="201,114 208,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10581"
|
||||
points="208,114 215,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10583"
|
||||
points="215,114 222,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10585"
|
||||
points="222,114 229,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10587"
|
||||
points="229,114 236,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10589"
|
||||
points="236,114 243,107 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10591"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10593"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10595"
|
||||
points="315,210 315,150 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10597"
|
||||
points="322,208 322,152 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10599"
|
||||
points="329,208 322,201 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10601"
|
||||
points="329,201 322,194 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10603"
|
||||
points="329,194 322,187 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10605"
|
||||
points="329,187 322,180 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10607"
|
||||
points="329,180 322,173 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10609"
|
||||
points="329,173 322,166 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10611"
|
||||
points="329,166 322,159 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10613"
|
||||
points="329,159 322,152 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10615"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10617"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10619"
|
||||
points="115,270 115,210 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10621"
|
||||
points="122,268 122,212 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10623"
|
||||
points="129,268 122,261 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10625"
|
||||
points="129,261 122,254 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10627"
|
||||
points="129,254 122,247 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10629"
|
||||
points="129,247 122,240 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10631"
|
||||
points="129,240 122,233 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10633"
|
||||
points="129,233 122,226 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10635"
|
||||
points="129,226 122,219 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10637"
|
||||
points="129,219 122,212 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10639"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10641"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10643"
|
||||
points="115,160 115,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10645"
|
||||
points="122,158 122,102 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10647"
|
||||
points="129,158 122,151 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10649"
|
||||
points="129,151 122,144 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10651"
|
||||
points="129,144 122,137 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10653"
|
||||
points="129,137 122,130 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10655"
|
||||
points="129,130 122,123 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10657"
|
||||
points="129,123 122,116 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10659"
|
||||
points="129,116 122,109 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10661"
|
||||
points="129,109 122,102 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10663"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10665"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10667"
|
||||
points="185,270 245,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10669"
|
||||
points="187,277 243,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10671"
|
||||
points="187,284 194,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10673"
|
||||
points="194,284 201,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10675"
|
||||
points="201,284 208,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10677"
|
||||
points="208,284 215,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10679"
|
||||
points="215,284 222,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10681"
|
||||
points="222,284 229,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10683"
|
||||
points="229,284 236,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10685"
|
||||
points="236,284 243,277 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10687"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10689"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10691"
|
||||
points="315,270 327,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10693"
|
||||
points="327,270 330,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10695"
|
||||
points="330,263 336,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10697"
|
||||
points="336,277 342,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10699"
|
||||
points="342,263 348,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10701"
|
||||
points="348,277 354,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10703"
|
||||
points="354,263 360,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10705"
|
||||
points="360,277 363,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10707"
|
||||
points="363,270 375,270 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10709"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10711"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10713"
|
||||
points="315,100 327,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10715"
|
||||
points="327,100 330,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10717"
|
||||
points="330,93 336,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10719"
|
||||
points="336,107 342,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10721"
|
||||
points="342,93 348,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10723"
|
||||
points="348,107 354,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10725"
|
||||
points="354,93 360,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10727"
|
||||
points="360,107 363,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10729"
|
||||
points="363,100 375,100 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10731"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10733"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10735"
|
||||
points="15,180 115,180 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10737"
|
||||
points="115,180 115,210 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10739"
|
||||
points="115,160 115,180 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10741"
|
||||
points="115,100 185,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10743"
|
||||
points="115,270 185,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10745"
|
||||
points="115,270 115,300 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10747"
|
||||
points="115,70 115,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10749"
|
||||
points="245,100 315,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10751"
|
||||
points="245,270 315,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10753"
|
||||
points="315,210 315,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10755"
|
||||
points="315,100 315,150 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10757"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10759"
|
||||
d="m 113,158 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10761"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10763"
|
||||
d="m 118,100 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10765"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10767"
|
||||
d="m 118,270 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10769"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10771"
|
||||
d="m 113,208 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10773"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10775"
|
||||
d="m 183,98 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10777"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10779"
|
||||
d="m 243,98 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10781"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10783"
|
||||
d="m 183,268 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10785"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10787"
|
||||
d="m 243,268 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10789"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10791"
|
||||
d="m 313,208 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10793"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10795"
|
||||
d="m 313,148 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10797"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10799"
|
||||
d="m 318,100 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10801"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10803"
|
||||
d="m 373,98 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10805"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10807"
|
||||
d="m 318,270 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10809"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10811"
|
||||
d="m 373,268 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10813"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10815"
|
||||
d="m 19,180 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10817"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10819"
|
||||
d="m 118,180 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10821"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10823"
|
||||
d="m 119,300 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10825"
|
||||
d="m 119,70 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 29 KiB |
808
qucs-powercombining/bitmaps/Gysel_microstrip.svg
Normal file
@ -0,0 +1,808 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg10527"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Gysel_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata10829">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview10827"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.1987302"
|
||||
inkscape:cx="145.25489"
|
||||
inkscape:cy="213.53963"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg10527" />
|
||||
<title
|
||||
id="title10529">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc10531">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs10533" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10541"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10543"
|
||||
points="375,100 375,110 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10545"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10547"
|
||||
points="364,110 386,110 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10549"
|
||||
points="368,116 382,116 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10551"
|
||||
points="372,122 378,122 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10553"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10555"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10557"
|
||||
points="375,270 375,280 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10559"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10561"
|
||||
points="364,280 386,280 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10563"
|
||||
points="368,286 382,286 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10565"
|
||||
points="372,292 378,292 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:3;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10567"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10591"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10615"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10639"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10663"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10687"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10689"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10691"
|
||||
points="315,270 327,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10693"
|
||||
points="327,270 330,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10695"
|
||||
points="330,263 336,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10697"
|
||||
points="336,277 342,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10699"
|
||||
points="342,263 348,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10701"
|
||||
points="348,277 354,263 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10703"
|
||||
points="354,263 360,277 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10705"
|
||||
points="360,277 363,270 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10707"
|
||||
points="363,270 375,270 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10709"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10711"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10713"
|
||||
points="315,100 327,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10715"
|
||||
points="327,100 330,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10717"
|
||||
points="330,93 336,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10719"
|
||||
points="336,107 342,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10721"
|
||||
points="342,93 348,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10723"
|
||||
points="348,107 354,93 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10725"
|
||||
points="354,93 360,107 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10727"
|
||||
points="360,107 363,100 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline10729"
|
||||
points="363,100 375,100 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10731"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="15,180 115,180 "
|
||||
id="polyline10735"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,180 115,210 "
|
||||
id="polyline10737"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,0.27295754,5.0052966,127.88425)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,160 115,180 "
|
||||
id="polyline10739"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,0.45070245,5.0052966,97.537272)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,100 185,100 "
|
||||
id="polyline10741"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,270 185,270 "
|
||||
id="polyline10743"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,270 115,300 "
|
||||
id="polyline10745"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="115,70 115,100 "
|
||||
id="polyline10747"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="245,100 315,100 "
|
||||
id="polyline10749"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="245,270 315,270 "
|
||||
id="polyline10751"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="315,210 315,270 "
|
||||
id="polyline10753"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<polyline
|
||||
vector-effect="none"
|
||||
points="315,100 315,150 "
|
||||
id="polyline10755"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10761"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10763"
|
||||
d="m 118,100 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10765"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10767"
|
||||
d="m 118,270 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10797"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10799"
|
||||
d="m 318,100 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.6569 1.343,-3 3,-3 1.657,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10801"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10803"
|
||||
d="m 373,98 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10805"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10807"
|
||||
d="m 318,270 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g10809"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10811"
|
||||
d="m 373,268 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10813"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10815"
|
||||
d="m 19,180 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<path
|
||||
vector-effect="none"
|
||||
d="m 144.8803,177.92903 c 0,1.96418 -1.59197,3.55615 -3.55614,3.55615 -1.96418,0 -3.55615,-1.59197 -3.55615,-3.55615 0,-1.96417 1.59197,-3.55614 3.55615,-3.55614 1.96417,0 3.55614,1.59197 3.55614,3.55614"
|
||||
id="path10819"
|
||||
inkscape:connector-curvature="0"
|
||||
style="font-style:normal;font-weight:400;font-size:medium;font-family:Helvetica;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1.18538141;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g10821"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1853814,0,0,1.1853814,5.0052966,-35.439619)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10823"
|
||||
d="m 119,300 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10825"
|
||||
d="m 119,70 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,0.89657146,-0.78023257,0,730.02822,80.656047)"
|
||||
id="g5012-0">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-2"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-0"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,0.89657146,-0.78023257,0,492.58635,30.87376)"
|
||||
id="g5012-0-7">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6-3"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3-6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-2-1"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-0-2"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4535"
|
||||
transform="translate(33.763211,-8.7275647)">
|
||||
<g
|
||||
transform="matrix(0,1.4236893,-1.2389517,0,141.24723,-24.220523)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6-4"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-3-5"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 107.80732,185.67671 -0.0159,21.38815"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.42550683;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-6-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 107.78616,273.67291 0.005,20.35448"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.42550683;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-1-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 122.16949,217.45503 -0.40382,64.04193"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.42550683;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-5-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 93.470215,200.69765 0.136853,62.30605"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.42580295;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-5-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="M 121.72022,216.59971 93.917031,198.89202"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.42550683;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-4-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="M 120.2071,281.01448 94.040347,263.8374"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.44057131;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.91722922,0,0,0.85450845,160.60214,-302.05124)"
|
||||
id="g5012">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.91144628,0,0,0.80559602,162.77699,-78.482208)"
|
||||
id="g5012-06">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-1"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-5"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-5"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-56"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-74"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 35 KiB |
1877
qucs-powercombining/bitmaps/MultistageWilkinsonLC.svg
Normal file
After Width: | Height: | Size: 65 KiB |
1248
qucs-powercombining/bitmaps/MultistageWilkinson_idealTL.svg
Normal file
After Width: | Height: | Size: 43 KiB |
1110
qucs-powercombining/bitmaps/MultistageWilkinson_microstrip.svg
Normal file
After Width: | Height: | Size: 47 KiB |
350
qucs-powercombining/bitmaps/Tee_idealTL.svg
Normal file
@ -0,0 +1,350 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg2"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Tee.svg">
|
||||
<metadata
|
||||
id="metadata122">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview120"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.76725193"
|
||||
inkscape:cx="120.98216"
|
||||
inkscape:cy="127.12482"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<title
|
||||
id="title4">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc6">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g16"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline18"
|
||||
points="15,79 75,79 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline20"
|
||||
points="17,86 73,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline22"
|
||||
points="17,93 24,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline24"
|
||||
points="24,93 31,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline26"
|
||||
points="31,93 38,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline28"
|
||||
points="38,93 45,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline30"
|
||||
points="45,93 52,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline32"
|
||||
points="52,93 59,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline34"
|
||||
points="59,93 66,86 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline36"
|
||||
points="66,93 73,86 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g38"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g40"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline42"
|
||||
points="115,139 175,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline44"
|
||||
points="117,146 173,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline46"
|
||||
points="117,153 124,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline48"
|
||||
points="124,153 131,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline50"
|
||||
points="131,153 138,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline52"
|
||||
points="138,153 145,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline54"
|
||||
points="145,153 152,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline56"
|
||||
points="152,153 159,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline58"
|
||||
points="159,153 166,146 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline60"
|
||||
points="166,153 173,146 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g62"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g64"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline66"
|
||||
points="115,19 175,19 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline68"
|
||||
points="117,26 173,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline70"
|
||||
points="117,33 124,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline72"
|
||||
points="124,33 131,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline74"
|
||||
points="131,33 138,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline76"
|
||||
points="138,33 145,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline78"
|
||||
points="145,33 152,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline80"
|
||||
points="152,33 159,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline82"
|
||||
points="159,33 166,26 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline84"
|
||||
points="166,33 173,26 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g86"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g88"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline90"
|
||||
points="75,79 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline92"
|
||||
points="75,19 75,79 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline94"
|
||||
points="75,139 115,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline96"
|
||||
points="75,19 115,19 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g98"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path100"
|
||||
d="m 19,79 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g102"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path104"
|
||||
d="m 78,79 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g106"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path108"
|
||||
d="m 113,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g110"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path112"
|
||||
d="m 113,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g114"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path116"
|
||||
d="m 179,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path118"
|
||||
d="m 179,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
284
qucs-powercombining/bitmaps/Tee_microstrip.svg
Normal file
@ -0,0 +1,284 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Tee_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata122">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Qt Svg Document</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview120"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0850581"
|
||||
inkscape:cx="160.44055"
|
||||
inkscape:cy="272.4927"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<title
|
||||
id="title4">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc6">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g38"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g62"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g86"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g88"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline90"
|
||||
points="75,79 75,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline92"
|
||||
points="75,19 75,79 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline94"
|
||||
points="75,139 115,139 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline96"
|
||||
points="75,19 115,19 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g98"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path100"
|
||||
d="m 19,79 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 2.2091,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g102"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path104"
|
||||
d="m 78,79 c 0,1.6569 -1.3431,3 -3,3 -1.6569,0 -3,-1.3431 -3,-3 0,-1.6569 1.3431,-3 3,-3 1.6569,0 3,1.3431 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g106"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path108"
|
||||
d="m 113,17 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;stroke:none;font-family:Helvetica"
|
||||
id="g110"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path112"
|
||||
d="m 113,137 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g114"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.9662788,0,0,1.9662788,48.224056,15.221246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path116"
|
||||
d="m 179,139 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path118"
|
||||
d="m 179,19 c 0,2.2091 -1.791,4 -4,4 -2.209,0 -4,-1.7909 -4,-4 0,-2.2091 1.791,-4 4,-4 2.209,0 4,1.7909 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 270.85493,288.47059 23.85548,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 369.03738,288.70768 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 306.33419,270.27301 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 288.30259,307.05698 68.62544,-0.1774"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 305.15302,271.02651 -19.54354,35.3286"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 377.02492,273.41259 -18.85113,32.73887"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 269.73951,52.596123 23.85548,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3-7"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 367.92196,52.833213 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 305.21877,34.398542 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6-3"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 287.18717,71.182516 68.62544,-0.1774"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2-5"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 304.0376,35.152042 284.49406,70.480646"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9-6"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 375.9095,37.538122 357.05837,70.276996"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24-5-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.638431,170.54631 23.855479,0.0204"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26-3-9"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 176.82088,170.7834 22.70256,-0.007"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path28-5-1"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 114.11769,152.34873 71.42981,0.51756"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path30-6-2"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 96.086091,189.1327 68.625439,-0.1774"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path32-2-7"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 112.93652,153.10223 -19.543539,35.3286"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path34-9-0"
|
||||
style="fill:none;stroke:#000080;stroke-width:3.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 184.80842,155.48831 -18.85113,32.73887"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
1235
qucs-powercombining/bitmaps/TravellingWave_idealTL.svg
Normal file
After Width: | Height: | Size: 40 KiB |
1101
qucs-powercombining/bitmaps/TravellingWave_microstrip.svg
Normal file
After Width: | Height: | Size: 46 KiB |
1432
qucs-powercombining/bitmaps/Tree_idealTL.svg
Normal file
After Width: | Height: | Size: 45 KiB |
1294
qucs-powercombining/bitmaps/Tree_microstrip.svg
Normal file
After Width: | Height: | Size: 53 KiB |
240
qucs-powercombining/bitmaps/WilkinsonLC.svg
Normal file
@ -0,0 +1,240 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<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:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg3020"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
width="500"
|
||||
height="379"
|
||||
sodipodi:docname="WilkinsonLC.png">
|
||||
<metadata
|
||||
id="metadata3026">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3024" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview3022"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4327177"
|
||||
inkscape:cx="250"
|
||||
inkscape:cy="189.5"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3020" />
|
||||
<image
|
||||
width="500"
|
||||
height="379"
|
||||
xlink:href="data:image/png;base64,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
|
||||
G4Kz8RCZAAAAAElFTkSuQmCC
|
||||
"
|
||||
id="image3028"
|
||||
x="0"
|
||||
y="0" />
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
573
qucs-powercombining/bitmaps/Wilkinson_idealTL.svg
Normal file
@ -0,0 +1,573 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg3289"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Wilkinson.svg">
|
||||
<metadata
|
||||
id="metadata3479">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview3477"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.81853908"
|
||||
inkscape:cx="331.42988"
|
||||
inkscape:cy="155.33941"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g3397" />
|
||||
<title
|
||||
id="title3291">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc3293">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs3295" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3303"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3305"
|
||||
points="205,105 265,105 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3307"
|
||||
points="207,112 263,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3309"
|
||||
points="207,119 214,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3311"
|
||||
points="214,119 221,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3313"
|
||||
points="221,119 228,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3315"
|
||||
points="228,119 235,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3317"
|
||||
points="235,119 242,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3319"
|
||||
points="242,119 249,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3321"
|
||||
points="249,119 256,112 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3323"
|
||||
points="256,119 263,112 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3325"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3327"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3329"
|
||||
points="315,145 315,157 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3331"
|
||||
points="315,157 322,160 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3333"
|
||||
points="322,160 308,166 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3335"
|
||||
points="308,166 322,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3337"
|
||||
points="322,172 308,178 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3339"
|
||||
points="308,178 322,184 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3341"
|
||||
points="322,184 308,190 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3343"
|
||||
points="308,190 315,193 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3345"
|
||||
points="315,193 315,205 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3347"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3349"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3351"
|
||||
points="205,225 265,225 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3353"
|
||||
points="207,232 263,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3355"
|
||||
points="207,239 214,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3357"
|
||||
points="214,239 221,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3359"
|
||||
points="221,239 228,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3361"
|
||||
points="228,239 235,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3363"
|
||||
points="235,239 242,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3365"
|
||||
points="242,239 249,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3367"
|
||||
points="249,239 256,232 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3369"
|
||||
points="256,239 263,232 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3371"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3373"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3375"
|
||||
points="75,165 135,165 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3377"
|
||||
points="77,172 133,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3379"
|
||||
points="77,179 84,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3381"
|
||||
points="84,179 91,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3383"
|
||||
points="91,179 98,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3385"
|
||||
points="98,179 105,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3387"
|
||||
points="105,179 112,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3389"
|
||||
points="112,179 119,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3391"
|
||||
points="119,179 126,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3393"
|
||||
points="126,179 133,172 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3395"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3397"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3399"
|
||||
points="165,105 165,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3401"
|
||||
points="165,225 205,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3403"
|
||||
points="165,105 205,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3405"
|
||||
points="265,225 315,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3407"
|
||||
points="315,205 315,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3409"
|
||||
points="265,105 315,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3411"
|
||||
points="315,105 315,145 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3413"
|
||||
points="315,225 415,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3415"
|
||||
points="315,105 415,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3417"
|
||||
points="165,165 165,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3419"
|
||||
points="135,165 165,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3421"
|
||||
points="15,165 75,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3423"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3425"
|
||||
d="m 203,223 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3427"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3429"
|
||||
d="m 263,223 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3431"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3433"
|
||||
d="m 203,103 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3435"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3437"
|
||||
d="m 263,103 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3439"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3441"
|
||||
d="m 313,143 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3443"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3445"
|
||||
d="m 313,203 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3447"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3449"
|
||||
d="m 318,225 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3451"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3453"
|
||||
d="m 318,105 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3455"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3457"
|
||||
d="m 419,225 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3459"
|
||||
d="m 419,105 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3461"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3463"
|
||||
d="m 73,163 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3465"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3467"
|
||||
d="m 133,163 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3469"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3471"
|
||||
d="m 168,165 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3473"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3475"
|
||||
d="m 19,165 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
519
qucs-powercombining/bitmaps/Wilkinson_microstrip.svg
Normal file
@ -0,0 +1,519 @@
|
||||
<?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"
|
||||
width="500"
|
||||
height="380"
|
||||
version="1.2"
|
||||
id="svg3289"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Wilkinson_microstrip.svg">
|
||||
<metadata
|
||||
id="metadata3479">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview3477"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.1575891"
|
||||
inkscape:cx="268.14395"
|
||||
inkscape:cy="281.48541"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3289" />
|
||||
<title
|
||||
id="title3291">Qt Svg Document</title>
|
||||
<desc
|
||||
id="desc3293">Generated with Qt</desc>
|
||||
<defs
|
||||
id="defs3295" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3325"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3327"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3329"
|
||||
points="315,145 315,157 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3331"
|
||||
points="315,157 322,160 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3333"
|
||||
points="322,160 308,166 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3335"
|
||||
points="308,166 322,172 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3337"
|
||||
points="322,172 308,178 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3339"
|
||||
points="308,178 322,184 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3341"
|
||||
points="322,184 308,190 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3343"
|
||||
points="308,190 315,193 "
|
||||
vector-effect="none" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3345"
|
||||
points="315,193 315,205 "
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3347"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3371"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3395"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)" />
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#000080;stroke-width:2;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3397"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="translate(0,55.000092)">
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3399"
|
||||
points="165,105 165,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3401"
|
||||
points="165,225 205,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3403"
|
||||
points="165,105 205,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3405"
|
||||
points="265,225 315,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3407"
|
||||
points="315,205 315,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3409"
|
||||
points="265,105 315,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3411"
|
||||
points="315,105 315,145 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3413"
|
||||
points="315,225 415,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3415"
|
||||
points="315,105 415,105 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3417"
|
||||
points="165,165 165,225 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3419"
|
||||
points="135,165 165,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
<polyline
|
||||
style="fill:none"
|
||||
id="polyline3421"
|
||||
points="15,165 75,165 "
|
||||
vector-effect="none"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,-46.494367)" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3439"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3441"
|
||||
d="m 313,143 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:none;font-family:Helvetica"
|
||||
id="g3443"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3445"
|
||||
d="m 313,203 4,0 0,4 -4,0 0,-4"
|
||||
vector-effect="non-scaling-stroke" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3447"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3449"
|
||||
d="m 318,225 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3451"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3453"
|
||||
d="m 318,105 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3455"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3457"
|
||||
d="m 419,225 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3459"
|
||||
d="m 419,105 c 0,2.209 -1.791,4 -4,4 -2.209,0 -4,-1.791 -4,-4 0,-2.209 1.791,-4 4,-4 2.209,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3469"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
style="fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3471"
|
||||
d="m 168,165 c 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 0,-1.657 1.343,-3 3,-3 1.657,0 3,1.343 3,3"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-weight:400;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Helvetica"
|
||||
id="g3473"
|
||||
font-style="normal"
|
||||
font-weight="400"
|
||||
font-size="12"
|
||||
transform="matrix(1.1344156,0,0,1.1344156,-6.2981189,8.5057246)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3475"
|
||||
d="m 19,165 c 0,2.209 -1.7909,4 -4,4 -2.2091,0 -4,-1.791 -4,-4 0,-2.209 1.7909,-4 4,-4 2.2091,0 4,1.791 4,4"
|
||||
vector-effect="none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.86444474,0,0,0.74955295,166.11797,-210.14053)"
|
||||
id="g5012">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.86444474,0,0,0.74955295,166.11651,-74.017284)"
|
||||
id="g5012-3">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-6"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-5"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.86444474,0,0,0.74955295,19.992023,-142.16599)"
|
||||
id="g5012-7">
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11529-1-0"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 153,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11531-9-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.5879262,0,0,1.5879262,-187.74989,407.73697)"
|
||||
font-size="12"
|
||||
font-weight="400"
|
||||
font-style="normal"
|
||||
id="g11533-4-3"
|
||||
style="font-style:normal;font-weight:400;font-size:12px;font-family:Helvetica;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none">
|
||||
<path
|
||||
vector-effect="non-scaling-stroke"
|
||||
d="m 213,25 4,0 0,4 -4,0 0,-4"
|
||||
id="path11535-7-6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill-rule:evenodd;stroke-width:1.82628131;stroke-miterlimit:10;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 46.361105,450.59587 23.85548,0.0204"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path24-5-6-8-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 144.50855,450.62299 22.70257,-0.007"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26-3-2-4-62"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 81.805365,432.18832 71.429815,0.51756"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
id="path28-5-6-50-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 63.114855,468.97129 69.493685,-0.1754"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.90035415;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path30-6-1-3-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 80.851375,432.76413 -19.75045,35.63449"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.9000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path32-2-8-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m 152.69704,434.70345 -19.15863,33.53712"
|
||||
style="fill:none;stroke:#000080;stroke-width:2.91801143;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path34-9-7-1-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
225
qucs-powercombining/bitmaps/big.qucs.xpm
Normal file
@ -0,0 +1,225 @@
|
||||
/* XPM */
|
||||
static char *big_qucs_xpm[] = {
|
||||
"32 32 190 2",
|
||||
" c None",
|
||||
". c #BCA2BC",
|
||||
"+ c #B4B2D4",
|
||||
"@ c #BC96BC",
|
||||
"# c #7C6E9C",
|
||||
"$ c #ACB2CC",
|
||||
"% c #9C869C",
|
||||
"& c #BCA2CC",
|
||||
"* c #CCC6E4",
|
||||
"= c #140A1C",
|
||||
"- c #140A14",
|
||||
"; c #0C0A14",
|
||||
"> c #5C5A64",
|
||||
", c #ACB6C4",
|
||||
"' c #CCC6D4",
|
||||
") c #0C0614",
|
||||
"! c #0C0A1C",
|
||||
"~ c #1C121C",
|
||||
"{ c #1C1224",
|
||||
"] c #0C060C",
|
||||
"^ c #1C0A1C",
|
||||
"/ c #2C2234",
|
||||
"( c #0C0A24",
|
||||
"_ c #140A24",
|
||||
": c #1C0E2C",
|
||||
"< c #240E24",
|
||||
"[ c #3C323C",
|
||||
"} c #B49EC4",
|
||||
"| c #AC9ECC",
|
||||
"1 c #CCCEE4",
|
||||
"2 c #84768C",
|
||||
"3 c #140E24",
|
||||
"4 c #241634",
|
||||
"5 c #4C324C",
|
||||
"6 c #341A3C",
|
||||
"7 c #645E7C",
|
||||
"8 c #8472AC",
|
||||
"9 c #9486BC",
|
||||
"0 c #D4D6EC",
|
||||
"a c #4C4664",
|
||||
"b c #443A64",
|
||||
"c c #DCEAF4",
|
||||
"d c #CCBADC",
|
||||
"e c #1C1634",
|
||||
"f c #342644",
|
||||
"g c #7C628C",
|
||||
"h c #6C567C",
|
||||
"i c #4C3654",
|
||||
"j c #2C1634",
|
||||
"k c #1C0E24",
|
||||
"l c #645A7C",
|
||||
"m c #8C7AB4",
|
||||
"n c #9C92C4",
|
||||
"o c #D4DEF4",
|
||||
"p c #ACAECC",
|
||||
"q c #544A6C",
|
||||
"r c #A4A2C4",
|
||||
"s c #E4EEF4",
|
||||
"t c #CCCAE4",
|
||||
"u c #DCD2E4",
|
||||
"v c #540E1C",
|
||||
"w c #840E14",
|
||||
"x c #440E1C",
|
||||
"y c #24264C",
|
||||
"z c #44365C",
|
||||
"A c #ACAAC4",
|
||||
"B c #C4C6DC",
|
||||
"C c #8C7AAC",
|
||||
"D c #5C426C",
|
||||
"E c #3C2A44",
|
||||
"F c #2C162C",
|
||||
"G c #A49EB4",
|
||||
"H c #9492AC",
|
||||
"I c #8C82A4",
|
||||
"J c #340E1C",
|
||||
"K c #7C0E14",
|
||||
"L c #14122C",
|
||||
"M c #3C3A64",
|
||||
"N c #3C3E74",
|
||||
"O c #ACA6CC",
|
||||
"P c #D4DEEC",
|
||||
"Q c #BCB2DC",
|
||||
"R c #846694",
|
||||
"S c #5C3E64",
|
||||
"T c #2C1E3C",
|
||||
"U c #341E34",
|
||||
"V c #C4C2CC",
|
||||
"W c #ECEAEC",
|
||||
"X c #2C2A4C",
|
||||
"Y c #242254",
|
||||
"Z c #1C1A4C",
|
||||
"` c #7466A4",
|
||||
" . c #BCBADC",
|
||||
".. c #CCDEEC",
|
||||
"+. c #745A84",
|
||||
"@. c #24162C",
|
||||
"#. c #3C2A3C",
|
||||
"$. c #241E2C",
|
||||
"%. c #1C1E4C",
|
||||
"&. c #242654",
|
||||
"*. c #142E64",
|
||||
"=. c #1C326C",
|
||||
"-. c #1C265C",
|
||||
";. c #34366C",
|
||||
">. c #8476AC",
|
||||
",. c #CCD2EC",
|
||||
"'. c #C4CAE4",
|
||||
"). c #4C4254",
|
||||
"!. c #44325C",
|
||||
"~. c #4C2E54",
|
||||
"{. c #141234",
|
||||
"]. c #142654",
|
||||
"^. c #144274",
|
||||
"/. c #1C3E74",
|
||||
"(. c #1C2254",
|
||||
"_. c #1C1E54",
|
||||
":. c #4C4A7C",
|
||||
"<. c #A492C4",
|
||||
"[. c #6C6A7C",
|
||||
"}. c #64628C",
|
||||
"|. c #847A8C",
|
||||
"1. c #644A74",
|
||||
"2. c #14224C",
|
||||
"3. c #1C3674",
|
||||
"4. c #14427C",
|
||||
"5. c #143E7C",
|
||||
"6. c #1C3A7C",
|
||||
"7. c #2C2644",
|
||||
"8. c #D4E2F4",
|
||||
"9. c #B4AACC",
|
||||
"0. c #8C7AA4",
|
||||
"a. c #140E2C",
|
||||
"b. c #141634",
|
||||
"c. c #14366C",
|
||||
"d. c #1C427C",
|
||||
"e. c #1C3E7C",
|
||||
"f. c #141E44",
|
||||
"g. c #C4CEEC",
|
||||
"h. c #DCE6EC",
|
||||
"i. c #C4C6C4",
|
||||
"j. c #6C5E74",
|
||||
"k. c #445274",
|
||||
"l. c #A4B6DC",
|
||||
"m. c #2C528C",
|
||||
"n. c #6472AC",
|
||||
"o. c #14163C",
|
||||
"p. c #4C4684",
|
||||
"q. c #BCB6DC",
|
||||
"r. c #D4CEDC",
|
||||
"s. c #9C9EA4",
|
||||
"t. c #B4C2DC",
|
||||
"u. c #2C365C",
|
||||
"v. c #5C6A94",
|
||||
"w. c #8CA2CC",
|
||||
"x. c #BCBEE4",
|
||||
"y. c #8C86AC",
|
||||
"z. c #1C2A64",
|
||||
"A. c #74769C",
|
||||
"B. c #CCCADC",
|
||||
"C. c #C4CEE4",
|
||||
"D. c #A49EBC",
|
||||
"E. c #1C162C",
|
||||
"F. c #8C8AB4",
|
||||
"G. c #445A8C",
|
||||
"H. c #A49EC4",
|
||||
"I. c #B4BAD4",
|
||||
"J. c #B4B2DC",
|
||||
"K. c #CCCEEC",
|
||||
"L. c #CCDAF4",
|
||||
"M. c #BCC6E4",
|
||||
"N. c #746A8C",
|
||||
"O. c #949AB4",
|
||||
"P. c #9C8EB4",
|
||||
"Q. c #544E74",
|
||||
"R. c #342E4C",
|
||||
"S. c #242A54",
|
||||
"T. c #6C7AA4",
|
||||
"U. c #4C5E94",
|
||||
"V. c #7486B4",
|
||||
"W. c #9CAAD4",
|
||||
"X. c #C4D2EC",
|
||||
"Y. c #D4E2EC",
|
||||
"Z. c #DCEEF4",
|
||||
"`. c #D4DAEC",
|
||||
" + c #C4C6E4",
|
||||
".+ c #B4AED4",
|
||||
"++ c #7C7AA4",
|
||||
"@+ c #9496B4",
|
||||
"#+ c #9492B4",
|
||||
"$+ c #8C92AC",
|
||||
" ",
|
||||
" ",
|
||||
" . + ",
|
||||
" @ # $ ",
|
||||
" % & * $ ",
|
||||
" = - ; = = - > , ' ",
|
||||
" = ; ; = ) = ! ) = ! ",
|
||||
" ~ ; ) ) ; = ! = ! = { ",
|
||||
" = ; ] ) ; ) ) = ! = = ^ / ",
|
||||
" = ; ) ! ) = ! ( ! ! _ : < _ [ } | 1 2 ",
|
||||
" 3 = ) ! ) ( ( ( ( _ 3 4 5 6 { = 7 8 9 0 a b 0 c d ",
|
||||
" = ( = = ( = ! _ ! e f g h i j k l m n o p q r s t u ",
|
||||
" 3 _ v w x ) _ ( _ y z A B C D E j F n r C G H I ",
|
||||
" _ J w K < _ _ L M b N O P Q R S T E U V V W ",
|
||||
" _ _ x ^ _ 3 X M Y Z X ` ...| +.@.T #. ",
|
||||
" $.= _ _ L %.&.*.=.-.Z ;.>.,.'.).!.~. ",
|
||||
" = ! = 3 {.].^././.*.(._.:.<.[.}.|.1. ",
|
||||
" > = ! ( L 2.3.4.5.6.*._.Y 7.}.8.9. ",
|
||||
" 0.@.M 3 = a.b.].c.d.e.3.f.a.&.8 g.h. ",
|
||||
" i.j.k.l.b ; ( 3 f.*.4.m.n.o.Z %.p.q. ",
|
||||
" r.s.t.l. = ! 3 u.v.w.x.y.*.z._.A. ",
|
||||
" B.C.D.t. ! E.x.Q 9.+ F.6.G. ",
|
||||
" H.I.I. ! J. .K...'. ",
|
||||
"r.J.A L.M.D.N.O. ",
|
||||
"P.9. Q.R.%.S.T. ",
|
||||
" N U.V.W.X. ",
|
||||
" M.X.Y.c c ",
|
||||
" c Z.c `. + ",
|
||||
" B .+n ++@+ ",
|
||||
" #+$+p A ",
|
||||
" ",
|
||||
" "};
|
35
qucs-powercombining/main.cpp
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* main.cpp - Power combining tool main
|
||||
*
|
||||
* copyright (C) 2016 Andres Martinez-Mera <andresmartinezmera@gmail.com>
|
||||
*
|
||||
* This is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This software is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this package; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <QApplication>
|
||||
#include "qucspowercombiningtool.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
QucsPowerCombiningTool *PowerCombiningTool = new QucsPowerCombiningTool();
|
||||
PowerCombiningTool->raise();
|
||||
PowerCombiningTool->resize(350, 350);
|
||||
PowerCombiningTool->show();
|
||||
return app.exec();
|
||||
}
|
51
qucs-powercombining/qucspowercombining.1.cmake.in
Normal file
@ -0,0 +1,51 @@
|
||||
.TH QucsPowerCombiningTool "1" "September 2018" "Debian/GNU Linux" "User Commands"
|
||||
.SH NAME
|
||||
QucsPowerCombiningTool \- A power combiner synthesis tool.
|
||||
.SH SYNOPSIS
|
||||
.B qucspowercombining
|
||||
[\fIOPTION\fR] ...
|
||||
.SH DESCRIPTION
|
||||
|
||||
\fBQucs\fR is an integrated circuit simulator which means you are able
|
||||
to setup a circuit with a graphical user interface (GUI) and simulate
|
||||
the large-signal, small-signal and noise behaviour of the circuit.
|
||||
After that simulation has finished you can view the simulation results
|
||||
on a presentation page or window.
|
||||
|
||||
The software aims to support all kinds of circuit simulation types,
|
||||
e.g. DC, AC, S-parameter, harmonic balance analysis, noise analysis,
|
||||
etc.
|
||||
|
||||
\fBQucsPowerCombiningTool\fR is a synthesis tool focused on the design of power
|
||||
combiners/dividers which is integrated into the \fBQucs\fR environment.
|
||||
The GUI consists of a dialog which includes the design parameters of the combiner and
|
||||
a graphical description of the combiner type in the dialog. After the synthesis is done,
|
||||
the schematic is copied into the system-wide clipboard. In order to run a simulation, please create
|
||||
a new schematic in \fBQucs\fR and then press CTRL-V (paste from clipboard). The schematic will be
|
||||
inserted in \fBQucs\fR and ready for simulation.
|
||||
|
||||
The available power combiner types are:
|
||||
Wilkinson,
|
||||
Multistage Wilkinson,
|
||||
T-junction,
|
||||
Branchline,
|
||||
Double-box Branchline,
|
||||
Bagley,
|
||||
Gysel,
|
||||
Travelling wave combiner
|
||||
and Tree combiner
|
||||
|
||||
.SH AVAILABILITY
|
||||
The latest version of Qucs can always be obtained from
|
||||
\fB${QUCS_URL}\fR
|
||||
.SH "REPORTING BUGS"
|
||||
Known bugs are documented within the BUGS file. Report bugs to
|
||||
\fB${QUCS_BUGREPORT}\fR
|
||||
|
||||
.SH COPYRIGHT
|
||||
Copyright \(co 2018 Qucs Team
|
||||
.PP
|
||||
This is free software; see the source for copying conditions. There is NO
|
||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
|
51
qucs-powercombining/qucspowercombining.1.in
Normal file
@ -0,0 +1,51 @@
|
||||
.TH QucsPowerCombiningTool "1" "September 2018" "Debian/GNU Linux" "User Commands"
|
||||
.SH NAME
|
||||
QucsPowerCombiningTool \- A power combiner synthesis tool.
|
||||
.SH SYNOPSIS
|
||||
.B qucspowercombining
|
||||
[\fIOPTION\fR] ...
|
||||
.SH DESCRIPTION
|
||||
|
||||
\fBQucs\fR is an integrated circuit simulator which means you are able
|
||||
to setup a circuit with a graphical user interface (GUI) and simulate
|
||||
the large-signal, small-signal and noise behaviour of the circuit.
|
||||
After that simulation has finished you can view the simulation results
|
||||
on a presentation page or window.
|
||||
|
||||
The software aims to support all kinds of circuit simulation types,
|
||||
e.g. DC, AC, S-parameter, harmonic balance analysis, noise analysis,
|
||||
etc.
|
||||
|
||||
\fBQucsPowerCombiningTool\fR is a synthesis tool focused on the design of power
|
||||
combiners/dividers which is integrated into the \fBQucs\fR environment.
|
||||
The GUI consists of a dialog which includes the design parameters of the combiner and
|
||||
a graphical description of the combiner type in the dialog. After the synthesis is done,
|
||||
the schematic is copied into the system-wide clipboard. In order to run a simulation, please create
|
||||
a new schematic in \fBQucs\fR and then press CTRL-V (paste from clipboard). The schematic will be
|
||||
inserted in \fBQucs\fR and ready for simulation.
|
||||
|
||||
The available power combiner types are:
|
||||
Wilkinson,
|
||||
Multistage Wilkinson,
|
||||
T-junction,
|
||||
Branchline,
|
||||
Double-box Branchline,
|
||||
Bagley,
|
||||
Gysel,
|
||||
Travelling wave combiner
|
||||
and Tree combiner
|
||||
|
||||
.SH AVAILABILITY
|
||||
The latest version of Qucs can always be obtained from
|
||||
\fB@PACKAGE_URL@\fR
|
||||
.SH "REPORTING BUGS"
|
||||
Known bugs are documented within the BUGS file. Report bugs to
|
||||
\fB@PACKAGE_BUGREPORT@\fR
|
||||
|
||||
.SH COPYRIGHT
|
||||
Copyright \(co 2018 Qucs Team
|
||||
.PP
|
||||
This is free software; see the source for copying conditions. There is NO
|
||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
|
25
qucs-powercombining/qucspowercombining.qrc
Normal file
@ -0,0 +1,25 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>bitmaps/Wilkinson_idealTL.svg</file>
|
||||
<file>bitmaps/Wilkinson_microstrip.svg</file>
|
||||
<file>bitmaps/WilkinsonLC.svg</file>
|
||||
<file>bitmaps/MultistageWilkinson_idealTL.svg</file>
|
||||
<file>bitmaps/MultistageWilkinson_microstrip.svg</file>
|
||||
<file>bitmaps/MultistageWilkinsonLC.svg</file>
|
||||
<file>bitmaps/Tree_idealTL.svg</file>
|
||||
<file>bitmaps/Tree_microstrip.svg</file>
|
||||
<file>bitmaps/TravellingWave_idealTL.svg</file>
|
||||
<file>bitmaps/TravellingWave_microstrip.svg</file>
|
||||
<file>bitmaps/Branchline_idealTL.svg</file>
|
||||
<file>bitmaps/Branchline_microstrip.svg</file>
|
||||
<file>bitmaps/DoubleBoxBranchline_idealTL.svg</file>
|
||||
<file>bitmaps/DoubleBoxBranchline_microstrip.svg</file>
|
||||
<file>bitmaps/Bagley_idealTL.svg</file>
|
||||
<file>bitmaps/Bagley_microstrip.svg</file>
|
||||
<file>bitmaps/Gysel_idealTL.svg</file>
|
||||
<file>bitmaps/Gysel_microstrip.svg</file>
|
||||
<file>bitmaps/Tee_idealTL.svg</file>
|
||||
<file>bitmaps/Tee_microstrip.svg</file>
|
||||
<file>bitmaps/big.qucs.xpm</file>
|
||||
</qresource>
|
||||
</RCC>
|
2085
qucs-powercombining/qucspowercombiningtool.cpp
Normal file
113
qucs-powercombining/qucspowercombiningtool.h
Normal file
@ -0,0 +1,113 @@
|
||||
/*
|
||||
* qucspowercombiningtool.h - Power combining tool definition
|
||||
*
|
||||
* copyright (C) 2017 Andres Martinez-Mera <andresmartinezmera@gmail.com>
|
||||
*
|
||||
* This is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This software is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this package; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
#include <complex>
|
||||
#include <QtSvg>
|
||||
#include <QDebug>
|
||||
#include <QDesktopWidget>
|
||||
struct tSubstrate {
|
||||
double er;
|
||||
double height;
|
||||
double thickness;
|
||||
double tand;
|
||||
double resistivity;
|
||||
double roughness;
|
||||
double minWidth, maxWidth;
|
||||
};
|
||||
|
||||
|
||||
static const double Z_FIELD = 376.73031346958504364963;
|
||||
static const double SPEED_OF_LIGHT = 299792458.0;
|
||||
|
||||
/*! coth function */
|
||||
static inline double coth(const double x) {
|
||||
return (1.0 + 2.0 / (exp(2.0*(x)) - 1.0));
|
||||
}
|
||||
|
||||
/*! sech function */
|
||||
static inline double sech(const double x) {
|
||||
return (2.0 / (exp(x) + exp(-(x))));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
References:
|
||||
[1] "High Efficiency RF and Microwave Solid State Power Amplifiers". Paolo Colantonio,
|
||||
Franco Giannini and Ernesto Limiti. 2009. John Wiley and Sons Inc.
|
||||
[2] "RF and Microwave Transmitter Design, First Edition". Andrei Grebennikov. 2011. John Wiley and Sons Inc.
|
||||
*/
|
||||
|
||||
class QucsPowerCombiningTool : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
QucsPowerCombiningTool();
|
||||
~QucsPowerCombiningTool();
|
||||
QLabel *NLabel,*RefImp,*FreqLabel,*K1Label, *K1LabeldB, *RelPermlabel, *SubstrateHeightlabel, *SubstrateMMlabel, *ThicknessLabel,
|
||||
*ThicknessumLabel, *MinWidthLabel, *MinWidthmmLabel, *MaxWidthLabel, *MaxWidthmmLabel, *tanDLabel,
|
||||
*ResistivityLabel, *RoughnessLabel,*TopoLabel, *OhmLabel, *NStagesLabel, *AlphaLabel, *AlphadBLabel, *UnitsLabel;
|
||||
|
||||
QComboBox *TopoCombo, *BranchesCombo, *FreqScaleCombo, *RelPermcomboBox, *NStagesCombo, *UnitsCombo;
|
||||
|
||||
QLineEdit *RefImplineEdit, *FreqlineEdit, *K1lineEdit, *SubstrateHeightlineEdit, *ThicknesslineEdit, *MinWidthlineEdit,
|
||||
*MaxWidthlineEdit, *tanDlineEdit, *ResistivitylineEdit, *RoughnesslineEdit, *AlphalineEdit;
|
||||
|
||||
QCheckBox *AddSparcheckBox;
|
||||
QRadioButton *IdealTLradioButton, *MicrostripradioButton, *LumpedElementsradioButton;
|
||||
QPushButton *GenerateButton;
|
||||
QGroupBox *SpecificationsgroupBox,*MicrostripgroupBox, *ImagegroupBox, *ImplementationgroupBox;
|
||||
QWidget *centralWidget;
|
||||
QStatusBar *statusBar;
|
||||
QGridLayout *gboxImage;
|
||||
QSvgWidget *imgWidget;
|
||||
|
||||
private slots:
|
||||
void on_TopoCombo_currentIndexChanged(int index);
|
||||
void on_GenerateButton_clicked();
|
||||
void on_MicrostripradioButton_clicked();
|
||||
void on_LCRadioButton_clicked();
|
||||
void on_IdealTLRadioButton_clicked();
|
||||
|
||||
private:
|
||||
double getScaleFreq();
|
||||
void getMicrostrip(double Z0, double freq, tSubstrate *substrate, double &width, double &er_eff);
|
||||
QString ConvertLengthFromM(double);
|
||||
QString RoundVariablePrecision(double);
|
||||
QString num2str(double);
|
||||
void UpdateImage();
|
||||
QString CalculateWilkinson(double Z0, double K);
|
||||
int Wilkinson(double Z0, double Freq, double K, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha, bool LumpedElements);
|
||||
int MultistageWilkinson(double Z0, double Freq, int NStages, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha, bool LumpedElements);
|
||||
int Tee(double Z0, double Freq, double K, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int Branchline(double Z0, double Freq, double K, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int DoubleBoxBranchline(double Z0, double Freq, double K, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int Bagley(double Z0, double Freq, int N, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int Gysel(double Z0, double Freq, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int TravellingWave(double Z0, double Freq, int N, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
int Tree(double Z0, double Freq, int N, bool SP_block, bool microcheck, tSubstrate Substrate, double Alpha);
|
||||
QString calcChebyLines(double RL, double Z0, double gamma, int NStages);
|
||||
QString calcMultistageWilkinsonIsolators(QString Zlines, double L, std::complex<double> gamma, int NStages, double Z0);
|
||||
|
||||
};
|